/* 
 *	Horizontal, top-2-bottom
 *	## Tweaks for IE5, IE6
 *	- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
 *	(c) 2006 - Aleksandar Vacic, www.aplus.co.yu
 * Some rights reserved, http://creativecommons.org/licenses/by/2.0/
 *	- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
 */
 /*<![CDATA[*/

/* left and right hand menus follow! */

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

/* remove all list stylings */
.menu, .menu ul {
	margin: 0;
	padding: 0;
	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: 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 */
}

.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/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 {
	float:right;
	color: White;
	/* border: 1px solid yellow; */
}

.menu ul li {
/*	color: White;
	background: green;
	width: 28em; */
}

.menu a {
	font-size: large;
	text-align: center;
	text-decoration: none;
	vertical-align: middle;
/*	height: 1.2em;
	line-height: 95%; */
	color: White;
/*	width: 20em; */
	padding: .4em 1em;
	display: block;
	position: relative;
	
}

.menu li a {
	color: White;
	padding: 5pt 30pt 5pt 15pt ;
/*	width: 10em; */
}

.menu li li a {
	/*color: #cc9933;*/
		color:#990606;  
	font-size: medium;
	width: 12em;
	padding: 5pt 15pt 5pt 15pt ;
	background: white;
/*	height: 1.1em;*/
}

.menu a:hover {
	color: White;
	text-decoration: none;
	background: #666666;
/*	height: 1.1em;*/
/*	border-top: 1px solid #996600; 
	border-left: 3px solid #996600; 
	padding: 0px 0px 0px 0px;*/
	
}

.menu li:hover>a {
	color: White;
	text-decoration: none;
	background: #666666;
/*	border-top: 1px solid #996600; 
	border-left: 2pt solid #996600; */
/*	height: 1.1em; */
	padding: 5pt 30pt 5pt 15pt ;
}

.menu li li:hover>a {
	color: White;
	text-decoration: none;
	background: #666666;
/*	border-top: 1px solid #996600; */
	border-left: 3px solid #996600;
/*	height: 1.1em; */
	padding: 5pt 15pt 5pt 13pt;
}

.menu li li {	/* create borders around each item */
	border: 1px solid #ccc;
	color: #cc9933;
	background: White;
	border-left: 1px solid #996600;
	
}
.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%;
}

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

/* Fix for IE5/Mac \*//*/
.menu a {
	float: left;
}
/* End Fix */

/* LEFT HAND MENU BEGINS HERE */

/* - - - ADxMenu: BASIC styles (for left hand menu) - - - */

.leftmenu {
	/* width: 10em; *//* VERY IMPORTANT! Set this to appropriate value, either here on down in the design section */
}

.leftmenu, .leftmenu ul {	/* remove all list stylings */
	margin: 0;
	padding: 0;
	border: 0;
	list-style-type: none;
	display: block;
}

.leftmenu li {
	margin: 0;
	padding: 0;
	border: 0;
	display: block;
	position: relative;	/* position each LI, thus creating potential IE.win overlap problem */
	z-index: 5;		/* thus we need to apply explicit z-index here... */
}

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

.leftmenu 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 */
	height: 474px;
}

.leftmenu li:hover>ul {
	visibility: visible;	/* display submenu them on hover */
	left: 100%;	/* and move them to the right of the item */
}

/* -- float.clear --
	force containment of floated LIs inside of UL */
.leftmenu:after, .leftmenu ul:after {
	content: ".";
	height: 0;
	display: block;
	visibility: hidden;
	overflow: hidden;
	clear: both;
}
.leftmenu, .leftmenu 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 ".leftmenu UL" or this feature may not work properly!
	if you do it, make sure you 110% know what you do */
.leftmenu ul {
	background-image: url(images/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 -10px;
	/* background: #EEEEEA; */	/* uncomment this if you want to see the "safe" area.
								you can also use to adjust the safe area to your requirement */
}


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

.leftmenu, .leftmenu ul li {
	color: #CC9933;
	font-weight: bold;
	background: #E0E0E0;
}

.leftmenu {
	font-family: Arial, Helvetica, Geneva, sans-serif;
	font-size: small;
	font-stretch: condensed;
	text-transform: uppercase;
	height: auto;
	margin: 6px 0em 0px 0px;
	padding: 0pt 0px 0px 0px;
	text-align: left;
	width: 13em;
	float: left;
}

.leftmenu ul {
	width: 27em;
}

.leftmenu a {
	text-decoration: none;
	color: #996600;
	display: block;
	border-left: 3px solid #EAEAE0;
	padding: 7pt 1pt;
	height: 1em;
	vertical-align: middle;
}

.leftmenu a:hover, .leftmenu li:hover>a {
	color:#C50707;
	background-color: #F0F0F0;
/*	color: #996600;
	background: #EAEAE0; F8FFF0*/
	border-left: 3px solid #996600;	
}

.leftmenu li li a {
	padding: 3px 3px;
}

.leftmenu li li {
	color: #CC9933;
	font-weight: normal;
	text-transform: none;
	background: White;
	border-bottom: 0px;
}

.leftmenu li {	/* create borders around each item */
	border-top: 1px solid White;
	border-right: 0px;
	border-bottom: 2px solid White;
	border-left: 1px solid #CC9933;
	padding-left: 0px;
}

.leftmenu li:last-child {
	border-bottom: 1px solid #CC9933;
}

.leftmenu li:first-child {
	border-top: 1px solid #CC9933;
}

.leftmenu>li + li, .leftmenu ul>li + li {	/* and remove the top border on all but first item in the list */
	border-top: 0;
}

.leftmenu li:hover>ul {	/* inset submenus, to show off overlapping */
	top: -3em;
	left: 90%;
}
#NPO2cscope {
	background-color: White; /*Green */
	font-family: Arial Narrow, Helvetica Narrow, Arial, Helvetica, Geneva, sans-serif;
	padding: 0pt 1pt 0pt 1pt;
	font-size: small;
	margin:  1px 4em 0em 0em;
	text-align: left;
	width: 305px;
	float: right;
}

#NPO2cscope ul {
	margin: 0;
	padding: 0;
	border: 0;
	list-style-type: none;
}

#NPO2cscope li {
	color: #999999;
	font-size: x-small;
	font-weight: normal;
	font-family: Arial, Helvetica, Geneva, sans-serif;
	text-transform: none;
	/* visible root of menu, but not a link */
	background: White;
	height: 20pt;
	margin: 5px 0em 4px 0em;
	padding: 1px 0pt 0px 2px;
	border-right: 1px solid #EFEFEF;
	border-left: 1px solid #EFEFEF;
	border-top: 1px solid #EFEFEF;
	border-bottom: 1px solid #EFEFEF;
}

/* 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 */
/*
.leftmenu>li:first-child>a, .leftmenu li + li + li li:first-child>a {
	color: #567;
}
*/

/*begin left menu 2 */
.leftmenu2 {
	/* width: 10em */;/* VERY IMPORTANT! Set this to appropriate value, either here on down in the design section */
}

.leftmenu2, .leftmenu2 ul {	/* remove all list stylings */
	margin: 0;
	padding: 0;
	border: 0;
	list-style-type: none;
	display: block;
}

.leftmenu2 li {
	margin: 0;
	padding: 0;
	border: 0;
	display: block;
	position: relative;	/* position each LI, thus creating potential IE.win overlap problem */
	z-index: 5;		/* thus we need to apply explicit z-index here... */
}

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

.leftmenu2 ul {
	visibility: hidden;	/* initially hide all submenus. */
	position: absolute;
	z-index: 10;
	right: 0;	/* while hidden, always keep them at the top right corner, */
	top: 0;		/* 		to avoid scrollbars as much as possible */
}

.leftmenu2 li:hover>ul {
	visibility: visible;	/* display submenu them on hover */
	left: 100%;	/* and move them to the right of the item */
}}

/* -- float.clear --
	force containment of floated LIs inside of UL */
.leftmenu2:after, .leftmenu2 ul:after {
	content: ".";
	height: 0;
	display: block;
	visibility: hidden;
	overflow: hidden;
	clear: both;
}
.leftmenu2, .leftmenu2 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 ".leftmenu2 UL" or this feature may not work properly!
	if you do it, make sure you 110% know what you do */
.leftmenu2 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 -10px;
	/*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: DESIGN styles - - - */

.leftmenu2, .leftmenu2 ul li {
	background: #663300;
	color: White;
	font-family: Arial, Helvetica, Geneva, sans-serif;
	text-transform: none;
	text-align: center;
	font-size: 140%;
}

.leftmenu2 {
	width: 19em;
	float: left;
	margin-right: 0px;
	font-size: 90%;
}

.leftmenu2 ul {
	width: 26em;
}

.leftmenu2 a {
	text-decoration: none;
	text-align: Center;
	color: White;
	padding: 1em 1em;
	margin-top: 0;
	display: block;
	border-left: 3px solid #663300;
	height: Auto;
}


.leftmenu2 a:hover{
	color:#FFF;
	background: #996633;
	border-left: 3px solid #663300;	
}

.leftmenu2 li:hover>a {
/*	color: #996600; 
	background: #EAEAE0;  
	color:#FFF;
	background-color: #CCCCCC;
	border-right: 0px solid #996600;
	
	*/
	color:#C50707;
	background-color: #F0F0F0;
	border-left: 3px solid #996633;	
}


.leftmenu2 li {	/* create borders around each item */
	border-top: 1px solid #cc9933;
	border-right: 1px solid #cc9933;
	border-bottom: 2px solid #D9D9CF;
	border-left: 0;
	padding-right: 0px;
	color: White;
}

.leftmenu2 li:first-child {
	border-top: 1px solid #cc9933;
}

.leftmenu2 li:last-child {
	border-bottom: 1px solid #cc9933;
}

.leftmenu2 li a {	
	color: White;
	border-left: 3px solid #FFF;	
}

.leftmenu2 li a.currentLinks {	
	border-left: 3px solid #663300;	
}

.leftmenu2 li li {
	color: #CC9933;
	font-weight: normal;
	text-transform: none;
	background: White;
	border-bottom: 0px;
/*	padding: 1px 1px; */
}

.leftmenu2 li li a {	
	color:#990606;  
	padding: 3px 3px;
/*	background: White;
	color: #CC9933;
	font-weight: normal;
	font-size: smaller; 
	font-stretch: condensed; */
}

.leftmenu2>li + li, .leftmenu2 ul>li + li {	/* and remove the top border on all but first item in the list */
	border-top: 0;
}


.leftmenu2 li:hover>ul {	/* inset submenus, to show off overlapping */
	top: -2em;
	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 */
/*
.leftmenu2>li:first-child>a, .leftmenu2 li + li + li li:first-child>a {
	color: #567;
}
*/



/* end leftmenu 2 */

/* RIGHT HAND MENU BEGINS HERE */
.rightmenu {
	/* width: 10em */;/* VERY IMPORTANT! Set this to appropriate value, either here on down in the design section */
}

.rightmenu, .rightmenu ul {	/* remove all list stylings */
	margin: 0;
	padding: 0;
	border: 0;
	list-style-type: none;
	display: block;
}

.rightmenu li {
	margin: 0;
	padding: 0;
	border: 0;
	display: block;
	position: relative;	/* position each LI, thus creating potential IE.win overlap problem */
	z-index: 5;		/* thus we need to apply explicit z-index here... */
}

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

.rightmenu ul {
	visibility: hidden;	/* initially hide all submenus. */
	position: absolute;
	z-index: 10;
	right: 0;	/* while hidden, always keep them at the top right corner, */
	top: 0;		/* 		to avoid scrollbars as much as possible */
}

.rightmenu li:hover>ul {
	visibility: visible;	/* display submenu them on hover */
	right: 100%;	/* and move them to the left of the item */
}

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

.rightmenu, .rightmenu ul li {
	background: #EAEAE0;
	color: White;
	background: none;
	font-family: Arial, Helvetica, Geneva, sans-serif;
	text-transform: none;
	text-align: center;
	font-size: small;
}

.rightmenu {
	width: 172px;
	float: right;
	margin-right: 0px;
}

.rightmenu ul {
	width: 17em;
}

.rightmenu a {
	text-decoration: none;
	text-align: Center;
	color: White;
	padding: 1em 1em;
	display: block;
	border-right: 3px solid #EAEAE0;
	height: Auto;
}

.rightmenu a:hover, .rightmenu li:hover>a {
/*	color: #996600; 
	background: #EAEAE0; F8FFF0 */
	color:#C50707;
	background-color: #F0F0F0;
	border-right: 3px solid #996600;
}

.rightmenu li {	/* create borders around each item */
	border-top: 1px solid #cc9933;
	border-right: 1px solid #cc9933;
	border-bottom: 2px solid #D9D9CF;
	border-left: 0;
	padding-right: 0px;
	color: White;
}

.rightmenu li:first-child {
	border-top: 1px solid #cc9933;
}

.rightmenu li:last-child {
	border-bottom: 1px solid #cc9933;
}

.rightmenu li a {	
	color: White;
}

.rightmenu li li {
	color: #CC9933;
	font-weight: normal;
	text-transform: none;
	background: White;
	border-bottom: 0px;
/*	padding: 1px 1px; */
}

.rightmenu li li a {	
	color:#990606;  
	padding: 3px 3px;
/*	background: White;
	color: #CC9933;
	font-weight: normal;
	font-size: smaller; 
	font-stretch: condensed; */
}

.rightmenu>li + li, .rightmenu ul>li + li {	/* and remove the top border on all but first item in the list */
	border-top: 0;
}


.rightmenu li:hover>ul {	/* inset submenus, to show off overlapping */
	top: -1em;
	right: 98%;
}

/* 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 */
/*
.rightmenu>li:first-child>a, .rightmenu li + li + li li:first-child>a {
	color: #567;
}
*/


/*]]>*/
