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

.promo_dialog {
 position: absolute;
 margin-top: 100px;
 margin-left: 15px;
 min-width:8em;
 max-width:230px; /* based on image dimensions - not quite consistent with drip styles yet */
 color:#fff;
 z-index:1; 
 margin-bottom:0.5em; /* spacing under dialog */
 z-index: 1100;
 text-align: center;
}

.cinner {
	position: inherit !important;
	margin-left: 10px !important;
	margin-top: 9px !important;
}

.promo_dialog .content,
.promo_dialog .t,
.promo_dialog .b,
.promo_dialog .b div {
 background:transparent url(dialog2-blue-800x1600.png) no-repeat top right;
 _background-image:url(dialog2-blue.gif);
}

.promo_dialog .content {
 position:relative;
 zoom:1;
 _overflow-y:hidden;
 padding:0px 12px 0px 0px;
}

.promo_dialog .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;
}

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

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

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

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

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

.promo_dialog .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. */
}

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

.promo_dialog h1 {
	font-size: xx-large;
}
.promo_dialog h1 {
 padding-bottom:0px;
}

.promo_dialog a, .promo_dialog a:hover, .promo_dialog a:visited {
	font-weight: bold;
	color: #FFFFFF;
}

.transparentc { 
		
	/* Theoretically for IE 8 & 9 (more valid) */	
	/* ...but not required as filter works too */
	/* should come BEFORE filter */
	-ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=85)";
	
	/* This works in IE 8 & 9 too */
	/* ... but also 5, 6, 7 */
	filter: alpha(opacity=85);
	
	/* Older than Firefox 0.9 */
	-moz-opacity:0.85;
	
	/* Safari 1.x (pre WebKit!) */
	-khtml-opacity: 0.85;
    
	/* Modern!
	/* Firefox 0.9+, Safari 2?, Chrome any?
	/* Opera 9+, IE 9+ */
	opacity: 0.85;
	font-weight: bold;
}