/* Minification failed. Returning unminified contents.
(690,20244): run-time error CSS1038: Expected hex color, found '#NaNNaNNaN'
(690,21222): run-time error CSS1038: Expected hex color, found '#NaNNaNNaN'
(690,23336): run-time error CSS1038: Expected hex color, found '#NaNNaNNaN'
(690,24551): run-time error CSS1038: Expected hex color, found '#NaNNaNNaN'
(690,26114): run-time error CSS1038: Expected hex color, found '#NaNNaNNaN'
(690,27307): run-time error CSS1038: Expected hex color, found '#NaNNaNNaN'
(690,32101): run-time error CSS1038: Expected hex color, found '#NaNNaNNaN'
(690,33186): run-time error CSS1038: Expected hex color, found '#NaNNaNNaN'
(690,34962): run-time error CSS1038: Expected hex color, found '#NaNNaNNaN'
(690,36176): run-time error CSS1038: Expected hex color, found '#NaNNaNNaN'
(690,37225): run-time error CSS1038: Expected hex color, found '#NaNNaNNaN'
(690,38420): run-time error CSS1038: Expected hex color, found '#NaNNaNNaN'
(690,39447): run-time error CSS1038: Expected hex color, found '#NaNNaNNaN'
(690,40508): run-time error CSS1038: Expected hex color, found '#NaNNaNNaN'
(690,42660): run-time error CSS1038: Expected hex color, found '#NaNNaNNaN'
(690,44895): run-time error CSS1038: Expected hex color, found '#NaNNaNNaN'
(690,46027): run-time error CSS1038: Expected hex color, found '#NaNNaNNaN'
(690,46741): run-time error CSS1038: Expected hex color, found '#NaNNaNNaN'
(690,47695): run-time error CSS1038: Expected hex color, found '#NaNNaNNaN'
(690,48479): run-time error CSS1038: Expected hex color, found '#NaNNaNNaN'
(690,49297): run-time error CSS1038: Expected hex color, found '#NaNNaNNaN'
(690,50021): run-time error CSS1038: Expected hex color, found '#NaNNaNNaN'
(690,50767): run-time error CSS1038: Expected hex color, found '#NaNNaNNaN'
(690,51448): run-time error CSS1038: Expected hex color, found '#NaNNaNNaN'
(690,52143): run-time error CSS1038: Expected hex color, found '#NaNNaNNaN'
(690,52903): run-time error CSS1038: Expected hex color, found '#NaNNaNNaN'
(690,53825): run-time error CSS1038: Expected hex color, found '#NaNNaNNaN'
(690,56141): run-time error CSS1038: Expected hex color, found '#NaNNaNNaN'
(690,58040): run-time error CSS1038: Expected hex color, found '#NaNNaNNaN'
(690,58956): run-time error CSS1038: Expected hex color, found '#NaNNaNNaN'
(690,59629): run-time error CSS1038: Expected hex color, found '#NaNNaNNaN'
(690,62007): run-time error CSS1038: Expected hex color, found '#NaNNaNNaN'
(690,62985): run-time error CSS1038: Expected hex color, found '#NaNNaNNaN'
(690,63671): run-time error CSS1038: Expected hex color, found '#NaNNaNNaN'
(690,64439): run-time error CSS1038: Expected hex color, found '#NaNNaNNaN'
(690,73660): run-time error CSS1038: Expected hex color, found '#NaNNaNNaN'
(690,75349): run-time error CSS1038: Expected hex color, found '#NaNNaNNaN'
(690,76399): run-time error CSS1038: Expected hex color, found '#NaNNaNNaN'
(690,77657): run-time error CSS1038: Expected hex color, found '#NaNNaNNaN'
(690,78967): run-time error CSS1038: Expected hex color, found '#NaNNaNNaN'
(690,80529): run-time error CSS1038: Expected hex color, found '#NaNNaNNaN'
(690,82000): run-time error CSS1038: Expected hex color, found '#NaNNaNNaN'
 */
/*!
 * jQuery UI CSS Framework 1.10.4
 * http://jqueryui.com
 *
 * Copyright 2014 jQuery Foundation and other contributors
 * Released under the MIT license.
 * http://jquery.org/license
 *
 * http://api.jqueryui.com/category/theming/
 */
@import "jquery.ui.base.css";
@import "jquery.ui.theme.css";

/*
Version: 3.5.4 Timestamp: Sun Aug 30 13:30:32 EDT 2015
*/
.select2-container {
    margin: 0;
    position: relative;
    display: inline-block;
    vertical-align: middle;
}

.select2-container,
.select2-drop,
.select2-search,
.select2-search input {
  /*
    Force border-box so that % widths fit the parent
    container without overlap because of margin/padding.
    More Info : http://www.quirksmode.org/css/box.html
  */
  -webkit-box-sizing: border-box; /* webkit */
     -moz-box-sizing: border-box; /* firefox */
          box-sizing: border-box; /* css3 */
}

.select2-container .select2-choice {
    display: block;
    height: 26px;
    padding: 0 0 0 8px;
    overflow: hidden;
    position: relative;

    border: 1px solid #aaa;
    white-space: nowrap;
    line-height: 26px;
    color: #444;
    text-decoration: none;

    border-radius: 4px;

    background-clip: padding-box;

    -webkit-touch-callout: none;
      -webkit-user-select: none;
         -moz-user-select: none;
          -ms-user-select: none;
              user-select: none;

    background-color: #fff;
    background-image: -webkit-gradient(linear, left bottom, left top, color-stop(0, #eee), color-stop(0.5, #fff));
    background-image: -webkit-linear-gradient(center bottom, #eee 0%, #fff 50%);
    background-image: -moz-linear-gradient(center bottom, #eee 0%, #fff 50%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr = '#ffffff', endColorstr = '#eeeeee', GradientType = 0);
    background-image: linear-gradient(to top, #eee 0%, #fff 50%);
}

html[dir="rtl"] .select2-container .select2-choice {
    padding: 0 8px 0 0;
}

.select2-container.select2-drop-above .select2-choice {
    border-bottom-color: #aaa;

    border-radius: 0 0 4px 4px;

    background-image: -webkit-gradient(linear, left bottom, left top, color-stop(0, #eee), color-stop(0.9, #fff));
    background-image: -webkit-linear-gradient(center bottom, #eee 0%, #fff 90%);
    background-image: -moz-linear-gradient(center bottom, #eee 0%, #fff 90%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#eeeeee', GradientType=0);
    background-image: linear-gradient(to bottom, #eee 0%, #fff 90%);
}

.select2-container.select2-allowclear .select2-choice .select2-chosen {
    margin-right: 42px;
}

.select2-container .select2-choice > .select2-chosen {
    margin-right: 26px;
    display: block;
    overflow: hidden;

    white-space: nowrap;

    text-overflow: ellipsis;
    float: none;
    width: auto;
}

html[dir="rtl"] .select2-container .select2-choice > .select2-chosen {
    margin-left: 26px;
    margin-right: 0;
}

.select2-container .select2-choice abbr {
    display: none;
    width: 12px;
    height: 12px;
    position: absolute;
    right: 24px;
    top: 8px;

    font-size: 1px;
    text-decoration: none;

    border: 0;
    background: url(images/select2.png) right top no-repeat;
    cursor: pointer;
    outline: 0;
}

.select2-container.select2-allowclear .select2-choice abbr {
    display: inline-block;
}

.select2-container .select2-choice abbr:hover {
    background-position: right -11px;
    cursor: pointer;
}

.select2-drop-mask {
    border: 0;
    margin: 0;
    padding: 0;
    position: fixed;
    left: 0;
    top: 0;
    min-height: 100%;
    min-width: 100%;
    height: auto;
    width: auto;
    opacity: 0;
    z-index: 9998;
    /* styles required for IE to work */
    background-color: #fff;
    filter: alpha(opacity=0);
}

.select2-drop {
    width: 100%;
    margin-top: -1px;
    position: absolute;
    z-index: 9999;
    top: 100%;

    background: #fff;
    color: #000;
    border: 1px solid #aaa;
    border-top: 0;

    border-radius: 0 0 4px 4px;

    -webkit-box-shadow: 0 4px 5px rgba(0, 0, 0, .15);
            box-shadow: 0 4px 5px rgba(0, 0, 0, .15);
}

.select2-drop.select2-drop-above {
    margin-top: 1px;
    border-top: 1px solid #aaa;
    border-bottom: 0;

    border-radius: 4px 4px 0 0;

    -webkit-box-shadow: 0 -4px 5px rgba(0, 0, 0, .15);
            box-shadow: 0 -4px 5px rgba(0, 0, 0, .15);
}

.select2-drop-active {
    border: 1px solid #5897fb;
    border-top: none;
}

.select2-drop.select2-drop-above.select2-drop-active {
    border-top: 1px solid #5897fb;
}

.select2-drop-auto-width {
    border-top: 1px solid #aaa;
    width: auto;
}

.select2-container .select2-choice .select2-arrow {
    display: inline-block;
    width: 18px;
    height: 100%;
    position: absolute;
    right: 0;
    top: 0;

    border-left: 1px solid #aaa;
    border-radius: 0 4px 4px 0;

    background-clip: padding-box;

    background: #ccc;
    background-image: -webkit-gradient(linear, left bottom, left top, color-stop(0, #ccc), color-stop(0.6, #eee));
    background-image: -webkit-linear-gradient(center bottom, #ccc 0%, #eee 60%);
    background-image: -moz-linear-gradient(center bottom, #ccc 0%, #eee 60%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr = '#eeeeee', endColorstr = '#cccccc', GradientType = 0);
    background-image: linear-gradient(to top, #ccc 0%, #eee 60%);
}

html[dir="rtl"] .select2-container .select2-choice .select2-arrow {
    left: 0;
    right: auto;

    border-left: none;
    border-right: 1px solid #aaa;
    border-radius: 4px 0 0 4px;
}

.select2-container .select2-choice .select2-arrow b {
    display: block;
    width: 100%;
    height: 100%;
    background: url('images/select2.png') no-repeat 0 1px;
}

html[dir="rtl"] .select2-container .select2-choice .select2-arrow b {
    background-position: 2px 1px;
}

.select2-search {
    display: inline-block;
    width: 100%;
    min-height: 26px;
    margin: 0;
    padding: 4px 4px 0 4px;

    position: relative;
    z-index: 10000;

    white-space: nowrap;
}

.select2-search input {
    width: 100%;
    height: auto !important;
    min-height: 26px;
    padding: 4px 20px 4px 5px;
    margin: 0;

    outline: 0;
    font-family: sans-serif;
    font-size: 1em;

    border: 1px solid #aaa;
    border-radius: 0;

    -webkit-box-shadow: none;
            box-shadow: none;

    background: #fff url('images/select2.png') no-repeat 100% -22px;
    background: url('images/select2.png') no-repeat 100% -22px, -webkit-gradient(linear, left bottom, left top, color-stop(0.85, #fff), color-stop(0.99, #eee));
    background: url('images/select2.png') no-repeat 100% -22px, -webkit-linear-gradient(center bottom, #fff 85%, #eee 99%);
    background: url('images/select2.png') no-repeat 100% -22px, -moz-linear-gradient(center bottom, #fff 85%, #eee 99%);
    background: url('images/select2.png') no-repeat 100% -22px, linear-gradient(to bottom, #fff 85%, #eee 99%) 0 0;
}

html[dir="rtl"] .select2-search input {
    padding: 4px 5px 4px 20px;

    background: #fff url('images/select2.png') no-repeat -37px -22px;
    background: url('images/select2.png') no-repeat -37px -22px, -webkit-gradient(linear, left bottom, left top, color-stop(0.85, #fff), color-stop(0.99, #eee));
    background: url('images/select2.png') no-repeat -37px -22px, -webkit-linear-gradient(center bottom, #fff 85%, #eee 99%);
    background: url('images/select2.png') no-repeat -37px -22px, -moz-linear-gradient(center bottom, #fff 85%, #eee 99%);
    background: url('images/select2.png') no-repeat -37px -22px, linear-gradient(to bottom, #fff 85%, #eee 99%) 0 0;
}

.select2-search input.select2-active {
    background: #fff url('images/select2-spinner.gif') no-repeat 100%;
    background: url('images/select2-spinner.gif') no-repeat 100%, -webkit-gradient(linear, left bottom, left top, color-stop(0.85, #fff), color-stop(0.99, #eee));
    background: url('images/select2-spinner.gif') no-repeat 100%, -webkit-linear-gradient(center bottom, #fff 85%, #eee 99%);
    background: url('images/select2-spinner.gif') no-repeat 100%, -moz-linear-gradient(center bottom, #fff 85%, #eee 99%);
    background: url('images/select2-spinner.gif') no-repeat 100%, linear-gradient(to bottom, #fff 85%, #eee 99%) 0 0;
}

.select2-container-active .select2-choice,
.select2-container-active .select2-choices {
    border: 1px solid #5897fb;
    outline: none;

    -webkit-box-shadow: 0 0 5px rgba(0, 0, 0, .3);
            box-shadow: 0 0 5px rgba(0, 0, 0, .3);
}

.select2-dropdown-open .select2-choice {
    border-bottom-color: transparent;
    -webkit-box-shadow: 0 1px 0 #fff inset;
            box-shadow: 0 1px 0 #fff inset;

    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;

    background-color: #eee;
    background-image: -webkit-gradient(linear, left bottom, left top, color-stop(0, #fff), color-stop(0.5, #eee));
    background-image: -webkit-linear-gradient(center bottom, #fff 0%, #eee 50%);
    background-image: -moz-linear-gradient(center bottom, #fff 0%, #eee 50%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#eeeeee', endColorstr='#ffffff', GradientType=0);
    background-image: linear-gradient(to top, #fff 0%, #eee 50%);
}

.select2-dropdown-open.select2-drop-above .select2-choice,
.select2-dropdown-open.select2-drop-above .select2-choices {
    border: 1px solid #5897fb;
    border-top-color: transparent;

    background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0, #fff), color-stop(0.5, #eee));
    background-image: -webkit-linear-gradient(center top, #fff 0%, #eee 50%);
    background-image: -moz-linear-gradient(center top, #fff 0%, #eee 50%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#eeeeee', endColorstr='#ffffff', GradientType=0);
    background-image: linear-gradient(to bottom, #fff 0%, #eee 50%);
}

.select2-dropdown-open .select2-choice .select2-arrow {
    background: transparent;
    border-left: none;
    filter: none;
}
html[dir="rtl"] .select2-dropdown-open .select2-choice .select2-arrow {
    border-right: none;
}

.select2-dropdown-open .select2-choice .select2-arrow b {
    background-position: -18px 1px;
}

html[dir="rtl"] .select2-dropdown-open .select2-choice .select2-arrow b {
    background-position: -16px 1px;
}

.select2-hidden-accessible {
    border: 0;
    clip: rect(0 0 0 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
}

/* results */
.select2-results {
    max-height: 200px;
    padding: 0 0 0 4px;
    margin: 4px 4px 4px 0;
    position: relative;
    overflow-x: hidden;
    overflow-y: auto;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

html[dir="rtl"] .select2-results {
    padding: 0 4px 0 0;
    margin: 4px 0 4px 4px;
}

.select2-results ul.select2-result-sub {
    margin: 0;
    padding-left: 0;
}

.select2-results li {
    list-style: none;
    display: list-item;
    background-image: none;
}

.select2-results li.select2-result-with-children > .select2-result-label {
    font-weight: bold;
}

.select2-results .select2-result-label {
    padding: 3px 7px 4px;
    margin: 0;
    cursor: pointer;

    min-height: 1em;

    -webkit-touch-callout: none;
      -webkit-user-select: none;
         -moz-user-select: none;
          -ms-user-select: none;
              user-select: none;
}

.select2-results-dept-1 .select2-result-label { padding-left: 20px }
.select2-results-dept-2 .select2-result-label { padding-left: 40px }
.select2-results-dept-3 .select2-result-label { padding-left: 60px }
.select2-results-dept-4 .select2-result-label { padding-left: 80px }
.select2-results-dept-5 .select2-result-label { padding-left: 100px }
.select2-results-dept-6 .select2-result-label { padding-left: 110px }
.select2-results-dept-7 .select2-result-label { padding-left: 120px }

.select2-results .select2-highlighted {
    background: #3875d7;
    color: #fff;
}

.select2-results li em {
    background: #feffde;
    font-style: normal;
}

.select2-results .select2-highlighted em {
    background: transparent;
}

.select2-results .select2-highlighted ul {
    background: #fff;
    color: #000;
}

.select2-results .select2-no-results,
.select2-results .select2-searching,
.select2-results .select2-ajax-error,
.select2-results .select2-selection-limit {
    background: #f4f4f4;
    display: list-item;
    padding-left: 5px;
}

/*
disabled look for disabled choices in the results dropdown
*/
.select2-results .select2-disabled.select2-highlighted {
    color: #666;
    background: #f4f4f4;
    display: list-item;
    cursor: default;
}
.select2-results .select2-disabled {
  background: #f4f4f4;
  display: list-item;
  cursor: default;
}

.select2-results .select2-selected {
    display: none;
}

.select2-more-results.select2-active {
    background: #f4f4f4 url('images/select2-spinner.gif') no-repeat 100%;
}

.select2-results .select2-ajax-error {
    background: rgba(255, 50, 50, .2);
}

.select2-more-results {
    background: #f4f4f4;
    display: list-item;
}

/* disabled styles */

.select2-container.select2-container-disabled .select2-choice {
    background-color: #f4f4f4;
    background-image: none;
    border: 1px solid #ddd;
    cursor: default;
}

.select2-container.select2-container-disabled .select2-choice .select2-arrow {
    background-color: #f4f4f4;
    background-image: none;
    border-left: 0;
}

.select2-container.select2-container-disabled .select2-choice abbr {
    display: none;
}


/* multiselect */

.select2-container-multi .select2-choices {
    height: auto !important;
    height: 1%;
    margin: 0;
    padding: 0 5px 0 0;
    position: relative;

    border: 1px solid #aaa;
    cursor: text;
    overflow: hidden;

    background-color: #fff;
    background-image: -webkit-gradient(linear, 0% 0%, 0% 100%, color-stop(1%, #eee), color-stop(15%, #fff));
    background-image: -webkit-linear-gradient(top, #eee 1%, #fff 15%);
    background-image: -moz-linear-gradient(top, #eee 1%, #fff 15%);
    background-image: linear-gradient(to bottom, #eee 1%, #fff 15%);
}

html[dir="rtl"] .select2-container-multi .select2-choices {
    padding: 0 0 0 5px;
}

.select2-locked {
  padding: 3px 5px 3px 5px !important;
}

.select2-container-multi .select2-choices {
    min-height: 26px;
}

.select2-container-multi.select2-container-active .select2-choices {
    border: 1px solid #5897fb;
    outline: none;

    -webkit-box-shadow: 0 0 5px rgba(0, 0, 0, .3);
            box-shadow: 0 0 5px rgba(0, 0, 0, .3);
}
.select2-container-multi .select2-choices li {
    float: left;
    list-style: none;
}
html[dir="rtl"] .select2-container-multi .select2-choices li
{
    float: right;
}
.select2-container-multi .select2-choices .select2-search-field {
    margin: 0;
    padding: 0;
    white-space: nowrap;
}

.select2-container-multi .select2-choices .select2-search-field input {
    padding: 5px;
    margin: 1px 0;

    font-family: sans-serif;
    font-size: 100%;
    color: #666;
    outline: 0;
    border: 0;
    -webkit-box-shadow: none;
            box-shadow: none;
    background: transparent !important;
}

.select2-container-multi .select2-choices .select2-search-field input.select2-active {
    background: #fff url('images/select2-spinner.gif') no-repeat 100% !important;
}

.select2-default {
    color: #999 !important;
}

.select2-container-multi .select2-choices .select2-search-choice {
    padding: 3px 5px 3px 18px;
    margin: 3px 0 3px 5px;
    position: relative;

    line-height: 13px;
    color: #333;
    cursor: default;
    border: 1px solid #aaaaaa;

    border-radius: 3px;

    -webkit-box-shadow: 0 0 2px #fff inset, 0 1px 0 rgba(0, 0, 0, 0.05);
            box-shadow: 0 0 2px #fff inset, 0 1px 0 rgba(0, 0, 0, 0.05);

    background-clip: padding-box;

    -webkit-touch-callout: none;
      -webkit-user-select: none;
         -moz-user-select: none;
          -ms-user-select: none;
              user-select: none;

    background-color: #e4e4e4;
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#eeeeee', endColorstr='#f4f4f4', GradientType=0);
    background-image: -webkit-gradient(linear, 0% 0%, 0% 100%, color-stop(20%, #f4f4f4), color-stop(50%, #f0f0f0), color-stop(52%, #e8e8e8), color-stop(100%, #eee));
    background-image: -webkit-linear-gradient(top, #f4f4f4 20%, #f0f0f0 50%, #e8e8e8 52%, #eee 100%);
    background-image: -moz-linear-gradient(top, #f4f4f4 20%, #f0f0f0 50%, #e8e8e8 52%, #eee 100%);
    background-image: linear-gradient(to bottom, #f4f4f4 20%, #f0f0f0 50%, #e8e8e8 52%, #eee 100%);
}
html[dir="rtl"] .select2-container-multi .select2-choices .select2-search-choice
{
    margin: 3px 5px 3px 0;
    padding: 3px 18px 3px 5px;
}
.select2-container-multi .select2-choices .select2-search-choice .select2-chosen {
    cursor: default;
}
.select2-container-multi .select2-choices .select2-search-choice-focus {
    background: #d4d4d4;
}

.select2-search-choice-close {
    display: block;
    width: 12px;
    height: 13px;
    position: absolute;
    right: 3px;
    top: 4px;

    font-size: 1px;
    outline: none;
    background: url('images/select2.png') right top no-repeat;
}
html[dir="rtl"] .select2-search-choice-close {
    right: auto;
    left: 3px;
}

.select2-container-multi .select2-search-choice-close {
    left: 3px;
}

html[dir="rtl"] .select2-container-multi .select2-search-choice-close {
    left: auto;
    right: 2px;
}

.select2-container-multi .select2-choices .select2-search-choice .select2-search-choice-close:hover {
  background-position: right -11px;
}
.select2-container-multi .select2-choices .select2-search-choice-focus .select2-search-choice-close {
    background-position: right -11px;
}

/* disabled styles */
.select2-container-multi.select2-container-disabled .select2-choices {
    background-color: #f4f4f4;
    background-image: none;
    border: 1px solid #ddd;
    cursor: default;
}

.select2-container-multi.select2-container-disabled .select2-choices .select2-search-choice {
    padding: 3px 5px 3px 5px;
    border: 1px solid #ddd;
    background-image: none;
    background-color: #f4f4f4;
}

.select2-container-multi.select2-container-disabled .select2-choices .select2-search-choice .select2-search-choice-close {    display: none;
    background: none;
}
/* end multiselect */


.select2-result-selectable .select2-match,
.select2-result-unselectable .select2-match {
    text-decoration: underline;
}

.select2-offscreen, .select2-offscreen:focus {
    clip: rect(0 0 0 0) !important;
    width: 1px !important;
    height: 1px !important;
    border: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    overflow: hidden !important;
    position: absolute !important;
    outline: 0 !important;
    left: 0px !important;
    top: 0px !important;
}

.select2-display-none {
    display: none;
}

.select2-measure-scrollbar {
    position: absolute;
    top: -10000px;
    left: -10000px;
    width: 100px;
    height: 100px;
    overflow: scroll;
}

@media print{#navigation,#MHTop,#chat-widget-container,.falcTitle,#btnApplicationReviewContinue{display:none!important;}#mainContent,#Page{max-width:900px;overflow:unset!important;}#printQuoteReview{display:flex!important;}@page{size:letter;margin:0 auto;}}html{margin:0;padding:0;border:0;overflow-y:auto!important;}html,body{height:100%;}body{font-family:arial!important;line-height:1.5;}blockquote:before,blockquote:after,q:before,q:after{content:'';}body,div,span,object,iframe,h1,h2,h3,h4,h5,h6,p,blockquote,pre,a,abbr,acronym,address,code,del,dfn,em,img,q,dl,dt,dd,ol,ul,li,fieldset,form,label,legend,table,caption,tbody,tfoot,thead,tr,th,td,article,aside,dialog,figure,footer,header,hgroup,nav,section{margin:0;padding:0;border:0;font-size:100%;font:inherit;}article,aside,details,figcaption,figure,dialog,footer,header,hgroup,menu,nav,section{display:block;}blockquote,q{quotes:"" "";}a img{border:0;}h1{font-size:20px;font-weight:bold;}h2{font-size:16px;font-weight:bold;}h3{font-size:14px;font-weight:bold;}h4{font-size:12px;font-weight:bold;}h5{font-size:12px;}h6{font-size:10px;}p{font-size:12px;}table{border-collapse:collapse;}input,a,button,select,.select2-drop,.ui-widget input,.ui-widget a,.ui-widget select{font-family:arial!important;font-size:12px;}a{text-decoration:none;}input[type="text"][disabled=""]{color:#000;}#topSection{background:#e0e0e0;min-height:100%;height:auto!important;height:100%;margin-bottom:-53px;}#topSectionAnon{background:#fff;min-height:100%;height:auto!important;height:100%;margin-bottom:-53px;}#mainPush{height:0;}#mainHeader{background:#404040;}#MHTop{background:url(images/gradient5.png) repeat-x 0 45px;}#MHTop.NoDark{background:#fff;}#MHInfo{width:1000px;}#MHILLogo{background:url(images/logoW.png) no-repeat;height:34px;margin:8px 0 8px 0;}#MHTop.NoDark #MHILLogo{background:url(images/logo.png) no-repeat;}#MHILeft{padding:0;width:180px;}#MHILeft>h4{display:inline-block;color:#b32323;line-height:50px;position:absolute;}#MHILeft>h4>span{font-weight:bold;}#MHIMiddle>ul{margin-left:150px;}#MHIMiddle>ul>li{width:125px;display:inline-block;text-align:center;height:50px;line-height:50px;}#MHIMiddle>ul>li>a{font-size:16px;font-weight:bold;color:#fff;width:125px;text-align:center;text-shadow:-1px -1px #202020;}#MHIMiddle>ul>li.falconAvailable:hover{background:url(images/buttonGlow.png) no-repeat;}#MHIMiddle>ul>li.falconAvailable:hover>a{color:#a3a3a3;cursor:default;}#MHIRight{width:500px;text-align:right;vertical-align:middle!important;}#MHIRight a{font-weight:bold;color:#fff;}#MHIRight span{color:#fff;}#mainHeader ul{list-style:none;}#mainNavContainer{height:40px;background:#851b1b;border-bottom:1px solid #4e0000;}#mainNav{position:relative;}#mainNav>ul{height:40px;list-style:none;display:inline-table;border-left:1px solid #4e0000;border-right:1px solid #a20000;}#mainNav>ul>li{display:inline-block;}#mainNav>ul>li>a{font-size:12px;font-weight:bold;color:#fff;display:block;width:125px;text-align:center;height:40px;line-height:40px;text-shadow:1px 1px #000;border-left:1px solid #a20000;border-right:1px solid #4e0000;}#mainNav>ul>li.active{background:#e0e0e0;}#mainNav>ul>li.active>a{color:#851b1b;text-shadow:1px 1px #fff;}#mainNav>ul>li.falconNotAvailable>a{color:#a3a3a3;cursor:default;}#mainNavButtons>li.falconAvailable:hover{background:#900000;}#mainNavButtons{font-size:0;}#MCWait{background:url(images/LoadingCircle.gif) no-repeat;height:64px;width:64px;z-index:2;position:fixed;left:50%;top:50%;display:none;}#footer{padding-bottom:20px;}#mainFooter{height:50px;line-height:45px;clear:both;position:relative;border-top:solid 3px #b00000;background:#303030;z-index:2;background:-webkit-linear-gradient(top,#202020,#404040);background:-webkit-gradient(linear,left top,left bottom,from(#202020),to(#404040));background:-moz-linear-gradient(top,#202020,#404040);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#202020',endColorstr='#404040');}#MFLeft{float:right;padding-right:150px;margin-right:50%;}#MFLeft h5{text-align:center;color:#949494;font-size:.75em;}#MFMiddle{width:100%;position:absolute;}#MFMiddle h2{color:#fff;text-align:center;}#MFRight{float:left;padding-left:180px;margin-left:50%;position:absolute;height:45px;}#MFRight ul{list-style:none;display:inline-block;margin:0;padding:0;zoom:1;*display:inline;}#MFRight ul li{float:left;margin-left:10px;}#MFRight ul li a{font-size:10px;color:#959595;text-transform:uppercase;}#MFRight h5{margin-left:150px;color:#949494;font-size:.75em;}.adobeSignFrame{border:1px;overflow:scroll;min-width:980px;height:650px;}.adobeSignDiv{border-radius:10px;background-color:#fe9;padding:5px 10px;font-size:12px;}.adobeSignAlert{border-radius:10px;background-color:#f08080;padding:5px 10px;font-size:12px;}@font-face{font-family:'icomoon';src:url('/Content/fonts/icomoon.eot?l9i99f');src:url('/Content/fonts/icomoon.eot?l9i99f#iefix') format('embedded-opentype'),url('/Content/fonts/icomoon.woff2?l9i99f') format('woff2'),url('/Content/fonts/icomoon.ttf?l9i99f') format('truetype'),url('/Content/fonts/icomoon.woff?l9i99f') format('woff'),url('/Content/fonts/icomoon.svg?l9i99f#icomoon') format('svg');font-weight:normal;font-style:normal;font-display:block;}[class^="icon-"],[class*=" icon-"]{font-family:'icomoon'!important;speak:never;font-style:normal;font-weight:normal;font-variant:normal;text-transform:none;line-height:1;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;}.icon-notice:before{content:"";}.icon-home:before{content:"";}.icon-pencil:before{content:"";}.icon-pencil2:before{content:"";}.icon-file-empty:before{content:"";}.icon-files-empty:before{content:"";}.icon-file-text2:before{content:"";}.icon-folder:before{content:"";}.icon-folder-open:before{content:"";}.icon-folder-download:before{content:"";}.icon-folder-upload:before{content:"";}.icon-coin-dollar:before{content:"";}.icon-print:before{content:"";}.icon-user:before{content:"";}.icon-user-plus:before{content:"";}.icon-user-minus:before{content:"";}.icon-user-tie:before{content:"";}.icon-load-spinner:before{content:"";}.icon-search:before{content:"";}.icon-key:before{content:"";}.icon-lock:before{content:"";}.icon-unlock:before{content:"";}.icon-cog:before{content:"";}.icon-bug:before{content:"";}.icon-attachment:before{content:"";}.icon-star-full:before{content:"";}.icon-warning:before{content:"";}.icon-cancel-circle:before{content:"";}.icon-exit:before{content:"";}.icon-arrow-up:before{content:"";}.icon-arrow-right:before{content:"";}.icon-arrow-down:before{content:"";}.icon-arrow-left:before{content:"";}.icon-circle-up:before{content:"";}.icon-circle-right:before{content:"";}.icon-circle-down:before{content:"";}.icon-circle-left:before{content:"";}.icon-file-pdf:before{content:"";}.icon-file-word:before{content:"";}.icon-file-excel:before{content:"";}.icon-file-empty-checkbox:before{content:"";}.icon-file-empty-outline:before{content:"";}.icon-add:before{content:"";}.icon-yes:before{content:"";}.icon-no-alt:before{content:"";}.icon-download:before{content:"";}.icon-restore:before{content:"";}.icon-sync:before{content:"";}.icon-image:before{content:"";}.icon-edit:before{content:"";}.icon-info:before{content:"";}.icon-no-circle:before{content:"";}.icon-yes-circle:before{content:"";}.icon-no:before{content:"";}.icon-email-forward:before{content:"";}.icon-upArrow:before{content:"";}.icon-downArrow:before{content:"";}.icon-upload:before{content:"";}.icon-documents:before{content:"";}.icon-attach:before{content:"";}.icon-floppy-disk:before{content:"";}.icon-dropdown:before{content:"";}.icon-bell:before{content:"";}.icon-chevron-double-left:before{content:"";}.icon-chevron-double-right:before{content:"";}.icon-chevron-left:before{content:"";}.icon-chevron-right:before{content:"";}.icon-reply:before{content:"";}.icon-replyAll:before{content:"";}.icon-circle-left-filled:before{content:"";}.icon-circle-right-filled:before{content:"";}.icon-circle-up-filled:before{content:"";}.icon-circle-down-filled:before{content:"";}.icon-usd:before{content:"";}.icon-mortarboard:before{content:"";}.icon-bin:before{content:"";}.icon-diamond:before{content:"";}.icon-user-circle:before{content:"";}.icon-assign:before{content:"";}.icon-assignEmployee:before{content:"";}.icon-checkbox-checked:before{content:"";}.icon-checkbox-empty:before{content:"";}.icon-close:before{content:"";}.icon-assignDiary:before{content:"";}.icon-delete:before{content:"";}.icon-forward:before{content:"";}.icon-checkbox-some:before{content:"";}.icon-link:before{content:"";}.icon-email:before{content:"";}.icon-document-table:before{content:"";}.icon-document-file-pdf:before{content:"";}.icon-document-file-xls:before{content:"";}.icon-document-file-xlsx:before{content:"";}.icon-profile:before{content:"";}.icon-copy:before{content:"";}.icon-users:before{content:"";}.icon-user-check:before{content:"";}.icon-airplane:before{content:"";}.icon-sphere:before{content:"";}.icon-radio-checked:before{content:"";}.icon-radio-unchecked:before{content:"";}.icon-external-link:before{content:"";}.icon-info-circle:before{content:"";}.icon-angle-down:before{content:"";}.container{width:1000px;max-width:1000px;margin-left:auto;margin-right:auto;margin:auto calc((100vw - 1034px)/2) auto auto;display:table;}.container-cell{display:table-cell!important;vertical-align:middle;}.container-cell>.error-message{color:#d53131!important;}.container .container-cell:first-child{width:150px!important;}.containerMaster{position:relative;top:0;left:0;min-width:1000px;margin-left:auto;margin-right:auto;height:100%;}.threeCol{width:100%;}.threeColThird{width:50%;position:absolute;right:0;top:0;height:100%;}.threeCol .threeColThird h2{margin-left:auto;margin-right:auto;height:100%;}#mainContent{overflow:auto;min-width:1000px;position:relative;color:#000;}div.maincontent{background:#e0e0e0!important;}div.maincontent>header{border-top:1px solid #000;border-bottom:solid 1px #fff;background:#d0d0d0;}div.maincontent>header>div.falcTitle{border-top:1px solid #fff;border-bottom:1px solid #a0a0a0;}div.maincontent>header>div.falcTitle h1{padding-top:10px;padding-bottom:10px;display:table-cell;padding-left:25px;}div.maincontent>header>div.falcTitle div.falcButton{display:table-cell;vertical-align:middle;width:50px;}.falcBackButton{font-size:12px;font-weight:bold;padding:5px 0;width:125px;text-shadow:1px 1px #333;background:#6b0707;background:-webkit-gradient(linear,left top,left bottom,from(#dd3c3c),to(#a01a1a));background:-webkit-linear-gradient(top,#dd3c3c,#a01a1a);background:-moz-linear-gradient(top,#dd3c3c,#a01a1a);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#dd3c3c',endColorstr='#a01a1a');color:#fff;cursor:pointer;text-align:center;border:solid 1px #a36161;-webkit-border-radius:3px;-moz-border-radius:3px;border-radius:3px;-moz-box-shadow:inset 1px 1px 0 #e97f80;-webkit-box-shadow:inset 1px 1px 0 #e97f80;box-shadow:inset 1px 1px 0 #e97f80;}.falcBackButton:hover{background:#4d0505;background:-webkit-gradient(linear,left top,left bottom,from(#c42222),to(#741313));background:-webkit-linear-gradient(top,#c42222,#741313);background:-moz-linear-gradient(top,#c42222,#741313);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#c42222',endColorstr='#741313');}.falcForwardButton,.falcForwardButton.falcIsDisabled:hover{font-size:12px;font-weight:bold;padding:5px 0;width:125px;text-shadow:1px 1px #333;background:#6bc138;background:-webkit-gradient(linear,left top,left bottom,from(#79ca48),to(#4a8527));background:-webkit-linear-gradient(top,#79ca48,#4a8527);background:-moz-linear-gradient(top,#79ca48,#4a8527);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#79ca48',endColorstr='#4a8527');color:#fff;cursor:pointer;text-align:center;border:solid 1px #345e1b;-webkit-border-radius:3px;-moz-border-radius:3px;border-radius:3px;-moz-box-shadow:inset 1px 1px 0 #a4db83;-webkit-box-shadow:inset 1px 1px 0 #a4db83;box-shadow:inset 1px 1px 0 #a4db83;}.falcForwardButton:hover{background:#55992d;background:-webkit-gradient(linear,left top,left bottom,from(#60ad32),to(#345e1b));background:-webkit-linear-gradient(top,#60ad32,#345e1b);background:-moz-linear-gradient(top,#60ad32,#345e1b);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#60ad32',endColorstr='#345e1b');}.falcForwardButton.falcIsDisabled,.falcForwardButton.falcIsDisabled:hover{opacity:.5;cursor:default;}#btnTopInsuredSignLimitedDiscDocs{margin-right:5px;}div.maincontent section{margin-top:25px;}div.maincontent section>div{margin-top:20px;}div.maincontent section table{margin-top:20px;}#SLMessages .container{margin-bottom:-10px;}div.maincontent>footer{margin-top:25px;padding-top:25px;padding-bottom:25px;width:1000px;margin-left:auto;margin-right:auto;}div.maincontent>section>header{background:#e5e5e5;border-top:solid 1px #c0c0c0;border-bottom:solid 1px #fff;}div.maincontent>section>header>div.falcTitle{border-top:solid 1px #fff;border-bottom:solid 1px #c0c0c0;}div.maincontent>section>header h2{width:1000px;margin:auto calc((100vw - 1034px)/2) auto auto;padding:5px 0 5px 0;}div.maincontent>section>section>header h3{padding:0 5px 5px 0;display:inline-block;border-bottom:solid 1px #b0b0b0;-moz-box-shadow:0 1px 0 #f0f0f0,inset 0 -1px 0 #d0d0d0;-webkit-box-shadow:0 1px 0 #f0f0f0,inset 0 -1px 0 #d0d0d0;box-shadow:0 1px 0 #f0f0f0,inset 0 -1px 0 #d0d0d0;}div.maincontent>footer{width:100%;border-top:solid 1px #b0b0b0;-moz-box-shadow:0 -1px 0 #d0d0d0,inset 0 1px 0 #f0f0f0;-webkit-box-shadow:0 -1px 0 #d0d0d0,inset 0 1px 0 #f0f0f0;box-shadow:0 -1px 0 #d0d0d0,inset 0 1px 0 #f0f0f0;}div.maincontent section>div:after{visibility:hidden;font-size:.1em;display:block;height:0;content:" ";clear:both;}div.maincontent footer>div:after{visibility:hidden;font-size:.1em;display:block;height:0;content:" ";clear:both;}.subtext{font-size:14px;font-style:italic;color:#808080;}.light{color:#909090;}.warning{color:#851b1b;}.clear{clear:both;}.inline-vcenter-container{display:table;position:relative;width:100%;}.inline-vcenter-container>div{display:table-cell;vertical-align:middle;}.clearfix:after{content:".";display:block;height:0;clear:both;visibility:hidden;}.clearfix{display:inline-block;}.noTop{margin-top:0;}.moreTop{padding-top:10px;}.falcVertMiddle,.falcInputControl.falcVertMiddle{display:table-cell;vertical-align:middle;float:none;}.falcVertMiddle.renewCancelButton{padding-right:15vw;}.falcVertCont{display:table;}.falcFull{width:100%;}.falcTopSpace{margin-top:20px;}.falcIndent{margin-left:20px;}.falcIndentSmall{margin-left:10px;}.falcSpaceTop{margin-top:10px;}.falcSpaceBottom{margin-bottom:10px;}.falcCentered{margin-left:auto;margin-right:auto;}.falcIndentWidth{width:960px;}.falcTextCentered{text-align:center;}.falcFloatRight,.falcInputControl.falcFloatRight{text-align:right;}.falcPinBottom{position:absolute;bottom:0;}.falcSpacer{border-top:solid 1px #a0a0a0;border-bottom:solid 1px #fff;margin-top:20px;margin-bottom:20px;}@keyframes positive-pulse{from{-moz-box-shadow:inset 0 1px 0 #a4db83,inset 1px 0 0 #b3e197;-webkit-box-shadow:inset 0 1px 0 #a4db83,inset 1px 0 0 #b3e197;box-shadow:inset 0 1px 0 #a4db83,inset 1px 0 0 #b3e197;}to{-moz-box-shadow:inset 0 5px 4px #a4db83,inset 1px 0 0 #b3e197,inset 0 -5px 4px #3f7221;-webkit-box-shadow:inset 0 5px 4px #a4db83,inset 1px 0 0 #b3e197,inset 0 -5px 4px #3f7221;box-shadow:inset 0 5px 4px #a4db83,inset 1px 0 0 #b3e197,inset 0 -5px 4px #3f7221;}}@-moz-keyframes positive-pulse{from{-moz-box-shadow:inset 0 1px 0 #a4db83,inset 1px 0 0 #b3e197;-webkit-box-shadow:inset 0 1px 0 #a4db83,inset 1px 0 0 #b3e197;box-shadow:inset 0 1px 0 #a4db83,inset 1px 0 0 #b3e197;}to{-moz-box-shadow:inset 0 5px 4px #a4db83,inset 1px 0 0 #b3e197,inset 0 -5px 4px #3f7221;-webkit-box-shadow:inset 0 5px 4px #a4db83,inset 1px 0 0 #b3e197,inset 0 -5px 4px #3f7221;box-shadow:inset 0 5px 4px #a4db83,inset 1px 0 0 #b3e197,inset 0 -5px 4px #3f7221;}}@-webkit-keyframes positive-pulse{from{-moz-box-shadow:inset 0 1px 0 #a4db83,inset 1px 0 0 #b3e197;-webkit-box-shadow:inset 0 1px 0 #a4db83,inset 1px 0 0 #b3e197;box-shadow:inset 0 1px 0 #a4db83,inset 1px 0 0 #b3e197;}to{-moz-box-shadow:inset 0 5px 4px #a4db83,inset 1px 0 0 #b3e197,inset 0 -5px 4px #3f7221;-webkit-box-shadow:inset 0 5px 4px #a4db83,inset 1px 0 0 #b3e197,inset 0 -5px 4px #3f7221;box-shadow:inset 0 5px 4px #a4db83,inset 1px 0 0 #b3e197,inset 0 -5px 4px #3f7221;}}@-o-keyframes positive-pulse{from{-moz-box-shadow:inset 0 1px 0 #a4db83,inset 1px 0 0 #b3e197;-webkit-box-shadow:inset 0 1px 0 #a4db83,inset 1px 0 0 #b3e197;box-shadow:inset 0 1px 0 #a4db83,inset 1px 0 0 #b3e197;}to{-moz-box-shadow:inset 0 5px 4px #a4db83,inset 1px 0 0 #b3e197,inset 0 -5px 4px #3f7221;-webkit-box-shadow:inset 0 5px 4px #a4db83,inset 1px 0 0 #b3e197,inset 0 -5px 4px #3f7221;box-shadow:inset 0 5px 4px #a4db83,inset 1px 0 0 #b3e197,inset 0 -5px 4px #3f7221;}}@keyframes negative-pulse{from{-moz-box-shadow:inset 0 1px 0 #d94646,inset 1px 0 0 #de5b5b;-webkit-box-shadow:inset 0 1px 0 #d94646,inset 1px 0 0 #de5b5b;box-shadow:inset 0 1px 0 #d94646,inset 1px 0 0 #de5b5b;}to{-moz-box-shadow:inset 0 5px 4px #d94646,inset 1px 0 0 #de5b5b,inset 0 -5px 4px #450e0e;-webkit-box-shadow:inset 0 5px 4px #d94646,inset 1px 0 0 #de5b5b,inset 0 -5px 4px #450e0e;box-shadow:inset 0 5px 4px #d94646,inset 1px 0 0 #de5b5b,inset 0 -5px 4px #450e0e;}}@-moz-keyframes negative-pulse{from{-moz-box-shadow:inset 0 1px 0 #d94646,inset 1px 0 0 #de5b5b;-webkit-box-shadow:inset 0 1px 0 #d94646,inset 1px 0 0 #de5b5b;box-shadow:inset 0 1px 0 #d94646,inset 1px 0 0 #de5b5b;}to{-moz-box-shadow:inset 0 5px 4px #d94646,inset 1px 0 0 #de5b5b,inset 0 -5px 4px #450e0e;-webkit-box-shadow:inset 0 5px 4px #d94646,inset 1px 0 0 #de5b5b,inset 0 -5px 4px #450e0e;box-shadow:inset 0 5px 4px #d94646,inset 1px 0 0 #de5b5b,inset 0 -5px 4px #450e0e;}}@-webkit-keyframes negative-pulse{from{-moz-box-shadow:inset 0 1px 0 #d94646,inset 1px 0 0 #de5b5b;-webkit-box-shadow:inset 0 1px 0 #d94646,inset 1px 0 0 #de5b5b;box-shadow:inset 0 1px 0 #d94646,inset 1px 0 0 #de5b5b;}to{-moz-box-shadow:inset 0 5px 4px #d94646,inset 1px 0 0 #de5b5b,inset 0 -5px 4px #450e0e;-webkit-box-shadow:inset 0 5px 4px #d94646,inset 1px 0 0 #de5b5b,inset 0 -5px 4px #450e0e;box-shadow:inset 0 5px 4px #d94646,inset 1px 0 0 #de5b5b,inset 0 -5px 4px #450e0e;}}@-o-keyframes negative-pulse{from{-moz-box-shadow:inset 0 1px 0 #d94646,inset 1px 0 0 #de5b5b;-webkit-box-shadow:inset 0 1px 0 #d94646,inset 1px 0 0 #de5b5b;box-shadow:inset 0 1px 0 #d94646,inset 1px 0 0 #de5b5b;}to{-moz-box-shadow:inset 0 5px 4px #d94646,inset 1px 0 0 #de5b5b,inset 0 -5px 4px #450e0e;-webkit-box-shadow:inset 0 5px 4px #d94646,inset 1px 0 0 #de5b5b,inset 0 -5px 4px #450e0e;box-shadow:inset 0 5px 4px #d94646,inset 1px 0 0 #de5b5b,inset 0 -5px 4px #450e0e;}}#mainContent table thead tr td{vertical-align:bottom;padding-bottom:4px;font-weight:bold;font-size:12px;}#mainContent table tbody tr .falcInputControl{margin-right:5px;}#mainContent table tbody tr td:first-child{padding-left:10px;}#mainContent table tfoot td>div{border-left:1px solid #b0b0b0;border-bottom:1px solid #f0f0f0;border-right:1px solid #f0f0f0;border-top:0;margin-left:3px;margin-right:3px;padding-left:10px;padding-bottom:10px;background:#d0d0d0;}#mainContent table tfoot td div:after{visibility:hidden;font-size:.1em;display:block;height:0;content:" ";clear:both;}#mainContent table tfoot td>div>div{padding-top:8px;}#mainContent table .delete-container{position:relative;display:table;}#mainContent table .delete-driver-row{position:absolute;right:-112px;}#mainContent table .delete-vehicle-row{position:absolute;right:-112px;top:36px;}#mainContent table .vin-search-row{position:absolute;right:-112px;top:6px;}#mainContent table.tworow tbody>tr:first-of-type{border-bottom:0;}#mainContent table.tworow tbody>tr:nth-of-type(2){border-top:0;}#mainContent table.tworow tbody>tr:nth-of-type(2) .falcInputControl{margin-right:20px;}#mainContent table.tworow tbody>tr:first-of-type td{padding-bottom:0;}#mainContent tr.spacer{border:0;background:none;}#mainContent table>tbody>tr.spacer>td{padding:0 1px 0 2px;}#mainContent tr.spacer>td>div{height:4px;background:#e0e0e0;background-color:#NaNNaNNaN!important;background-image:none!important;background-size:100% 103%!important;filter:progid:DXImageTransform.Microsoft.gradient(startColorStr=#ededed,endColorstr=#a1a1a1)!important;-ms-filter:progid:DXImageTransform.Microsoft.gradient(startColorStr=#ededed,endColorstr=#a1a1a1)!important;background:-webkit-gradient(linear,left bottom,left top,color-stop(0,#ededed),color-stop(1,#a1a1a1))!important;background:-webkit-linear-gradient(bottom,#ededed,#a1a1a1)!important;background:-moz-linear-gradient(bottom,#ededed,#a1a1a1)!important;background:-ms-linear-gradient(bottom,#ededed,#a1a1a1)!important;background:-o-linear-gradient(bottom,#ededed,#a1a1a1)!important;background:linear-gradient(to top,#ededed 0%,#a1a1a1 100%)!important;}.ui-button.ui-widget .ui-icon.close-button{background-position:-80px -128px;}.ui-button.ui-widget .ui-icon.falcCloseIcon{background-position:-80px -128px;}.falcInputControl button{border:1px solid #a0a0a0;height:37px;background-color:#NaNNaNNaN;background-image:none;background-size:100% 103%;filter:progid:DXImageTransform.Microsoft.gradient(startColorStr=#ffffff,endColorstr=#e1e1e1);-ms-filter:progid:DXImageTransform.Microsoft.gradient(startColorStr=#ffffff,endColorstr=#e1e1e1);background:-webkit-gradient(linear,left top,left bottom,color-stop(0,#fff),color-stop(1,#e1e1e1));background:-webkit-linear-gradient(top,#fff,#e1e1e1);background:-moz-linear-gradient(top,#fff,#e1e1e1);background:-ms-linear-gradient(top,#fff,#e1e1e1);background:-o-linear-gradient(top,#fff,#e1e1e1);background:linear-gradient(to bottom,#fff 0%,#e1e1e1 100%);-moz-box-shadow:#b0b0b0 0 0 5px 0;-webkit-box-shadow:#b0b0b0 0 0 5px 0;box-shadow:#b0b0b0 0 0 5px 0;-webkit-border-radius:5px;-moz-border-radius:5px;border-radius:5px;-webkit-background-clip:padding-box;-moz-background-clip:padding;background-clip:padding-box;}.falcon-button{display:flex;padding:5px 0;text-align:center;float:left;border:1px solid #b0b0b0;-moz-box-shadow:#606060 0 0 6px -2px;-webkit-box-shadow:#606060 0 0 6px -2px;box-shadow:#606060 0 0 6px -2px;cursor:pointer;}.falcon-button.remove{display:block;font-size:11px;font-weight:bold;padding:5px 0;width:90px;text-shadow:1px 1px #333;background:#6b0707;background:-webkit-gradient(linear,left top,left bottom,from(#dd3c3c),to(#a01a1a));background:-webkit-linear-gradient(top,#dd3c3c,#a01a1a);background:-moz-linear-gradient(top,#dd3c3c,#a01a1a);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#dd3c3c',endColorstr='#a01a1a');color:#fff;border:solid 1px #a36161;-webkit-border-radius:3px;-moz-border-radius:3px;border-radius:3px;-moz-box-shadow:inset 1px 1px 0 #e97f80;-webkit-box-shadow:inset 1px 1px 0 #e97f80;box-shadow:inset 1px 1px 0 #e97f80;cursor:pointer;}.falcon-button.remove .falcon-button-icon{background:url(images/remove.png) no-repeat;display:inline-block;height:4px;width:13px;margin-right:5px;position:relative;top:-2px;}.falcon-button.vinlookup{display:block;font-size:11px;font-weight:bold;padding:5px 0;width:90px;text-shadow:1px 1px #333;color:#fff;border:solid 1px #345e1b;cursor:pointer;background-color:#NaNNaNNaN!important;background-image:none!important;background-size:100% 103%!important;filter:progid:DXImageTransform.Microsoft.gradient(startColorStr=#79ca48,endColorstr=#4a8527)!important;-ms-filter:progid:DXImageTransform.Microsoft.gradient(startColorStr=#79ca48,endColorstr=#4a8527)!important;background:-webkit-gradient(linear,left top,left bottom,color-stop(0,#79ca48),color-stop(1,#4a8527))!important;background:-webkit-linear-gradient(top,#79ca48,#4a8527)!important;background:-moz-linear-gradient(top,#79ca48,#4a8527)!important;background:-ms-linear-gradient(top,#79ca48,#4a8527)!important;background:-o-linear-gradient(top,#79ca48,#4a8527)!important;background:linear-gradient(to bottom,#79ca48 0%,#4a8527 100%)!important;-moz-box-shadow:inset 1px 1px 0 #a4db83;-webkit-box-shadow:inset 1px 1px 0 #a4db83;box-shadow:inset 1px 1px 0 #a4db83;-webkit-border-radius:3px;-moz-border-radius:3px;border-radius:3px;-webkit-background-clip:padding-box;-moz-background-clip:padding;background-clip:padding-box;}.falcon-button.vinlookupendorse{font-size:11px;margin:23px 0 0 5px;font-weight:bold;padding:5px 0;width:90px;text-shadow:1px 1px #333;color:#fff;border:solid 1px #345e1b;cursor:pointer;background-color:#NaNNaNNaN!important;background-image:none!important;background-size:100% 103%!important;filter:progid:DXImageTransform.Microsoft.gradient(startColorStr=#79ca48,endColorstr=#4a8527)!important;-ms-filter:progid:DXImageTransform.Microsoft.gradient(startColorStr=#79ca48,endColorstr=#4a8527)!important;background:-webkit-gradient(linear,left top,left bottom,color-stop(0,#79ca48),color-stop(1,#4a8527))!important;background:-webkit-linear-gradient(top,#79ca48,#4a8527)!important;background:-moz-linear-gradient(top,#79ca48,#4a8527)!important;background:-ms-linear-gradient(top,#79ca48,#4a8527)!important;background:-o-linear-gradient(top,#79ca48,#4a8527)!important;background:linear-gradient(to bottom,#79ca48 0%,#4a8527 100%)!important;-moz-box-shadow:inset 1px 1px 0 #a4db83;-webkit-box-shadow:inset 1px 1px 0 #a4db83;box-shadow:inset 1px 1px 0 #a4db83;-webkit-border-radius:3px;-moz-border-radius:3px;border-radius:3px;-webkit-background-clip:padding-box;-moz-background-clip:padding;background-clip:padding-box;}.falcon-button.vinlookup .falcon-button-icon{background:url(images/searchDark.png) no-repeat;display:inline-block;height:14px;width:13px;margin-left:6px;position:relative;float:left;}.falcon-button.vinlookupendorse .falcon-button-icon{background:url(images/searchDark.png) no-repeat;display:inline-block;height:14px;width:13px;margin-left:6px;position:relative;float:left;}.falcon-button.add{font-size:11px;font-weight:bold;margin:0 20px 0 0;text-shadow:1px 1px #3f7221;color:#fff;border:solid 1px #345e1b;cursor:pointer;padding:5px;background-color:#NaNNaNNaN!important;background-image:none!important;background-size:100% 103%!important;filter:progid:DXImageTransform.Microsoft.gradient(startColorStr=#79ca48,endColorstr=#4a8527)!important;-ms-filter:progid:DXImageTransform.Microsoft.gradient(startColorStr=#79ca48,endColorstr=#4a8527)!important;background:-webkit-gradient(linear,left top,left bottom,color-stop(0,#79ca48),color-stop(1,#4a8527))!important;background:-webkit-linear-gradient(top,#79ca48,#4a8527)!important;background:-moz-linear-gradient(top,#79ca48,#4a8527)!important;background:-ms-linear-gradient(top,#79ca48,#4a8527)!important;background:-o-linear-gradient(top,#79ca48,#4a8527)!important;background:linear-gradient(to bottom,#79ca48 0%,#4a8527 100%)!important;-moz-box-shadow:inset 1px 1px 0 #a4db83;-webkit-box-shadow:inset 1px 1px 0 #a4db83;box-shadow:inset 1px 1px 0 #a4db83;-webkit-border-radius:5px;-moz-border-radius:5px;border-radius:5px;-webkit-background-clip:padding-box;-moz-background-clip:padding;background-clip:padding-box;}.falcon-button.addButton{height:27px;font-weight:bold;margin:0 20px 0 0;text-shadow:1px 1px #3f7221;color:#fff;border:solid 1px #345e1b;cursor:pointer;padding:5px;background-color:#NaNNaNNaN!important;background-image:none!important;background-size:100% 103%!important;filter:progid:DXImageTransform.Microsoft.gradient(startColorStr=#79ca48,endColorstr=#4a8527)!important;-ms-filter:progid:DXImageTransform.Microsoft.gradient(startColorStr=#79ca48,endColorstr=#4a8527)!important;background:-webkit-gradient(linear,left top,left bottom,color-stop(0,#79ca48),color-stop(1,#4a8527))!important;background:-webkit-linear-gradient(top,#79ca48,#4a8527)!important;background:-moz-linear-gradient(top,#79ca48,#4a8527)!important;background:-ms-linear-gradient(top,#79ca48,#4a8527)!important;background:-o-linear-gradient(top,#79ca48,#4a8527)!important;background:linear-gradient(to bottom,#79ca48 0%,#4a8527 100%)!important;-moz-box-shadow:inset 1px 1px 0 #a4db83;-webkit-box-shadow:inset 1px 1px 0 #a4db83;box-shadow:inset 1px 1px 0 #a4db83;-webkit-border-radius:5px;-moz-border-radius:5px;border-radius:5px;-webkit-background-clip:padding-box;-moz-background-clip:padding;background-clip:padding-box;}.falcon-button.addButton .falcon-button-icon{background:url(images/add.png) no-repeat;display:inline-block;height:9px;width:9px;margin-right:1px;position:relative;top:1px;}.falcon-button.add .falcon-button-icon{background:url(images/add.png) no-repeat;display:inline-block;height:9px;width:9px;margin-right:1px;position:relative;top:1px;}.falcon-button.submit{font-weight:bold;margin-right:20px;padding:7px 30px;text-shadow:1px 1px #30671c;font-size:20px;background:#efefef;background:-webkit-gradient(linear,left top,left bottom,from(#88c862),to(#4fa716));background:-webkit-linear-gradient(top,#88c862,#4fa716);background:-moz-linear-gradient(top,#88c862,#4fa716);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#88c862',endColorstr='#4fa716');color:#fff;border:solid 1px #276800;-webkit-border-radius:7px;-moz-border-radius:7px;border-radius:7px;-moz-box-shadow:inset 0 1px 0 #aed080,inset 1px 0 0 #b2e368;-webkit-box-shadow:inset 0 1px 0 #aed080,inset 1px 0 0 #b2e368;box-shadow:inset 0 1px 0 #aed080,inset 1px 0 0 #b2e368;}.falcon-button.cancel{font-weight:bold;margin-right:20px;padding:7px 40px;margin-top:4px;font-size:13.5px;background:#e0e0e0;background:-webkit-gradient(linear,left top,left bottom,color-stop(0,#d8d8d8),color-stop(1,#e8e8e8));background:-webkit-linear-gradient(top,#d8d8d8,#e8e8e8);background:-moz-linear-gradient(top,#d8d8d8,#e8e8e8);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#D8D8D8',endColorstr='#E8E8E8');color:#404040;text-shadow:0 1px #fff;border:solid 1px #a0a0a0;-webkit-border-radius:5px;-moz-border-radius:5px;border-radius:5px;-moz-box-shadow:inset 1px 1px 0 white,1px 1px 0 white,#a0a0a0 0 0 1px 0;-webkit-box-shadow:inset 1px 1px 0 white,1px 1px 0 white,#a0a0a0 0 0 1px 0;box-shadow:inset 1px 1px 0 white,1px 1px 0 white,#a0a0a0 0 0 1px 0;}.falcon-button.anti-theft{font-weight:bold;padding:10px 15px;font-weight:normal;background:#efefef;background:-webkit-gradient(linear,left top,left bottom,from(#fff),to(#efefef));background:-webkit-linear-gradient(top,#fff,#efefef);background:-moz-linear-gradient(top,#fff,#efefef);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff',endColorstr='#efefef');color:#575757;border:solid 1px #d3d3d3;-webkit-border-radius:5px;-moz-border-radius:5px;border-radius:5px;-moz-box-shadow:inset 1px 1px 0 #eeeeef,0 1px 0 #fff;-webkit-box-shadow:inset 1px 1px 0 #eeeeef,0 1px 0 #fff;box-shadow:inset 1px 1px 0 #eeeeef,0 1px 0 #fff;}.falcon-button.grey{font-weight:bold;padding:9px 5px;width:160px;margin-right:8px;background:#efefef;background:-webkit-gradient(linear,left top,left bottom,from(#fff),to(#d9d9d9));background:-webkit-linear-gradient(top,#fff,#d9d9d9);background:-moz-linear-gradient(top,#fff,#d9d9d9);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff',endColorstr='#d9d9d9');color:#575757;-webkit-border-radius:5px;-moz-border-radius:5px;border-radius:5px;cursor:pointer;}.falcon-button.grey .falcon-button-icon{display:inline-block;height:14px;width:16px;margin-right:6px;position:relative;top:2px;background-position:0 0;}.falcon-button.grey.delete .falcon-button-icon{background:url(images/delete.png) no-repeat;}.falcon-button.grey.edit .falcon-button-icon{background:url(images/edit.png) no-repeat;}.sz20{font-size:20px!important;}.falcon-button.grey.download .falcon-button-icon{background:url(images/download.png) no-repeat;}.falcon-button.grey.email .falcon-button-icon{background:url(images/email.png) no-repeat;}.falcon-button.grey.print .falcon-button-icon{background:url(images/print.png) no-repeat;}div.button{cursor:pointer;}.falcon-button.verypositive{font-size:18px;padding:7px 5px;font-weight:bold;text-shadow:1px 1px #3f7221;color:#fff;border:solid 1px #345e1b;cursor:pointer;background-color:#NaNNaNNaN!important;background-image:none!important;background-size:100% 103%!important;filter:progid:DXImageTransform.Microsoft.gradient(startColorStr=#79ca48,endColorstr=#4a8527)!important;-ms-filter:progid:DXImageTransform.Microsoft.gradient(startColorStr=#79ca48,endColorstr=#4a8527)!important;background:-webkit-gradient(linear,left top,left bottom,color-stop(0,#79ca48),color-stop(1,#4a8527))!important;background:-webkit-linear-gradient(top,#79ca48,#4a8527)!important;background:-moz-linear-gradient(top,#79ca48,#4a8527)!important;background:-ms-linear-gradient(top,#79ca48,#4a8527)!important;background:-o-linear-gradient(top,#79ca48,#4a8527)!important;background:linear-gradient(to bottom,#79ca48 0%,#4a8527 100%)!important;-moz-box-shadow:inset 0 1px 0 #a4db83,inset 1px 0 0 #b3e197;-webkit-box-shadow:inset 0 1px 0 #a4db83,inset 1px 0 0 #b3e197;box-shadow:inset 0 1px 0 #a4db83,inset 1px 0 0 #b3e197;}.falcon-button.verynegative{font-size:18px;padding:7px 5px;font-weight:bold;text-shadow:1px 1px #450e0e;color:#fff;border:solid 1px #300a0a;cursor:pointer;background-color:#NaNNaNNaN!important;background-image:none!important;background-size:100% 103%!important;filter:progid:DXImageTransform.Microsoft.gradient(startColorStr=#af2424,endColorstr=#5b1212)!important;-ms-filter:progid:DXImageTransform.Microsoft.gradient(startColorStr=#af2424,endColorstr=#5b1212)!important;background:-webkit-gradient(linear,left top,left bottom,color-stop(0,#af2424),color-stop(1,#5b1212))!important;background:-webkit-linear-gradient(top,#af2424,#5b1212)!important;background:-moz-linear-gradient(top,#af2424,#5b1212)!important;background:-ms-linear-gradient(top,#af2424,#5b1212)!important;background:-o-linear-gradient(top,#af2424,#5b1212)!important;background:linear-gradient(to bottom,#af2424 0%,#5b1212 100%)!important;-moz-box-shadow:inset 0 1px 0 #d94646,inset 1px 0 0 #de5b5b;-webkit-box-shadow:inset 0 1px 0 #d94646,inset 1px 0 0 #de5b5b;box-shadow:inset 0 1px 0 #d94646,inset 1px 0 0 #de5b5b;}.falcon-button.verypositive:hover{animation:positive-pulse 1s linear 0s infinite alternate;-moz-animation:positive-pulse 1s linear 0s infinite alternate;-webkit-animation:positive-pulse 1s linear 0s infinite alternate;-o-animation:positive-pulse 1s linear 0s infinite alternate;}.falcon-button.verynegative:hover{animation:negative-pulse 1s linear 0s infinite alternate;-moz-animation:negative-pulse 1s linear 0s infinite alternate;-webkit-animation:negative-pulse 1s linear 0s infinite alternate;-o-animation:negative-pulse 1s linear 0s infinite alternate;}.falcIsDisabled.falcInputControl .falcon-button.verypositive{opacity:.5;cursor:default;animation:unset;-moz-animation:unset;-webkit-animation:unset;-o-animation:unset;}.falcon-button.positive{font-weight:bold;text-shadow:1px 1px #3f7221;color:#fff;border:solid 1px #345e1b;cursor:pointer;background-color:#NaNNaNNaN!important;background-image:none!important;background-size:100% 103%!important;filter:progid:DXImageTransform.Microsoft.gradient(startColorStr=#79ca48,endColorstr=#4a8527)!important;-ms-filter:progid:DXImageTransform.Microsoft.gradient(startColorStr=#79ca48,endColorstr=#4a8527)!important;background:-webkit-gradient(linear,left top,left bottom,color-stop(0,#79ca48),color-stop(1,#4a8527))!important;background:-webkit-linear-gradient(top,#79ca48,#4a8527)!important;background:-moz-linear-gradient(top,#79ca48,#4a8527)!important;background:-ms-linear-gradient(top,#79ca48,#4a8527)!important;background:-o-linear-gradient(top,#79ca48,#4a8527)!important;background:linear-gradient(to bottom,#79ca48 0%,#4a8527 100%)!important;-moz-box-shadow:inset 0 1px 0 #a4db83,inset 1px 0 0 #b3e197;-webkit-box-shadow:inset 0 1px 0 #a4db83,inset 1px 0 0 #b3e197;box-shadow:inset 0 1px 0 #a4db83,inset 1px 0 0 #b3e197;}.falcIsDisabled.falcInputControl .falcon-button.positive{opacity:.5;cursor:default;animation:unset;-moz-animation:unset;-webkit-animation:unset;-o-animation:unset;}.falcon-button.negative{font-weight:bold;text-shadow:1px 1px #450e0e;color:#fff;border:solid 1px #300a0a;cursor:pointer;background-color:#NaNNaNNaN!important;background-image:none!important;background-size:100% 103%!important;filter:progid:DXImageTransform.Microsoft.gradient(startColorStr=#af2424,endColorstr=#5b1212)!important;-ms-filter:progid:DXImageTransform.Microsoft.gradient(startColorStr=#af2424,endColorstr=#5b1212)!important;background:-webkit-gradient(linear,left top,left bottom,color-stop(0,#af2424),color-stop(1,#5b1212))!important;background:-webkit-linear-gradient(top,#af2424,#5b1212)!important;background:-moz-linear-gradient(top,#af2424,#5b1212)!important;background:-ms-linear-gradient(top,#af2424,#5b1212)!important;background:-o-linear-gradient(top,#af2424,#5b1212)!important;background:linear-gradient(to bottom,#af2424 0%,#5b1212 100%)!important;-moz-box-shadow:inset 0 1px 0 #d94646,inset 1px 0 0 #de5b5b;-webkit-box-shadow:inset 0 1px 0 #d94646,inset 1px 0 0 #de5b5b;box-shadow:inset 0 1px 0 #d94646,inset 1px 0 0 #de5b5b;}.falcon-button.neutral{font-weight:bold;text-shadow:1px 1px #ffdf77;color:#000;border:solid 1px #ffd95e;cursor:pointer;background-color:#NaNNaNNaN!important;background-image:none!important;background-size:100% 103%!important;filter:progid:DXImageTransform.Microsoft.gradient(startColorStr=#fffdf7,endColorstr=#ffe591)!important;-ms-filter:progid:DXImageTransform.Microsoft.gradient(startColorStr=#fffdf7,endColorstr=#ffe591)!important;background:-webkit-gradient(linear,left top,left bottom,color-stop(0,#fffdf7),color-stop(1,#ffe591))!important;background:-webkit-linear-gradient(top,#fffdf7,#ffe591)!important;background:-moz-linear-gradient(top,#fffdf7,#ffe591)!important;background:-ms-linear-gradient(top,#fffdf7,#ffe591)!important;background:-o-linear-gradient(top,#fffdf7,#ffe591)!important;background:linear-gradient(to bottom,#fffdf7 0%,#ffe591 100%)!important;-moz-box-shadow:inset 0 1px 0 #fff,inset 1px 0 0 #fff;-webkit-box-shadow:inset 0 1px 0 #fff,inset 1px 0 0 #fff;box-shadow:inset 0 1px 0 #fff,inset 1px 0 0 #fff;}.falcIsDisabled.falcInputControl .falcon-button.remoteESign{opacity:.5;cursor:default;animation:unset;-moz-animation:unset;-webkit-animation:unset;-o-animation:unset;}.falcon-button.dark{font-weight:bold;text-shadow:1px 1px #7d7d7d;color:#fff;border:solid 1px #707070;cursor:pointer;background-color:#NaNNaNNaN!important;background-image:none!important;background-size:100% 103%!important;filter:progid:DXImageTransform.Microsoft.gradient(startColorStr=#bdbdbd,endColorstr=#8a8a8a)!important;-ms-filter:progid:DXImageTransform.Microsoft.gradient(startColorStr=#bdbdbd,endColorstr=#8a8a8a)!important;background:-webkit-gradient(linear,left top,left bottom,color-stop(0,#bdbdbd),color-stop(1,#8a8a8a))!important;background:-webkit-linear-gradient(top,#bdbdbd,#8a8a8a)!important;background:-moz-linear-gradient(top,#bdbdbd,#8a8a8a)!important;background:-ms-linear-gradient(top,#bdbdbd,#8a8a8a)!important;background:-o-linear-gradient(top,#bdbdbd,#8a8a8a)!important;background:linear-gradient(to bottom,#bdbdbd 0%,#8a8a8a 100%)!important;-moz-box-shadow:inset 0 1px 0 #fff,inset 1px 0 0 #fff;-webkit-box-shadow:inset 0 1px 0 #fff,inset 1px 0 0 #fff;box-shadow:inset 0 1px 0 #fff,inset 1px 0 0 #fff;}.falcon-button.action{font-weight:bold;text-shadow:1px 1px #fff;color:#000;border:solid 1px #bdbdbd;cursor:pointer;background-color:#NaNNaNNaN!important;background-image:none!important;background-size:100% 103%!important;filter:progid:DXImageTransform.Microsoft.gradient(startColorStr=#ffffff,endColorstr=#d7d7d7)!important;-ms-filter:progid:DXImageTransform.Microsoft.gradient(startColorStr=#ffffff,endColorstr=#d7d7d7)!important;background:-webkit-gradient(linear,left top,left bottom,color-stop(0,#fff),color-stop(1,#d7d7d7))!important;background:-webkit-linear-gradient(top,#fff,#d7d7d7)!important;background:-moz-linear-gradient(top,#fff,#d7d7d7)!important;background:-ms-linear-gradient(top,#fff,#d7d7d7)!important;background:-o-linear-gradient(top,#fff,#d7d7d7)!important;background:linear-gradient(to bottom,#fff 0%,#d7d7d7 100%)!important;-moz-box-shadow:inset 0 1px 0 #fff,inset 1px 0 0 #fff;-webkit-box-shadow:inset 0 1px 0 #fff,inset 1px 0 0 #fff;box-shadow:inset 0 1px 0 #fff,inset 1px 0 0 #fff;}.falcon-button.compact{height:auto!important;}.falcon-button.highlight{font-weight:bold;text-shadow:1px 1px #ffecb3;color:#000;border:solid 1px #ffc000;cursor:pointer;background-color:#NaNNaNNaN!important;background-image:none!important;background-size:100% 103%!important;filter:progid:DXImageTransform.Microsoft.gradient(startColorStr=#ffe699,endColorstr=#ffcc33)!important;-ms-filter:progid:DXImageTransform.Microsoft.gradient(startColorStr=#ffe699,endColorstr=#ffcc33)!important;background:-webkit-gradient(linear,left top,left bottom,color-stop(0,#ffe699),color-stop(1,#fc3))!important;background:-webkit-linear-gradient(top,#ffe699,#fc3)!important;background:-moz-linear-gradient(top,#ffe699,#fc3)!important;background:-ms-linear-gradient(top,#ffe699,#fc3)!important;background:-o-linear-gradient(top,#ffe699,#fc3)!important;background:linear-gradient(to bottom,#ffe699 0%,#fc3 100%)!important;-moz-box-shadow:inset 0 1px 0 #fff9e5,inset 1px 0 0 #fff;-webkit-box-shadow:inset 0 1px 0 #fff9e5,inset 1px 0 0 #fff;box-shadow:inset 0 1px 0 #fff9e5,inset 1px 0 0 #fff;}.falcInputControl{float:left;margin-right:10px;display:table;position:relative;}.falcInputLabel{display:table-cell;vertical-align:middle;font-weight:bold;font-size:12px;color:#000;}.falcInputLabel>label{display:table-cell;}.falcLabelLeft>label{padding-right:3px;}.falcLabelRight>label{padding-left:3px;}.falcLabelAlone>label{padding-right:3px;}.falcLabelTop{margin-bottom:3px;margin-left:2px;float:left;}.falcLabelTop>label{padding-right:3px;}.falcLabelTopNoLeft{margin-bottom:3px;}.falcLabelBottom{margin-top:3px;display:block;}.falcLabelVertical{position:relative;clear:both;}.falcLabelHorizontal{position:relative;display:table-cell;}.falcInputText{font-size:12px;cursor:auto;}.falcInputControl input:focus,.falcInputControl button:focus,.falcInputControl a:focus,.falcInputControl .falconMultiContainer input:focus,#QQFGetQuoteButton:focus,.falcInputControl .select2-container.select2-container-active .select2-choice{border:1px solid #707070;outline:0;-moz-box-shadow:#851b1b 0 0 7px -2px;-webkit-box-shadow:#851b1b 0 0 7px -2px;box-shadow:#851b1b 0 0 7px -2px;}.falcInputControl .ui-state-error{color:inherit;}.falcInputControl .falconMultiContainer{border:1px solid #a0a0a0;position:relative;margin-right:0;padding-left:5px;padding-right:5px;background-color:#NaNNaNNaN;background-image:none;background-size:100% 103%;filter:progid:DXImageTransform.Microsoft.gradient(startColorStr=#efefef,endColorstr=#d1d1d1);-ms-filter:progid:DXImageTransform.Microsoft.gradient(startColorStr=#efefef,endColorstr=#d1d1d1);background:-webkit-gradient(linear,left top,left bottom,color-stop(0,#efefef),color-stop(1,#d1d1d1));background:-webkit-linear-gradient(top,#efefef,#d1d1d1);background:-moz-linear-gradient(top,#efefef,#d1d1d1);background:-ms-linear-gradient(top,#efefef,#d1d1d1);background:-o-linear-gradient(top,#efefef,#d1d1d1);background:linear-gradient(to bottom,#efefef 0%,#d1d1d1 100%);-moz-box-shadow:#b0b0b0 0 0 5px 0;-webkit-box-shadow:#b0b0b0 0 0 5px 0;box-shadow:#b0b0b0 0 0 5px 0;-webkit-border-radius:5px;-moz-border-radius:5px;border-radius:5px;-webkit-background-clip:padding-box;-moz-background-clip:padding;background-clip:padding-box;min-width:150px;}.falcInputControl .falconMultiContainer input{border:1px solid #d0d0ed;padding:5px 5px 5px 5px;height:15px;line-height:15px;-moz-box-shadow:#b0b0b0 0 0 1px 0;-webkit-box-shadow:#b0b0b0 0 0 1px 0;box-shadow:#b0b0b0 0 0 1px 0;}.falcInputControl .falconMultiContainer input.readonly{border:0;padding:10px 0 10px 0;background-color:transparent;background-image:none;background-size:100% 103%;filter:"progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFFFFF', endColorstr='#000000')";-ms-filter:"progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFFFFF', endColorstr='#000000')";background:-webkit-gradient(linear,left top,left bottom,color-stop(0,transparent),color-stop(1,transparent));background:-webkit-linear-gradient(top,transparent,transparent);background:-moz-linear-gradient(top,transparent,transparent);background:-ms-linear-gradient(top,transparent,transparent);background:-o-linear-gradient(top,transparent,transparent);background:linear-gradient(to bottom,transparent 0,transparent 100%);-moz-box-shadow:none;-webkit-box-shadow:none;box-shadow:none;}.falcInputControl .falconMultiContainer .falcon-error-image{position:relative;right:0;top:3px;display:inline-block;}.falcInputControl .select2-container .select2-choice{height:35px;line-height:35px;border:1px solid #a0a0a0;padding:0 0 0 5px;background-color:#NaNNaNNaN;background-image:none;background-size:100% 103%;filter:progid:DXImageTransform.Microsoft.gradient(startColorStr=#ffffff,endColorstr=#e1e1e1);-ms-filter:progid:DXImageTransform.Microsoft.gradient(startColorStr=#ffffff,endColorstr=#e1e1e1);background:-webkit-gradient(linear,left top,left bottom,color-stop(0,#fff),color-stop(1,#e1e1e1));background:-webkit-linear-gradient(top,#fff,#e1e1e1);background:-moz-linear-gradient(top,#fff,#e1e1e1);background:-ms-linear-gradient(top,#fff,#e1e1e1);background:-o-linear-gradient(top,#fff,#e1e1e1);background:linear-gradient(to bottom,#fff 0%,#e1e1e1 100%);-moz-box-shadow:#b0b0b0 0 0 5px 0;-webkit-box-shadow:#b0b0b0 0 0 5px 0;box-shadow:#b0b0b0 0 0 5px 0;-webkit-border-radius:5px;-moz-border-radius:5px;border-radius:5px;-webkit-background-clip:padding-box;-moz-background-clip:padding;background-clip:padding-box;}.falcInputControl .select2-container .select2-chosen{margin-right:20px;}.falcInputControl .select2-container .select2-choice .select2-arrow b{background-position-y:5px;}.falcInputControl .select2-choice .select2-arrow{border-left:1px solid #a0a0a0;background-color:#NaNNaNNaN;background-image:none;background-size:100% 103%;filter:progid:DXImageTransform.Microsoft.gradient(startColorStr=#efefef,endColorstr=#d1d1d1);-ms-filter:progid:DXImageTransform.Microsoft.gradient(startColorStr=#efefef,endColorstr=#d1d1d1);background:-webkit-gradient(linear,left top,left bottom,color-stop(0,#efefef),color-stop(1,#d1d1d1));background:-webkit-linear-gradient(top,#efefef,#d1d1d1);background:-moz-linear-gradient(top,#efefef,#d1d1d1);background:-ms-linear-gradient(top,#efefef,#d1d1d1);background:-o-linear-gradient(top,#efefef,#d1d1d1);background:linear-gradient(to bottom,#efefef 0%,#d1d1d1 100%);}.falcInputControl .select2-dropdown-open .select2-choice .select2-arrow{background-color:#NaNNaNNaN;background-image:none;background-size:100% 103%;filter:progid:DXImageTransform.Microsoft.gradient(startColorStr=#efefef,endColorstr=#d1d1d1);-ms-filter:progid:DXImageTransform.Microsoft.gradient(startColorStr=#efefef,endColorstr=#d1d1d1);background:-webkit-gradient(linear,left top,left bottom,color-stop(0,#efefef),color-stop(1,#d1d1d1));background:-webkit-linear-gradient(top,#efefef,#d1d1d1);background:-moz-linear-gradient(top,#efefef,#d1d1d1);background:-ms-linear-gradient(top,#efefef,#d1d1d1);background:-o-linear-gradient(top,#efefef,#d1d1d1);background:linear-gradient(to bottom,#efefef 0%,#d1d1d1 100%);border-left:1px solid #a0a0a0;}.select2-drop{-moz-box-shadow:#a0a0ba 1px 1px 3px;-webkit-box-shadow:#a0a0ba 1px 1px 3px;box-shadow:#a0a0ba 1px 1px 3px;border:1px solid #a0a0a0;border-top:0;}.select2-drop .select2-results{margin:4px 3px 4px 0;padding:0 0 0 2px;}.select2-drop .select2-results .select2-highlighted{background-color:#NaNNaNNaN;background-image:none;background-size:100% 103%;filter:progid:DXImageTransform.Microsoft.gradient(startColorStr=#af2424,endColorstr=#5b1212);-ms-filter:progid:DXImageTransform.Microsoft.gradient(startColorStr=#af2424,endColorstr=#5b1212);background:-webkit-gradient(linear,left top,left bottom,color-stop(0,#af2424),color-stop(1,#5b1212));background:-webkit-linear-gradient(top,#af2424,#5b1212);background:-moz-linear-gradient(top,#af2424,#5b1212);background:-ms-linear-gradient(top,#af2424,#5b1212);background:-o-linear-gradient(top,#af2424,#5b1212);background:linear-gradient(to bottom,#af2424 0%,#5b1212 100%);}.select2-drop .select2-results .select2-result-label{padding:3px 2px 4px;}.falcIsDisabled.falcInputControl .select2-container .select2-choice{background-color:#NaNNaNNaN;background-image:none;background-size:100% 103%;filter:progid:DXImageTransform.Microsoft.gradient(startColorStr=#efefef,endColorstr=#d1d1d1);-ms-filter:progid:DXImageTransform.Microsoft.gradient(startColorStr=#efefef,endColorstr=#d1d1d1);background:-webkit-gradient(linear,left top,left bottom,color-stop(0,#efefef),color-stop(1,#d1d1d1));background:-webkit-linear-gradient(top,#efefef,#d1d1d1);background:-moz-linear-gradient(top,#efefef,#d1d1d1);background:-ms-linear-gradient(top,#efefef,#d1d1d1);background:-o-linear-gradient(top,#efefef,#d1d1d1);background:linear-gradient(to bottom,#efefef 0%,#d1d1d1 100%);}.falcInputControl .select2-container.select2-container-disabled .select2-choice .select2-arrow{display:none;}.falcInputControl.falcImportant .select2-container .select2-choice{background-color:#NaNNaNNaN;background-image:none;background-size:100% 103%;filter:progid:DXImageTransform.Microsoft.gradient(startColorStr=#fff8e3,endColorstr=#ffeaa5);-ms-filter:progid:DXImageTransform.Microsoft.gradient(startColorStr=#fff8e3,endColorstr=#ffeaa5);background:-webkit-gradient(linear,left top,left bottom,color-stop(0,#fff8e3),color-stop(1,#ffeaa5));background:-webkit-linear-gradient(top,#fff8e3,#ffeaa5);background:-moz-linear-gradient(top,#fff8e3,#ffeaa5);background:-ms-linear-gradient(top,#fff8e3,#ffeaa5);background:-o-linear-gradient(top,#fff8e3,#ffeaa5);background:linear-gradient(to bottom,#fff8e3 0%,#ffeaa5 100%);}.falcInputControl.falcImportant .select2-container .select2-choice .select2-arrow{background-color:#NaNNaNNaN;background-image:none;background-size:100% 103%;filter:progid:DXImageTransform.Microsoft.gradient(startColorStr=#f8f2dc,endColorstr=#ecd898);-ms-filter:progid:DXImageTransform.Microsoft.gradient(startColorStr=#f8f2dc,endColorstr=#ecd898);background:-webkit-gradient(linear,left top,left bottom,color-stop(0,#f8f2dc),color-stop(1,#ecd898));background:-webkit-linear-gradient(top,#f8f2dc,#ecd898);background:-moz-linear-gradient(top,#f8f2dc,#ecd898);background:-ms-linear-gradient(top,#f8f2dc,#ecd898);background:-o-linear-gradient(top,#f8f2dc,#ecd898);background:linear-gradient(to bottom,#f8f2dc 0%,#ecd898 100%);}.falcInputControl.falcImportant .select2-container.select2-dropdown-open .select2-choice .select2-arrow{background-color:#NaNNaNNaN;background-image:none;background-size:100% 103%;filter:progid:DXImageTransform.Microsoft.gradient(startColorStr=#f8f2dc,endColorstr=#ecd898);-ms-filter:progid:DXImageTransform.Microsoft.gradient(startColorStr=#f8f2dc,endColorstr=#ecd898);background:-webkit-gradient(linear,left top,left bottom,color-stop(0,#f8f2dc),color-stop(1,#ecd898));background:-webkit-linear-gradient(top,#f8f2dc,#ecd898);background:-moz-linear-gradient(top,#f8f2dc,#ecd898);background:-ms-linear-gradient(top,#f8f2dc,#ecd898);background:-o-linear-gradient(top,#f8f2dc,#ecd898);background:linear-gradient(to bottom,#f8f2dc 0%,#ecd898 100%);}.falcIsDisabled.falcInputControl input{background-color:#NaNNaNNaN;background-image:none;background-size:100% 103%;filter:progid:DXImageTransform.Microsoft.gradient(startColorStr=#efefef,endColorstr=#d1d1d1);-ms-filter:progid:DXImageTransform.Microsoft.gradient(startColorStr=#efefef,endColorstr=#d1d1d1);background:-webkit-gradient(linear,left top,left bottom,color-stop(0,#efefef),color-stop(1,#d1d1d1));background:-webkit-linear-gradient(top,#efefef,#d1d1d1);background:-moz-linear-gradient(top,#efefef,#d1d1d1);background:-ms-linear-gradient(top,#efefef,#d1d1d1);background:-o-linear-gradient(top,#efefef,#d1d1d1);background:linear-gradient(to bottom,#efefef 0%,#d1d1d1 100%);}.falcIsDisabled.falcImportant.falcInputControl input{background-color:#NaNNaNNaN;background-image:none;background-size:100% 103%;filter:progid:DXImageTransform.Microsoft.gradient(startColorStr=#efefef,endColorstr=#d1d1d1);-ms-filter:progid:DXImageTransform.Microsoft.gradient(startColorStr=#efefef,endColorstr=#d1d1d1);background:-webkit-gradient(linear,left top,left bottom,color-stop(0,#efefef),color-stop(1,#d1d1d1));background:-webkit-linear-gradient(top,#efefef,#d1d1d1);background:-moz-linear-gradient(top,#efefef,#d1d1d1);background:-ms-linear-gradient(top,#efefef,#d1d1d1);background:-o-linear-gradient(top,#efefef,#d1d1d1);background:linear-gradient(to bottom,#efefef 0%,#d1d1d1 100%);}.falcInputControl input{border:1px solid #a0a0a0;box-sizing:content-box;height:15px;line-height:15px;padding:10px 5px;background-color:#NaNNaNNaN;background-image:none;background-size:100% 103%;filter:progid:DXImageTransform.Microsoft.gradient(startColorStr=#ffffff,endColorstr=#e1e1e1);-ms-filter:progid:DXImageTransform.Microsoft.gradient(startColorStr=#ffffff,endColorstr=#e1e1e1);background:-webkit-gradient(linear,left top,left bottom,color-stop(0,#fff),color-stop(1,#e1e1e1));background:-webkit-linear-gradient(top,#fff,#e1e1e1);background:-moz-linear-gradient(top,#fff,#e1e1e1);background:-ms-linear-gradient(top,#fff,#e1e1e1);background:-o-linear-gradient(top,#fff,#e1e1e1);background:linear-gradient(to bottom,#fff 0%,#e1e1e1 100%);-moz-box-shadow:#b0b0b0 0 0 5px 0;-webkit-box-shadow:#b0b0b0 0 0 5px 0;box-shadow:#b0b0b0 0 0 5px 0;-webkit-border-radius:5px;-moz-border-radius:5px;border-radius:5px;-webkit-background-clip:padding-box;-moz-background-clip:padding;background-clip:padding-box;}.falcInputControl.falcImportant input{background-color:#NaNNaNNaN;background-image:none;background-size:100% 103%;filter:progid:DXImageTransform.Microsoft.gradient(startColorStr=#fff8e3,endColorstr=#ffeaa5);-ms-filter:progid:DXImageTransform.Microsoft.gradient(startColorStr=#fff8e3,endColorstr=#ffeaa5);background:-webkit-gradient(linear,left top,left bottom,color-stop(0,#fff8e3),color-stop(1,#ffeaa5));background:-webkit-linear-gradient(top,#fff8e3,#ffeaa5);background:-moz-linear-gradient(top,#fff8e3,#ffeaa5);background:-ms-linear-gradient(top,#fff8e3,#ffeaa5);background:-o-linear-gradient(top,#fff8e3,#ffeaa5);background:linear-gradient(to bottom,#fff8e3 0%,#ffeaa5 100%);}.falcDisplayOnly.falcInputControl input,.falcDisplayOnly.falcInputControl.falcImportant input{border:0;background:none;-moz-box-shadow:none;-webkit-box-shadow:none;box-shadow:none;}.ui-datepicker.ui-widget{font-size:12px;}.falcToolTip{vertical-align:middle;height:16px;width:16px;background:url(images/help.png) no-repeat;display:table-cell;}.falcCheckLabel{margin:0;vertical-align:top;font-weight:bold;font-size:12px;float:none;color:#000;padding:0;display:inline-block;line-height:18px;}.falconInputOverlay{position:absolute;font-size:10px;left:5px;bottom:12px;font-style:italic;color:#aaa;-webkit-touch-callout:none;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;pointer-events:none;}.falcon-bold-text{font-weight:bold;}.falcon-error-image{width:16px;height:16px;position:absolute;background-image:url('images/error16.png');right:2px;bottom:10px;}.falconErrorText,.falconInputErrorText{font-size:9px;color:#c11;}.falconInputErrorText{position:absolute;left:3px;}.falcInputOverlay{position:absolute;font-size:12px;left:6px;top:11px;}.falcInputOverlayPush{display:table-cell;visibility:hidden;}.falcInputOverlayText{display:table-cell;}.falconMessageBox .image{width:48px;height:48px;display:table-cell;background-position:center;background-repeat:no-repeat;}.falconMessageBox .info{background-image:url('images/information48.png');}.falconMessageBox .alert{background-image:url('images/warning48.png');}.falconMessageBox .error{background-image:url('images/error48.png');}.falconMessageBox .text{padding:0 0 0 10px;display:table-cell;font-size:14px;vertical-align:middle;}.falcCheckBox{height:18px;width:18px;border:1px solid #a0a0a0;background-color:#NaNNaNNaN;background-image:none;background-size:100% 103%;filter:progid:DXImageTransform.Microsoft.gradient(startColorStr=#ffffff,endColorstr=#e1e1e1);-ms-filter:progid:DXImageTransform.Microsoft.gradient(startColorStr=#ffffff,endColorstr=#e1e1e1);background:-webkit-gradient(linear,left top,left bottom,color-stop(0,#fff),color-stop(1,#e1e1e1));background:-webkit-linear-gradient(top,#fff,#e1e1e1);background:-moz-linear-gradient(top,#fff,#e1e1e1);background:-ms-linear-gradient(top,#fff,#e1e1e1);background:-o-linear-gradient(top,#fff,#e1e1e1);background:linear-gradient(to bottom,#fff 0%,#e1e1e1 100%);-moz-box-shadow:#b0b0b0 0 0 5px 0;-webkit-box-shadow:#b0b0b0 0 0 5px 0;box-shadow:#b0b0b0 0 0 5px 0;-webkit-border-radius:3px;-moz-border-radius:3px;border-radius:3px;-webkit-background-clip:padding-box;-moz-background-clip:padding;background-clip:padding-box;}.falcCheckBox:hover{border:1px solid #808080;}.falcCheck{background:url(images/checkMark.png) no-repeat;height:18px;width:18px;}label{display:inline;}.regular-checkbox{display:none;}.regular-checkbox+label{padding:9px;display:inline-block;position:relative;border:1px solid #b0b0b0;background:#f0f0f0;background:linear-gradient(bottom,#dfdfdf,#fefefe);background:-o-linear-gradient(bottom,#dfdfdf,#fefefe);background:-moz-linear-gradient(bottom,#dfdfdf,#fefefe);background:-webkit-linear-gradient(bottom,#dfdfdf,#fefefe);background:-ms-linear-gradient(bottom,#dfdfdf,#fefefe);background:-webkit-gradient(linear,left bottom,left top,color-stop(0,#dfdfdf),color-stop(1,#fefefe));-moz-box-shadow:#606060 0 0 6px -2px;-webkit-box-shadow:#606060 0 0 6px -2px;box-shadow:#606060 0 0 6px -2px;-webkit-border-radius:3px;-moz-border-radius:3px;border-radius:3px;}.regular-checkbox+label:active,.regular-checkbox:checked+label:active{border:1px solid #808080;}.falcRadioButton{height:18px;width:18px;border:1px solid #a0a0a0;background-color:#NaNNaNNaN;background-image:none;background-size:100% 103%;filter:progid:DXImageTransform.Microsoft.gradient(startColorStr=#ffffff,endColorstr=#e1e1e1);-ms-filter:progid:DXImageTransform.Microsoft.gradient(startColorStr=#ffffff,endColorstr=#e1e1e1);background:-webkit-gradient(linear,left top,left bottom,color-stop(0,#fff),color-stop(1,#e1e1e1));background:-webkit-linear-gradient(top,#fff,#e1e1e1);background:-moz-linear-gradient(top,#fff,#e1e1e1);background:-ms-linear-gradient(top,#fff,#e1e1e1);background:-o-linear-gradient(top,#fff,#e1e1e1);background:linear-gradient(to bottom,#fff 0%,#e1e1e1 100%);-moz-box-shadow:#b0b0b0 0 0 5px 0;-webkit-box-shadow:#b0b0b0 0 0 5px 0;box-shadow:#b0b0b0 0 0 5px 0;-webkit-border-radius:9px;-moz-border-radius:9px;border-radius:9px;-webkit-background-clip:padding-box;-moz-background-clip:padding;background-clip:padding-box;}.falcRadioButton.falcIsDisabled{background-color:#NaNNaNNaN;background-image:none;background-size:100% 103%;filter:progid:DXImageTransform.Microsoft.gradient(startColorStr=#efefef,endColorstr=#d1d1d1);-ms-filter:progid:DXImageTransform.Microsoft.gradient(startColorStr=#efefef,endColorstr=#d1d1d1);background:-webkit-gradient(linear,left top,left bottom,color-stop(0,#efefef),color-stop(1,#d1d1d1));background:-webkit-linear-gradient(top,#efefef,#d1d1d1);background:-moz-linear-gradient(top,#efefef,#d1d1d1);background:-ms-linear-gradient(top,#efefef,#d1d1d1);background:-o-linear-gradient(top,#efefef,#d1d1d1);background:linear-gradient(to bottom,#efefef 0%,#d1d1d1 100%);}.falcRadioButton.falcIsInvalid{background-color:#NaNNaNNaN;background-image:none;background-size:100% 103%;filter:progid:DXImageTransform.Microsoft.gradient(startColorStr=#f4c9c9,endColorstr=#ea9797);-ms-filter:progid:DXImageTransform.Microsoft.gradient(startColorStr=#f4c9c9,endColorstr=#ea9797);background:-webkit-gradient(linear,left top,left bottom,color-stop(0,#f4c9c9),color-stop(1,#ea9797));background:-webkit-linear-gradient(top,#f4c9c9,#ea9797);background:-moz-linear-gradient(top,#f4c9c9,#ea9797);background:-ms-linear-gradient(top,#f4c9c9,#ea9797);background:-o-linear-gradient(top,#f4c9c9,#ea9797);background:linear-gradient(to bottom,#f4c9c9 0%,#ea9797 100%);}.falcRadioButton:hover{border:1px solid #808080;}.PIDDRRight .falcRadio{margin:-1px 0 0 -1px;}.falcRadio{background:url(images/radio.png) no-repeat;height:18px;width:18px;}.regular-radio{display:none;}.regular-radio+label{display:inline-block;position:relative;padding:9px;border:1px solid #b0b0b0;background:#f0f0f0;background:linear-gradient(bottom,#dfdfdf,#fefefe);background:-o-linear-gradient(bottom,#dfdfdf,#fefefe);background:-moz-linear-gradient(bottom,#dfdfdf,#fefefe);background:-webkit-linear-gradient(bottom,#dfdfdf,#fefefe);background:-ms-linear-gradient(bottom,#dfdfdf,#fefefe);background:-webkit-gradient(linear,left bottom,left top,color-stop(0,#dfdfdf),color-stop(1,#fefefe));-moz-box-shadow:#606060 0 0 6px -2px;-webkit-box-shadow:#606060 0 0 6px -2px;box-shadow:#606060 0 0 6px -2px;-webkit-border-radius:9px;-moz-border-radius:9px;border-radius:9px;}.regular-radio+label:active,.regular-radio:checked+label:active{border:1px solid #808080;}.regular-radio:checked+label:after{content:' ';width:8px;height:8px;position:absolute;top:4px;left:4px;border:1px solid #909090;background:#000;-webkit-border-radius:5px;-moz-border-radius:5px;border-radius:5px;}.grid-view{table-layout:fixed;width:100%;}.grid-view th:first-of-type{border-top-left-radius:20px;}.grid-view tr{border:0;}.grid-view tr th{height:40px;border-bottom:solid 2px #222;position:relative;}.grid-view-row{border:1px solid #b0b0b0;}.grid-view-row td{border-style:solid;border-color:#b0b0b0;border-top-width:1px;border-bottom:0;border-collapse:collapse;}.grid-view-row,.grid-view-row td{background-color:#fff;height:39px;}.grid-view-row-alt,.grid-view-row-alt td{background-color:#f0f0f0;}.grid-view-pagination{box-sizing:content-box;border:1px solid #000;background-color:#NaNNaNNaN;background-image:none;background-size:100% 103%;filter:progid:DXImageTransform.Microsoft.gradient(startColorStr=#3f3f3f,endColorstr=#212121);-ms-filter:progid:DXImageTransform.Microsoft.gradient(startColorStr=#3f3f3f,endColorstr=#212121);background:-webkit-gradient(linear,left top,left bottom,color-stop(0,#3f3f3f),color-stop(1,#212121));background:-webkit-linear-gradient(top,#3f3f3f,#212121);background:-moz-linear-gradient(top,#3f3f3f,#212121);background:-ms-linear-gradient(top,#3f3f3f,#212121);background:-o-linear-gradient(top,#3f3f3f,#212121);background:linear-gradient(to bottom,#3f3f3f 0%,#212121 100%);-moz-box-shadow:none;-webkit-box-shadow:none;box-shadow:none;padding:5px 5px 5px 2px;height:23px;}.grid-view-pagination ul,.grid-view-pagination ul li{list-style:none;}.grid-view-pagination li{margin-left:2px;height:21px;cursor:pointer;}.grid-view-pagination ul li{float:left;text-align:center;width:21px;display:table;position:relative;background-color:#NaNNaNNaN;background-image:none;background-size:100% 103%;filter:progid:DXImageTransform.Microsoft.gradient(startColorStr=#eaeaea,endColorstr=#b7b7b7);-ms-filter:progid:DXImageTransform.Microsoft.gradient(startColorStr=#eaeaea,endColorstr=#b7b7b7);background:-webkit-gradient(linear,left top,left bottom,color-stop(0,#eaeaea),color-stop(1,#b7b7b7));background:-webkit-linear-gradient(top,#eaeaea,#b7b7b7);background:-moz-linear-gradient(top,#eaeaea,#b7b7b7);background:-ms-linear-gradient(top,#eaeaea,#b7b7b7);background:-o-linear-gradient(top,#eaeaea,#b7b7b7);background:linear-gradient(to bottom,#eaeaea 0%,#b7b7b7 100%);}.grid-view-pagination ul li.ui-state-active{background-color:#NaNNaNNaN;background-image:none;background-size:100% 103%;filter:progid:DXImageTransform.Microsoft.gradient(startColorStr=#ffffff,endColorstr=#d7d7d7);-ms-filter:progid:DXImageTransform.Microsoft.gradient(startColorStr=#ffffff,endColorstr=#d7d7d7);background:-webkit-gradient(linear,left top,left bottom,color-stop(0,#fff),color-stop(1,#d7d7d7));background:-webkit-linear-gradient(top,#fff,#d7d7d7);background:-moz-linear-gradient(top,#fff,#d7d7d7);background:-ms-linear-gradient(top,#fff,#d7d7d7);background:-o-linear-gradient(top,#fff,#d7d7d7);background:linear-gradient(to bottom,#fff 0%,#d7d7d7 100%);border:1px solid #fff;-moz-box-shadow:#fff 0 0 10px;-webkit-box-shadow:#fff 0 0 10px;box-shadow:#fff 0 0 10px;}.grid-view-pagination ul li:hover{background-color:#NaNNaNNaN;background-image:none;background-size:100% 103%;filter:progid:DXImageTransform.Microsoft.gradient(startColorStr=#af2424,endColorstr=#5b1212);-ms-filter:progid:DXImageTransform.Microsoft.gradient(startColorStr=#af2424,endColorstr=#5b1212);background:-webkit-gradient(linear,left top,left bottom,color-stop(0,#af2424),color-stop(1,#5b1212));background:-webkit-linear-gradient(top,#af2424,#5b1212);background:-moz-linear-gradient(top,#af2424,#5b1212);background:-ms-linear-gradient(top,#af2424,#5b1212);background:-o-linear-gradient(top,#af2424,#5b1212);background:linear-gradient(to bottom,#af2424 0%,#5b1212 100%);border:1px solid #808080;}.grid-view-pagination ul li.ui-state-default:hover a{color:#fff;text-shadow:none;}.grid-view-pagination ul li.ui-state-default:hover span{background-image:url(images/ui-icons_f4f4f9_256x240.png);}.grid-view-pagination ul li.ui-state-default a{color:#000;text-shadow:#e0e0e0 0 1px;}.grid-view-pagination ul li span.ui-icon{top:2px;left:2px;position:absolute;background-image:url(images/ui-icons_454545_256x240.png);}.grid-view-row.grid-view-row-hover td{cursor:pointer;}.grid-view-row.grid-view-row-active td{background-color:#c5e4f1;}.grid-view-sortable span{cursor:pointer;}.ui-dialog.ui-widget-content{background:#f0f0f0;}.ui-pos-rel{position:relative;}.ui-widget-shadow{margin:-8px 0 0 -8px;padding:8px;background:#aaa url(images/ui-bg_flat_0_aaaaaa_40x100.png) 50% 50% repeat-x;opacity:.3;filter:alpha(opacity=30);-moz-border-radius:8px;-webkit-border-radius:8px;border-radius:8px;}.ui-dialog .ui-dialog-buttonpane{background:none;border-top:1px solid #fff;-moz-box-shadow:#c0c0c0 0 -1px;-webkit-box-shadow:#c0c0c0 0 -1px;box-shadow:#c0c0c0 0 -1px;text-align:center;padding:0;}.ui-dialog .ui-dialog-buttonpane .ui-dialog-buttonset{float:none;}.ui-dialog.ui-widget.ui-widget-content.ui-corner-all.ui-front.ui-dialog-noclose.ui-dialog-buttons.ui-draggable{width:400px!important;}.CreditCardNameAndNumber{float:left;padding-top:3px;}.CreditCardNameAndNumber .falcInputControl{float:none;padding-bottom:15px;}.CreditCardNameAndNumber .DisplayCC{margin-left:97px;width:160px;height:44px;background-image:url('images/creditCards.png');}.CreditCardNameAndNumber .DisplayCC.DisplayVisa{background-position-y:44px;}.CreditCardNameAndNumber .DisplayCC.DisplayMastercard{background-position-y:88px;}.CreditCardNameAndNumber .DisplayCC.DisplayDiscover{background-position-y:132px;}.CreditCardNameAndNumber .HiddenBox{display:none;}.CreditCardDate{float:left;padding-top:3px;}.CreditCardDate .falcInputControl{float:none;padding-bottom:15px;}.CreditCardOther{float:left;padding-top:3px;}.CreditCardOther .falcInputControl{float:none;padding-bottom:15px;}.CreditCardSampleImage{float:left;margin-left:25px;width:211px;height:97px;background-image:url('images/sampleCC.png');}.CCHolder{align-items:center;display:flex;flex-direction:row;margin-top:0!important;}.CCHolder .falconBigSelectButton{background:#f0f0f0;background:linear-gradient(top,#fff,#f0f0f0 25%,#e0e0e0 75%,#d0d0d0);background:-o-linear-gradient(top,#fff,#f0f0f0 25%,#e0e0e0 75%,#d0d0d0);background:-moz-linear-gradient(top,#fff,#f0f0f0 25%,#e0e0e0 75%,#d0d0d0);background:-webkit-linear-gradient(top,#fff,#f0f0f0 25%,#e0e0e0 75%,#d0d0d0);background:-ms-linear-gradient(top,#fff,#f0f0f0 25%,#e0e0e0 75%,#d0d0d0);background:-webkit-gradient(linear,left top,left bottom,color-stop(0,#fff),color-stop(.25,#f0f0f0),color-stop(.75,#e0e0e0),color-stop(1,#d0d0d0));border:1px solid #909090;border-radius:10px;box-shadow:#606060 0 0 6px -2px;cursor:pointer;display:inline-block;margin-left:5px;margin-top:0;padding:15px;text-align:center;vertical-align:middle;width:210px;-moz-box-shadow:#606060 0 0 6px -2px;-webkit-box-shadow:#606060 0 0 6px -2px;-webkit-border-radius:10px;-moz-border-radius:10px;}.VisaLogo{background:right no-repeat url('images/visa.png');height:50px;width:100px;}.MasterCardLogo{background:right no-repeat url('images/mastercard.png');height:50px;width:100px;}.DiscoverLogo{background:right no-repeat url('images/discover.png');height:50px;width:100px;}.RecurringCCInfo{display:flex;flex-direction:row;font-size:12px;margin:1rem 0;}.RecurringCCInfo .CardLogo{margin-right:2rem;}.RecurringCCInfo .CardDetails{display:flex;flex-direction:column;justify-content:space-around;}.RecurringCCInfo .CardDetails .CardNumber{display:inline-block;margin-right:2rem;}.RecurringCCInfo .CardDetails .ExpDate{display:inline-block;}.CCInfo{align-items:center;display:flex;justify-content:center;min-height:75px;min-width:300px;text-shadow:none!important;}.CCInfo .Base{border:2px solid #000;border-radius:20px;box-sizing:border-box;display:flex;flex-direction:column;height:200px;padding:1rem;width:300px;}.CCInfo .Discover{background-image:linear-gradient(to bottom right,#000,#222,#000);color:#fff;}.CCInfo .Visa{background-image:linear-gradient(to bottom right,#1a1f71,#2830af,#1a1f71);color:#f7b600;}.CCInfo .MasterCard{background-image:linear-gradient(to bottom right,#eb001b,#ff5f00,#f79e1b);color:#000;}.CCInfo .LogoRow{display:flex;justify-content:flex-end;}.CCInfo .CardNum{align-items:flex-end;display:flex;flex:1 0 auto;font-family:monospace;font-size:1.25rem;justify-content:flex-start;padding:.5rem;}.CCInfo .BottomRow{align-items:center;display:flex;justify-content:space-between;padding:.5rem;text-align:left;}.EFTData{float:left;}.EFTData .falcInputControl{float:none;padding-bottom:15px;}.EFTAccountNumber{float:left;}.EFTAccountNumber .falcInputControl{float:none;padding-bottom:15px;}.EFTSampleImage{float:left;margin-left:25px;width:280px;height:142px;background-image:url('images/sampleCheck.png');}.PaymentSchedule{border:1px solid #909090;padding:15px;color:#000;background:#f0f0f0;-moz-box-shadow:#606060 0 0 6px -2px;-webkit-box-shadow:#606060 0 0 6px -2px;box-shadow:#606060 0 0 6px -2px;}.PaymentSchedule table{width:100%;text-align:center;}.PaymentSchedule thead>tr>td:first-of-type{width:65px;}.PaymentSchedule thead>tr>td:nth-of-type(2){width:60px;}.PaymentSchedule thead>tr>td:nth-of-type(3){width:95px;}.PaymentSchedule thead>tr>td:last-of-type{width:95px;}.PaymentSchedule td{font-size:14px;font-weight:bold;text-shadow:0 1px #fff;padding-left:0;}.PaymentSchedule tbody tr{background:#404040;}.PaymentSchedule tbody>tr:first-of-type td{text-align:left;padding-left:10px;}.PaymentSchedule tbody td{border:1px solid #909090;background:#f0f0f0;padding-top:4px;padding-bottom:4px;background:linear-gradient(top,#fff,#f0f0f0 25%,#e0e0e0 75%,#d0d0d0);background:-o-linear-gradient(top,#fff,#f0f0f0 25%,#e0e0e0 75%,#d0d0d0);background:-moz-linear-gradient(top,#fff,#f0f0f0 25%,#e0e0e0 75%,#d0d0d0);background:-webkit-linear-gradient(top,#fff,#f0f0f0 25%,#e0e0e0 75%,#d0d0d0);background:-ms-linear-gradient(top,#fff,#f0f0f0 25%,#e0e0e0 75%,#d0d0d0);background:-webkit-gradient(linear,left top,left bottom,color-stop(0,#fff),color-stop(.25,#f0f0f0),color-stop(.75,#e0e0e0),color-stop(1,#d0d0d0));}.PaymentSchedule tbody tr.paid td{color:#fff;text-shadow:0 1px #008000;border:1px solid #009000;background:#00d000;background:linear-gradient(top,#00e000,#00d000 25%,#00c000 75%,#00b000);background:-o-linear-gradient(top,#00e000,#00d000 25%,#00c000 75%,#00b000);background:-moz-linear-gradient(top,#00e000,#00d000 25%,#00c000 75%,#00b000);background:-webkit-linear-gradient(top,#e0f4c6,#c5d6af);background:-ms-linear-gradient(top,#00e000,#00d000 25%,#00c000 75%,#00b000);background:-webkit-gradient(linear,left top,left bottom,color-stop(0,#88c862),color-stop(.25,#7db85a),color-stop(.75,#72a852),color-stop(1,#68994b));}.PaymentSchedule tbody tr.partial td{background:#faebbe;background:linear-gradient(top,#fff0c2,#f0e1b6 25%,#e0d3ab 75%,#d1c59f);background:-o-linear-gradient(top,#fff0c2,#f0e1b6 25%,#e0d3ab 75%,#d1c59f);background:-moz-linear-gradient(top,#fff0c2,#f0e1b6 25%,#e0d3ab 75%,#d1c59f);background:-webkit-linear-gradient(top,#f4f4c6,#d6d6ae);background:-ms-linear-gradient(top,#fff0c2,#f0e1b6 25%,#e0d3ab 75%,#d1c59f);background:-webkit-gradient(linear,left top,left bottom,color-stop(0,#fff0c2),color-stop(.25,#f0e1b6),color-stop(.75,#e0d3ab),color-stop(1,#d1c59f));}.PaymentSchedule>div>p{margin-top:10px;}#ARGPolicyOptions>section{margin-right:20px;display:inline-block;vertical-align:top;}#ARGInfo>section{margin-right:20px;display:inline-block;vertical-align:top;}#ARPayment>section>table>thead{background:#000;color:#fff;font-size:14px;font-weight:bold;text-align:left;padding-left:10px;}#ARPayment>section>table>thead th{text-align:left;padding-left:10px;padding-top:5px;padding-bottom:5px;}#ARPayment>section>table>tbody tr{background:#fff;border:0;}#ARPayment>section>table>thead>tr{border:1px solid #000;}#ARPayment>section>table>tbody>tr{border:1px solid #000;}#ARPayment>section>table>tbody>tr>td{border:1px solid #000;vertical-align:top;}#mainContent #ARPayment table tbody tr td{padding-top:0;padding-bottom:0;}#ARPayment table table{margin-top:0;width:100%;text-align:center;}#ARPayment table table tr{background:#fff;}#ARPayment>section>table>tbody th{font-size:12px;font-weight:bold;}#ARPayment>section>table>tbody td{font-size:12px;}#ARPayment>section>table>tbody>tr>td:first-of-type{width:150px;position:relative;z-index:1;vertical-align:middle;background-color:#NaNNaNNaN;background-image:none;background-size:100% 103%;filter:progid:DXImageTransform.Microsoft.gradient(startColorStr=#ffffff,endColorstr=#e8e8e8);-ms-filter:progid:DXImageTransform.Microsoft.gradient(startColorStr=#ffffff,endColorstr=#e8e8e8);background:-webkit-gradient(linear,left top,left bottom,color-stop(0,#fff),color-stop(1,#e8e8e8));background:-webkit-linear-gradient(top,#fff,#e8e8e8);background:-moz-linear-gradient(top,#fff,#e8e8e8);background:-ms-linear-gradient(top,#fff,#e8e8e8);background:-o-linear-gradient(top,#fff,#e8e8e8);background:linear-gradient(to bottom,#fff 0%,#e8e8e8 100%);-moz-box-shadow:1px 1px 0 0 #000,3px 1px 3px -1px #a0a0a0;-webkit-box-shadow:1px 1px 0 0 #000,3px 1px 3px -1px #a0a0a0;box-shadow:1px 1px 0 0 #000,3px 1px 3px -1px #a0a0a0;}#ARPayment>section>table>thead>tr>th{width:1000px;}#ARPayment>section>table>tbody>tr>td>table th{border-right:1px solid #000;}#ARPayment>section>table>tbody>tr>td>table td{padding:0;border-right:1px solid #000;border-bottom:1px solid #000;}#ARPayment>section>table>tbody>tr>td>table th:last-of-type{border-right:0;}#ARPayment>section>table>tbody>tr>td>table td:last-of-type{border-right:0;}#ARPayment>section>table>tbody>tr>td>div{display:inline-block;margin-left:10px;margin-right:20px;vertical-align:top;}#ARPayment>section>table>tbody>tr>td div p{display:inline-block;}#ARPayment>section>table>tbody>tr>td div label{display:inline-block;}#applicationReview .vehicle-payment-box .vehicle-payment-box-left .non-owner-name{margin-top:0;margin-bottom:0;}#ARPVehicles>table>tbody>tr>td:last-of-type{width:150px;text-align:center;background:#fff;position:relative;z-index:1;vertical-align:middle;background-color:#NaNNaNNaN;background-image:none;background-size:100% 103%;filter:progid:DXImageTransform.Microsoft.gradient(startColorStr=#ffffff,endColorstr=#e8e8e8);-ms-filter:progid:DXImageTransform.Microsoft.gradient(startColorStr=#ffffff,endColorstr=#e8e8e8);background:-webkit-gradient(linear,left top,left bottom,color-stop(0,#fff),color-stop(1,#e8e8e8));background:-webkit-linear-gradient(top,#fff,#e8e8e8);background:-moz-linear-gradient(top,#fff,#e8e8e8);background:-ms-linear-gradient(top,#fff,#e8e8e8);background:-o-linear-gradient(top,#fff,#e8e8e8);background:linear-gradient(to bottom,#fff 0%,#e8e8e8 100%);-moz-box-shadow:-3px 0 3px -1px #b9b9b9;-webkit-box-shadow:-3px 0 3px -1px #b9b9b9;box-shadow:-3px 0 3px -1px #b9b9b9;}#ARPVehicles table table th{background:#d0d0d0;border-bottom:1px solid #000;}#ARPVDiscounts{min-width:75%;}#ARPFees>table>tbody>tr>td{padding-top:10px;padding-bottom:10px;}#ARPFees>table>tbody>tr>td:last-of-type{width:150px;text-align:center;background:#fff;position:relative;z-index:1;vertical-align:middle;background-color:#NaNNaNNaN;background-image:none;background-size:100% 103%;filter:progid:DXImageTransform.Microsoft.gradient(startColorStr=#ffffff,endColorstr=#e8e8e8);-ms-filter:progid:DXImageTransform.Microsoft.gradient(startColorStr=#ffffff,endColorstr=#e8e8e8);background:-webkit-gradient(linear,left top,left bottom,color-stop(0,#fff),color-stop(1,#e8e8e8));background:-webkit-linear-gradient(top,#fff,#e8e8e8);background:-moz-linear-gradient(top,#fff,#e8e8e8);background:-ms-linear-gradient(top,#fff,#e8e8e8);background:-o-linear-gradient(top,#fff,#e8e8e8);background:linear-gradient(to bottom,#fff 0%,#e8e8e8 100%);-moz-box-shadow:-3px 0 3px -1px #b9b9b9;-webkit-box-shadow:-3px 0 3px -1px #b9b9b9;box-shadow:-3px 0 3px -1px #b9b9b9;}#ARQuestions h5,#ARQuestions h4,#ARQuestions h3{display:inline-block;margin-left:6px;}#ARQuestions p{margin-left:50px;font-weight:bold;}#ARQuestions>div{margin-top:5px;}#ARGPolicyOptions>section.ARGPOTotalPremium{float:right;margin-right:0;}#ARGeneral{width:980px;}#ARGeneral>section{margin-top:20px;}div.payment-total-premium-container{padding:3px 0 0 65px;}div.payment-total-premium{width:170px;border:solid 1px #8b8b8b;text-align:center;font-size:24px;font-weight:bold;background:#fff;position:relative;z-index:1;background-color:#NaNNaNNaN!important;background-image:none!important;background-size:100% 103%!important;filter:progid:DXImageTransform.Microsoft.gradient(startColorStr=#ffffff,endColorstr=#e8e8e8)!important;-ms-filter:progid:DXImageTransform.Microsoft.gradient(startColorStr=#ffffff,endColorstr=#e8e8e8)!important;background:-webkit-gradient(linear,left top,left bottom,color-stop(0,#fff),color-stop(1,#e8e8e8))!important;background:-webkit-linear-gradient(top,#fff,#e8e8e8)!important;background:-moz-linear-gradient(top,#fff,#e8e8e8)!important;background:-ms-linear-gradient(top,#fff,#e8e8e8)!important;background:-o-linear-gradient(top,#fff,#e8e8e8)!important;background:linear-gradient(to bottom,#fff 0%,#e8e8e8 100%)!important;-moz-box-shadow:-3px 0 3px -1px #b9b9b9;-webkit-box-shadow:-3px 0 3px -1px #b9b9b9;box-shadow:-3px 0 3px -1px #b9b9b9;}div.total-premium-box{min-height:30px;padding:10px 0 10px 0;}div.payment-total-premium h2,div.payment-terms h2{background:#323232;color:#fff;text-transform:uppercase;font-size:11px!important;font-weight:bold;padding:5px 0 5px 0;text-align:center;}div.payment-terms-container{padding:3px 0 0 65px;}div.payment-terms{width:275px;height:100%;border:solid 1px #8b8b8b;text-align:center;font-size:18px;font-weight:bold;background:#fff;position:relative;z-index:1;background-color:#NaNNaNNaN!important;background-image:none!important;background-size:100% 103%!important;filter:progid:DXImageTransform.Microsoft.gradient(startColorStr=#ffffff,endColorstr=#e8e8e8)!important;-ms-filter:progid:DXImageTransform.Microsoft.gradient(startColorStr=#ffffff,endColorstr=#e8e8e8)!important;background:-webkit-gradient(linear,left top,left bottom,color-stop(0,#fff),color-stop(1,#e8e8e8))!important;background:-webkit-linear-gradient(top,#fff,#e8e8e8)!important;background:-moz-linear-gradient(top,#fff,#e8e8e8)!important;background:-ms-linear-gradient(top,#fff,#e8e8e8)!important;background:-o-linear-gradient(top,#fff,#e8e8e8)!important;background:linear-gradient(to bottom,#fff 0%,#e8e8e8 100%)!important;-moz-box-shadow:-3px 0 3px -1px #b9b9b9;-webkit-box-shadow:-3px 0 3px -1px #b9b9b9;box-shadow:-3px 0 3px -1px #b9b9b9;}div.payment-terms-box{min-height:40px;padding:5px 0;}div.payment-terms-box div:nth-child(3),div.payment-terms-box div:nth-child(4){font-size:13px;font-weight:normal;}.vehicle-payment-box thead th,.fees-payment-box thead th{background:#323232;color:#fff;text-transform:uppercase;font-size:11px;font-weight:bold;padding:5px 0;}.vehicle-payment-box .vehicle-payment-box-body,.fees-payment-box .fees-payment-box-body{float:left;}.vehicle-payment-box .vehicle-payment-box-left .non-owner-name{margin-top:0;margin-bottom:0;}.vehicle-payment-box .vehicle-payment-box-left,.fees-payment-box .fees-payment-box-left{border-right:solid 1px #707070;width:100px;background:#fff;position:relative;z-index:1;padding-bottom:0;background-color:#NaNNaNNaN!important;background-image:none!important;background-size:100% 103%!important;filter:progid:DXImageTransform.Microsoft.gradient(startColorStr=#ffffff,endColorstr=#e8e8e8)!important;-ms-filter:progid:DXImageTransform.Microsoft.gradient(startColorStr=#ffffff,endColorstr=#e8e8e8)!important;background:-webkit-gradient(linear,left top,left bottom,color-stop(0,#fff),color-stop(1,#e8e8e8))!important;background:-webkit-linear-gradient(top,#fff,#e8e8e8)!important;background:-moz-linear-gradient(top,#fff,#e8e8e8)!important;background:-ms-linear-gradient(top,#fff,#e8e8e8)!important;background:-o-linear-gradient(top,#fff,#e8e8e8)!important;background:linear-gradient(to bottom,#fff 0%,#e8e8e8 100%)!important;-moz-box-shadow:4px 0 3px -1px #b0b0b0;-webkit-box-shadow:4px 0 3px -1px #b0b0b0;box-shadow:4px 0 3px -1px #b0b0b0;}.non-owner.vehicle-payment-box .vehicle-payment-table .vehicle-payment-options{background:#fff;}.vehicle-payment-box .vehicle-payment-box-left p,.fees-payment-box .fees-payment-box-left p{font-size:15px;font-weight:bold;}.vehicle-payment-box .vehicle-payment-box-left p:last-child,.fees-payment-box .fees-payment-box-left p:last-child{font-size:11px;margin-top:30px;margin-bottom:30px;}.vehicle-payment-box .vehicle-payment-box-right,.fees-payment-box .fees-payment-box-right{border-left:solid 1px #8b8b8b;text-align:center;font-size:24px!important;font-weight:bold;width:100px;background:#fff;position:relative;z-index:1;background-color:#NaNNaNNaN!important;background-image:none!important;background-size:100% 103%!important;filter:progid:DXImageTransform.Microsoft.gradient(startColorStr=#ffffff,endColorstr=#e8e8e8)!important;-ms-filter:progid:DXImageTransform.Microsoft.gradient(startColorStr=#ffffff,endColorstr=#e8e8e8)!important;background:-webkit-gradient(linear,left top,left bottom,color-stop(0,#fff),color-stop(1,#e8e8e8))!important;background:-webkit-linear-gradient(top,#fff,#e8e8e8)!important;background:-moz-linear-gradient(top,#fff,#e8e8e8)!important;background:-ms-linear-gradient(top,#fff,#e8e8e8)!important;background:-o-linear-gradient(top,#fff,#e8e8e8)!important;background:linear-gradient(to bottom,#fff 0%,#e8e8e8 100%)!important;-moz-box-shadow:-3px 0 3px -1px #b9b9b9;-webkit-box-shadow:-3px 0 3px -1px #b9b9b9;box-shadow:-3px 0 3px -1px #b9b9b9;}td.fees-payment-box-right{line-height:16px;}td.fees-payment-table{width:260px;}.fees-payment-table div span{font-size:12px;}.vehicle-payment-box .vehicle-payment-table,.vehicle-payment-box .vehicle-payment-box-table table,.fees-payment-box .fees-payment-table{font-size:11px;padding:0;padding-bottom:0;padding-top:0;}.vehicle-payment-box .vehicle-payment-table label,.fees-payment-box .fees-payment-table label{font-weight:bold;font-size:12px;}.vehicle-payment-box .vehicle-payment-table table,.fees-payment-box .fees-payment-table table{width:100%;margin-top:0;}.vehicle-payment-box .vehicle-payment-table table .falcInputControl{margin:0;}.vehicle-payment-box .vehicle-payment-table table .falcInputControl input{margin:0;text-align:center;font-size:11px;}.vehicle-payment-box .vehicle-payment-table table tr:first-child,.fees-payment-box .fees-payment-table table tr:first-child{background:#ddd;}.vehicle-payment-box .vehicle-payment-table table tr:last-child td,.fees-payment-box .fees-payment-table table tr:last-child td{text-align:center;padding:10px 0;}.vehicle-payment-box .vehicle-payment-table table td,.fees-payment-box .fees-payment-table table td{border:1px solid #c1c1c1;}.vehicle-payment-box .vehicle-payment-table table tr:first-child td,.fees-payment-box .fees-payment-table table tr:first-child td{text-align:center;}.vehicle-payment-box .vehicle-payment-table table .vehicle-payment-options>td,.fees-payment-box .fees-payment-table table .fees-payment-options>td{padding:0!important;height:35px;text-align:center;}.vehicle-payment-options .falcInputControl .select2-container .select2-choice{-webkit-border-radius:0;-moz-border-radius:0;border-radius:0;-webkit-background-clip:padding-box;-moz-background-clip:padding;background-clip:padding-box;border:0;-moz-box-shadow:none;-webkit-box-shadow:none;box-shadow:none;}.vehicle-payment-options .falcInputControl .select2-container .select2-choice .select2-arrow{-webkit-border-radius:0;-moz-border-radius:0;border-radius:0;-webkit-background-clip:padding-box;-moz-background-clip:padding;background-clip:padding-box;}.vehicle-payment-options .falcInputControl .falcInputLabel{display:none;}.vehicle-payment-price td{font-weight:bold;}.vehicle-payment-box .vehicle-payment-info{width:100%;height:37px;background:#fff;}.vehicle-payment-box .vehicle-payment-info>div:first-of-type{padding-left:10px;}.vehicle-payment-box .vehicle-payment-discounts{width:100%;padding:7px 10px;border-top:solid 1px #9d9d96;background:#ffffe0;}.vehicle-payment-discounts.falcSpaceTop.falcSpaceBottom{clear:both;}.vehicle-payment-box .vehicle-payment-discounts div:last-child{margin-top:8px;}.vehicle-payment-box .vehicle-payment-discounts div:last-child span.discount-amount{margin-right:30px;color:#389400;font-weight:bold;}.vehicle-payment-box .green-value{color:#389400;}.vehicle-payment-box .grey-value{color:#808080;}.vehicle-payment-box .vehicle-payment-info .falcInputControl .select2-container .select2-choice{height:25px;line-height:25px;}.vehicle-payment-box .vehicle-payment-info .falcInputControl .select2-container .select2-choice .select2-arrow b{background-position-y:0;}.vehicle-payment-info.inline-vcenter-container{width:100%;}.fees-payment-table div{padding:0 10px;}#mainContent table tbody tr td.vehicle-payment-table{padding-bottom:0;padding-top:0;}.VPIDisplayOnlyRow{padding:10px 0 0 10px;}.VPIDisplayOnlyOptions{font-weight:bold;display:inline;padding-right:60px;}.VPIDisplayOnlyOptions>span{font-weight:normal;padding-right:5px;}.VPIDisplayOnlyOptions>.VPIDisplayOnlyBold{font-weight:bold;display:inline;}.VPIDisplayOnlyOptions>.VPIDisplayOnlyNorm{font-weight:normal;display:inline;}.VQEDisplayOnlyOptions{display:inline;}.VQEDisplayOnlyOptions>.falcInputControl{display:inline!important;float:none!important;position:unset!important;}.violations-table>table>tbody>tr{border:0;background:none;}.violations-table a.falcon-button.add{display:block;width:110px;padding:5px 0;text-align:center;font-size:11px;font-weight:bold;margin:20px 0 10px;text-shadow:1px 1px #377b18;background:#70bb43;background:-webkit-gradient(linear,left top,left bottom,from(#86c760),to(#469a11));background:-webkit-linear-gradient(top,#86c760,#469a11);background:-moz-linear-gradient(top,#86c760,#469a11);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#86c760',endColorstr='#469a11');color:#fff;border:solid 1px #739a5c;-webkit-border-radius:5px;-moz-border-radius:5px;border-radius:5px;-moz-box-shadow:inset 1px 1px 0 #a4d579;-webkit-box-shadow:inset 1px 1px 0 #a4d579;box-shadow:inset 1px 1px 0 #a4d579;}.violations-table a.falcon-button.add .falcon-button-icon{background:url(images/add.png) no-repeat;display:inline-block;height:9px;width:9px;margin-right:1px;position:relative;top:1px;}.violations-table a.falcon-button.remove{width:25px;height:25px;padding:0;}.violations-table a.falcon-button.remove .falcon-button-icon{background:url(images/remove.png) no-repeat;display:block;height:4px;width:13px;margin-right:5px;position:relative;top:11px;left:7px;}.vehicle-payment-box .vehicle-info-rate{padding-right:30px;}.fees-box{background:#fff;margin-left:auto;margin-right:auto;height:35px;width:960px;border-left:solid 1px #b8b8b8;border-right:solid 1px #b8b8b8;-moz-box-shadow:1px 0 0 #d6d6d6,-1px 0 0 #d6d6d6;-webkit-box-shadow:1px 0 0 #d6d6d6,-1px 0 0 #d6d6d6;box-shadow:1px 0 0 #d6d6d6,-1px 0 0 #d6d6d6;}.fees-box.fewVehicles{border-bottom:solid 1px #b8b8b8;}.fees-box>div{padding-left:25px;font-size:12px;font-weight:bold;}.fees-box>div>span{font-weight:normal;padding-left:10px;}.fees-box .falcInputControl .falcInput input[type="text"]{padding:4px 5px;}.fees-box .sr22fees input[type="text"],.fees-box .policyfees input[type="text"],.fees-box .mvcpafees input[type="text"]{background:#e7e7e7;background:-webkit-gradient(linear,left top,left bottom,from(#ececec),to(#eaeaea))!important;background:-webkit-linear-gradient(top,#ececec,#eaeaea)!important;background:-moz-linear-gradient(top,#ececec,#eaeaea)!important;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ececec',endColorstr='#eaeaea')!important;border-bottom:solid 2px #e3e3e3!important;border-right:solid 1px #dcdcdc!important;border-left:solid 1px #ebebeb!important;border-top:0!important;color:#8b8b8b!important;}.fees-box .agencyfees input[type="text"]{border:solid 2px #6f6f6f!important;}.address-validation{font-size:9pt;color:#d53131;clear:both;}.address-validation div:first-of-type{font-weight:bold;}.suggested-address{color:#555;width:220px;border:solid 1px #aaa;background-color:#fff;margin-top:30px;padding:3px;-webkit-border-radius:5px;-moz-border-radius:5px;border-radius:5px;-webkit-background-clip:padding-box;-moz-background-clip:padding;background-clip:padding-box;}.suggested-address div{padding:5px;font-size:8pt;border-bottom:solid 1px #aaa;}.suggested-address div:first-of-type{-webkit-border-radius:5px;-moz-border-radius:5px;border-radius:5px;-webkit-background-clip:padding-box;-moz-background-clip:padding;background-clip:padding-box;}.suggested-address div:last-of-type{border-bottom:0;-webkit-border-radius:5px;-moz-border-radius:5px;border-radius:5px;-webkit-background-clip:padding-box;-moz-background-clip:padding;background-clip:padding-box;}.suggested-address div:hover{color:#000;cursor:pointer;}.suggested-address .non-residential-address{display:block;font-style:italic;}.ignore-address-option{padding-top:10px;}#VinSearchResults>table>thead>tr{background:#303030;color:#fff;font-size:14px;font-weight:bold;text-shadow:1px 1px #000;height:24px;background:-webkit-gradient(linear,left top,left bottom,from(#404040),to(#202020));background:-webkit-linear-gradient(top,#404040,#202020);background:-moz-linear-gradient(top,#404040,#202020);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#404040',endColorstr='#202020');}#VinSearchResults>table>thead>tr>th:first-child{width:12%!important;}#VinSearchResults>table>tbody>tr{font-size:12px;text-align:center;}#VinSearchResults>table>tbody>tr>td:first-child{padding-left:10px;}.upload-photo{margin-top:0!important;}.upload-photo p{margin-top:6px;}.upload-photo-status-item{display:inline-block;line-height:53px;}.falcValidationItems{font-size:14px;margin:10px 0 0 10px;}.alert{padding:.5rem 1.25rem;border:1px solid transparent;border-radius:.25rem;font-size:.9rem;font-weight:normal;}.alert-danger{background-color:#f2dede;border-color:#ebcccc;color:#a94442;}.alert-warning{background-color:#fcf8e3;border-color:#faf2cc;color:#8a6d3b;}.alert-info{background-color:#d9edf7;border-color:#bcdff1;color:#31708f;}.alert-success{background-color:#dff0d8;border-color:#d0e9c6;color:#3c763d;}.alert-home{float:right;margin-top:-.75rem;}.alert-endorse{font-weight:bold;color:#000!important;position:absolute;margin:-42px auto 0 200px;}button{box-sizing:border-box!important;}
