﻿/* START Location selector style overrides */
.ui-autocomplete
{
    max-height: 400px;
    min-height: 400px;
    overflow-y: auto;
    /* prevent horizontal scrollbar */
    overflow-x: hidden;
    /* add padding to account for vertical scrollbar */
    padding-right: 20px;
}
/* IE 6 doesn't support max-height
 * we use height instead, but this forces the menu to always be this tall
 */
* html .ui-autocomplete
{
    height: 400px;
}

.location-entry-box
{
    text-transform: uppercase;
}

.location-selector
{
    width: 100%;
    height: 400px;
}

    .location-selector option
    {
        font-size: 16px !important;
    }
/* END Location selector style overrides */

.ui-fake-textbox
{
    display: block;
    border: 1px solid silver;
    width: 100px;
    padding: 1px;
}

.ui-validate
{
}

.ui-invalid
{
    outline: 1px solid red;
}

.error-flag
{
    color: red;
}

.ui-required
{
    background-color: #F9F7AF;
}

.ui-upper-case
{
    text-transform: uppercase;
}

.ui-date-picker
{
}

.ui-button-date-picker
{
}

.ui-date-no-future
{
}

.ui-date-no-past
{
}

.ui-water-mark
{
}

.ui-water-mark-dark
{
}

.ui-area-code
{
}

.ui-phone-without-area-code
{
}

.ui-phone-with-area-code
{
}

.ui-hours-with-minutes
{
}

.ui-ssn
{
}

.ui-numeric
{
}

.ui-char-limit
{
}

.ui-hidden
{
}

.ui-datepicker-trigger
{
    margin-left: 0px;
    margin-top: -1px;
    vertical-align: top;
}




a.pointed-link
{
    padding-left: 14px;
    color: #6498DC;
    cursor: pointer;
    font-weight: 800;
    text-align: left;
    font-size: 12px;
    vertical-align: text-top;
    text-decoration: none;
    background-image: url(../images/arrow.png);
    background-repeat: no-repeat;
}



/* General display styles */
.ui-label
{
    font-size: 12px;
}

.ui-indent-left
{
    margin-left: 25px;
}

.ui-data
{
    font-size: 13px;
}

.ui-bold
{
    font-weight: bold;
}

.ui-left
{
    text-align: left;
}

.ui-right
{
    text-align: right;
}

.ui-top
{
    vertical-align: top;
}

.ui-underline
{
    text-decoration: underline;
}

.select
{
    height: 100px;
    overflow: scroll;
}

.disabled-dark
{
    color: grey;
    font-weight: bold;
    cursor: default;
}


/* jqModal plugin styles */
/* jqModal base Styling courtesy of;
	Brice Burgess <bhb@iceburg.net> */

/* The Window's CSS z-index value is respected (takes priority). If none is supplied,
	the Window's z-index value will be set to 3000 by default (via jqModal.js). */

.jqmWindow
{
    display: none;
    position: fixed;
    top: 17%;
    left: 50%;
    margin-left: -300px;
    width: 600px;
    background-color: #EEE;
    color: #333;
    border: 1px solid black;
    padding: 12px;
}

.jqmOverlay
{
    background-color: #000;
}

/* Background iframe styling for IE6. Prevents ActiveX bleed-through (<select> form elements, etc.) */
* iframe.jqm
{
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    width: expression(this.parentNode.offsetWidth+'px');
    height: expression(this.parentNode.offsetHeight+'px');
}

/* Fixed posistioning emulation for IE6
     Star selector used to hide definition from browsers other than IE6
     For valid CSS, use a conditional include instead */
* html .jqmWindow
{
    position: absolute;
    top: expression((document.documentElement.scrollTop || document.body.scrollTop) + Math.round(17 * (document.documentElement.offsetHeight || document.body.clientHeight) / 100) + 'px');
}
/* jqModal plugin styles */
