/*<![CDATA[*/

/* page styling, unimportant for the nav_catalogue. only makes the page looks nicer */

/* - - - ADxnav_catalogue: BASIC styles - - - */

/* remove all list stylings */

#nav_catalogue, #nav_catalogue ul {
	margin: 0;
	padding: 0;
	border: 0;
	list-style-type: none;
	display: block;
	line-height: normal;
}

#nav_catalogue li {
	margin: 0;
	padding: 0;
	border: 0;
	display: block;
	float: left;	/* move all main list items into one row, by floating them */
	position: relative;	/* position each LI, thus creating potential IE.win overlap problem */
	z-index: 5;		/* thus we need to apply explicit z-index here... */
}

#nav_catalogue li:hover {
	z-index: 10000;	/* ...and here. this makes sure active item is always above anything else in the nav_catalogue */
	white-space: normal;/* required to resolve IE7 :hover bug (z-index above is ignored if this is not present)
							see http://www.tanfa.co.uk/css/articles/pure-css-popups-bug.asp for other stuff that work */
	text-decoration:none;
}

#nav_catalogue li li {
	float: none;/* items of the nested nav_catalogues are kept on separate lines */
}

#nav_catalogue ul {
	position: absolute;
	z-index: 10;
	left: 0;	/* while hidden, always keep them at the top left corner, */
	top: 0;		/* 		to avoid scrollbars as much as possible */
	visibility: hidden;
	width:200px;
}

#nav_catalogue li:hover>ul {
	visibility: visible;	/* display subnav_catalogue them on hover */
	top: 100%;	/* 1st level go below their parent item */
	text-decoration:none;
}

#nav_catalogue li li:hover>ul {	/* 2nd+ levels go on the right side of the parent item */
	top: 0;
	left: 100%;
	text-decoration:none;
}

/* -- float.clear --
	force containment of floated LIs inside of UL */
#nav_catalogue:after, #nav_catalogue ul:after {
	content: ".";
	height: 0;
	display: block;
	visibility: hidden;
	overflow: hidden;
	clear: both;
}
#nav_catalogue, #nav_catalogue ul {	/* IE7 float clear: */
	min-height: 0;
}
/* -- float.clear.END --  */

/* -- sticky.subnav_catalogue --
	it should not disappear when your mouse moves a bit outside the subnav_catalogue
	YOU SHOULD NOT STYLE the background of the "#nav_catalogue UL" or this feature may not work properly!
	if you do it, make sure you 110% know what you do */
#nav_catalogue ul {
	background-image: url(empty.gif);	/* required for sticky to work in IE6 and IE7 - due to their (different) hover bugs */
	padding: 10px 10px 10px 30px;
	margin: -10px 0 0 -30px;
	/*background: #f00;*/	/* uncomment this if you want to see the "safe" area.
								you can also use to adjust the safe area to your requirement */
}
#nav_catalogue ul ul {
	padding: 30px 30px 30px 10px;
	margin: -30px 0 0 -10px;
}
/* -- sticky.subnav_catalogue.END -- */






/* - - - ADxnav_catalogue: DESIGN styles [ OPTIONAL, design your heart out :) ] - - - */

#nav_catalogue, #nav_catalogue ul li {
	color: #FFF;
	font-weight: normal;
}

#nav_catalogue ul {
	width: 200px;;
}

#nav_catalogue a {
	text-decoration: none;
	display: block;
	position: relative;
	color: #FFF;
	text-decoration: none;
	padding-right: 20px;
	padding-left: 20px;
	border-left-width: 1px;
	border-left-style: solid;
	border-left-color: #FFFFFF;
	padding-bottom: 2px;
	margin-bottom: 3px;
	padding-top: 2px;
	background-color:#0071b9;
}
#nav_catalogue ul>li + li {	/* and remove the top border on all but first item in the list */
	border-left-width: 0;
	border-left-style: none;
}
#nav_catalogue li.selected a, #nav_catalogue li.selected, #nav_catalogue li.selected a:hover {
	color: #FFF;
	background-color:#f3362e;
	text-decoration:none;
}
#nav_catalogue a:hover, #nav_catalogue li:hover>a {
	color: #FFF;
	background-color:#f3362e;
}
#nav_catalogue li li {	/* create borders around each item */
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #FFFFFF;
}
#nav_catalogue li li a {
	background-color: #888A89;
	font-weight: normal;
	padding-top: 0.3em;
	padding-right: 1em;
	padding-bottom: 0.3em;
	padding-left: 1em;
	margin: 0px;
	border-top-style: none;
	border-right-style: none;
	border-bottom-style: none;
	border-left-style: none;
	color: #FFFFFF;
}
#nav_catalogue li li a:hover {
	background-color: #333333;
	white-space: normal;
	margin: 0px;
	text-decoration:none;
}
#nav_catalogue li.selected li a, #nav_catalogue li.selected li {
	color: #333333;
}
#nav_catalogue ul>li + li {	/* and remove the top border on all but first item in the list */
	border-top: 0;
}

#nav_catalogue li li:hover>ul {	/* inset 2nd+ subnav_catalogues, to show off overlapping */
	top: 5px;
	
}
#nav_catalogue li a {
 padding-left:10px;
 padding-right:10px;}

/* Fix for IE5/Mac \*//*/
#nav_catalogue a {
	float: left;
}
/* End Fix */

/*]]>*/
