﻿/*    对话框的样式   */
#dialog
{
	position:  absolute    ;
	width: 200px;
	height: 300px;
	border: solid 1px #ACC3DF;
	background-color: White;
	z-index:2001;

}

/*    对话框的标题   */
.title
{
	color: Navy;
	background-color: #EAF0F6;
	text-align: center;
}

/*   对话框内容的样式   */
.content
{
	overflow: auto;
	background-color: White;
	height: 80%;
}


.content input
{
    color:Navy ;	
}


#tempdiv
{
    position:absolute ;
    left:0px;
    z-index:1000;
    background-color:#dddddd;
   
    filter: Alpha(Opacity=80);
    -moz-opacity:0.8; 
     opacity: 0.8; 


}

#bottondiv
{
    border-top:solid 1px #ACC3DF;
    text-align:center ;
}

#bottondiv input
{
    margin:5px;
    cursor:pointer ;
}
	