@charset "UTF-8";
/* CSS Document */

/* Rounded Corners */

/* 
  -- Even more rounded corners with CSS: Base stylesheet --
*/

.dialogb {
 position:relative;
 margin:0px auto;
 min-width:8em;
 max-width:760px; /* 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 */
}

.dialogb .content,
.dialogb .t,
.dialogb .b,
.dialogb .b div {
	background-color: transparent;
	background-image: url(../images/rounded/blueRounded.gif);
	background-repeat: no-repeat;
	background-position: right top;
}

.dialogb .content {
 position:relative;
 zoom:1;
 _overflow-y:hidden;
 padding:0px 12px 0px 0px;
}

.dialogb .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;
}

.dialogb .b {
 /* bottom */
 position:relative;
 width:100%;
}

.dialogb .b,
.dialogb .b div {
	height:15px; /* height of bottom cap/shade */
	font-size:1px;
}

.dialogb .b {
 background-position:bottom right;
}

.dialogb .b div {
 position:relative;
 width:12px; /* bottom corner width */
 margin-left:-12px;
 background-position:bottom left;
}

.dialogb .hd,
.dialogb .bd,
.dialogb .ft {
 position:relative;
}

.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. */
}


.dialogb h1 {
	margin:0px;
	padding-top: .5em;
	padding-right: 0px;
	padding-bottom: 0.5em;
	padding-left: 0px;
	color: #FFFFFF;
}
.dialogb p {
	margin:0px;
	padding-top: 0em;
	padding-right: 0px;
	padding-bottom: 0.5em;
	padding-left: 0px;
	color: #FFFFFF;
}
.dialogb  h2 {
	padding-bottom:0px;
	padding-top: .8em;
	color: #FFFFFF;
	margin-bottom: 0em;
}
.dialogb h3 {
	padding-bottom:0px;
	padding-top: 0em;
	color: #FFCC00;
	font-size: .85em;
	margin-top: 0px;
	margin-bottom: 0.5em;
}
.dialogb a {
	color: #FFCC00;
}
#roundedb {
	width: 150px;
}

