@charset "UTF-8";
/* CSS Document */

/* Overall formatting of <ul> */ 
/* All <ul> tags in the menu including the first level */
.sideMenulist, .sideMenulist ul {
 margin: 0px;
 padding: 0px;
 width: 10em; /*	Menu Width	135px;	*/
 list-style: none;
 background: none;
 border-top: none;
 border-bottom: none;
 border-right: none;
 border-left: none; /*	border-top: 1px solid #15021E;	*/
}

/* 2nd level <ul> override */
/* Submenus (<ul> tags) are hidden and absolutely positioned across from their parent 
.sideMenulist ul {
 visibility: hidden;
 position: absolute;
 top: -1px;
 left: 135px;
 width: 135px;
 border-top: none;
 border-right: none;
 border-left: none;
 background-color: none;
} 
*/
.sideMenulist ul {
 border-top: none;
 border-bottom: none;
 border-right: none;
 border-left: none;
 background-color: #00300F;	/* #794585; */
} 
/* 3rd level <ul> override */
/* Submenus (<ul> tags) are hidden and absolutely positioned across from their parent */
/*
.sideMenulist ul ul {
 visibility: hidden;
 position: absolute;
 top: -1px;
 left: 135px;
 width: 135px;
 border-top: none;
 border-right: none;
 border-left: none;
 background: none;
}

*/

/* Set position and border for all levels */
/* All menu items (<li> tags) are relatively positioned (to correctly offset submenus). */
.sideMenulist li {
 position: relative;
 border-top: none;
 border-bottom: none;
 border-right: none;
 border-left: none;
 text-align:right;
}

/* Set link text properties */
/* Links inside the menu */ 
.sideMenulist a {
 	display: block;
 	text-decoration: none;
 	font-family:Arial, Helvetica, sans-serif;
	font-size: 1em;	/*	x-small;	*/
 	/*color:#FFFFFF;*/
	font-weight:bold;
 	padding-top:6px;
 	padding-bottom:6px;
 	padding-left:10px;
	padding-right:12px;
}

/* Links inside the sub menu */
/* 
.sideMenulist ul li a {
 	display: block;
 	text-decoration: none;
 	font-family:Verdana, Helvetica, sans-serif;
	font-size:1.4em;
	font-weight:normal;
 	color:#C6AFC9;
 	padding-top:6px;
 	padding-bottom:6px;
 	padding-left:10px;
	padding-right:12px;	
}
*/

/*	Blues	Light 0033FF-0099FF	Dark 000033-0000FF, */

/* Links that are selected inside the menu */
#sideMenuSelected {
	background-color: #00FF00;		/* Block Colour #DDD0E1; */
 /* background-image:url(../furniture/menu_grad.gif); 
 	background-repeat:repeat-y;
 	background-position:right;*/
	color:#FF00FF;	/* Text Colour	#451D5C; */
}

.sideMenu {
	color:#FFFFFF;
}


/* IE fix because it doesn't support transparent borders */
* html .sideMenulist a {
 border: 0px;
 margin: 0px;
}

/* Set link text mouse over properties */
/*
 Lit items: hover/focus = the current item. 'highlighted' = parent items to visible menus.
 Here, active items are given a border, and a padding tweak to 'elevate' the text within.
 Feel free to use background-image:url(menu_grad.gif) instead of background-color:#nnn here...
C6AFC9*/
.sideMenulist a:hover, .sideMenulist a.highlighted:hover, .sideMenulist a:focus {
 color: #FF0000;	/* Text Colour	#451D5C; */
 /*background-color: #451D5C;*/
 background-color: #0000C9;			/* Block Colour #C6AFC9; */
 padding-top:6px;
 padding-bottom:6px;
 padding-left:10px;
 padding-right:12px;
 margin: 0;
 /* background-image:url(../furniture/menu_grad.gif);
 background-repeat:repeat-y;
 background-position:right; */
}

.sideMenulist a.highlighted {
 color: #000000;		/* Text Colour	#451D5C; */
 background-color: #0000F4;		/* Block Colour #F4F4F4; */
 margin: 0;
 /* background-image:url(../furniture/menu_grad.gif); 
 background-repeat:repeat-y;
 background-position:right;	*/
}

/* mouse over for sub menus */
.sideMenulist ul li  a:hover, .sideMenulist ul li  a.highlighted:hover, .sideMenulist ul li a:focus {
 	color: #FFFFFF;
 	background-color: #0099FF;			/* Block Colour #C6AFC9; */
 	
}

/* force highlight on sub menus 
.sideMenulist ul li a.highlighted {
 color: #333333;
 background: #FEF4FF;
 margin: 0;								*/
 /* background-image:url(../furniture/menu_grad.gif);
 background-repeat:repeat-y;
 background-position:right; */

}

/* Setting different bg color or image for subsequent levels - id must be added to <li> tags that need it */

/*
 If you want per-item background images in your menu items, here's how to do it.
 1) Assign a unique ID tag to each link in your menu, like so: <a id="xyz" href="#">
 2) Copy and paste these next lines for each link you want to have an image:*/
/*    .sideMenulist a#sub {
       background-color: #F4F4F4;
    }
    .sideMenulist a#sub:hover, .sideMenulist a.highlighted#xyz, .sideMenulist a:focus {
     background-color: #E3E2D5;
    }
*/

/*
.sideMenulist a#sub.highlighted {
 color: #000000;
 background-color: #E3E2D5;
 margin: 0;
}
*/

/* 'subind' submenu indicators, which are automatically prepended to 'A' tag contents. */
.sideMenulist a .subind {
 	float: right;
 	padding-right:2px;
	padding-top:4px;
}

/* This semi-commented section exists to fix bugs in IE/Windows (the 'Holly Hack'). \*/
* html .sideMenulist li {
 float: left;
 height: 1%;
}
* html .sideMenulist a {
 height: 1%;
}
/* End Hack */

#navbox ul {
	text-align:center;
	padding-bottom:5px;
	padding-top:5px;
	padding-left:0;
	margin-top:0; /* cancels gap caused by top padding in Opera 7.54 */
	margin-left:0;
	background-color:#794585;
	color:#fff;
	width:100%;
	line-height:21px; /* fixes Firefox 0.9.3 */
}

#navbox ul li {
	display:inline;
	padding-left:0;
	padding-right:0;
	padding-bottom:11px; /* matches link padding except for left and right */
	padding-top:9px;
}

#navbox ul li a {
	padding-left:10px;
	padding-right:10px;
	padding-bottom:11px;
	padding-top:9px;
	margin-left:0px;
	text-decoration:none;
	/*border-right:1px solid #fff;
	border-left:1px solid #fff;*/
	font-family:Arial, Helvetica, sans-serif;
	font-size:x-small;
 	font-weight:bold;
	color:#fff;
}

#navbox ul li a:hover {
	background-color:#451D5C;
	color:#fff;
}

#navbox ul li a.highlighted {
	background-color:#DDD0E1;
	color:#451D5C;
}

#navbox #first {/*border-left:1px solid #fff;*/}
 
