@charset "utf-8";
/* Contains styling specific to the login page */
html {
	-webkit-touch-callout: none;
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	cursor:default;	
}
#loginOuter {
	display:table;
	width:100%;
	height:100%;	
}
#loginMiddle {
	display:table-cell;
	vertical-align:middle;	
}
#loginInner {
	display:table-cell;	
}
#loginContainer {
	width:400px;
	position:absolute;
	background-color:#f6faf9;
	box-shadow: 0 0 20px 10px #888888;
	border-radius:5px;
	height:205px;
	margin: auto;
	left:0;
	right:0;
	top:0;
	bottom:0;
}
#loginMsg {
	width:100%;
	text-align:center;
	height:45px;
	font-size:20px;
	line-height:45px;
	background-color:rgb(220,220,220);
	background: linear-gradient(rgb(240,240,240), rgb(220,220,220));
	border-radius: 5px 5px 0 0;	
}
#loginTable {
	display:table;
	width:100%;
}
.loginRow {
	margin:15px
}
#cookieWarning {
	position:fixed;
	width:100%;
	left:0;
	text-align:center;
	bottom:0px;
	height:36px;
	line-height:36px;
	background-color:#fff;
}
#loadingGif {
	margin:2px;
	right:10px;
	position:absolute;
}