/*
Setup a basic body
*/
body {
    margin: 0;
    padding: 0;
    overflow-x:hidden;
    font-family: Arial;
    font-size: 18px;
}
/*
Header is relative so z-index: 1 guarantees always displayed on top
*/
header {
    /*background-color: #041758;*/
	background-color: transparent;
    /*padding: 10px;*/
    text-decoration: none;
    position: fixed;
    width: 100%;
    z-index: 1;
    /*-webkit-box-shadow:  0px 3px 7px 0px rgba(0, 0, 0, 0.4);
    box-shadow:  0px 3px 7px 0px rgba(0, 0, 0, 0.4);*/
}
/*
using background color is important to cover the menu
position absolute isset to cover the whole viewport
*/
#content {
    /*background-color: #FFFFFF;*/
    padding: 52px 0px 0px 0px;
    position: relative;
    width: auto;
	height: 100%;
    /*min-height: 1000px;*/
    /*-webkit-box-shadow:  -10px 0px 9px 0px rgba(0, 0, 0, 0.4);
    box-shadow:  -10px 0px 9px 0px rgba(0, 0, 0, 0.4);*/
}

#content_noindex {
    padding: 52px 0px 0px 0px;
    position: relative;
    width: auto;
	height: 100%;
}
/*
the hamburger button with a little gradient effekt
*/
#minbutton {
    /*border: 1px solid #374C77;*/
    border-radius: 3px 3px 3px 3px;
    cursor: pointer;
    display: block;
    height: 35px;
    padding: 7px 4px 3px;
    position: relative;
    width: 35px;
	z-index: 99999;
    /*background: #041758;
    background: -moz-linear-gradient(top,  #4569b2 0%, #4062a5 100%);
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#4569b2), color-stop(100%,#4062a5));
    background: -webkit-linear-gradient(top,  #4569b2 0%,#4062a5 100%);
    background: -o-linear-gradient(top,  #4569b2 0%,#4062a5 100%);
    background: -ms-linear-gradient(top,  #4569b2 0%,#4062a5 100%);
    background: linear-gradient(to bottom,  #4569b2 0%,#4062a5 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#4569b2', endColorstr='#4062a5',GradientType=0 );*/
}
/*
The white stripes in the hamburger button
*/
#minbutton div {
    background-color: #fff;
    border: 2px solid #555;
    -webkit-border-radius: 200px;
	-moz-border-radius: 200px;
	border-radius: 10px;
    height: 8px;
    margin-top: 1px;
    width: 130%;
	-webkit-box-shadow:  -2px 0px 2px 0px rgba(0, 0, 0, 0.4);
    box-shadow:  -2px 0px 2px 0px rgba(0, 0, 0, 0.4);
}
/*
The navigation container in the background
*/
nav.mobileNav {
	display: none;
    left: 0px;
    top: 0px;
    position: fixed;
	z-index: 99999;
    width: 70%;
	/*min-width:250px;*/
	height: 100%;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    overflow-x: hidden !important;
	overflow-y: auto !important;
	-webkit-overflow-scrolling: touch;
    background: #3e3c3d;
    background: -moz-linear-gradient(top,  #3e3c3d 0%, #2d2c2d 100%);
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#3e3c3d), color-stop(100%,#2d2c2d));
    background: -webkit-linear-gradient(top,  #3e3c3d 0%,#2d2c2d 100%);
    background: -o-linear-gradient(top,  #3e3c3d 0%,#2d2c2d 100%);
    background: -ms-linear-gradient(top,  #3e3c3d 0%,#2d2c2d 100%);
    background: linear-gradient(to bottom,  #3e3c3d 0%,#2d2c2d 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#3e3c3d', endColorstr='#2d2c2d',GradientType=0 );
	-webkit-box-shadow: 3px 0px 5px 0px rgba(50, 50, 50, 0.6);
	-moz-box-shadow:    3px 0px 5px 0px rgba(50, 50, 50, 0.6);
	box-shadow:         3px 0px 5px 0px rgba(50, 50, 50, 0.6);
}
/*
Style the navigation menu
*/
nav.mobileNav ul {
    list-style: none;
    margin: 0;
    width: 100%;
    padding: 0;
}
nav.mobileNav li, .findersearchmobilesearch {
    position: relative;
    font-size: 1em;
    font-weight: bold;
    border-bottom: 1px solid #222222;
    border-top: 1px solid #444444;
    padding: 5px;
	padding-left: 25px;
	min-height: 68px;
}
ul.nav.menumobilenavbottom li{
		line-height: 50px;
}
nav.mobileNav li a {
    color: #fff;
    text-decoration: none;
	border: none;
}
.element-invisible {
display: none;
}
.findersearchmobilesearch {
padding-top: 15px;
}
nav.mobileNav li a img{
    max-height: 50px;
}
/*
The Layer that will be layed over the content
so that the content is unclickable while menu is shown
*/
#contentLayer {
    display: none;
    height: 100%;
    overflow-x: hidden;
    overflow-y: auto;
    position: absolute;
    right: 0;
    top: 0;
    width: 30%;
    z-index: 99999;
    min-height: 1062px;
}

@media only screen 
and (max-width: 450px) {
.findersearchmobilesearch input{
    max-width: 80%;
}
}