/* CSS Document */

/*<![CDATA[*/

/* - - - ADxMenu: BASIC styles - - - */
.menu {
	width: auto;/* VERY IMPORTANT! Set this to appropriate value, either here on down in the design section */
	font-family:Arial, Helvetica, sans-serif;
	font-size: 12px;
}
.menu, .menu ul {	/* remove all list stylings */
	list-style-type: none;
	margin: 0px;
	padding: 0px;
	border:none;
}
.menu li {
	position: relative;
	list-style-type: none;
	/*width:250px;*/
	position: relative;	/* position each LI, thus creating potential IE.win overlap problem */
	z-index: 1;		/* thus we need to apply explicit z-index here... */
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #8C2A2A;
    width: 100%;
}
.menu li li a {
	padding-left: 15px;
	background-color: #666;
	border-bottom-color: #8C2A2A;
	border-bottom-style: thin;
	border-bottom-width: 1px;
}
.menu li li li a {
	padding-left: 15px;
	background-color: #900;
	border-bottom-color: #8C2A2A;
	border-bottom-style: thin;
	border-bottom-width: 1px;
}
.menu li:hover, .menu li:focus {
	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 */
	background-color: #990000;
}
.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, .menu li:focus>ul {
	visibility: visible;	/* display submenu them on hover */
	left: 100%;	/* and move them to the right of the item */
	padding-left:20px;
	padding-top:25px;
}
/* -- 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(empty.gif);	/* required for sticky to work in IE6 and IE7 - due to their (different) hover bugs */
	padding: 30px 30px 30px 10px;
	margin: -30px 0 0 0px;/* 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: specific DESIGN styles - - - */
#sidemenu_main {
	/*margin: 0px 0px 10px 0px;
	float: left;*/
	/*width: 250px;*/
}
#menu_top {
	/*background-image: url(images/vert_menu_top.png);
	background-repeat: no-repeat;
	background-position: left top;
	padding-top: 10px;
	padding-right: 10px;
	padding-bottom: 0px;
	padding-left: 20px;*/
    background-color: #690000;
    border-color: #520000;
    border-radius: 7px 7px 0 0;
    border-style: solid solid none;
    border-width: 4px 1px 0;
    padding: 3px 0 0;
}
#menu_bottom {
	/*background-image: url(images/vert_menu_bottom.png);
	background-repeat: no-repeat;
	background-position: left bottom;
	padding-top: 10px;
	padding-right: 10px;
	padding-bottom: 0px;
	padding-left: 20px;*/
    background-color: #690000;
    border-color: #520000;
    border-radius: 0 0 7px 7px;
    border-style: none solid solid;
    border-width: 0 1px 4px;
    padding: 0 0 3px;
}
.menu, .menu ul li {
	background-color: #690000;
	border-bottom: thin;
}
.menu {
	/*background-image:url(images/menu_bottom.png);     */
	background-position:left bottom;
	background-repeat:no-repeat;
	padding-bottom:6px;
	background-color: #690000;
}
.menu ul {
	width:200px;
}
.menu a:link, .menu a:visited {
	/*display: block;
	width: auto;*/
    display: inline-block;
    width: 100%;
	list-style: none;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	color: #FFF;
	text-decoration: none;
	text-align:left;
	padding: 5px 5px 5px 15px;
}
.menu li li a:link, .menu li li a:visited {
	/*display: block;
	list-style: none;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	color: #FFF;
	text-decoration: none;
	text-align:left;
	width: auto;
	padding: 5px 5px 5px 15px;*/
	background-color: #666;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #999;
}
.menu li li a:hover, .menu li li a:focus, .menu li li:hover>a, .menu li li:focus>a {
	color:#FFFFFF;
	background-color: #5F0303;
}
.menu a:hover, .menu a:focus, .menu li:hover>a, .menu li:focus>a {
	color:#FFFFFF;
	background-color: #430202;
}
.menu>li + li, .menu ul>li + li {	/* and remove the top border on all but first item in the list */

}
.menu li:hover>ul, .menu li:focus>ul {	/* inset submenus, to show off overlapping */
	/*top: 5px;
	left: 90%;*/
    position: relative;
    left: 0;
}
/* 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: #FFFFFF;
}

/*]]>*/












