/*	This software is the unpublished, confidential, proprietary, intellectual
	property of Kim David Software, LLC and may not be copied, duplicated, retransmitted
	or used in any manner without expressed written consent from Kim David Software, LLC.
	Kim David Software, LLC owns all rights to this work and intends to keep this
	software confidential so as to maintain its value as a trade secret.

	Copyright 2004-Present, Kim David Software, LLC.

	WARNING! This code is part of Kim David Software's PHPServant system.
	Changes made to this source file will be lost when new versions of the
	system are installed.
*/

* {
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
    color: inherit;
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
    flex-grow: 1;
    flex-shrink: 0;
    flex-basis: auto;
    flex-shrink: 0;
}

html, body {
    height: 100%;
}

i, em {
    font-style: italic;
}

b, strong {
    font-weight: bold;
}

u {
    text-decoration: underline;
}

td {
    vertical-align: middle;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
    display: block;
}

body {
    line-height: 1.2;
}

ul, ol {
    list-style: none;
}

ul.disc-list {
    list-style: disc;
    li {
        margin-left: 20px;
        margin-bottom: 5px;
        list-style-type: disc;
    }
}

blockquote, q {
    quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
    content: '';
    content: none;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

table td {
    background-clip: padding-box;
    position: static;
}

sup {
    vertical-align: super;
    font-size: smaller;
}

button {
    border: none;
}

.color-orange {
    color: rgb(200, 85, 33) !important;
}

.color-green {
    color: rgb(0, 130, 0) !important;
}

.color-red {
    color: rgb(205, 0, 0) !important;
}

.color-blue {
    color: rgb(0, 0, 150) !important;
}

input.invisible-field {
    background-color: transparent !important;
    border-color: transparent !important;
}

input:-webkit-autofill {
    background-color: transparent;
}

input[type=checkbox] {
    height: auto !important;
}

.full-width {
    width: 100% !important;
}

::-webkit-input-placeholder {
    color: rgb(180, 180, 180);
    text-align: center;
    text-transform: none;
}

:-moz-placeholder {
    color: rgb(180, 180, 180);
    text-align: center;
    text-transform: none;
}

::-moz-placeholder {
    color: rgb(180, 180, 180);
    text-align: center;
    text-transform: none;
}

:-ms-input-placeholder {
    color: rgb(180, 180, 180);
    text-align: center;
    text-transform: none;
}

/* Predefined classes and ids that can be used throughout the System */

.align-center {
    text-align: center !important;
    margin-left: auto;
    margin-right: auto;
    vertical-align: middle;
}

.align-left {
    text-align: left !important;
}

.align-right {
    text-align: right !important;
    margin-left: auto;
}

input.align-right {
    margin-left: 0;
}

.align-top {
    vertical-align: top;
}

.center-div {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.checkbox-label {
    padding-left: 10px;
    cursor: pointer;
    color: rgb(100, 100, 100);
    font-weight: 600;
}

.clear-div {
    clear: both;
}

.clickable {
    cursor: pointer;
}

.dialog-box {
    display: none;
    z-index: 1000000 !important;
}

.display-block {
    display: block;
}

.shown {
    display: block !important;
}

div.dropzone {
    margin: 10px 0;
    width: 80%;
    max-width: 1200px;
    border-radius: 5px;
    border: 2px dashed rgb(0, 100, 200);
    background-color: rgb(245, 245, 245);
}

div.editable-list-file-dropzone,div.editable-list-image-dropzone {
    height: 80px;
    min-height: 80px;
    padding: 0 20px;
}

div.editable-list-file-dropzone .dz-message,div.editable-list-image-dropzone .dz-message {
    margin: 30px 0;
}

div.editable-list-file-dropzone .dz-message p,div.editable-list-image-dropzone .dz-message p {
    padding: 0;
}

div.editable-list-file-dropzone.dropzone .dz-preview.dz-file-preview .dz-image,div.editable-list-image-dropzone.dropzone .dz-preview.dz-image-preview .dz-image {
    height: 60px;
}

div.editable-list-file-dropzone.dropzone .dz-preview,div.editable-list-image-dropzone.dropzone .dz-preview {
    min-height: 50px;
    margin: 8px 16px;
}

div.editable-list-file-dropzone.dropzone .dz-preview .dz-details,div.editable-list-image-dropzone.dropzone .dz-preview .dz-details {
    padding: 1em .5em;
}

div.editable-list-file-dropzone.dropzone .dz-preview .dz-details .dz-size,div.editable-list-image-dropzone.dropzone .dz-preview .dz-details .dz-size {
    margin-bottom: .2em;
    font-size: 14px;
}

.empty-half-star {
    transform: translate(-100%, 0) scaleX(-1);
    margin-left: -1px;
    width: 0;
}

.empty-hidden:empty {
    display: none;
}

.error-message {
    color: rgb(192, 0, 0);
}

.flip-horizontal {
    transform: scaleX(-1);
}

.float-left {
    float: left;
}

.float-right {
    float: right;
}

.ui-widget.ui-tooltip {
    font-size: .8rem;
    z-index: 999999999;
}

.ui-datepicker-trigger {
    border: none;
}

.ui-datepicker-trigger span.fa-calendar-alt {
    font-size: 22px;
    color: rgb(50, 50, 150);
}

.form-line {
    position: relative;
}

.form-line .ui-datepicker-trigger, table .ui-datepicker-trigger {
    padding: 5px;
    padding-left: 10px;
    position: relative;
    top: -2px;
    border: none;
    background: none;
    height: auto;
    margin: 0;
}

.form-line .ui-datepicker-trigger:hover, table .ui-datepicker-trigger:hover {
    color: rgb(200, 200, 200);
    background-color: transparent;
}

.form-line span.help-label {
    display: block;
    font-size: .6rem;
    max-width: 800px;
    line-height: 1;
    padding-top: 2px;
}

.ui-datepicker select.ui-datepicker-month, .ui-datepicker select.ui-datepicker-year {
    min-width: 0;
}

.full-width {
    width: 100%;
}

.green-text {
    color: rgb(0, 150, 0) !important;
}

.grid-table {
    border: 2px solid rgb(255, 255, 255);
}

.grid-table td {
    border: 2px solid rgb(255, 255, 255);
    padding: 3px 10px;
    min-width: 50px;
    position: relative;
    background-color: rgb(240, 240, 240);
}

.grid-table th {
    border: 2px solid rgb(255, 255, 255);
    padding: 3px 10px;
    vertical-align: middle;
    color: rgb(255, 255, 255);
}

#_report_content table.grid-table, .report-page table.grid-table {
    border: 1px solid rgb(50, 50, 50);
}

#_report_content td table, .report-page td table {
    border: 0;
}

#_report_content table.grid-table td, .report-page table.grid-table td {
    border: 1px solid rgb(50, 50, 50);
    background-color: rgb(230, 230, 230);
}

#_report_content table.grid-table th, .report-page table.grid-table th {
    border: 1px solid rgb(50, 50, 50);
    color: rgb(0, 0, 0);
    background-color: rgb(200, 200, 200);
}

#_report_content table th, .report-page table th {
    color: rgb(0, 0, 0);
    border: 1px solid rgb(50, 50, 50);
    background-color: rgb(200, 200, 200);
}

.hidden {
    display: none !important;
}

.highlight-yellow {
    background-color: rgb(240, 240, 160);
}

.shaded-gray {
    background-color: rgb(230, 240, 250);
}

.highlighted-text {
    font-weight: 600;
}

.bold-text {
    font-weight: 900;
}

.image-left {
    float: left;
    margin: 0;
    margin-right: 20px;
    margin-bottom: 10px;
}

.image-right {
    float: right;
    margin: 0;
    margin-left: 20px;
    margin-bottom: 10px;
}

.info-message {
    color: rgb(15, 180, 50);
}

.inline-block {
    display: inline-block;
    vertical-align: top;
}

.form-line.half-inline-block,.basic-form-line.half-inline-block {
    display: inline-block;
    width: 49%;
    vertical-align: top;
}

.invisible {
    visibility: hidden !important;
}

.italic {
    font-style: italic;
}

.margin-50-div {
    width: 50%;
    margin: 40px auto;
    max-width: 800px;
}

.margin-60-div {
    width: 60%;
    margin: 40px auto;
    max-width: 960px;
}

.margin-70-div {
    width: 70%;
    margin: 40px auto;
    max-width: 1050px;
}

.margin-75-div {
    width: 75%;
    margin: 40px auto;
    max-width: 1200px;
}

.margin-80-div {
    width: 80%;
    margin: 40px auto;
    max-width: 1400px;
}

.margin-90-div {
    width: 90%;
    margin: 40px auto;
    max-width: 1600px;
}

.margin-div {
    width: 90%;
    margin: 40px auto;
    max-width: 1600px;
}

.modal {
    display: none;
    position: fixed;
    z-index: 999999999;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: rgba(0, 0, 0, .1) 50% 50% no-repeat;
}

.modal span {
    position: absolute;
    top: 30%;
    left: calc(50% - 90px);
    font-size: 180px;
    color: rgb(200, 200, 200);
}

.no-margin {
    margin: 0 !important;
}

.no-padding {
    padding: 0 !important;
}

.no-wrap {
    white-space: nowrap;
}

.position-relative {
    position: relative;
}

.strength-bar-div {
    max-width: 200px;
    display: block;
    top: 5px;
}

.strength-bar-label {
    font-size: .6rem;
    margin: 0;
}

.strength-bar {
    font-size: 1px;
    height: 6px;
    width: 10px;
}

body.waiting-for-ajax {
    overflow: hidden;
}

body.waiting-for-ajax .modal {
    display: block;
}

body.no-waiting-for-ajax .modal {
    display: none !important;
}

.moveable-background {
    background-size: cover;
    transform: scale(1.1);
}

.orange-text {
    color: rgb(220, 160, 100) !important;
}

.page-break {
    page-break-after: always;
    column-break-after: always;
    break-after: column;
}

.printable-only {
    display: none;
}

.red-text {
    color: rgb(192, 0, 0) !important;
}

.required-tag {
    font-weight: 600;
    color: rgb(192, 0, 0);
}

.strikethrough {
    text-decoration: line-through;
}

.strikeout {
    position: relative;
}

.strikeout::after {
    border-bottom: 4px solid rgb(192, 0, 0);
    content: "";
    left: 0;
    margin-top: calc(0.125em / 2 * -1);
    position: absolute;
    right: 0;
    top: 50%;
}

sub, sup {
    font-size: 60%;
}

.uppercase {
    text-transform: uppercase;
}

.lowercase {
    text-transform: lowercase;
}

.ui-dialog {
    max-width: 90%;
    z-index: 1000000 !important;
}

.ui-dialog.no-titlebar .ui-dialog-titlebar {
    border: none;
    background-color: transparent;
    height: 30px;
}

.ui-dialog.no-titlebar .ui-dialog-titlebar span.ui-dialog-title {
    display: none;
}

div.ui-dialog.information-fragment-dialog {
    border-radius: 10px;
    padding: 10px 10px 0 10px;
    border: none;
}

div.ui-dialog.information-fragment-dialog .dialog-box {
    width: 100% !important;
    position: relative;
    top: -10px;
}

div.ui-dialog.information-fragment-dialog button {
    outline: none;
}

div.ui-dialog.information-fragment-dialog .ui-dialog-titlebar {
    border: none;
    background-color: transparent;
    height: 30px;
}

#_post_iframe {
    display: none;
}

#_templates {
    display: none;
}

#_display_error {
    display: none;
}

span.required-tag.fa-asterisk {
    font-size: .5rem;
    position: relative;
    top: -6px;
    color: rgb(192, 0, 0);
    left: 4px;
}

button {
    border: 1px solid rgb(20, 20, 20);
    border-radius: 5px;
    background-color: rgb(255, 255, 255);
    padding: 8px 25px;
    font-size: 1rem;
    font-weight: 700;
    color: rgb(80, 80, 80);
    cursor: pointer;
}

button:hover {
    background-color: rgb(220, 220, 220);
}

span.button {
    border: 1px solid rgb(20, 20, 20);
    border-radius: 5px;
    background-color: rgb(255, 255, 255);
    padding: 8px 25px;
    font-size: 1rem;
    font-weight: 700;
    color: rgb(80, 80, 80);
    cursor: pointer;
    display: inline-block;
}

span.button:hover {
    background-color: rgb(220, 220, 220);
}

table.header-sortable tr.header-row th .fa-sort-alpha-down-alt {
    margin-left: 10px;
    opacity: .8;
    font-size: 120%;
}

table.header-sortable tr.header-row th .fa-sort-alpha-down {
    margin-left: 10px;
    opacity: .8;
    font-size: 120%;
}

table.header-sortable th {
    height: 30px;
    vertical-align: middle;
}

#_maintenance_form .editable-select.autocomplete-field {
    max-width: 100%;
    width: 400px;
}

#autocomplete_options {
    display: none;
    position: absolute;
    border: 1px solid rgb(200, 200, 200);
    height: 180px;
    overflow-x: hidden;
    overflow-y: scroll;
    background-color: rgb(255, 255, 255);
    z-index: 200000;
}

#autocomplete_options ul {
    padding: 2px;
    position: relative;
}

#autocomplete_options ul li {
    padding: 2px 5px;
    cursor: pointer;
    font-size: .8rem;
}

#autocomplete_options ul li:hover {
    background-color: rgb(240, 240, 160);
}

#autocomplete_options ul li.selected {
    background-color: rgb(240, 240, 160);
}

#autocomplete_address_choices_wrapper {
    position: absolute;
    border: 1px solid rgb(200, 200, 200);
    overflow-x: hidden;
    overflow-y: scroll;
    background-color: rgb(255, 255, 255);
    z-index: 200000;
    height: auto;
    max-height: 150px;
    padding-bottom: 5px;
}

#autocomplete_address_choices_wrapper ul {
    padding: 2px;
    position: relative;
    background-color: rgb(240, 255, 250);
    list-style: none;
    margin: 0;
}

#autocomplete_address_choices_wrapper ul li {
    padding: 10px 5px;
    cursor: pointer;
    font-size: .8rem;
    color: rgb(80, 80, 50);
    font-weight: 500;
    border-bottom: 1px solid rgb(200, 200, 240);
    background-color: rgb(240, 255, 250);
    list-style: none;
    margin: 0;
}

#autocomplete_address_choices_wrapper ul li:hover {
    background-color: rgb(190, 230, 200);
    font-weight: 900;
    color: rgb(30, 30, 0);
}

#autocomplete_address_choices_wrapper ul:hover li.selected {
    background-color: rgb(240, 255, 250);
    font-weight: 500;
    color: rgb(80, 80, 50);
}

#autocomplete_address_choices_wrapper ul li.selected, #autocomplete_address_choices_wrapper ul:hover li.selected:hover {
    background-color: rgb(190, 230, 200);
    font-weight: 900;
    color: rgb(30, 30, 0);
}

#_login_popup_dialog #login_form {
    text-align: center;
}

#_login_popup_dialog #forgot_form {
    display: none;
    text-align: center;
}

.show-password {
    margin-left: 10px;
    cursor: pointer;
}

.copy-to-clipboard {
    cursor: pointer;
}

.phpservant-iframe {
    width: 100%;
    max-width: 100%;
}

.cke_wysiwyg_frame, .cke_wysiwyg_div {
    background: rgb(255, 255, 255) url("/images/drop.png") no-repeat center center !important;
}

.tabbed-content {
    border-top: 0;
    color: #000;
}

.tabbed-content > ul.tabbed-content-nav {
    display: flex;
    flex-direction: row;
    margin: 0;
    padding: 0;
    width: 100%;
    list-style: none;
}

.tabbed-content .tabbed-content-body {
    border: 1px solid rgb(100, 100, 100);
    padding: 10px 40px;
    margin-bottom: 20px;
}

.tabbed-content > ul.tabbed-content-nav > li {
    border-radius: 2px 2px 0 0;
    color: black;
    flex: 0 0 auto;
    margin: 0;
    padding: 10px 15px;
    text-align: center;
    font-size: 2rem;
    font-weight: bold;
    list-style: none;
    background-color: rgb(220, 220, 220);
    border: 1px solid rgb(0, 0, 0);
    cursor: pointer;
}

.tabbed-content .tabbed-content-buttons button {
    margin: 0 40px 0 0;
}

.tabbed-content .tabbed-content-buttons button.disabled-button {
    background-color: rgb(250, 250, 250);
    color: rgb(220, 220, 220);
    border-color: rgb(220, 220, 220);
    cursor: auto;
}

.tabbed-content .tabbed-content-buttons button.disabled-button:hover {
    background-color: rgb(250, 250, 250);
    color: rgb(220, 220, 220);
    border-color: rgb(220, 220, 220);
}

.tabbed-content > ul.tabbed-content-nav > li.active {
    background-color: rgb(40, 40, 40);
    color: white;
}

.tabbed-content .tabbed-content-body {
    width: 100%;
}

.tabbed-content .tabbed-content-body > .tabbed-content-page {
    padding: 5px 0;
    width: 100%;
}

#_confirm_delete_dialog {
    z-index: 999999;
}

.right-click-menu {
    display: none;
    z-index: 1000;
    position: absolute;
    overflow: hidden;
    border: 1px solid rgb(0, 0, 0);
    white-space: nowrap;
    font-family: sans-serif;
    background: rgb(240, 240, 240);
    color: rgb(50, 50, 50);
    border-radius: 2px;
    margin: 0;
}

.right-click-menu li {
    padding: 8px 12px;
    cursor: pointer;
    margin: 0;
    font-size: 1rem;
    font-weight: 900;
}

.right-click-menu li:hover {
    background-color: #DEF;
}

@media only screen and (max-width: 1200px) {
    .margin-75-div {
        width: 90%;
    }

    .margin-60-div {
        width: 75%;
    }

    .margin-50-div {
        width: 60%;
    }
}

@media only screen and (max-width: 800px) {
    .margin-60-div {
        width: 90%;
    }

    .margin-50-div {
        width: 75%;
    }
}

@media only screen and (max-width: 800px) {
    .margin-50-div {
        width: 90%;
    }
}


/* CSS for new basic form line */

.basic-form-line {
    position: relative;
    margin-bottom: 8px;
}

.basic-form-line.no-bottom-margin {
    margin-bottom: 0;
}

.basic-form-line input[type=text], .basic-form-line textarea {
    border-width: 2px;
    border-radius: 2px;
    border-color: rgb(220, 220, 220);
    padding: 7px 10px 3px;
}

.basic-form-line input[type=text]:focus, .basic-form-line textarea:focus {
    border-color: rgb(0, 114, 114);
    background-color: rgb(255, 255, 255);
}

.basic-form-line input, .basic-form-line textarea {
    outline: none;
}

.basic-form-line input[type=file] {
    border-width: 2px;
    border-radius: 2px;
    font-size: .8rem;
    border-color: rgb(220, 220, 220);
}

.basic-form-line input::file-selector-button {
    padding: 4px 8px;
    border: 2px solid rgb(220, 220, 220);
    background-color: rgb(255, 255, 255);
    border-radius: 2px;
}

.basic-form-line.inline-block {
    padding-right: 15px;
    display: inline-block;
    vertical-align: top;
}

.basic-form-line label {
    display: block;
    padding: 0;
    font-size: .7rem;
    color: rgb(0, 114, 114);
}

.basic-form-line .custom-control {
    margin-top: 16px;
    margin-bottom: 10px;
}

.basic-form-line.custom-control-no-help .custom-control {
    margin: 0;
}

.basic-form-line.custom-control-form-line label {
    font-size: 1.2rem;
    font-weight: 600;
}

.basic-form-line .custom-control ~ .basic-form-line-messages {
    position: absolute;
    top: 22px;
}

.basic-form-line.custom-control-checkbox-links .custom-control ~ .basic-form-line-messages {
    top: -10px;
}

.checkbox-links-wrapper input[type=text].checkbox-links-filter {
    font-size: .8rem;
    padding: 2px 5px;
    margin-bottom: 5px;
    width: 100%;
}

.checkbox-link-choice-wrapper {
    margin-bottom: 2px;
}

.basic-form-line.custom-control-checkbox-links.has-selections, .basic-form-line.filter-grouping.has-selections {
    border-color: rgb(50, 50, 50);
    border-left: 5px solid rgb(50, 50, 50);
}

.basic-form-line.custom-control-checkbox-links.has-selections > label,.basic-form-line.filter-grouping.has-selections > label {
    color: rgb(50, 50, 50);
    font-weight: 700;
}

.basic-form-line .basic-form-line-messages {
    position: relative;
    width: 100%;
    line-height: .8;
    height: auto;
    min-height: 12px;
}

.basic-form-line span.help-label {
    font-size: .65rem;
    color: rgb(110, 110, 110);
    line-height: 1;
    padding-top: 2px;
}

.basic-form-line span.field-error-text {
    font-size: .7rem;
    color: rgb(200, 0, 0);
    display: none;
    line-height: 1;
}

.basic-form-line.field-error span.help-label {
    display: none;
}

.basic-form-line.field-error span.field-error-text {
    display: inline;
}

.basic-form-line span.extra-info {
    font-size: .8rem;
    position: relative;
    top: -4px;
    margin-left: 10px;
    margin-right: 10px;
}

.basic-form-line .inline-block {
    margin-right: 10px;
}

.basic-form-line .float-left {
    margin-right: 10px;
    display: block;
    float: left;
}

.basic-form-line > img {
    display: inline-block;
    position: relative;
    top: 5px;
}

.basic-form-line label.checkbox-label {
    float: none;
    display: inline-block;
    width: auto;
    text-align: left;
    padding-bottom: 0;
    margin-left: 10px;
    font-size: .9rem;
    font-weight: 600;
}

.custom-control-checkbox-links,.filter-grouping {
    padding: 10px 10px;
    border: 1px solid rgb(150, 150, 150);
    border-radius: 5px;
    display: inline-block;
    overflow: hidden;
    min-width: 200px;
    height: 40px;
}

.custom-control-checkbox-links.show-choices,.filter-grouping.show-choices {
    height: auto;
}

.basic-form-line.custom-control-checkbox-links > label,.basic-form-line.filter-grouping > label {
    margin-bottom: 10px;
    cursor: pointer;
    font-size: 1rem;
}

.custom-control-checkbox-links .checkbox-links-choices-wrapper,.filter-grouping .filter-grouping-options-wrapper {
    display: block;
    max-height: 250px;
    overflow: scroll;
}

.custom-control-checkbox-links > label > .fa-chevron-up,.filter-grouping > label > .fa-chevron-up {
    display: none;
}

.custom-control-checkbox-links > label > .fa-chevron-down,.filter-grouping > label > .fa-chevron-down {
    display: block;
}

.custom-control-checkbox-links.show-choices > label > .fa-chevron-up,.filter-grouping.show-choices > label > .fa-chevron-up {
    display: block;
}

.custom-control-checkbox-links.show-choices > label > .fa-chevron-down,.filter-grouping.show-choices > label > .fa-chevron-down {
    display: none;
}

.checkbox-link-clear-selections-wrapper {
    font-size: .8rem;
}

.basic-form-line .custom-control label.checkbox-label {
    font-weight: 400;
}

.basic-form-line .textarea-wrapper {
    display: inline-block;
    width: 100%;
}

.basic-form-line textarea {
    display: inline-block;
    width: 90%;
}

.basic-form-line .textarea-wrapper textarea {
    width: 90%;
}

.basic-form-line .ui-datepicker-trigger {
    padding: 5px;
    padding-left: 10px;
    position: relative;
    top: -2px;
    border: none;
    background: none;
    height: auto;
    margin: 0;
}

.basic-form-line .ui-datepicker-trigger span {
    color: rgb(0, 114, 114);
}

.basic-form-line .ui-datepicker-trigger:hover span {
    color: rgb(200, 200, 200);
}

.catalog-result-product-tag {
    display: none;
    padding: 2px;
    margin-right: 4px;
    margin-bottom: 4px;
    color: rgb(255, 255, 255);
}

#_error_message_popup {
    width: 400px;
    height: 50px;
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: rgb(250,250,250);
    border: 1px solid rgb(180,180,180);
    border-radius: 5px;
    display: none;
}

#_error_message_popup p {
    position: absolute;
    top: 50%;
    left: 50%;
    font-weight: 500;
    transform: translate(-50%,-50%);
    width: 100%;
    text-align: center;
    padding: 10px;
    margin: 0;
    font-size: .7rem;
}

#_error_message_popup.error-visible {
    display: block;
}div.pp_default .pp_top,div.pp_default .pp_top .pp_middle,div.pp_default .pp_top .pp_left,div.pp_default .pp_top .pp_right,div.pp_default .pp_bottom,div.pp_default .pp_bottom .pp_left,div.pp_default .pp_bottom .pp_middle,div.pp_default .pp_bottom .pp_right{height:13px}
div.pp_default .pp_top .pp_left{background:url(../images/prettyPhoto/default/sprite.png) -78px -93px no-repeat}
div.pp_default .pp_top .pp_middle{background:url(../images/prettyPhoto/default/sprite_x.png) top left repeat-x}
div.pp_default .pp_top .pp_right{background:url(../images/prettyPhoto/default/sprite.png) -112px -93px no-repeat}
div.pp_default .pp_content .ppt{color:#f8f8f8}
div.pp_default .pp_content_container .pp_left{background:url(../images/prettyPhoto/default/sprite_y.png) -7px 0 repeat-y;padding-left:13px}
div.pp_default .pp_content_container .pp_right{background:url(../images/prettyPhoto/default/sprite_y.png) top right repeat-y;padding-right:13px}
div.pp_default .pp_next:hover{background:url(../images/prettyPhoto/default/sprite_next.png) center right no-repeat;cursor:pointer}
div.pp_default .pp_previous:hover{background:url(../images/prettyPhoto/default/sprite_prev.png) center left no-repeat;cursor:pointer}
div.pp_default .pp_expand{background:url(../images/prettyPhoto/default/sprite.png) 0 -29px no-repeat;cursor:pointer;width:28px;height:28px}
div.pp_default .pp_expand:hover{background:url(../images/prettyPhoto/default/sprite.png) 0 -56px no-repeat;cursor:pointer}
div.pp_default .pp_contract{background:url(../images/prettyPhoto/default/sprite.png) 0 -84px no-repeat;cursor:pointer;width:28px;height:28px}
div.pp_default .pp_contract:hover{background:url(../images/prettyPhoto/default/sprite.png) 0 -113px no-repeat;cursor:pointer}
div.pp_default .pp_close{width:30px;height:30px;background:url(../images/prettyPhoto/default/sprite.png) 2px 1px no-repeat;cursor:pointer}
div.pp_default .pp_gallery ul li a{background:url(../images/prettyPhoto/default/default_thumb.png) center center #f8f8f8;border:1px solid #aaa}
div.pp_default .pp_social{margin-top:7px}
div.pp_default .pp_gallery a.pp_arrow_previous,div.pp_default .pp_gallery a.pp_arrow_next{position:static;left:auto}
div.pp_default .pp_nav .pp_play,div.pp_default .pp_nav .pp_pause{background:url(../images/prettyPhoto/default/sprite.png) -51px 1px no-repeat;height:30px;width:30px}
div.pp_default .pp_nav .pp_pause{background-position:-51px -29px}
div.pp_default a.pp_arrow_previous,div.pp_default a.pp_arrow_next{background:url(../images/prettyPhoto/default/sprite.png) -31px -3px no-repeat;height:20px;width:20px;margin:4px 0 0}
div.pp_default a.pp_arrow_next{left:52px;background-position:-82px -3px}
div.pp_default .pp_content_container .pp_details{margin-top:5px; position: absolute;top: -5px;}
div.pp_default .pp_nav{clear:none;height:30px;width:110px;position:relative}
div.pp_default .pp_nav .currentTextHolder{font-family:Georgia;font-style:italic;color:#999;font-size:11px;left:75px;line-height:25px;position:absolute;top:2px;margin:0;padding:0 0 0 10px}
div.pp_default .pp_close:hover,div.pp_default .pp_nav .pp_play:hover,div.pp_default .pp_nav .pp_pause:hover,div.pp_default .pp_arrow_next:hover,div.pp_default .pp_arrow_previous:hover{opacity:0.7}
div.pp_default .pp_description{font-size:11px;font-weight:700;line-height:14px;margin:5px 50px 5px 0}
div.pp_default .pp_bottom .pp_left{background:url(../images/prettyPhoto/default/sprite.png) -78px -127px no-repeat}
div.pp_default .pp_bottom .pp_middle{background:url(../images/prettyPhoto/default/sprite_x.png) bottom left repeat-x}
div.pp_default .pp_bottom .pp_right{background:url(../images/prettyPhoto/default/sprite.png) -112px -127px no-repeat}
div.pp_default .pp_loaderIcon{background:url(../images/prettyPhoto/default/loader.gif) center center no-repeat}
div.light_rounded .pp_top .pp_left{background:url(../images/prettyPhoto/light_rounded/sprite.png) -88px -53px no-repeat}
div.light_rounded .pp_top .pp_right{background:url(../images/prettyPhoto/light_rounded/sprite.png) -110px -53px no-repeat}
div.light_rounded .pp_next:hover{background:url(../images/prettyPhoto/light_rounded/btnNext.png) center right no-repeat;cursor:pointer}
div.light_rounded .pp_previous:hover{background:url(../images/prettyPhoto/light_rounded/btnPrevious.png) center left no-repeat;cursor:pointer}
div.light_rounded .pp_expand{background:url(../images/prettyPhoto/light_rounded/sprite.png) -31px -26px no-repeat;cursor:pointer}
div.light_rounded .pp_expand:hover{background:url(../images/prettyPhoto/light_rounded/sprite.png) -31px -47px no-repeat;cursor:pointer}
div.light_rounded .pp_contract{background:url(../images/prettyPhoto/light_rounded/sprite.png) 0 -26px no-repeat;cursor:pointer}
div.light_rounded .pp_contract:hover{background:url(../images/prettyPhoto/light_rounded/sprite.png) 0 -47px no-repeat;cursor:pointer}
div.light_rounded .pp_close{width:75px;height:22px;background:url(../images/prettyPhoto/light_rounded/sprite.png) -1px -1px no-repeat;cursor:pointer}
div.light_rounded .pp_nav .pp_play{background:url(../images/prettyPhoto/light_rounded/sprite.png) -1px -100px no-repeat;height:15px;width:14px}
div.light_rounded .pp_nav .pp_pause{background:url(../images/prettyPhoto/light_rounded/sprite.png) -24px -100px no-repeat;height:15px;width:14px}
div.light_rounded .pp_arrow_previous{background:url(../images/prettyPhoto/light_rounded/sprite.png) 0 -71px no-repeat}
div.light_rounded .pp_arrow_next{background:url(../images/prettyPhoto/light_rounded/sprite.png) -22px -71px no-repeat}
div.light_rounded .pp_bottom .pp_left{background:url(../images/prettyPhoto/light_rounded/sprite.png) -88px -80px no-repeat}
div.light_rounded .pp_bottom .pp_right{background:url(../images/prettyPhoto/light_rounded/sprite.png) -110px -80px no-repeat}
div.dark_rounded .pp_top .pp_left{background:url(../images/prettyPhoto/dark_rounded/sprite.png) -88px -53px no-repeat}
div.dark_rounded .pp_top .pp_right{background:url(../images/prettyPhoto/dark_rounded/sprite.png) -110px -53px no-repeat}
div.dark_rounded .pp_content_container .pp_left{background:url(../images/prettyPhoto/dark_rounded/contentPattern.png) top left repeat-y}
div.dark_rounded .pp_content_container .pp_right{background:url(../images/prettyPhoto/dark_rounded/contentPattern.png) top right repeat-y}
div.dark_rounded .pp_next:hover{background:url(../images/prettyPhoto/dark_rounded/btnNext.png) center right no-repeat;cursor:pointer}
div.dark_rounded .pp_previous:hover{background:url(../images/prettyPhoto/dark_rounded/btnPrevious.png) center left no-repeat;cursor:pointer}
div.dark_rounded .pp_expand{background:url(../images/prettyPhoto/dark_rounded/sprite.png) -31px -26px no-repeat;cursor:pointer}
div.dark_rounded .pp_expand:hover{background:url(../images/prettyPhoto/dark_rounded/sprite.png) -31px -47px no-repeat;cursor:pointer}
div.dark_rounded .pp_contract{background:url(../images/prettyPhoto/dark_rounded/sprite.png) 0 -26px no-repeat;cursor:pointer}
div.dark_rounded .pp_contract:hover{background:url(../images/prettyPhoto/dark_rounded/sprite.png) 0 -47px no-repeat;cursor:pointer}
div.dark_rounded .pp_close{width:75px;height:22px;background:url(../images/prettyPhoto/dark_rounded/sprite.png) -1px -1px no-repeat;cursor:pointer}
div.dark_rounded .pp_description{margin-right:85px;color:#fff}
div.dark_rounded .pp_nav .pp_play{background:url(../images/prettyPhoto/dark_rounded/sprite.png) -1px -100px no-repeat;height:15px;width:14px}
div.dark_rounded .pp_nav .pp_pause{background:url(../images/prettyPhoto/dark_rounded/sprite.png) -24px -100px no-repeat;height:15px;width:14px}
div.dark_rounded .pp_arrow_previous{background:url(../images/prettyPhoto/dark_rounded/sprite.png) 0 -71px no-repeat}
div.dark_rounded .pp_arrow_next{background:url(../images/prettyPhoto/dark_rounded/sprite.png) -22px -71px no-repeat}
div.dark_rounded .pp_bottom .pp_left{background:url(../images/prettyPhoto/dark_rounded/sprite.png) -88px -80px no-repeat}
div.dark_rounded .pp_bottom .pp_right{background:url(../images/prettyPhoto/dark_rounded/sprite.png) -110px -80px no-repeat}
div.dark_rounded .pp_loaderIcon{background:url(../images/prettyPhoto/dark_rounded/loader.gif) center center no-repeat}
div.dark_square .pp_left,div.dark_square .pp_middle,div.dark_square .pp_right,div.dark_square .pp_content{background:#000}
div.dark_square .pp_description{color:#fff;margin:0 85px 0 0}
div.dark_square .pp_loaderIcon{background:url(../images/prettyPhoto/dark_square/loader.gif) center center no-repeat}
div.dark_square .pp_expand{background:url(../images/prettyPhoto/dark_square/sprite.png) -31px -26px no-repeat;cursor:pointer}
div.dark_square .pp_expand:hover{background:url(../images/prettyPhoto/dark_square/sprite.png) -31px -47px no-repeat;cursor:pointer}
div.dark_square .pp_contract{background:url(../images/prettyPhoto/dark_square/sprite.png) 0 -26px no-repeat;cursor:pointer}
div.dark_square .pp_contract:hover{background:url(../images/prettyPhoto/dark_square/sprite.png) 0 -47px no-repeat;cursor:pointer}
div.dark_square .pp_close{width:75px;height:22px;background:url(../images/prettyPhoto/dark_square/sprite.png) -1px -1px no-repeat;cursor:pointer}
div.dark_square .pp_nav{clear:none}
div.dark_square .pp_nav .pp_play{background:url(../images/prettyPhoto/dark_square/sprite.png) -1px -100px no-repeat;height:15px;width:14px}
div.dark_square .pp_nav .pp_pause{background:url(../images/prettyPhoto/dark_square/sprite.png) -24px -100px no-repeat;height:15px;width:14px}
div.dark_square .pp_arrow_previous{background:url(../images/prettyPhoto/dark_square/sprite.png) 0 -71px no-repeat}
div.dark_square .pp_arrow_next{background:url(../images/prettyPhoto/dark_square/sprite.png) -22px -71px no-repeat}
div.dark_square .pp_next:hover{background:url(../images/prettyPhoto/dark_square/btnNext.png) center right no-repeat;cursor:pointer}
div.dark_square .pp_previous:hover{background:url(../images/prettyPhoto/dark_square/btnPrevious.png) center left no-repeat;cursor:pointer}
div.light_square .pp_expand{background:url(../images/prettyPhoto/light_square/sprite.png) -31px -26px no-repeat;cursor:pointer}
div.light_square .pp_expand:hover{background:url(../images/prettyPhoto/light_square/sprite.png) -31px -47px no-repeat;cursor:pointer}
div.light_square .pp_contract{background:url(../images/prettyPhoto/light_square/sprite.png) 0 -26px no-repeat;cursor:pointer}
div.light_square .pp_contract:hover{background:url(../images/prettyPhoto/light_square/sprite.png) 0 -47px no-repeat;cursor:pointer}
div.light_square .pp_close{width:75px;height:22px;background:url(../images/prettyPhoto/light_square/sprite.png) -1px -1px no-repeat;cursor:pointer}
div.light_square .pp_nav .pp_play{background:url(../images/prettyPhoto/light_square/sprite.png) -1px -100px no-repeat;height:15px;width:14px}
div.light_square .pp_nav .pp_pause{background:url(../images/prettyPhoto/light_square/sprite.png) -24px -100px no-repeat;height:15px;width:14px}
div.light_square .pp_arrow_previous{background:url(../images/prettyPhoto/light_square/sprite.png) 0 -71px no-repeat}
div.light_square .pp_arrow_next{background:url(../images/prettyPhoto/light_square/sprite.png) -22px -71px no-repeat}
div.light_square .pp_next:hover{background:url(../images/prettyPhoto/light_square/btnNext.png) center right no-repeat;cursor:pointer}
div.light_square .pp_previous:hover{background:url(../images/prettyPhoto/light_square/btnPrevious.png) center left no-repeat;cursor:pointer}
div.facebook .pp_top .pp_left{background:url(../images/prettyPhoto/facebook/sprite.png) -88px -53px no-repeat}
div.facebook .pp_top .pp_middle{background:url(../images/prettyPhoto/facebook/contentPatternTop.png) top left repeat-x}
div.facebook .pp_top .pp_right{background:url(../images/prettyPhoto/facebook/sprite.png) -110px -53px no-repeat}
div.facebook .pp_content_container .pp_left{background:url(../images/prettyPhoto/facebook/contentPatternLeft.png) top left repeat-y}
div.facebook .pp_content_container .pp_right{background:url(../images/prettyPhoto/facebook/contentPatternRight.png) top right repeat-y}
div.facebook .pp_expand{background:url(../images/prettyPhoto/facebook/sprite.png) -31px -26px no-repeat;cursor:pointer}
div.facebook .pp_expand:hover{background:url(../images/prettyPhoto/facebook/sprite.png) -31px -47px no-repeat;cursor:pointer}
div.facebook .pp_contract{background:url(../images/prettyPhoto/facebook/sprite.png) 0 -26px no-repeat;cursor:pointer}
div.facebook .pp_contract:hover{background:url(../images/prettyPhoto/facebook/sprite.png) 0 -47px no-repeat;cursor:pointer}
div.facebook .pp_close{width:22px;height:22px;background:url(../images/prettyPhoto/facebook/sprite.png) -1px -1px no-repeat;cursor:pointer}
div.facebook .pp_description{margin:0 37px 0 0}
div.facebook .pp_loaderIcon{background:url(../images/prettyPhoto/facebook/loader.gif) center center no-repeat}
div.facebook .pp_arrow_previous{background:url(../images/prettyPhoto/facebook/sprite.png) 0 -71px no-repeat;height:22px;margin-top:0;width:22px}
div.facebook .pp_arrow_previous.disabled{background-position:0 -96px;cursor:default}
div.facebook .pp_arrow_next{background:url(../images/prettyPhoto/facebook/sprite.png) -32px -71px no-repeat;height:22px;margin-top:0;width:22px}
div.facebook .pp_arrow_next.disabled{background-position:-32px -96px;cursor:default}
div.facebook .pp_nav{margin-top:0}
div.facebook .pp_nav p{font-size:15px;padding:0 3px 0 4px}
div.facebook .pp_nav .pp_play{background:url(../images/prettyPhoto/facebook/sprite.png) -1px -123px no-repeat;height:22px;width:22px}
div.facebook .pp_nav .pp_pause{background:url(../images/prettyPhoto/facebook/sprite.png) -32px -123px no-repeat;height:22px;width:22px}
div.facebook .pp_next:hover{background:url(../images/prettyPhoto/facebook/btnNext.png) center right no-repeat;cursor:pointer}
div.facebook .pp_previous:hover{background:url(../images/prettyPhoto/facebook/btnPrevious.png) center left no-repeat;cursor:pointer}
div.facebook .pp_bottom .pp_left{background:url(../images/prettyPhoto/facebook/sprite.png) -88px -80px no-repeat}
div.facebook .pp_bottom .pp_middle{background:url(../images/prettyPhoto/facebook/contentPatternBottom.png) top left repeat-x}
div.facebook .pp_bottom .pp_right{background:url(../images/prettyPhoto/facebook/sprite.png) -110px -80px no-repeat}
div.pp_pic_holder a:focus{outline:none}
div.pp_overlay{background:#000;display:none;left:0;position:absolute;top:0;width:100%;z-index:95000}
div.pp_pic_holder{display:none;position:absolute;width:100px;z-index:100000}
.pp_content{height:40px;min-width:40px}
* html .pp_content{width:40px}
.pp_content_container{position:relative;text-align:left;width:100%}
.pp_content_container .pp_left{padding-left:20px}
.pp_content_container .pp_right{padding-right:20px}
.pp_content_container .pp_details{float:left;margin:10px 0 2px}
.pp_description{display:none;margin:0}
.pp_social{float:left;margin:0}
.pp_social .facebook{float:left;margin-left:5px;width:55px;overflow:hidden}
.pp_social .twitter{float:left}
.pp_nav{clear:right;float:left;margin:3px 10px 0 0}
.pp_nav p{float:left;white-space:nowrap;margin:2px 4px}
.pp_nav .pp_play,.pp_nav .pp_pause{float:left;margin-right:4px;text-indent:-10000px}
a.pp_arrow_previous,a.pp_arrow_next{display:block;float:left;height:15px;margin-top:3px;overflow:hidden;text-indent:-10000px;width:14px}
.pp_hoverContainer{position:absolute;top:40px;width:100%;z-index:2000}
.pp_gallery{display:none;left:50%;margin-top:-50px;position:absolute;z-index:10000}
.pp_gallery div{float:left;overflow:hidden;position:relative}
.pp_gallery ul{float:left;height:35px;position:relative;white-space:nowrap;margin:0 0 0 5px;padding:0}
.pp_gallery ul a{border:1px rgba(0,0,0,0.5) solid;display:block;float:left;height:33px;overflow:hidden}
.pp_gallery ul a img{border:0}
.pp_gallery li{display:block;float:left;margin:0 5px 0 0;padding:0}
.pp_gallery li.default a{background:url(../images/prettyPhoto/facebook/default_thumbnail.gif) 0 0 no-repeat;display:block;height:33px;width:50px}
.pp_gallery .pp_arrow_previous,.pp_gallery .pp_arrow_next{margin-top:7px!important}
a.pp_next{background:url(../images/prettyPhoto/light_rounded/btnNext.png) 10000px 10000px no-repeat;display:block;float:right;height:100%;text-indent:-10000px;width:49%}
a.pp_previous{background:url(../images/prettyPhoto/light_rounded/btnNext.png) 10000px 10000px no-repeat;display:block;float:left;height:100%;text-indent:-10000px;width:49%}
a.pp_expand,a.pp_contract{cursor:pointer;display:none;height:20px;position:absolute;right:30px;text-indent:-10000px;top:10px;width:20px;z-index:20000}
a.pp_close{position:absolute;right:0;top:0;display:block;line-height:22px;text-indent:-10000px}
.pp_loaderIcon{display:block;height:24px;left:50%;position:absolute;top:50%;width:24px;margin:-12px 0 0 -12px}
#pp_full_res{line-height:1!important}
#pp_full_res .pp_inline{text-align:left}
#pp_full_res .pp_inline p{margin:0 0 15px}
div.ppt{color:#fff;display:none;font-size:17px;z-index:9999;margin:0 0 5px 15px}
div.pp_default .pp_content,div.light_rounded .pp_content{background-color:#fff}
div.pp_default #pp_full_res .pp_inline,div.light_rounded .pp_content .ppt,div.light_rounded #pp_full_res .pp_inline,div.light_square .pp_content .ppt,div.light_square #pp_full_res .pp_inline,div.facebook .pp_content .ppt,div.facebook #pp_full_res .pp_inline{color:#000}
div.pp_default .pp_gallery ul li a:hover,div.pp_default .pp_gallery ul li.selected a,.pp_gallery ul a:hover,.pp_gallery li.selected a{border-color:#fff}
div.pp_default .pp_details,div.light_rounded .pp_details,div.dark_rounded .pp_details,div.dark_square .pp_details,div.light_square .pp_details,div.facebook .pp_details{position:relative}
div.light_rounded .pp_top .pp_middle,div.light_rounded .pp_content_container .pp_left,div.light_rounded .pp_content_container .pp_right,div.light_rounded .pp_bottom .pp_middle,div.light_square .pp_left,div.light_square .pp_middle,div.light_square .pp_right,div.light_square .pp_content,div.facebook .pp_content{background:#fff}
div.light_rounded .pp_description,div.light_square .pp_description{margin-right:85px}
div.light_rounded .pp_gallery a.pp_arrow_previous,div.light_rounded .pp_gallery a.pp_arrow_next,div.dark_rounded .pp_gallery a.pp_arrow_previous,div.dark_rounded .pp_gallery a.pp_arrow_next,div.dark_square .pp_gallery a.pp_arrow_previous,div.dark_square .pp_gallery a.pp_arrow_next,div.light_square .pp_gallery a.pp_arrow_previous,div.light_square .pp_gallery a.pp_arrow_next{margin-top:12px!important}
div.light_rounded .pp_arrow_previous.disabled,div.dark_rounded .pp_arrow_previous.disabled,div.dark_square .pp_arrow_previous.disabled,div.light_square .pp_arrow_previous.disabled{background-position:0 -87px;cursor:default}
div.light_rounded .pp_arrow_next.disabled,div.dark_rounded .pp_arrow_next.disabled,div.dark_square .pp_arrow_next.disabled,div.light_square .pp_arrow_next.disabled{background-position:-22px -87px;cursor:default}
div.light_rounded .pp_loaderIcon,div.light_square .pp_loaderIcon{background:url(../images/prettyPhoto/light_rounded/loader.gif) center center no-repeat}
div.dark_rounded .pp_top .pp_middle,div.dark_rounded .pp_content,div.dark_rounded .pp_bottom .pp_middle{background:url(../images/prettyPhoto/dark_rounded/contentPattern.png) top left repeat}
div.dark_rounded .currentTextHolder,div.dark_square .currentTextHolder{color:#c4c4c4}
div.dark_rounded #pp_full_res .pp_inline,div.dark_square #pp_full_res .pp_inline{color:#fff}
.pp_top,.pp_bottom{height:20px;position:relative}
* html .pp_top,* html .pp_bottom{padding:0 20px}
.pp_top .pp_left,.pp_bottom .pp_left{height:20px;left:0;position:absolute;width:20px}
.pp_top .pp_middle,.pp_bottom .pp_middle{height:20px;left:20px;position:absolute;right:20px}
* html .pp_top .pp_middle,* html .pp_bottom .pp_middle{left:0;position:static}
.pp_top .pp_right,.pp_bottom .pp_right{height:20px;left:auto;position:absolute;right:0;top:0;width:20px}
.pp_fade,.pp_gallery li.default a img{display:none}
/*! jQuery UI - v1.12.1 - 2020-04-07
* http://jqueryui.com
* Includes: draggable.css, core.css, resizable.css, selectable.css, sortable.css, accordion.css, button.css, controlgroup.css, checkboxradio.css, datepicker.css, dialog.css, tabs.css, tooltip.css, theme.css
* To view and modify this theme, visit http://jqueryui.com/themeroller/?scope=&folderName=base&cornerRadiusShadow=8px&offsetLeftShadow=0px&offsetTopShadow=0px&thicknessShadow=5px&opacityShadow=30&bgImgOpacityShadow=0&bgTextureShadow=flat&bgColorShadow=666666&opacityOverlay=30&bgImgOpacityOverlay=0&bgTextureOverlay=flat&bgColorOverlay=aaaaaa&iconColorError=cc0000&fcError=5f3f3f&borderColorError=f1a899&bgTextureError=flat&bgColorError=fddfdf&iconColorHighlight=777620&fcHighlight=777620&borderColorHighlight=dad55e&bgTextureHighlight=flat&bgColorHighlight=fffa90&iconColorActive=ffffff&fcActive=ffffff&borderColorActive=003eff&bgTextureActive=flat&bgColorActive=007fff&iconColorHover=555555&fcHover=2b2b2b&borderColorHover=cccccc&bgTextureHover=flat&bgColorHover=ededed&iconColorDefault=777777&fcDefault=454545&borderColorDefault=c5c5c5&bgTextureDefault=flat&bgColorDefault=f6f6f6&iconColorContent=444444&fcContent=333333&borderColorContent=dddddd&bgTextureContent=flat&bgColorContent=ffffff&iconColorHeader=444444&fcHeader=333333&borderColorHeader=dddddd&bgTextureHeader=flat&bgColorHeader=e9e9e9&cornerRadius=3px&fwDefault=normal&fsDefault=1rem&ffDefault=Arial%2CHelvetica%2Csans-serif
* Copyright jQuery Foundation and other contributors; Licensed MIT */

.ui-draggable-handle {
	-ms-touch-action: none;
	touch-action: none;
}
/* Layout helpers
----------------------------------*/
.ui-helper-hidden {
	display: none;
}
.ui-helper-hidden-accessible {
	border: 0;
	clip: rect(0 0 0 0);
	height: 1px;
	margin: -1px;
	overflow: hidden;
	padding: 0;
	position: absolute;
	width: 1px;
}
.ui-helper-reset {
	margin: 0;
	padding: 0;
	border: 0;
	outline: 0;
	line-height: 1.3;
	text-decoration: none;
	font-size: 100%;
	list-style: none;
}
.ui-helper-clearfix:before,
.ui-helper-clearfix:after {
	content: "";
	display: table;
	border-collapse: collapse;
}
.ui-helper-clearfix:after {
	clear: both;
}
.ui-helper-zfix {
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	position: absolute;
	opacity: 0;
	filter:Alpha(Opacity=0); /* support: IE8 */
}

.ui-front {
	z-index: 100;
}


/* Interaction Cues
----------------------------------*/
.ui-state-disabled {
	cursor: default !important;
	pointer-events: none;
}


/* Icons
----------------------------------*/
.ui-icon {
	display: inline-block;
	vertical-align: middle;
	margin-top: -.25em;
	position: relative;
	text-indent: -99999px;
	overflow: hidden;
	background-repeat: no-repeat;
}

.ui-widget-icon-block {
	left: 50%;
	margin-left: -8px;
	display: block;
}

/* Misc visuals
----------------------------------*/

/* Overlays */
.ui-widget-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
.ui-resizable {
	position: relative;
}
.ui-resizable-handle {
	position: absolute;
	font-size: 0.1px;
	display: block;
	-ms-touch-action: none;
	touch-action: none;
}
.ui-resizable-disabled .ui-resizable-handle,
.ui-resizable-autohide .ui-resizable-handle {
	display: none;
}
.ui-resizable-n {
	cursor: n-resize;
	height: 7px;
	width: 100%;
	top: -5px;
	left: 0;
}
.ui-resizable-s {
	cursor: s-resize;
	height: 7px;
	width: 100%;
	bottom: -5px;
	left: 0;
}
.ui-resizable-e {
	cursor: e-resize;
	width: 7px;
	right: -5px;
	top: 0;
	height: 100%;
}
.ui-resizable-w {
	cursor: w-resize;
	width: 7px;
	left: -5px;
	top: 0;
	height: 100%;
}
.ui-resizable-se {
	cursor: se-resize;
	width: 12px;
	height: 12px;
	right: 1px;
	bottom: 1px;
}
.ui-resizable-sw {
	cursor: sw-resize;
	width: 9px;
	height: 9px;
	left: -5px;
	bottom: -5px;
}
.ui-resizable-nw {
	cursor: nw-resize;
	width: 9px;
	height: 9px;
	left: -5px;
	top: -5px;
}
.ui-resizable-ne {
	cursor: ne-resize;
	width: 9px;
	height: 9px;
	right: -5px;
	top: -5px;
}
.ui-selectable {
	-ms-touch-action: none;
	touch-action: none;
}
.ui-selectable-helper {
	position: absolute;
	z-index: 100;
	border: 1px dotted black;
}
.ui-sortable-handle {
	-ms-touch-action: none;
	touch-action: none;
}
.ui-accordion .ui-accordion-header {
	display: block;
	cursor: pointer;
	position: relative;
	margin: 2px 0 0 0;
	padding: .5em .5em .5em .7em;
	font-size: 100%;
}
.ui-accordion .ui-accordion-content {
	padding: 1em 2.2em;
	border-top: 0;
	overflow: auto;
}
.ui-button {
	padding: .4em 1em;
	display: inline-block;
	position: relative;
	line-height: normal;
	margin-right: .1em;
	cursor: pointer;
	vertical-align: middle;
	text-align: center;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;

	/* Support: IE <= 11 */
	overflow: visible;
}

.ui-button,
.ui-button:link,
.ui-button:visited,
.ui-button:hover,
.ui-button:active {
	text-decoration: none;
}

/* to make room for the icon, a width needs to be set here */
.ui-button-icon-only {
	width: 2em;
	box-sizing: border-box;
	text-indent: -9999px;
	white-space: nowrap;
}

/* no icon support for input elements */
input.ui-button.ui-button-icon-only {
	text-indent: 0;
}

/* button icon element(s) */
.ui-button-icon-only .ui-icon {
	position: absolute;
	top: 50%;
	left: 50%;
	margin-top: -8px;
	margin-left: -8px;
}

.ui-button.ui-icon-notext .ui-icon {
	padding: 0;
	width: 2.1em;
	height: 2.1em;
	text-indent: -9999px;
	white-space: nowrap;

}

input.ui-button.ui-icon-notext .ui-icon {
	width: auto;
	height: auto;
	text-indent: 0;
	white-space: normal;
	padding: .4em 1em;
}

/* workarounds */
/* Support: Firefox 5 - 40 */
input.ui-button::-moz-focus-inner,
button.ui-button::-moz-focus-inner {
	border: 0;
	padding: 0;
}
.ui-controlgroup {
	vertical-align: middle;
	display: inline-block;
}
.ui-controlgroup > .ui-controlgroup-item {
	float: left;
	margin-left: 0;
	margin-right: 0;
}
.ui-controlgroup > .ui-controlgroup-item:focus,
.ui-controlgroup > .ui-controlgroup-item.ui-visual-focus {
	z-index: 9999;
}
.ui-controlgroup-vertical > .ui-controlgroup-item {
	display: block;
	float: none;
	width: 100%;
	margin-top: 0;
	margin-bottom: 0;
	text-align: left;
}
.ui-controlgroup-vertical .ui-controlgroup-item {
	box-sizing: border-box;
}
.ui-controlgroup .ui-controlgroup-label {
	padding: .4em 1em;
}
.ui-controlgroup .ui-controlgroup-label span {
	font-size: 80%;
}
.ui-controlgroup-horizontal .ui-controlgroup-label + .ui-controlgroup-item {
	border-left: none;
}
.ui-controlgroup-vertical .ui-controlgroup-label + .ui-controlgroup-item {
	border-top: none;
}
.ui-controlgroup-horizontal .ui-controlgroup-label.ui-widget-content {
	border-right: none;
}
.ui-controlgroup-vertical .ui-controlgroup-label.ui-widget-content {
	border-bottom: none;
}

/* Spinner specific style fixes */
.ui-controlgroup-vertical .ui-spinner-input {

	/* Support: IE8 only, Android < 4.4 only */
	width: 75%;
	width: calc( 100% - 2.4em );
}
.ui-controlgroup-vertical .ui-spinner .ui-spinner-up {
	border-top-style: solid;
}

.ui-checkboxradio-label .ui-icon-background {
	box-shadow: inset 1px 1px 1px #ccc;
	border-radius: .12em;
	border: none;
}
.ui-checkboxradio-radio-label .ui-icon-background {
	width: 16px;
	height: 16px;
	border-radius: 1em;
	overflow: visible;
	border: none;
}
.ui-checkboxradio-radio-label.ui-checkboxradio-checked .ui-icon,
.ui-checkboxradio-radio-label.ui-checkboxradio-checked:hover .ui-icon {
	background-image: none;
	width: 8px;
	height: 8px;
	border-width: 4px;
	border-style: solid;
}
.ui-checkboxradio-disabled {
	pointer-events: none;
}
.ui-datepicker {
	width: 17em;
	padding: .2em .2em 0;
	display: none;
}
.ui-datepicker .ui-datepicker-header {
	position: relative;
	padding: .2em 0;
}
.ui-datepicker .ui-datepicker-prev,
.ui-datepicker .ui-datepicker-next {
	position: absolute;
	top: 2px;
	width: 1.8em;
	height: 1.8em;
}
.ui-datepicker .ui-datepicker-prev-hover,
.ui-datepicker .ui-datepicker-next-hover {
	top: 1px;
}
.ui-datepicker .ui-datepicker-prev {
	left: 2px;
}
.ui-datepicker .ui-datepicker-next {
	right: 2px;
}
.ui-datepicker .ui-datepicker-prev-hover {
	left: 1px;
}
.ui-datepicker .ui-datepicker-next-hover {
	right: 1px;
}
.ui-datepicker .ui-datepicker-prev span,
.ui-datepicker .ui-datepicker-next span {
	display: block;
	position: absolute;
	left: 50%;
	margin-left: -8px;
	top: 50%;
	margin-top: -8px;
}
.ui-datepicker .ui-datepicker-title {
	margin: 0 2.3em;
	line-height: 1.8em;
	text-align: center;
}
.ui-datepicker .ui-datepicker-title select {
	font-size: 1rem;
	margin: 1px 0;
}
.ui-datepicker select.ui-datepicker-month,
.ui-datepicker select.ui-datepicker-year {
	width: 45%;
}
.ui-datepicker table {
	width: 100%;
	font-size: .9em;
	border-collapse: collapse;
	margin: 0 0 .4em;
}
.ui-datepicker th {
	padding: .7em .3em;
	text-align: center;
	font-weight: bold;
	border: 0;
}
.ui-datepicker td {
	border: 0;
	padding: 1px;
}
.ui-datepicker td span,
.ui-datepicker td a {
	display: block;
	padding: .2em;
	text-align: right;
	text-decoration: none;
}
.ui-datepicker .ui-datepicker-buttonpane {
	background-image: none;
	margin: .7em 0 0 0;
	padding: 0 .2em;
	border-left: 0;
	border-right: 0;
	border-bottom: 0;
}
.ui-datepicker .ui-datepicker-buttonpane button {
	float: right;
	margin: .5em .2em .4em;
	cursor: pointer;
	padding: .2em .6em .3em .6em;
	width: auto;
	overflow: visible;
}
.ui-datepicker .ui-datepicker-buttonpane button.ui-datepicker-current {
	float: left;
}

/* with multiple calendars */
.ui-datepicker.ui-datepicker-multi {
	width: auto;
}
.ui-datepicker-multi .ui-datepicker-group {
	float: left;
}
.ui-datepicker-multi .ui-datepicker-group table {
	width: 95%;
	margin: 0 auto .4em;
}
.ui-datepicker-multi-2 .ui-datepicker-group {
	width: 50%;
}
.ui-datepicker-multi-3 .ui-datepicker-group {
	width: 33.3%;
}
.ui-datepicker-multi-4 .ui-datepicker-group {
	width: 25%;
}
.ui-datepicker-multi .ui-datepicker-group-last .ui-datepicker-header,
.ui-datepicker-multi .ui-datepicker-group-middle .ui-datepicker-header {
	border-left-width: 0;
}
.ui-datepicker-multi .ui-datepicker-buttonpane {
	clear: left;
}
.ui-datepicker-row-break {
	clear: both;
	width: 100%;
	font-size: 0;
}

/* RTL support */
.ui-datepicker-rtl {
	direction: rtl;
}
.ui-datepicker-rtl .ui-datepicker-prev {
	right: 2px;
	left: auto;
}
.ui-datepicker-rtl .ui-datepicker-next {
	left: 2px;
	right: auto;
}
.ui-datepicker-rtl .ui-datepicker-prev:hover {
	right: 1px;
	left: auto;
}
.ui-datepicker-rtl .ui-datepicker-next:hover {
	left: 1px;
	right: auto;
}
.ui-datepicker-rtl .ui-datepicker-buttonpane {
	clear: right;
}
.ui-datepicker-rtl .ui-datepicker-buttonpane button {
	float: left;
}
.ui-datepicker-rtl .ui-datepicker-buttonpane button.ui-datepicker-current,
.ui-datepicker-rtl .ui-datepicker-group {
	float: right;
}
.ui-datepicker-rtl .ui-datepicker-group-last .ui-datepicker-header,
.ui-datepicker-rtl .ui-datepicker-group-middle .ui-datepicker-header {
	border-right-width: 0;
	border-left-width: 1px;
}

/* Icons */
.ui-datepicker .ui-icon {
	display: block;
	text-indent: -99999px;
	overflow: hidden;
	background-repeat: no-repeat;
	left: .5em;
	top: .3em;
}
.ui-dialog {
	position: absolute;
	top: 0;
	left: 0;
	padding: .2em;
	outline: 0;
}
.ui-dialog .ui-dialog-titlebar {
	padding: .4em 1em;
	position: relative;
}
.ui-dialog .ui-dialog-title {
	float: left;
	margin: .1em 0;
	white-space: nowrap;
	width: 90%;
	overflow: hidden;
	text-overflow: ellipsis;
}
.ui-dialog .ui-dialog-titlebar-close {
	position: absolute;
	right: .3em;
	top: 50%;
	width: 20px;
	margin: -10px 0 0 0;
	padding: 1px;
	height: 20px;
}
.ui-dialog .ui-dialog-content {
	position: relative;
	border: 0;
	padding: .5em 1em;
	background: none;
	overflow: auto;
}
.ui-dialog .ui-dialog-buttonpane {
	text-align: left;
	border-width: 1px 0 0 0;
	background-image: none;
	margin-top: .5em;
	padding: .3em 1em .5em .4em;
}
.ui-dialog .ui-dialog-buttonpane .ui-dialog-buttonset {
	float: right;
}
.ui-dialog .ui-dialog-buttonpane button {
	margin: .5em .4em .5em 0;
	cursor: pointer;
}
.ui-dialog .ui-resizable-n {
	height: 2px;
	top: 0;
}
.ui-dialog .ui-resizable-e {
	width: 2px;
	right: 0;
}
.ui-dialog .ui-resizable-s {
	height: 2px;
	bottom: 0;
}
.ui-dialog .ui-resizable-w {
	width: 2px;
	left: 0;
}
.ui-dialog .ui-resizable-se,
.ui-dialog .ui-resizable-sw,
.ui-dialog .ui-resizable-ne,
.ui-dialog .ui-resizable-nw {
	width: 7px;
	height: 7px;
}
.ui-dialog .ui-resizable-se {
	right: 0;
	bottom: 0;
}
.ui-dialog .ui-resizable-sw {
	left: 0;
	bottom: 0;
}
.ui-dialog .ui-resizable-ne {
	right: 0;
	top: 0;
}
.ui-dialog .ui-resizable-nw {
	left: 0;
	top: 0;
}
.ui-draggable .ui-dialog-titlebar {
	cursor: move;
}
.ui-tabs {
	position: relative;/* position: relative prevents IE scroll bug (element with position: relative inside container with overflow: auto appear as "fixed") */
	padding: .2em;
}
.ui-tabs .ui-tabs-nav {
	margin: 0;
	padding: .2em .2em 0;
}
.ui-tabs .ui-tabs-nav li {
	list-style: none;
	float: left;
	position: relative;
	top: 0;
	margin: 1px .2em 0 0;
	border-bottom-width: 0;
	padding: 0;
	white-space: nowrap;
}
.ui-tabs .ui-tabs-nav .ui-tabs-anchor {
	float: left;
	padding: .5em 1em;
	text-decoration: none;
}
.ui-tabs .ui-tabs-nav li.ui-tabs-active {
	margin-bottom: -1px;
	padding-bottom: 1px;
}
.ui-tabs .ui-tabs-nav li.ui-tabs-active .ui-tabs-anchor,
.ui-tabs .ui-tabs-nav li.ui-state-disabled .ui-tabs-anchor,
.ui-tabs .ui-tabs-nav li.ui-tabs-loading .ui-tabs-anchor {
	cursor: text;
}
.ui-tabs-collapsible .ui-tabs-nav li.ui-tabs-active .ui-tabs-anchor {
	cursor: pointer;
}
.ui-tabs .ui-tabs-panel {
	display: block;
	border-width: 0;
	padding: 1em 1.4em;
	background: none;
}
.ui-tooltip {
	padding: 8px;
	position: absolute;
	z-index: 9999;
	max-width: 300px;
}
body .ui-tooltip {
	border-width: 2px;
}

/* Component containers
----------------------------------*/
.ui-widget {
	font-size: 1rem;
}
.ui-widget .ui-widget {
	font-size: 1rem;
}
.ui-widget input,
.ui-widget select,
.ui-widget textarea,
.ui-widget button {
	font-size: 1rem;
}
.ui-widget.ui-widget-content {
	border: 1px solid #c5c5c5;
}
.ui-widget-content {
	border: 1px solid #dddddd;
	background: #ffffff;
	color: #333333;
}
.ui-widget-content a {
	color: #333333;
}
.ui-widget-header {
	border: 1px solid #dddddd;
	background: #e9e9e9;
	color: #333333;
	font-weight: bold;
}
.ui-widget-header a {
	color: #333333;
}

/* Interaction states
----------------------------------*/
.ui-state-default,
.ui-widget-content .ui-state-default,
.ui-widget-header .ui-state-default,
.ui-button,

/* We use html here because we need a greater specificity to make sure disabled
works properly when clicked or hovered */
html .ui-button.ui-state-disabled:hover,
html .ui-button.ui-state-disabled:active {
	border: 1px solid #c5c5c5;
	background: #f6f6f6;
	font-weight: normal;
	color: #454545;
}
.ui-state-default a,
.ui-state-default a:link,
.ui-state-default a:visited,
a.ui-button,
a:link.ui-button,
a:visited.ui-button,
.ui-button {
	color: #454545;
	text-decoration: none;
}
.ui-state-hover,
.ui-widget-content .ui-state-hover,
.ui-widget-header .ui-state-hover,
.ui-state-focus,
.ui-widget-content .ui-state-focus,
.ui-widget-header .ui-state-focus,
.ui-button:hover,
.ui-button:focus {
	border: 1px solid #cccccc;
	background: #ededed;
	font-weight: normal;
	color: #2b2b2b;
}
.ui-state-hover a,
.ui-state-hover a:hover,
.ui-state-hover a:link,
.ui-state-hover a:visited,
.ui-state-focus a,
.ui-state-focus a:hover,
.ui-state-focus a:link,
.ui-state-focus a:visited,
a.ui-button:hover,
a.ui-button:focus {
	color: #2b2b2b;
	text-decoration: none;
}

.ui-visual-focus {
	box-shadow: 0 0 3px 1px rgb(94, 158, 214);
}
.ui-state-active,
.ui-widget-content .ui-state-active,
.ui-widget-header .ui-state-active,
a.ui-button:active,
.ui-button:active,
.ui-button.ui-state-active:hover {
	border: 1px solid #003eff;
	background: #007fff;
	font-weight: normal;
	color: #ffffff;
}
.ui-icon-background,
.ui-state-active .ui-icon-background {
	border: #003eff;
	background-color: #ffffff;
}
.ui-state-active a,
.ui-state-active a:link,
.ui-state-active a:visited {
	color: #ffffff;
	text-decoration: none;
}

/* Interaction Cues
----------------------------------*/
.ui-state-highlight,
.ui-widget-content .ui-state-highlight,
.ui-widget-header .ui-state-highlight {
	border: 1px solid #dad55e;
	background: #fffa90;
	color: #777620;
}
.ui-state-checked {
	border: 1px solid #dad55e;
	background: #fffa90;
}
.ui-state-highlight a,
.ui-widget-content .ui-state-highlight a,
.ui-widget-header .ui-state-highlight a {
	color: #777620;
}
.ui-state-error,
.ui-widget-content .ui-state-error,
.ui-widget-header .ui-state-error {
	border: 1px solid #f1a899;
	background: #fddfdf;
	color: #5f3f3f;
}
.ui-state-error a,
.ui-widget-content .ui-state-error a,
.ui-widget-header .ui-state-error a {
	color: #5f3f3f;
}
.ui-state-error-text,
.ui-widget-content .ui-state-error-text,
.ui-widget-header .ui-state-error-text {
	color: #5f3f3f;
}
.ui-priority-primary,
.ui-widget-content .ui-priority-primary,
.ui-widget-header .ui-priority-primary {
	font-weight: bold;
}
.ui-priority-secondary,
.ui-widget-content .ui-priority-secondary,
.ui-widget-header .ui-priority-secondary {
	opacity: .7;
	filter:Alpha(Opacity=70); /* support: IE8 */
	font-weight: normal;
}
.ui-state-disabled,
.ui-widget-content .ui-state-disabled,
.ui-widget-header .ui-state-disabled {
	opacity: .35;
	filter:Alpha(Opacity=35); /* support: IE8 */
	background-image: none;
}
.ui-state-disabled .ui-icon {
	filter:Alpha(Opacity=35); /* support: IE8 - See #6059 */
}

/* Icons
----------------------------------*/

/* states and images */
.ui-icon {
	width: 16px;
	height: 16px;
}
.ui-icon,
.ui-widget-content .ui-icon {
	background-image: url("images/ui-icons_444444_256x240.png");
}
.ui-widget-header .ui-icon {
	background-image: url("images/ui-icons_444444_256x240.png");
}
.ui-state-hover .ui-icon,
.ui-state-focus .ui-icon,
.ui-button:hover .ui-icon,
.ui-button:focus .ui-icon {
	background-image: url("images/ui-icons_555555_256x240.png");
}
.ui-state-active .ui-icon,
.ui-button:active .ui-icon {
	background-image: url("images/ui-icons_ffffff_256x240.png");
}
.ui-state-highlight .ui-icon,
.ui-button .ui-state-highlight.ui-icon {
	background-image: url("images/ui-icons_777620_256x240.png");
}
.ui-state-error .ui-icon,
.ui-state-error-text .ui-icon {
	background-image: url("images/ui-icons_cc0000_256x240.png");
}
.ui-button .ui-icon {
	background-image: url("images/ui-icons_777777_256x240.png");
}

/* positioning */
.ui-icon-blank { background-position: 16px 16px; }
.ui-icon-caret-1-n { background-position: 0 0; }
.ui-icon-caret-1-ne { background-position: -16px 0; }
.ui-icon-caret-1-e { background-position: -32px 0; }
.ui-icon-caret-1-se { background-position: -48px 0; }
.ui-icon-caret-1-s { background-position: -65px 0; }
.ui-icon-caret-1-sw { background-position: -80px 0; }
.ui-icon-caret-1-w { background-position: -96px 0; }
.ui-icon-caret-1-nw { background-position: -112px 0; }
.ui-icon-caret-2-n-s { background-position: -128px 0; }
.ui-icon-caret-2-e-w { background-position: -144px 0; }
.ui-icon-triangle-1-n { background-position: 0 -16px; }
.ui-icon-triangle-1-ne { background-position: -16px -16px; }
.ui-icon-triangle-1-e { background-position: -32px -16px; }
.ui-icon-triangle-1-se { background-position: -48px -16px; }
.ui-icon-triangle-1-s { background-position: -65px -16px; }
.ui-icon-triangle-1-sw { background-position: -80px -16px; }
.ui-icon-triangle-1-w { background-position: -96px -16px; }
.ui-icon-triangle-1-nw { background-position: -112px -16px; }
.ui-icon-triangle-2-n-s { background-position: -128px -16px; }
.ui-icon-triangle-2-e-w { background-position: -144px -16px; }
.ui-icon-arrow-1-n { background-position: 0 -32px; }
.ui-icon-arrow-1-ne { background-position: -16px -32px; }
.ui-icon-arrow-1-e { background-position: -32px -32px; }
.ui-icon-arrow-1-se { background-position: -48px -32px; }
.ui-icon-arrow-1-s { background-position: -65px -32px; }
.ui-icon-arrow-1-sw { background-position: -80px -32px; }
.ui-icon-arrow-1-w { background-position: -96px -32px; }
.ui-icon-arrow-1-nw { background-position: -112px -32px; }
.ui-icon-arrow-2-n-s { background-position: -128px -32px; }
.ui-icon-arrow-2-ne-sw { background-position: -144px -32px; }
.ui-icon-arrow-2-e-w { background-position: -160px -32px; }
.ui-icon-arrow-2-se-nw { background-position: -176px -32px; }
.ui-icon-arrowstop-1-n { background-position: -192px -32px; }
.ui-icon-arrowstop-1-e { background-position: -208px -32px; }
.ui-icon-arrowstop-1-s { background-position: -224px -32px; }
.ui-icon-arrowstop-1-w { background-position: -240px -32px; }
.ui-icon-arrowthick-1-n { background-position: 1px -48px; }
.ui-icon-arrowthick-1-ne { background-position: -16px -48px; }
.ui-icon-arrowthick-1-e { background-position: -32px -48px; }
.ui-icon-arrowthick-1-se { background-position: -48px -48px; }
.ui-icon-arrowthick-1-s { background-position: -64px -48px; }
.ui-icon-arrowthick-1-sw { background-position: -80px -48px; }
.ui-icon-arrowthick-1-w { background-position: -96px -48px; }
.ui-icon-arrowthick-1-nw { background-position: -112px -48px; }
.ui-icon-arrowthick-2-n-s { background-position: -128px -48px; }
.ui-icon-arrowthick-2-ne-sw { background-position: -144px -48px; }
.ui-icon-arrowthick-2-e-w { background-position: -160px -48px; }
.ui-icon-arrowthick-2-se-nw { background-position: -176px -48px; }
.ui-icon-arrowthickstop-1-n { background-position: -192px -48px; }
.ui-icon-arrowthickstop-1-e { background-position: -208px -48px; }
.ui-icon-arrowthickstop-1-s { background-position: -224px -48px; }
.ui-icon-arrowthickstop-1-w { background-position: -240px -48px; }
.ui-icon-arrowreturnthick-1-w { background-position: 0 -64px; }
.ui-icon-arrowreturnthick-1-n { background-position: -16px -64px; }
.ui-icon-arrowreturnthick-1-e { background-position: -32px -64px; }
.ui-icon-arrowreturnthick-1-s { background-position: -48px -64px; }
.ui-icon-arrowreturn-1-w { background-position: -64px -64px; }
.ui-icon-arrowreturn-1-n { background-position: -80px -64px; }
.ui-icon-arrowreturn-1-e { background-position: -96px -64px; }
.ui-icon-arrowreturn-1-s { background-position: -112px -64px; }
.ui-icon-arrowrefresh-1-w { background-position: -128px -64px; }
.ui-icon-arrowrefresh-1-n { background-position: -144px -64px; }
.ui-icon-arrowrefresh-1-e { background-position: -160px -64px; }
.ui-icon-arrowrefresh-1-s { background-position: -176px -64px; }
.ui-icon-arrow-4 { background-position: 0 -80px; }
.ui-icon-arrow-4-diag { background-position: -16px -80px; }
.ui-icon-extlink { background-position: -32px -80px; }
.ui-icon-newwin { background-position: -48px -80px; }
.ui-icon-refresh { background-position: -64px -80px; }
.ui-icon-shuffle { background-position: -80px -80px; }
.ui-icon-transfer-e-w { background-position: -96px -80px; }
.ui-icon-transferthick-e-w { background-position: -112px -80px; }
.ui-icon-folder-collapsed { background-position: 0 -96px; }
.ui-icon-folder-open { background-position: -16px -96px; }
.ui-icon-document { background-position: -32px -96px; }
.ui-icon-document-b { background-position: -48px -96px; }
.ui-icon-note { background-position: -64px -96px; }
.ui-icon-mail-closed { background-position: -80px -96px; }
.ui-icon-mail-open { background-position: -96px -96px; }
.ui-icon-suitcase { background-position: -112px -96px; }
.ui-icon-comment { background-position: -128px -96px; }
.ui-icon-person { background-position: -144px -96px; }
.ui-icon-print { background-position: -160px -96px; }
.ui-icon-trash { background-position: -176px -96px; }
.ui-icon-locked { background-position: -192px -96px; }
.ui-icon-unlocked { background-position: -208px -96px; }
.ui-icon-bookmark { background-position: -224px -96px; }
.ui-icon-tag { background-position: -240px -96px; }
.ui-icon-home { background-position: 0 -112px; }
.ui-icon-flag { background-position: -16px -112px; }
.ui-icon-calendar { background-position: -32px -112px; }
.ui-icon-cart { background-position: -48px -112px; }
.ui-icon-pencil { background-position: -64px -112px; }
.ui-icon-clock { background-position: -80px -112px; }
.ui-icon-disk { background-position: -96px -112px; }
.ui-icon-calculator { background-position: -112px -112px; }
.ui-icon-zoomin { background-position: -128px -112px; }
.ui-icon-zoomout { background-position: -144px -112px; }
.ui-icon-search { background-position: -160px -112px; }
.ui-icon-wrench { background-position: -176px -112px; }
.ui-icon-gear { background-position: -192px -112px; }
.ui-icon-heart { background-position: -208px -112px; }
.ui-icon-star { background-position: -224px -112px; }
.ui-icon-link { background-position: -240px -112px; }
.ui-icon-cancel { background-position: 0 -128px; }
.ui-icon-plus { background-position: -16px -128px; }
.ui-icon-plusthick { background-position: -32px -128px; }
.ui-icon-minus { background-position: -48px -128px; }
.ui-icon-minusthick { background-position: -64px -128px; }
.ui-icon-close { background-position: -80px -128px; }
.ui-icon-closethick { background-position: -96px -128px; }
.ui-icon-key { background-position: -112px -128px; }
.ui-icon-lightbulb { background-position: -128px -128px; }
.ui-icon-scissors { background-position: -144px -128px; }
.ui-icon-clipboard { background-position: -160px -128px; }
.ui-icon-copy { background-position: -176px -128px; }
.ui-icon-contact { background-position: -192px -128px; }
.ui-icon-image { background-position: -208px -128px; }
.ui-icon-video { background-position: -224px -128px; }
.ui-icon-script { background-position: -240px -128px; }
.ui-icon-alert { background-position: 0 -144px; }
.ui-icon-info { background-position: -16px -144px; }
.ui-icon-notice { background-position: -32px -144px; }
.ui-icon-help { background-position: -48px -144px; }
.ui-icon-check { background-position: -64px -144px; }
.ui-icon-bullet { background-position: -80px -144px; }
.ui-icon-radio-on { background-position: -96px -144px; }
.ui-icon-radio-off { background-position: -112px -144px; }
.ui-icon-pin-w { background-position: -128px -144px; }
.ui-icon-pin-s { background-position: -144px -144px; }
.ui-icon-play { background-position: 0 -160px; }
.ui-icon-pause { background-position: -16px -160px; }
.ui-icon-seek-next { background-position: -32px -160px; }
.ui-icon-seek-prev { background-position: -48px -160px; }
.ui-icon-seek-end { background-position: -64px -160px; }
.ui-icon-seek-start { background-position: -80px -160px; }
/* ui-icon-seek-first is deprecated, use ui-icon-seek-start instead */
.ui-icon-seek-first { background-position: -80px -160px; }
.ui-icon-stop { background-position: -96px -160px; }
.ui-icon-eject { background-position: -112px -160px; }
.ui-icon-volume-off { background-position: -128px -160px; }
.ui-icon-volume-on { background-position: -144px -160px; }
.ui-icon-power { background-position: 0 -176px; }
.ui-icon-signal-diag { background-position: -16px -176px; }
.ui-icon-signal { background-position: -32px -176px; }
.ui-icon-battery-0 { background-position: -48px -176px; }
.ui-icon-battery-1 { background-position: -64px -176px; }
.ui-icon-battery-2 { background-position: -80px -176px; }
.ui-icon-battery-3 { background-position: -96px -176px; }
.ui-icon-circle-plus { background-position: 0 -192px; }
.ui-icon-circle-minus { background-position: -16px -192px; }
.ui-icon-circle-close { background-position: -32px -192px; }
.ui-icon-circle-triangle-e { background-position: -48px -192px; }
.ui-icon-circle-triangle-s { background-position: -64px -192px; }
.ui-icon-circle-triangle-w { background-position: -80px -192px; }
.ui-icon-circle-triangle-n { background-position: -96px -192px; }
.ui-icon-circle-arrow-e { background-position: -112px -192px; }
.ui-icon-circle-arrow-s { background-position: -128px -192px; }
.ui-icon-circle-arrow-w { background-position: -144px -192px; }
.ui-icon-circle-arrow-n { background-position: -160px -192px; }
.ui-icon-circle-zoomin { background-position: -176px -192px; }
.ui-icon-circle-zoomout { background-position: -192px -192px; }
.ui-icon-circle-check { background-position: -208px -192px; }
.ui-icon-circlesmall-plus { background-position: 0 -208px; }
.ui-icon-circlesmall-minus { background-position: -16px -208px; }
.ui-icon-circlesmall-close { background-position: -32px -208px; }
.ui-icon-squaresmall-plus { background-position: -48px -208px; }
.ui-icon-squaresmall-minus { background-position: -64px -208px; }
.ui-icon-squaresmall-close { background-position: -80px -208px; }
.ui-icon-grip-dotted-vertical { background-position: 0 -224px; }
.ui-icon-grip-dotted-horizontal { background-position: -16px -224px; }
.ui-icon-grip-solid-vertical { background-position: -32px -224px; }
.ui-icon-grip-solid-horizontal { background-position: -48px -224px; }
.ui-icon-gripsmall-diagonal-se { background-position: -64px -224px; }
.ui-icon-grip-diagonal-se { background-position: -80px -224px; }


/* Misc visuals
----------------------------------*/

/* Corner radius */
.ui-corner-all,
.ui-corner-top,
.ui-corner-left,
.ui-corner-tl {
	border-top-left-radius: 3px;
}
.ui-corner-all,
.ui-corner-top,
.ui-corner-right,
.ui-corner-tr {
	border-top-right-radius: 3px;
}
.ui-corner-all,
.ui-corner-bottom,
.ui-corner-left,
.ui-corner-bl {
	border-bottom-left-radius: 3px;
}
.ui-corner-all,
.ui-corner-bottom,
.ui-corner-right,
.ui-corner-br {
	border-bottom-right-radius: 3px;
}

/* Overlays */
.ui-widget-overlay {
	background: #aaaaaa;
	opacity: .3;
	filter: Alpha(Opacity=30); /* support: IE8 */
}
.ui-widget-shadow {
	-webkit-box-shadow: 0 0 5px #666666;
	box-shadow: 0 0 5px #666666;
}
.five-per-row { width: 18%; max-width: 18%; margin: 0 2.5% 0 0; margin-bottom: 10px; float: left; }
.five-per-row:nth-child(5n+1) { clear: both; }
.five-per-row:nth-child(5n+5) { margin-right: 0; }
.five-per-row img { max-width: 100%; }

@media only screen and (max-width: 1250px) {
	.five-per-row { width: 23.5%; max-width: 23.5%; margin: 0 2% 0 0; }
	.five-per-row:nth-child(5n+1) { clear: none; }
	.five-per-row:nth-child(5n+5) { margin-right: 2%; }
	.five-per-row:nth-child(4n+1) { clear: both; }
	.five-per-row:nth-child(4n+4) { margin-right: 0; }
}

@media only screen and (max-width: 1000px) {
	.five-per-row { width: 31%; max-width: 31%; margin: 0 3.5% 0 0; }
	.five-per-row:nth-child(4n+1) { clear: none; }
	.five-per-row:nth-child(4n+4) { margin-right: 3.5%; }
	.five-per-row:nth-child(3n+1) { clear: both; }
	.five-per-row:nth-child(3n+3) { margin-right: 0; }
}

@media only screen and (max-width: 750px) {
	.five-per-row { width: 48%; max-width: 48%; margin: 0 4% 0 0; }
	.five-per-row:nth-child(3n+1) { clear: none; }
	.five-per-row:nth-child(3n+3) { margin-right: 4%; }
	.five-per-row:nth-child(2n+1) { clear: both; }
	.five-per-row:nth-child(2n+2) { margin-right: 0; }
}

@media only screen and (max-width: 500px) {
	.five-per-row { width: 100%; margin: 0; max-width: 100%; }
}

.four-per-row { width: 23.5%; max-width: 23.5%; margin: 0 2% 0 0; margin-bottom: 10px; float: left; }
.four-per-row:nth-child(4n+1) { clear: both; }
.four-per-row:nth-child(4n+4) { margin-right: 0; }
.four-per-row img { max-width: 100%; }

@media only screen and (max-width: 1200px) {
	.four-per-row { width: 31%; max-width: 31%; margin: 0 3.5% 0 0; }
	.four-per-row:nth-child(4n+1) { clear: none; }
	.four-per-row:nth-child(4n+4) { margin-right: 3.5%; }
	.four-per-row:nth-child(3n+1) { clear: both; }
	.four-per-row:nth-child(3n+3) { margin-right: 0; }
}

@media only screen and (max-width: 800px) {
	.four-per-row { width: 48%; max-width: 48%; margin: 0 4% 0 0; }
	.four-per-row:nth-child(3n+1) { clear: none; }
	.four-per-row:nth-child(3n+3) { margin-right: 4%; }
	.four-per-row:nth-child(2n+1) { clear: both; }
	.four-per-row:nth-child(2n+2) { margin-right: 0; }
}

@media only screen and (max-width: 550px) {
	.four-per-row { width: 100%; margin: 0; max-width: 100%; }
}

.three-per-row { width: 32%; max-width: 32%; margin: 0 2% 0 0; margin-bottom: 10px; float: left; }
.three-per-row:nth-child(3n+1) { clear: both; }
.three-per-row:nth-child(3n+3) { margin-right: 0; }
.three-per-row img { max-width: 100%; }

@media only screen and (max-width: 1000px) {
	.three-per-row { width: 48%; max-width: 48%; margin: 0 4% 0 0; }
	.three-per-row:nth-child(3n+1) { clear: none; }
	.three-per-row:nth-child(3n+3) { margin-right: 4%; }
	.three-per-row:nth-child(2n+1) { clear: both; }
	.three-per-row:nth-child(2n+2) { margin-right: 0; }
}

@media only screen and (max-width: 650px) {
	.three-per-row { width: 100%; max-width: 100%; margin: 0; }
}

.two-per-row { width: 48%; max-width: 48%; margin: 0 4% 0 0; margin-bottom: 10px; float: left; }
.two-per-row:nth-child(2n+1) { clear: both; }
.two-per-row:nth-child(2n+2) { margin-right: 0; }
.two-per-row img { max-width: 100%; }

@media only screen and (max-width: 800px) {
	.two-per-row { width: 100%; max-width: 100%; margin: 0; }
}

.left-third-per-row { width: 32%; max-width: 32%; margin: 0 4% 0 0; margin-bottom: 10px; float: left; }
.left-third-per-row:nth-child(2n+1) { clear: both; }
.left-third-per-row:nth-child(2n+2) { width: 64%; max-width: 64%; margin-right: 0; }
.left-third-per-row img { max-width: 100%; }

@media only screen and (max-width: 800px) {
	.left-third-per-row { width: 100%; max-width: 100%; margin: 0; }
}

.right-third-per-row { width: 64%; max-width: 64%; margin: 0 4% 0 0; margin-bottom: 10px; float: left; }
.right-third-per-row:nth-child(2n+1) { clear: both; }
.right-third-per-row:nth-child(2n+2) { width: 32%; max-width: 32%; margin-right: 0; }
.right-third-per-row img { max-width: 100%; }

@media only screen and (max-width: 800px) {
	.right-third-per-row { width: 100%; max-width: 100%; margin: 0; }
}
.inputContainer { position: relative; float: left; }
.formError { position: absolute; top: 300px; left: 300px; display: block; z-index: 2500; cursor: pointer; }
.ajaxSubmit { padding: 20px; background: #55ea55; border: 1px solid #999; display: none; }
.formError .formErrorContent { background: #ee1030; position: relative; z-index: 2501; color: #fff; width: auto; min-width: 100px; max-width: 250px; font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 10px; font-weight: bold; border: 1px solid #eee; box-shadow: 0 0 8px #000; -moz-box-shadow: 0 0 8px #000; -webkit-box-shadow: 0 0 8px #000; padding: 5px 10px 5px 10px; border-radius: 4px; -moz-border-radius: 4px; -webkit-border-radius: 4px; }
.greenPopup .formErrorContent { background: #33be40; }
.blackPopup .formErrorContent { background: #393939; color: #FFF; }
.formFieldError { background-color: rgb(255,230,230) !important; }
/*	This software is the unpublished, confidential, proprietary, intellectual
	property of Kim David Software, LLC and may not be copied, duplicated, retransmitted
	or used in any manner without expressed written consent from Kim David Software, LLC.
	Kim David Software, LLC owns all rights to this work and intends to keep this
	software confidential so as to maintain its value as a trade secret.

	Copyright 2004-Present, Kim David Software, LLC.

	WARNING! This code is part of Kim David Software's PHPServant system.
	Changes made to this source file will be lost when new versions of the
	system are installed.
*/

.image-slider-outer { overflow: hidden; position: relative; margin: 0 0 20px 0; max-width: 100%; }
.image-slider-outer-mask { height: 100%; width: 100%; z-index: 100; background-color: rgba(255,255,255,.7); position: absolute; top: 0; left: 0; cursor: pointer; }
.image-slider-block { height: 100%; position: absolute; left: 100%; top: 0; bottom: 0; white-space: nowrap; z-index: 50; }
.image-slider-block-vertical { width: 100%; position: absolute; top: 100%; left: 0; right: 0; white-space: nowrap; z-index: 50; }
.image-slider-part { display: inline-block; margin-right: 20px; width: 100%; height: 100%; max-width: 100%; z-index: 10; text-align: center; vertical-align: top; position: relative; overflow: hidden; background-color: rgb(255,255,255); }
.image-slider-part.vertical-part { display: block; margin-right: 0; margin-bottom: 20px; }
.image-slider-part.single-image { display: block; position: absolute; top: 0; left: 100%; margin: 0; }
.image-slider-part.selected-image { z-index: 20; }
.image-slider-part.selected-image .image-slider-outer-mask { display: none; }
.image-slider-text { background-color: rgb(230,230,230); padding: 15px; position: absolute; left: 0; bottom: 0; width: 100%; }
.image-slider-part p { text-align: center; white-space: normal; line-height: 1.25; padding: 0 10px; width: 100% !important; color: rgb(80,80,80); }
.image-slider-part img.image-slider-image { max-width: 100%; }
.image-slider-part p.image-slider-title { font-size: 1.2rem; font-weight: bold; margin-bottom: 5px; text-align: left; }
.image-slider-part div.image-slider-description { font-size: .8rem; text-align: left; white-space: normal; }
.image-slider-left-control { cursor: pointer; height: 40px; width: 30px; background-color: rgba(240,240,240,.7); position: absolute; top: 50%; margin-top: -20px; left: 0; z-index: 200; border-top-right-radius: 1px; border-bottom-right-radius: 1px; text-align: center; }
.image-slider-left-control .fa { color: rgb(50,50,50); font-size: 18px; display: block; position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); }
.image-slider-right-control { cursor: pointer; height: 40px; width: 30px; background-color: rgba(240,240,240,.7); position: absolute; top: 50%; margin-top: -20px; right: 0; z-index: 200; border-top-left-radius: 1px; border-bottom-left-radius: 1px; text-align: center; }
.image-slider-right-control .fa { color: rgb(50,50,50); font-size: 18px; display: block; position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); }

.image-slider-top-control { cursor: pointer; height: 30px; width: 40px; background-color: rgba(240,240,240,.7); position: absolute; top: 0; margin-left: -20px; left: 50%; z-index: 200; border-bottom-right-radius: 1px; border-bottom-left-radius: 1px; text-align: center; padding-top: 5px; }
.image-slider-top-control .fa { color: rgb(50,50,50); font-size: 18px; }
.image-slider-bottom-control { cursor: pointer; height: 30px; width: 40px; background-color: rgba(240,240,240,.7); position: absolute; bottom: 0; margin-left: -20px; left: 50%; z-index: 200; border-top-right-radius: 1px; border-top-left-radius: 1px; text-align: center; padding-top: 6px; }
.image-slider-bottom-control .fa { color: rgb(50,50,50); font-size: 18px; }
.five-per-row { width: 18%; max-width: 18%; margin: 0 2.5% 0 0; margin-bottom: 10px; float: left; }
.five-per-row:nth-child(5n+1) { clear: both; }
.five-per-row:nth-child(5n+5) { margin-right: 0; }
.five-per-row img { max-width: 100%; }

@media only screen and (max-width: 1250px) {
	.five-per-row { width: 23.5%; max-width: 23.5%; margin: 0 2% 0 0; }
	.five-per-row:nth-child(5n+1) { clear: none; }
	.five-per-row:nth-child(5n+5) { margin-right: 2%; }
	.five-per-row:nth-child(4n+1) { clear: both; }
	.five-per-row:nth-child(4n+4) { margin-right: 0; }
}

@media only screen and (max-width: 1000px) {
	.five-per-row { width: 31%; max-width: 31%; margin: 0 3.5% 0 0; }
	.five-per-row:nth-child(4n+1) { clear: none; }
	.five-per-row:nth-child(4n+4) { margin-right: 3.5%; }
	.five-per-row:nth-child(3n+1) { clear: both; }
	.five-per-row:nth-child(3n+3) { margin-right: 0; }
}

@media only screen and (max-width: 750px) {
	.five-per-row { width: 48%; max-width: 48%; margin: 0 4% 0 0; }
	.five-per-row:nth-child(3n+1) { clear: none; }
	.five-per-row:nth-child(3n+3) { margin-right: 4%; }
	.five-per-row:nth-child(2n+1) { clear: both; }
	.five-per-row:nth-child(2n+2) { margin-right: 0; }
}

@media only screen and (max-width: 500px) {
	.five-per-row { width: 100%; margin: 0; max-width: 100%; }
}

.four-per-row { width: 23.5%; max-width: 23.5%; margin: 0 2% 0 0; margin-bottom: 10px; float: left; }
.four-per-row:nth-child(4n+1) { clear: both; }
.four-per-row:nth-child(4n+4) { margin-right: 0; }
.four-per-row img { max-width: 100%; }

@media only screen and (max-width: 1200px) {
	.four-per-row { width: 31%; max-width: 31%; margin: 0 3.5% 0 0; }
	.four-per-row:nth-child(4n+1) { clear: none; }
	.four-per-row:nth-child(4n+4) { margin-right: 3.5%; }
	.four-per-row:nth-child(3n+1) { clear: both; }
	.four-per-row:nth-child(3n+3) { margin-right: 0; }
}

@media only screen and (max-width: 800px) {
	.four-per-row { width: 48%; max-width: 48%; margin: 0 4% 0 0; }
	.four-per-row:nth-child(3n+1) { clear: none; }
	.four-per-row:nth-child(3n+3) { margin-right: 4%; }
	.four-per-row:nth-child(2n+1) { clear: both; }
	.four-per-row:nth-child(2n+2) { margin-right: 0; }
}

@media only screen and (max-width: 550px) {
	.four-per-row { width: 100%; margin: 0; max-width: 100%; }
}

.three-per-row { width: 32%; max-width: 32%; margin: 0 2% 0 0; margin-bottom: 10px; float: left; }
.three-per-row:nth-child(3n+1) { clear: both; }
.three-per-row:nth-child(3n+3) { margin-right: 0; }
.three-per-row img { max-width: 100%; }

@media only screen and (max-width: 1000px) {
	.three-per-row { width: 48%; max-width: 48%; margin: 0 4% 0 0; }
	.three-per-row:nth-child(3n+1) { clear: none; }
	.three-per-row:nth-child(3n+3) { margin-right: 4%; }
	.three-per-row:nth-child(2n+1) { clear: both; }
	.three-per-row:nth-child(2n+2) { margin-right: 0; }
}

@media only screen and (max-width: 650px) {
	.three-per-row { width: 100%; max-width: 100%; margin: 0; }
}

.two-per-row { width: 48%; max-width: 48%; margin: 0 4% 0 0; margin-bottom: 10px; float: left; }
.two-per-row:nth-child(2n+1) { clear: both; }
.two-per-row:nth-child(2n+2) { margin-right: 0; }
.two-per-row img { max-width: 100%; }

@media only screen and (max-width: 800px) {
	.two-per-row { width: 100%; max-width: 100%; margin: 0; }
}

.left-third-per-row { width: 32%; max-width: 32%; margin: 0 4% 0 0; margin-bottom: 10px; float: left; }
.left-third-per-row:nth-child(2n+1) { clear: both; }
.left-third-per-row:nth-child(2n+2) { width: 64%; max-width: 64%; margin-right: 0; }
.left-third-per-row img { max-width: 100%; }

@media only screen and (max-width: 800px) {
	.left-third-per-row { width: 100%; max-width: 100%; margin: 0; }
}

.right-third-per-row { width: 64%; max-width: 64%; margin: 0 4% 0 0; margin-bottom: 10px; float: left; }
.right-third-per-row:nth-child(2n+1) { clear: both; }
.right-third-per-row:nth-child(2n+2) { width: 32%; max-width: 32%; margin-right: 0; }
.right-third-per-row img { max-width: 100%; }

@media only screen and (max-width: 800px) {
	.right-third-per-row { width: 100%; max-width: 100%; margin: 0; }
}
