/* CSS Document */
/* Login Container (default to float:right) */
#loginContainer {
    position: absolute;
    right: 0px;
    font-size: 12px;
    top: 0px;
}

/* Login Button */
#loginButton { 
    float:right;
    position:relative;
    z-index:30;
}
#loginButton:hover{ 
   text-decoration:none;
   display:block;
}
/* Login Button Text */
#loginButton span {
    position: relative;
    cursor: pointer;
    padding: 0 35px 0 25px;
    color: #555;
    display: block;
    font-size: 14px;
    line-height: 48px;
    background-color: #1c8dbf;
}
#loginButton span:hover{
	text-decoration:underline;
}
#loginButton span:after {
	position: absolute;
    right: 17px;
    top: 0px;
    font-family: FontAwesome;
    content: "\f002";
    font-size: 15px;
}

/* Login Box */
#loginBox {
    position: absolute;
    top: 47px;
    right: 0;
    display: none;
    z-index: 100000;
}

/* If the Login Button has been clicked */    
#loginButton.active {
    background: #333;
	color:#483592;
}

#loginButton.active span {
    background-position: 53px -76px;
    color: #483592;
}

/* A Line added to overlap the border */
#loginButton.active em {
    position:absolute;
    width:100%;
    height:1px;
    background:#d2e0ea;
    bottom:-1px;
}

/* Login Form */
#loginForm {
    width: 300px;
    background: #483592;
    padding: 1.8em;
}

#loginForm fieldset {
    display:block;
    border:0;
    padding:0;
}
#loginForm #checkbox {
	width: auto;
    margin: 6px 5px 0 0;
    float: left;
    padding: 0;
    border: 0;
    height: auto;
}
#body label {
    color: #FFF;
    margin: 7px 0 0 0;
    display: block;
    float: left;
    font-size: 14px;
}
#loginForm #body fieldset label {
    display:block;
    float:none;
    margin:0 0 6px 0;
}

/* Default Input */
#loginForm input {
	width: 100%;
    border: none;
    color: #3a454d;
    font-size: 14px;
    height: 38px;
}
.searchFeald{
    border: medium none;
    padding: 0.5em 0.8em 0.5em 0.8em;
    width: 100%;	
}
.username{
    background: #fff url("../images/login.png") no-repeat scroll 14px 11px;
    border: medium none;
    padding: 0.5em 0.8em 0.5em 2.8em;
    width: 100%;	
}
.password{
    background: #fff url("../images/lock.png") no-repeat scroll 14px 11px;
    border: medium none;
    padding: 0.5em 0.8em 0.5em 2.8em;
    width: 100%;
}
/* Sign In Button */
#loginForm #login {
    width: auto;
    float: left;
    background: #ea8915;
    color: #fff;
    font-size: 14px;
    font-weight: bold;
    text-transform: uppercase;
    padding: 7px 20px 6px 20px;
    box-shadow: none;
    -moz-box-shadow: none;
    -webkit-box-shadow: none;
    margin: 0 12px 0 0;
    cursor: pointer;
}
#loginForm #login:hover{
    background:#f97115;
}
/* Forgot your password */
#loginForm span {
    text-align:center;
    display:block;
    padding:7px 0 4px 0;
}

#loginForm span a {
    color:#FFF;
    font-size:14px;
}
#loginForm span a:hover {
    text-decoration:underline;
}
input:focus {
    outline:none;
}

/* Login Button */
#logoutButton { 
    float:right;
    position:relative;
    z-index:30;
}
#logoutButton:hover{ 
   text-decoration:none;
   display:block;
}
.person{
	float:left;
	width:40px;
	height:40px;
	border-radius:100%;
	margin-top:25px;
}
/* Login Button Text */
#logoutButton{
	background: #f7346b;
    color: #FFF;
	padding: 0 0 0 15px;	
}
#logoutButton span {
	position:relative;
    cursor:pointer;
	padding: 0 30px 0 10px;
	display:block;
	float:left;
	font-size:16px;
	line-height:90px;
}
#logoutButton span:hover{
	text-decoration:underline;
}
#logoutButton span:after {
	position: absolute;
    right: 15px;
    top: 38px;
    font-family: FontAwesome;
    content: "\f107";
    line-height: 14px;
}

/* Login Box */
#logoutBox {
    position:absolute;
    top:90px;
    right:0;
    display:none;
    z-index:29;
}

/* If the Login Button has been clicked */    
#logoutButton.active {
    border-radius:3px 3px 0 0;
}

#logoutButton.active span {
    background-position:53px -76px;
}

/* A Line added to overlap the border */
#logoutButton.active em {
    position:absolute;
    width:100%;
    height:1px;
    background:#d2e0ea;
    bottom:-1px;
}

/* Login Form */
#logoutForm {
	width: 350px;
    background: #f7346b;
    padding: 1em;
}

#logoutForm fieldset {
    margin:0 0 12px 0;
    display:block;
    border:0;
    padding:0;
}
#logoutForm #checkbox {
    width:auto;
    margin: 7px 3px 0 0;
    float:left;
    padding:0;
    border:0;
    *margin:-3px 9px 0 0; /* IE7 Fix */
}

