@charset "UTF-8";
/* CSS Document */

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

.dialog {
 position:relative;
 margin:0px auto;
 min-width:8em;
 max-width:1000px; /* based on image dimensions - not quite consistent with drip styles yet */
 z-index:1;
 margin-left:22px; /* default, width of left corner | distance from left! */
 margin-bottom:0px; /* spacing under dialog */
 
}

.green_box .content,
.green_box .t,
.green_box .b,
.green_box .b div {
 background:transparent url(../img/box_green.png) no-repeat top right;
 /*_background-image:url(img/dialog2-blue.gif);*/
}

.orange_box .content,
.orange_box .t,
.orange_box .b,
.orange_box .b div {
 background:transparent url(/common/img/box_orange.png) no-repeat top right;
 /*_background-image:url(img/dialog2-blue.gif);*/
}

.yellow_box .content,
.yellow_box .t,
.yellow_box .b,
.yellow_box .b div {
 background:transparent url(/common/img/box_yellow.png) no-repeat top right;
 /*_background-image:url(img/dialog2-blue.gif);*/
}

.white_box .content,
.white_box .t,
.white_box .b,
.white_box .b div {
 background:transparent url(/common/img/box_white.png) no-repeat top right;
 /*_background-image:url(img/dialog2-blue.gif);*/
}

.white_box_high .content,
.white_box_high .t,
.white_box_high .b,
.white_box_high .b div {
 background:transparent url(/common/img/box_white_gray_grad.png) no-repeat top right;
 /*_background-image:url(img/dialog2-blue.gif);*/
}

.white_menu_box .content,
.white_menu_box .t,
.white_menu_box .b,
.white_menu_box .b div {
 background:transparent url(/common/img/box_white_menu.png) no-repeat top right;
 /*_background-image:url(img/dialog2-blue.gif);*/
}

.white_menu_box .heading{
	margin: 0px;
	padding:7px 0 0 0;
	font-size:30px;
}

.white_menu_box .heading_norm{
	margin: 10px 0 0 0;
	padding:11px 0 4px 0;
	font-size:18px;
	font-family: Helvetica, Arial, sans-serif;
	letter-spacing:2px;
	font-weight:normal;
}

.dialog .content {
 position:relative;
 /*_overflow-y:hidden;*/
 padding:0px 22px 0px 0px;
}

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

.dialog .b {
 /* bottom */
 position:relative;
 width:100%;
 z-index:-1;
}

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

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

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

.dialog .hd,
.dialog .bd,
.dialog .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. */
}

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

.dialog h1 {
 padding-bottom:0px;
}
