﻿




/********************************      Basic Structure      ********************************/

html
{
    font-size: 100%;
    height: 100%;
    margin-bottom: 1px; /* Always show a scrollbar to avoid jumping when the scrollbar appears  */
    overflow-x: hidden;
    overflow-y: hidden;
}


body
{
    color: #555;
    background-color: #333333;
    font-size: 12px;
    padding: 0px;
    margin: 0px;
    font-family: 微软雅黑;
    font-size: 12px;
}

#body-wrapper
{
    background-color: #232323;
}

/********************************      Elements styling      ********************************/

h1, h2, h3, h4, h5, h6
{
    color: #222;
    font-weight: bold;
}

h1
{
    font-size: 31px;
    font-weight: bold;
    color: #fff;
    position: absolute;
    top: -1000px; /* Remove this line and delete the logo (in the HTML) if you don't want an image as a logo */
}

h2
{
    font-size: 26px;
    padding: 0 0 10px 0;
}
h3
{
    font-size: 17px;
    padding: 0 0 10px 0;
}
h4
{
    font-size: 16px;
    padding: 0 0 5px 0;
}
h5
{
    font-size: 14px;
    padding: 0 0 5px 0;
}
h6
{
    font-size: 12px;
    padding: 0 0 5px 0;
}


a
{
    color: #57a000;
    text-decoration: none;
}
a:hover
{
    color: #000;
}
a:active
{
    color: #777;
}
a:focus
{
    outline: 1px;
}

strong
{
    font-weight: bold;
    color: #333;
}

small
{
    font-size: 0.85em;
}

pre
{
}

p
{
    padding: 5px 0 10px 0;
    line-height: 1.6em;
}

/********************************      General Classes      ********************************/

.clear
{
    clear: both;
}

.align-left
{
    float: left;
}

.align-right
{
    float: right;
}

/************ Button ************/
.button
{
    display: inline-block;
    background: #459e00 !important;
    border: none !important;
    padding: 4px 7px 4px 7px !important;
    color: #fff !important;
    font-size: 12px !important;
    cursor: pointer;
    font-weight: bold;
}




a.remove-link
{
    color: #bb0000;
}

a.remove-link:hover
{
    color: #000;
}


/*************** Forms ***************/

form label
{
    display: block;
    padding: 0 0 10px;
    font-weight: bold;
}

form fieldset legend
{
    font-weight: bold;
    margin-bottom: 10px;
    padding-top: 10px;
}

form p small
{
    font-size: 0.75em;
    color: #777;
}


form input.text-input, form select, form textarea, form .wysiwyg
{
    padding: 6px;
    font-size: 13px;
    background: #fff url('../Image/bg-form-field.gif') top left repeat-x;
    border: 1px solid #d5d5d5;
    color: #333;
}

form .small-input
{
    width: 25% !important;
}

form .medium-input
{
    width: 50% !important;
}

form .large-input
{
    width: 97.5% !important;
    font-size: 16px !important;
    padding: 8px !important;
}

form textarea
{
    width: 97.5% !important;
}

form select
{
    padding: 4px;
    background: #fff;
}

form input[type="checkbox"], form input[type="radio"]
{
    padding: 0;
    background: none;
    border: 0;
}

/*************** Notifications ***************/

.notification
{
    position: relative;
    margin: 0 0 15px 0;
    padding: 0;
    border: 1px solid;
    background-position: 10px 11px !important;
    background-repeat: no-repeat !important;
    font-size: 13px;
    width: 99.8%;
}


.attention
{
    background: #fffbcc url('../Image/exclamation.png') 10px 11px no-repeat;
    border-color: #e6db55;
    color: #666452;
}

.information
{
    background: #dbe3ff url('../Image/information.png');
    border-color: #a2b4ee;
    color: #585b66;
}

.success
{
    background: #d5ffce url('../Image/tick_circle.png');
    border-color: #9adf8f;
    color: #556652;
}

.error
{
    background: #ffcece url('../Image/cross_circle.png');
    border-color: #df8f8f;
    color: #665252;
}

.notification div
{
    display: block;
    font-style: normal;
    padding: 10px 10px 10px 36px;
    line-height: 1.5em;
}

.notification .close
{
    color: #990000;
    font-size: 9px;
    position: absolute;
    right: 5px;
    top: 5px;
}

/* Notification for form inputs */

.input-notification
{
    background-position: left 2px;
    background-repeat: no-repeat;
    padding: 2px 0 2px 22px;
    background-color: transparent;
    margin: 0 0 0 5px;
}

/* Notification for login page */

#login-wrapper #login-content .notification
{
    border: 0;
    background-color: #141414;
    color: #fff !important;
}

/********************************      Login Page      ********************************/

body#login
{
    color: #fff;
    background-color: #333333;
}

#login-wrapper
{
    background-color: #333333;
}

#login-wrapper #login-top
{
    width: 100%;
    padding: 140px 0 50px 0;
    text-align: center;
    background-color: #232323;
}

#login-wrapper #login-content
{
    text-align: left;
    width: 300px;
    margin: 0 auto;
}

#login-wrapper #login-content label
{
    color: #fff;
    font-weight: normal;
    font-size: 14px;
    float: left;
    width: 70px;
    padding: 2px 0px;
    text-align: right;
}

#login-wrapper #login-content input
{
    width: 200px;
    float: right;
    margin: 0 0 20px 0;
    border: 0;
    background: #fff;
}

#login-wrapper #login-content p
{
    padding: 0;
}

#login-wrapper #login-content p#remember-password
{
    float: right;
}

#login-wrapper #login-content p#remember-password input
{
    float: none;
    width: auto;
    border: 0;
    background: none;
    margin: 0 10px 0 0;
}

#login-wrapper #login-content p .button
{
    width: auto;
    margin-top: 20px;
}

#login-wrapper #login-content #Button1
{
    width: 60px;
    height: 22px;
    font-size: 12px;
    cursor: pointer;
    vertical-align: middle;
    background-color: #207245;
    color: White;
    text-align: center;
    padding: 3px 15px;
    border: none;
}
#login-wrapper #login-content #Button1:hover
{
    background-color: #439467;
}
