/*
CSS layout for Login/Logout page
*/
#login,#logout {
    color: #588DB9;
    font-family: arial, verdana, sans-serif;
    font-style: normal;
    text-align: center;
    margin: 0;
}

#login img,#logout img {
    border: none;
}


#login #loginForm {
    padding-top: 10px;
}

#login input.login_field {
    width: 166px;
    border: none;
    height: 18px;
    padding: 4px;
    background-image: url('../images/login_input_bg.png');
    background-repeat: no-repeat;
    background-position: center;
    outline: none; /*For Chrome not to put automatic orange borders on focus*/
}

#login input.login_field:focus {
    background-image: url('../images/login_input_bg_hover.png');
}

#login .login_info,#logout .login_info {
    padding-top: 10px;
    color: #000000;
    font-size: 17px;
    font-weight: normal;
}

#logout .login_info.logout {
    padding-top: 270px;
}

#login .credential {
    font-size: 12px;
}

#login #logintable {
    margin: 0 auto;
    border: none;
    background: none;
}

#login #logintable tr {
    height: 30px;
}

#login #content {
    width: 800px;
    height: 400px;
    text-align: center;
    margin: 0 auto;
    background-color: white;
    border: 1px solid #d7d7d7;
}

#login #login_logocont {
    padding-top: 50px;
}

#login #login_product_logo {
    background: url('../images/PULScore-logo-with-Trade-Mark.png') no-repeat;
    background-position: center;
    width: 600px;
    height: 110px;
    margin: 0 auto;
}

#login #copyright {
    text-align: right;
    margin-top: -25px;
    margin-right: 130px;
    font-size: 9px;
}

#logout #content {
    width: 1040px;
    height: 600px;
    text-align: center;
    margin: 0 auto;
    background-color: #ffffff;
    border: 1px solid #d7d7d7;
}

#logout #return_login_page p {
    color: #000000;
    text-decoration: underline;
    font-size: 17px;
    margin: 0 auto;
    width: 200px;
}

#logout #return_login_page p:hover {
    color: #D93F87;
}

