@charset "UTF-8";
/* CSS Document */
body {
	font: 100% Arial;
	margin: 0; /* it's good practice to zero the margin and padding of the body element to account for differing browser defaults */
	padding: 0;
	color: #000000;
	background-image: url(bg.jpg);
	text-align: center; 
}

.oneColElsCtr {
	margin: 0 auto; 
	text-align: left;
	width: 900px; 
}

.oneColElsCtr header {
	height: 200px;
	padding: 0;
	background: #FFFFFF;
	border: 1px #cccccc;
	border-radius: 10px;
}

.oneColElsCtr #nav {
	height: 10px;
	padding: 20px 20px;
	font-family: arial;
	background: #FFFFFF;
	font-weight:bold;
	margin-bottom: 0px;
	margin-top: 0px;
  border: 1px #5cba9b;
  border-radius: 10px;
}

.oneColElsCtr #nav a:hover {
	font-weight:bold;
	font-size:110%;
	color:#5cba9b;  /* #6eba4c; */
}

.oneColElsCtr #nav a {
	font-weight:bold;
	font-size:110%;
	color:#476221;
}

.oneColElsCtr #container {
	float: left;
	font-size: 14px;
	line-height: 1.5;
	width: 650px;
	height: 100%;
	background: #FFFFFF;
	text-align: justify; /* this overrides the text-align: center on the body element. */
	margin-bottom: 20px;
	border: 1px #cccccc;
	border-radius: 10px;
}
.oneColElsCtr #menu {
	float: right;
	line-height: 1.5;
	width: 180px;
	height: 100%;
	background: #FFFFFF;
	text-align: justify;
	padding: 20px 20px;
	font-family: arial;
	margin-bottom: 20px;
	border: 1px #cccccc;
	border-radius: 10px;
}

.oneColElsCtr footer {
	float: left;
	background: #FFFFFF;
	height: 30px;
	padding: 20px 20px 20px 20px;
	font-family: arial;
	margin-bottom: 30px;
	width: 860px;
	text-align: center;
	border: 1px #cccccc;
	border-radius: 10px;
}
	

.oneColElsCtr #mainContent {
	padding: 10px 30px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
	font-family: Arial;
}
body,td,th {
	font-size: 12px;
	font-family: Arial;
}


h1 {
	font-size: 16px;
	color: #5cba9b;  /* #6eba4c; */
  font-weight: bold;
	letter-spacing: 2px;
}

h2 {
	font-size: 15px;
	color: #5cba9b;
	font-weight: bold;
	letter-spacing: 1px;
}

a {
	color: #476221;
	text-decoration: none;
	font-weight: normal;
	font-family: Arial;
}

a:hover {
	color:#5cba9b;
}


/*--- DROPDOWN ---*/
#nav ul{
    background:#fff;
    background:rgba(255,255,255,0);
    list-style:none;
    position:absolute;
    left:-9999px;
	list-style-type: none;
    margin: 0;
    padding: 0;
	font-weight:bold;
}
#nav ul li{
    padding-top:1px;
    float:none;
	font-weight:bold;
}

#nav li{
    display: inline;
	padding: 50px;
	font-weight:bold;
}
#nav ul a{
    white-space:nowrap;
	font-weight:bold;
}
#nav li:hover ul{ 
    left:0;
    position:absolute;
	font-weight:bold;
	width: 100px;
}
#nav li:hover a{ 
    text-decoration:none;
	font-weight:bold;
	background: #FFFFFF;
}
#nav li:hover ul a{ 
    text-decoration:none;
	font-weight:bold;
	background: #FFFFFF;
}
#nav li:hover ul li a:hover{
	font-weight:bold;
	background: #FFFFFF;
}