@import url ('https://fonts.googleapis.com/css?family=Roboto:400,900');

	body {
				background: #F9F9F9;
				font-family: 'Roboto', sans-serif;
			}
			hr {
				border: 2px solid #ff5500;
			}
			h2 {
				color: #ff5500;
				text-transform: uppercase;
				font-size: 16px;
				margin-top: 100px !Important;
				border-bottom: 4px solid #ff5500;
			}
			input {
				border: 1px solid #EEE;
				padding: 15px;
			}
			#header {
				background: #ff5500;
				position: absolute;
				top: 0;
				right: 0;
				left: 0;
				
				height: 80px;
			}
			#header > .logo {
				background: url('images/logo.png') no-repeat center;
				background-size: 250px auto;
				height: 80px;
				width: 300px;
				
				float: left;
			}
			#header > .user {
				float: left;
				margin-top: 35px;
				padding-left: 20px;	
				color: #FFF;
				
				border-left: 1.5px solid #FFF;
			}
			#header > .logout {
				float: left;
				margin-top: 35px;
				margin-left: 15px;
				font-size: 12px;
				background: #FFF;
				border: 1.5px solid #FFF;
				border-radius: 500px;
				padding: 2px 10px;
				color: #FFF;
			}
			#header > .logout a {
				text-decoration: none;
				color: #000;

			}
			#header > #menu {
				float: right;
				max-width: 900px;
				margin-top: 33px;
			}
			#header > #menu a {
				font-family: 'Roboto', sans-serif;
				font-size: 14px;	
				text-transform: uppercase;
				
				border: 1.5px solid #FFF;
				border-radius: 500px;
				padding: 4px 15px;
				color: #FFF;
				margin-right: 20px;
	
				text-decoration: none;
			}
			#header > #menu a:hover {
				background: #FFF;
				color: #000;
			}
			.wrapper {
				max-width: 1200px;
				margin: 90px auto 20px auto;
				left: 0;
				right: 0;
			}
			.pos {
				width: 600px;
				margin: auto;
			}
			.login {
				text-align: center;
				margin-top: 150px;
			}
			.login input {
				width: 44%;
				margin-right: 1%;
				float: left;
				padding: 10px;
				border: 1px solid #EEE;
				font-size: 20px;
			}
			.login #login {
				background: #ff5500 !important;
				float: right;
				width: 48px;
				height: 48px;
				
				color: #FFF;
				
				border: 0;
				border-radius: 500px;
				
				cursor: hand;
			}
			.login #login:hover {
				background: #d84800 !important;
			}
			.clear { clear: both; }