/* make keyframes that tell the start state and the end state of our object */
         @-webkit-keyframes fadeIn { from { opacity:0; } to { opacity:1; } }
         @-moz-keyframes fadeIn { from { opacity:0; } to { opacity:1; } }
         @keyframes fadeIn { from { opacity:0; } to { opacity:1; } }
      
		

/* Stylesheet */


/* Imports */



/* Selections */

::selection {
 	color: #fff;
 	text-shadow: none;
 	background: #444;
}

::-moz-selection {
 	color: #fff;
 	text-shadow: none;
 	background: #444;
}

/* Basics */

html, body {
	width: 100%;
	height: 100%;
	font-family: "Helvetica Neue", Helvetica, sans-serif;
	color: #444;
	-webkit-font-smoothing: antialiased;
	background: #FFFFFF;
	overflow: hidden;
}


p {
display: block;
-webkit-margin-before: 1em;
-webkit-margin-after: 1em;
-webkit-margin-start: 0px;
-webkit-margin-end: 0px;
}



.pageloadFadeIn {
     opacity:0; /* make things invisible upon start */
     -webkit-animation:fadeIn ease-in 1; /* call our keyframe named fadeIn, use animattion ease-in and repeat it only 1 time */
     -moz-animation:fadeIn ease-in 1;
     animation:fadeIn ease-in 1;

     -webkit-animation-fill-mode:forwards; /* this makes sure that after animation is done we remain at the last keyframe value (opacity: 1)*/
     -moz-animation-fill-mode:forwards;
     animation-fill-mode:forwards;

     -webkit-animation-duration:0.2s;
     -moz-animation-duration:0.2s;
     animation-duration:0.2s;
    
}

.mainDiv{
    
    height: 99%;
    left: 0;
    opacity: 0;
    overflow-x: hidden;
    position: fixed;
    top: 0;
    width: 100%;
    border : 1px solid none;
}
form {
	margin: 0 auto;
	margin-top: 20px;
}

label {
	color: #555;
	display: inline-block;
	margin-left: 18px;
	padding-top: 5px;
	font-size: 15px;
}
span{
	font-size: 22px;
	color : #FFF;
}

p a {
	font-size: 11px;
	color: #aaa;
	float: right;
	margin-top: -13px;
	margin-right: 20px;
	-webkit-transition: all .4s ease;
	-moz-transition: all .4s ease;
	transition: all .4s ease;
}

p a:hover {
	color: #555;
}

input {
	font-family: "Helvetica Neue", Helvetica, sans-serif;
	font-size: 12px;
	outline: none;
}


hr {
    background-color: #CDCDCD;
    border: medium none;
    height: 2px;
    width: 97%;	
}

footer{
	bottom : 5px;
	position : fixed;
	width :100%;
	text-align : center;
}

.supportHeader{
	height: 50px;
	width: 100%;
	background-color: #119DC9;
	color: #FFF;
	font-size : 15px;
	display: block;
	position: absolute;
}

.headerTxt{
	border: 1px none;
    color: #FFFFFF;
    display: block;
    font-size: 20px;
    margin-left: 10%;
    text-align: center;
    line-height :50px;
    width: 80%;	
    padding-top: 0px;
}

.headerTxtWrapper{
	  border: 1px solid none;
    display: block;
    height: 50px;
    margin-left: 10%;
    position: absolute;
    width: 90%;
    padding-top: 0px;
    
}
.supportImg{
	width : 90%;
	margin-left:5%;
	margin-top:2%;
}

.redirectToLogin{
font-size: 15px;
color: #FFF;
border: 1px none;
text-decoration: none;
}


.redirectionDIV{
 border: 1px none;
    height: 50px;
    
    position: relative;
    width: 10%;	 
    display: block;
    position: absolute;
}


.firstLevelLabel{
	color: #000000;
    font-size: 24px;
    padding-bottom: 2%;
    padding-top: 2%;
	
}

.secondLevelLabel{
	color: #119DC9;
	font-size: 18px;
	padding-bottom :1%;
	font-weight: bold;
	
}

.normalText{
	font-size: 18px;
	padding-bottom: 1%;
}
.loginBtn{
	position:absolute;
    font-size: 18px;
    margin-left: 25px;
    line-height: 50px;
    
}
.redirectionArrow{
	height:22px;
	margin-top: 0.95em;
	border: 1px none;
	position: absolute;
}
.redirectArrowWrapper{
	position: absolute;
}
.supportInfo{
	  
    margin-left: 5%;
    padding-top: 2%;
    width: 340px;
}

.contact_usLbl{
	  font-size: 20px;
    font-weight: bold;
    margin-bottom: 0;
    margin-left: 60px;
    margin-top: 15px;
}