/*		Navigation core 	*/

.navig { font-family: "trebuchet ms", Geneva, Arial, Helvetica, Swiss, SunSans-Regular, sans-serif; line-height: 1em; display: block; position: relative; margin: 0 0 12px; }

/* 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; display: block; float: left; font: bold 12px/20px "trebuchet ms", Geneva, Arial, Helvetica, Swiss, SunSans-Regular, sans-serif; }

/* initialy hide all sub menus */
.navig ul {
	width: 1023px;
	display: block;
	visibility: hidden;
	position: absolute;
	clear: both;
	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: 20;
}

.navig li:hover ul {
	z-index: 100;
}

/*		Navigation make-up 	*/

.navig { color: #fbf5e6;
	/*background-color: #666;*/
	/*background:#666 url(images/top-nav-bg.gif) repeat-x top left;*/
	line-height: 1em; margin: 0; padding: 0 0 0 30px; width: 990px; border-style: solid;	/* this value should be close to what is needed for elements to stay on one line */
}

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

.navig li { margin: 0; background-image:none; padding-bottom: -5px; border-right: 1px solid #8b7d68; }

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

.navig li:hover ul { color: #000;
	
		/*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: #8b7d68; background-color: #8b7d68; width: 895px; }

.navig li li { line-height:1; }

.navig li li a {
	color: #8b7d68;
}

.navig li li a:hover { color: #8b7d68; 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;
	background-color: #fbf5e6;
}

.navig li.selected, .navig li.selected:hover a, .navig li.selected ul { color: #000; background-color: #fbf5e6; }


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

/*  */

/*]]>*/
