/* 
  -- Even more rounded corners with CSS: Base stylesheet --
*/
#central {
  width: 1024px ;
  margin-left: auto ;
  margin-right: auto ;
}

.dialoggray, 
.dialogwhite {
 position:relative;
 margin:0px auto;
 min-width:0em;
 max-width:1024px; /* based on image dimensions - not quite consistent with drip styles yet */
 z-index:1;
 margin-left:20px; /* default, width of left corner */
 margin-bottom:0.5em; /* spacing under dialog */
}

.dialoggray .content,
.dialoggray .t,
.dialoggray .b,
.dialoggray .b div {
 background:transparent url('images/box_grigio.png') no-repeat top right;
 _background-image:url('images/box_grigio.png');
}

.dialogwhite .content,
.dialogwhite .t,
.dialogwhite .b,
.dialogwhite .b div {
 background:transparent url('../images/box_bianco.png') no-repeat top right;
 _background-image:url('../images/box_bianco.png');
}

.dialoggray .content, 
.dialogwhite .content {
 position:relative;
 zoom:1;
 _overflow-y:hidden;
 padding:10px 20px 0px 0px;
 width: 1000px;
}

.dialoggray .t, 
.dialogwhite .t {
 /* top+left vertical slice */
 position:absolute;
 left:0px;
 top:0px;
 width:20px; /* top slice width */
 margin-left:-20px;
 height:100%;
 _height:1600px; /* arbitrary long height, IE 6 */
 background-position:top left;
}

.dialoggray .b, 
.dialogwhite .b {
 /* bottom */
 position:relative;
 width:1020px;
}

.dialoggray .b,
.dialoggray .b div, 
.dialogwhite .b,
.dialogwhite .b div {
 height:100px; /* height of bottom cap/shade */
 font-size:1px;
}

.dialoggray .b, 
.dialogwhite .b {
 background-position:bottom right;
}

.dialoggray .b div, 
.dialogwhite .b div {
 position:relative;
 width:20px; /* bottom corner width */
 margin-left:-20px;
 background-position:bottom left;
}

.boxTitle
{
    font-family: Arial;
    font-size: small;
    font-weight: bold;
    text-align: left;
    background-color: #DEDCDC;
}
.boxText
{
    font-family: Arial;
    font-size: small;
    text-align:justify;
    padding-top:5px
}
