.grayBox
{ 
    position: fixed; 
    top: 0%; 
    left: 0%; 
    width: 100%; 
    height: 100%; 
   /* background-color: black; */
    z-index:1001; 
    -moz-opacity: 0.8; 
    opacity:.80; 
    filter: alpha(opacity=80); 
} 
.box_content
{ 
    position: fixed; 
    left: 30%; 
    right: 30%; 
    width: 40%; 
	margin:0 auto;
    z-index:1002; 
    overflow: auto; 
} 
.boxes
{
	border: 2px solid #759dc0;
	-webkit-box-shadow: 0 1px 5px rgba(0, 0, 0, 0.25);
	-moz-box-shadow: 0 1px 5px rgba(0, 0, 0, 0.25);
	box-shadow: 0 1px 5px rgba(0, 0, 0, 0.25);
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;  
}
.boxes_titleBar
{
	font-family:arial;
	font-size:12px;
	color:white;
	height:15px;
	background-image: url(images/newTitleBar.png);
	background-repeat: repeat-x;
	padding: 5px 7px 4px 7px;
}
.boxes_content 
{
	background-color:white;
	margin: 1px 1px 1px 1px;
}
.boxes_titleBarCloseIcon 
{  
	background: url(images/dialogCloseIcon.png);
	background-repeat: no-repeat;
	right: 5px;
	height: 15px;
	width: 21px;
}
.boxes_titleBarCloseIcon:hover
 {
	background-position: -21px;
}
.boxes_titleBarCloseIcon:active 
{
	background-position: -42px;
}