/*
  -- Even more rounded corners with CSS: Base stylesheet. --
*/

.content ul, .content2 ul {
margin-left:15px;
padding-left:15px;
margin-bottom:10px;
list-style-type:circle;list-type:circle;list-style:circle;
}

.content li, .content2 li {list-style-type:disc;}

.dialog, .dialog2 {
 margin:0px auto;
 min-width:8em;
 max-width:1013px; /* based on image dimensions - not quite consistent with drip styles yet */
 color:#000;
 z-index:1;
 margin-left:11px; /* default, width of left corner */
 margin-bottom:0.5em; /* spacing under dialog */
}

.dialog .content,
.dialog .t,
.dialog .b,
.dialog .b div{
 background:transparent url(images/bg.png) no-repeat top right;
 _background-image:url(images/bg.png);
}

.dialog2 .content2,
.dialog2 .t2,
.dialog2 .b2,
.dialog2 .b2 div {
 background:transparent url(images/bg_dark.png) no-repeat top right;
 _background-image:url(images/bg_dark.png);
}

.dialog .content,.dialog2 .content2 {
 position:relative;
 zoom:1;
 _overflow-y:hidden;
 padding:20px 22px 0px 7px;
letter-spacing:0;
}

.dialog .t,.dialog2 .t2 {
 /* 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;
}

.dialog .b,.dialog2 .b2 {
 /* bottom */
 position:relative;
 width:100%;
}

.dialog .b,.dialog2 .b2,
.dialog .b div,.dialog2 .b2 div {
 height:30px; /* height of bottom cap/shade */
 font-size:1px;
}

.dialog .b, .dialog2 .b2 {
 background-position:bottom right;
}

.dialog .b div, .dialog2 .b2 div {
 position:relative;
 width:12px; /* bottom corner width */
 margin-left:-12px;
 background-position:bottom left;
}

.dialog .hd,.dialog2 .hd2,
.dialog .bd,.dialog2 .bd2,
.dialog .ft,.dialog2 .ft2 {
 position:relative;
}

.dialog .wrapper, .dialog2 .wrapper2 {
 /* extra content protector - preventing vertical overflow (past background) */
 position:static;
 max-height:2000px;
 /*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 p, .dialog2 p {
 margin:0px; /* margins will blow out backgrounds, leaving whitespace. */
 padding:0em 0px 0.5em 0px;
}

