@charset "UTF-8";
/* CSS Document */

/* Code for the main Navigation */
#navigation {
	float: right;
	margin-right: 0px;
	margin-top: 50px;
	display: block;
	
}
#navigation ul {
	list-style: url(none) none;
	padding: 0px;
	background: #000; /* Old browsers */
	
	border: 0px solid #000000;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	-o-border-radius: 5px;
	border-radius: 5px;
}
#navigation li {
	border-right: 1px solid #333;
	display: inline-block;
	margin: 0px -4px 0px 0px;
	padding: 0px;
	background: -moz-linear-gradient(top, #424242 0%, #000000 100%); /* FF3.6+ */
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #424242), color-stop(100%, #000000)); /* Chrome,Safari4+ */
	background: -webkit-linear-gradient(top, #424242 0%, #000000 100%); /* Chrome10+,Safari5.1+ */
	background: -o-linear-gradient(top, #424242 0%, #000000 100%); /* Opera 11.10+ */
	background: -ms-linear-gradient(top, #424242 0%, #000000 100%); /* IE10+ */
	background: linear-gradient(top, #424242 0%, #000000 100%); /* W3C */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#424242', endColorstr='#000000', GradientType=0 ); /* IE6-9 */  
}
#navigation li a {
	text-decoration: none;
	float: left;
	line-height: 25px;
	height: 25px;
	font-weight: bold;
	color: #CCC;
	display:block;
	padding-right: 17px;
	padding-left: 17px;
	margin:0px;
}
#navigation li a:hover {
	color: #999;
}

#navigation li {
	position: relative;
}
/* remove the list style */
#nav ul {
	position: absolute;
	display: none;
	list-style: none;
	left: 0px;
	padding: 5px 0px 0px;
	top: 25px;
	background: #000000;
	font-size: 12px;
	margin: 0px;
	float: left;
	z-index: 650;
}
#nav ul li {
	margin: 0px;
	padding: 0px;
	display: block;
}
/* display block will make the link fill the whole area of LI */ 
#nav ul a {
	display: block;
	color: #CCC;
	margin: 0px;
	padding: 5px;
	border-bottom: 1px solid #333;
	width: 190px;
	font-size: 12px;
	background: none;
	
}
#nav ul a:hover {
	color: #000000 !important;
	background-image: none;
	background: #59AA26; 
}

#nav .logout_button {
	background: #53b000; /* Old browsers */
	background: -moz-linear-gradient(top, #53b000 0%, #32742c 100%); /* FF3.6+ */
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #53b000), color-stop(100%, #32742c)); /* Chrome,Safari4+ */
	background: -webkit-linear-gradient(top, #53b000 0%, #32742c 100%); /* Chrome10+,Safari5.1+ */
	background: -o-linear-gradient(top, #53b000 0%, #32742c 100%); /* Opera 11.10+ */
	background: -ms-linear-gradient(top, #53b000 0%, #32742c 100%); /* IE10+ */
	background: linear-gradient(top, #53b000 0%, #32742c 100%); /* W3C */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#53b000', endColorstr='#32742c', GradientType=0 ); /* IE6-9 */  
	border-right: none;
	border: 0px solid #000000;
	-webkit-border-radius: 0px 5px 5px 0px;
	-moz-border-radius: 0px 5px 5px 0px;
	-o-border-radius: 0px 5px 5px 0px;
	border-radius: 0px 5px 5px 0px;
	}


/* fix ie6 small issue */
		/* we should always avoid using hack like this */
		/* should put it into separate file : ) */
*html #nav ul {
	margin: 0 0 0 -2px;
}
