/* 
  -- Even more rounded corners with CSS: Base stylesheet --
*/
 
.dialog {
text-align:center;
 position:relative;
 margin-top:10px;
 min-width:8em;
 max-width:350px; /* based on image dimensions - not quite consistent with drip styles yet */
 z-index:1;
 margin-left:10px; /* default, width of left corner */
 margin-bottom:0.5em; /* spacing under dialog */
}
 
.dialog .content,
.dialog .t,
.dialog .b,
.dialog .b div {
color: #000000;
 background:transparent url(block_bg.png) no-repeat top right;
 _background-image:url(block_bg.png);
}
 
.dialog .content {
 position:relative;
 zoom:1;
 _overflow-y:hidden;
 padding:10px 20px 0px 0px;
}
 
.dialog .t {
 /* top+left vertical slice */
 position:absolute;
 left:0px;
 top:0px;
 width:20px; /* top slice width */
 margin-left:-20px; /* width¥[­t¸¹ */
 height:100%;
 _height:1498px; /* arbitrary long height, IE 6 */
 background-position:top left;
}
 
.dialog .b {
 /* bottom */
 position:relative;
 width:100%;
}
 
.dialog .b,
.dialog .b div {
 height:20px; /* height of bottom cap/shade */
  /*margin-top:-20px;*//*§ڥ[¤W¥hªº*/
 font-size:1px;
}
 
.dialog .b {
 background-position:bottom right;
}
 
.dialog .b div {
 position:relative;
 width:20px; /* bottom corner width */
 /*margin-left:-260px;*/
 margin-left:-20px;
 background-position:bottom left;
}
