/* CSS Document */

body  {
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: left; /* this centers the container in IE 5* browsers. The text is then set to the left aligned default in the #container selector */
color: #000000;
font-family: Verdana, Arial, Helvetica, sans-serif;
font-size:12px;
background-color:#FFFFFF;
}

#wrapper{
width:760px;
margin: auto; /* the auto margins (in conjunction with a width) center the 
page */
text-align:left;
border-right:#462D06 1px solid;
border-left:#462D06 1px solid;
border-bottom:#462D06 1px solid;
}

#brown{
border-top:#FFFFFF 3px solid;
height:20px;
background-color:#462D06;
font-size:10px;
}

#header{
background-color:#FFFFFF;
}

#container{
border-top:#FFFFFF 3px solid;
background-color:#FFFFFF;
background-image:url(images/web_03.jpg);
background-repeat:no-repeat;
}

#content{
margin-right:10px;
margin-left:20px;
float:right;
width:510px;
}

#nav{
float:left;
width:170px;
margin-left:13px;
margin-right:3px;

}

/*for other than IE5 IE6*/	
html>body #nav{
margin-left:25px;
}

#nav p a{
display:block;
color:#462D06;
text-decoration:none;
}

#nav p a:hover{
color:#E9E4D0;
}

.title{
color:#462D06;
font-weight:bold;
font-size:25px;
padding-bottom:0px;
margin-bottom:0px;
font-family:Verdana, Arial, Helvetica, sans-serif;
}

.to{
color:#462D06;
font-weight:bold;
padding-top:0px;
margin-top:0px;
margin-bottom:-1em;
}

.intro{
color:#462D06;
padding-right:20px;
}

.white{
text-align:center;
padding:3px;
margin:0px;
color:#FFFFFF;
}
.address{
font-size:10px;
color:#462D06;
padding-top:60px;
}

.one{/*this code is for the left navigation on IE5 / IE6*/
margin-top:10px;
margin-bottom:0px;
}
.two{
margin-top:15px;
margin-bottom:0px;
}
.three{
margin-top:15px;
margin-bottom:0px;
}
.four{
margin-top:15px;
margin-bottom:0px;
}
.five{
margin-top:15px;
margin-bottom:0px;

}
.six{
margin-top:15px;
padding-bottom:0px;
}


html>body .one{ /*this code is for the left navigation others than IE5 / IE6 */
margin-top:12px;
}
html>body .two{
margin-top:15px;
}

html>body .three{
margin-top:15px;
}
html>body .four{
margin-top:12px;
}
html>body .five{
margin-top:13px;
}
html>body .six{
margin-top:16px;
}



.clearfloat { /* this class should be placed on a div or break element and should be the final element before the close of a container that should fully contain a float */
clear:both;
height:2px;
line-height: 0px;
padding-bottom:0px;

}

