/*
CSS Style Sheet
*/

body{
	padding: 0px;
	margin: 20px;
	background-color: darkolivegreen;
	color: #453A1E;
	font-family: Arial, Helvetica, sans-serif;
    background-repeat: no-repeat;
}
#mainBody {
	width: 766px;
	margin-bottom: 10px;
	background-repeat: no-repeat;
	height: 566px;
	margin-top: 20px;
	margin-right: auto;
	margin-left: auto;
	
	background-position: 0 0%;
}

#logo {
	width: 250px;
	color: #FAF8F2;
	height: 324px;
	float: left;
	margin-top: 55px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 35px;
	padding: 5px;
	background-color: #FFF;
	background-position: 0% 0%;
}

#adc { width: 250px;}

#content {
	margin-left: 0px;
	margin-top: 10px;
	width: 360px;
	height: 400px;
	border: 1px solid #707070;
	padding: 30px;
	float: right;
	background-color: #CC9900;
	overflow: auto;
	margin-right: 15px;
}
#content img   {
	margin: 0px;
	padding: 0px;
}
#content h1 {
	font-size: 2em;
	margin: 0;
	margin-bottom: 10px;
	font-family: baumans, sans-serif;
	font-style: normal;
	font-weight: 400;
}
/*	
#content h1 {
	font: normal 14pt Times;
	letter-spacing: 5px;
	padding: px;
	margin: 0px;
	height: 25px;
	text-indent: 0px;
	color: #FFFFFF;
	} 
*/	
	
#content h2 {
	font: normal 10pt Arial;
	font-weight: bold;
	padding: 0px;
	width: 191px;
	text-indent: 0px;
	color: #FFFFFF;
	margin-top: 15px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
	} 
	
#content p {
	height: auto;
	color: #FFFFFF;
	text-align: left;
	font-family: Arial;
	font-size: 12px;
	line-height: 20px;
}

#content a {
	color:#333333;
	font-weight:bold;
}
#content ul {
	width: 340px;
	padding: 0px;
	text-align: center;
	height: 20px;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 10px;
	margin-left: 0px;
}
#content ul li  {
	width: 165px;
	list-style-type: none;
	font-size: 12px;
	color: #FFF;
	text-align: center;
	float: left;
	margin: 0px;
	padding: 0px;
}
nav {
	width: 465px;
	color: #FAF8F2;
	text-align: left;
	height: 10px;
	margin: 0px;
	padding: 35px 0px 0px 0px;
	float: right;
}
nav ul {
	margin-top: 0px;
	margin-left: 0px;
	list-style-type: none;
}
nav ul li {
	font: 9pt Arial;
	color: #F1E9D6;
	float: left;
	padding: 0px 12px 0px 10px;
	border-right: 1px solid #F2E2A7;
}

nav ul li:last-of-type {
	border-right: 0px;
}

nav ul li a {
	color: #F1E9D6;
	text-decoration: none;
}
	
nav ul li a:hover {
	color: #C78D37;
}
footer {
	position: relative;
	width: 760px;
	color: #999999;
	text-align: center;
	font-size: 11px;
	clear: both;
	margin: 0px auto 0px auto;
	padding: 5px 0px 0px 0px;
}
footer p {
	margin: 0px;
	padding: 0px;
}
footer a {
	color: #999;
}
.bold {
	font-weight: bolder;
	margin-left: 5px;
	color: #7B2217;
}


button.accordion {
    background-color: darkseagreen; /*#eee;*/
    color: #444;
    cursor: pointer;
    padding: 18px;
    width: 100%;
    border: none;
    text-align: left;
    outline: none;
    font-size: 15px;
    font-color: white;
    transition: 0.4s;
    margin-top: 120x;
    margin-left: 0px;
}

button.accordion.active, button.accordion:hover {
    background-color: #ddd;
}

button.accordion:after {
    content: '\002B';
    color: #777;
    font-weight: bold;
    float: right;
    margin-left: 5px;
}

button.accordion.active:after {
    content: "\2212";
}

div.panel {
    
    padding: 0 18px;
    background-color: gray;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.2s ease-out;
}

