/* fieldsets */
.myFieldset {
    border: 1px solid #c0c0c0;
    padding: 8px;
    margin-top: 10px;
    margin-bottom: 15px;
    display: block;
}

.myFieldset legend {
    font-weight: bold;
    padding-right: 10px;
    padding-left: 10px;
}

/* target IE6 only - this prevents fieldsets from taking up 100% (fullscreen)*/
.lt-ie7 fieldset {
    display: block;
    width: expression(document.body.clientWidth > 700 ? "701px": "auto" );
}

.lt-ie9 legend {
    padding-bottom: 4px;
}

.fieldLabel {
    color: #565656;
    text-align: right;
}

label {
    margin-right: 15px;
}

.textField {
    padding: 1px;
    color: black;
    border: 1px solid #6c92bd;
}

#global-search-box {
    margin-top: 5px;
    margin-bottom: 10px;
    position: fixed;
    top: 10px;
    right: 10px;
}

#global-search-box input {
    border: 1px solid #6c92bd;
    padding: 5px;
    -webkit-box-shadow: 0 0 10px #aaa;
    box-shadow: 0 0 20px #aaa;
    width: 250px;
}

#global-search-box a {
    display: inline-block;
    background: url('../images/buttons/delete-12x12.png') no-repeat 5px center;
    width: 18px;
    height: 18px;
    position: relative;
    left: -32px;
    top: 5px;
}

input[readonly] {
    padding: 1px;
    color: black;
    border: 1px solid #6c92bd;
    background-color: #f2f0e3;
}

/* this is to simulate a "readonly" select list */
select[readonly=true] {
    padding: 1px;
    color: black;
    border: 1px solid #6c92bd;
    background-color: #f2f0e3;
}

.uppercaseText {
    padding: 1px;
    text-transform: uppercase;
    border: 1px solid #6c92bd;
}

.uppercaseTextWithErrors {
    padding: 1px;
    text-transform: uppercase;
    background-color: #ffc0cb;
    border: 1px solid #6c92bd;
}

.inputWithErrors {
    padding: 1px;
    background-color: #ffc0cb;
    border: 1px solid #6c92bd;
}

.uppercaseCompulsory {
    text-transform: uppercase;
    padding-left: 2px;
    padding-bottom: 3px;
    color: black;
    border: 1px solid red;
}

.requiredField {
    color: red;
    font-weight: bold;
    vertical-align: super;
}

.textArea {
    font-family: MS Shell Dlg, sans-serif;
    font-size: 13.33px;
    padding: 1px 10px 1px 2px;
    color: black;
    border: 1px solid #6c92bd;
    width: 600px;
    max-height: 300px;
    display: block;
}

.fieldError {
    background-color: #ffc0cb;
}

.selectList {
    color: black;
    border: 1px solid #6c92bd;
}

.field {
    font-family: MS Shell Dlg, sans-serif;
    font-size: 13.33px;
    padding: 1px 10px 1px 2px;
    margin: 2px;
    color: black;
    border: 1px solid #6c92bd !important;
    min-width: 100px;
    min-height: 16px;
    display: inline-block;
    background-color: #f2f0e3;
}

pre.field {
    width: 600px;
    max-height: 100px;
    padding-left: 2px;
    overflow-y: auto;
    margin-top: 1px;
    margin-bottom: 1px;
}

::-webkit-input-placeholder {
    color: #aaa;
    text-transform: none;
}

.placeholder {
    color: #aaa;
}

:-moz-placeholder {
    color: #aaa;
    text-transform: none;
}

::-moz-placeholder {
    color: #aaa;
    text-transform: none;
}

:-ms-input-placeholder {
    color: #aaa;
    text-transform: none;
}

.error-message {
    font-size: 8pt;
    font-weight: bold;
    color: #e72918;
}

.explanatoryNote {
    font-style: italic;
    font-size: 7pt;
    color: #708090;
}

.dateSelector {
    background: no-repeat url("../images/calendar-icon.jpg");
    width: 16px;
    height: 15px;
    border: 0;
    display: inline-block;
}

.charsRemaining {
    visibility: hidden; /* hidden by default*/
    font-style: italic;
    font-size: 7pt;
    color: #708090;
    float: right;
}

.supplementaryIdentifier {
    display: none; /* hidden by default */
}

select[disabled] {
    background-color: #f2f0e3;
}