@import url('https://fonts.googleapis.com/css?family=Lobster');
@import url('https://fonts.googleapis.com/css?family=Material+Icons');

html{
	height: 100%;
}

body{
	text-align: center;

	min-height: 100%;
	margin: 0px;
	
	color: #000;
	font-family: verdana;
	font-size: 100%;
	
	position: relative;
	padding-bottom: 0px;
}

#content{
	
}

#footer{
	position: absolute; 
    left: 0 ; right: 0; bottom: 0; 
    height:20px;
    
    font-size: 10px;
}

#header{
	position: relative;
	padding-bottom: 5px;
	
	box-shadow: 0px 0px 10px grey;
}

#header #logo{
	font-family: 'Lobster', sans-serif;

	color: rgb(68,68,68);
	text-decoration: none;
	
	font-size: 36px;
	font-stretch: 100%;
	font-weight: 400;
	
	float: left;
	margin-left: 20px;
}

#header #menu-content ul{
	list-style-type: none;
	float: right;
	
	margin-right: 20px;
}

#header #menu-content li{
	display: block;
	float: left;
	
	padding: 0px 10px 0px 10px;
}

#header #menu-content li a{
	text-decoration: none;
	color: rgb(68,68,68);
	
	 transition: color 0.2s ease;
}

#header #menu-content li a:hover{
	color: silver;
}

#header #menu-content li a.selected{
	color: silver !important;
}

#header #menu-burger{
	float: right;
	margin-right: 20px;
	
	display: none;
}

#header #menu-burger a{
	color: rgb(68,68,68);

	font-size: 40px;
	text-decoration: none;
}

#menu-burger-content{
	display: none;
	
	position: absolute;
	right: 0px;
}

#menu-burger-content ul{
	list-style-type: none;
	float: right;
	
	margin-right: 20px;
	background-color: silver;
	border: solid #AFAFAF 1px;
	
	margin: 5px;
	padding: 20px;
}

#menu-burger-content li{
	display: block;	
	padding: 0px 10px 0px 10px;
	
	text-align: left;
}

#menu-burger-content li a{
	text-decoration: none;
	color: rgb(68,68,68);
	
	font-size: 25px;
}

#menu-burger-content li a.selected{
	font-weight: bold !important;
}


.menu-burger-selected a{
	background: rgb(68,68,68);
	color: #fff !important;
}

.cleaner{
	clear: both;
}

@media only screen and (max-width: 600px) {
    #header #logo {
		font-size: 30px;
		
		bottom: -10px;
		left: 10px;
    }

	#header{
		height: 40px;
	}
	
	#header #menu-content{
		display: none;
	}
	
	#header #menu-burger{
		display: block;
	}
}


#login{
	min-width: 300px;
	width: 20%;
	
	margin: auto;
	margin-top: 50px;
	
	border: solid silver 1px;
	border-radius: 3px;

}

#login h2{
	font-weight: normal;
	
	font-family: 'Lobster', sans-serif;
	color: rgb(68,68,68);

	margin-bottom: 10px;
}

#login label{
	font-size: 15px;
	
	padding: 5px;
	position: relative;
	
	left: +31px;
	top: +3px;
}

#login p{
	margin: 0px;
}

#login input{
	height: 23px;
	width: 200px;
	
	border: solid silver 1px;
	text-indent: 30px;
}

#login .submit{
	position: relative;
		
	width: 100px;
	text-indent: 0px;
	
	margin-top: 20px;
	margin-bottom: 20px;
}

#login .error{
	color: red;
	padding-bottom: 10px;
	
	display: block;
}


#sms{
	padding: 20px;
}

.error{
	color: red;
}


.userbox{
	min-width: 300px;
	width: 90%;
	
	margin-top: 50px;
	margin-left: 20px;
	
	padding: 10px;
	
	border: solid silver 1px;
	border-radius: 3px;

	float: left;
}

.userbox h2{
	font-weight: normal;
	
	font-family: 'Lobster', sans-serif;
	color: rgb(68,68,68);

	margin-bottom: 10px;
	margin-top: 0px;
	text-align: left;
}

.userbox table{
	width: 100%;
	border: solid rgb(68,68,68) 1px;
}

.userbox table td,th{
	border: solid rgb(68,68,68) 1px;
}

.userbox label{
	display:block;
	float: left;
	width: 160px;
}


