/*
CSS RESET
http://meyerweb.com/eric/tools/css/reset/
v2.0 | 20110126
License:  none (public domain)
 */

/* CSS Animations */



@keyframes "login" {
 0% {
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
   	filter: alpha(opacity=0);
   	opacity: 0;
   	margin-top: -50px;
 }
 100% {
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
   	filter: alpha(opacity=100);
   	opacity: 1;
   	margin-top: -75px;
 }

}

@-moz-keyframes login {
 0% {
   filter: alpha(opacity=0);
   opacity: 0;
   margin-top: -50px;
 }
 100% {
   filter: alpha(opacity=100);
   opacity: 1;
   margin-top: -75px;
 }

}

@-webkit-keyframes "login" {
 0% {
   filter: alpha(opacity=0);
   opacity: 0;
   margin-top: -50px;
 }
 100% {
   filter: alpha(opacity=100);
   opacity: 1;
   margin-top: -75px;
 }

}

@-ms-keyframes "login" {
 0% {
   -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
   filter: alpha(opacity=0);
   opacity: 0;
   margin-top: -50px;
 }
 100% {
   -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
   filter: alpha(opacity=100);
   opacity: 1;
   margin-top: -75px;
 }

}

@-o-keyframes "login" {
 0% {
   filter: alpha(opacity=0);
   opacity: 0;
   margin-top: -50px;
 }
 100% {
   filter: alpha(opacity=100);
   opacity: 1;
   margin-top: -75px;
 }

}



/* Main CSS */
* { -moz-box-sizing: border-box; -webkit-box-sizing: border-box; box-sizing: border-box; }


#slick-login {
	width: 220px;
	height: 155px;
	position: relative;
	left: 110px;
	top: 75px;
	margin-left: -110px;
	margin-top: -75px;
    margin-bottom: +80px;

	-webkit-animation: login 1s ease-in-out;
	-moz-animation: login 1s ease-in-out;
	-ms-animation: login 1s ease-in-out;
	-o-animation: login 1s ease-in-out;
	animation: login 1s ease-in-out;
}

#slick-login label {
	display: none;
}




*::-webkit-input-placeholder { color:#7f7f7f; }
*:-moz-placeholder { color:#7f7f7f;}
*::-moz-placeholder { color:#7f7f7f;}
*:-ms-input-placeholder { color:#7f7f7f;}
   
#slick-login input[type="text"],#slick-login input[type="password"] {
	width: 100%;
	height: 40px;
	positon: relative;
	margin-top: 7px;
	font-size: 14px;

	outline: none;
	border: 1px solid rgba(0, 0, 0, .49);

	padding-left: 20px;
	
	-webkit-background-clip: padding-box;
	-moz-background-clip: padding-box;
	background-clip: padding-box;
	border-radius: 6px;

	background-image: -webkit-linear-gradient(bottom, #FFFFFF 0%, #F2F2F2 100%);
	background-image: -moz-linear-gradient(bottom, #FFFFFF 0%, #F2F2F2 100%);
	background-image: -o-linear-gradient(bottom, #FFFFFF 0%, #F2F2F2 100%);
	background-image: -ms-linear-gradient(bottom, #FFFFFF 0%, #F2F2F2 100%);
	background-image: linear-gradient(bottom, #FFFFFF 0%, #F2F2F2 100%);

	-webkit-box-shadow: inset 0px 2px 0px #d9d9d9;
	box-shadow: inset 0px 2px 0px #d9d9d9;

	-webkit-transition: all .1s ease-in-out;
	-moz-transition: all .1s ease-in-out;
	-o-transition: all .1s ease-in-out;
	-ms-transition: all .1s ease-in-out;
	transition: all .1s ease-in-out;
    

    

    
}


#slick-login input[type="text"]:focus,#slick-login input[type="password"]:focus {
	-webkit-box-shadow: inset 0px 2px 0px #a7a7a7;
	box-shadow: inset 0px 2px 0px #a7a7a7;
}

#slick-login input:first-child {
	margin-top: 0px;
}



#slick-login input[type="submit"] {
	width: 100%;
	height: 50px;
	margin-top: 7px;
	color: #fff;
	font-size: 18px;
	font-weight: bold;
	text-shadow: 0px -1px 0px #5b6ddc;
	outline: none;
	border: 1px solid rgba(0, 0, 0, .49);

	-webkit-background-clip: padding-box;
	-moz-background-clip: padding-box;
	background-clip: padding-box;
	border-radius: 6px;

	background-color: #ACC668; /* #5466da  #768ee4  */
	background-image: -webkit-linear-gradient(bottom, #ACC668 0%, #ACC668 100%);
	background-image: -moz-linear-gradient(bottom, #ACC668 0%, #ACC668 100%);
	background-image: -o-linear-gradient(bottom, #ACC668 0%, #ACC668 100%);
	background-image: -ms-linear-gradient(bottom, #ACC668 0%, #ACC668 100%);
	background-image: linear-gradient(bottom, #ACC668 0%, #ACC668 100%);
	
    /*#9ab1ec */
	-webkit-box-shadow: inset 0px 1px 0px #0;
	box-shadow: inset 0px 1px 0px #0;
	
	cursor: pointer;

	-webkit-transition: all .1s ease-in-out;
	-moz-transition: all .1s ease-in-out;
	-o-transition: all .1s ease-in-out;
	-ms-transition: all .1s ease-in-out;
	transition: all .1s ease-in-out;
}

#slick-login input[type="submit"]:hover {
	background-color: #6B852A; /* #5f73e9 #859bef  */
	background-image: -webkit-linear-gradient(bottom, #6B852A 0%, #6B852A 100%);
	background-image: -moz-linear-gradient(bottom, #6B852A 0%, #6B852A 100%);
	background-image: -o-linear-gradient(bottom, #6B852A 0%, #6B852A 100%);
	background-image: -ms-linear-gradient(bottom, #6B852A 0%, #6B852A 100%);
	background-image: linear-gradient(bottom, #6B852A 0%, #6B852A 100%);
/*#aab9f4*/
	-webkit-box-shadow: inset 0px 1px 0px #0;
	box-shadow: inset 0px 1px 0px #0;
	margin-top: 10px;
}

#slick-login input[type="submit"]:active {
	background-color: #B1D061;  /* #7588e1  #7184df */
	background-image: -webkit-linear-gradient(bottom, #B1D061 0%, #B1D061 100%);
	background-image: -moz-linear-gradient(bottom, #B1D061 0%, #B1D061 100%);
	background-image: -o-linear-gradient(bottom, #B1D061 0%, #B1D061 100%);
	background-image: -ms-linear-gradient(bottom, #B1D061 0%, #B1D061 100%);
	background-image: linear-gradient(bottom, #B1D061 0%, #B1D061 100%);
/* 93a9e9 */
	-webkit-box-shadow: inset 0px 1px 0px #0;
	box-shadow: inset 0px 1px 0px #0;
}