html{
	height: 100%;
	overflow-y: hidden;
}

body{
	min-height: 100%;
	font-family: sans-serif;
	margin: 0;

}

hr{
	clear: both;
	background-color: #E6E6E6;
	border: 0;
	height: 1px;
}

.background{
	background-repeat: no-repeat;
	position: absolute;
	z-index: 1;
}

.loginContainer{
	margin-left: auto;
	margin-right: auto;
	max-width: 300px;
	font-size: 13px;
	color: #000000;
	position: relative;
	z-index: 2;
}

.loginForm{
	padding-top: 13px;
	display: block;
	overflow: auto;
}

.input{
	height: 28px;
	margin-top: 5px;
	margin-bottom: 10px;
	outline: none;
	border-radius: 6px;
	padding: 4px 0;
	border: 1px solid #CCC;
	box-shadow: none;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	padding: 0 2px;
	width: 100%;
}

.password{
	height: 28px;
	margin-top: 5px;
	margin-bottom: 10px;
	outline: none;
	border-radius: 6px;
	padding: 4px 0;
	border: 1px solid #CCC;
	box-shadow: none;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	padding: 0 2px;
	width: 100%;
}

.submit{
	background-color: transparent;
	box-shadow: none;
	color: #595959;
	border: solid 1px #cccccc;
	border-radius: 6px;
	outline: none;
	cursor: pointer;
	height: 28px;
	line-height: 24px;
	padding: 1px 10px;
	margin: 10px 0 0 0;
	font-size: 13px;
	font-weight: bold;
}

.errorMessage{
	color: rgba(230, 78, 78, 1.0);
	cursor: default;
	-padding: 10px 10px 10px 10px;
	-webkit-border-radius: 6px;
	-moz-border-radius: 6px;
	border-radius: 6px;
	clear: both;
	-webkit-text-overflow: ellipsis;
	text-overflow: ellipsis;
	text-align:center;
	align:center;
}

.errorMessageHidden{
	display: none;
	overflow: hidden;
}

.Hidden{
	display: none;
}

.notificationMessage {
    margin-left: auto;
    margin-right: auto;
    max-width: 700px;
    font-size: 12px;
    color: #F26600;
    position: relative;
    z-index: 2;
    text-align: center;
}