div#header {
	font-weight: bold;
	font-size: 0.9em;
}
div#header a {
	color: #FFFFFF;
	display:block;
	text-decoration: none;
	padding:0 6px; /*creates space each side of menu item's text */
}
div#header a:hover {
	color: #CCCCCC;
}
div#header #navleft ul	{
	margin-top: 0px;
	margin-bottom: 0px;
	margin-left: 30px;
	margin-right: 0px;
}
div#header #navleft li {
	float:left;	/* causes the list to align horizontally instead of stack */
	position:relative; /* positioning context for the absolutely positioned drop-down */
	list-style-type:none; /* creates dividing lines between the li elements */
	border-right-width: 1px;
	border-right-style: solid;
	border-right-color: #CCCCCC;
	display: inline;
}
div#header #navleft li:first-child {
	border-left-width: 1px;
	border-left-style: solid;
	border-left-color: #CCCCCC;
}
div#header #navleft li:hover {
	background-color:#28644B; /*sets the background of the menu items */
}
/* the horizontal menu ends here */

/* the drop-down starts here */
div#header #navleft ul li ul {
	margin:0; /* prevents the TEMP value inheriting from the horiz menu - OK to remove if you remove TEMP above */
	position:absolute; /*sets the width of the menu - in combo with the li's 100% width, makes the menu stack*/
	left:-1px; /*aligns the drop exactly under the menu */
	width: 16em;
	text-align: center;
	}
div#header #navleft ul li ul li {
	border-right-width: 1px;
	border-bottom-width: 1px;
	border-left-width: 1px;
	border-right-style: solid;
	border-bottom-style: solid;
	border-left-style: solid;
	border-right-color: #CCCCCC;
	border-bottom-color: #CCCCCC;
	border-left-color: #CCCCCC;
	padding-top: 1px;
	padding-bottom: 1px;
	background-color: #28644B;
	}
div#header #navleft ul li ul li a {
	width: 16em;
}

div#header #navleft ul li ul li:first-child {
	border-top-width: 1px;
	border-top-style: solid;
	border-top-color: #CCCCCC;
	}
/* make the drop-down display as the menu is rolled over */
div#header #navleft ul li ul {
	display:none;
} /* conceals the drop-down when menu not hovered */
div#header #navleft ul li:hover ul {display:block; } /* shows the drop-down when the menu is hovered */



div#header #navright ul	{
	margin-top: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
	margin-right: 10px;
}
div#header #navright li {
	position:relative; /* positioning context for the absolutely positioned drop-down */
	list-style-type:none; /* creates dividing lines between the li elements */
	border-left-width: 1px;
	border-left-style: solid;
	border-left-color: #CCCCCC;
	display: inline;
	float: right;
}
div#header #navright li:hover {
	background-color:#28644B; /*sets the background of the menu items */
}
div#header #navright form {
	margin-top: -5px;
	margin-left: 1px;
}
div#header #navright input {
	height: 16px;
	border: 1px solid #000000;
	margin-top: 0px;
	padding-top: 0px;
	margin-right: 4px;
}
div#header #navright .submit {
	background-color: #28644B;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	color: #FFFFFF;
	font-weight: bold;
	border-top-style: none;
	border-right-style: none;
	border-bottom-style: none;
	border-left-style: none;
	font-size: 1em;
	margin-top: -1px;
}


/* THE HACK ZONE - */
/* hack for IE (all flavors) so the menu has a vertical line on the left */
* html div#header #navleft ul {
	float:left; /* adds the rightmost menu vertical line to the ul */
	margin-left:15px; /* IE doubles the given value above - why? */
	border-left-width: 1px;
	border-left-style: solid;
	border-left-color: #CCCCCC;
	}
* html div#header #navleft a {display:block;} /* makes IE5 & 5.5 accept the padding on the link */
/* add a top line to drops and pops in IE browsers - can't read :first-child */
* html div#header #navleft ul li ul {
	border-top-width: 1px;
	border-left-width: 0px;
	border-top-style: solid;
	border-top-color: #CCCCCC;
	}
/* end of hack zone */
/* END OF LIST-BASED MENU */

td#nav {
	vertical-align: top;
}
td#nav h1 {
	color: #28644B;
	font-size: 1.9em;
	font-weight: bolder;
	margin-left: 10px;
	margin-top: 14px;
	margin-bottom: 14px;
}
td#nav h1 a {
	color: #28644B;
	text-decoration: none;
}
td#nav ul	{
	margin: 0px;
}
td#nav ul a {
	display: block;
	text-decoration: none;
	margin-left: 10px;
	color: #666666;
	font-weight: bold;
}
td#nav ul a:hover {
	color: #333333;
}
td#nav li {
	position:relative; /* positioning context for the absolutely positioned drop-down */
	list-style-type:none; /* creates dividing lines between the li elements */
	width:150px;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #28644B;
	float: left;
}
td#nav li.new {
	background-image: url(../images/new.gif);
	background-repeat: no-repeat;
}
td#nav li:hover {
	background-color:#F4F4F4; /*sets the background of the menu items */
}
/* the drop-down starts here */
td#nav ul li ul {
	margin:0; /* prevents the TEMP value inheriting from the horiz menu - OK to remove if you remove TEMP above */
	position:absolute; /*sets the width of the menu - in combo with the li's 100% width, makes the menu stack*/
	left:150px; /*aligns the drop exactly under the menu */
	top:-1px;
	}
td#nav ul li ul li {
	width:100%;
	border-right-width: 1px;
	border-bottom-width: 1px;
	border-left-width: 1px;
	border-right-style: solid;
	border-bottom-style: solid;
	border-left-style: solid;
	border-right-color: #28644B;
	border-bottom-color: #28644B;
	border-left-color: #28644B;
	padding-top: 1px;
	padding-bottom: 1px;
	background-color: #FFFFFF;
	}
td#nav ul li ul li a {
	width: 18em;
}

td#nav ul li ul li:first-child {
	border-top-width: 1px;
	border-top-style: solid;
	border-top-color: #28644B;
	}
/* make the drop-down display as the menu is rolled over */
td#nav ul li ul {
	display:none;
} /* conceals the drop-down when menu not hovered */
td#nav ul li:hover ul {display:block; } /* shows the drop-down when the menu is hovered */
td#nav #language {
	width: 140px;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #28644B;
	padding-top: 8px;
	height: 57px;
	padding-left: 10px;
}

td#nav img {
	border-top-style: none;
	border-right-style: none;
	border-bottom-style: none;
	border-left-style: none;
	float: left;
}


/* THE HACK ZONE - */
/* hack for IE (all flavors) so the menu has a vertical line on the left */
* html td#nav ul {
	float: left;
	}
* html td#nav a {display:block;} /* makes IE5 & 5.5 accept the padding on the link */
/* add a top line to drops and pops in IE browsers - can't read :first-child */
* html td#nav ul li ul {
	border-top-width: 1px;
	border-left-width: 0px;
	border-top-style: solid;
	border-top-color: #28644B;
	}
/* end of hack zone */

/* END OF LIST-BASED MENU */
div#footer {
	color: #FFFFFF;
	font-weight: bold;
	font-size: 0.9em;
	text-align: center;
	padding-top: 7px;
	padding-bottom: 7px;
	padding-right: 15px;
	padding-left: 15px;
}
div#footer a {
	text-decoration: none;
	color: #FFFFFF;
}
div#footer a:hover {
	color: #CCCCCC;
}

