/* ================================================================ 
This copyright notice must be untouched at all times.
Copyright (c) 2001-2007 Andrew Tidd. All rights reserved.
=================================================================== */

.menu {
	float:right;
	width:603px; 
	height:43px; 
	font-size:0.85em; 
	position:relative; 
	background-color: rgb(97,97,98);
	border-bottom:1px solid black;
  	border-top:1px solid black;
}

/* hack to correct IE5.5 faulty box model */
* html .menu {
	width:604px; 
	w\idth:603px;
}

/* remove all the bullets, borders and padding from the default list styling */
.menu ul {
	padding:0;
	margin:0;
	list-style-type:none;}


/* float the list to make it horizontal and a relative positon so that you can control the dropdown menu positon */
.menu li {
	float:left;
	width:98px;
	position:relative;
}
/* style the links for the top level */
.menu a, .menu a:visited {
	display:block;
	font-size:12px;
	font-weight:bold;
	text-decoration:none; 
	color:#fff; 
	/*width:98px;*/ 
	height:43px; 
	border:1px solid #000; 
	border-width:0px 0 0px 1px; 
	background:rgb(97,97,98); 
	padding-right:10px;
	padding-left:10px; 
	line-height:42px;
}
/* a hack so that IE5.5 faulty box model is corrected */
* html .menu a, * html .menu a:visited {
	width:98px; 
	w\idth:98px;
}
/* style the links for the top level */
.menu a.oneBigger, .menu a.oneBigger:visited {
	display:block;
	font-size:12px;
	font-weight:bold;
	text-decoration:none; 
	color:#fff; 
	width:102px; 
	height:43px; 
	border:1px solid #000; 
	border-width:0px 0 0px 1px; 
	background:rgb(97,97,98); 
	padding-left:10px; 
	line-height:42px;
}


/* a hack so that IE5.5 faulty box model is corrected */
* html .menu a.oneBigger, * html .menu a.oneBigger:visited {
	width:111px; 
	w\idth:113px;
}

/* style the top level hover */
.menu a:hover {
	color:#fff; 
	background:rgb(40,64,115);
	}
	
/* style the top level hover */
.menu a.oneBigger:hover {
	color:#fff; 
	background:rgb(40,64,115);
	}


	


/* ================================================================ */