@charset "UTF-8";
/* CSS Document */

/* HAMBURGER */
#hamburger {
	z-index: 100;
	width: 45px;
	height: 35px;
	position: absolute;
	top: 10px;
	right: 10px;
/*	border-style: solid;
	border-width: 2px;
	border-color: #eeeeee;*/
	border-radius: 7px;
	padding: 5px;
	background-color: #cbcbcb;
}
#hamburger .line {
	width: 80%;
	height: 5px;
	background-color: #353535;
	margin-top: 5px;
	border-radius: 2px;
	margin-left: auto;
	margin-right: auto;
}
#hamburger:hover {
	background-color: #b3b2b2;
}

/* MENU */
#menuMobile {
	z-index: 99;
	width: 100%;
	height: 100%;
	/*background-color: #000000;*/
	position: fixed;
	top: 0;
	left: 0;
	display: none;
	visibility: hidden;
	text-align: center;
}
#menuTop {
	background-color: #dedede;
	width: 100%;
}
#menuBottom {
	width: 100%;
	height: 100%;
}
#menuMobile img {
	margin-top: 20px;
	margin-bottom: 20px;
}
#menuMobile ul {
	width: 100%;
	padding: 0;
	margin: 0;
	display: inline-block;
	position: relative;
}
#menuMobile ul li {
	width: 100%;
	height: 20px;
	/*background-color: #dedede;*/
	background: #0054bc; /* Old browsers */
	background: -moz-linear-gradient(top, #0054bc 33%, #154589 100%); /* FF3.6-15 */
	background: -webkit-linear-gradient(top, #0054bc 33%,#154589 100%); /* Chrome10-25,Safari5.1-6 */
	background: linear-gradient(to bottom, #0054bc 33%,#154589 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#0054bc', endColorstr='#154589',GradientType=0 ); /* IE6-9 */
	padding: 20px 0px 20px 0px;
	line-height: 20px;
	list-style: none;
	font-size: 30px;
	font-weight: bold;
	/*border-top-style: solid;
	border-top-width: 1px;
	border-top-color: #353535;*/
}
#menuMobile ul .menu_lst {
	width: 100%;
	height: auto;
	background: #f8f8f8; /* Old browsers */
	background: -moz-linear-gradient(top, #f8f8f8 33%, #bababa 100%); /* FF3.6-15 */
	background: -webkit-linear-gradient(top, #f8f8f8 33%,#bababa 100%); /* Chrome10-25,Safari5.1-6 */
	background: linear-gradient(to bottom, #f8f8f8 33%,#bababa 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f8f8f8', endColorstr='#bababa',GradientType=0 ); /* IE6-9 */
	padding-bottom: 25px;
}
#menuMobile ul .menu_lst img {
	width: 70%;
	height: auto;
	border-radius: 5px;
	-webkit-box-shadow: 5px 5px 5px 0px rgba(0,0,0,0.25);
	-moz-box-shadow: 5px 5px 5px 0px rgba(0,0,0,0.25);
	box-shadow: 5px 5px 5px 0px rgba(0,0,0,0.25);
	margin: 0;
	padding: 0;
}
#menuMobile ul a {
	width: 100%;
	color: #ffffff;
	text-decoration: none;
}
#menuMobile ul a:hover {
	/*color: #ffffff;*/
}
#menuMobile ul li:hover  {
	/*background-color: #353535;*/
}