/* 
  -- Even more rounded corners with CSS: Base stylesheet --
*/

.dialog {
 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:0px; /* default, width of left corner */
 margin-bottom:0.5em; /* spacing under dialog */
}

.dialog .content,
.dialog .tdialog,
.dialog .fondo,
.dialog .fondo div {
 background:transparent url(../imgs/caja_800x1600.png) no-repeat top right;
 /*background:transparent url(../imgs/caja_800x1600.png) no-repeat top right;
background-image:url(../imgs/caja_800x1600.png);
 _background-image:url(dialog2-blue.gif);*/
}

.dialog .content {
 position:relative;
 zoom:1;
 _overflow-y:hidden;
 padding:3px 0px 0px 0px;
 
}

.dialog .tdialog {
 /* top+left vertical slice */
 position:absolute;
 left:0px;
 top:0px;
 width:0px; /* top slice width */
 margin-left:-0px;
 _height:100%;
 height:400px; /* arbitrary long height, IE 6 */
 background-position:top left;
}

.dialog .fondo {
 /* bottom */
 position:relative;
 width:100%;
}

.dialog .fondo,
.dialog .fondo div {
 height:10px; /* height of bottom cap/shade */
 font-size:1px;
}

.dialog .fondo {
 background-position:bottom right;
}

.dialog .fondo div {
 position:relative;
 width:0px; /* bottom corner width */
 margin-left:-0px;
 background-position:bottom left;
}

