/*<![CDATA[*/
.navig {
	line-height: 1em;
	margin: 0 0 1em 0;
	display: block;
	position: relative;
}

/* remove all list stylings */
.navig, .navig ul {
	margin: 0;
	padding: 0;
	border: 0;
	list-style-type: none;
}

/* move all list items into one row, by floating them */
.navig li {
	margin: 0;
	padding: 0;
	border: 0;
	display: block;
	float: left;
}

/* initially hide all sub menus */
.navig ul {
	width: 100%;
	display: block;
	visibility: hidden;
	position: absolute;
	clear: both;
	top: 1em; /* watch for this value! you must make sure that this value and value of line-height for the parent items are such that it is possible to move the mouse over to submenu */
	left: 0;
}

/* -- float.clear -- force containment of floated LIs inside of main UL */
.navig:after {
	content: ".";
	height: 0;
	display: block;
	visibility: hidden;
	overflow: hidden;
	clear: both;
}
/* -- float.clear.END --  */

.navig li.selected ul, .navig li:hover ul {
	visibility: visible;
}
.navig li.selected ul {
	z-index: 10;
}
.navig li:hover ul {
	z-index: 100;
}
.navig {
	font-size: .6em;
	font-weight: normal;
	background-color: #005ba1;
	margin: 0 auto 0 0;
	padding: 0;
	border: 0;
	border-width: 0;
	width: 100%; /* this value should be close to what is needed for elements to stay on one line */
}
.navig a {
	color: #fff;
	text-decoration: none;
	padding: 1em 1em 1em 1em;
	display: block;
}
a.caps {
	text-transform: uppercase;
}
.navig li {
	margin: 0;
}

/* if the following selector was ".navig li:hover a" IE7 will NOT render nested UL! the reason is the background-color rule. */
.navig li:hover {
	color: #fff;
	background-color: #005ba1;
}

/* which is why the link is styled separately */
.navig li:hover a {
	color: #fff
}
.navig li:hover ul {
	background-color: #002d64;
}

/* always pay attention that the value for top is such that it is possible to move the mouse over to submenu */
.navig ul {
	top: 2.8em;
	padding: 0; /* should be identical to .navig, for best results */
	color: #fff;
	background-color: #ccc;
	width: 100%;
}
.navig li a {
	color: #fff;
}
.navig li a:hover {
	color: #efaf41;
}
.navig li li a {
	color: #fff;
}
.navig li li a:hover {
	text-decoration: underline;
	color: #efaf41;
}

/* fix the colors for selected item and submenu, for better usability */
.navig li.selected a, .navig li.selected, .navig li.selected a:hover {
	color: #efaf41;
	background-color: #002d64;
}
.navig li.selected, .navig li.selected:hover a, .navig li.selected ul {
	color: #efaf41;
	background-color: #002d64;
}

/* IE5/Mac: \*//*/
.navig {
	display: inline-block;
}
.navig a {
	float: left;
}
.navig li ul {
	top: 1.8em;
	height: 2em;
}
.navig li li, .navig li li a {
	display: inline;
	float: none;
}
/*  */
/*]]>*/
