@charset "UTF-8";
/* CSS Document */


/* NAV MENU */

header {
	width: 100%;
	z-index: 100;
	top: 0;
	position: fixed;
	list-style: none;
	display: inline-table;
	color: #fff;
	background-color: rgba(0,0,0,0.40);
	transition: all 2s;
	-webkit-transition: all 2s; /* Safari 3.1 to 6.0 */
	animation: ease-in-out;
}

header.scroll {
	background-color: rgba(80,121,8,0.99);
	box-shadow: 0px 2px 4px #000;
}

header.menu {
	height: 100%;
	overflow: scroll;
	display: block;
	background-color: rgba(0,0,0,0.95);
}

nav div.logo {
	float: left;
	width: 280px;
	height: 50px;
	margin-top: 5px;
	margin-bottom: 10px;
	margin-left: 10px;
	background-image: url(/images/rrr-logo-nav.png);
	background-position: -76px 0px;
	background-repeat: no-repeat;
}

.menubut {
	display: block;
	position: relative;
	float: right;
	width: 50px;
	height: 50px;
	margin-top: 5px;
	margin-right: 10px;
	background-image: url(/images/drop.png);
	background-repeat: no-repeat;
}

nav ul {
	width: 100%;
	display: none;
	position: relative;
	margin: 0;
	list-style: none;
	float: left;
	border-bottom: 1px solid rgba(140,140,140,1.00);
}

nav ul.nav-menu {
	display: none;
}
	
	
nav ul li {
	text-align: center;
	font-size: 25px;
	font-weight: bold;
	white-space: nowrap;
	width: 100%;
	background-color: rgba(0,0,0,0.70);
	border-top: 1px solid rgba(140,140,140,1.00);
}
	

nav ul li a {
	display: block;
	text-decoration: none;
	color: #fff;
	padding-top: 15px;
	padding-bottom: 15px;
	padding-left: 15px;
	padding-right: 15px;
	white-space: nowrap;
}

nav ul ul {
	display: none;
	width: 100%;
	float: none;
	position: relative;
	z-index: 100;
	top: 100%;
	padding: 0px;
	text-align: center;
	background-color: rgba(255,255,255,0.20);
}

nav ul ul li {
	float: none;
	position: relative;
	white-space: nowrap;
	background-color: transparent;
}

nav ul ul li a {
	font-size: 20px;
	padding-top: 10px;
	padding-bottom: 10px;
}

nav ul ul ul {
	display: none;
	position: relative;
}

.chevron-down {
	width: 10px;
	height: 10px;
	display: inline-block;
	background-image: url(/images/chevron-down.png);
}

.chevron-right {
	background-image: url(/images/chevron-down.png);
	background-position: center bottom;
	background-repeat: no-repeat;
}


/* UNDER 1000px */

@media screen and (max-width:420px) {
	
	nav div.logo {
		float: left;
		width: 75px;
		height: 50px;
		margin-top: 5px;
		margin-left: 10px;
		background-image: url(/images/rrr-logo-nav.png);
		background-position: 0px 0px;
		background-repeat: no-repeat;
	}

}