
/* TopNav
------------------------------------------------------------------------- */

#topnav ul, #topnav a { 
  height: 25px;
}

div#topnav{
  height: 25px;
	padding: 0;
	margin: 0 8px 0 8px;
	vertical-align: middle;
	text-align: center;
	border: 1px solid #fff;
	background-image: url(img/menu_bg.gif);
  background-repeat: repeat-x;
}

div#topnav_items {
  display: table;
	clear: all;
  height: 25px;
	text-align: center;
	vertical-align: middle;
	width: 911px;
	margin: auto;
}

#topnav ul {
  margin: 0;
	vertical-align: middle;
	line-height: 23px;
}

#topnav li {
	float: left;
	width: 100px;
  background-color: #eee;
	background-image: url(img/menu_bg.gif);
	padding: 0;
	list-style-type: none;
	font-size: x-small;
	color: #FFFFFF;
	font-weight: bold;
	text-align: centre;
	border-left: 1px solid #6F7186;
}

#topnav li.last {
	border-right: 1px solid #6F7186;
}


#topnav li:hover {
	text-decoration: none;
}


#topnav li.here   {
	background-image: url(img/menu_bg_here.gif);
	color: #000449;
}


#topnav a {
  display: block;
	color: #FFFFFF;
	border-bottom: none;
	vertical-align: center;
}

#topnav a:hover {
  color: #eee;
	background-image: url(img/menu_bg_here.gif);
}

#topnav a:visited {
	color: #eee;
}


/* Second Level Elements */
#topnav ul li div.hoverZone > ul {
  display: none;
}

#topnav ul li:hover > div  {
  display: block;
	position: relative;
}




ul.makeMenu li > ul {          /* using the > selector prevents many lesser browsers (and IE - see below) hiding child ULs */
  display: none;               /* hides child menu blocks - one of the most important declarations */
  position: absolute;          /* make child blocks hover without leaving space for them */
  top: 2px;                    /* position slightly lower than the parent menu item */
  left: 78px;                  /* this must not be more than the width of the parent block, or the mouse will
                                  have to move off the element to move between blocks, and the menu will close */
}

ul.makeMenu li:hover > ul {    /* one of the most important declarations - the browser must detect hovering over arbitrary elements
                                  the > targets only the child ul, not any child uls of that child ul */
  display: block;              /* makes the child block visible - one of the most important declarations */
}









/* Sidebar 
------------------------------------------------------------------------- */

#sidebar {
  font-size: 85%;
  background-color: #000449;
  width: 150px;
  border:1px solid #fff;
  margin: 8px 5px 0 5px;
	float: left;
	text-align: left;
	color: #fff;
}

#sidebar a {
  color: #fff;
	font-weight: bold;
	border-bottom: none;
	display: block;
	padding: 5px;
}

#sidebar li a:hover {
  color: #B0B4F5;
	font-weight: bold;
	border-bottom: none;
  background-image: url(img/sidebar_bg2.gif);
}


#sidebar h2 {
  margin: 0;
  padding: 10px 0;
  font-size: 14px;
	color: #fff;
	border-bottom: 1px solid #fff;
	background-color: #6C6E8E;
	text-align: center;
}

#sidebar ul, #sidebar p {
  margin: auto;
}

#sidebar li {
	border-bottom: 1px solid #fff;
	padding: 0px;
}

#sidebar ul li ul {
  display: none; 
}

#sidebar .here {
	font-weight: bold;
	background-color : #3864D7;
	display: block;
	padding: 5px;
}

#sidebar ul li.here ul {
  display: block; 
	margin: 6px 0 0px 15px;
	border-style: none;
}

#sidebar ul li.here li, #sidebar ul li.here a {
  padding: 0;
  margin: 0;
}	

#sidebar ul li.here li {
	border-style: none;
}

#sidebar ul li.here ul a {
  color: #000449;
}

#sidebar ul li.here a:hover {
  color: #B0B4F5;
}

#sidebar ul li.here li.here a{
  color: #fff;
}


