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


#lemenu{
	z-index: 8000;
	position: absolute;
	width: 100%;
	top: 61px;
	right: 0px;
	height: 50px;
}
#adroite{
	margin-right: 0px;
	position: relative;
	margin-left: auto;
	width: auto;
}
#menu{
	position: relative;
	left: auto;
	right: 0px;
}
/*Strip the ul of padding and list styling*/
#lemenu ul {
	list-style-type:none;
	margin:0;
	padding:0;
	position: absolute;
}

/*Create a horizontal list with spacing*/
#lemenu li {
	display:inline-block;
	float: left;
	margin-right: 1px;
}

/*Style for menu links*/
#lemenu li a {
	display: block;
	min-width: 140px;
	height: 50px;
	text-align: center;
	line-height: 50px;
	font-family: "Satero Sans LT W04 Lighnormal";
	font-weight: 200;
	color: #666;
	/*background: #2f3036;*/
	background-color: rgba(255, 255, 255, 0.1);
	text-decoration: none;
	letter-spacing: 0.05em;
	font-size: 20px;
}

/*Hover state for top level links*/
#lemenu li:hover a {
	/*background: #19c589;*/
	background-color: rgba(255, 154, 0, 0.8);
	color:#FFF
}

/*Style for dropdown links*/
#lemenu li:hover ul a {
	/*background: #f3f3f3;*/
	background-color: rgba(255, 144, 0, 0.7);
	color: #2f3036;
	height: 40px;
	line-height: 40px;
}

/*Hover state for dropdown links*/
#lemenu li:hover ul a:hover {
	/*background: #19c589;*/
	background-color: rgba(233, 142, 3, 0.7);
	color: #fff;
}

/*Hide dropdown links until they are needed*/
#lemenu li ul {
	display: none;
}

/*Make dropdown links vertical*/
#lemenu li ul li {
	display: block;
	float: none;
}

/*Prevent text wrapping*/
#lemenu li ul li a {
	width: auto;
	min-width: 100px;
	padding: 0 20px;
	text-align: left;
}

/*Display the dropdown on hover*/
#lemenu ul li a:hover + .hidden, #lemenu .hidden:hover {
	display: block;
}

/*Style 'show menu' label button and hide it by default*/
#lemenu .show-menu {
	font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
	text-decoration: none;
	color: #fff;
	/*background: #19c589;*/
	text-align: center;
	padding: 10px 0;
	display: none;
	width: 54px;
	height: 44px;
	margin-right:10px;
	margin-left:auto;
}

/*Hide checkbox*/
#lemenu input[type=checkbox]{
    display: none;
    -webkit-appearance: none;
}

/*Show menu when invisible checkbox is checked*/
#lemenu input[type=checkbox]:checked ~ #menu{
    display: block;
}


/*Responsive Styles*/
@media screen and (max-width:1200px){
#lemenu{
	z-index: 800;
	position: absolute;
	width: 100%;
	top: 61px;
	right: 0px;
	height:50px;
}
}

@media screen and (max-width : 760px){
	
#lemenu{
	z-index: 800;
	position: absolute;
	width: 100%;
	top: 61px;
	right: 0px;
}
	/*Make dropdown links appear inline*/
	#lemenu ul {
		position: static;
		display: none;
	}
	/*Create vertical spacing*/
	#lemenu li {
		margin-bottom: 1px;
		background-color: rgba(47, 48, 54, 0.85);
	}
	/*Make all menu links full width*/
	#lemenu ul li, #lemenu li a {
		width: 100%;
	}
	/*Display 'show menu' link*/
	#lemenu .show-menu {
		display:block;
		cursor:pointer;
		pointer-events: all;
	}
	#lemenu li ul li a {
	width: auto;
	min-width: 100px;
	padding: 0 20px;
	text-align: center;
}
#lemenu li a {
	display: block;
	min-width: 140px;
	height: 50px;
	text-align: center;
	line-height: 50px;
	font-family: "Satero Sans LT W04 Lighnormal";
	font-weight: 200;
	color: #666;
	/*background: #2f3036;*/
	background-color: rgba(255, 255, 255, 0.8);
	text-decoration: none;
	letter-spacing: 0.05em;
	font-size: 20px;
}
}