/*********************** 
************************
2009 style sheet 
built = hardware hacks
************************
************************/

/*********************** 
base page layout 
************************/ 
html, body {
   margin: 0;
   padding: 0;
}
body {
   font-family: Verdana, sans-serif;
   font-size: 12px;
   color: #000000;
}
#page-container {
   width: 760px;
   height: 100%;
   margin: auto;
   border: 4px solid Black;
   background-color: White;
}

/***********************
 header 
************************/
#header {
   height: 60px;
   padding-top: 3%;
   background-color: Grey;
}
#header h1 {
   font-size: 24px;
   font-weight: bold;
   float: left;
   margin-left: 5px;
}
.nav {
   float: right;
   margin-right: 5px;
   margin-top: 28px;
}

/***********************
main content 
************************/
#content {
   padding-left: 3%;
   padding-right: 1%;
   background-color: White;
}
#content h4 {
   text-transform: uppercase;
   font-weight: bold;
}
#content h5 {
   text-transform: uppercase;
   font-weight: bold;
}
#content p {
   width: 50%;
   font-size: 9px;
}

/***********************
 side content 
************************/
#sidebar {
   float: right;
   width: 300px;
   padding-right: 10px;
   padding-top: 5px;
   padding-bottom: 10px;
}
.photo {
   border: 2px solid Gray;
   padding: 5px;
   background-color: White;
   float: right;
}
#sidebar em {
   float: right;
   padding: 5px;
   font-style: italic;
   font-size: 9px;
   font-weight: bold;
   width: 220px;
}

/***********************
footer 
************************/
#footer {
   clear: both;
   height: 30px;
   background-color: GoldenRod;
}
#footer p {
   padding-top: 5px;
   font-size: 1px;
   text-align: center;
}

/*********************** 
links
 ***********************/
a:link {
   font-family: Verdana, sans-serif;
   font-size: 10px;
   font-weight: bold;
   color: Black;
   text-decoration: none;
}
a:hover {
   font-family: Verdana, sans-serif;
   font-size: 10px;
   font-weight: bold;
   color: Black;
   text-decoration: underline;
}
a:visited {
   font-family: Verdana, sans-serif;
   font-size: 10px;
   font-weight: bold;
   color: Black;
   text-decoration: none;
}
