﻿/*modxPHPStyles
This is the main CSS file for the framework

*/
* {
    font-family: "Calibri";
    font-size: 1em;
    box-sizing: border-box;
}

form {
    font-size: 0.9em;
}

html {
    margin: 0;
    padding: 0;
}

body {
    background-color: white;
    margin: 0;
    padding: 0;
}

#wrapperDiv {
    display: block;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    width: 800px;
}

#contentDiv {
    display: block;
    background-color: #ffffff;
    border-radius: 5px;
    border: 1px solid #000000;
    margin-left: auto;
    margin-right: auto;
    padding: 5px;
    text-align: left;
    width: auto;
}

.fieldSet {
    border: 1px solid #cccccc;
    border-radius: 5px;
    margin-top: 3px;
    margin-bottom: 3px;
    padding: 3px;
}

.formLegend {
    color: #cccccc;
    font-size: 0.7em;
}

.formTable {
    /*font-size: 1em;*/
}

.formLabel {
    /*font-size: 1em;*/
}

.formLabelRequired {
    font-weight: bold;
}

.formTD {
}

.formTextInput {
    /*font-family: "Arial";*/
    color: #008080 !important;
    font-weight: bold !important;
    border: 1px solid #cccccc !important;
    border-radius: 5px !important;
    padding: 3px !important;
	width: auto !important;
	font-size: 100% !important;
	height: 2em !important;
}

.formTextInput:hover,
.formTextInput:focus {
    border: 1px solid #008080;
}

.formTextInput:disabled {
    border: 1px solid #cccccc;
    background-color: #cccccc;
}

.formButton {
    color: #008080;
    font-weight: bold;
    border: 1px solid #cccccc;
    border-radius: 5px;
    padding: 3px;
    margin-right: 3px;
    background-color: #ffffff;
    width: 12em;
}

.formButton:hover {
    background-color: #fdfdf0;
}

.formErrorDiv {
    display: block;
    /*width: 100%;*/
    border: 2px solid #ff0000;
    border-radius: 5px;
    background-color: #ffe6e6;
    color: #ff0000;
    font-weight: bold;
    padding: 3px;
    margin-top: 3px;
    margin-bottom: 3px;
}

.dataTable {
    border: 1px solid #cccccc;
    border-radius: 5px;
    width: 100%;
    text-align: center;
    border-collapse: collapse;
    /*border-spacing: 2px;*/
    empty-cells: show;
}

.dataTableHead {
    border-bottom: 1px solid #cccccc;
    border-top: 1px solid #cccccc;
    background-color: #fbf5e6;
}

.dataTableTH {
}

.dataTableBody {
}

.dataTableTR {
    border-bottom: 1px solid #cccccc;
    border-top: 1px solid #cccccc;
    background-color: #ffffff;
}

.dataTableTR:hover {
    border-bottom: 1px solid #888888;
    border-top: 1px solid #888888;
    background-color: #fdfdf0;
}

.dataTableTD {
}

.overlay {
    visibility: hidden;
    position: fixed;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    z-index: 1000;
    background: url(../overlay.png) repeat;
}

.overlayDiv {
    visibility: hidden;
    position: fixed;
    top: 50%;
    left: 50%;
    margin-left: -300px;
    margin-top: -300px;
    width: 600px;
    /*height: 1200px;*/

    background-color: #ffffff;
    border: 1px solid #000;
    border-radius: 5px;
    text-align: center;
    padding-top: 5px;
    padding-bottom: 5px;
    z-index: 2000;
}

.toolbar {
    visibility: visible;
    position: fixed;
    top: 30%;
    left: 0;
    width: 40px;
    height: 100px;
    background-color: #ffffff;
    border: 1px solid #000;
    text-align: center;
    padding-top: 5px;
    padding-bottom: 5px;
}

.refresh-captcha {
    color: blue;
    margin-left: 5px;
    /* border: 1px solid white; */
}

.refresh-captcha:hover {
    /* border: 1px solid blue; */
    color: red;
    cursor: pointer;
}
