/*custom font*/
@import url(https://fonts.googleapis.com/css?family=Merriweather+Sans);
@import url(https://fonts.googleapis.com/css?family=Lato:900);
@import url(https://fonts.googleapis.com/css?family=Merriweather:regular,700);

* {margin: 0; padding: 0;}

html, body {min-height: 100%;}

.nodisplay {
	display: none;
}

#banner, #banner2 {
    background:#2985c6;
    background:-moz-linear-gradient(top,#2985c6 0,#003e65 100%);
    background:-webkit-gradient(linear,left top,left bottom,color-stop(0%,#2985c6),color-stop(100%,#003e65));
    background:-webkit-linear-gradient(top,#2985c6 0,#003e65 100%);background:-o-linear-gradient(top,#2985c6 0,#003e65 100%);
    background:-ms-linear-gradient(top,#2985c6 0,#003e65 100%);
    background:linear-gradient(to bottom,#2985c6 0,#003e65 100%);
    filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#2985c6',endColorstr='#003e65',GradientType=0);
}

#forgottext, #tosdiv {
    cursor: pointer;
}

#forgottext:hover, #tosdiv2:hover {
    background-color: #0f9d58;
}

#signup, #login {
	margin-top: 5px;
}

#required {
    color: red;
}

#signupimage, #loginimage {
	float: right;
	margin-right: 5px;
	cursor: pointer;
}

input {
	margin-top: 5px;
}
.reqlabel:before{
    content:"*" ;
    color:red    
    }
label {
    color: black;
    font-size: 14px;
    display: inline-block;
    margin-left: -200px;
    width: 400px;
    text-align: right;
    margin-right: 10px;
    font-weight: normal;
}​

* {margin: 0; padding: 0;}

html, body {min-height: 100%;}

body {
	text-align: center;
	background: white;	
	font-family: "Helvetica Neue", sans-serif;
}

p {
	font-size: 20px;
}

p2 {
    color: black;
	font-size: 14px;
	font-weight: normal;
}

h2, h3{
	font-size: 36px;
    font-weight: bold;
}

h4 {
	font-size: 24px;
	font-weight: normal;
}

h6 {
	font-size: 14px;
	font-weight: normal;
}

input[type="text"], select, input[type="email"], input[type="password"] {
    box-shadow: rgba(0,0,0, 0.15) 0px 0px 8px;
    outline: 0;
    border: solid 1px #b7b7b7;
    border-radius: 3px;
    transition: all 0.2s linear;
    font-size: 13px;
    color: #222;
    padding-left: 5px;
    height: 24px;
    font-size: 13px;
}

input[type="text"]:hover, select:hover, input[type="email"]:hover, input[type="password"]:hover {
    border-color: #499DF5;
    box-shadow: 0px 0px 8px rgba(68, 157, 245, .4)''
}

input[type="text"]:focus, select:focus, input[type="email"]:focus, input[type="password"]:focus {
    border-color: #499DF5;
    box-shadow: 0px 0px 8px rgba(68, 157, 245, .8);
}

option {
	padding: 5px 5px 5px 5px;
}

#topbar {
	height: 60px;
	width: 100%;
	background-color: #1a263c;
	z-index: -1;
	box-shadow:#19343d 0px 1px 2px;
	margin: 0 0 0 0;
}

#sparklogo {
	float:left;
    margin-top: 17px;
	padding-left: 10px;
}

/* button css below */
.btn{
    -moz-border-radius:10px;
    -webkit-border-radius:10px;
    border-radius:3px;
    color:#fff;  
    padding:10px;
    font-size:18px;
    font-weight:bold;
    text-align:center;
    width:150px;    
    border: 0px;
    cursor: pointer;
    /*
        CSS3 gradients for webkit and mozilla browsers,
        fallback color for the rest:
    */
    background: #0e7ded;
    background-image: linear-gradient(to bottom, #6eb1f4, #0e7ded);
}
.btn:hover{
    /* Lighter gradients for the hover effect */
    text-decoration:none;
    background: #0e58ed;
    background-image: linear-gradient(to bottom, #6e9af4, #0e58ed);
}

.btn:focus {
    outline:0;
}

.btngreen{
    -moz-border-radius:10px;
    -webkit-border-radius:10px;
    border-radius:3px;
    color:#fff;  
    padding:10px;
    font-size:18px;
    font-weight:bold;
    text-align:center;
    width:150px;
    border: 0px;
    cursor: pointer;
    /*
        CSS3 gradients for webkit and mozilla browsers,
        fallback color for the rest:
    */
    background: #0f9d58;
    background-image: linear-gradient(to bottom, #57ba8a, #0f9d58);
}
.btngreen:hover{
    /* Lighter gradients for the hover effect */
    text-decoration:none;
    background: #0d8d4f;
    background-image: linear-gradient(to bottom, #55af83, #0d8d4f);
}

.btngreen:focus {
    outline:0;
}

.validation {
    width: 300px;
    border: 1px solid;
    margin: 10px auto;
    padding:15px 10px 15px 10px;
    background-repeat: no-repeat;
    background-position: 10px center;
    color: #D63301;
    background-color: #FFCCBA;
}

.validationset {
    width: 240px;
    position: absolute;
    left: 10px;
    top: 75px;
    border: 1px solid;
    margin: 10px auto;
    padding:15px 10px 15px 10px;
    background-repeat: no-repeat;
    background-position: 10px center;
    color: #D63301;
    background-color: #FFCCBA;
}

.notifyset {
    width: 240px;
    position: absolute;
    right: 10px;
    top: 75px;
    border: 1px solid;
    margin: 10px auto;
    padding:15px 10px 15px 10px;
    background-repeat: no-repeat;
    background-position: 10px center;
    color: #9F6000;
    background-color: #FEEFB3;
}