/* DIV */
	.menu {
		float: right;
		margin: 30px 30px 0 0;
		height: 30px;
		font-family: Arial, Helvetica, sans-serif;
		}
/* END DIV */
/* remove the bullets, padding and margins from the lists */
	.menu ul {
		background: transparent url(../images/crs/bg_nav_left.png) top left no-repeat;
		list-style-type:none;
		}
/* make the top level links horizontal and position relative so that we can position the sub level */
	.menu li {
		float:left;
		position:relative;
		z-index:100;
		}
	.menu li.bg_first {
		padding-left: 9px;
		background: transparent url(../images/crs/bg_nav_left.png) top left no-repeat;
		}
	.menu li.bg_last {
		padding-right: 9px;
		background: transparent url(../images/crs/bg_nav_right.png) top right no-repeat;
		}

/* use the table to position the dropdown list */
	.menu table{
		position:absolute;
		border-collapse:collapse;
		z-index:80;
		left:-1px;
		top:25px;
		}
	
/* style all the links */
	.menu a, .menu a:visited {
		display:block;
		height: 28px;
		padding: 0 5px;
		border-top: 1px solid #fff;
		border-right: 1px solid #fff;
		border-bottom: 1px solid #fff;
		font-size: 10px;
		font-weight: bold;
		line-height: 30px;
		color:#000;
		background: transparent url(../images/crs/bg_nav.png);
		text-align:center;
		}
	
	.menu a.last_nav, .menu a:visited.last_nav {
		border-right: 0;
		}
/* style the links hover */
	div.menu a:hover, div.menu a.current_page{
		color:#000;
		background-color:#7bd2f6;
		}

/* hide the sub level links */
	.menu ul ul {
		visibility:hidden;
		position:absolute;
		width:149px;
		height:0;
		}
/* make the sub level visible on hover list or link */
	.menu ul li:hover ul,
	.menu ul a:hover ul{
		visibility:visible;
		}
/* SUB NAV STYLE */

	.menu ul ul a, .menu ul ul a:visited {
		width: 130px;
		height: auto;
		line-height: 11px;
		border-top: 0;
		border-top: 1px solid #E8E8E8;
		border-right: 1px solid #E8E8E8;
		border-bottom: 1px solid #E8E8E8;
		border-left: 1px solid #E8E8E8;
		text-align: left;
		padding: 8px 10px;
		background-color: #fff;
		background-image: none;
		}
/* END SUB NAV STYLE */
