/*
 * 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 {
    background-image: url('bh-bg.jpg');
    background-size: 100%;
    background-repeat: no-repeat;
    background-color: white;
    background-attachment: fixed;
}
 
#wrapper {
	margin: 0 auto -40px;
}

#centerbody {
    background: rgba(255,255,255,.6);
    color: black;
    padding: 10px 10px 40px 10px;
    border: 0;
    border-radius: 5px;
}

.btn {
    font-family: Trebuchet MS, sans-serif;
    border-radius: 3px;
    /* box-shadow: 2px 2px 1px 1px #8c8c8c; */
    background:-webkit-gradient( linear, left top, left bottom, color-stop(0.05, #3e374c), color-stop(1, #08070f) );
    background:linear-gradient(to bottom, #3e374c 5%, #08070f 100% );
}.btn:hover {
     background:-webkit-gradient( linear, left top, left bottom, color-stop(0.05, #08070f), color-stop(1, #3e374c) );
     background:linear-gradient(to bottom, #08070f 5%, #3e374c 100% );
}.btn:disabled {
      color: #656565;
      background:-webkit-gradient( linear, left top, left bottom, color-stop(0.05, #4f485d), color-stop(1, #191820) );
      background:linear-gradient(to bottom, #4f485d 5%, #191820 100% );
}

.menubutton {
    display: block;
    text-align: center;
    border-radius: 3px;
    border: 10px;
    text-decoration: none;
    color: black;
    white-space: normal;
    background: #E8E1F6;
    /* box-shadow: 2px 2px 1px 1px #8c8c8c; */
    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% );
}.menubutton: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% );
}

.inputfield {
    /* box-shadow: 2px 2px 2px 2px #f1f1f1; */
    padding-left: 3px;
    padding-right: 3px;
    font-size: 10pt;
    font-family: monospace;
}

.inputfield:focus {
    background-color: #fcfdd8;
}

.changepasswordfield {
    font-size: 10pt;
    font-family: monospace;
}.changepasswordfield:focus {
     background-color: #fcfdd8;
 }

h1 {
    font-family: Trebuchet MS, sans-serif;
}

h2 {
    font-family: Trebuchet MS, sans-serif;
}

h3 {
    font-family: Trebuchet MS, sans-serif;
}
 
 .header-button {
    border-radius: 3px;
    background:linear-gradient(to bottom, #E8E1F6 5%, #B2B1B9 100% );
}.header-button:hover {
     background:linear-gradient(to bottom, #B2B1B9 5%, #E8E1F6 100% );
}

#header-menu-wrapper {
    color: white;
    text-align: right;
}

#header-warning {
    box-shadow: 4px 4px 2px #888888;
    border:none;
    border-radius: 2px;
    background-color: white;
    color: #0a0a0a;
    text-align: center;
    padding-top: 4px;
    padding-bottom: 4px;
    text-decoration: none;
    font: "Palatino Linotype", Serif;
}

.header-button {
    margin: 6px 0 0 6px;
}

#HomeButton span.btn-icon, #LogoutButton span.btn-icon, #header-username-caret span.m-icon {
    font: 20px FontAwesome;
    margin-right: 0;
}

#HomeButton span.btn-icon:before {
    content: "\f015";
}

#LogoutButton span.btn-icon:before {
    content: "\f08b";
}

#header-username-caret span.m-icon {
    content: "\f08b";
}

.tile {
    width: 165px;
    height: 165px;
    border: 1px solid #E8E1F6;
    transition: box-shadow 0.3s;
	color: #0a0a0a;
    filter:alpha(opacity=70);
    opacity: 0.7;
}

.tile:hover {
    border: 1px solid #E8E1F6;
    box-shadow: 0 0 0 0 white, 0 0 0 0 white, 9px 0 12px -4px #B2B1B9, -9px 0 12px -4px #B2B1B9;
    filter:alpha(opacity=100);
    opacity: 1;
}


.btn-icon {
    opacity:0.75;
}


@keyframes slideInRight { 0% { transform: translate3d(100%, 0, 0); visibility: visible; } 100% { transform: translate3d(0, 0, 0); } }
@keyframes slideInTop { 0% { transform: translate3d(0, -100%, 0); visibility: visible; } 100% { transform: translate3d(0, 0, 0); } }

#footer {
    background-color: rgba(255,255,255,.5);
    color: white;
    background-image: url('footer_Honeycomb.png');
}

#footer.infotext {
	color: white;
}

.push {
	height: auto;
	max-height: 60px;
}

#header-menu-alert {
    display: inline-block;
    height: 10px;
    animation: blink 2s steps(5, start) infinite;
    -webkit-animation: fadein 2s, blink 2s steps(5, start) infinite;
}

#header-menu-alert::before {
    color: #e50000;
    content: "\f071";
    font: 12px FontAwesome;
}

#header-username-group, #header-username {
    display: inline-block;
}

#header-menu-wrapper > #header-username {
    display: block;
}

#header-menu {
    cursor: pointer;
}

#header-menu:only-child {
  padding-top: 15px;
}

#header-username-caret {
    display: inline-block;
}

#header-username-caret::after {
    content: "\f078";
    font: 12px FontAwesome;
}

#header-menu-icon {
  display: inline-block;
}

#header-menu-icon::after {
  content: "\f141";
  font: 12px FontAwesome;
}

.panel-orgChart-person {
    transition: box-shadow 0.3s;
}

.panel-orgChart-person:hover {
    border: 1px solid transparent;
    box-shadow: 0 0 0 0 white, 0 0 0 0 white, 9px 0 12px -4px #B2B1B9, -9px 0 12px -4px #B2B1B9;
}

#header-title {
    color: white;
    font: 25px "Palatino Linotype", Serif;
}

#header-subtitle {
    color: white;
    font:  16 "Trebuchet MS", "sans-serif";

}

#header-page {
    color: white;
    font: 17.5 "Trebuchet MS", "sans-serif";
}

#header {
    width: 100%;
    height: 160px;
    margin: 0;
    background-image: url('footer_Honeycomb.png');
    background-color: white;
    color: black;
}

#header-company-logo {
	position: absolute;
	top: 0px;
    left: 0px;
	max-width: 694px;
	max-height: 160px;
    !width: 694px;
    !height: 160px;
	width: 100%;
	height: 100%;
	filter:alpha(opacity=50);
    opacity: 0.5;
    background-image: url('Sting_160.png');
}

a {
    color: #333333;
    text-decoration: underline;
    font-weight: bold
}

.message {
    background-color: inherit;
}

.message-info {
    background-color: #FFC726;
}

.message-error {
    background-color: #FFC726;
}

.message-success {
    background-color: #FFC726;
}

p {
    color: black;
}

table {
    border-collapse: collapse;
    border: 2px solid #ffcccc;
    width: 100%;
    margin-left: auto;
    margin-right: auto
}

table td {
    border: 2px solid #ffcccc;
    padding-left: 5px;
}

table td.title {
    text-align: center;
    font-weight: bold;
    font-size: 150%;
    padding-right: 10px;
    background-color: white;
}

table td.key {
    text-align: right;
    font-weight: bold;
    padding-right: 10px;
    width: 200px;
}
