/*		Navigation core 	*/

.navig {
	line-height: 1;
	margin: 0 0 12px 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;
	text-transform: capitalize;
	font: bold 11px Arial, Helvetica, sans-serif;
}

/* initialy hide all sub menus */
.navig ul {
	width: 100%;
	display: block;
	visibility: hidden;
	position: absolute;
	clear: both;
	top: 12px;/* 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;
	z-index: 8;
}

/* -- 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;
}

/*		Navigation make-up 	*/

.navig {
	color: #CCCCCC;
	/*background-color: #666;*/
	/*background:#666 url(images/top-nav-bg.gif) repeat-x top left;*/
	margin: 0;
	padding: 0 30px;
	width: 720px;
}

.navig a {
	color: #ccc;
	text-decoration: none;
	padding: 6px 5px 8px;
	display: block;
}

.navig li {
	margin: 0;
	border-right: 1px dotted #000;
	background-image:none;
}

/* 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: #000;
	background-color: #8EE5EE;
}
/* which is why the link is styled separately */
.navig li:hover a {
	color: #000000;
}

.navig li:hover ul {
	background-color: #5F9EA0;
		/*background:#E6453B; url(images/subnav-bg.gif) no-repeat top left;*/
}

/* always pay attention that the value for top is such that it is possible to move the mouse over to submenu (top must overlap bottom)*/
.navig ul {
	top: 21px;
	padding: 0 30px;/* should be identical to .navig, for best results */
	color: #000;
	width: 895px;
}

.navig li li {
	border-right: 1px dotted #000;
	line-height:1;
}

.navig li li a {
	color: #000;
}

.navig li li a:hover {
	text-decoration: underline;
}

/* fix the colors for selected item and submenu, for better usability */

.navig li.selected a, .navig li.selected, .navig li.selected a:hover {
	color: #000;
}

.navig li.selected, .navig li.selected:hover a, .navig li.selected ul {
}


/* IE5/Mac: \*//*/

.navig {
	display: inline-block;
}

.navig a {
	float: left;
}

.navig li ul {
	top: 21px;
	height: 24px;
}

.navig li li, .navig li li a {
	display: inline;
	float: none;
}

/*  */

/*]]>*/

