/*<![CDATA[*/

#submenu_border {
	background-image: url(../common02/sub_line.gif);
	height: 25px;
	width: 877px;
}

#hs0302 .adxm0302 {
	color: #666;
	background: #ccc;
	border-right-width: 1px;
	border-bottom-width: 1px;
	border-right-style: solid;
	border-bottom-style: solid;
	border-right-color: #bbb;
	border-bottom-color: #bbb;
	border-top-width: 1px;
	border-left-width: 1px;
	border-top-style: solid;
	border-left-style: solid;
	border-top-color: #eee;
	border-left-color: #eee;
}

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

/* - - - ADxMenu: BASIC styles [ MANDATORY ] - - - */

/* remove all list stylings */
.ADxMenu, .ADxMenu ul {
	padding: 0;
	margin: 0;
	border: 0;
	list-style-type: none;
	display: block;
	font-size: 11px;
	font-family: Arial, Helvetica, sans-serif;
}

.ADxMenu li {
	padding: 0;
	margin: 0;
	border: 0;
	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... */
	xwidth: 100px;
	text-align: center;
	xline-height: 22px;
}

.ADxMenu li a {
	xheight: 22px;
}

.ADxMenu li li a {
	height: 100%;
}

.ADxMenu li:hover {
	z-index: 10000;	/* ...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 */
}

.ADxMenu li li {
	float: none;/* items of the nested menus are kept on separate lines */
	text-align: left;
	xtext-indent: 10px;
}

.ADxMenu 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 */
}

.ADxMenu li:hover>ul {
	visibility: visible;	/* display submenu them on hover */
	top: 100%;	/* 1st level go below their parent item */
}

.ADxMenu 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 */
.ADxMenu:after, .ADxMenu ul:after {
	content: ".";
	height: 0;
	display: block;
	visibility: hidden;
	overflow: hidden;
	clear: both;
}
.ADxMenu, .ADxMenu 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 ".ADxMenu UL" or this feature may not work properly!
	if you do it, make sure you 110% know what you do */
.ADxMenu ul {
	background-image: url(empty.gif);	/* required for sticky to work in IE6 and IE7 - due to their (different) hover bugs */
	xpadding: 10px 30px 30px 30px;
	xmargin: -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 */
}
.ADxMenu ul ul {
	xpadding: 30px 30px 30px 10px;
	xmargin: -30px 0 0 -10px;
}
/* -- sticky.submenu.END -- */






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

.ADxMenu, .ADxMenu ul li {
	color: #eee;
}

.ADxMenu li {
	xborder-right: 1px solid #ddd;
}

.ADxMenu li li{
	xborder-right: none;
}

.ADxMenu ul {
	width: 16em;
}

.ADxMenu a {
	text-decoration: none;
	color: #666;
	padding: 4px 32px 3px 32px;
	margin: 0 5px 0 0;
	display: block;
	position: relative;
	background: #EFEFEF;
	border-right-width: 1px;
	border-bottom-width: 1px;
	border-right-style: solid;
	border-bottom-style: solid;
	border-right-color: #ccc;
	border-bottom-color: #ccc;
	border-top-width: 1px;
	border-left-width: 1px;
	border-top-style: solid;
	border-left-style: solid;
	border-top-color: #F6F6F6;
	border-left-color: #F6F6F6;
}

.ADxMenu li li a {
	padding: 4px 15px 3px 15px;
}

.ADxMenu li a:hover, .ADxMenu li:hover>a {
	xcolor: #888;
	xbackground: #ddd;
}

.ADxMenu li li a:hover, .ADxMenu li li:hover>a {
	color: #888;
	background: #ddd;
}

.ADxMenu li ul {	/* create borders around each item */
	xborder: 1px solid #ccc;
}
.ADxMenu ul>li + li {	/* and remove the top border on all but first item in the list */
	xborder-top: 0;
}

.ADxMenu li li:hover>ul {	/* inset 2nd+ submenus, to show off overlapping */
	top: 5px;
	left: 90%;
}

/* 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
.ADxMenu>li:first-child>a, .ADxMenu li + li + li li:first-child>a {
	color: #567;
}
*/
 
/* Fix for IE5/Mac \*//*/
.ADxMenu a {
	float: left;
}
/* End Fix */

/*]]>*/





<!--[if lte IE 6]>

/*<![CDATA[*/

/* - - - ADxMenu: IE6 BASIC styles [MANDATORY] - - - */

/*
	this rules improves accessibility - if Javascript is disabled, the entire menu will be visible
	of course, that means that it might require different styling then.
	in which case you can use adxie class - see: aplus.co.yu/adxmenu/examples/ie6-double-style/
 */
.ADxMenu ul {
	visibility: visible;
	position: static;
	margin-top: 1px;
}

.ADxMenu, .ADxMenu ul {	/* float.clear */
	zoom: 1;
}

.ADxMenu li.adxmhover {
	z-index: 10000;
}

.ADxMenu .adxmhoverUL {	/* li:hover>ul selector */
	visibility: visible;
}

.ADxMenu .adxmhoverUL {	/* 1st-level submenu go below their parent item */
	top: 100%;
	left: 0;
}

.ADxMenu .adxmhoverUL .adxmhoverUL {	/* 2nd+ levels go on the right side of the parent item */
	top: 0;
	left: 100%;
}

/* - - - ADxMenu: DESIGN styles - - - */

.ADxMenu ul a {	/* fix clickability-area problem */
	zoom: 1;
}

.ADxMenu li li {	/* fix white gap problem */
	float: left;
	width: 100%;
	xbackground: #EFEFEF;
}

.ADxMenu li li {	/* prevent double-line between items */
	xmargin-top: -1px;
}

.ADxMenu a:link, .ADxMenu .adxmlinkA {
	color: #666;
	text-decoration: none;
}

.ADxMenu a:visited, .ADxMenu .adxmvisitedA {
	color: #666;
	text-decoration: none;
}

.ADxMenu a:hover, .ADxMenu .adxmhoverA {		/* li:hover>a selector */
	color: #666;
	background: #ddd;
	text-decoration: none;
}

.ADxMenu li li a:link, .ADxMenu li.adxmlinkA {
	color: #666;
	text-decoration: none;
}

.ADxMenu li li  a:visited, .ADxMenu li.adxmvisitedA {
	color: #666;
	text-decoration: none;
}

.ADxMenu li li a:hover, .ADxMenu li.adxmhoverA {		/* li:hover>a selector */
	color: #666;
	background: #ddd;
	text-decoration: none;
}

.ADxMenu .adxmhoverUL .adxmhoverUL {	/* inset 2nd+ submenus, to show off overlapping */
	top: 5px;
	left: 90%;
}

/*]]>*/

<!--[endif]>


