/*
 * Password Management Servlets (PWM)
 * http://code.google.com/p/pwm/
 *
 * Copyright (c) 2006-2009 Novell, Inc.
 * Copyright (c) 2009-2012 The PWM Project
 *
 * This program is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation; either version 2 of the License, or
 * (at your option) any later version.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program; if not, write to the Free Software
 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
 */



html, body {
    color: #3b3b3b;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 12px;
    background-color: #cccccc;
}

.inputfield {
    border: 1px solid #949494;
    border-radius: 3px;
    padding: 3px 3px;
}

.changepasswordfield {
    margin: 5px;
    height: 18px;
    border: 1px solid #949494;
    border-radius: 3px;
    padding: 3px 3px;
}

.menubutton {
    display: block;
    text-align: center;
    padding: 4px 4px;
    border-radius: 5px;
    border: 1px solid black;
    margin: 5px 2px;
    text-decoration: none;
    color: white;
    background: #777777;
    box-shadow: 2px 2px 5px #aaaaaa;
    white-space; nowrap;
}.menubutton:hover {
     background: #393d3e;
 }

#centerbody {
    background: #fafafa;
    min-width: 400px;
    margin-top: 20px;
    border-radius: 5px;
    box-shadow: 3px 3px 5px #a0a0a0;
    border: 3px solid;
    border-color: #b2b2b2;
    white-space: nowrap;
}

.btn {
    background: #5c7f9d;
    box-shadow: 2px 2px 5px #aaaaaa;
    background:-webkit-gradient( linear, left top, left bottom, color-stop(0.05, #70869b), color-stop(1, #273f59) );
    background:linear-gradient(to bottom, #70869b 5%, #273f59 100% );
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#70869b', endColorstr='#273f59'); /* for IE */
}.btn:hover {
     background:-webkit-gradient( linear, left top, left bottom, color-stop(0.05, #8096ab), color-stop(1, #374f69) );
     background:linear-gradient(to bottom, #8096ab 5%, #374f69 100% );
     filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#8096ab', endColorstr='#374f69'); /* for IE */
 }.btn:disabled {
      color: #656565;
      background:-webkit-gradient( linear, left top, left bottom, color-stop(0.05, #50667b), color-stop(1, #172f49) );
      background:linear-gradient(to bottom, #50667b 5%, #172f49 100% );
      filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#50667b', endColorstr='#172f49'); /* for IE */
  }

#header {
    height: 67px;
    background-image: url('bg.png');
}

#header-company-logo {
    position: relative;
    float: left;
    top: 10px;
    left: 10px;
    width: 183px;
    height: 67px;
    z-index: 1;
    background-image: url('singlesign2.png');
}

#header-warning {
    background-color: #ebeca6;
}

.message-info {
    background-color: #f0f0f0;
    color: black;
}

.message-error {
    background-color: #f0f0f0;
    font-weight: bold;
    color: #FF0000;
}

.message-success {
    background-color: #8096ab;
}

.header-button {
    border-radius: 3px;
    background:-webkit-gradient( linear, left top, left bottom, color-stop(0.05, #E8E1F6), color-stop(1, #B2B1B9) );
    background:linear-gradient(to bottom, #E8E1F6 5%, #B2B1B9 100% );
}.header-button:hover {
     background:-webkit-gradient( linear, left top, left bottom, color-stop(0.05, #B2B1B9), color-stop(1, #E8E1F6) );
     background:linear-gradient(to bottom, #B2B1B9 5%, #E8E1F6 100% );
 }
