/* CSS Document */

    body {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	margin: 0; /* it's good practice to zero the margin and padding of the body element to account for differing browser defaults */
	padding: 0;
	background: #FFCC66;
	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;
	background-color: #FFCC66;
        }
    #header {
        margin:0;
        padding:0;
        background: #DDDDDD;
        height: 62px;
        }
    #header h1 {
        margin: 0; /* zeroing the margin of the last element in the #header div will avoid margin collapse - an unexplainable space between divs. If the div has a border around it, this is not necessary as that also avoids the margin collapse */
        padding: 15px 0px 12px 0px; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
        background-color: #009900;
        font-family: Verdana, Arial, Helvetica, sans-serif;
        font-size: 28px;
        }
    #container {
        margin:0 auto;
        padding:0;
        background:#996600;
        width: 950px;
        text-align: left;
        border: 1px solid #000000;
        }
    #main2 {
        margin:0;
        padding:0;
        }
    #left {
        float:left;
        width:150px;
        margin:0;
        padding:5px 10px 10px 5px;
        font-size:80%;
        border-top: 1px solid #000000;
        }
    #left p {
        font: Verdana, Arial, Helvetica, sans-serif;
        font-size: 16px;
        text-align: left;
        }
    #right {
        float:right;
        width:170px;
        margin:0;
        font-size:80%;
        border-top: 1px solid #000000;
        }
    #right img {
        margin: 10px;
        }
    #middle {
	margin: 0px 170px 0 150px;
	padding: 0 10px 10px 10px;
	background: #66FF99;
	font-size:80%;
	border-top: 1px solid #000000;
	border-right: 1px solid #000000;
	border-left: 1px solid #000000;
	color: #000000;
	background-color: #CCFF99;
        }
    #middle a {
        color: #0066CC;
        }
    #middle a:hover {
        color: #FF66FF;
        }
    #middle a:visited {
        color: #0066CC;
        }
    .column-in {
        margin:0;
        padding:0.5em 1em;
        }
    .cleaner {
        clear:both;
        height:1px;
        font-size:1px;
        border:none;
        margin:0; padding:0;
        background:transparent;
        }

a:link {
    color: #FFFFFF;
}
a:hover {
    color: #FF66FF;
}
a:visted {
    color: #0066CC;
}
.style1 {
    font-family: Verdana, Arial, Helvetica, sans-serif;
    font-size: 14px;
    text-align: left;
}
.style2 {
    font-family: Verdana, Arial, Helvetica, sans-serif;
}
.style3 {
    font-family: Verdana, Arial, Helvetica, sans-serif;
    font-size: 16px;
    font-weight: bold;
    text-align: center;
}
.style5 {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 20px;
	font-weight: bold;
	text-align: center;
	
}
#footer {
    padding: 7px 0px 0px 0px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
    background:#DDDDDD;
    border-top: 1px solid #000000;
}
#footer p {
    margin: 0px; /* zeroing the margins of the first element in the footer will avoid the possibility of margin collapse - a space between divs */
    padding: 0px 0px 10px 0px; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
    background-color: #009900;
    font-family: Verdana, Arial, Helvetica, sans-serif;
    font-size: 14px;
}
