/* 
  -- Even more rounded corners with CSS: Base stylesheet --
*/

/* * {margin:0; padding:0;} */

.dialog_open {
 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.0em; /* spacing under dialog */

}

.dialog_open .content_open,
.dialog_open .menycontent,
.dialog_open .t,
.dialog_open .b,
.dialog_open .b div {
 background:transparent url(demo_open/dialog2-blue-800x1600_open.png) no-repeat top right;
/* _background-image:url(demo/dialog2-blue.gif); */
}

.dialog_open .content_open,
.dialog_open .menycontent {
 position:relative;
 zoom:1;
 _overflow-y:hidden;
 padding:0.8em 0.0em 0.2em 0.8em;
 _padding-top: 1.3em
}



.dialog_open .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;
}

.dialog_open .b {
 /* bottom */
 position:relative;
 width:100%;
}

.dialog_open .b,
.dialog_open .b div {
 height:10px; /* height of bottom cap/shade */
/* font-size:1px; */
}

.dialog_open .b {
 background-position:bottom right;
}

.dialog_open .b div {
 position:relative;
 width:12px; /* bottom corner width */
 margin-left:-12px;
 background-position:bottom left;
}

.dialog_open .hd,
.dialog_open .bd,
.dialog_open .ft {
 position:relative;
}

.dialog_open .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. */
}


