
/* ==== Top navigation ==== */
body, html {
	overflow: hidden;
}
html.mobile,
html.mobile body {
	overflow: auto;
}
#main {
    position: absolute;
    overflow-y: scroll;
/*	-webkit-overflow-scrolling: touch; /* supported on iOS5-b2+ but not used here (.mobile fallback) */
	top:86px;
	left:0; 
	bottom:0; 
	right:0;
}
.mobile #main {
	position: static;
	overflow: hidden;
}

header {
	background: #222;
	border-top: 3px solid #999;
	border-bottom: 3px solid #999;
	position: fixed;
	z-index: 1000;
	top: 0;
	left: 0;
	right: 0;
}
.mobile header {
	position: relative;
}
header h1.logo {
	margin-top: 0;
	margin-bottom: 0;
}
header h1 a {
	display:block;
	max-height: 80px;
}
nav ul {
	float: right;
	height: 65px;
}
nav li {
	list-style: none;
	display: block;
	float: left;
	margin-top: -3px;
}
nav a, 
nav a:visited,
nav a:focus {
	display: block;
	height: 65px;
	padding: 20px 20px 0 20px;
	text-decoration: none;
	color:#999;
	font-weight	: bold;
	border-top: 3px solid #999;
	border-bottom: 3px solid #999;
}

nav a:hover {
	color: #fff;
	border-top-color: #ccff00;
	border-bottom-color: #00ff00;
}
nav a.active,
nav a.active:focus {
	color: #88ff00;
	border-top-color: #ccff00;
	border-bottom-color: #00ff00;
	-webkit-transition:color 0.3s ease, 
					   border-color 0.3s ease,
					   background-color 0.3s ease;
	-moz-transition:color 0.3s ease, 
					border-color 0.3s ease,
					background-color 0.3s ease;
	-o-transition:color 0.3s ease, 
				  border-top-color 0.3s ease,
				  background-color 0.3s ease;
	transition:color 0.3s ease, 
			   border-color 0.3s ease,
			   background-color 0.3s ease;
}
nav a.active:hover {
	color: #fff;
	border-top-color: #ccff00;
	border-bottom-color: #00ff00;
}
nav a span {
	color: #555;
	font-size: 12px;
	font-weight	: normal;
}

#logo{
	margin: 10px 0px 0px 0px;
}

.menu li {
	width: 155px;
}

.menu li span{
	font-size: 12px;
	line-height: 16px;
}

/* Content links */
a, a:visited {color: #88ff00;}
a:hover, a:focus {color: #000;}


