div#navigation {
	font-weight: normal;
	font-size: 1.25em;
	text-align: left;
}
div#navigation a {
	color: #FFFFFF;
	display:block;
	text-decoration: none;
	padding-top: 0;
	padding-right: 9px;
	padding-bottom: 20px;
	padding-left: 9px;
}
div#navigation a:hover {
	color: #CCCCCC;
}
div#navigation ul	{
	margin-top: 0px;
	margin-bottom: 0px;
	margin-left: 30px;
	margin-right: 0px;
}
div#navigation 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;
	display: inline;
}
div#navigation li:first-child {
}
div#navigation li:hover {
}
/* the horizontal menu ends here */

/* the drop-down starts here */
#navigation ul li ul {
	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: 14em;
	margin: 0;
	}
#navigation 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: #555555;
	border-bottom-color: #555555;
	border-left-color: #555555;
	padding-top: 1px;
	padding-bottom: 1px;
	background-image: url(../images_layout/back_navigation.png);
}
#navigation ul li ul li:hover {
	background-image: url(../images_layout/back_navigation_over.png);
}
#navigation ul li ul li a {
	width: 14em;
	padding-bottom: 0px;
}
#navigation ul li ul li:first-child {
	border-top-width: 1px;
	border-top-style: solid;
	border-top-color: #555555;
	}
/* make the drop-down display as the menu is rolled over */
#navigation ul li ul {
	display:none;
} /* conceals the drop-down when menu not hovered */
#navigation ul li:hover ul {display:block; } /* shows the drop-down when the menu is hovered */
/* THE HACK ZONE - */
/* hack for IE (all flavors) so the menu has a vertical line on the left */
* html div#navigation ul {
	float:left; /* adds the rightmost menu vertical line to the ul */
	margin-left:15px; /* IE doubles the given value above - why? */
}
* html div#navigation 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#navigation ul li ul {
	border-top-width: 1px;
	border-left-width: 0px;
	border-top-style: solid;
	border-top-color: #555555;
	}
/* end of hack zone */
/* END OF LIST-BASED MENU */

#footer {
	font-weight: normal;
	font-size: 1em;
	color: #999999;
	text-align: center;
	padding-top: 8px;
}
#footer a {
	color: #999999;
	text-decoration: none;
}
#footer a:hover {
	text-decoration: underline;
}
#footer #linknexis {
	position: relative;
	margin-left: 690px;
	margin-top: 30px;
}
#footer #linknexis img {
	border-top-style: none;
	border-right-style: none;
	border-bottom-style: none;
	border-left-style: none;
}
