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