/* 
    Document   : modal
    Created on : May 17, 2009, 1:37:08 AM
    Author     : johan
    Description:
        Modal window for notices.
*/

html,body
	{
		margin:auto;
		padding:0;
	}
	.modal-overlay
	{
		position:fixed;
		top:0;
		right:0;
		bottom:0;
		left:0;
		height:100%;
		width:100%;
		margin:0;
		padding:0;
		background: ffff;
		opacity:.75;
		filter: alpha(opacity=75);
		-moz-opacity: 0.75;
		z-index:99999999;
		background:white;
	}
	* html .modal-overlay
	{
		position: absolute;
		height: expression(document.body.scrollHeight > document.body.offsetHeight ? document.body.scrollHeight : document.body.offsetHeight + 'px');
	}
	.modal-window
	{
		position:fixed;
		top:50%;
		left:50%;
		margin:0;
		padding:0;
		z-index:99999999;
	}
	* html .modal-window
	{
		position:absolute;
	}
	.close-window
	{
		position:absolute;
		width:50px;
		height:30px;
		right:42px;
		top:8px;
		background:transparent url('../img/icons/remove.png') no-repeat scroll right top;
		text-indent:-99999px;
		overflow:hidden;
		cursor:pointer;
		opacity:.5;
		filter: alpha(opacity=50);
		-moz-opacity: 0.5;
	}
	.close-window:hover
	{
		opacity:.99;
		filter: alpha(opacity=99);
		-moz-opacity: 0.99;
	}
.legal{
    margin: 30px 10px 20px 10px;
    font-size: 110%;
    font-weight: bolder;
    background-color: #fff;
    width: 50px;
    height: 50px;
    border: 1px solid #fff;
}
#myModal iframe{
padding: 15px;
background-color: #f9f9f9;
height: 22em;
width: 425px;
border: 2px solid #EAEAEA;
}

#myModal iframe a{
    color: red;
}