﻿body {
}
/*<![CDATA[*/

/* page styling, unimportant for the menu. only makes the page looks nicer */
body {
	font-family: arial;
	font-weight:bold;
	font-size: 11px;
	margin:0px 0px 0px 0px;
}



/* - - - ADxMenu: BASIC styles [ MANDATORY ] - - - */

/* remove all list stylings */
.menu, .menu ul {
	margin: 0px 0px 0px 0px;
	padding: 3px 0px 0px 0px;
	border: 0;
	list-style-type: none;
	display: block;
}

.menu 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... */
}

.menu li:hover {
	z-index: 1000000;	/* ...and here. this makes sure active item is always above anything else in the menu */
	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 */
}

.menu li li {
	float: none;/* items of the nested menus are kept on separate lines */
}

.menu ul {
	visibility: hidden;	/* initially hide all submenus. */
	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 */
}

.menu li:hover>ul {
	visibility: visible;	/* display submenu them on hover */
	top: 100%;	/* 1st level go below their parent item */
}

.menu li li:hover>ul {	/* 2nd+ levels go on the right side of the parent item */
	top: 0;
	left: 100%;
}

/* -- float.clear --
	force containment of floated LIs inside of UL */
.menu:after, .menu ul:after {
	content: ".";
	height: 0;
	display: block;
	visibility: hidden;
	overflow: hidden;
	clear: both;
}
.menu, .menu ul {	/* IE7 float clear: */
	min-height: 0;
}
/* -- float.clear.END --  */

/* -- sticky.submenu --
	it should not disappear when your mouse moves a bit outside the submenu
	YOU SHOULD NOT STYLE the background of the ".menu UL" or this feature may not work properly!
	if you do it, make sure you 110% know what you do */
.menu ul {
	background-image: url(images/navigation/empty.gif);	/* required for sticky to work in IE6 and IE7 - due to their (different) hover bugs */
	padding: 10px 30px 30px 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 */
}
.menu ul ul {
	padding: 30px 30px 30px 10px;
	margin: -30px 0 0 -10px;
}
/* -- sticky.submenu.END -- */






/* - - - ADxMenu: DESIGN styles [ OPTIONAL, design your heart out :) ] - - - */

.menu{
	color: #000;
	background: #333 url(images/navigation/footer-bg2.png) 0 0 repeat-x;
/*	border:1px solid #666;*/
	height:23px;
}

.menu ul li.mmenu {
	color: #000;
	background: #000 url(images/navigation/footer-bg-wht.png) 0 0 repeat-x;
	font:bold 11px arial;
}

.menu ul li .oaaSearch_class {
	color: #000;
	background: #FFF url(images/navigation/black.png) 0 0 repeat-x;
	font:bold 11px arial;
}

.menu ul {
	width: 23em;
}

.menu ul.large {
	width: 31em;
}
.menu ul.medium {
	width: 18em;
}

.menu ul.small{
	width: 15em;
}

.menu a {
	text-decoration: none;
	color: #333;
	margin-left:-1px;
	padding: 3px 1.5em 3px 1.5em;
	display: block;
	position: relative;
	border:1px solid #CCAC32; border-bottom:none; border-top:none;
	font-weight:bold;
}

.menu ul li a {
	text-decoration: none;
	color: #000;
	background-color:#EEE;
	padding: 5px 1.5em 3px 1.5em;
	display: block;
	position: relative;
	border:1px solid #CCC;
	font-weight:bold;
}

.menu ul li a:hover {
	background-color:#000;
	}

.menu a:hover, .menu li:hover > a {
/*	color: #000; */
	background-color:#000;
	color: #E3C260;
	background: #000 url(images/navigation/footer-bg4.png) top repeat-x;
    border: 1px solid #ccc;
    font-weight:bold;
}


.menu li li {	/* create borders around each item */
	/*border: 1px solid #FFF;*/
}
.menu ul>li + li {	/* and remove the top border on all but first item in the list */
	border-top: 0;
}

.menu li li:hover>ul {	/* inset 2nd+ submenus, to show off overlapping */
	top: 5px;
	left: 90%;
}

.menu ul li {
	color: #000;
	background: transparent url(images/navigation/searchDD-bg.png) 0px 0 no-repeat;
	font:bold 11px arial;
}

.menu li .cascade > a{background:#EEE url(images/navigation/nav-arrow.gif) 95% 50% no-repeat;}

#oaaSearch li.oaaSearch_class:link ul.reset_menu {position:absolute; margin:0px 0px 0px 0px; padding:10px 10px 10px 10px; width:299px; background:transparent url(images/navigation/black.png) 0 0 repeat-x;}
#oaaSearch li.oaaSearch_class:link ul, #oaaSearch li.oaaSearch_class:visited ul { position:absolute; margin-top:0px; padding:10px; width:299px; line-height:16px; color:#0395CC; display:none;} 
#oaaSearch li.oaaSearch_class:hover ul { display:block;}
#oaaSearch li.oaaSearch_class ul li{ display:block; margin:0px 0px; padding: 12px 10px 10px 20px; list-style-type:none; width:314px; height:48px; margin-left:-8px; }
#oaaSearch li.oaaSearch_class ul li:first-child { border-top: none; }
#oaaSearch li.oaaSearch_class ul li a { display:block; color:#0395CC; }
#oaaSearch li.oaaSearch_class ul li a:hover { color:#7FCDFE; }
	

       
        /* search */
        .searchContainer div.searchBoxDD { background-color:#232323; display:inline; margin:0px 0px 0px 0px; padding:0px 0px 0px 0px;}
       /* .searchContainer input.searchField {border:solid 2px #676767; background-color:#EEE;} */
        .searchContainer input.buttonSearch {margin:-2px 0px 0px 0px; border:solid 1px #777; padding:3px 3px 3px 3px; width:25px; height:22px; display:inline; font:bold 11px arial;}


div.sbox_l{background: white url(images/navigation/srch_l.gif) 0 0 no-repeat; width: 19px; height: 19px; float:left;}
div.sbox_r{ background: white url(images/navigation/srch_r.gif) 0 0  no-repeat; width:19px; height: 19px; float:left;}
div.sbox input.searchField {background: #232323 url(images/navigation/srch_bg.gif) 0 0 repeat-x;  height: 19px; padding:3px; font-size: 11px; color: #555; float:left; border:none;}

/* special colouring for "Main menu:", and for "xx submenu" items in ADxMenu
	placed here to clarify the terminology I use when referencing submenus in posts */
/*.menu>li:first-child>a, .menu li + li + li li:first-child>a {
	color: #000;
}*/

/* Fix for IE5/Mac \*//*/
.menu a {
	float: left;
}
/* End Fix */

/*]]>*/

	