/* 
  -- Even more rounded corners with CSS: Base stylesheet --
*/

.dialog {
 position:relative;
 margin:0px auto;
 min-width:8em;
 max-width:500px; /* based on image dimensions - not quite consistent with drip styles yet */
 color:#000000;
 z-index:1;
 margin-left:6px; /* default, width of left corner */
 margin-bottom:0.5em; /* spacing under dialog */


}
.dialogaboutus{
 position:relative;
 margin:0px auto;
 min-width:8em;
 max-width:540px; /* based on image dimensions - not quite consistent with drip styles yet */
 color:#000000;
 z-index:1;
 margin-left:6px; /* default, width of left corner */
 margin-bottom:0.5em; /* spacing under dialog */
}
.dialogtest{
 position:relative;
 margin:0 auto;
 min-width:8em;
 max-width:660px; /* based on image dimensions - not quite consistent with drip styles yet */
 color:#000000;
 z-index:1;
 margin-left:6px; /* default, width of left corner */
 margin-bottom:0.5em; /* spacing under dialog */
}
.dialogform{
 position:relative;
 margin:0 auto;
 min-width:8em;
 max-width:560px; /* based on image dimensions - not quite consistent with drip styles yet */
 color:#000000;
 z-index:1;
 margin-left:6px; /* default, width of left corner */
 margin-bottom:0.5em; /* spacing under dialog */
}
 .content,
 .t,
 .b,
 .b div {
 background:transparent url(/assets/html/transwhiteround.png) no-repeat top right;
 _background-image:url(/assets/html/transwhiteround.gif);
}

 .content {
 position:relative;
 zoom:1;
 _overflow-y:hidden;
 padding: 20px 20px 5px 10px;
/*	padding: 'padding-top' 'padding-right' 'padding-bottom' 'padding-left'*/
	min-height: 200px;
	font: 13px Geneva, Arial, Helvetica, san-serif;
}

 .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;
}

 .b {
 /* bottom */
 position:relative;
 width:auto;
}

 .b,
 .b div {
 height:22px; /* height of bottom cap/shade */
 font-size:1px;
}

 .b {
 background-position:bottom right;
}

 .b div {
 position:relative;
 width:22px; /* bottom corner width */
 margin-left:-22px;
 background-position: bottom left;
}

 .hd,
 .bd,
 .ft {
 position:relative;
}

 .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;
}

