/* ---------------------------------------------------------------- */
/*                     Page layout containers (DEFAULT)             */
/* ---------------------------------------------------------------- */
/* Import JQuery UI theme. Theme name : sunny */
@import "./custom/jquery-ui.min.css";
@import "../css/glyphicon.css";

* {
    padding: 0;
    margin: 0;
}

body {
    background: #A3B8BB;
    margin: 0 auto;
    padding: 0;
    color: #000;
    height: 100%;
    position: relative;
    font-family: Verdana, "Times New Roman", Georgia, Serif;
    font-size: 12px;
}

.mainContainer {
    background: #FFFFFF;
    -moz-border-radius-bottomleft: 8px;
    -moz-border-radius-bottomright: 8px;
    -webkit-border-bottom-left-radius: 8px;
    -webkit-border-bottom-right-radius: 8px;
}

.pageTitle {
    color: #0000A0;
    font-size: 25px;
    font-weight: bold;
}

.pageFooter {
    color: #FFFFFF;
    font-weight: bold;
    background: #736F6E;
    font-size: 14px;
    text-align: center;
    border-top: 2px solid black;
    padding-top: 10px;
    padding-bottom: 10px;
    -moz-border-radius-bottomleft: 8px;
    -moz-border-radius-bottomright: 8px;
    -webkit-border-bottom-left-radius: 8px;
    -webkit-border-bottom-right-radius: 8px;
}

.formTitle {
    color: #25383C;
    font-weight: bold;
    border-bottom: 2px solid #25587E;
}

.bodyContainer {
    min-height: 600px;
}

.buttonSpace {
    position: relative;
    display: block;
    clear: both;
    padding-top: 10px;
    border-top: 2px solid #686868;
    font-weight: bold;
}

.blankSeparator {
    height: 10px;
}

.colorSeparator {
    height: 2px;
    background: #000000;
}

.formHeader {
    padding-left: 5px;
    color: #25587E;
    font-weight: bold;
    margin-bottom: 5px;
}

.pageContainer {
    width: 1140px;
    margin: 0 auto;
    height: 100%;
}

.pageHeader {
    text-align: left;
    color: #ECD672;
    background: #ffffff;
    padding-bottom: 3px;
}

.pageBody {
    text-align: left;
    background: #ffffff;
    padding-bottom: 10px;
    min-height: 600px;
}

.pageFooter {
    color: #FFFFFF;
    font-weight: bold;
    background: #736F6E;
    text-align: center;
    border-top: 2px solid #000000;
    padding-top: 10px;
    padding-bottom: 10px;
    -moz-border-radius-bottomleft: 8px;
    -moz-border-radius-bottomright: 8px;
    -webkit-border-bottom-left-radius: 8px;
    -webkit-border-bottom-right-radius: 8px;
}

.mainFormArea {
    position: relative;
    vertical-align: middle;
    margin-left: 10px;
    background-color: #d6e5f4;
    border: 1px solid #111;
    padding: 10px;
    line-height: 150%;

    /*Shadow effect*/
    /*-o-box-shadow: 5px 5px 4px #888;*/
    /*-icab-box-shadow: 5px 5px 4px #888;*/
    /*-khtml-box-shadow: 5px 5px 4px #888;*/
    /*-moz-box-shadow: 5px 5px 4px #888;*/
    /*-webkit-box-shadow: 5px 5px 4px #888;*/
    /*box-shadow: 5px 5px 4px #888;*/

    /*Round-corner effect*/
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
}

.formText {
    color: #000000;
    margin-bottom: 5px;
}

.formParagraph
{
    margin: 10px 0;
}

/* ---------------------------------------------------------------- */
/*                     Main Form formatters                         */
/* ---------------------------------------------------------------- */
.commonInput:focus {
    border-color: #66afe9;
    outline: 0;
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6);
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6);
}

.commonInput {
    padding: 3px 6px;
    border: solid 1px #4A4344;
    background-color: #EDF2F7;
    color: #555555;
    border: 1px solid #cccccc;
    border-radius: 4px;
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
    -webkit-transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
    transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
}

.label {
    display: inline;
    padding: .25em .6em;
    font-size: 75%;
    font-weight: bold;
    line-height: 1;
    color: #ffffff;
    text-align: center;
    white-space: nowrap;
    vertical-align: baseline;
    border-radius: .25em;
}

.label-danger {
    background-color: #d9534f;
}

.label-success {
    background-color: #5cb85c;
}

#tabs li .ui-icon-close { float: left; margin: 0.4em 0.2em 0 0; cursor: pointer; }

.svsFieldSet
{
    border:2px solid #b9b9b9;
    -moz-border-radius:8px;
    -webkit-border-radius:8px;
    border-radius:8px;
    padding: 5px;
}

.svsFieldSet legend
{
    margin: 0 10px;
    padding: 0 10px;
}

hr.separatorStyle1
{
    border-top: 2px solid #b9b9b9;
}