/* 
    Document   : login
    Created on : Oct 25, 2012, 9:46:35 PM
    Author     : Sorduea
    Description:
        Purpose of the stylesheet follows.
*/

/* 
   TODO customize this sample style
   Syntax recommendation http://www.w3.org/TR/REC-CSS2/
*/

*
{
    margin: 0px;
    padding: 0px;
}

body
{ 
    display: block;
    background-color: #191A50;
}

#loginDiv
{
    border: groove 2px #909090;
    position: absolute;
    left: 50%;
    top: 50%;
    background-color: #F0F0F0;
    z-index: 1;

    width: 400px;
    margin-left: -215px;
    height: 150px;
    margin-top: -105px;

    padding: 30px 15px;
    text-align: right;
}
    
#loginDiv img
{
    display: inline-block;
    margin-right: 20px;
    
    /* For IE 7 */
    zoom: 1;
    *display: inline;
}

#formBlock
{
    width: 310px;
    display: inline-block;
    
    /* For IE 7 */
    zoom: 1;
    *display: inline;
}

#loginError
{
    display: block;
    clear: right;
    font-size: 14pt;
    color: red;
    margin: 5px 15px 5px 0px;
}

#loginButton
{
    padding: 10px;
    width: 145px;
    margin-right: 25px;
    font-size: 14pt;
}

#footer
{
    position: absolute;
    width: 90%;
    margin-left: 10%;
    bottom: 0px;
}

#footer p
{
    font-family: serif;
    color: white;
}

.loginLabel
{
    display: inline-block;
    width: 105px;
    color: #191A50;
    font-weight: bold;
    font-family: sans-serif;
}

.loginInput
{
    display: inline-block;
    width: 185px;
    background-color: #E8E8E8;
    font-weight: bold;
    font-family: sans-serif;
    font-size: 14pt;
    margin: 5px;
    vertical-align: central;
}
