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


/* NAV MENU */

.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;
}

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;
}

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

.menubut {
	display: block;
}

nav ul {
	display: inline-table;
	position: relative;
	list-style: none;
	float: right;
	margin-right: 10px;
}
	
nav ul li {
	float: left;
	text-align: center;
	margin-right: 2px;
	white-space: nowrap;
	text-shadow: 0px 0px 5px #000;
}

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

nav ul li:hover {
	background-color: rgba(36,55,2,0.95);
}

nav ul li:hover > ul {
	display: block;
	opacity: 1;
    visibility: visible;
	height: auto;
	overflow: visible;
}

nav ul ul {
	width: auto;
	height: 0px;
	float: none;
	position: absolute;
    opacity: 0;
    visibility: hidden;
	overflow: hidden;
    z-index: 1;
    -webkit-transition: all .35s ease;
       -moz-transition: all .35s ease;
        -ms-transition: all .35s ease;
         -o-transition: all .35s ease;
            transition: all .35s ease;
	border-radius: 0px;
	top: 100%;
	padding: 0px;
	background-color: rgba(255,204,51,0.98);
	text-align: center;
	box-shadow: 0px 1px 4px #000;
}

nav ul ul li {
	float: none;
	margin-right: 0;
	position: relative;
	white-space: nowrap;
	border-top: 1px solid rgba(255,236,99,0.95);
	border-bottom: 1px solid rgba(149,130,0,0.95);
	text-shadow: none;
}

nav ul ul li:hover {
	border-bottom-color: rgba(207,181,0,0.95);
	border-top-color: rgba(167,77,0,0.95);
	background-color: rgba(255,195,16,0.98);
}

nav ul ul li a {
	color: #175204;
	border-bottom: none;
	font-size: 16px;
	padding-top: 10px;
	padding-bottom: 10px;
}

/* LINKS MENU CSS */

nav ul ul li.menu-wrap a {
	font-size: 12px;
}

/* ----- */

nav ul ul ul {
	position: absolute;
	left: 100%;
	top:0;
}

.menu-icon {
	padding-right: 60px;
	background-image: url(/images/drop.png);
	background-repeat: no-repeat;
	background-position: 100% 50%;
}

.chevron-down {
	padding-right: 20px;
	background-image: url(/images/chevron-down.png);
	background-repeat: no-repeat;
	background-position: 98% 50%;
}

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


/* UNDER 1000px */

@media screen and (max-width:999px) {
	
}