@charset "utf-8";
html {
	width:100%;
	height:auto;
	overflow-x:hidden;
	overflow-y:scroll;
}

body {	
	width:100%;
	height:auto;
	
	font-family:"Lucida Grande", "Lucida Sans Unicode", "Lucida Sans", "DejaVu Sans", Verdana, sans-serif;
	font-size:14px;
}

#bg {
	width:1920px;
	height:1200px;
	
	position:fixed;
	top:0px;
	left:50%;
	margin-left:-960px;
	
	background:url(images/bg.png);
}

#page {
	width:900px;
	height:auto;
	padding-bottom:30px;
	
	position:absolute;
	top:30px;
	left:50%;
	margin-left:-450px;
}

#header {
	position:relative;
	top:0px;
	left:0px;
	width:900px;
	height:225px;
	
	background:url(images/header.png);
	
	border-radius:25px 25px 0px 0px;
}

#header-content {
	width:900px;
	height:auto;
	position:absolute;
	bottom:0px;
	left:0px;
}

#content {
	padding:10px 25px 15px 25px;
		
	width:850px;
	height:auto;
	
	text-align:justify;
	background:#FFFFFF;
}

#footer {
	position:relative;
	top:0px;
	left:0px;
	width:900px;
	height:auto;
	
	background:#141414;
	background:-moz-linear-gradient(top, #333333 0%, #141414 100%);
	background:-webkit-gradient(linear, left top, left bottom, color-stop(0%, #333333), color-stop(100%, #141414));
	background:-webkit-linear-gradient(top, #333333 0%, #141414 100%);
	background:-o-linear-gradient(top, #333333 0%, #141414 100%);
	background:-ms-linear-gradient(top, #333333 0%, #141414 100%);
	background:linear-gradient(to bottom, #333333 0%, #141414 100%);
	
	border-radius:0px 0px 25px 25px;
	border-top:2px solid #048500;
}

#footer-content {
	width:850px;
	height:auto;
	padding:10px 25px 10px 25px;
	position:relative;
	top:0px;
	left:0px;
	
	color:#FFFFFF;
}

h1 {
	float:left;

	padding:0px 25px 0px 0px;
	margin:0px;
	
	color:#048500;
	font-size:28px;
}

h2 {
	padding:0px;
	margin:0px;
	
	color:#000000;
	font-size:20px;
}

h3 {
	padding:0px;
	margin:0px;
	
	text-align:right;
	color:#999999;
	font-size:10px;
}

hr {
	border-top:1px solid #CCCCCC;
	border-right:none;
	border-bottom:none;
	border-left:none;
}

div.button {
	width:175px;
	padding:10px;
	
	text-align:center;
	color:#FFFFFF;
	text-decoration:none;
	font-weight:bold;
	
	background:#048500;
	background:-moz-linear-gradient(top, #048500 0%, #035400 100%);
	background:-webkit-gradient(linear, left top, left bottom, color-stop(0%, #048500), color-stop(100%, #035400));
	background:-webkit-linear-gradient(top, #048500 0%, #035400 100%);
	background:-o-linear-gradient(top, #048500 0%, #035400 100%);
	background:-ms-linear-gradient(top, #048500 0%, #035400 100%);
	background:linear-gradient(to bottom, #048500 0%, #035400 100%);
	
	border-radius:15px;
}

div.button:hover {
	background:#57a900;
	background:-moz-linear-gradient(top, #035400 0%, #048500 100%);
	background:-webkit-gradient(linear, left top, left bottom, color-stop(0%, #035400), color-stop(100%, #048500));
	background:-webkit-linear-gradient(top, #035400 0%, #048500 100%);
	background:-o-linear-gradient(top, #035400 0%, #048500 100%);
	background:-ms-linear-gradient(top, #035400 0%, #048500 100%);
	background:linear-gradient(to bottom, #035400 0%, #048500 100%);
}

div.button a, a:visited, a:link {
	text-decoration:none;
}