/* CSS Document */
body,html {
	height: 95%; /* ie treats as min-height */
	min-height: 100%; /* ie ignores */
	font-family: Arial, Helvetica, sans-serif;
	margin: 0px;
}

body {
	background-color:#000000;
}
	
*>body {
height: auto; /* ie ignores child selector, modern browsers replace height declaration */
} 

*>html {
height: auto; /* ie ignores child selector, modern browsers replace height declaration */
} 

p {
	font-size:16px;
	color: #ffffff;
}

a {
	color: #ff872f;
	text-decoration:none;
}	
	
a:hover {
	color: #facc7b;
	text-decoration:underline;
}	

a img {
	border: none;
}
	
h1 {
	color:#D09700;
	font-size:36px;
	padding-top: 20px;	
}

h2 {
	color:#FFFFFF;
	font-size:25px;
}

h3 {
	color:#D09700;
	font-size:14px;
	padding-bottom: 0px;
}

 .header {
	display: block;
	text-align:center;  
	background-color: #ff872f;
	height: 180px;
}

 .text {
	display: block;
	padding: 5px 200px 0px 200px;
	text-align:center;  
}

 img.main-img {
	display: block;
	padding-top: 10px;
	margin-left: auto;
	margin-right: auto;  

}


