@charset "utf-8";
/* CSS Document */

.horiz_menu{
	margin: 0; /* make sure there are no margins that can interfere */
	padding: 0; /* make sure there are no margins that can interfere, with all browsers */
	float: left;
	width: 100%;
	overflow: hidden; /* If text is too long, the remaining portion will be hidden */
	margin-bottom: 1em;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 13px;
	font-weight: bold;
	color: #fcf1d1;
	background-color: #a3c586;
}

.horiz_menu li{
	display: inline;
}

.horiz_menu li a{
	float: left; /* align list items inside the box */
	color: #000; /* font color */
	padding: 9px 11px; /* padding inside to ceate space between text and next box */
	text-decoration: none; /* creates lines between the menu items */
	border-right-width: 1px;
	border-right-style: solid;
	border-right-color: #000;
}

.horiz_menu li a:visited {
	color: #000;
}

.horiz_menu li.current a {
	color: #fcf1d1;
	background-position: center top;
	background-color: #5b7444;
}

.horiz_menu li a:hover {
	color: #fcf1d1; /* hover text color */
	background-color: #5b7444; /* hover background */
}

/* Horizontal Menu opening as a SubMenu */
#sub_menu {
	width: 978px;
	border-right-width: 1px;
	border-bottom-width: 1px;
	border-left-width: 1px;
	border-right-style: outset;
	border-bottom-style: outset;
	border-left-style: outset;
	border-right-color: #47697E;
	border-bottom-color: #47697E;
	border-left-color: #47697E;
	position: relative;
	clear: both;
	float: left;
	color: #ccc;
	font-size: 14px;
	top: -14px;
	background-color: #5b7444;
	font-family: Arial, Helvetica, sans-serif;
}
.td_line {
	color: #CCC;
	font-weight: bold;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 13px;
}
#MyTable {
	position: relative;
	color: #ccc;
}
#MyTable a {
	text-decoration: none;
	color: #fcf1d1;
	display: block;
	font-weight: bold;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 13px;
}
#MyTable a:hover {
	text-decoration: none;
	color: #000;
	background-color: #CCC;
}
#MyTable td {
	text-indent: 10px;
}
.MyTableHeader {
	font-weight: bold;
	color: #fcf1d1;
	text-decoration: underline;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 13px;
}
