/* 
  -- Even more rounded corners with CSS: Base stylesheet --
*/

.dialog {
 position:relative;
 margin:0px auto;
 min-width:8em;
 max-width:687px; /* based on image dimensions - not quite consistent with drip styles yet */
 z-index:0;
 margin-left:14px; /* default, width of left corner */
 margin-bottom:0.5em; /* spacing under dialog */
}

.dialog .content,
.dialog .top,
.dialog .bottom,
.dialog .bottom .left_corner {
 background:transparent url(../images/dialog_pink.png) no-repeat top right;
 _background-image:url(../images/dialog_pink.gif);
}


.d_green .content,
.d_green .top,
.d_green .bottom,
.d_green .bottom .left_corner
{
  background:transparent url(../images/dialog_green.png) no-repeat top right;
  _background-image:url(../images/dialog_green.gif);
}

.d_yellow .content,
.d_yellow .top,
.d_yellow .bottom,
.d_yellow .bottom .left_corner
{
  background:transparent url(../images/dialog_yellow.png) no-repeat top right;
  _background-image:url(../images/dialog_yellow.gif);
}

.d_blue .content,
.d_blue .top,
.v .bottom,
.d_blue .bottom .left_corner
{
  background:transparent url(../images/dialog_blue.png) no-repeat top right;
  _background-image:url(../images/dialog_blue.gif);
}


.d_red .content,
.d_red .top,
.d_red .bottom,
.d_red .bottom .left_corner
{
  background:transparent url(../images/dialog_red.png) no-repeat top right;
  _background-image:url(../images/dialog_red.gif);
}





.dialog .content {
 position:relative;
 zoom:1;
 _overflow-y:hidden;
 padding:0px 19px 0px 0px;
}

.dialog .top {
 /* top+left vertical slice */
 position:absolute;
 left:0px;
 top:0px;
 width:14px; /* top slice width */
 margin-left:-14px;
 height:100%;
 _height:2000px; /* arbitrary long height, IE 6 */
 background-position:top left;
 z-index: -1;
}

.dialog .bottom {
 /* bottom */
 position:relative;
 width:100%;
}

.dialog .bottom,
.dialog .bottom .left_corner {
 height:50px; /* height of bottom cap/shade */
 font-size:1px;
}

.dialog .bottom {
 background-position:bottom right;
}

.dialog .bottom .left_corner {
 position:relative;
 width:14px; /* bottom corner width */
 margin-left:-14px;
 background-position:bottom left;
}
