@import url('../fonts/roboto.css');
@import url('global.css');
   
body,html{
   background-color:#222;
}
a:hover{
	text-decoration:none;
}
 
#HeaderNav {
	margin-top:100px;
	overflow: hidden;
 	height:70px;
	background-color:#222;
 }


#HeaderNav .brand{
	font-family: 'RobotoBoldCondensed', Arial, Helvetica, sans-serif;
	font-weight: normal;
	text-transform: uppercase;
	color: #fff;
	font-size:50px;
	margin:25px auto;
	display:block;
 	position:relative;
	width:290px;
 	
}


#HeaderNav .brand span{
	color: #FF4800;
	
}

#loginBox{
	width:310px;
	border:1px solid #222;
	margin:20px auto;
}
#loginBox p{
 	
}


#loginBox input[type=text],#loginBox input[type=password], #loginBox input.submitbutton{
	width:290px;
	border:0px solid #000;
	padding:10px;
	font-size:16px;
}


#loginBox input[type=text]{
	border-radius:5px 5px 0 0;	
	border-bottom:#eee 1px solid;
}

#loginBox input[type=password]{
	border-radius:0 0 5px 5px;	
	border-bottom:#eee 1px solid;
}

#loginBox input.submitbutton{
	width:310px;
 	background-color:#000;
	color:#fff;
 	border-radius: 5px;
	padding:10px 0;
	margin-top:15px;
}

#loginBox input.submitbutton:hover{
  	background-color:#333;
	color:#fff;
} 

label.valid {
  width: 24px;
  height: 24px;
  background: url(../images/valid.png) center center no-repeat;
  display: inline-block;
  text-indent: -9999px;
}
label.error {
	font-weight: bold;
	color: red;
	padding: 2px 8px;
	margin-top: 2px;
}


.alert{
	position:fixed;
	top:0;
	text-align:center;
	width:100%;
	padding:14px 0;
 }
.alert .close{
	right:20px;
	top:11px;
	position:fixed;
}