/*------ CSS DOCUMENT ------*/

* { 
    -webkit-box-sizing:border-box; 
    -moz-box-sizing:border-box; 
    -ms-box-sizing:border-box; 
    -o-box-sizing:border-box; 
    box-sizing:border-box; 
}

html { 
    width: 100%; 
    height:100%; 
    overflow:hidden; 
}

body { 
    width: 100%;
    height:100%;
    font: 13px/20px "Lucida Grande", Tahoma, Verdana, sans-serif;
    background: url("../img/body_bg.gif") repeat-x scroll left top #DDE7ED;
    line-height: 1.5em;
}

div#container {
    width: 316px;
    margin: 0 auto;
}
div#logo{
    text-align: center;
}

.soft_name {
    margin-top: 10px;
    color: #ff6600;
    text-align: center;
    font-weight: bold;
    font-size: 1.4em;
    margin-bottom: 40px;
}

p.err {
    text-align: center;
    color: red;
    font-size: 15px;
}

#login {
    margin: 0 auto;
    width: 316px;
}

#login h1 { 
    color: #000; 
    letter-spacing:1px; 
    text-align:center; 
}

input { 
    width: 100%;
    margin-bottom: 10px; 
    background: none repeat scroll 0 0 rgba(255,255,255,0.3);
    border: 1px solid rgba(0,0,0,0.3);
    -webkit-border-radius: 5px; 
    -moz-border-radius: 5px; 
    border-radius: 5px;
    outline: none;
    padding: 10px;
    font-size: 13px;
    -webkit-box-shadow: inset 0 0 7px rgba(100,100,100,0.3), 0 1px 1px rgba(255,255,255,0.3);
    -moz-box-shadow: inset 0 0 7px rgba(100,100,100,0.3), 0 1px 1px rgba(255,255,255,0.3);
    box-shadow: inset 0 0 7px rgba(100,100,100,0.3), 0 1px 1px rgba(255,255,255,0.3);
}

input[type="text"] {
    background: url('../img/user_icon.png') no-repeat scroll 285px 10px;
}

input[type="password"] {
    background: url('../img/key_icon.png') no-repeat scroll 285px 11px;
}

input[type="text"]:hover, input[type="text"]:focus, input[type="password"]:hover, input[type="password"]:focus {
    -webkit-box-shadow: 0 0 10px rgba(0,0,0,0.4);
    -moz-box-shadow: 0 0 10px rgba(0,0,0,0.4);
    box-shadow: 0 0 10px rgba(0,0,0,0.4);
    background-color: rgba(255,255,255,0.3);
}

input[type="submit"]:focus {
    background-color: #67CE00;
}

input[type="submit"]::-moz-focus-inner {
    border: 0;
}

.btn { 
    display: inline-block; 
    *display: inline; 
    *zoom: 1; 
    padding: 4px 10px 4px; 
    margin-bottom: 0; 
    font-size: 13px; 
    line-height: 18px; 
    text-align: center; 
    vertical-align: middle;
    background-color: #74B743;
    border: 1px solid #74B743; 
    -webkit-border-radius: 4px; 
    -moz-border-radius: 4px; 
    border-radius: 4px; 
    -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05); 
    -moz-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05); 
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05); 
    cursor: pointer; *margin-left: .3em; 
}

.btn:hover {
    background-color: #67CE00;
}

.btn-primary {
    color: #fff;
}

.btn-large { 
    padding: 9px 14px; 
    font-size: 15px; 
    line-height: normal; 
    -webkit-border-radius: 5px; 
    -moz-border-radius: 5px; 
    border-radius: 5px; 
}

.btn-block { 
    width: 100%; 
    display:block; 
} 

table {
    margin: 220px 0;
}

div#main{
    position: fixed;
    bottom: 20px;
    text-align: center;
    font: 13px/20px "Lucida Grande", Tahoma, Verdana, sans-serif;
    width: 100%;
}

div#main a{
    color: #7E7E7E;
    font-size: 13px;
    text-decoration: none;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    outline: none;
}

div#main a:hover, div#main a:focus{
    background-position: 0 -135px;
    color: #74B743;
}
