@charset "UTF-8";

.bodyBackground {
	background: url(images/loginBackground.jpg) no-repeat center center fixed;
    -webkit-background-size: cover;
       -moz-background-size: cover;
         -o-background-size: cover;
    background-size: cover;
	padding: 0px 0px;
}

.topBar {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
    height: 50px;
	background-color: #f15322;
	font-family: 'Oswald', sans-serif;
	font-weight:400;
	font-size: 26px;
	line-height: 50px;
	color: #ffffff;
}

.loginText {
	font-family: 'PT Sans Narrow', sans-serif;
	font-size: 26px;
	line-height: 26px;
	font-weight: 400px;
	color: #ffffff;
}

.bottomBar {
	position: fixed;
	right: 0;
	bottom: 0;
	height: 30px;
	width: 100%;
	font-size: 12px;
	line-height: 30px;
    background-color: rgba(0,0,0,0.70);
	color: #999999;
	font-family: 'Roboto', sans-serif;
}

.loginWindow1 {
    background-color:  rgba( 0, 0, 0,0.5);
	position: fixed;
    left: 50%;
    top: 50%;
    height: 300px;
    margin-top: -150px;
    width: 440px;
    margin-left: -220px;
}

.loginWindow {
	background-color:  rgba( 0, 0, 0,0.5);
	position: fixed;
    left: 50%;
    top: 50%;
    height: 300px;
    margin-top: -150px;
    width: 440px;
    margin-left: -220px;
	
	-webkit-animation: cssAnimation 0.2s 1 ease;
	-moz-animation: cssAnimation 0.2s 1 ease;
	-o-animation: cssAnimation 0.2s 1 ease;
}

@-webkit-keyframes cssAnimation {
	from { -webkit-transform: rotate(0deg) scale(0.1) skew(0deg) translate(0px); }
	to { -webkit-transform: rotate(0deg) scale(1.003) skew(0deg) translate(0px); }
}
@-moz-keyframes cssAnimation {
	from { -moz-transform: rotate(0deg) scale(0.1) skew(0deg) translate(0px); }
	to { -moz-transform: rotate(0deg) scale(1) skew(0deg) translate(0px); }
}
@-o-keyframes cssAnimation {
	from { -o-transform: rotate(0deg) scale(0.1) skew(0deg) translate(0px); }
	to { -o-transform: rotate(0deg) scale(1) skew(0deg) translate(0px); }
}

.loginWindowDown {
	border: solid 1px #e4e4e4;
    border-width: 0px 1px 1px 1px;
    border-color:  #e4e4e4 #e4e4e4 #e4e4e4 #e4e4e4;
}

.buttonLogin {
    background-color: #f15322;
    background-image: -moz-linear-gradient(#f15322 0%, #f15322 100%);
    background-image: -webkit-linear-gradient(#f15322 0%, #f15322 100%);
    background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#f15322), to(#f15322));
    background-image: -o-linear-gradient(#f15322 0%, #f15322 100%);
    background-image: linear-gradient(#f15322 0%, #f15322 100%);
    padding: 8px 34px 8px 34px;
    border: solid 1px #f15322;
    display: inline-block;
    font-family: 'PT Sans Narrow', sans-serif;
    font-size: 18px;
    line-height: 18px;
    color: #ffffff;
    cursor: pointer;
}
.buttonLogin:hover {
    background-color: #a32e0a;
    background-image: -moz-linear-gradient(#a32e0a 0%, #a32e0a 100%);
    background-image: -webkit-linear-gradient(#a32e0a 0%, #a32e0a 100%);
    background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#a32e0a), to(#a32e0a));
    background-image: -o-linear-gradient(#a32e0a 0%, #a32e0a 100%);
    background-image: linear-gradient(#a32e0a 0%, #a32e0a 100%);
    border: solid 1px #a32e0a;
}

.loginCell {
    font-family: 'PT Sans Narrow', sans-serif;
    line-height: 22px;
    font-size: 18px;
	color:#000000;
	padding: 6px 12px 6px 12px;
    border: none;
    display: inline-block;
    outline: none;
}

.errorElement {
   background-color: #ff0000;
   width: 170px;
   padding: 9px;
   display: inline-block;
   font-size: 14px;
   font-family: Verdana, Geneva, sans-serif;;
   text-align: center;
   color: #ffffff;
}