/*-------LOGIN STARTS HERE -------*/

/* Login Container (default to float:right) */
#loginContainer {
    position:relative;
    float:right;
    font-size:12px;
	top: 18px;
	
}

/* Login Button */
#loginhover:hover {
	color: #c11731;
}

#loginButton { 
    display:inline-block;
    float:right;
	height: 30px;
    /*background:#c9c9c9;
    border:1px solid #899caa; */
    border-radius:3px;
    -moz-border-radius:3px;
    position:relative;
    z-index:30;
    cursor:pointer;
}

/* Login Button Text */
#loginButton span {
    color:#445058; 
    font-size:13px; 
	line-height: 16px;
    padding:7px 30px 9px 10px;
    background:url(../images/loginArrow.png) no-repeat 45px 7px;
    display:block
	
}

#loginButton:hover {
    /*background:url(../images/buttonbgHover.png) repeat-x;*/
	text-decoration: none;
	color: #ff0;
	/*background:#c9c9c9;*/
	
}

/* Login Box */
#loginBox {
    position:absolute;
    top:34px;
    right:0;
    display:none;
    z-index:29;
}

/* If the Login Button has been clicked */    
#loginButton.active {
    border-radius:3px 3px 0 0;
}

#loginButton.active span {
    background-position:45px -76px;
}

/* A Line added to overlap the border */
/*#loginButton.active em {
    position:absolute;
    width:100%;
    height:1px;
    background:#d2e0ea;
    bottom:-1px;
}*/

/* Login Form */
#loginForm {
	width:248px; 
    border:1px solid #445058;
    border-radius:3px 0 3px 3px;
    -moz-border-radius:3px 0 3px 3px;
    margin-top:-1px;
    background:#e1e1e1;
    padding:6px;
	
	
}

#loginForm fieldset {
    margin:0 0 12px 0;
    display:block;
    border:0;
    padding:0;
}

fieldset#body {
    background:#fff;
    border-radius:3px;
    -moz-border-radius:3px;
    padding:10px 13px;
    margin:0;
}

#loginForm #checkbox {
    width:auto;
    margin:1px 9px 0 0;
    float:left;
    padding:0;
    border:0;
    *margin:-3px 9px 0 0; /* IE7 Fix */
}

#body label {
    color:#3a454d;
    margin:9px 0 0 0;
    display:block;
    float:left;
	
}

#loginForm #body fieldset label {
	font-family: 'Arial', sans-serif;
	display:block;
    float:none;
    margin:0 0 6px 0;
	
}

/* Default Input */
#loginForm input {
	width:92%;
    border:1px solid #899caa;
    border-radius:3px;
    -moz-border-radius:3px;
    color:#3a454d;
    padding:8px 8px;
    box-shadow:inset 0px 1px 3px #bbb;
    -webkit-box-shadow:inset 0px 1px 3px #bbb;
    -moz-box-shadow:inset 0px 1px 3px #bbb;
    font-size:12px;
	
	
}

/* Sign In Button */
#loginForm #login {
	text-align: center;
    width: 75%;
    background:#ff0000 url(../images/loginbuttonbg.png) repeat-x;
    color:#fff;
    padding:7px 0px 8px 0px;
    border:1px solid #ff0000;
	margin-bottom: 10px;
    box-shadow:none;
    -moz-box-shadow:none;
    -webkit-box-shadow:none;
    cursor:pointer;
    *padding:7px 2px 8px 2px; /* IE7 Fix */
}

#loginForm #login:hover {
	background:#ff0000 url(../images/loginbuttonbg2.png) repeat-x;
	
}

#loginForm #login:active {
	background:#ff0000 url(../images/loginbuttonbg3.png) repeat-x;
	
}

/* Forgot your password */
#loginForm span {
    text-align:center;
    display:block;
    padding:7px 0 4px 0;
}

#loginForm span a {
    color:#3a454d;
    text-shadow:1px 1px #fff;
    font-size:12px;
	text-decoration: none;
}

#loginForm span a:hover {
    color:#b5b5b5;
    
}

input:focus {
    outline:none;
}


	
