@charset "UTF-8";
body {
    background-color:#FFFFFF;
    margin: 0; /* it's good practice to zero the margin and padding of the body element to account for differing browser defaults */
    padding: 0;
    text-align: center; /* this centers the container in IE 5* browsers. The text is then set to the left aligned default in the #container selector */
    color: #000000;
}

 #container {
    width: 950px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
    margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
    border: 0px solid #000000;
    text-align: left; /* this overrides the text-align: center on the body element. */
    margin-top:20px;
}


 #homeBtn {
    float:left;
    width:250px;
    height:100px;
 }
 #header {
    background-image:url(../images/headerTop.jpg);
    background-repeat:no-repeat;
    padding-top:108px;
    width:950px;
    height:264px;
}
#headerImages {
    height:156px;
}

#headerImages li {
    text-align:center;
    list-style:none;
    display:inline;
    vertical-align:top;
}

#headerBottom {
    
}

/* NAVIGATION */

#navigation {
    margin-left:5px;
    width:222px;
    border: 0px solid #000000;
    float:left;
}
/* Selected menu item*/
#navigation .selected {
    text-decoration:none;
    color:#DA291E;
    font-family:Arial, Helvetica;
    font-size:11px;
    line-height:30px;
}

#navigation .selected a.index {
    text-decoration:none;
    color:#DA291E;
    font-family:Arial, Helvetica;
    font-size:11px;
    line-height:30px;
}

/* Margin bottom of submenu */
#navigation li.selected ul{
    margin-bottom:5px;
}
/* Line spacing for non selected menu items */
#navigation ul li.nonselected{
    line-height:30px;
}

/* Sub Menu Item */
#navigation li.selected ul li.selected {
    background-image:url(../images/navSquare.jpg);
    background-repeat:no-repeat;
    background-position: 3% 50%;
    text-indent:15px;
    text-decoration:none;
    color:#DA291E;
    font-family:Arial, Helvetica;
    font-size:11px;
    line-height:15px;
}

#navigation li.selected ul li.nonselected {
    text-indent:15px;
    text-decoration:none;
    color:#767676;
    font-family:Arial, Helvetica;
    font-size:11px;
    line-height:15px;
}

/* Non Selected Menu Item */
#navigation .nonselected a {
    text-decoration:none;
    color:#767676;
    font-family:Arial, Helvetica;
    font-size:11px;
}
/* Non Selected Menu Item Hover State */
#navigation .nonselected a:hover {
    color:#DA291E;
}

#maincontent {
    width:661px;
    float:left;
    min-height:200px;
    margin-top:-80px;
    padding-right:60px;
    margin-bottom:100px;
}

.table {
    width:500px;
}

#clearer {
    clear:both;
    height:1px;
    width:100%;
}

#footer {
    clear:both;
    border-top:1px solid #DDDDDD;
    
}