/*
 * Password Management Servlets (PWM)
 * http://code.google.com/p/pwm/
 *
 * Copyright (c) 2006-2009 Novell, Inc.
 * Copyright (c) 2009-2015 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
 */

#header {
    width: 100%;
    height: 140px;
    margin: 0;
    background: #921810;
}

#header-company-logo {
    /*position: relative;
    float: left;
     background-image: url(/pwm/public/resources/ull-logo.png);
    background-repeat: no-repeat; 
    top: 20px;
    left: 30px;
    width: 300px;
    height: 160px;
    z-index: 1;*/
    display: none;
}

#centerbody {
    margin: 0 auto;
    animation: fadein 2s;
    -moz-animation: fadein 2s;
    -webkit-animation: fadein 2s;
}

#centerbody.wide {
    width: 90%;
    margin-left: auto;
}


#header-center {
    /* margin-left: 200px; */
}

a:hover {
    color: #880000;
}

#footer {
    padding-top: 40px;
    margin-left: 30px;
    text-align: left;
}

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

.message-error {
    background-color: #ff0000;
    color: white
}

.message-success {
    background-color: #0000ff;
    color: white;
}

.btn {
    border-style:none;
    padding: 10px 20px;
    margin: 9px 7px;
    text-decoration: none;
    color: white;
    background-color: #880000;
    cursor: pointer;
    text-transform: uppercase;
}.btn:disabled {
     color: #656565;
}

.buttonbar {
    width: 60%;
}

#header-center {
    width: 650px;
}

#header-center-left {
    float: left;
    max-width: 400px;
    top: 20px;
    padding-left: 320px;
    background-image: url(/pwm/public/resources/ull-logo.png);
    height: 160px;
    position: relative;
    background-repeat: no-repeat;
}

#header-center-right {
    width: 150px;
}

#header-page {
    padding-top: 29px;
    margin-left: auto;
    margin-right: auto;
    font-family: helvetica, arial, sans-serif;
    font-size: 22px;
    color: #FFFFFF;
    text-transform: uppercase;
}

#header-title {
    margin: auto;
    font-family: "Palatino Linotype","Palatino","Book Antiqua","URW Palladio L",serif;
    font-style: italic;    
    font-size: 14px;
    color: #FFFFFF;
    position: relative;
}

#wrapper {
    background-image: url(/pwm/public/resources/body-bg.jpg);
    background-position: top center;
}

#centerbody {
    border-radius: 6px;
    background-color: #fff;
    padding: 15px;
    box-shadow: 0px 2px 2px #999;
}

#centerbody.tall {
    top: 200px;
}

.menubutton_key {
    border: 0;
    width: 200px;
    max-width: 200px;
    table-layout: fixed;
}

.menubutton {
    width: 200px;
    max-width: 200px;
    padding: 4px 11px;
    display: block;
    border-radius: 3px;
    border: 10px;
    color: black;
    margin: 0 5px;
    cursor: pointer;
}

@keyframes fadein { from { opacity:0; } to { opacity:1; } }
@-moz-keyframes fadein { from { opacity:0 } to { opacity:1 } }
@-webkit-keyframes fadein { from { opacity:0 } to { opacity:1 } }