body {
    padding: 0px;
    margin: 0px;
    font-family:"Lucida Grande", "Lucida Sans Unicode", Verdana, Arial, Helvetica, sans-serif;
    font-size:12px;
}
p, h2, form, button {
    border:0;
    margin:0;
    padding:0;
}
a:link {
    color: rgb(108, 149, 179);
    text-decoration: none;
}
a:visited {
    text-decoration: line-through;
    color: #666666;
}
a:hover {
        
}
.spacer {
    height: 1px;
    clear: both;
}

#login-form {
    width: 250px;  
    position: absolute;
    top: 300px;
    right: 15%;
    border: solid 2px grey;
    
    -moz-box-shadow: 0px 0px 10px #999999;
    -webkit-box-shadow: 0px 0px 10px #999999;
    -khtml-box-shadow: 0px 0px 10px #999999;
    box-shadow: 0px 0px 10px #999999;
    
    -moz-border-radius:10px;
	-webkit-border-radius:10px;
    -khtml-border-radius:10px;
    border-radius:10px;
}

#login-form .error-message { display: none;} /* FIX-ME: For now, since form error template is a **** */
#login-form br { display: none;} /* FIX-ME: Same thing */

#login-form  h2 {
    padding-left: 10px;
    font-size:14px;
    font-weight:bold;
    padding-bottom:5px;
    padding-top: 5px;
    margin-bottom:8px;
    border-bottom: solid 1px grey;
}
#login-form  label{
    display:block;
    font-weight:bold;
    text-align:right;
    width: 100px;
    float:left;
    padding-bottom: 10px;
}
#login-form  .small{
    color:#666666;
    display:block;
    font-size:11px;
    font-weight:normal;
    text-align:right;
    width: 100px;
}
#login-form  input{
    float:left;
    font-size:12px;
    padding:4px 2px;
    border:solid 1px rgb(15, 34, 46);
    width:120px;
    margin:2px 0 15px 10px;
}
#login-form  button{
    clear: both;
    float: right;
    width: 125px;
    height: 25px;
    text-align: center;
    line-height: 25px;
    font-size: 11px;
    font-weight: bold;
    margin-bottom: 10px;
    margin-right: 14px;
    cursor: pointer;
    border:solid 1px rgb(15, 34, 46);
}