/* CSS Document */

body {
	background: #fff;
	margin: 0px;
	padding: 0px;
	font-family: Arial, Helvetica, sans-serif;
	}

a {
	color: #2a83f2;
	text-decoration: underline;
	}

a:hover {
	color: #59a1fa;
	text-decoration: underline;
	}

form {
	margin: 0px;
	padding: 0px;
	}

/* ----------------------- Modal Window ------------------------------*/

#overlay {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1000;
    width: 100%;
    height: 500px;
    background-color: #038;
    -moz-opacity: 0.3;
    opacity: 0.3;
	filter: alpha(opacity = 30);
	visibility: hidden;
}

html body #overlay {
	display: block;
	visibility: visible;
}

#modal {
    position: absolute;
    width: 700px;
    margin: 50px 0 0 -350px;
	top: 0;
    left: 50%;
    z-index: 1001;
    border: 3px solid #acf;
    padding: 15px;
    background: #fff;
}

#modal iframe { width: 100%; border: 0; height: 350px; }

#modal h3 {
    font-family: "Lucida Grande", "Lucida Sans", Verdana, sans-serif;
    font-size: 20px;
    font-weight: normal;
    border-bottom: 1px dotted #ccc;
    margin: 0 0 10px 0;
}

#close { float: right; margin: 0; }
#close img { border: 0; }


