/* 
  -- Even more rounded corners with CSS: Base stylesheet --
*/

.dialog_ctr {
 position:relative;
 margin:0px auto;
 min-width:8em;
 max-width:480px; /* based on image dimensions - not quite consistent with drip styles yet */
 color:#fff;
 z-index:1;
 margin-left:12px; /* default, width of left corner */
 margin-bottom:0.5em; /* spacing under dialog */

}

.dialog_ctr .content2,
.dialog_ctr .t,
.dialog_ctr .b,
.dialog_ctr .b div {
 background:transparent url(../images/dialog_blue_lg.png) no-repeat top right;
 _background-image:url(../images/dialog_blue_lg.gif);
}

.dialog_ctr .content2 {
 position:relative;
 zoom:1;
 _overflow-y:hidden;
 padding:0px 12px 0px 0px;

}

.dialog_ctr .t {
 /* top+left vertical slice */
 position:absolute;
 left:0px;
 top:0px;
 width:12px; /* top slice width */
 margin-left:-12px;
 height:100%;
 _height:1200px; /* arbitrary long height, IE 6 */
 background-position:top left;
}

.dialog_ctr .b {
 /* bottom */
 position:relative;
 width:100%;
}

.dialog_ctr .b,
.dialog_ctr .b div {
 height:15px; /* height of bottom cap/shade */
 font-size:1px;
}

.dialog_ctr .b {
 background-position:bottom right;
}

.dialog_ctr .b div {
 position:relative;
 width:12px; /* bottom corner width */
 margin-left:-12px;
 background-position:bottom left;
}

.dialog_ctr .hd,
.dialog_ctr .bd,
.dialog_ctr .ft {
 position:relative;
}

.dialog_ctr .wrapper1 {
 /* extra content protector - preventing vertical overflow (past background) */
 position:static;
 max-height:600px;
 overflow:auto; 
 
}

.dialog_ctr h1,
.dialog_ctr h2,
.dialog_ctr p {
 margin:0px; /* margins will blow out backgrounds, leaving whitespace. */
 padding:0.5em 0px 0.5em 0px;
 color:#fff;
}


.dialog_ctr h1 {
 padding-bottom:0px;
 font: 1.1em;
 background-color: clear;
}

.dialog_ctr a {
	font-weight:900;
	color:#fff;
}

/* "drip" style extended class (eg. <div class="dialog drip"> - more positioning due to width/height requirements */

.dialog_ctr.drip .b,
.dialog_ctr.drip .b div {
 height:80px;
}

.dialog_ctr.drip {
 margin-left:65px;
}

.dialog_ctr.drip .t,
.dialog_ctr.drip .b div,
.dialog_ctr.drip .hd,
.dialog_ctr.drip .bd,
.dialog_ctr.drip .ft,
.dialog_ctr.drip .wrapper1 {
 margin-left:-65px;
 width:65px;
}

.dialog_ctr.drip .wrapper1 {
 width:auto;
}

.dialog_ctr .wrapper1 .hd,
.dialog_ctr .wrapper1 .bd,
.dialog_ctr .wrapper1 .ft {
 margin-left:0px;
}

.dialog_ctr.drip .hd,
.dialog_ctr.drip .bd,
.dialog_ctr.drip .ft {
 zoom:1;
 width:auto;
 padding:0px 2px 0px 12px;
}
.dialog_ctr li {
list-style-image:none;
list-style:none;
}
