<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@import url("getcss.aspx?CssName=RegularContent");

.bt_SearchBox
{
     width: 145px;
}
.bt_SearchButton
{
     width: 40px;
}

INPUT
{
    width: 200px;
}
SELECT
{
    width: 200px;
}
TEXTAREA
{
    width: 400px;
}
INPUT.disabled
{
    border-bottom: #f2f2f2 1px solid;
    border-left: #f2f2f2 1px solid;
    background-color: #f2f2f2;
    border-top: #f2f2f2 1px solid;
    border-right: #f2f2f2 1px solid;
}
INPUT.required
{
    border-bottom: #00a8e6 1px solid;
    border-left: #00a8e6 1px solid;
    border-top: #00a8e6 1px solid;
    border-right: #00a8e6 1px solid;
}
TEXTAREA.required
{
    border-bottom: #00a8e6 1px solid;
    border-left: #00a8e6 1px solid;
    border-top: #00a8e6 1px solid;
    border-right: #00a8e6 1px solid;
}
INPUT.validation-failed
{
    border-bottom: #ff3300 1px solid;
    border-left: #ff3300 1px solid;
    color: #ff3300;
    border-top: #ff3300 1px solid;
    border-right: #ff3300 1px solid;
}
TEXTAREA.validation-failed
{
    border-bottom: #ff3300 1px solid;
    border-left: #ff3300 1px solid;
    color: #ff3300;
    border-top: #ff3300 1px solid;
    border-right: #ff3300 1px solid;
}
INPUT.validation-passed
{
    border-bottom: #00cc00 1px solid;
    border-left: #00cc00 1px solid;
    color: #000;
    border-top: #00cc00 1px solid;
    border-right: #00cc00 1px solid;
}
TEXTAREA.validation-passed
{
    border-bottom: #00cc00 1px solid;
    border-left: #00cc00 1px solid;
    color: #000;
    border-top: #00cc00 1px solid;
    border-right: #00cc00 1px solid;
}
.validation-advice
{
    width: 200px;
    float: left;
    padding-bottom: 5px;
    background-color: #ff3300;
    margin: 5px 0px;
    padding-left: 5px;
    padding-right: 5px;
    color: #fff;
    font-weight: bold;
    padding-top: 5px;
}
.custom-advice
{
    width: 200px;
    float: left;
    padding-bottom: 5px;
    background-color: #c8aa00;
    margin: 5px 0px;
    padding-left: 5px;
    padding-right: 5px;
    color: #fff;
    font-weight: bold;
    padding-top: 5px;
}
FIELDSET
{
    padding-bottom: 1em;
    padding-left: 1em;
    padding-right: 1em;
    margin-bottom: 0.5em;
    padding-top: 1em;
}
LABEL
{
    font-weight: bold;
}
.form-row
{
    padding-bottom: 0.5em;
    padding-left: 0.5em;
    padding-right: 0.5em;
    clear: both;
    padding-top: 0.5em;
}
.field-label
{
    width: 150px;
    float: left;
}
.field-widget
{
    width: 200px;
    float: left;
}
#buttons
{
    text-align: center;
}
#submit
{
    width: 100px;
}
#reset
{
    width: 100px;
}
.mandatory
{
    color: Red;
}     



.popup-overlay{
  z-index: 999;
  /*Hides pop-up when there is no "active" class*/
  visibility:hidden;
  position:absolute;
  padding: 10px;
  background:#ffffff;
  text-align: left;
  border:2px solid #666666;
  width:320px;
  height:220px;
  left:15%; 
  top:41%; 
}
.popup-overlay.active{
  /*displays pop-up when "active" class is present*/
  visibility:visible;
}

.popup-content {
  /*Hides pop-up content when there is no "active" class */
 visibility:hidden;
}

.popup-content.active {
  /*Shows pop-up content when "active" class is present */
  visibility:visible;
}            </pre></body></html>