/* CSS Document */
body{
margin:0;
padding:0;
font-family: Verdana;
font-size:10px;
font-style:normal;
line-height: 1.2em;
background: #cccccc;
}

b{font-size: 110%;}
em{color: red;}

#maincontainer{
width: 840px; /*Width of main container*/
margin: 0 auto; /*Center container on page*/
background: #dddddd;
}

#head{
background: #aaaaaa;
background-image:url(../images/site/head_pic.jpg);
height: 100px; /*Height of top section*/
}

#navbar{
float: left; /* Negated by the drop down menu, was originally placed under the head section */
width: 840px;
background: #bbbbbb;
}

#contentwrapper{
float: left;
padding-top: 25px;
width: 660px; /* Width of left column */
background: #FFFFFF;
}

#rightcolumn{
float: right;
padding-top: 25px;
width: 180px; /* Width of right column */
background: #eeeeee;
}

#foot{
clear: both; /* Footer will not start until both the contentwrapper and rightcolumn are cleared */
width: 100%;
background: #999999;
text-align: center;
padding: 4px 0;
}




