@charset "utf-8";
/* CSS Document */

/*** Resets all elements ***/
 
* {
   margin: 0px;
   padding: 0px;
}
 
/*** Gives the body the dark gray background we used in PS ***/
 
body { background: #ffff; }
 
/*** Styles the links ***/
 
a { color: #fff; }
 
/*** Sets paragraph styles ***/
 
p {
	color: fffff;
	font-family: verdana, arial;
	font-size: 14px;
	text-align: center;
	line-height: 18px;
	margin: 0px auto 20px auto;
	text-shadow: 1px 1px 1px #111; /*** New CSS3 Property that adds the shadow ***/
	width: 850px; /*** Allows paragraphs to be centered ***/
}

/*** Top section 100% color ***/
 
#top {
   background: #FFF;
   border-bottom: 1px solid #fff;
   margin-bottom: 60px;
   width: 100%;
}
 
/*** Topcon centers the page at 900px ***/
 
#topcon {
   margin: 0px auto; /*** Centers the page ***/
   width: 900px; /*** A width is required in order for it to center ***/
}

/*** Styling the Logo ***/
 
#logo {
   width:900px;
   height: 476px;
   display: block;
   margin: 0px auto; /*** Centers the logo in the 900px box ***/
   padding: 50px 0px;
}
 
