/* Modal layer support */
body {
	overflow:scroll;
}

div#modal
{
	top:0px;
	left:0px;
	width: 100%;
    height: 100%;
    display: none;
    position: absolute;
}
div#modalbox
{
	z-index: 600;
    position: absolute;
	left: 0px;
    top: 0px;
    width: 630px;
}
div#modalbackground
{
	top:0px;
	left:0px;
	background-color: #000000;
    filter: Alpha(Opacity=60); 
	-moz-opacity:0.6; 
	opacity: 0.6;
    width: 100%; 
	height: 100%; 
    position: absolute;
    z-index: 200;
    
}

div#modalclose {
	text-align:right; 
	margin:0px 15px 5px 5px;
}

div#modalclose a:link,div#modalclose a:visited, div#modalclose a:active, div#modalclose a:hover {
	text-decoration:none; 
	font-size:11px;
	color:black;
	font-family:Arial;
}

div#modallayer
{
	position: relative;
    background-color: white;
    border: solid 2px black; 
    z-index: 1000;
    padding: 10px;
}




