/* CSS Document */

#navlist {
	margin-top: 15px;
	}

#navlist ul {
	margin: 0;
	padding: 0;
	list-style-type: none;
	}

#navlist li {
	margin: 0;
	}

#navlist a {
	width: 160px;
	display: block;
	padding: 4px 2px 4px 10px;
	border: 1px solid #d9d9d9;
	text-decoration: none;
	font-size: 90%;
	margin: 5px 0;
	background: #f2f2f2 url(../images/nav_btn.gif) no-repeat 0% 50%;
	vertical-align: bottom;
	}

#navlist a:link, #navlist a:visited {
	color: #333;
	}

/* you can combine the last two rules if you wish */

#navlist a:hover, #navlist a:active {
	background: #d9d9d9 url(../images/nav_btn_selected.gif) no-repeat 0% 50%;
	color: #000;
	text-decoration: none;
	border: 1px solid #333;
	}

#selected a:link, #selected a:visited,
#selected a:hover, #selected a:active {
	background: #d9d9d9 url(../images/nav_btn_selected.gif) no-repeat 0% 50%;
	color: #000;
	font-weight: normal;
	}

/* Next part controls sub lists */

#navlist li ul {
	margin: 15px 0;
	}

#navlist li li a {
	width: 160px;
	display: block;
	padding: 3px 2px 3px 10px;
	border: 1px solid #fff;
	text-decoration: none;
	font-size: 100%;
	margin: 3px 0;
	vertical-align: bottom;
	}

#navlist li li a:link, #navlist li li a:visited {
	color: #820000;
	font-weight: bold;
	background: transparent;
	}

#navlist li li a:hover, #navlist li li a:active {
	color: #c90000;
	background: #fff;
	text-decoration: underline;
	border: 1px solid #fff;
	}

