/* CSS Document */

/****************************************

NORMALIZATION
****************************************/

body, div, h1, h2, h3, h4, h5, h6, form, input, textarea, label, p, td {

margin: 0;
padding: 0;

}

html {

font-size: 125%; /* normalizes font size for all child elements to 20px font */

}

html body {

font-size: 50%; /* normalizes font size for all child elements to 10px font */

}

/****************************************
BODY
****************************************/

body {

background: #1b1b1b;

}

/****************************************
HEADERS
****************************************/

h1, h2, h3, h4, h5, h6 {

font-family: "Times New Roman", Times, serif;
font-weight: normal;

}
h1 {

font-size: 25px;

}
h2 {

font-size: 16px;
}
h3 {

font-size: 14px;
}

/****************************************
MAIN CONTAINER
****************************************/

#container {

width: 900px;
margin: auto;
height: auto;

}

/****************************************
HEADER INFO
****************************************/

#headerInfo {

width: 900px;
height: 69px;

}

/****************************************
MAIN NAVIGATION
****************************************/

#mainNav {

width: 900px;
height: auto;
float: left;
padding: 2px 0px;
margin: 15px 0 20px 0;

}
ul#navLinks {

margin: 0;
padding: 0;

}
ul#navLinks li {

display: inline;
margin: 0;
padding: 0;

}
ul#navLinks li a {

float: left;
display: block;
font-family: "Times New Roman", Times, serif;
font-size: 13px;
font-weight: normal;
color: #ffffff;
padding: 20px 13px;
border-right: #1b1b1b solid 2px; /* creates 2px space between active link and hover state on adjacent links */
text-decoration: none;

}
ul#navLinks li a:hover {

background: #333232;
text-decoration: none;

}
ul#navLinks li a#activeLink {

background: #333232;
text-decoration: none;

}

/****************************************
HEADER PIC
****************************************/

#headerPic {

width: 900px;
height: 342px;
float: left;
margin-bottom: 15px;

}

/****************************************
ARROW ON IMAGES
****************************************/

img.cornerArrow {

position: absolute;
right: 0;
top: 0;

}

/****************************************
CONTENT
****************************************/

#contentContainer {

width: 900px;
float: left;
display: table;
margin-bottom: 10px; /* had to put margin here rather than on #copyright because margin-top would not work on #copyright */

}
#leftColumn {

width: 513px; /* 553px (actual width) - 40px (padding) = 513px */
float: left;
height: auto;
font-family: Verdana, Arial, Helvetica, sans-serif;
font-size: 12px;
line-height: 19px;
font-weight: normal;
color: #ffffff;
padding: 10px 40px 0 0;

}
#leftColumn h3 {

font-family: Verdana, Arial, Helvetica, sans-serif;
font-weight: bold;

}
#rightColumn {

width: 347px;
float: left;
height: auto;

}
#sideBox {

width: 287px; /* 347px (actual width) - 60px (padding) = 287px */
height: auto;
float: left;
font-family: Verdana, Arial, Helvetica, sans-serif;
font-size: 11px;
line-height: 17px;
font-weight: normal;
color: #1b1b1b;
padding: 30px;

}
#sideBox h1 {

color: #1b1b1b;

}
img.border {

border: #1b1b1b solid 1px;
padding: 2px;
margin: 3px 0 0 10px;
float: right;

}

/****************************************
COPYRIGHT
****************************************/

#copyright {

width: 900px;
height: auto;
font-family: "Times New Roman", Times, serif;
font-size: 13px;
line-height: 20px;
font-weight: normal;
color: #ffffff;
padding: 30px 0 20px 0;
word-spacing: 2px;
text-align: center;
clear: both;

}
#copyright a {

font-size: 13px;
color: #ffffff;
text-decoration: none;

}
#copyright a:hover {

font-size: 13px;
color: #ffffff;
text-decoration: underline;

}