body {
    background-repeat: no-repeat;
    background-position: center -170px;
}

body, input {
    font-family: "Source Sans Pro", sans-serif;
    background-color: #555;
}

.float.right {
	float: right;
}
.float.left {
	float: left;
}

.right {
	text-align: right;
}

.left {
	text-align: left;
}

.center {
	text-align: center;
}

.subtext a:active,
.subtext a:hover {
	text-decoration: none;
}


.loginbox {
	position: absolute;
	left: 50%;
	top: 50%;
	margin-left: -410px;
	margin-top: -240px;
	width: 820px;
	height: 480px;
	background-color: #000;
    color: #fff;
}

.login-controls {
	position: absolute;
	top: 0;
	left: 0;
	width: 334px;
}

.login-controls-upper {
	background-color: #000;
	padding: 25px 30px 0 25px;
	height: 323px;  /* 348px - 25px */
	color: #fff;
}

.login-controls-lower {
	width: 100%;
	height: 85px;
	background: -moz-linear-gradient(top,  rgba(0,0,0,1) 0%, rgba(0,0,0,0) 100%);
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(0,0,0,1)), color-stop(100%,rgba(0,0,0,0)));
	background: -webkit-linear-gradient(top,  rgba(0,0,0,1) 0%,rgba(0,0,0,0) 100%);
	background: -o-linear-gradient(top,  rgba(0,0,0,1) 0%,rgba(0,0,0,0) 100%);
	background: -ms-linear-gradient(top,  rgba(0,0,0,1) 0%,rgba(0,0,0,0) 100%);
	background: linear-gradient(to bottom,  rgba(0,0,0,1) 0%,rgba(0,0,0,0) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#000000', endColorstr='#00000000',GradientType=0 );
}

#submitForm {
	width: 150px;
}

#system-logo {
	width: 100%;
	height: 160px;
	background-image: url(/img/login/skin_logo.png);
	background-repeat: no-repeat;
	background-position: right bottom;
}

#customer-logo {
	max-width: 110px;
	max-height: 70px;
	background-repeat: no-repeat;
	background-position: left top;
}

#customer-logo.default-logo {
	margin-top: 25px;
}

#login-fields {
	margin-top: 25px;
    margin-right: -25px;
}

#login-fields h1 {
	font-size: 1.3em;
    font-weight: 200;
    text-transform: lowercase;
}

#login-fields h1 strong {
	font-weight: bold;
}

#login-fields .fields {
    margin: 0 0 8px 0;
    width: 100%;
}

#login-fields .fields input {
    padding: 6px;
    font-size: 1.2em;
    font-weight: 200;
    border: 0;
    box-shadow: inset 0 0 5px 1px rgba(0, 0, 0, 0.35);
    color: white;
}

#login-fields .fields.username input[type=text] {
    width: 268px;
    height: 22px;
}

#login-fields .fields.password input[type=text],
#login-fields .fields.password input[type=password] {
    width: 170px;
    height: 22px;
	color:#999;
}

#login-fields .fields.password input[type=submit] {
    width: 84px;
    -webkit-appearance: none;
    color: #fff;
    cursor: pointer;
    font-weight: normal;
}

#caps-lock-warning {
    display: none;
    position: absolute;
    right: 30px;
    margin-top: -23px;
    background-image: url(/img/login/balloon_tail.png);
    background-repeat: no-repeat;
    background-position: 25px top;
    padding-top: 25px;
}

#caps-lock-warning-inner {
    padding: 10px 15px;
    background-color: #fff;
    color: #000;
}

#caps-lock-warning-inner img {
    vertical-align: middle;
    margin-right: 5px;
}

.poweredBy {
    background-color: #000;
    height: 85px;
    text-align: right;
    padding-right: 30px;
    line-height: 98px;
}

.poweredBy a {
	color: #fff;
	text-decoration: none;
}

.poweredBy a img {
	border: 0;
}

.poweredBy img {
    vertical-align: middle;
    margin-left: 2px;
}

.subtext {
	position: fixed;
    background-color: #000;
    bottom: 0;
	left:0px;
    width: 100%;
    height: 45px;
    line-height: 45px;
    overflow: hidden;
    font-size: 13px;
    font-weight: normal;
}


.subtext p {
    margin: 0;
    padding: 0 25px;
}

.subtext a:link,
.subtext a:visited {
    color: #fff;
    text-decoration: none;
}

.subtext p > span {
    padding: 0 5px;
}

#Login1_LoginUserValidationSummary ul {
    margin: 0 0 0 5px;
    list-style-type: square;
    color: #f00;
    -moz-text-shadow: 0 0 8px rgba(0, 0, 0, 0.75);
    -webkit-text-shadow: 0 0 8px rgba(0, 0, 0, 0.75);
    text-shadow: 0 0 8px rgba(0, 0, 0, 0.75);
}

#Login1_LoginUserValidationSummary ul li {
    margin: 0;
    padding: 0;
}

/*
 | ------------------------------------------
 | Glide styles (animated carousel)
 | ------------------------------------------
*/

.slider {
    position: absolute;
    top: 85px;
	width: 800px;
    height: 350px;
    overflow: hidden;
    background-color: #000;
    z-index: 0;
}

    .slides {
        height: 100%;
        padding: 0;
        margin: 0;
        list-style-type: none;

        /* Simple clear fix */
        overflow: hidden;

        /**
         * Here are the CSS transitions 
         * responsible for slider animation in modern broswers
         */
        -webkit-transition: all 800ms cubic-bezier(0.440, 0.840, 0.440, 1.000); 
           -moz-transition: all 800ms cubic-bezier(0.440, 0.840, 0.440, 1.000); 
            -ms-transition: all 800ms cubic-bezier(0.440, 0.840, 0.440, 1.000); 
             -o-transition: all 800ms cubic-bezier(0.440, 0.840, 0.440, 1.000); 
                transition: all 800ms cubic-bezier(0.440, 0.840, 0.440, 1.000);
    }

        .slide {
	        height: 100%;
	        float: left;
	        clear: none;
	        background-position: center;
	        background-repeat: no-repeat;
        }
        
        .slide h2 {
            float: right;
            font-weight: 200;
            font-size: 3em;
            line-height: 90%;
            margin: 20px 27px 0 0;
            max-width: 435px;
            max-height: 300px;
            overflow: hidden;
            text-align: right;
            -moz-text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.75);
            -webkit-text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.75);
            text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.75);
        }
        
        .slide h2 strong {
        	font-weight: bold;
        }
        
    .slider-arrows {}

    .slider-arrow {
	    position: absolute;
	    display: block;
	    margin-bottom: -20px;
	    padding: 20px;
    }

	.slider-arrow--right { bottom: 50%; right: 30px; }
	.slider-arrow--left { bottom: 50%; left: 30px; }


    .slider-nav {
        position: absolute;
        bottom: 30px;
    }

    .slider-nav__item {
	    width: 12px;
	    height: 12px;
	    float: left;
	    clear: none;
	    display: block;
	    margin: 0 5px;
	    background: #fff;
    }

	.slider-nav__item:hover { background: #ccc; }
	.slider-nav__item--current { background: #ccc; }


.loginVersionInfo {
	padding: 4px 12px;
	position: absolute;
	right: 12px;
	bottom: 12px;
	background: black;
	font-family: "Source Sans Pro", "Courier New", Courier, monospace;
	font-size: 12px;
	color: #DDD;
}

.mobileDivider{
	display:none;
}

#smpowered-by{
	display:none;
}

#validationSummary{
	font-size:1.2em;
}

.login-controls-lower {
	width: 91%;
	background-color: #000;
	padding-left: 25px;
	padding-top: 25px;
}

@media only screen and (max-device-width:765px) {
	#login-fields .fields.password input[type=submit] {
		width: 150px;
		-webkit-appearance: none;
		color: #fff;
		cursor: pointer;
		font-weight: normal;
	}

	div.slider {
		display:none;
	}
	/*div.loginbox{
		display:block;
		height:100%;
		width:85%;
	}*/
	#smpowered-by{
		display:inline;
		float:right;
	}
	.loginbox {
		position: initial;
		left: 0;
		top: 0;
		margin-left: 0px;
		margin-top: 0px;
		height:100%;
		width:85%;
		background-color: #000;
		color: #fff;
	}
	/*div.altloginbox{
		display:block;
		height:100%;
		width:85%;
	}*/
	div.login-controls{
		top:20%;
		left:10%;
	}
	div.login-controls, #login-fields .fields.username input[type=text], #login-fields .fields.password input[type=password]{
		width:85%;
		height:70px;
		font-size:1.5em;
	}
	#login-fields .fields input{
		font-size:1.5em;
	}
	.loginVersionInfo{
		font-size:1.5em;
	}
	.login-controls-upper{
		width:87%;
		height:500px;
		padding: 25px 34px 0 25px
	}
	
	#powered-by{
		width:40%;
		display:none;
	}
	.mobileDivider{
		display:block;
	}
	.subtext{
		font-size:1.5em;
	}
	#system-logo {
		width: 40%;
		height: 160px;
		background-image: url(/img/login/skin_logo.png);
		background-repeat: no-repeat;
		background-position: right bottom;
	}
	.loginVersionInfo {
		display:none;
	}
}