/* 
  -- Even more rounded corners with CSS: Base stylesheet --
*/

.banner {
 position:relative;
 margin:0px auto;
 /*min-width:8em;   Weghalen anders in chrome en ie verschillen, banners onder chrome kunnen niet vierkant
 max-width:500px;*/ /* based on image dimensions - not quite consistent with drip styles yet */  
 color:#fff;
 z-index:1;
 margin-left:15px; /* default, width of left corner */
 margin-bottom:0.1em; /* spacing under dialog */
  
}

.banner .content,
.banner .t,
.banner .b,
.banner .b div {
 background:transparent url(images/banner.png) no-repeat top right;
  
}

.banner .content {
 position:relative;
 zoom:1;
 _overflow-y:hidden;
 padding:5px 15px 1px 1px; 
 color: #8eb4e3;
 font-family: Arial Rounded MT Bold;
 font-face: Arial Rounded MT Bold;
 font-size: 18px;
 font-weight: normal;	 	
}

.banner .t {
 /* top+left vertical slice */
 position:absolute;
 left:0px;
 top:0px;
 width:12px; /* top slice width */
 margin-left:-12px;
 height:100%;
 _height:1600px; /* arbitrary long height, IE 6 */
 background-position:top left;
}

.banner .b {
 /* bottom */
 position:relative;
 width:100%;
}

.banner .b,
.banner .b div {
 height:14px; /* height of bottom cap/shade */  
 font-size:1px;
}

.banner .b {
 background-position:bottom right;
}

.banner .b div {
 position:relative;
 width:12px; /* bottom corner width */
 margin-left:-12px;
 background-position:bottom left;
}

.banner .hd,
.banner .bd,
.banner .ft {
 position:relative;
}

.banner .wrapper {
 /* extra content protector - preventing vertical overflow (past background) */
 position:static;
 max-height:1000px;
 overflow:auto; /* note that overflow:auto causes a rather annoying redraw "lag" in Firefox 2, and may degrade performance. Might be worth trying without if you aren't worried about height/overflow issues. */
}

.banner h1,
.banner p {
 margin:0px; /* margins will blow out backgrounds, leaving whitespace. */
 padding:0.5em 0px 0.5em 0px;
}

.banner h1 {
 padding-bottom:0px;
}
 
a.banner-link:link,
a.banner-link:active,
a.banner-link:visited
 {
	color: #000000;
	font-family: Arial Rounded MT Bold;
    font-face: Arial Rounded MT Bold;
	font-size: 18px;
	font-weight: normal;
	text-decoration: none;
	background: transparent;
    outline-style: none;
}
 
a.banner-link:hover  
 {
	color: #000000;
	font-family: Arial Rounded MT Bold;
    font-face: Arial Rounded MT Bold;
	font-size: 18px;
	font-weight: normal;
	text-decoration: none;
	background: transparent;
    outline-style: none;
}

