/*Main menu settings*/
#centeredmenu {
	clear:both;
	float:left;
	margin:0;
	padding:0;
	border-bottom:1px solid #0053A1; /*blue line below menu*/
	background-color:#0053A1;
	width:100%;
	font-family:Verdana, Geneva, sans-serif; /*Menu font*/
	font-size:90%; /*Menu text size*/
	z-index:1000; /*This makes the dropdown menus appear above the page content below*/
	position:relative;
}
/*Top menu items*/
#centeredmenu ul {
	margin:0;
	padding:0;
	list-style:none;
	float:right;
	position:relative;
	right:50%;
}
#centeredmenu ul li {
	margin:0 0 0 20px;
	padding:0;
	float:left;
	position:relative;
	left:50%;
	top:1px;
}
#centeredmenu ul li a {
	display:block;
	margin:0;
	padding:.6em .5em .4em;
	font-size:1em;
	line-height:1em;
	background:#0053A1;
	text-decoration:none;
	color:#fff;
	font-weight:bold;
	border-bottom:1px solid #0053A1;
}
#centeredmenu ul li:hover a,
#centeredmenu ul li.hover a { /*IE 6*/
	background:#eee; /*Top menu items background colour*/
	color:#0053A1;
	border-bottom:1px solid #0053A1;
}

/*Submenu items*/
#centeredmenu ul ul {
	display:none;
	position:absolute;
	top:2em;
	left:0;
	float:left;
	right:auto; /*resets the right:50% on the parent ul*/
	box-shadow:5px 5px 7px rgba(102,102,102,.3);
	-moz-box-shadow:5px 5px 7px rgba(102,102,102,.3);
	-webkit-box-shadow:5px 5px 7px rgba(102,102,102,.3);
        filter:progid:DXImageTransform.Microsoft.Shadow(Color='#d5d4d4',Direction=135,Strength=7);
        /*background:#0053A1;*/ /*blue - required for IE8 shadow filter (added via conditional comment)*/
}
#centeredmenu ul ul li {
	left:auto;  /*resets the left:50% on the parent li*/
	margin:0;   /*Reset the 1px margin from the top menu*/
	clear:left;
	float:left;
}
#centeredmenu ul ul li a,
#centeredmenu ul li.active li a,
#centeredmenu ul li:hover ul li a,
#centeredmenu ul li.hover ul li a { /*This line is required for IE 6 and below*/
	font-size:.8em;
	font-weight:normal; /*resets the bold set for the top level menu items*/
	background:#eee;
	color:#444;
	line-height:1.4em; /*overwrite line-height value from top menu*/
	border-bottom:1px solid #ddd; /*sub menu item horizontal lines*/
	float:left;
	width: 195px;
}
#centeredmenu ul ul li a:hover,
#centeredmenu ul li.active ul li a:hover,
#centeredmenu ul li:hover ul li a:hover,
#centeredmenu ul li.hover ul li a:hover { /*IE 6*/
	background:#F90; /*Sub menu items background colour*/
	color:#000;
	float:left;
}

/*Make the sub menus appear on hover*/
#centeredmenu ul li:hover ul,
#centeredmenu ul li.hover ul { /*IE 6*/
	display:block; /*Show the sub menus*/
}

/*left and right navigation columns*/
ul.linkBox {
	list-style: none;
	text-align: left;
	margin-top:15px;
	margin-left:0px;  /*needed for ie*/
	padding:0;
	width:100%;
	font:0.9em arial,sans-serif;
	background-color:#FFFFFF;	
	color:#FFF;
}
ul.linkBox li {
	padding:5px;
}
ul.linkBox li.linkBoxHeader {
	background:#0053A1;
}
ul.linkBoxContent {
	text-align: left;
	margin:10px 0px;
	padding:0;
	width:100%;
}
ul.linkBoxContent li {
	list-style: none;
	margin:0px 5px;
	padding:0;
	border-bottom:1px solid #ddd;
	color:#0053A1;
}
ul.linkBoxContent li a {
	display:block;
	list-style: none;
	text-decoration:none;
	font:0.8em arial,sans-serif;
	color:#0053A1;
	padding:2px 3px;
}
ul.linkBoxContent li a:hover {
	background:#F90;
	color:#000;
}