/*-----Demo Styles IMPORTANT - YOU CAN REMOVE THE FOLLOWING STYLES WHEN USING IN YOUR PROJECTS -----*/

body {
	margin:0;
	outline:none;
	font-size:12px;
}
#header {
	/* background:#5599bb; */
	padding:60px;
}
h1 {
	float:left;
	font-family: Arial, Helvetica, sans-serif;
	color:#fff;
	font-weight:bold;
	font-size:42px;
	margin:0;
	padding:0;
}


/*-----Login container-----*/

#login {
	width:305px;
	float:left;
	outline:none;
}

/*-----Position and hide the dropdown-----*/

.drop {
	display:none;
	position: absolute;
	/*z-index:1000; */
	top:-110px;
	/* -webkit-box-shadow: 0 2px 4px 0 rgba(0,0,0,.4);
	-moz-box-shadow:  0 2px 4px 0 rgba(0,0,0,.4);
	box-shadow:  0 2px 4px 0 rgba(0,0,0,.4); */
}

/*-----Dropdown form element-----*/

form {
	/* border:solid 4px #d7e5ee;*/
	width:305px;
	/*padding:10px;*/
/*	-webkit-border-radius: .3em 0 .3em .3em;
	-moz-border-radius: .3em 0 .3em .3em;
	border-radius: .3em 0 .3em .3em; */
	/* background: #f3f8fc; */
	clear:both;
/*	-webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, .2);
	-moz-box-shadow: 0 1px 2px rgba(0, 0, 0, .2);
	box-shadow: 0 1px 2px rgba(0, 0, 0, .2); */
	margin-top:530px;
}

/*-----Signin link-----*/

.signin {
	/* background: url(../images/arrow.gif) no-repeat right #fff; */
	/*padding:10px 25px 10px 10px;
	font-family: Helvetica, Arial, sans-serif;
	font-size:14px;
	font-weight:bold;
	color:#256483;
	text-decoration:none;*/
	/* margin-left:272px; */
/*	-webkit-border-radius: .3em;
	-moz-border-radius: .3em;
	border-radius: .3em; */
}
/*.signin:hover {
	background: url(../images/arrow.hover.gif) no-repeat right #b5ccde;
	color:#fff; 
}*/

/*-----Signin clicked state-----*/

.signinclick {
/*	background: url(../images/arrow.clicked.gif) no-repeat right #d7e5ee;
	padding:10px 25px 10px 10px;
	font-family: Helvetica, Arial, sans-serif;
	font-size:14px;
	font-weight:bold;
	color:#256483;
	text-decoration:none;
	margin-left:272px;
	-webkit-border-radius: .3em .3em 0 0;
	-moz-border-radius: .3em .3em 0 0;
	border-radius: .3em .3em 0 0;*/
}
.signinclick:hover {
	/*background: url(../images/arrow.clicked.gif) no-repeat right #d7e5ee;*/
}

/*-----Submit Button-----*/

.submit {
	display:block;
	width:auto;
	float:right;
	margin-top:10px;
	border:solid 1px #cb8604;
	padding:10px;
	background:#ffc800;
	font-family: Helvetica, Arial, sans-serif;
	font-size:14px;
	font-weight:bold;
	color:#40361a;
	text-decoration:none;
	background: -webkit-gradient(linear, left top, left bottom, from(#ffc800), to(#ffa800));
	background: -moz-linear-gradient(top, #ffc800, #ffa800);
 	filter:  progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffc800', endColorstr='#ffa800');
	-webkit-border-radius: .3em;
	-moz-border-radius: .3em;
	border-radius: .3em;
}
.submit:hover {
	-webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, .2);
	-moz-box-shadow: 0 1px 2px rgba(0, 0, 0, .2);
	box-shadow: 0 1px 2px rgba(0, 0, 0, .2);
	background: -webkit-gradient(linear, left top, left bottom, from(#ffc800), to(#e89900));
	background: -moz-linear-gradient(top, #ffc800, #e89900);
 	filter:  progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffc800', endColorstr='#e89900');
}

/*-----Inputs-----*/


input {
	border:solid 1px #ccc;
	padding:15px;
	background:#fff;
	width:295px;
	-webkit-border-radius: .3em;
	-moz-border-radius: .3em;
	border-radius: .3em;
	font-family: Helvetica, Arial, sans-serif;
	font-size:18px;
	font-weight:bold;
	color:#666;
}
input:focus {
	border:solid 1px #ebc77e;
	padding:15px;
	background: #f8f3c7;
	
	   -webkit-transition:background .2s ease-in;
   -moz-transition:background .2s ease-in;
   -o-transition:background .2s ease-in;
   transition:background .2s ease-in;
}
label {
	display:block;
	font-family: Helvetica, Arial, sans-serif;
	font-size:14px;
	font-weight:bold;
	color:#666;
	margin:10px 0 3px 0;
}


/*-----Checkbox and checkbox labels-----*/

.remember {
	float:left;
	margin-top:20px;
}
.checkbox {
	margin:0 5px 0 0;
	padding:0;
	width:auto;
	background:none;
	border:none;
}
#login p {
	font-family: Helvetica, Arial, sans-serif;
	font-size:12px;
	color:#666;
	clear:both;
}
#login p a {
	color:#0784b3;
	font-weight:bold;
	text-decoration:none;
}
#login p a:hover {
	color:#127296;
}


/*-----Tooltips-----*/

.tooltip span {
	display:none;
	margin-left:8px;
}
.tooltip:hover span {
	display:inline;
	position:absolute;
	background: url(../images/tip.gif) no-repeat left #333;
	color:#fff;
	padding:6px 8px 6px 20px;
	font-size:12px;
	opacity:0.8;
	font-weight:bold;
}