#lm-overlay {
    z-index: 9997;
    background: #333;
    opacity: 0.8;
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
}

.no-opacity #lm-overlay {
	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=80)";
}

#lm-container-overlay {
    z-index: 9999;
    background: #333;
    opacity: 0.8;
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
}

#lm-container {
    z-index: 9998;
	width: 300px;
	position: fixed;
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	background: #FFF;
	border-radius: 10px;
	padding: 15px 20px 50px;
	font-family: helvetica, arial, sans-serif;
    box-shadow: 0 0 6px #333;

}

#lm-container input {
    outline: none;
}

.lm-headline {
	font-size: 15px;
	text-transform: none;
	color: #999;
	font-weight: bold;
	font-family: helvetica, arial, sans-serif;
	text-align: center;
	padding: 0;
	margin: 0;
	line-height: 1;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

.lm-tab-container {
	height: 32px;
	width: 100%;
	margin-top: 14px;
}

a.lm-tab-sign-in, a.lm-tab-sign-up {
	width: 50%;
	text-align: center;
	font-size: 16px;
	font-weight: bold;
	border: 1px solid #CCC;
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	line-height: 32px;
	color: #AAA;
	background: #FAFAFA;
	text-decoration: none;
	outline: 0;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

a.lm-tab-sign-in {
	border-right: none;
	float: left;
}

a.lm-tab-sign-up {
	border-left: none;
	float: right;
}

a.lm-tab-active {
	border-top: 1px solid #E91E24;
	border-bottom: none;
	border-right: 1px solid #CCC;
	border-left: 1px solid #CCC;
	color: #E91E24;
	background: #FFF;
}

.lm-textbox {
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	width: 100%;
	border: 1px solid #CCC;
	color: #666;
	border-radius: 4px;
	font-size: 15px;
	font-family: helvetica;
	padding: 7px 0 7px 8px;
	margin-top: 15px;
}

.lm-textbox:focus {
	border-color: #999;
}

.lm-textbox:focus {
	color: #333;
}

a.lm-forgot-pass {
	color: #999;
	font-size: 12px;
	float: right;
	text-decoration: none;
}

.lm-button {
	position: absolute;
	cursor: pointer;
	outline: none;
	border: 0;
	bottom: 0;
	height: 40px;
	color: #FFF;
	font-family: helvetica, arial, sans-serif;
	font-weight: bold;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

#lm-sign-up-submit, #lm-sign-in-submit {
	left: 0;
	width: 200px;
	border-bottom-left-radius: 9px;
	background: #E91E24;
	font-size: 18px;
	text-shadow: 1px 1px 0 #640903;
	background: -moz-linear-gradient(top, #E91E24 0%, #CC1B20 100%);
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#E91E24), color-stop(100%,#CC1B20));
	background: -webkit-linear-gradient(top, #E91E24 0%,#CC1B20 100%);
	background: -o-linear-gradient(top, #E91E24 0%,#CC1B20 100%);
	background: -ms-linear-gradient(top, #E91E24 0%,#CC1B20 100%);
	background: linear-gradient(to bottom, #E91E24 0%,#CC1B20 100%);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#E91E24', endColorstr='#CC1B20', GradientType=0);
}

#lm-sign-up-submit:active, #lm-sign-in-submit:active {
	background: -moz-linear-gradient(top, #CC1B20 0%, #E91E24 100%);
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#CC1B20), color-stop(100%,#E91E24));
	background: -webkit-linear-gradient(top, #CC1B20 0%,#E91E24 100%);
	background: -o-linear-gradient(top, #CC1B20 0%,#E91E24 100%);
	background: -ms-linear-gradient(top, #CC1B20 0%,#E91E24 100%);
	background: linear-gradient(to bottom, #CC1B20 0%,#E91E24 100%);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#E91E24', endColorstr='#CC1B20', GradientType=0);
}

.lm-cancel {
	right: 0;
	width: 100px;
	border-bottom-right-radius: 9px;
	font-size: 15px;
	text-shadow: 1px 1px 0 #666;
	background: -moz-linear-gradient(top, #BBB 0%, #999 100%);
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#BBB), color-stop(100%,#999));
	background: -webkit-linear-gradient(top, #BBB 0%,#999 100%);
	background: -o-linear-gradient(top, #BBB 0%,#999 100%);
	background: -ms-linear-gradient(top, #BBB 0%,#999 100%);
	background: linear-gradient(to bottom, #BBB 0%,#999 100%);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#BBBBBB', endColorstr='#999999', GradientType=0);
}

.lm-cancel:active {
	background: -moz-linear-gradient(top, #999 0%, #BBB 100%);
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#999), color-stop(100%,#BBB));
	background: -webkit-linear-gradient(top, #999 0%,#BBB 100%);
	background: -o-linear-gradient(top, #999 0%,#BBB 100%);
	background: -ms-linear-gradient(top, #999 0%,#BBB 100%);
	background: linear-gradient(to bottom, #999 0%,#BBB 100%);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#999999', endColorstr='#BBBBBB', GradientType=0);
}

.lm-disclaimer {
	background: #EEE;
	color: #666;
	width: 100%;
	font-size: 11px;
	padding: 4px 10px;
	margin-top: -4px;
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	border-bottom-right-radius: 4px;
	border-bottom-left-radius: 4px;
	line-height: 14px;
	-webkit-font-smoothing: antialiased;
}

.lm-tou {
	margin-top: 25px;
}

.lm-error {
    display: none;
    background: #E91E24;
    color: #FFF;
    width: 100%;
    font-size: 11px;
    font-weight: bold;
    padding: 8px 10px 4px 10px;
    margin-top: -4px;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    border-bottom-right-radius: 4px;
    border-bottom-left-radius: 4px;
    line-height: 14px;
    -webkit-font-smoothing: antialiased;
}

.lm-tou-error {
    display: none;
    background: #E91E24;
    color: #FFF;
    width: 100%;
    font-size: 11px;
    font-weight: bold;
    padding: 4px 10px;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    border-radius: 4px;
    line-height: 14px;
    -webkit-font-smoothing: antialiased;
}

.lm-email, #lm-sign-up-success {
	text-align: left;
	color: #666;
	margin: 15px 0 8px;
}

.lm-checkbox-label {
	display: inline-block;
	padding-left: 25px;
	height: 20px;
	line-height: 22px;
	font-weight: normal;
	color: #666;
	background: url(../images/red_checkbox.png) no-repeat;
	background-size: 20px;
	background-position: 0 0;
	margin-bottom: 5px;
	cursor: pointer;
	font-size: 13px;
}

.lm-checkbox-label a {
	color: #E91E24;
	text-decoration: none;
}

.lm-checkbox:focus + .lm-checkbox-label {
	color:#E91E24
}

.lm-checkbox:checked + .lm-checkbox-label {
	background-position: 0 -20px;
}

.lm-checkbox {
	position: absolute;
	clip: rect(0 0 0 0);
	height: 1px;
	width: 1px;
	margin: -1px;
}

#lm-sign-up-success {
	color: #FFF;
	font-size: 12px;
	text-align: center;
	line-height: 14px;
	padding: 3px 0 4px;
	margin: 4px 0 0;
	background-color: #42b111;
}

.no-backgroundsize .lm-checkbox {
	height: auto;
	width: auto;
	clip: auto;
	margin: 4px 0 0 4px;
}

.no-backgroundsize .lm-checkbox-label {
	background: none;
}

@media screen and (max-width: 570px) {
	
	#lm-container {
		width: 270px;
		padding: 10px 20px 45px;
	}

	#lm-sign-in-container {
		padding-bottom: 5px;
	}

	.lm-headline {
		font-size: 13px;
	}

	.lm-tab-container {
		height: 29px;
		margin-top: 10px;
	}

	a.lm-tab-sign-in, a.lm-tab-sign-up {
		font-size: 14px;
		line-height: 27px;
	}

	.lm-textbox {
		-webkit-appearance: none;
		font-size: 12px;
		margin-top: 8px;
		box-sizing: border-box;
		-moz-box-sizing: border-box;
		-webkit-box-sizing: border-box;
		width: 100%;
		padding: 5px 0 5px 6px;
	}

	.lm-disclaimer {
		display: none !important;
	}

	#lm-sign-up-submit, #lm-sign-in-submit {
		width: 175px;
		font-size: 16px;
	}

	a.lm-forgot-pass {
		margin-top: 5px;
	}

	.lm-checkbox-label {
		line-height: 20px;
		font-size: 12px;
		margin-bottom: 1px;
	}

	.lm-cancel {
		width: 95px;
		font-size: 14px;
	}

	.lm-tou {
		margin-top: 17px;
	}

	.lm-tou-error {
		padding: 2px 10px 3px;
		font-size: 10px;
	}

	.lm-error {
		font-size: 10px;
		padding: 6px 10px 3px 10px;
	}

	.lm-email {
		margin: 10px 0 5px;
	}

	.lm-button {
		height: 35px;
	}

	#lm-sign-up-success {
		font-size: 11px;
		line-height: 13px;
	}
}





