/*
 * General Reset CSS
 * ---
 */
/*
 * @section Document
 * ----
 * 1. Prevent adjustments of font size after orientation changes in iOS.
 * 2. Use a better box model (opinionated).
 */
html {
    -webkit-text-size-adjust: 100%;
    -moz-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    text-size-adjust: 100%;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    }
*,
*:before,
*:after {
    -webkit-box-sizing: inherit;
    -moz-box-sizing: inherit;
    box-sizing: inherit;
    }

/**
 * Use a more readable tab size (opinionated).
 */
:root {
    -moz-tab-size: 4;
    -o-tab-size: 4;
    tab-size: 4;
    }

/**
 * @section Body
 * ---
 * 1. Remove the margin in all browsers.
 * 2. Default to sans-serif font for readability (opinionated).
 */
body {
    margin: 0;
    }

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */
abbr[title] {
    border-bottom: none;
    text-decoration: underline dotted;
    }

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */
b,
strong {
    font-weight: bolder;
    }

/* Address differences between Firefox and other browsers. */
hr {
    -webkit-box-sizing: content-box;
    -moz-box-sizing: content-box;
    box-sizing: content-box;
    height: 0;
    overflow: visible;
    }

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
code,
kbd,
pre,
samp {
    font-family: monospace,serif;
    font-size: 1em;
    }

/**
 * Address inconsistent and variable font size in all browsers.
 */
small {
    font-size: 80%;
    }

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */
sub,
sup {
    font-size: 75%;
    line-height: 0;
    position: relative;
    vertical-align: baseline;
    }
sub {
    bottom: -.25em;
    }
sup {
    top: -.5em;
    }

/**
 * Correct the padding in Firefox.
 */
fieldset {
    padding: .35em .75em .625em;
    }

/*
 * 1. Remove the padding so developers are not caught out when they zero out
 *    `fieldset` elements in all browsers.
 */
legend {
    padding: 0;
    }

/**
 * 1. Correct font family not being inherited in all browsers.
 * 2. Correct font size not being inherited in all browsers.
 * 3. Address margins set differently in Firefox 4+, Safari 5, and Chrome.
 */
button,
input,
select,
textarea {
    font-family: inherit;
    font-size: 100%;
    margin: 0;
    }

/*
 * Address inconsistent `text-transform` inheritance for `button` and `select`.
 * All other form control elements do not inherit `text-transform` values.
 * Correct `button` style inheritance in Chrome, Safari 5+, and IE 8+.
 * Correct `select` style inheritance in Firefox 4+ and Opera.
 */
button,
select {
    text-transform: none;
    }

/*
 * 1. Avoid the WebKit bug in Android 4.0.* where (2) destroys native `audio`
 *    and `video` controls.
 * 2. Correct inability to style clickable `input` types in iOS.
 */
button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
    -webkit-appearance: button;
    }

/**
 * 1. Address box sizing set to `content-box` in IE 8/9.
 * 2. Remove excess padding in IE 8/9.
 */
[type="checkbox"],
[type="radio"] {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    padding: 0;
    }

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */
[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
    height: auto;
    }

/**
 * Remove the default vertical scrollbar in IE 10+.
 */
textarea {
    overflow: auto;
    }
html,
body {
    padding: 0;
    margin: 0 auto auto auto;
    }
.large {
    font-size: 120%;
    }
.larger {
    font-size: 150%;
    }
.light {
    opacity: .7;
    }
.lighter {
    opacity: .5;
    }

/*
	Headings & Paragraphs
	---------------------
	Please do not set paragraphs to have a margin and padding of zero
	as this makes life more difficult when dealing with CMS content.
	Some areas of the template will require a padding of zero, you
	should set these separately.
*/
h1,
h2,
h3,
h4,
h5,
h6 {
    padding: 0;
    margin: 0 0 .2em;
    }
p {
    padding: 0;
    margin: 0 0 1em;
    }
p.last-paragraph,
.evEditable p.last-paragraph {
    margin-bottom: 0;
    }

/*
	Links:
	------
	The style and colouring of links is specific to each site.
	The styles below are purely for shared styles.
*/
a:link,
a:visited {
    text-decoration: none;
    }
a:hover,
a:active,
a:focus {
    text-decoration: underline;
    }

/*
	Lists: Unordered and Ordered
	----------------------------
	These are the styles for generic bog standard lists whether
	ordered or unordered. You should customise these settings only
	if they are to be the styles for the bog standard only.
*/
ul,
ol {
    margin: 0;
    padding: 0 0 0 25px;
    }
ul li,
ol li {
    list-style-position: outside;
    padding: .2em 0 .2em 0;
    }
ol {
    list-style-type: decimal;
    }
ul {
    list-style-type: disc;
    }

/*
 * Alignment
 * ---------
 * Various classes for alignment
 */
.alignLeft,
.align-left {
    text-align: left;
    }
.alignCenter,
.align-center {
    text-align: center;
    }
.alignRight,
.align-right {
    text-align: right;
    }
.vAlignMiddle {
    vertical-align: middle;
    }
.vAlignTop {
    vertical-align: top;
    }
.vAlignBottom {
    vertical-align: bottom;
    }

/*
 * .clear-after
 * ------------
 * This is a really handy piece of css
 * that enables us to clear floats without
 * the need for adding unecessary code
 * instead of doing this:
 * 		<div class="float-left"></div>
 * 		<div class="clear"></div>
 * do this:
 * 		<div class="float-left clear-after"></div>
 */
.clear-after:after {
    content: "";
    display: block;
    height: 0;
    font-size: 0;
    clear: both;
    visibility: hidden;
    }
.clear-after {
    display: block;
    }

/* Standard clears */
.clear-left {
    clear: left;
    }
.clear-right {
    clear: right;
    }
.clear {
    clear: both;
    }

/*
 * Forms
 * -----
 */
option {
    padding: 5px;
    }
label {
    display: inline-block;
    vertical-align: middle;
    margin: 4px 3px;
    }
.fieldContainer {
    border: 0;
    margin: 0;
    padding: 10px;
    }
.fieldContainer header,
.fieldContainer footer,
.fieldArea {
    padding: 10px;
    }
.fieldHeader {
    padding: 20px 20px 10px 20px;
    }
.fieldFooter {
    padding: 10px 20px 20px 20px;
    }
.fieldButtons {
    text-align: right;
    }
table.fieldArea {
    width: 100%;
    padding: 0;
    }
table.fieldArea > tr > td,
table.fieldArea > tbody > tr > td {
    padding: 4px;
    }
.table {
    display: table;
    width: 100%;
    }
.table.fixed {
    table-layout: fixed;
    }
.table .cell {
    display: table-cell;
    vertical-align: middle;
    }

/*
 * Columns
 * -------
 * Standard column set-up and widths
 */
.row,
.column,
.column1of4,
.column1of2,
.column3of4,
.column1of3,
.column2of3,
.column1of5,
.column2of5,
.column3of5,
.column4of5 {
    display: block;
    float: left;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    }
.row {
    clear: both;
    width: 100%;
    }
.full-width {
    width: 100%;
    }
.column1of4 {
    width: 25%;
    }
.column1of2 {
    width: 50%;
    }
.column3of4 {
    width: 75%;
    }
.column1of3 {
    width: 33.333333%;
    }
.column2of3 {
    width: 66.666666%;
    }
.column1of5 {
    width: 20%;
    }
.column2of5 {
    width: 40%;
    }
.column3of5 {
    width: 60%;
    }
.column4of5 {
    width: 80%;
    }

/*
	Responsive Stuff
*/
.gridContainer:after,
.bodyContainer:after {
    content: "";
    display: block;
    height: 0;
    font-size: 0;
    clear: both;
    visibility: hidden;
    }
.gridContainer,
.bodyContainer {
    display: block;
    }
.grid1of2,
.grid2of3,
.grid1of3,
.grid1of4,
.grid3of4 {
    display: block;
    float: left;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    }
.grid1of2 {
    width: 50%;
    }
.grid1of3 {
    width: 33.333333%;
    }
.grid2of3 {
    width: 66.666666%;
    }
.grid1of4 {
    width: 25%;
    }
.grid3of4 {
    width: 75%;
    }
@media screen and (max-width: 43.75em) {
.grid1of3 {
    width: 50%;
    }
.grid2of3 {
    width: 50%;
    }
.grid1of4 {
    width: 50%;
    }
.grid3of4 {
    width: 50%;
    }
}

@media screen and (max-width: 31.25em) {
.grid1of2 {
    width: 100%;
    }
.grid1of3 {
    width: 100%;
    }
.grid2of3 {
    width: 100%;
    }
.grid1of4 {
    width: 100%;
    }
.grid3of4 {
    width: 100%;
    }
}

/*
 * .clickable
 * ----------
 * Tell users that any element is clickable
 */
.clickable {
    cursor: pointer;
    }

/*
 * Floats
 * ------
 */
.floatLeft,
.float-left {
    float: left;
    }
.floatRight,
.float-right {
    float: right;
    }

/*
 * .mask
 * -----
 * Used by many interactive areas of Evance.
 * Sets most of the requirements for masked areas.
 */
.mask {
    overflow: hidden;
    display: block;
    position: relative;
    top: 0;
    left: 0;
    margin: 0;
    }

/*
 * Padding and margins
 * -------------------
 * These are the standard Evance settings,
 * but these can be overwritten in themes
 */
.halfpad {
    padding: 5px;
    }
.stdpad {
    padding: 10px;
    }
.doublepad,
.contentBlock,
.headerContainer {
    padding: 20px;
    }
.tabsContainer {
    padding: 10px 20px 0 20px;
    }
.nopadv {
    padding-top: 0;
    padding-bottom: 0;
    }
.nopadh {
    padding-left: 0;
    padding-right: 0;
    }
.nopadl {
    padding-left: 0;
    }
.nopadr {
    padding-right: 0;
    }
.nopadt {
    padding-top: 0;
    }
.nopadb {
    padding-bottom: 0;
    }
.halfpadh {
    padding: 0 5px;
    }
.halfpadt {
    padding-top: 5px;
    }
.halfpadb {
    padding-bottom: 5px;
    }
.halfpadl {
    padding-left: 5px;
    }
.halfpadr {
    padding-right: 5px;
    }
.halfpadv {
    padding: 5px 0;
    }
.stdpadh {
    padding: 0 10px;
    }
.stdpadt {
    padding-top: 10px;
    }
.stdpadb {
    padding-bottom: 10px;
    }
.stdpadl {
    padding-left: 10px;
    }
.stdpadr {
    padding-right: 10px;
    }
.stdpadv {
    padding: 10px 0;
    }
.doublepadh {
    padding: 0 20px;
    }
.doublepadt {
    padding-top: 20px;
    }
.doublepadb {
    padding-bottom: 20px;
    }
.doublepadl {
    padding-left: 20px;
    }
.doublepadr {
    padding-right: 20px;
    }
.doublepadv {
    padding: 20px 0;
    }
.halfmar {
    margin: 5px;
    }
.stdmar {
    margin: 10px;
    }
.doublemar {
    margin: 20px;
    }
.nomarv {
    margin-top: 0;
    margin-bottom: 0;
    }
.nomarh {
    margin-left: 0;
    margin-right: 0;
    }
.nomart {
    margin-top: 0;
    }
.nomarr {
    margin-right: 0;
    }
.nomarb {
    margin-bottom: 0;
    }
.nomarl {
    margin-left: 0;
    }
.halfmarh {
    margin: 0 5px;
    }
.halfmart {
    margin-top: 5px;
    }
.halfmarb {
    margin-bottom: 5px;
    }
.halfmarl {
    margin-left: 5px;
    }
.halfmarr {
    margin-right: 5px;
    }
.halfmarv {
    margin: 5px 0;
    }
.stdmarh {
    margin: 0 10px;
    }
.stdmart {
    margin-top: 10px;
    }
.stdmarb {
    margin-bottom: 10px;
    }
.stdmarl {
    margin-left: 10px;
    }
.stdmarr {
    margin-right: 10px;
    }
.stdmarv {
    margin: 10px 0;
    }
.doublemarh {
    margin: 0 20px;
    }
.doublemart {
    margin-top: 20px;
    }
.doublemarb {
    margin-bottom: 20px;
    }
.doublemarl {
    margin-left: 20px;
    }
.doublemarr {
    margin-right: 20px;
    }
.doublemarv {
    margin: 20px 0;
    }

/*
 * Standard Tables
 */
table.standard {
    width: 100%;
    }
table.standard td,
table.standard th {
    vertical-align: middle;
    padding: 5px;
    }
.ev-swatch {
    width: 20px;
    height: 20px;
    border-radius: 10px;
    display: inline-block;
    border: 1px solid #aaa;
    vertical-align: middle;
    margin-right: 5px;
    background-size: cover;
    }
.ev-swatch-code {
    font-family: monospace;
    display: inline-block;
    }
table.ev-cart-attributes tr td {
    border: none;
    padding: 3px 10px 3px 0 !important;
    }
.subtitle {
    font-size: 125%;
    }
.text-narrow {
    max-width: 36rem;
    margin: 0 auto;
    }
#evAccountScreen .aside.evAccountMenu {
    float: left;
    width: 220px;
    padding: 20px;
    }
#evAccountScreen .main.evAccountPage {
    margin-left: 240px;
    }
@media (max-width: 900px) {
#evUserSummary,
#evUserAddress {
    float: none;
    width: auto;
    }
}

@media (max-width: 700px) {
#evAccountScreen .aside.evAccountMenu {
    float: none;
    width: auto;
    }
#evAccountScreen .main.evAccountPage {
    margin-left: auto;
    }
}

#evAuthLoginArea,
#evCheckoutLoginArea {
    background-color: #fafafa;
    border-radius: 3px;
    border: 1px solid #eee;
    margin-bottom: 20px;
    }
#evAuthDeduplicate .order {
    margin: 20px auto 0;
    width: auto;
    padding: 20px;
    background: #fafafa;
    border: 1px solid #eee;
    border-radius: 3px;
    -webkit-box-shadow: 2px 3px 10px rgba(0,0,0,.2);
    box-shadow: 2px 3px 10px rgba(0,0,0,.2);
    }
#storeFinderMapContainer {
    position: relative;
    width: 100%;
    height: 500px;
    }
#storeFinderMap-canvas {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    }
#reviewList .table-row-group {
    display: table-row-group;
    padding-bottom: 10px;
    border-bottom: 1px solid #e5e5e5;
    margin-bottom: 10px;
    }
#reviewList .table-row-group:last-child {
    padding-bottom: 0;
    border-bottom: 0;
    margin-bottom: 0;
    }
#reviewList .table-cell {
    padding: 10px;
    }
#reviewList .table-cell:first-child {
    padding-left: 0;
    }
#reviewList .table-cell:last-child {
    padding-right: 0;
    }
#reviewList .reviewer,
#reviewList .review_rating {
    white-space: nowrap;
    }
.review_rating.x24 .icon {
    font-size: 24px;
    }
#reviewList dl {
    margin: 0;
    }
#reviewList dt {
    float: left;
    clear: left;
    font-weight: bold;
    }
#reviewList dt.pros {
    color: #4db538;
    }
#reviewList dt.cons {
    color: #be3535;
    }
#reviewList dt .label {
    display: none;
    }
#reviewList dd {
    margin-left: 24px;
    margin-bottom: 5px;
    }
#reviewList dd:last-child {
    margin-bottom: 0;
    }
#reviewList dd .no-comment {
    opacity: .9;
    font-style: italic;
    }
#reviewList .voteCount,
#reviewList .voteForm {
    display: inline-block;
    vertical-align: middle;
    }
#reviewList .voteForm span.evLangid {
    display: inline-block;
    vertical-align: middle;
    margin-right: 5px;
    }
#reviewList .voteForm,
#reviewList .reported {
    white-space: nowrap;
    }
#reviewList .reported form > span.evLangid {
    margin-right: 5px;
    }
#reviewForm {
    margin-top: 20px;
    }
#reviewForm h6,
#reviewForm p {
    margin-bottom: 0;
    }
#reviewForm form .fieldArea {
    padding: 10px 0;
    }
#evTicketForm .eventTicket > td {
    vertical-align: bottom;
    }
#evTicketForm .eventTicketPrice {
    line-height: 40px;
    }
@media (max-width:1024px) {
#evTicketForm .eventTickets,
#evTicketForm .eventTicket,
#evTicketForm .eventTicket > td:first-of-type {
    display: block;
    }
#evTicketForm .eventBookingButton {
    padding-top: 20px;
    }
}

@media (max-width:500px) {
#evTicketForm .eventTicket > td {
    display: block;
    }
#evTicketForm .eventTicketPrice {
    line-height: inherit;
    text-align: right;
    }
}

#evLegalAgreementPage {
    padding: 40px;
    max-width: 900px;
    margin: 0 auto;
    }
#evLegalAgreementPage .evLegalAgreementWrapper {
    display: block;
    overflow: auto;
    padding: 40px;
    max-height: 50vh;
    }
#evLegalAgreementPage form {
    text-align: center;
    }
.evProductCustomisation .customisation {
    padding: 10px;
    }
.evProductCustomisation .customisation .header {
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    margin: 0;
    }
.evProductCustomisation .customisation .header > * {
    padding: 10px 0;
    -webkit-flex: 0 0 auto;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    }
.evProductCustomisation .customisation .header label {
    -webkit-flex-basis: 0;
    flex-basis: 0;
    -webkit-flex-grow: 1;
    flex-grow: 1;
    }
.evProductCustomisation .customisation .header .price {
    padding: 10px 20px;
    }
.evProductCustomisation .customisation .field .switch {
    padding-bottom: 20px;
    }
.evProductCustomisation .title {
    font-weight: bold;
    }
.evProductCustomisation .swatch {
    display: inline-block;
    width: 40px;
    height: 40px;
    min-width: 40px;
    min-height: 40px;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    border: 1px solid #aaa;
    vertical-align: middle;
    }
.evProductCustomisation .swatch > img {
    width: 40px;
    height: 40px;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    }
.evProductCustomisation .option {
    background-color: #fff;
    border-bottom: 1px solid #efefef;
    }
.evProductCustomisation .option label {
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    cursor: pointer;
    padding: 10px;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    margin: 0;
    }
.evProductCustomisation .option label > * {
    padding: 10px;
    -webkit-flex: 0 0 auto;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    }
.evProductCustomisation .option label .label {
    -webkit-flex-basis: 0;
    flex-basis: 0;
    -webkit-flex-grow: 1;
    flex-grow: 1;
    }
.evProductCustomisation .option label .title {
    font-weight: bold;
    }
.evProductCustomisation .option label .description {
    display: block;
    }
.evProductCustomisation .option label .price {
    white-space: nowrap;
    }
.evProductCustomisation .option .volumePrices {
    text-align: right;
    }
.evProductCustomisation .option .volumePrices table {
    display: inline-block;
    margin: -10px;
    }
.evProductCustomisation .option .volumePrices table td {
    padding: 10px;
    }
.positionStickyTop {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    }

/*
	evButton: Standard Buttons
	---------------------------
	This defines the standard buttons for the system. These buttons may be used with <a> or <button> elements.
	These take the form of:
	* <ev:button /> (<a />)
	* <ev:submit /> (<button />)
*/
.evButton,
.evButton > .label {
    white-space: nowrap;
    display: inline-block;
    border: 0;
    background-color: transparent;
    text-decoration: none;
    cursor: pointer;
    padding: 0;
    margin: 0;
    text-align: left;
    width: auto;
    overflow: visible;
    position: relative;
    height: 30px;
    line-height: 28px;
    outline: 0;
    }
.evButton {
    vertical-align: middle;
    white-space: nowrap;
    border-color: #D9D9D9;
    border-width: 1px;
    border-style: solid;
    border-radius: 2px;
    padding: 0 7px;
    background-color: rgba(255,255,255,.5);
    }
.evButton > .label {
    padding: 0 5px;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
    }
.evButton:hover,
.evButton.hover,
.evButton:focus,
.evButton.focus {
    text-decoration: none;
    border-color: #B0B2B5;
    }
.evButton:active,
.evButton.active {
    text-decoration: none;
    border-color: #C0C2C4;
    background-color: #eee;
    }
.evButton > .label > .title {
    font-weight: bold;
    font-size: 12px;
    }
.open > .evButton {
    text-decoration: none;
    -webkit-box-shadow: none;
    box-shadow: none;
    }

/*
	Disabled Buttons
	----------------
	Modifiers to disable a button.

	Usage:
	<ev:button disabled="disabled" />
	<ev:submit disabled="disabled" />
*/
.evButton.disabled,
.evButton.disabled > .label,
.evButton.disabled > .icon {
    cursor: default;
    }
.evButton.disabled > .icon {
    opacity: .4;
    }
.evButton.disabled > .label {
    color: #999;
    }

/*
	Coloured Buttons
	----------------
	Classes to give buttons a different look, but with same dimensions.

	Usage:
	<ev:button class="evButtonCancel" />
	<ev:submit class="evButtonCancel" />
*/
/*  Red Button  */
.evButtonCancel {
    background: #ff3019;
    border-color: #cf0404;
    }
.evButtonCancel:hover,
.evButtonCancel.hover,
.evButtonCancel:focus,
.evButtonCancel.focus {
    background: #cf0404;
    }
.evButtonCancel:active,
.evButtonCancel.active {
    background: #A00303;
    }
.evButtonCancel > .label,
.evButtonCancel > .icon {
    color: #fff;
    }

/*  Green Button  */
.evButtonProceed {
    background: #13c100;
    border-color: #1C7305;
    }
.evButtonProceed:hover,
.evButtonProceed.hover,
.evButtonProceed:focus,
.evButtonProceed.focus {
    background: #1C7305;
    }
.evButtonProceed:active,
.evButtonProceed.active {
    background: #0D7500;
    }
.evButtonProceed > .label,
.evButtonProceed > .icon {
    color: #fff;
    }

/*  Blue Button  */
.evButtonAction {
    background: #4096ee;
    border-color: #3079ed;
    }
.evButtonAction:hover,
.evButtonAction.hover,
.evButtonAction:focus,
.evButtonAction.focus {
    background: #3079ed;
    }
.evButtonAction:active,
.evButtonAction.active {
    background: #357ae8;
    }
.evButtonAction > .label,
.evButtonAction > .icon {
    color: #fff;
    }

/*
	evTextField
	------------
	CSS for:
	* UI object Evml TextField
	* <ev:textfield />
*/
.evTextField,
.evTextField > span,
.evTextField > .evTextFieldInput > input,
.evTagField {
    white-space: nowrap;
    display: inline-block;
    border: 0;
    padding: 0;
    margin: 0;
    overflow: visible;
    }
.evTextField,
.evTagField {
    vertical-align: middle;
    white-space: nowrap;
    background-color: #fff;
    border-radius: 2px;
    border-color: #C0C0C0;
    border-width: 1px;
    border-style: solid;
    display: table;
    width: 100%;
    }
.evTextField > span {
    display: table-cell;
    vertical-align: middle;
    border-collapse: collapse;
    border-spacing: 0;
    }
.evTextField > .evTextFieldIcon {
    padding-left: 5px;
    }
.evTextField > .evTextFieldPostfix {
    padding-right: 5px;
    }
.evTextField > .evTextFieldInput {
    width: 100%;
    }
.evTextField:hover,
.evTextField.focus,
.evTagField:hover,
.evTagField.focus {
    -webkit-box-shadow: inset 0 1px 3px #ddd;
    box-shadow: inset 0 1px 3px #ddd;
    }
.evTextField > .evTextFieldInput > input {
    background-color: transparent;
    position: relative;
    top: 0;
    padding: 6px 5px;
    text-indent: 0;
    text-align: left;
    height: auto;
    line-height: normal;
    outline: none;
    color: #444;
    vertical-align: middle;
    width: 100%;
    display: block;
    }
input::-webkit-input-placeholder {
    color: #aaa;
    }
input:-moz-placeholder {
    color: #aaa;
    }

/* Numeric textfield */
.evTextField.numeric > .evTextFieldInput > input {
    text-align: right;
    }

/* Autogrow */
.evTextField.autogrow,
.evTextField.autogrow > .evTextFieldInput {
    width: auto !important;
    }

/* Focused Textfields */
.evTextField.focus,
.evTagField.focus {
    border-color: #4EA8F2;
    -webkit-box-shadow: 0 0 3px #4EA8F2;
    box-shadow: 0 0 3px #4EA8F2;
    }
.evTextField.focus > .evTextFieldInput > input {
    color: #000;
    }

/* Disabled Textfields */
.evTextField.disabled {
    opacity: .5;
    }
.evTextField > .evTextFieldInput > input:disabled {
    color: #5a5a5a;
    cursor: default;
    }

/* Textfield Errors */
.evTextField.error {
    border-color: #FA8991;
    background-color: #FCEDEE;
    }
.evTextField.error > .evTextFieldInput > input {
    color: #000;
    }
.evTextField .evTextFieldPrefix {
    cursor: default;
    }
.evTextField .evTextFieldPrefix .label {
    white-space: nowrap;
    display: inline-block;
    border: 0;
    padding: 6px 5px;
    margin: 0;
    overflow: visible;
    opacity: .7;
    }

/*
 * evCombo
 * -------
 */
.evCombo {
    position: relative;
    display: block;
    vertical-align: middle;
    }
.evComboOptions {
    position: absolute;
    background-color: #fff;
    top: 23px;
    left: 1px;
    border: 1px solid #ddd;
    -webkit-box-shadow: 0 2px 3px rgba(0,0,0,.4);
    box-shadow: 0 2px 3px rgba(0,0,0,.4);
    overflow-y: auto;
    max-height: 300px;
    z-index: 99;
    text-align: left;
    color: #000;
    }
.evComboOptions .active {
    color: #fff !important;
    background: #5b9dde;
    }
.evComboOptions li {
    cursor: pointer;
    }

/*
	evTextArea
	----------
	CSS for:
	* UI Object Evml TextArea
	* <ev:textarea></ev:textarea>
*/
.evTextArea {
    display: inline-block;
    position: relative;
    background-color: #fff;
    border-radius: 2px;
    border: 1px solid #C0C0C0;
    width: 100%;
    }
.evTextArea:hover,
.evTextArea.focus {
    -webkit-box-shadow: inset 0 1px 3px #ddd;
    box-shadow: inset 0 1px 3px #ddd;
    }
.evTextArea.focus {
    border-color: #4EA8F2;
    -webkit-box-shadow: 0 0 3px #4EA8F2;
    box-shadow: 0 0 3px #4EA8F2;
    }
.evTextArea textarea {
    margin: 0;
    overflow-y: scroll;
    border: 0;
    padding: 5px;
    outline: none;
    line-height: 20px;
    color: #444;
    background: transparent;
    zoom: 1;
    width: 100%;
    resize: vertical;
    }
.evTextArea.focus textarea {
    color: #000;
    }
textarea::-webkit-input-placeholder {
    color: #999;
    }
textarea:-moz-placeholder {
    color: #999;
    }
.evTextArea.error {
    border-color: #FA8991;
    background-color: #FCEDEE;
    }
.evTextArea.error textarea {
    color: #000;
    }
.evTextArea .footer {
    display: table;
    color: #aaa;
    border-top: 1px solid #eee;
    width: 100%;
    }
.evTextArea .footer .cell {
    padding: 8px;
    display: table-cell;
    }
.evTextArea .counter .remaining {
    font-weight: bold;
    }
.evTextArea .highlight .remaining {
    color: #f00;
    }
.evTextArea .autosubmit {
    text-align: right;
    }

/*
	evRadio & evCheckbox
	--------------------
	version 2 of evRadio
*/
a.evRadio,
a.evCheckbox {
    white-space: nowrap;
    display: inline-block;
    padding: 0;
    margin: 0;
    height: 18px;
    width: 18px;
    border: 1px solid #C0C0C0;
    vertical-align: middle;
    border-radius: 9px;
    font-family: 'ev2';
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    text-align: center;
    line-height: 15px;
    text-decoration: none;
    outline: none;
    }
a.evCheckbox {
    border-radius: 3px;
    }
a.evRadio.checked,
a.evCheckbox.checked {
    border: 1px solid #5b9dde;
    background-color: #5b9dde;
    color: #fff;
    }
a.evRadio.checked:after,
a.evCheckbox.checked:after {
    content: "\e0ef";
    }
a.evRadio.hover,
a.evRadio:hover,
a.evCheckbox.hover,
a.evCheckbox:hover {
    border: 1px solid #4EA8F2;
    -webkit-box-shadow: 0 0 3px #4EA8F2;
    box-shadow: 0 0 3px #4EA8F2;
    }

/*
	evSwitch
	--------
	version 2 of evSwitch
*/
a.evSwitch {
    white-space: nowrap;
    display: inline-block;
    border: 0;
    padding: 0;
    margin: 0;
    vertical-align: middle;
    background-color: #fff;
    height: 30px;
    width: 60px;
    text-decoration: none;
    font-family: 'ev2';
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    position: relative;
    color: #fff;
    overflow: hidden;
    border-radius: 2px;
    outline: none;
    }
a.evSwitch .inner {
    background: -webkit-linear-gradient(top,#fff 0%,#eee 100%);
    background: linear-gradient(top,#fff 0%,#eee 100%);
    display: block;
    height: 30px;
    width: 32px;
    border-color: #D9D9D9 #D9D9D9 #C0C0C0;
    border-width: 1px;
    border-style: solid;
    border-radius: 2px;
    white-space: nowrap;
    position: absolute;
    top: 0;
    left: 0;
    -webkit-transition: left .25s ease-in-out;
    transition: left .25s ease-in-out;
    }
a.evSwitch:hover .inner,
a.evSwitch.hover .inner,
a.evSwitch:focus .inner,
a.evSwitch.focus .inner {
    -webkit-box-shadow: 0 1px 2px rgba(0,0,0,.25);
    box-shadow: 0 1px 2px rgba(0,0,0,.25);
    }
a.evSwitch:active .inner,
a.evSwitch.active .inner {
    text-decoration: none;
    -webkit-box-shadow: inset 0 1px 2px rgba(0,0,0,.4);
    box-shadow: inset 0 1px 2px rgba(0,0,0,.4);
    border-color: #C0C2C4 #C0C2C4 #B0B2B5;
    background: -webkit-linear-gradient(top,#ddd 0%,#eee 100%);
    background: linear-gradient(top,#ddd 0%,#eee 100%);
    }
a.evSwitch.checked .inner {
    left: 28px;
    }
a.evSwitch .inner:before,
a.evSwitch .inner:after {
    position: absolute;
    height: 28px;
    line-height: 28px;
    background-color: #eee;
    display: block;
    top: 0;
    width: 28px;
    text-align: center;
    font-size: 16px;
    -webkit-box-shadow: inset 0 1px 4px rgba(0,0,0,.6);
    box-shadow: inset 0 1px 4px rgba(0,0,0,.6);
    }
a.evSwitch .inner:before {
    content: "\e0ef";
    left: -29px;
    background-color: #4db538;
    border-top-left-radius: 2px;
    border-bottom-left-radius: 2px;
    }
a.evSwitch .inner:after {
    content: "\e0f0";
    right: -29px;
    background-color: #efefef;
    border-top-right-radius: 2px;
    border-bottom-right-radius: 2px;
    color: #999;
    }

/*
 * evComment
 * ---------
 */
.evComment,
.evCommentReply {
    display: block;
    padding-left: 80px;
    position: relative;
    top: 0;
    left: 0;
    }
.evComment > .evAvatar,
.evCommentReply > .evAvatar {
    position: absolute;
    top: 0;
    left: 0;
    }
.evCommentReply {
    padding-left: 60px;
    }
.evCommentReply > .evAvatar {
    top: 14px;
    left: 14px;
    }

/*
 * evComment
 * ---------
 */
.evComment,
.evCommentReply {
    display: block;
    padding-left: 80px;
    position: relative;
    top: 0;
    left: 0;
    }
.evComment > .thumbnailImage,
.evCommentReply > .thumbnailImage {
    position: absolute;
    top: 0;
    left: 0;
    background-color: #ddd;
    border-radius: 3px;
    border: 1px solid #ccc;
    }
.evCommentReply {
    padding-left: 60px;
    }
.evCommentReply > .thumbnailImage {
    width: 40px;
    height: 40px;
    top: 14px;
    left: 14px;
    background-color: transparent;
    border: 1px solid #ddd;
    }

/*
 * evDropdown
 * ----------
 *
 */
.evDropdown {
    display: inline-block;
    position: relative;
    vertical-align: middle;
    height: 30px;
    z-index: 1;
    }
.evDropdown > .link {
    cursor: pointer;
    display: inline-block;
    padding: 0 4px;
    position: relative;
    z-index: 2;
    white-space: nowrap;
    height: 29px;
    line-height: 28px;
    }
.evDropdown > .link.evButton {
    height: 30px;
    }
.evDropdown > .link .label {
    padding: 0 0 0 5px;
    }
.evDropdown.iconOnly > .link .icon.select {
    display: none;
    }
.evDropdown:hover > .link .label {
    text-decoration: underline;
    }
.evDropdown.open {
    z-index: 2;
    }
.evDropdown.open > .link {
    border: 1px solid #B9B9B9;
    border-bottom: 0;
    text-decoration: none;
    padding: 0 3px;
    border-top-right-radius: 2px;
    border-top-left-radius: 2px;
    background: #fff;
    }
.evDropdown > .content {
    position: absolute;
    border: 1px solid #B9B9B9;
    z-index: 1;
    background-color: #fff;
    display: none;
    right: 0;
    top: 28px;
    border-bottom-right-radius: 2px;
    border-bottom-left-radius: 2px;
    -webkit-box-shadow: 1px 1px 2px rgba(0,0,0,.2);
    box-shadow: 1px 1px 2px rgba(0,0,0,.2);
    }
.evDropdown > .content .footer {
    border-top: 1px solid #B9B9B9;
    padding: 4px;
    white-space: nowrap;
    }
.evDropdown.open > .content {
    display: block;
    text-align: left;
    }
.evDropdownDark > .content,
.evDropdownDark.open > .link {
    background-color: #2b2731;
    border: 1px solid #444;
    }
.evDropdownDark.open > .link {
    border-bottom: 0;
    }
.evDropdownDark > .content a:link,
.evDropdownDark > .content a:visited {
    color: #BBB;
    }

/*
	When a drop box is in a textfield
*/
.evTextField .evDropdown {
    z-index: 1;
    height: 26px;
    line-height: 24px;
    }
.evTextFieldDark.focus .evDropdown {
    border-left: 1px solid #333;
    }
.evTextField .evDropdown {
    border-left: 1px solid #eee;
    margin-left: 5px;
    }
.evTextFieldDark .evDropdown {
    border-left: 1px solid #333;
    }
.evTextField .evDropdown > .content {
    top: 24px;
    }
.evTextField .evDropdown > .link {
    line-height: 20px;
    height: 24px;
    }
.evTextField .evDropdown > .link .label {
    font-size: 10px;
    }
.evTextField .evDropdown.open > .link {
    line-height: 19px;
    }
.evTextField .evDropdown .link .capLeft,
.evTextField .evDropdown .link .middle,
.evTextField .evDropdown .link .capRight {
    background-image: none;
    line-height: 19px;
    height: 20px;
    }

/*
	When a drop box is in a button
*/
.evButton .evDropdown {
    border-left: 1px solid rgba(0,0,0,.2);
    height: 26px;
    margin-right: -5px;
    margin-top: -2px;
    }
.evButton .evDropdown > .link {
    line-height: 24px;
    }
.evButtonDropdown > .content {
    top: 29px;
    right: 0;
    }

/* Modifiers */
.evDropdown.up > .content {
    top: auto;
    bottom: 29px;
    border-radius: 2px 2px 0 0;
    }
.evDropdown.up > .link {
    border-bottom: 1px;
    border-top: 0;
    border-radius: 0 0 2px 2px;
    }
.evDropdown.left > .content {
    right: auto;
    left: 0;
    }
.evDropdown.open.up > .link {
    border-bottom: 1px solid #B9B9B9;
    }

/*
 * List of Options
 */
.evDropdown > .content ul a {
    text-decoration: none;
    }
.evDropdownDark > .content ul li:hover {
    background-color: #3a3740;
    }
.evDropdown > .content ul.evListOfOptions a .icon {
    margin-right: 5px;
    margin-left: -5px;
    }
.ev-icon {
    aspect-ratio: 1;
    display: -ms-inline-flexbox;
    display: -webkit-inline-flex;
    display: inline-flex;
    line-height: 1;
    width: var(--icon-size,24px);
    color: var(--icon-color,currentColor);
    }
.ev-icon > svg {
    width: auto;
    height: auto;
    }

/*
	icon: Standard Icons
	---------------------
	These are used in a variety of places as 16x16 icons.
	They are often used within buttons, round buttons or text fields.
	Usage: generally with a <span>, but an <a> may be used if the icon itself is to be linked.

	<span class="icon help"></span>
*/
@font-face {
    font-family: 'ev2';
    src: url(/portal/shared/theme/v1/common/fonts/ev2.eot);
    src: url(/portal/shared/theme/v1/common/fonts/ev2.eot?#iefix) format('embedded-opentype'),url(/portal/shared/theme/v1/common/fonts/ev2.woff) format('woff'),url(/portal/shared/theme/v1/common/fonts/ev2.ttf) format('truetype'),url(/portal/shared/theme/v1/common/fonts/ev2.svg#ev2) format('svg');
    font-style: normal;
    font-weight: normal !important;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-smoothing: antialiased;
    }
@-webkit-keyframes spin {
0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
    }
100% {
    -webkit-transform: rotate(359deg);
    transform: rotate(359deg);
    }
}

@keyframes spin {
0% {
    -webkit-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
    }
100% {
    -webkit-transform: rotate(359deg);
    -ms-transform: rotate(359deg);
    transform: rotate(359deg);
    }
}

/* The global icon format */
.icon {
    font-family: 'ev2';
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-smoothing: antialiased;
    font-weight: normal !important;
    font-size: 16px;
    line-height: 14px;
    padding: 0;
    margin: 0;
    display: inline-block;
    outline: none;
    border: 0;
    vertical-align: middle;
    width: 16px;
    height: 16px;
    }
.icon.x18 {
    font-size: 18px;
    line-height: 18px;
    }
.icon.x24 {
    font-size: 24px;
    line-height: 27px;
    }
.icon.x32 {
    font-size: 32px;
    line-height: 32px;
    }
.icon.x48 {
    font-size: 48px;
    line-height: 48px;
    }
.icon.x64 {
    font-size: 64px;
    line-height: 64px;
    }

/* Icon rotations and mirroring */
.icon.rotate90:before {
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
    }
.icon.rotate180:before {
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
    }
.icon.rotate270:before {
    -webkit-transform: rotate(270deg);
    -ms-transform: rotate(270deg);
    transform: rotate(270deg);
    }
.icon.flipHorizontal:before {
    -webkit-transform: scale(-1,1);
    -ms-transform: scale(-1,1);
    transform: scale(-1,1);
    }
.icon.flipVertical:before {
    -webkit-transform: scale(1,-1);
    -ms-transform: scale(1,-1);
    transform: scale(1,-1);
    }

/* ensure rotation occurs inside anchor tags */
a .icon.rotate90:before,
a .icon.rotate180:before,
a .icon.rotate270:before,
a .icon.flipHorizontal:before,
a .icon.flipVertical:before {
    display: inline-block;
    }

/* rotation animation */
.icon.rotating,
.icon.loading {
    display: inline-block;
    -webkit-animation: spin 1s infinite linear;
    animation: spin 1s infinite linear;
    }
.icon.loading.x32 {
    width: 32px;
    height: 32px;
    line-height: 30px;
    text-align: center;
    }
.icon.loading.x48 {
    width: 48px;
    height: 48px;
    line-height: 44px;
    text-align: center;
    }
.icon.loading.x64 {
    width: 64px;
    height: 64px;
    line-height: 58px;
    text-align: center;
    }

/* Now for the icons */
.icon.home:before {
    content: "\e000";
    }
.icon.pencil:before,
.icon.edit:before {
    content: "\e001";
    }
.icon.office:before,
.icon.business:before,
.icon.company:before {
    content: "\e002";
    }
.icon.paintFormat:before {
    content: "\e003";
    }
.icon.image:before {
    content: "\e004";
    }
.icon.headphones:before {
    content: "\e007";
    }
.icon.video:before {
    content: "\e008";
    }
.icon.connection:before {
    content: "\e009";
    }
.icon.book:before,
.icon.catalog:before,
.icon.catalogue:before,
.icon.products:before {
    content: "\e00a";
    }
.icon.stack:before {
    content: "\e00c";
    }
.icon.layers:before {
    content: "\e0f3";
    }
.icon.folder:before {
    content: "\e00d";
    }
.icon.folderOpen:before {
    content: "\e00e";
    }
.icon.tag:before {
    content: "\e00f";
    }
.icon.tags:before {
    content: "\e010";
    }
.icon.barcode:before {
    content: "\e011";
    }
.icon.qrcode:before {
    content: "\e012";
    }
.icon.ticket:before,
.icon.coupon:before,
.icon.voucher:before {
    content: "\e013";
    }
.icon.ticket2:before {
    content: "\e0da";
    }
.icon.cart:before,
.icon.order:before {
    content: "\e014";
    }
.icon.calculate:before {
    content: "\e016";
    }
.icon.support:before {
    content: "\e017";
    }
.icon.phone:before {
    content: "\e018";
    }
.icon.phoneDown:before {
    content: "\e019";
    }
.icon.pushpin:before {
    content: "\e01a";
    }
.icon.map:before {
    content: "\e01c";
    }
.icon.mapOutline:before {
    content: "\e005";
    }
.icon.clock:before,
.icon.time:before {
    content: "\e0c3";
    }
.icon.clockBold:before,
.icon.timeBold:before {
    content: "\e01d";
    }
.icon.earth:before,
.icon.public:before,
.icon.website:before {
    content: "\e01e";
    }
.icon.alarm:before {
    content: "\e01f";
    }
.icon.print:before,
.icon.fax:before {
    content: "\e022";
    }
.icon.screen:before,
.icon.desktop:before {
    content: "\e025";
    }
.icon.mobile:before {
    content: "\e024";
    }
.icon.tablet:before {
    content: "\e026";
    }
.icon.download:before {
    content: "\e027";
    }
.icon.upload:before {
    content: "\e028";
    }
.icon.undo:before {
    content: "\e029";
    }
.icon.redo:before {
    content: "\e02a";
    }
.icon.undo2:before {
    content: "\e02b";
    }
.icon.redo2:before {
    content: "\e02c";
    }
.icon.forward2:before {
    content: "\e02d";
    }
.icon.reply2:before {
    content: "\e02e";
    }
.icon.user:before,
.icon.contact:before,
.icon.person:before {
    content: "\e031";
    }
.icon.users:before,
.icon.contacts:before {
    content: "\e032";
    }
.icon.update:before {
    content: "\e033";
    }
.icon.shield:before {
    content: "\e035";
    }
.icon.lightning:before {
    content: "\e036";
    }
.icon.connect:before {
    content: "\e037";
    }
.icon.truck:before,
.icon.shipping:before,
.icon.delivery:before {
    content: "\e038";
    }
.icon.airplane:before,
.icon.airmail:before {
    content: "\e039";
    }
.icon.remove:before,
.icon.delete:before {
    content: "\e03a";
    }
.icon.lab:before {
    content: "\e03b";
    }
.icon.aid:before {
    content: "\e03c";
    }
.icon.bug:before {
    content: "\e03d";
    }
.icon.search:before {
    content: "\e03f";
    }
.icon.cog:before,
.icon.options:before {
    content: "\e040";
    }
.icon.equalizer:before {
    content: "\e041";
    }
.icon.equalizerHorizontal:before {
    content: "\e0fe";
    }
.icon.equalizerSmall:before {
    content: "\e0f6";
    }
.icon.key:before {
    content: "\e042";
    }
.icon.key2:before {
    content: "\e0f1";
    }
.icon.fullscreen:before {
    content: "\e045";
    }
.icon.fullscreenSmall:before {
    content: "\e0f8";
    }
.icon.enlarge:before {
    content: "\e046";
    }
.icon.reduce:before {
    content: "\e047";
    }
.icon.mug:before {
    content: "\e048";
    }
.icon.trophy:before {
    content: "\e049";
    }
.icon.gift:before {
    content: "\e04a";
    }
.icon.wand:before {
    content: "\e04b";
    }
.icon.rocket:before {
    content: "\e04c";
    }
.icon.link:before,
.icon.linked:before,
.icon.unlink:before {
    content: "\e04e";
    }
.icon.cloudUpload:before {
    content: "\e050";
    }
.icon.cloudDownload:before {
    content: "\e051";
    }
.icon.cloud:before {
    content: "\e052";
    }
.icon.tree:before {
    content: "\e053";
    }
.icon.menu:before {
    content: "\e054";
    }
.icon.menu2:before {
    content: "\e055";
    }
.icon.numberedList:before {
    content: "\e056";
    }
.icon.list:before {
    content: "\e057";
    }
.icon.list2:before {
    content: "\e058";
    }
.icon.eye:before,
.icon.preview:before {
    content: "\e059";
    }
.icon.eyeBlocked:before {
    content: "\e05a";
    }
.icon.bookmark:before {
    content: "\e05b";
    }
.icon.bookmarkNarrow:before {
    content: "\e125";
    }
.icon.reviewOff:before {
    content: "\e05c";
    }
.icon.reviewHalf:before {
    content: "\e05d";
    }
.icon.reviewOn:before {
    content: "\e05e";
    }
.icon.heart:before {
    content: "\e05f";
    }
.icon.thumbsUp:before {
    content: "\e060";
    }
.icon.thumbsDown:before {
    content: "\e061";
    }
.icon.thumbsUpSmall:before {
    content: "\e127";
    }
.icon.thumbsDownSmall:before {
    content: "\e128";
    }
.icon.complete:before {
    content: "\e062";
    }
.icon.cancelled:before {
    content: "\e063";
    }
.icon.blocked:before {
    content: "\e064";
    }
.icon.blocked2:before {
    content: "\e124";
    }
.icon.plus:before,
.icon.add:before {
    content: "\e0b1";
    }
.icon.minus:before,
.icon.subtract:before {
    content: "\e0b2";
    }
.icon.minusLarge:before {
    content: "\e066";
    }
.icon.plusLarge:before {
    content: "\e067";
    }
.icon.enter:before,
.icon.login:before {
    content: "\e068";
    }
.icon.exit:before,
.icon.logout:before {
    content: "\e069";
    }
.icon.shuffle:before {
    content: "\e06a";
    }
.icon.loop:before {
    content: "\e06b";
    }
.icon.scissors:before {
    content: "\e06c";
    }
.icon.creditcard:before,
.icon.card:before {
    content: "\e06d";
    }
.icon.frame:before {
    content: "\e015";
    }
.icon.graph:before {
    content: "\e04f";
    }
.icon.bars:before {
    content: "\e06f";
    }
.icon.briefcase:before {
    content: "\e070";
    }
.icon.switch:before {
    content: "\e071";
    }
.icon.flag:before {
    content: "\e072";
    }
.icon.filter:before {
    content: "\e073";
    }
.icon.volume:before {
    content: "\e078";
    }
.icon.mute:before {
    content: "\e079";
    }
.icon.code:before {
    content: "\e07a";
    }
.icon.ruler:before,
.icon.design:before {
    content: "\e07b";
    }
.icon.warehouse:before {
    content: "\e07c";
    }
.icon.presentation:before {
    content: "\e080";
    }
.icon.email:before,
.icon.envelope:before {
    content: "\e081";
    }
.icon.emailRead:before,
.icon.emailOpen:before,
.icon.envelopeOpen:before {
    content: "\e0f7";
    }
.icon.brush:before {
    content: "\e083";
    }
.icon.tools:before {
    content: "\e084";
    }
.icon.patch:before {
    content: "\e085";
    }
.icon.umbrella:before {
    content: "\e086";
    }
.icon.lab2:before {
    content: "\e087";
    }
.icon.gamepad:before {
    content: "\e088";
    }
.icon.microphone:before {
    content: "\e090";
    }
.icon.calendar:before,
.icon.date:before {
    content: "\e091";
    }
.icon.arrowRight:before,
.icon.pointRight:before {
    content: "\e092";
    }
.icon.arrowUp:before,
.icon.pointUp:before {
    content: "\e093";
    }
.icon.arrowDown:before,
.icon.pointDown:before {
    content: "\e094";
    }
.icon.arrowLeft:before,
.icon.pointLeft:before {
    content: "\e095";
    }
.icon.arrowRight2:before {
    content: "\e096";
    }
.icon.arrowUp2:before {
    content: "\e097";
    }
.icon.arrowDown2:before,
.icon.select:before {
    content: "\e098";
    }
.icon.arrowLeft2:before {
    content: "\e099";
    }
.icon.arrowLeft3:before,
.icon.goBack:before,
.icon.left:before {
    content: "\e09d";
    }
.icon.arrowDown3:before,
.icon.descending:before,
.icon.down:before {
    content: "\e09e";
    }
.icon.arrowUp3:before,
.icon.ascending:before,
.icon.up:before {
    content: "\e09f";
    }
.icon.arrowRight3:before,
.icon.goForward:before,
.icon.right:before {
    content: "\e0a0";
    }
.icon.arrowLeft4:before {
    content: "\e0e9";
    }
.icon.arrowDown4:before {
    content: "\e0ea";
    }
.icon.arrowUp4:before {
    content: "\e0eb";
    }
.icon.arrowRight4:before {
    content: "\e0ec";
    }
.icon.flowCascade:before {
    content: "\e09a";
    }
.icon.flowBranch:before,
.icon.merge:before {
    content: "\e09b";
    }
.icon.flowTree:before {
    content: "\e09c";
    }
.icon.flowLine:before {
    content: "\e0a1";
    }
.icon.cloud2:before {
    content: "\e0a2";
    }
.icon.cloudUpload2:before {
    content: "\e0a3";
    }
.icon.install:before {
    content: "\e0a4";
    }
.icon.flowParallel:before {
    content: "\e0a5";
    }
.icon.disk:before,
.icon.save:before {
    content: "\e0a6";
    }
.icon.inTray:before,
.icon.import:before {
    content: "\e0a7";
    }
.icon.outTray:before {
    content: "\e0a8";
    }
.icon.trash:before {
    content: "\e0a9";
    }
.icon.pictures:before {
    content: "\e0aa";
    }
.icon.shuffle2:before {
    content: "\e0ab";
    }
.icon.uturn:before {
    content: "\e0ac";
    }
.icon.return:before {
    content: "\e0ad";
    }
.icon.retweet:before {
    content: "\e0ae";
    }
.icon.loop2:before {
    content: "\e0af";
    }
.icon.history:before {
    content: "\e0b0";
    }
.icon.database:before {
    content: "\e0b3";
    }
.icon.locate:before,
.icon.location:before {
    content: "\e0b6";
    }
.icon.paperplane:before {
    content: "\e0b7";
    }
.icon.paperclip:before,
.icon.attachement:before {
    content: "\e0b9";
    }
.icon.user2:before {
    content: "\e0ba";
    }
.icon.users2:before {
    content: "\e0bb";
    }
.icon.address:before,
.icon.geolocation:before {
    content: "\e0bc";
    }
.icon.graduation:before,
.icon.education:before {
    content: "\e0bd";
    }
.icon.book2:before {
    content: "\e0be";
    }
.icon.hourglass:before {
    content: "\e0bf";
    }
.icon.gauge:before {
    content: "\e0c0";
    }
.icon.droplet:before {
    content: "\e0c1";
    }
.icon.calendar2:before {
    content: "\e0c2";
    }
.icon.lifebuoy:before {
    content: "\e0c4";
    }
.icon.mobile2:before {
    content: "\e0c6";
    }
.icon.directions:before {
    content: "\e0c7";
    }
.icon.target:before {
    content: "\e0c9";
    }
.icon.share:before {
    content: "\e0ca";
    }
.icon.chat:before {
    content: "\e0cc";
    }
.icon.comment:before,
.icon.comments:before {
    content: "\e0cd";
    }
.icon.quote:before {
    content: "\e0ce";
    }
.icon.trophy2:before {
    content: "\e0d0";
    }
.icon.megaphone:before {
    content: "\e0d1";
    }
.icon.audio:before {
    content: "\e0d2";
    }
.icon.music:before {
    content: "\e0d3";
    }
.icon.drive:before {
    content: "\e0d4";
    }
.icon.cone:before,
.icon.construction:before {
    content: "\e0d5";
    }
.icon.lineChart:before {
    content: "\e0d7";
    }
.icon.pieChart:before {
    content: "\e03e";
    }
.icon.pieChart2:before {
    content: "\e0d8";
    }
.icon.stats:before,
.icon.barChart:before {
    content: "\e0d9";
    }
.icon.info:before {
    content: "\e0db";
    }
.icon.infoBold:before {
    content: "\e065";
    }
.icon.warning:before,
.icon.attention:before {
    content: "\e0dc";
    }
.icon.help:before {
    content: "\e0dd";
    }
.icon.cycle:before {
    content: "\e0de";
    }
.icon.reload:before,
.icon.refresh:before,
.icon.clockwise:before {
    content: "\e0df";
    }
.icon.ccw:before,
.icon.antiClockwise:before,
.icon.counterClockwise:before {
    content: "\e0e0";
    }
.icon.play:before,
.icon.inProgress:before {
    content: "\e0e1";
    }
.icon.pause:before,
.icon.paused:before {
    content: "\e0e2";
    }
.icon.record:before {
    content: "\e0e3";
    }
.icon.stop:before {
    content: "\e0e4";
    }
.icon.next:before {
    content: "\e0e5";
    }
.icon.previous:before {
    content: "\e0e6";
    }
.icon.first:before {
    content: "\e0e7";
    }
.icon.last:before {
    content: "\e0e8";
    }
.icon.ellipsis:before,
.icon.pending:before {
    content: "\e0ed";
    }
.icon.eject:before {
    content: "\e0ee";
    }
.icon.checkmark:before,
.icon.yes:before {
    content: "\e0ef";
    }
.icon.cancel:before,
.icon.no:before {
    content: "\e0f0";
    }
.icon.cord:before {
    content: "\e0f2";
    }
.icon.collapseScreenSmall:before {
    content: "\e0f9";
    }
.icon.collapseScreen:before {
    content: "\e0fb";
    }
.icon.zoomOut:before {
    content: "\e0fc";
    }
.icon.zoomIn:before {
    content: "\e0fd";
    }
.icon.leaf:before {
    content: "\e0ff";
    }
.icon.leaf2:before {
    content: "\e0c8";
    }
.icon.signup:before,
.icon.todo:before {
    content: "\e100";
    }
.icon.download2:before {
    content: "\e101";
    }
.icon.upload2:before {
    content: "\e102";
    }
.icon.attachmentBold:before {
    content: "\e103";
    }
.icon.smileyOutline:before {
    content: "\e104";
    }
.icon.smiley:before {
    content: "\e105";
    }
.icon.sadOutline:before {
    content: "\e106";
    }
.icon.sad:before {
    content: "\e107";
    }
.icon.neutralOutline:before {
    content: "\e108";
    }
.icon.neutral:before {
    content: "\e109";
    }
.icon.happyOutline:before {
    content: "\e10a";
    }
.icon.happy:before {
    content: "\e10b";
    }
.icon.wonderingOutline:before {
    content: "\e10c";
    }
.icon.wondering:before {
    content: "\e10d";
    }
.icon.feed:before {
    content: "\e10f";
    }
.icon.twitter:before {
    content: "\e111";
    }
.icon.facebook:before {
    content: "\e112";
    }
.icon.twitter2:before {
    content: "\e110";
    }
.icon.googleplus:before {
    content: "\ea90";
    }
.icon.instagram:before {
    content: "\ea89";
    }
.icon.youtube:before {
    content: "\e113";
    }
.icon.youtubeOutline:before {
    content: "\e114";
    }
.icon.vimeo2:before {
    content: "\e115";
    }
.icon.vimeo:before {
    content: "\e116";
    }
.icon.linkedin:before {
    content: "\e117";
    }
.icon.pinterest:before {
    content: "\e118";
    }
.icon.replyAll:before {
    content: "\e119";
    }
.icon.reply:before {
    content: "\e11a";
    }
.icon.forward:before {
    content: "\e11b";
    }
.icon.newspaper:before {
    content: "\e11c";
    }
.icon.camera:before {
    content: "\e0b8";
    }
.icon.palette:before {
    content: "\e0cf";
    }
.icon.rocket2:before {
    content: "\e11d";
    }
.icon.brush2:before {
    content: "\e11e";
    }
.icon.decrease:before {
    content: "\e11f";
    }
.icon.increase:before {
    content: "\e120";
    }
.icon.contract:before {
    content: "\e121";
    }
.icon.expand:before {
    content: "\e122";
    }
.icon.cross:before,
.icon.close:before {
    content: "\e123";
    }
.icon.box:before,
.icon.archive:before {
    content: "\e08c";
    }
.icon.export:before {
    content: "\e08d";
    }
.icon.heartOn:before {
    content: "\e0cb";
    }
.icon.heartOff:before {
    content: "\e08e";
    }
.icon.starred:before,
.icon.favourite:before {
    content: "\e08f";
    }
.icon.unstarred:before,
.icon.unfavourite:before {
    content: "\e126";
    }
.icon.move:before,
.icon.drag:before {
    content: "\e04d";
    }
.icon.flickr:before {
    content: "\e06e";
    }
.icon.github:before {
    content: "\e074";
    }
.icon.unlocked:before {
    content: "\e075";
    }
.icon.lock:before,
.icon.locked:before {
    content: "\e076";
    }
.icon.hand:before {
    content: "\e077";
    }
.icon.suitcase:before {
    content: "\e08a";
    }
.icon.wrench:before,
.icon.spanner:before {
    content: "\e006";
    }
.icon.stamp:before,
.icon.postage:before {
    content: "\f242";
    }

/* should come last */
.icon.spinner-2:before,
.icon.loading:before {
    content: "\e0fa";
    }

/* Ratings */
.evRating a.icon {
    opacity: .6;
    cursor: pointer;
    outline: none;
    margin: 5px 2px;
    text-decoration: none;
    }
.evRating a.icon:before {
    content: "\e05c";
    }
.evRating a.icon.active {
    opacity: 1;
    color: #e19533;
    }
.evRating a.icon.active:before {
    content: "\e05e";
    }
.evRating a.icon.hover {
    opacity: 1;
    color: #5b9dde;
    -webkit-transform: scale(1.2);
    -ms-transform: scale(1.2);
    transform: scale(1.2);
    }
.evRating a.icon.hover:before {
    content: "\e05e";
    }
.evRating a.icon:hover {
    -webkit-transform: scale(1.4);
    -ms-transform: scale(1.4);
    transform: scale(1.4);
    }
.evRating span.icon {
    opacity: .6;
    margin: 5px 2px;
    cursor: default;
    }
.evRating span.icon.reviewOn,
.evRating span.icon.reviewHalf {
    opacity: 1;
    color: #e19533;
    }
.evRating.x24 .icon {
    font-size: 24px;
    width: 24px;
    height: 24px;
    margin: 5px;
    }
.evRating.x32 .icon {
    font-size: 32px;
    width: 32px;
    height: 32px;
    margin: 5px;
    }
.evProgress {
    background-color: #eee;
    width: 100%;
    display: block;
    }
.evProgress .bar {
    background-color: #9266d6;
    display: block;
    height: 20px;
    }

/*
	evSelect
	---------
	Usage: you only need apply the evSelect class to a standard select html element
	without any wrappers and evance.ui Javascript for evSelect will wrap it for you.
	Usage:

	<select class="evSelect" name="myselect">...</select>
*/
select.evSelect {
    color: #000;
    padding: 0;
    margin: 0;
    height: 30px;
    overflow: hidden;
    border: 0;
    width: 100%;
    }
.evSelectButton {
    display: inline-block;
    overflow: visible;
    vertical-align: middle;
    position: relative;
    width: 100%;
    }
.evSelectButton > .evButton {
    display: none;
    margin-bottom: -30px;
    position: relative;
    }
.evSelectButtonJs > select {
    opacity: 0;
    cursor: pointer;
    }
.evSelectButtonJs > .evButton {
    display: block;
    }
.evSelectButton > .evButton > .icon.select {
    position: absolute;
    right: 5px;
    top: 9px;
    }
.evSelectButton > .evButton > .label {
    margin-right: 20px;
    display: block;
    }
.evSelectButton > .evButton > .evSelectButtonIcon {
    position: absolute;
    top: 9px;
    left: 5px;
    }
.evSelectButton.hasIcon > .evButton > .label {
    margin-left: 16px;
    }

/*
	evTabs
	-------
*/
ul.evTabs,
ul.evTabs li,
ul.evTabs li a {
    display: inline-block;
    white-space: nowrap;
    margin: 0;
    padding: 0;
    }
ul.evTabs li {
    list-style: none;
    }
ul.evTabs li a:visited,
ul.evTabs li a:link {
    color: inherit;
    padding: 0 10px;
    text-decoration: none;
    }
ul.evTabs li a .label {
    height: 28px;
    white-space: nowrap;
    line-height: 28px;
    }
ul.evTabs li.active a .label {
    color: #4b4b4b;
    }
ul.evTabs li.active {
    border-bottom: 2px solid #C00;
    }
ul.evTabs li a:hover .label {
    text-decoration: underline;
    }

/*
 * 	evSlidshow
 * -----------
 */
.evSlideshow,
.evSlideshowMask,
.evSlideshowSlides {
    position: relative;
    }
.evSlideshow,
.evSlideshowMask {
    display: block;
    overflow: hidden;
    }
.evSlideshowNext,
.evSlideshowPrevious {
    position: absolute;
    top: 50%;
    margin-top: -30px;
    -webkit-transition: all .5s ease-in-out;
    -moz-transition: all .5s ease-in-out;
    -o-transition: all .5s ease-in-out;
    -ms-transition: all .5s ease-in-out;
    transition: all .5s ease-in-out;
    }
.evSlideshowPrevious {
    left: -80px;
    }
.evSlideshow:hover .evSlideshowPrevious {
    left: -25px;
    }
.evSlideshowPrevious a {
    -webkit-border-top-right-radius: 30px;
    -webkit-border-bottom-right-radius: 30px;
    -moz-border-radius-topright: 30px;
    -moz-border-radius-bottomright: 30px;
    border-top-right-radius: 30px;
    border-bottom-right-radius: 30px;
    }
.evSlideshowNext {
    right: -80px;
    }
.evSlideshow:hover .evSlideshowNext {
    right: -25px;
    }
.evSlideshowNext a {
    -webkit-border-top-left-radius: 30px;
    -webkit-border-bottom-left-radius: 30px;
    -moz-border-radius-topleft: 30px;
    -moz-border-radius-bottomleft: 30px;
    border-top-left-radius: 30px;
    border-bottom-left-radius: 30px;
    }
.evSlideshowButton .icon {
    margin-top: 23px;
    }
.evSlideshowNext .icon {
    margin-right: 10px;
    }
.evSlideshowPrevious .icon {
    margin-left: 10px;
    }
.evSlideshowButton a {
    height: 60px;
    width: 60px;
    background-color: rgba(0,0,0,.8);
    background-color: #fff;
    display: -moz-inline-box;
    display: inline-block;
    zoom: 1;
    *display: inline;
    vertical-align: middle;
    text-align: center;
    -moz-box-shadow: 0 0 5px rgba(0,0,0,.4);
    -webkit-box-shadow: 0 0 5px rgba(0,0,0,.4);
    box-shadow: 0 0 5px rgba(0,0,0,.4);
    -webkit-transition: all .5s ease-in-out;
    -moz-transition: all .5s ease-in-out;
    -o-transition: all .5s ease-in-out;
    -ms-transition: all .5s ease-in-out;
    transition: all .5s ease-in-out;
    margin: 3px;
    }
.evSlideshowButton a:hover {
    -moz-box-shadow: 0 0 10px rgba(0,0,0,.6);
    -webkit-box-shadow: 0 0 10px rgba(0,0,0,.6);
    box-shadow: 0 0 10px rgba(0,0,0,.6);
    }

/*
 * evSlideshowThumbnails
 * ---------------------
 */
.evSlideshowThumbnails .evSlideshowSlide {
    -khtml-opacity: .5;
    -moz-opacity: .5;
    -ms-filter: ”alpha(opacity=50)”;
    -webkit-filter: alpha(opacity=50);
    filter: alpha(opacity=50);
    opacity: .5;
    }
.evSlideshowThumbnails .active {
    -khtml-opacity: 1;
    -moz-opacity: 1;
    -ms-filter: ”alpha(opacity=100)”;
    -webkit-filter: alpha(opacity=100);
    filter: alpha(opacity=100);
    opacity: 1;
    }

/*
 * evSlideshowController
 */
.evController {
    display: block;
    margin: 0;
    padding: 0;
    text-align: center;
    display: -moz-inline-box;
    display: inline-block;
    zoom: 1;
    *display: inline;
    padding: 2px;
    }
.evController li {
    list-style: none;
    display: block;
    float: left;
    margin: 2px 3px;
    }
.evController li a {
    display: -moz-inline-box;
    display: inline-block;
    zoom: 1;
    *display: inline;
    text-indent: -1000px;
    overflow: hidden;
    width: 16px;
    height: 16px;
    background-color: #aaa;
    float: left;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    border-radius: 8px;
    }
.evController li.active a {
    background-color: #000;
    }
ul.evListOfOptions {
    padding: 0;
    margin: 0;
    }
ul.evListOfOptions li {
    list-style: none;
    border-bottom: 1px solid #eee;
    padding: 4px 15px 4px 15px;
    white-space: nowrap;
    line-height: 26px;
    }
ul.evListOfOptions li.last {
    border: 0;
    }
ul.evListOfOptions.interactive li:hover {
    color: #fff;
    background-color: #0d67f7;
    }
ul.evListOfOptions.interactive li:hover .icon {
    background-position: -100px -50px !important;
    }
ul.evListOfOptions.interactive li a {
    color: inherit;
    }
.evPagination {
    margin: 0 -2px;
    display: inline-block;
    vertical-align: top;
    }
.evPagination .evButton {
    margin: 0 2px;
    }
.evPerPage {
    display: inline-block;
    vertical-align: top;
    margin: 0 -2px;
    }
.evPerPage .evSelectButton {
    margin: 0 2px;
    }
.evMenu {
    padding: 0;
    margin: 0;
    white-space: nowrap;
    }
.evMenu ul {
    display: none;
    padding: 0;
    margin: 0;
    background: #fff;
    border: 1px solid #aaa;
    border-radius: 2px;
    -webkit-box-shadow: 0 1px 5px rgba(0,0,0,.4);
    box-shadow: 0 1px 5px rgba(0,0,0,.4);
    z-index: 1;
    }
.evMenu li {
    position: relative;
    list-style: none;
    padding: 0;
    margin: 0;
    display: block;
    }
.evMenu.horizontal > li {
    float: left;
    display: inline-block;
    }
.evMenu li a {
    display: block;
    padding: 5px 10px;
    }
.evMenu li a {
    border-bottom: 1px solid #eee;
    }
.evMenu.horizontal > li > a {
    border: 0;
    }
.evMenu li:hover > ul,
.evMenu li.open > ul {
    display: block;
    position: absolute;
    left: 98%;
    top: 2px;
    }
.evMenu.horizontal > li:hover > ul,
.evMenu.horizontal > li.open > ul {
    top: 100%;
    left: auto;
    }
.evMenu li:hover > a,
.evMenu li.open > a {
    background-color: #eee;
    }
.evMenu li.active > a {
    background-color: #0A246A;
    }
.evMenu .evMenuMegamenu > ul ul {
    left: auto !important;
    top: auto !important;
    position: relative !important;
    display: inline-block;
    border: 0;
    border-radius: 2px;
    -webkit-box-shadow: none;
    box-shadow: none;
    }
.evMenu .evMenuMegamenu > ul ul a {
    border: 0;
    }
.evMenu .evMenuMegamenu > ul {
    padding: 8px;
    }
.evMenu .evMenuMegamenu > ul > li {
    float: left;
    padding: 10px;
    }
.evMenu .evMenuGrid .evMenuLinkHasThumbnail > a {
    position: relative;
    min-height: 64px;
    padding-left: 80px;
    display: block;
    }
.evMenu .evMenuGrid > ul > li > a > .evMenuLinkThumbnail {
    position: absolute;
    top: 5px;
    left: 5px;
    }
.evMenu .evMenuGrid > ul > li > a > .evMenuLinkTitle {
    display: block;
    }
.evMenu .evMenuGrid > ul > li > a > .evMenuLinkDescription {
    white-space: normal !important;
    display: block;
    }
ul.evMenu a .evCount {
    float: right;
    }

/*
 * evBreadcrumbs
 */
ul.evBreadcrumbs {
    display: block;
    padding: 0;
    margin: 0;
    }
ul.evBreadcrumbs li {
    list-style: none;
    padding: 0;
    margin: 0;
    display: inline-block;
    }
ul.evBreadcrumbs a {
    color: inherit;
    }
.evOutputError {
    margin: 5px;
    display: inline-block;
    border: 1px solid #FA8991;
    background-color: #FCEDEE;
    border-radius: 3px;
    padding: 5px;
    font-size: 11px;
    color: #E12727;
    }
ul.evPriceList,
ul.evPriceList li {
    margin: 0;
    padding: 0;
    list-style: none;
    }
.evSocialLinks {
    display: inline-block;
    }
.evSocialLinks,
.evSocialLinks li {
    list-style: none;
    padding: 0;
    margin: 0;
    }
ul.evProductFilterGroup,
ul.evProductFilterGroup ul {
    padding: 0;
    margin: 0;
    }
ul.evProductFilterGroup {
    margin-bottom: 15px;
    }
ul.evProductFilterGroup ul {
    margin-top: 5px;
    border-top: 1px solid #eee;
    }
ul.evProductFilterGroup li {
    list-style: none;
    padding: 0;
    margin: 0;
    }
ul.evProductFilterGroup a {
    color: inherit;
    display: block;
    padding: 5px 10px;
    position: relative;
    border-bottom: 1px solid #eee;
    text-decoration: none;
    }
ul.evProductFilterGroup a:hover {
    background-color: #eee;
    }
ul.evProductFilterGroup a .evCount,
ul.evProductFilterGroup a .icon {
    float: right;
    }
.evProductFilterGroup a .evSwatch {
    display: inline-block;
    vertical-align: middle;
    width: 32px;
    height: 32px;
    border: 1px solid #d9d9d9;
    border-radius: 50%;
    overflow: hidden;
    }
.evProductFilterGroup a .evSwatch .swatch {
    display: block;
    width: 100%;
    height: 100%;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: contain;
    border: 2px solid #fff;
    border-radius: 50%;
    -webkit-box-shadow: inset 0 0 3px rgba(0,0,0,.6);
    box-shadow: inset 0 0 3px rgba(0,0,0,.6);
    overflow: hidden;
    }
.evProductFilterGroup a .evSwatch + .label {
    display: inline-block;
    padding-left: 5px;
    }
.evProductFilterGroup .range-filter .range-slider {
    margin: 15px 6px;
    }
.evCount {
    display: inline-block;
    background-color: rgba(0,0,0,.1);
    padding: 2px 10px;
    border-radius: 8px;
    font-size: 12px;
    }
.evAlert {
    border: 1px solid #F3EA9E;
    background-color: #FFFBDD;
    color: #000;
    display: block;
    padding: 15px 15px 15px 40px;
    background-image: url(/portal/shared/theme/v1/common/images/icons/info.png);
    background-position: 5px 7px;
    background-repeat: no-repeat;
    }

/*
 * evCart
 */
.evCartLines {
    margin-top: 10px;
    border-top: 1px solid #eee;
    }
.evCartLines td {
    border-bottom: 1px solid #eee;
    }
.evCartLines td.image {
    text-align: center;
    width: 150px;
    }
.evCartLines td.remove {
    text-align: center;
    width: 20px;
    }
.evCartTotals {
    margin-top: 10px;
    }
.evCartTotals .first {
    text-align: left;
    }
.evCartTotals .last {
    text-align: right;
    }
.evCartTotals .active {
    font-weight: bold;
    }

/*
 * Search
 */
.evCmsDocument {
    display: block;
    padding: 15px;
    clear: both;
    }
.evCmsDocument p {
    padding: 0;
    margin: 0;
    }
.evCmsDocument .alias {
    font-size: 90%;
    }
.evCmsDocument .thumbnailImage {
    float: left;
    margin-right: 15px;
    }
.ui-slider {
    position: relative;
    text-align: left;
    }
.ui-slider .ui-slider-handle {
    position: absolute;
    z-index: 2;
    width: 30px;
    height: 30px;
    cursor: default;
    }
.ui-slider .ui-slider-range {
    position: absolute;
    z-index: 1;
    font-size: .7em;
    display: block;
    border: 0;
    background-position: 0 0;
    }
.ui-slider-horizontal {
    height: 12px;
    -webkit-box-shadow: inset 0 1px 3px rgba(0,0,0,.25);
    box-shadow: inset 0 1px 3px rgba(0,0,0,.25);
    background-color: #eee;
    }
.ui-slider-horizontal .ui-slider-handle {
    top: -10px;
    margin-left: -9px;
    }
.ui-slider-horizontal .ui-slider-range {
    top: 0;
    height: 100%;
    }
.ui-slider-horizontal .ui-slider-range-min {
    left: 0;
    }
.ui-slider-horizontal .ui-slider-range-max {
    right: 0;
    }
.ui-slider-vertical {
    width: .8em;
    height: 100px;
    }
.ui-slider-vertical .ui-slider-handle {
    left: -.3em;
    margin-left: 0;
    margin-bottom: -.6em;
    }
.ui-slider-vertical .ui-slider-range {
    left: 0;
    width: 100%;
    }
.ui-slider-vertical .ui-slider-range-min {
    bottom: 0;
    }
.ui-slider-vertical .ui-slider-range-max {
    top: 0;
    }

/*	Colours for Slider */
.ui-slider-handle {
    border-color: #D9D9D9 #D9D9D9 #D9D9D9;
    border-width: 1px;
    border-style: solid;
    border-radius: 15px;
    background-color: #fff;
    }
.ui-slider-handle.ui-state-hover,
.ui-slider-handle.ui-state-active {
    -webkit-box-shadow: 0 1px 2px rgba(0,0,0,.25);
    box-shadow: 0 1px 2px rgba(0,0,0,.25);
    border-color: #C0C2C4 #C0C2C4 #B0B2B5;
    }
.ui-slider-range {
    background-color: #5b9dde;
    }
.ui-slider {
    border-color: #D9D9D9 #D9D9D9 #D9D9D9;
    border-width: 1px;
    border-style: solid;
    border-radius: 2px;
    }
.evAvatar {
    display: inline-block;
    vertical-align: middle;
    text-align: center;
    border-radius: 50%;
    border: 2px solid;
    font-weight: 300;
    }
.evAvatar.x64 {
    width: 64px;
    height: 64px;
    font-size: 24px;
    line-height: 60px;
    }
.evAvatar.x48 {
    width: 48px;
    height: 48px;
    font-size: 20px;
    line-height: 44px;
    }
.evAvatar.x36 {
    width: 36px;
    height: 36px;
    font-size: 16px;
    line-height: 32px;
    font-weight: 400;
    }
.evAvatar.evAvatarImage {
    display: inline-block;
    border: 0;
    }
.evAvatar.evAvatarImage img {
    display: block;
    border-radius: 50%;
    width: 100%;
    height: 100%;
    }

/*
	evMap
	-----
*/
.evMap {
    width: 100%;
    height: 100%;
    }

/*
	evForm
	-----
*/
.evFormWidgetCategories ul {
    list-style: none;
    padding: 0;
    }
.evFormWidgetCategories li {
    padding: 5px 0;
    margin: 0;
    }
.evFormWidgetCategories li > ul {
    display: none;
    padding-top: 5px;
    padding-left: 20px;
    }
.evFormWidgetProduct {
    padding: 5px;
    }
.evFormWidgetProduct > label {
    position: relative;
    display: block;
    margin: 0;
    border-width: 1px;
    border-style: solid;
    border-color: #e5e5e5;
    padding: 20px;
    }
.evFormWidgetProduct .input {
    position: absolute;
    top: 10px;
    right: 10px;
    }
.evFormWidgetProduct .image + .description {
    margin-top: 10px;
    }
.evFormWidgetProduct img {
    max-width: 100%;
    }
.evFormWidgetProduct.active > label {
    border-color: #5b9dde;
    }
.ev-password-strength {
    display: block;
    }
.ev-password-strength--indicator {
    background: #eee;
    width: 100%;
    margin: 1rem 0 .5rem 0;
    }
.ev-password-strength--bar {
    display: block;
    height: 10px;
    background: rgb(253,80,91);
    -webkit-transition: width .25s ease-in,background .25s ease-in;
    transition: width .25s ease-in,background .25s ease-in;
    border-radius: 3px;
    }
.strength-0 .ev-password-strength--bar {
    width: 20%;
    }
.strength-1 .ev-password-strength--bar {
    width: 40%;
    }
.strength-2 .ev-password-strength--bar {
    width: 60%;
    }
.strength-3 .ev-password-strength--bar {
    width: 80%;
    background: rgb(53,161,109);
    }
.strength-4 .ev-password-strength--bar {
    width: 100%;
    background: rgb(53,161,109);
    }
div.datepicker {
    font-family: Arial,Helvetica,sans-serif;
    font-size: 12px;
    position: absolute;
    top: 0;
    left: 0;
    display: none;
    background-color: #fff;
    border-radius: 2px;
    -webkit-box-shadow: 0 1px 5px rgba(0,0,0,.6);
    box-shadow: 0 1px 5px rgba(0,0,0,.6);
    }
.datepickerContainer thead {
    background-color: #38333f;
    }
div.datepicker td td:hover {
    background-color: #eee;
    }
.datepickerContainer .datepickerDoW th {
    padding: 7px;
    font-size: 10px;
    text-transform: uppercase;
    border-top: 1px solid #4a4651;
    }
.datepickerHidden {
    display: none;
    }
div.datepicker table {
    border-collapse: collapse;
    }
div.datepicker a {
    text-decoration: none;
    cursor: pointer;
    outline: none;
    }
div.datepicker table td td {
    text-align: right;
    padding: 0;
    margin: 0;
    border: 1px solid #eee;
    font-size: 14px;
    }
div.datepicker th {
    text-align: center;
    color: #999;
    font-weight: normal;
    }
div.datepicker tbody th {
    text-align: left;
    }
div.datepicker tbody a {
    display: block;
    padding: 5px;
    }
.datepickerDays a {
    line-height: 16px;
    }
.datepickerYears a,
.datepickerMonths a {
    width: 54px;
    line-height: 36px;
    height: 46px;
    text-align: center;
    }
td.datepickerNotInMonth a {
    color: #aaa;
    }
tbody.datepickerDays td.datepickerSelected {
    background: #5b9dde !important;
    color: #fff;
    }
tbody.datepickerDays td.datepickerNotInMonth.datepickerSelected {
    background: #17384d;
    }
tbody.datepickerYears td.datepickerSelected,
tbody.datepickerMonths td.datepickerSelected {
    background: #17384d;
    }
div.datepicker tbody th {
    text-align: left;
    }
.datepickerSpace div {
    width: 0;
    }
.datepickerGoNext a,
.datepickerGoPrev a,
.datepickerMonth a {
    text-align: center;
    line-height: 20px;
    font-size: 16px;
    }
.datepickerMonth a {
    font-weight: 400;
    }
div.datepicker .datepickerGoNext a,
div.datepicker .datepickerGoPrev a {
    font-size: 22px;
    padding: 10px;
    }
.datepickerGoNext a {
    float: right;
    width: 40px;
    }
.datepickerGoPrev a {
    float: left;
    width: 40px;
    }
table.datepickerViewDays tbody.datepickerMonths,
table.datepickerViewDays tbody.datepickerYears {
    display: none;
    }
table.datepickerViewMonths tbody.datepickerDays,
table.datepickerViewMonths tbody.datepickerYears,
table.datepickerViewMonths tr.datepickerDoW {
    display: none;
    }
table.datepickerViewYears tbody.datepickerDays,
table.datepickerViewYears tbody.datepickerMonths,
table.datepickerViewYears tr.datepickerDoW {
    display: none;
    }
td.datepickerDisabled a,
td.datepickerDisabled.datepickerNotInMonth a {
    color: #333;
    }
td.datepickerDisabled a:hover {
    color: #333;
    }
td.datepickerSpecial a {
    background: #700;
    }
td.datepickerSpecial.datepickerSelected a {
    background: #a00;
    }

/**
 * Owl Carousel v2.1.0
 * Copyright 2013-2016 David Deutsch
 * Licensed under MIT (https://github.com/OwlCarousel2/OwlCarousel2/blob/master/LICENSE)
 */
/*
 *  Owl Carousel - Core
 */
.owl-carousel {
    display: none;
    width: 100%;
    -webkit-tap-highlight-color: transparent;
    position: relative;
    z-index: 1;
    }
.owl-carousel .owl-stage {
    position: relative;
    -ms-touch-action: pan-Y;
    }
.owl-carousel .owl-stage:after {
    content: ".";
    display: block;
    clear: both;
    visibility: hidden;
    line-height: 0;
    height: 0;
    }
.owl-carousel .owl-stage-outer {
    position: relative;
    overflow: hidden;
    -webkit-transform: translate3d(0,0,0);
    }
.owl-carousel .owl-item {
    position: relative;
    min-height: 1px;
    float: left;
    -webkit-backface-visibility: hidden;
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
    }
.owl-carousel .owl-item img {
    display: block;
    width: 100%;
    -webkit-transform-style: preserve-3d;
    }
.owl-carousel .owl-nav.disabled,
.owl-carousel .owl-dots.disabled {
    display: none;
    }
.owl-carousel .owl-nav .owl-prev,
.owl-carousel .owl-nav .owl-next,
.owl-carousel .owl-dot {
    cursor: pointer;
    cursor: hand;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    }
.owl-carousel.owl-loaded {
    display: block;
    }
.owl-carousel.owl-loading {
    opacity: 0;
    display: block;
    }
.owl-carousel.owl-hidden {
    opacity: 0;
    }
.owl-carousel.owl-refresh .owl-item {
    display: none;
    }
.owl-carousel.owl-drag .owl-item {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    }
.owl-carousel.owl-grab {
    cursor: move;
    cursor: -webkit-grab;
    cursor: -moz-grab;
    cursor: grab;
    }
.owl-carousel.owl-rtl {
    direction: rtl;
    }
.owl-carousel.owl-rtl .owl-item {
    float: right;
    }

/* No Js */
.no-js .owl-carousel {
    display: block;
    }

/*
 *  Owl Carousel - Animate Plugin
 */
.owl-carousel .animated {
    -webkit-animation-duration: 1000ms;
    animation-duration: 1000ms;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    }
.owl-carousel .owl-animated-in {
    z-index: 0;
    }
.owl-carousel .owl-animated-out {
    z-index: 1;
    }
.owl-carousel .fadeOut {
    -webkit-animation-name: fadeOut;
    animation-name: fadeOut;
    }
@-webkit-keyframes fadeOut {
0% {
    opacity: 1;
    }
100% {
    opacity: 0;
    }
}

@-webkit-keyframes fadeOut {
0% {
    opacity: 1;
    }
100% {
    opacity: 0;
    }
}

@keyframes fadeOut {
0% {
    opacity: 1;
    }
100% {
    opacity: 0;
    }
}

/*
 *     Owl Carousel - Auto Height Plugin
 */
.owl-height {
    -webkit-transition: height 500ms ease-in-out;
    transition: height 500ms ease-in-out;
    }

/*
 * 	Owl Carousel - Lazy Load Plugin
 */
.owl-carousel .owl-item .owl-lazy {
    opacity: 0;
    -webkit-transition: opacity 400ms ease;
    transition: opacity 400ms ease;
    }
.owl-carousel .owl-item img.owl-lazy {
    -webkit-transform-style: preserve-3d;
    -ms-transform-style: preserve-3d;
    transform-style: preserve-3d;
    }

/*
 * 	Owl Carousel - Video Plugin
 */
.owl-carousel .owl-video-wrapper {
    position: relative;
    height: 100%;
    background: #000;
    }
.owl-carousel .owl-video-play-icon {
    position: absolute;
    height: 80px;
    width: 80px;
    left: 50%;
    top: 50%;
    margin-left: -40px;
    margin-top: -40px;
    background: url(/portal/web/387/theme/Stripe/common/plugin/owl.carousel/owl.video.play.png) no-repeat;
    cursor: pointer;
    z-index: 1;
    -webkit-backface-visibility: hidden;
    -webkit-transition: -webkit-transform 100ms ease;
    transition: -webkit-transform 100ms ease;
    -webkit-transition: transform 100ms ease;
    transition: transform 100ms ease;
    }
.owl-carousel .owl-video-play-icon:hover {
    -webkit-transform: scale(1.3,1.3);
    -ms-transform: scale(1.3,1.3);
    transform: scale(1.3,1.3);
    }
.owl-carousel .owl-video-playing .owl-video-tn,
.owl-carousel .owl-video-playing .owl-video-play-icon {
    display: none;
    }
.owl-carousel .owl-video-tn {
    opacity: 0;
    height: 100%;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: contain;
    -webkit-transition: opacity 400ms ease;
    transition: opacity 400ms ease;
    }
.owl-carousel .owl-video-frame {
    position: relative;
    z-index: 1;
    height: 100%;
    width: 100%;
    }

/*************** SCROLLBAR BASE CSS ***************/
.scroll-wrapper {
    overflow: hidden !important;
    padding: 0 !important;
    position: relative;
    }
.scroll-wrapper > .scroll-content {
    border: none !important;
    -webkit-box-sizing: content-box !important;
    -moz-box-sizing: content-box !important;
    box-sizing: content-box !important;
    height: auto;
    left: 0;
    margin: 0;
    max-height: none;
    max-width: none !important;
    overflow: scroll !important;
    padding: 0;
    position: relative !important;
    top: 0;
    width: auto !important;
    }
.scroll-wrapper > .scroll-content::-webkit-scrollbar {
    height: 0;
    width: 0;
    }
.scroll-element {
    display: none;
    }
.scroll-element,
.scroll-element div {
    -webkit-box-sizing: content-box;
    -moz-box-sizing: content-box;
    box-sizing: content-box;
    }
.scroll-element.scroll-x.scroll-scrollx_visible,
.scroll-element.scroll-y.scroll-scrolly_visible {
    display: block;
    }
.scroll-element .scroll-bar,
.scroll-element .scroll-arrow {
    cursor: default;
    }
.scroll-textarea {
    border: 1px solid #ccc;
    border-top-color: #999;
    }
.scroll-textarea > .scroll-content {
    overflow: hidden !important;
    }
.scroll-textarea > .scroll-content > textarea {
    border: none !important;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    height: 100% !important;
    margin: 0;
    max-height: none !important;
    max-width: none !important;
    overflow: scroll !important;
    outline: none;
    padding: 2px;
    position: relative !important;
    top: 0;
    width: 100% !important;
    }
.scroll-textarea > .scroll-content > textarea::-webkit-scrollbar {
    height: 0;
    width: 0;
    }

/*************** SIMPLE INNER SCROLLBAR ***************/
.scrollbar-inner > .scroll-element,
.scrollbar-inner > .scroll-element div {
    border: none;
    margin: 0;
    padding: 0;
    position: absolute;
    z-index: 10;
    }
.scrollbar-inner > .scroll-element div {
    display: block;
    height: 100%;
    left: 0;
    top: 0;
    width: 100%;
    }
.scrollbar-inner > .scroll-element.scroll-x {
    bottom: 2px;
    height: 8px;
    left: 0;
    width: 100%;
    }
.scrollbar-inner > .scroll-element.scroll-y {
    height: 100%;
    right: 2px;
    top: 0;
    width: 8px;
    }
.scrollbar-inner > .scroll-element .scroll-element_outer {
    overflow: hidden;
    }
.scrollbar-inner > .scroll-element .scroll-element_outer,
.scrollbar-inner > .scroll-element .scroll-element_track,
.scrollbar-inner > .scroll-element .scroll-bar {
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    border-radius: 8px;
    }
.scrollbar-inner > .scroll-element .scroll-element_track,
.scrollbar-inner > .scroll-element .scroll-bar {
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=40)";
    -webkit-filter: alpha(opacity=40);
    filter: alpha(opacity=40);
    opacity: .4;
    }
.scrollbar-inner > .scroll-element .scroll-element_track {
    background-color: #e0e0e0;
    }
.scrollbar-inner > .scroll-element .scroll-bar {
    background-color: #c2c2c2;
    }
.scrollbar-inner > .scroll-element:hover .scroll-bar {
    background-color: #919191;
    }
.scrollbar-inner > .scroll-element.scroll-draggable .scroll-bar {
    background-color: #919191;
    }

/* update scrollbar offset if both scrolls are visible */
.scrollbar-inner > .scroll-element.scroll-x.scroll-scrolly_visible .scroll-element_track {
    left: -12px;
    }
.scrollbar-inner > .scroll-element.scroll-y.scroll-scrollx_visible .scroll-element_track {
    top: -12px;
    }
.scrollbar-inner > .scroll-element.scroll-x.scroll-scrolly_visible .scroll-element_size {
    left: -12px;
    }
.scrollbar-inner > .scroll-element.scroll-y.scroll-scrollx_visible .scroll-element_size {
    top: -12px;
    }

/*************** SIMPLE OUTER SCROLLBAR ***************/
.scrollbar-outer > .scroll-element,
.scrollbar-outer > .scroll-element div {
    border: none;
    margin: 0;
    padding: 0;
    position: absolute;
    z-index: 10;
    }
.scrollbar-outer > .scroll-element {
    background-color: #fff;
    }
.scrollbar-outer > .scroll-element div {
    display: block;
    height: 100%;
    left: 0;
    top: 0;
    width: 100%;
    }
.scrollbar-outer > .scroll-element.scroll-x {
    bottom: 0;
    height: 12px;
    left: 0;
    width: 100%;
    }
.scrollbar-outer > .scroll-element.scroll-y {
    height: 100%;
    right: 0;
    top: 0;
    width: 12px;
    }
.scrollbar-outer > .scroll-element.scroll-x .scroll-element_outer {
    height: 8px;
    top: 2px;
    }
.scrollbar-outer > .scroll-element.scroll-y .scroll-element_outer {
    left: 2px;
    width: 8px;
    }
.scrollbar-outer > .scroll-element .scroll-element_outer {
    overflow: hidden;
    }
.scrollbar-outer > .scroll-element .scroll-element_track {
    background-color: #eee;
    }
.scrollbar-outer > .scroll-element .scroll-element_outer,
.scrollbar-outer > .scroll-element .scroll-element_track,
.scrollbar-outer > .scroll-element .scroll-bar {
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    border-radius: 8px;
    }
.scrollbar-outer > .scroll-element .scroll-bar {
    background-color: #d9d9d9;
    }
.scrollbar-outer > .scroll-element .scroll-bar:hover {
    background-color: #c2c2c2;
    }
.scrollbar-outer > .scroll-element.scroll-draggable .scroll-bar {
    background-color: #919191;
    }

/* scrollbar height/width & offset from container borders */
.scrollbar-outer > .scroll-content.scroll-scrolly_visible {
    left: -12px;
    margin-left: 12px;
    }
.scrollbar-outer > .scroll-content.scroll-scrollx_visible {
    top: -12px;
    margin-top: 12px;
    }
.scrollbar-outer > .scroll-element.scroll-x .scroll-bar {
    min-width: 10px;
    }
.scrollbar-outer > .scroll-element.scroll-y .scroll-bar {
    min-height: 10px;
    }

/* update scrollbar offset if both scrolls are visible */
.scrollbar-outer > .scroll-element.scroll-x.scroll-scrolly_visible .scroll-element_track {
    left: -14px;
    }
.scrollbar-outer > .scroll-element.scroll-y.scroll-scrollx_visible .scroll-element_track {
    top: -14px;
    }
.scrollbar-outer > .scroll-element.scroll-x.scroll-scrolly_visible .scroll-element_size {
    left: -14px;
    }
.scrollbar-outer > .scroll-element.scroll-y.scroll-scrollx_visible .scroll-element_size {
    top: -14px;
    }

/*************** SCROLLBAR MAC OS X ***************/
.scrollbar-macosx > .scroll-element,
.scrollbar-macosx > .scroll-element div {
    background: none;
    border: none;
    margin: 0;
    padding: 0;
    position: absolute;
    z-index: 10;
    }
.scrollbar-macosx > .scroll-element div {
    display: block;
    height: 100%;
    left: 0;
    top: 0;
    width: 100%;
    }
.scrollbar-macosx > .scroll-element .scroll-element_track {
    display: none;
    }
.scrollbar-macosx > .scroll-element .scroll-bar {
    background-color: #6C6E71;
    display: block;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    -webkit-filter: alpha(opacity=0);
    filter: alpha(opacity=0);
    opacity: 0;
    -webkit-border-radius: 7px;
    -moz-border-radius: 7px;
    border-radius: 7px;
    -webkit-transition: opacity .2s linear;
    -moz-transition: opacity .2s linear;
    -o-transition: opacity .2s linear;
    -ms-transition: opacity .2s linear;
    transition: opacity .2s linear;
    }
.scrollbar-macosx:hover > .scroll-element .scroll-bar,
.scrollbar-macosx > .scroll-element.scroll-draggable .scroll-bar {
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=70)";
    -webkit-filter: alpha(opacity=70);
    filter: alpha(opacity=70);
    opacity: .7;
    }
.scrollbar-macosx > .scroll-element.scroll-x {
    bottom: 0;
    height: 0;
    left: 0;
    min-width: 100%;
    overflow: visible;
    width: 100%;
    }
.scrollbar-macosx > .scroll-element.scroll-y {
    height: 100%;
    min-height: 100%;
    right: 0;
    top: 0;
    width: 0;
    }

/* scrollbar height/width & offset from container borders */
.scrollbar-macosx > .scroll-element.scroll-x .scroll-bar {
    height: 7px;
    min-width: 10px;
    top: -9px;
    }
.scrollbar-macosx > .scroll-element.scroll-y .scroll-bar {
    left: -9px;
    min-height: 10px;
    width: 7px;
    }
.scrollbar-macosx > .scroll-element.scroll-x .scroll-element_outer {
    left: 2px;
    }
.scrollbar-macosx > .scroll-element.scroll-x .scroll-element_size {
    left: -4px;
    }
.scrollbar-macosx > .scroll-element.scroll-y .scroll-element_outer {
    top: 2px;
    }
.scrollbar-macosx > .scroll-element.scroll-y .scroll-element_size {
    top: -4px;
    }

/* update scrollbar offset if both scrolls are visible */
.scrollbar-macosx > .scroll-element.scroll-x.scroll-scrolly_visible .scroll-element_size {
    left: -11px;
    }
.scrollbar-macosx > .scroll-element.scroll-y.scroll-scrollx_visible .scroll-element_size {
    top: -11px;
    }

/*************** SCROLLBAR LIGHT ***************/
.scrollbar-light > .scroll-element,
.scrollbar-light > .scroll-element div {
    border: none;
    margin: 0;
    overflow: hidden;
    padding: 0;
    position: absolute;
    z-index: 10;
    }
.scrollbar-light > .scroll-element {
    background-color: #fff;
    }
.scrollbar-light > .scroll-element div {
    display: block;
    height: 100%;
    left: 0;
    top: 0;
    width: 100%;
    }
.scrollbar-light > .scroll-element .scroll-element_outer {
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
    }
.scrollbar-light > .scroll-element .scroll-element_size {
    background: #dbdbdb;
    background: url("data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIxMDAlIiB5Mj0iMCUiPgogICAgPHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iI2RiZGJkYiIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiNlOGU4ZTgiIHN0b3Atb3BhY2l0eT0iMSIvPgogIDwvbGluZWFyR3JhZGllbnQ+CiAgPHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEiIGhlaWdodD0iMSIgZmlsbD0idXJsKCNncmFkLXVjZ2ctZ2VuZXJhdGVkKSIgLz4KPC9zdmc+");
    background: -moz-linear-gradient(left,#dbdbdb 0%,#e8e8e8 100%);
    background: -webkit-gradient(linear,left top,right top,color-stop(0%,#dbdbdb),color-stop(100%,#e8e8e8));
    background: -webkit-linear-gradient(left,#dbdbdb 0%,#e8e8e8 100%);
    background: -o-linear-gradient(left,#dbdbdb 0%,#e8e8e8 100%);
    background: -ms-linear-gradient(left,#dbdbdb 0%,#e8e8e8 100%);
    background: -webkit-linear-gradient(to right,#dbdbdb 0%,#e8e8e8 100%);
    background: linear-gradient(to right,#dbdbdb 0%,#e8e8e8 100%);
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
    }
.scrollbar-light > .scroll-element.scroll-x {
    bottom: 0;
    height: 17px;
    left: 0;
    min-width: 100%;
    width: 100%;
    }
.scrollbar-light > .scroll-element.scroll-y {
    height: 100%;
    min-height: 100%;
    right: 0;
    top: 0;
    width: 17px;
    }
.scrollbar-light > .scroll-element .scroll-bar {
    background: #fefefe;
    background: url("data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIxMDAlIiB5Mj0iMCUiPgogICAgPHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iI2ZlZmVmZSIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiNmNWY1ZjUiIHN0b3Atb3BhY2l0eT0iMSIvPgogIDwvbGluZWFyR3JhZGllbnQ+CiAgPHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEiIGhlaWdodD0iMSIgZmlsbD0idXJsKCNncmFkLXVjZ2ctZ2VuZXJhdGVkKSIgLz4KPC9zdmc+");
    background: -moz-linear-gradient(left,#fefefe 0%,#f5f5f5 100%);
    background: -webkit-gradient(linear,left top,right top,color-stop(0%,#fefefe),color-stop(100%,#f5f5f5));
    background: -webkit-linear-gradient(left,#fefefe 0%,#f5f5f5 100%);
    background: -o-linear-gradient(left,#fefefe 0%,#f5f5f5 100%);
    background: -ms-linear-gradient(left,#fefefe 0%,#f5f5f5 100%);
    background: -webkit-linear-gradient(to right,#fefefe 0%,#f5f5f5 100%);
    background: linear-gradient(to right,#fefefe 0%,#f5f5f5 100%);
    border: 1px solid #dbdbdb;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
    }

/* scrollbar height/width & offset from container borders */
.scrollbar-light > .scroll-content.scroll-scrolly_visible {
    left: -17px;
    margin-left: 17px;
    }
.scrollbar-light > .scroll-content.scroll-scrollx_visible {
    top: -17px;
    margin-top: 17px;
    }
.scrollbar-light > .scroll-element.scroll-x .scroll-bar {
    height: 10px;
    min-width: 10px;
    top: 0;
    }
.scrollbar-light > .scroll-element.scroll-y .scroll-bar {
    left: 0;
    min-height: 10px;
    width: 10px;
    }
.scrollbar-light > .scroll-element.scroll-x .scroll-element_outer {
    height: 12px;
    left: 2px;
    top: 2px;
    }
.scrollbar-light > .scroll-element.scroll-x .scroll-element_size {
    left: -4px;
    }
.scrollbar-light > .scroll-element.scroll-y .scroll-element_outer {
    left: 2px;
    top: 2px;
    width: 12px;
    }
.scrollbar-light > .scroll-element.scroll-y .scroll-element_size {
    top: -4px;
    }

/* update scrollbar offset if both scrolls are visible */
.scrollbar-light > .scroll-element.scroll-x.scroll-scrolly_visible .scroll-element_size {
    left: -19px;
    }
.scrollbar-light > .scroll-element.scroll-y.scroll-scrollx_visible .scroll-element_size {
    top: -19px;
    }
.scrollbar-light > .scroll-element.scroll-x.scroll-scrolly_visible .scroll-element_track {
    left: -19px;
    }
.scrollbar-light > .scroll-element.scroll-y.scroll-scrollx_visible .scroll-element_track {
    top: -19px;
    }

/*************** SCROLLBAR RAIL ***************/
.scrollbar-rail > .scroll-element,
.scrollbar-rail > .scroll-element div {
    border: none;
    margin: 0;
    overflow: hidden;
    padding: 0;
    position: absolute;
    z-index: 10;
    }
.scrollbar-rail > .scroll-element {
    background-color: #fff;
    }
.scrollbar-rail > .scroll-element div {
    display: block;
    height: 100%;
    left: 0;
    top: 0;
    width: 100%;
    }
.scrollbar-rail > .scroll-element .scroll-element_size {
    background-color: #999;
    background-color: rgba(0,0,0,.3);
    }
.scrollbar-rail > .scroll-element .scroll-element_outer:hover .scroll-element_size {
    background-color: #666;
    background-color: rgba(0,0,0,.5);
    }
.scrollbar-rail > .scroll-element.scroll-x {
    bottom: 0;
    height: 12px;
    left: 0;
    min-width: 100%;
    padding: 3px 0 2px;
    width: 100%;
    }
.scrollbar-rail > .scroll-element.scroll-y {
    height: 100%;
    min-height: 100%;
    padding: 0 2px 0 3px;
    right: 0;
    top: 0;
    width: 12px;
    }
.scrollbar-rail > .scroll-element .scroll-bar {
    background-color: #d0b9a0;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    border-radius: 2px;
    -webkit-box-shadow: 1px 1px 3px rgba(0,0,0,.5);
    box-shadow: 1px 1px 3px rgba(0,0,0,.5);
    }
.scrollbar-rail > .scroll-element .scroll-element_outer:hover .scroll-bar {
    -webkit-box-shadow: 1px 1px 3px rgba(0,0,0,.6);
    box-shadow: 1px 1px 3px rgba(0,0,0,.6);
    }

/* scrollbar height/width & offset from container borders */
.scrollbar-rail > .scroll-content.scroll-scrolly_visible {
    left: -17px;
    margin-left: 17px;
    }
.scrollbar-rail > .scroll-content.scroll-scrollx_visible {
    margin-top: 17px;
    top: -17px;
    }
.scrollbar-rail > .scroll-element.scroll-x .scroll-bar {
    height: 10px;
    min-width: 10px;
    top: 1px;
    }
.scrollbar-rail > .scroll-element.scroll-y .scroll-bar {
    left: 1px;
    min-height: 10px;
    width: 10px;
    }
.scrollbar-rail > .scroll-element.scroll-x .scroll-element_outer {
    height: 15px;
    left: 5px;
    }
.scrollbar-rail > .scroll-element.scroll-x .scroll-element_size {
    height: 2px;
    left: -10px;
    top: 5px;
    }
.scrollbar-rail > .scroll-element.scroll-y .scroll-element_outer {
    top: 5px;
    width: 15px;
    }
.scrollbar-rail > .scroll-element.scroll-y .scroll-element_size {
    left: 5px;
    top: -10px;
    width: 2px;
    }

/* update scrollbar offset if both scrolls are visible */
.scrollbar-rail > .scroll-element.scroll-x.scroll-scrolly_visible .scroll-element_size {
    left: -25px;
    }
.scrollbar-rail > .scroll-element.scroll-y.scroll-scrollx_visible .scroll-element_size {
    top: -25px;
    }
.scrollbar-rail > .scroll-element.scroll-x.scroll-scrolly_visible .scroll-element_track {
    left: -25px;
    }
.scrollbar-rail > .scroll-element.scroll-y.scroll-scrollx_visible .scroll-element_track {
    top: -25px;
    }

/*************** SCROLLBAR DYNAMIC ***************/
.scrollbar-dynamic > .scroll-element,
.scrollbar-dynamic > .scroll-element div {
    background: none;
    border: none;
    margin: 0;
    padding: 0;
    position: absolute;
    z-index: 10;
    }
.scrollbar-dynamic > .scroll-element div {
    display: block;
    height: 100%;
    left: 0;
    top: 0;
    width: 100%;
    }
.scrollbar-dynamic > .scroll-element.scroll-x {
    bottom: 2px;
    height: 7px;
    left: 0;
    min-width: 100%;
    width: 100%;
    }
.scrollbar-dynamic > .scroll-element.scroll-y {
    height: 100%;
    min-height: 100%;
    right: 2px;
    top: 0;
    width: 7px;
    }
.scrollbar-dynamic > .scroll-element .scroll-element_outer {
    opacity: .3;
    -webkit-border-radius: 12px;
    -moz-border-radius: 12px;
    border-radius: 12px;
    }
.scrollbar-dynamic > .scroll-element .scroll-element_size {
    background-color: #ccc;
    opacity: 0;
    -webkit-border-radius: 12px;
    -moz-border-radius: 12px;
    border-radius: 12px;
    -webkit-transition: opacity .2s;
    -moz-transition: opacity .2s;
    -o-transition: opacity .2s;
    -ms-transition: opacity .2s;
    transition: opacity .2s;
    }
.scrollbar-dynamic > .scroll-element .scroll-bar {
    background-color: #6c6e71;
    -webkit-border-radius: 7px;
    -moz-border-radius: 7px;
    border-radius: 7px;
    }

/* scrollbar height/width & offset from container borders */
.scrollbar-dynamic > .scroll-element.scroll-x .scroll-bar {
    bottom: 0;
    height: 7px;
    min-width: 24px;
    top: auto;
    }
.scrollbar-dynamic > .scroll-element.scroll-y .scroll-bar {
    left: auto;
    min-height: 24px;
    right: 0;
    width: 7px;
    }
.scrollbar-dynamic > .scroll-element.scroll-x .scroll-element_outer {
    bottom: 0;
    top: auto;
    left: 2px;
    -webkit-transition: height .2s;
    -moz-transition: height .2s;
    -o-transition: height .2s;
    -ms-transition: height .2s;
    transition: height .2s;
    }
.scrollbar-dynamic > .scroll-element.scroll-y .scroll-element_outer {
    left: auto;
    right: 0;
    top: 2px;
    -webkit-transition: width .2s;
    -moz-transition: width .2s;
    -o-transition: width .2s;
    -ms-transition: width .2s;
    transition: width .2s;
    }
.scrollbar-dynamic > .scroll-element.scroll-x .scroll-element_size {
    left: -4px;
    }
.scrollbar-dynamic > .scroll-element.scroll-y .scroll-element_size {
    top: -4px;
    }

/* update scrollbar offset if both scrolls are visible */
.scrollbar-dynamic > .scroll-element.scroll-x.scroll-scrolly_visible .scroll-element_size {
    left: -11px;
    }
.scrollbar-dynamic > .scroll-element.scroll-y.scroll-scrollx_visible .scroll-element_size {
    top: -11px;
    }

/* hover & drag */
.scrollbar-dynamic > .scroll-element:hover .scroll-element_outer,
.scrollbar-dynamic > .scroll-element.scroll-draggable .scroll-element_outer {
    overflow: hidden;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=70)";
    -webkit-filter: alpha(opacity=70);
    filter: alpha(opacity=70);
    opacity: .7;
    }
.scrollbar-dynamic > .scroll-element:hover .scroll-element_outer .scroll-element_size,
.scrollbar-dynamic > .scroll-element.scroll-draggable .scroll-element_outer .scroll-element_size {
    opacity: 1;
    }
.scrollbar-dynamic > .scroll-element:hover .scroll-element_outer .scroll-bar,
.scrollbar-dynamic > .scroll-element.scroll-draggable .scroll-element_outer .scroll-bar {
    height: 100%;
    width: 100%;
    -webkit-border-radius: 12px;
    -moz-border-radius: 12px;
    border-radius: 12px;
    }
.scrollbar-dynamic > .scroll-element.scroll-x:hover .scroll-element_outer,
.scrollbar-dynamic > .scroll-element.scroll-x.scroll-draggable .scroll-element_outer {
    height: 20px;
    min-height: 7px;
    }
.scrollbar-dynamic > .scroll-element.scroll-y:hover .scroll-element_outer,
.scrollbar-dynamic > .scroll-element.scroll-y.scroll-draggable .scroll-element_outer {
    min-width: 7px;
    width: 20px;
    }

/*************** SCROLLBAR GOOGLE CHROME ***************/
.scrollbar-chrome > .scroll-element,
.scrollbar-chrome > .scroll-element div {
    border: none;
    margin: 0;
    overflow: hidden;
    padding: 0;
    position: absolute;
    z-index: 10;
    }
.scrollbar-chrome > .scroll-element {
    background-color: #fff;
    }
.scrollbar-chrome > .scroll-element div {
    display: block;
    height: 100%;
    left: 0;
    top: 0;
    width: 100%;
    }
.scrollbar-chrome > .scroll-element .scroll-element_track {
    background: #f1f1f1;
    border: 1px solid #dbdbdb;
    }
.scrollbar-chrome > .scroll-element.scroll-x {
    bottom: 0;
    height: 16px;
    left: 0;
    min-width: 100%;
    width: 100%;
    }
.scrollbar-chrome > .scroll-element.scroll-y {
    height: 100%;
    min-height: 100%;
    right: 0;
    top: 0;
    width: 16px;
    }
.scrollbar-chrome > .scroll-element .scroll-bar {
    background-color: #d9d9d9;
    border: 1px solid #bdbdbd;
    cursor: default;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    border-radius: 2px;
    }
.scrollbar-chrome > .scroll-element .scroll-bar:hover {
    background-color: #c2c2c2;
    border-color: #a9a9a9;
    }
.scrollbar-chrome > .scroll-element.scroll-draggable .scroll-bar {
    background-color: #919191;
    border-color: #7e7e7e;
    }

/* scrollbar height/width & offset from container borders */
.scrollbar-chrome > .scroll-content.scroll-scrolly_visible {
    left: -16px;
    margin-left: 16px;
    }
.scrollbar-chrome > .scroll-content.scroll-scrollx_visible {
    top: -16px;
    margin-top: 16px;
    }
.scrollbar-chrome > .scroll-element.scroll-x .scroll-bar {
    height: 8px;
    min-width: 10px;
    top: 3px;
    }
.scrollbar-chrome > .scroll-element.scroll-y .scroll-bar {
    left: 3px;
    min-height: 10px;
    width: 8px;
    }
.scrollbar-chrome > .scroll-element.scroll-x .scroll-element_outer {
    border-left: 1px solid #dbdbdb;
    }
.scrollbar-chrome > .scroll-element.scroll-x .scroll-element_track {
    height: 14px;
    left: -3px;
    }
.scrollbar-chrome > .scroll-element.scroll-x .scroll-element_size {
    height: 14px;
    left: -4px;
    }
.scrollbar-chrome > .scroll-element.scroll-y .scroll-element_outer {
    border-top: 1px solid #dbdbdb;
    }
.scrollbar-chrome > .scroll-element.scroll-y .scroll-element_track {
    top: -3px;
    width: 14px;
    }
.scrollbar-chrome > .scroll-element.scroll-y .scroll-element_size {
    top: -4px;
    width: 14px;
    }

/* update scrollbar offset if both scrolls are visible */
.scrollbar-chrome > .scroll-element.scroll-x.scroll-scrolly_visible .scroll-element_size {
    left: -19px;
    }
.scrollbar-chrome > .scroll-element.scroll-y.scroll-scrollx_visible .scroll-element_size {
    top: -19px;
    }
.scrollbar-chrome > .scroll-element.scroll-x.scroll-scrolly_visible .scroll-element_track {
    left: -19px;
    }
.scrollbar-chrome > .scroll-element.scroll-y.scroll-scrollx_visible .scroll-element_track {
    top: -19px;
    }

@charset "UTF-8";
/* http://kenwheeler.github.io/slick/ */
/* Some settings in this file are overwritten in slideshow.css */
/* Slider */
.slick-loading .slick-list {
    background: #fff :slick-image-url("/portal/web/387/theme/Stripe/common/plugin/slickjs/ajax-loader.gif") center center no-repeat;
    }

/* Icons */
@font-face {
    font-family: /*style.slick-font-family(*/"slick"/*)*/;
    src: :url(/portal/web/387/theme/Stripe/common/plugin/slickjs/font/slick.eot?v=1484826383);
    src: url(/portal/web/387/theme/Stripe/common/plugin/slickjs/font/slick.eot?v=1484826383#iefix) format("embedded-opentype"),url(/portal/web/387/theme/Stripe/common/plugin/slickjs/font/slick.woff?v=1484826383) format("woff"),url(/portal/web/387/theme/Stripe/common/plugin/slickjs/font/slick.ttf?v=1484826383) format("truetype"),url(/portal/web/387/theme/Stripe/common/plugin/slickjs/font/slick.svg?v=1484826383#slick) format("svg");
    font-weight: normal;
    font-style: normal;
    }

/* Arrows */
.slick-prev,
.slick-next {
    position: absolute;
    display: block;
    height: 20px;
    width: 20px;
    line-height: 0;
    font-size: 0;
    cursor: pointer;
    background: transparent;
    color: transparent;
    top: 50%;
    top: 100px;
    margin-top: -10px\9;
    -webkit-transform: translate(0,-50%);
    -ms-transform: translate(0,-50%);
    transform: translate(0,-50%);
    padding: 0;
    border: none;
    outline: none;
    z-index: 99999;
    }
.slick-prev:hover,
.slick-prev:focus,
.slick-next:hover,
.slick-next:focus {
    outline: none;
    background: transparent;
    color: transparent;
    }
.slick-prev:hover:before,
.slick-prev:focus:before,
.slick-next:hover:before,
.slick-next:focus:before {
    opacity: /*style.slick-opacity-on-hover(*/1/*)*/;
    }
.slick-prev.slick-disabled:before,
.slick-next.slick-disabled:before {
    opacity: /*style.slick-opacity-not-active(*/1/*)*/;
    }
.slick-prev:before,
.slick-next:before {
    font-family: /*style.slick-font-family(*/"slick"/*)*/;
    font-size: 20px;
    line-height: 1;
    color: /*style.slick-arrow-color(*/#454545/*)*/;
    opacity: /*style.slick-opacity-default(*/1/*)*/;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    }
.slick-prev {
    left: -25px;
    }
[dir="rtl"] .slick-prev {
    left: auto;
    right: -25px;
    }
.slick-prev:before {
    content: /*style.slick-prev-character(*/"←"/*)*/;
    }
[dir="rtl"] .slick-prev:before {
    content: /*style.slick-next-character(*/"→"/*)*/;
    }
.slick-next {
    right: -25px;
    }
[dir="rtl"] .slick-next {
    left: -25px;
    right: auto;
    }
.slick-next:before {
    content: /*style.slick-next-character(*/"→"/*)*/;
    }
[dir="rtl"] .slick-next:before {
    content: /*style.slick-prev-character(*/"←"/*)*/;
    }

/* Dots */
.slick-slider {
    margin: 0;
    }
.slick-track {
    position: relative;
    }
.slick-dots {
    position: absolute;
    bottom: -45px;
    list-style: none;
    display: block;
    text-align: center;
    padding: 0;
    width: 100%;
    }
.slick-dots li {
    position: relative;
    display: inline-block;
    height: 20px;
    width: 20px;
    margin: 0 5px;
    padding: 0;
    cursor: pointer;
    }
.slick-dots li button {
    border: 0;
    background: transparent;
    display: block;
    height: 20px;
    width: 20px;
    outline: none;
    line-height: 0;
    font-size: 0;
    color: transparent;
    padding: 5px;
    cursor: pointer;
    }
.slick-dots li button:hover,
.slick-dots li button:focus {
    outline: none;
    }
.slick-dots li button:hover:before,
.slick-dots li button:focus:before {
    opacity: /*style.slick-opacity-on-hover(*/1/*)*/;
    }
.slick-dots li button:before {
    position: absolute;
    top: 0;
    left: 0;
    content: /*style.slick-dot-character(*/"•"/*)*/;
    width: 20px;
    height: 20px;
    font-family: /*style.slick-font-family(*/"slick"/*)*/;
    font-size: /*style.slick-dot-size(*/6px/*)*/;
    line-height: 20px;
    text-align: center;
    color: /*style.slick-dot-color(*/black/*)*/;
    opacity: /*style.slick-opacity-not-active(*/1/*)*/;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    }
.slick-dots li.slick-active button:before {
    color: /*style.slick-dot-color-active(*/#555/*)*/;
    opacity: /*style.slick-opacity-default(*/1/*)*/;
    }

/*
		input-placeholder
		-----------------
		@fragment input-placeholder(#(0), #(1), #(2));
		#(0) is the colour for the placeholder text; e.g. #ff0000
        #(1) is the font style for the placeholder text; e.g. italic
		#(2) is the element selector; e.g. input.numeric
	*/
/*
		header-styles
		-----------------
		@fragment h1-h6-style
        used if heading styles not possible directly
	*/
/*
    	socialIcon
		----------
		@fragment socialIcon(#(0), #(1));
		#(0) is the icon font string; e.g. "\e600"
		#(1) is the colour for the icon; e.g. #ff0000
	*/
body,
input,
textarea {
    font-family: /*style.text_font_family(*/"Arial"/*)*/;
    font-size: /*style.text_font_size(*/14px/*)*/;
    font-weight: /*style.text_font_weight(*/400/*)*/;
    font-style: /*style.text_font_style(*/normal/*)*/;
    line-height: /*style.text_line_height(*/1.5/*)*/;
    color: /*style.text_color(*/#454545/*)*/;
    }
html,
body {
    font-family: /*style.text_font_family(*/"Arial"/*)*/;
    font-size: /*style.text_font_size(*/14px/*)*/;
    font-weight: /*style.text_font_weight(*/400/*)*/;
    font-style: /*style.text_font_style(*/normal/*)*/;
    line-height: /*style.text_line_height(*/1.5/*)*/;
    }
body {
    background: /*style.footer_background_color(*/#19388a/*)*/;
    }
body.blankLayout {
    background: /*style.body_background_color(*/#fff/*)*/;
    }
body.evDialogOpen {
    overflow: hidden;
    }

/* Our media queries for javascript funkiness */
body:after {
    display: none;
    }
@media screen and (max-width: /*style._second_content_break_max(*/448px/*)*/) {
body:after {
    content: 'final-content-breakpoint';
    }
}

@media screen and (min-width: /*style._second_content_break_min(*/449px/*)*/) {
body:after {
    content: 'second-content-breakpoint';
    }
}

@media screen and (min-width: /*style._first_content_break_min(*/1001px/*)*/) {
body:after {
    content: 'first-content-breakpoint';
    }
}

@media screen and (min-width: /*style._content_width_with_gaps(*/1440px/*)*/) {
body:after {
    content: 'full-width';
    }
}

.fixed-nav body {
    overflow: hidden;
    }
*,
*:before,
*:after {
    zoom: 1;
    -moz-box-sizing: border-box;
    -ms-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    *behavior: url(/portal/shared/js/boxsizing.htc);
    }
img {
    vertical-align: middle;
    max-width: 100%;
    }
sup,
sub {
    vertical-align: baseline;
    position: relative;
    top: -.4em;
    }
sub {
    top: .4em;
    }
input[type='number'] {
    -moz-appearance: textfield;
    }
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    }
span.todo {
    font-size: 30px;
    font-weight: bold;
    }

/*
	Headings & Paragraphs
	---------------------
	Please do not set paragraphs to have a margin and padding of zero
	as this makes life more difficult when dealing with CMS content. 
	Some areas of the template will require a padding of zero, you
	should set these separately.
    
    This is duplicated in definitions for @fragment h1-style till h6-style
*/
h1,
h2,
h3,
h4,
h5,
h6,
.title {
    font-family: /*style.heading_font_family(*/"Arial"/*)*/;
    font-weight: /*style.heading_font_weight(*/400/*)*/;
    font-style: /*style.heading_font_style(*/normal/*)*/;
    line-height: /*style.heading_line_height(*/1.143/*)*/;
    text-transform: /*style.heading_text_transformation(*/uppercase/*)*/;
    color: /*style.heading_color(*/#454545/*)*/;
    }
h1:only-child,
h2:only-child,
h3:only-child,
h4:only-child,
h5:only-child,
h6:only-child,
.title:only-child,
h1.last,
h1:last-child,
h2.last,
h2:last-child,
h3.last,
h3:last-child,
h4.last,
h4:last-child,
h5.last,
h5:last-child,
h6.last,
h6:last-child,
.title.last,
.title:last-child {
    margin-bottom: 0;
    }
h1,
.h1-Style,
.h1-style {
    font-size: /*style.h1_font_size(*/30px/*)*/;
    }
h2,
.h2-Style,
.h2-style {
    font-size: /*style.h2_font_size(*/27px/*)*/;
    }
h3,
.h3-Style,
.h3-style {
    font-size: /*style.h3_font_size(*/24px/*)*/;
    }
h4,
.h4-Style,
.h4-style {
    font-size: /*style.h4_font_size(*/20px/*)*/;
    }
h5,
.h5-Style,
.h5-style {
    font-size: /*style.h5_font_size(*/16px/*)*/;
    }
h6,
.h6-Style,
.h6-style {
    font-size: /*style.h6_font_size(*/14px/*)*/;
    }
.title {
    font-size: /*style.h5_font_size(*/16px/*)*/;
    display: block;
    }
.subtitle {
    font-size: 18px;
    display: block;
    }
.subtitle ~ a {
    margin-top: /*style._content_two_third_gap(*/20px/*)*/;
    }
h1,
h2,
h3,
.h1-style,
.h1-Style,
h4.h1-style,
h4.h1-Style,
h5.h1-style,
h5.h1-Style,
h6.h1-style,
h6.h1-Style,
.h2-style,
.h2-Style,
h4.h2-style,
h4.h2-Style,
h5.h2-style,
h5.h2-Style,
h6.h2-style,
h6.h2-Style,
.h3-style,
.h3-Style,
h4.h3-style,
h4.h3-Style,
h5.h3-style,
h5.h3-Style,
h6.h3-style,
h6.h3-Style {
    font-weight: /*style.light_heading_font_weight(*/400/*)*/;
    }
h4,
h5,
h6,
.h4-style,
.h4-Style,
.h5-style,
.h5-Style,
.h6-style,
.h6-Style {
    font-weight: /*style.heading_font_weight(*/400/*)*/;
    }
p {
    font-size: /*style.text_font_size(*/14px/*)*/;
    line-height: /*style.text_line_height(*/1.5/*)*/;
    margin-bottom: /*style._content_two_third_gap(*/20px/*)*/;
    }
p:only-child,
p.last,
p:last-child {
    margin-bottom: 0;
    }
#reviewForm p {
    margin-bottom: /*style._content_two_third_gap(*/20px/*)*/;
    }
p ~ ul,
p ~ ol {
    margin-top: -10px;
    margin-bottom: /*style._content_two_third_gap(*/20px/*)*/;
    }
p.large {
    font-size: 18px;
    }
p.error,
span[class="error"] {
    color: /*style._error_text_color(*/#ef4242/*)*/;
    font-weight: bold;
    }
strong {
    font-size: 1em;
    font-weight: bold;
    }
label {
    margin: 5px 1px;
    font-size: /*style.text_font_size(*/14px/*)*/;
    line-height: /*style.text_line_height(*/1.5/*)*/;
    }
span.label,
span.iconLabel {
    vertical-align: middle;
    }
.emphasise {
    color: inherit;
    }

/*
	Links:
	------
	The style and colouring of links is specific to each site.
	The styles below are purely for shared styles.
*/
a:link,
a:visited {
    color: #19388A;
    outline: 0;
    }
a:link.tag,
a:visited.tag {
    color: /*style.heading_color(*/#454545/*)*/;
    display: inline-block;
    padding: 5px 10px;
    border-radius: 3px;
    margin-left: 8px;
    background: /*style.border_color(*/#fafafa/*)*/;
    }
a:link.tag:hover,
a:visited.tag:hover {
    text-decoration: none;
    color: /*style.primary(*/#19388A/*)*/;
    }
a:link.textAnchor,
a:visited.textAnchor {
    color: #454545;
    text-align: center;
    }
a:link.textAnchor .icon,
a:visited.textAnchor .icon {
    font-size: 22px;
    }
a:link.textAnchor .icon + .label,
a:visited.textAnchor .icon + .label {
    padding-left: 5px;
    }
a:link.textAnchor .label,
a:visited.textAnchor .label {
    font-size: 14px;
    }
a:link.textAnchor:hover,
a:visited.textAnchor:hover {
    text-decoration: none;
    }
a:link.textAnchor:hover .label,
a:visited.textAnchor:hover .label {
    text-decoration: underline;
    }
a:link.wishlist,
a:visited.wishlist {
    display: block;
    }
a:link.wishlist .label,
a:visited.wishlist .label {
    font-weight: /*style.strong_text_font_weight(*/700/*)*/;
    }
a:link.boldAfter:after,
a:visited.boldAfter:after {
    display: block;
    content: attr(title);
    font-weight: bold;
    height: 1px;
    color: transparent;
    overflow: hidden;
    visibility: hidden;
    margin-bottom: -1px;
    }
a:hover,
a.hover,
a:focus,
a.focus {
    color: #19388A;
    text-decoration: underline;
    outline: 0;
    }
a:hover.tag,
a.hover.tag,
a:focus.tag,
a.focus.tag {
    color: inherit;
    }

/*
	Padding and Margins
	-------------------
	These are the standard Evance settings,
	but these can be overwritten in themes
*/
.nopad {
    padding-top: 0;
    padding-right: 0;
    padding-bottom: 0;
    padding-left: 0;
    }
.halfpad {
    padding-top: 15px;
    padding-right: 15px;
    padding-bottom: 15px;
    padding-left: 15px;
    }
.stdpad {
    padding-top: 30px;
    padding-right: 30px;
    padding-bottom: 30px;
    padding-left: 30px;
    }
.doublepad {
    padding-top: 60px;
    padding-right: 60px;
    padding-bottom: 60px;
    padding-left: 60px;
    }
.nopadh {
    padding-left: 0;
    padding-right: 0;
    }
.nopadt {
    padding-top: 0;
    }
.nopadb {
    padding-bottom: 0;
    }
.nopadl {
    padding-left: 0;
    }
.nopadr {
    padding-right: 0;
    }
.nopadv {
    padding-top: 0;
    padding-bottom: 0;
    }
.halfpadh {
    padding-left: 15px;
    padding-right: 15px;
    }
.halfpadt {
    padding-top: 15px;
    }
.halfpadb {
    padding-bottom: 15px;
    }
.halfpadl {
    padding-left: 15px;
    }
.halfpadr {
    padding-right: 15px;
    }
.halfpadv {
    padding-top: 15px;
    padding-bottom: 15px;
    }
.stdpadh {
    padding-left: 30px;
    padding-right: 30px;
    }
.stdpadt {
    padding-top: 30px;
    }
.stdpadb {
    padding-bottom: 30px;
    }
.stdpadl {
    padding-left: 30px;
    }
.stdpadr {
    padding-right: 30px;
    }
.stdpadv,
.contentSection,
.headerContainer,
.contentBlock,
.asideSection,
.asideItem {
    padding-top: 30px;
    padding-bottom: 30px;
    }
.doublepadh {
    padding-left: 60px;
    padding-right: 60px;
    }
.doublepadt {
    padding-top: 60px;
    }
.doublepadb {
    padding-bottom: 60px;
    }
.doublepadl {
    padding-left: 60px;
    }
.doublepadr {
    padding-right: 60px;
    }
.doublepadv {
    padding-top: 60px;
    padding-bottom: 60px;
    }
.nomar {
    margin-top: 0;
    margin-right: 0;
    margin-bottom: 0;
    margin-left: 0;
    }
.halfmar {
    margin-top: 15px;
    margin-right: 15px;
    margin-bottom: 15px;
    margin-left: 15px;
    }
.stdmar {
    margin-top: 30px;
    margin-right: 30px;
    margin-bottom: 30px;
    margin-left: 30px;
    }
.doublemar {
    margin-top: 60px;
    margin-right: 60px;
    margin-bottom: 60px;
    margin-left: 60px;
    }
.nomarh {
    margin-left: 0;
    margin-right: 0;
    }
.nomart {
    margin-top: 0;
    }
.nomarb {
    margin-bottom: 0;
    }
.nomarl {
    margin-left: 0;
    }
.nomarr {
    margin-right: 0;
    }
.nomarv {
    margin-top: 0;
    margin-bottom: 0;
    }
.halfmarh {
    margin-left: 15px;
    margin-right: 15px;
    }
.halfmart {
    margin-top: 15px;
    }
.halfmarb {
    margin-bottom: 15px;
    }
.halfmarl {
    margin-left: 15px;
    }
.halfmarr {
    margin-right: 15px;
    }
.halfmarv {
    margin-top: 15px;
    margin-bottom: 15px;
    }
.stdmarh {
    margin-left: 30px;
    margin-right: 30px;
    }
.stdmart {
    margin-top: 30px;
    }
.stdmarb {
    margin-bottom: 30px;
    }
.stdmarl {
    margin-left: 30px;
    }
.stdmarr {
    margin-right: 30px;
    }
.stdmarv {
    margin-top: 30px;
    margin-bottom: 30px;
    }
.doublemarh {
    margin-left: 60px;
    margin-right: 60px;
    }
.doublemart {
    margin-top: 60px;
    }
.doublemarb {
    margin-bottom: 60px;
    }
.doublemarl {
    margin-left: 60px;
    }
.doublemarr {
    margin-right: 60px;
    }
.doublemarv {
    margin-top: 60px;
    margin-bottom: 60px;
    }

/*
    Rows and Columns
	----------------
	The only two columns that should need changing are the
	thirds as these are represented by pixel values rather
	than percentages.
	Generally you use these on container elements and pad
	an inner element. Although this adds more elements it is
	much easier to standardise.
*/
.column1of1,
.grid1of1 {
    width: 100%;
    }
.column1of3,
.grid1of3 {
    width: 33.33333%;
    }
.column2of3,
.grid2of3 {
    width: 66.66666%;
    }
.grid1of5,
.grid2of5,
.grid3of5,
.grid4of5 {
    float: left;
    }
.grid1of5 {
    width: 20%;
    }
.grid2of5 {
    width: 40%;
    }
.grid3of5 {
    width: 60%;
    }
.grid4of5 {
    width: 80%;
    }
@media (max-width:/*style._first_content_break_min(*/1001px/*)*/) {
.grid1of3,
.grid2of3,
.grid1of4,
.grid2of4,
.grid3of4,
.grid1of5,
.grid2of5,
.grid3of5,
.grid4of5,
.grid1of1:nth-child(even) {
    width: 50%;
    }

/*.gridContainer > [class^="grid"]:nth-child(odd):last-child{ width:100%; }*/
}

@media (max-width:/*style._second_special_content_break_min(*/701px/*)*/) {
.grid1of2,
.grid1of3,
.grid2of3,
.grid1of4,
.grid2of4,
.grid3of4,
.grid1of5,
.grid2of5,
.grid3of5,
.grid4of5,
.grid1of1:nth-child(even) {
    width: 100%;
    }
}

.gridContainer,
#reviewForm .gridContainer,
.gridRow,
#reviewForm .gridRow {
    margin: 0 -10px;
    }
.gridContainer.flex,
#reviewForm .gridContainer.flex,
.gridRow.flex,
#reviewForm .gridRow.flex {
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-flow: row wrap;
    -ms-flex-flow: row wrap;
    flex-flow: row wrap;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    }
.gridContainer.flex.flexstart,
#reviewForm .gridContainer.flex.flexstart,
.gridRow.flex.flexstart,
#reviewForm .gridRow.flex.flexstart {
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
    }
.gridContainer .grid1of1,
.gridContainer .grid1of2,
.gridContainer .grid1of3,
.gridContainer .grid2of3,
.gridContainer .grid1of4,
.gridContainer .grid3of4,
.gridContainer .grid1of5,
.gridContainer .grid2of5,
.gridContainer .grid3of5,
.gridContainer .grid4of5,
#reviewForm .gridContainer .grid1of1,
#reviewForm .gridContainer .grid1of2,
#reviewForm .gridContainer .grid1of3,
#reviewForm .gridContainer .grid2of3,
#reviewForm .gridContainer .grid1of4,
#reviewForm .gridContainer .grid3of4,
#reviewForm .gridContainer .grid1of5,
#reviewForm .gridContainer .grid2of5,
#reviewForm .gridContainer .grid3of5,
#reviewForm .gridContainer .grid4of5,
.gridRow .grid1of1,
.gridRow .grid1of2,
.gridRow .grid1of3,
.gridRow .grid2of3,
.gridRow .grid1of4,
.gridRow .grid3of4,
.gridRow .grid1of5,
.gridRow .grid2of5,
.gridRow .grid3of5,
.gridRow .grid4of5,
#reviewForm .gridRow .grid1of1,
#reviewForm .gridRow .grid1of2,
#reviewForm .gridRow .grid1of3,
#reviewForm .gridRow .grid2of3,
#reviewForm .gridRow .grid1of4,
#reviewForm .gridRow .grid3of4,
#reviewForm .gridRow .grid1of5,
#reviewForm .gridRow .grid2of5,
#reviewForm .gridRow .grid3of5,
#reviewForm .gridRow .grid4of5 {
    display: block;
    float: left;
    zoom: 1;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    }
.gridContainer .grid1of1:not(.gridContainer),
.gridContainer .grid1of2:not(.gridContainer),
.gridContainer .grid1of3:not(.gridContainer),
.gridContainer .grid2of3:not(.gridContainer),
.gridContainer .grid1of4:not(.gridContainer),
.gridContainer .grid3of4:not(.gridContainer),
.gridContainer .grid1of5:not(.gridContainer),
.gridContainer .grid2of5:not(.gridContainer),
.gridContainer .grid3of5:not(.gridContainer),
.gridContainer .grid4of5:not(.gridContainer),
#reviewForm .gridContainer .grid1of1:not(.gridContainer),
#reviewForm .gridContainer .grid1of2:not(.gridContainer),
#reviewForm .gridContainer .grid1of3:not(.gridContainer),
#reviewForm .gridContainer .grid2of3:not(.gridContainer),
#reviewForm .gridContainer .grid1of4:not(.gridContainer),
#reviewForm .gridContainer .grid3of4:not(.gridContainer),
#reviewForm .gridContainer .grid1of5:not(.gridContainer),
#reviewForm .gridContainer .grid2of5:not(.gridContainer),
#reviewForm .gridContainer .grid3of5:not(.gridContainer),
#reviewForm .gridContainer .grid4of5:not(.gridContainer),
.gridRow .grid1of1:not(.gridContainer),
.gridRow .grid1of2:not(.gridContainer),
.gridRow .grid1of3:not(.gridContainer),
.gridRow .grid2of3:not(.gridContainer),
.gridRow .grid1of4:not(.gridContainer),
.gridRow .grid3of4:not(.gridContainer),
.gridRow .grid1of5:not(.gridContainer),
.gridRow .grid2of5:not(.gridContainer),
.gridRow .grid3of5:not(.gridContainer),
.gridRow .grid4of5:not(.gridContainer),
#reviewForm .gridRow .grid1of1:not(.gridContainer),
#reviewForm .gridRow .grid1of2:not(.gridContainer),
#reviewForm .gridRow .grid1of3:not(.gridContainer),
#reviewForm .gridRow .grid2of3:not(.gridContainer),
#reviewForm .gridRow .grid1of4:not(.gridContainer),
#reviewForm .gridRow .grid3of4:not(.gridContainer),
#reviewForm .gridRow .grid1of5:not(.gridContainer),
#reviewForm .gridRow .grid2of5:not(.gridContainer),
#reviewForm .gridRow .grid3of5:not(.gridContainer),
#reviewForm .gridRow .grid4of5:not(.gridContainer) {
    padding: /*style._content_third_gap(*/10px/*)*/;
    }
.gridContainer .grid1of1:not(.gridContainer).gridBlock:not(.fieldArea),
.gridContainer .grid1of2:not(.gridContainer).gridBlock:not(.fieldArea),
.gridContainer .grid1of3:not(.gridContainer).gridBlock:not(.fieldArea),
.gridContainer .grid2of3:not(.gridContainer).gridBlock:not(.fieldArea),
.gridContainer .grid1of4:not(.gridContainer).gridBlock:not(.fieldArea),
.gridContainer .grid3of4:not(.gridContainer).gridBlock:not(.fieldArea),
.gridContainer .grid1of5:not(.gridContainer).gridBlock:not(.fieldArea),
.gridContainer .grid2of5:not(.gridContainer).gridBlock:not(.fieldArea),
.gridContainer .grid3of5:not(.gridContainer).gridBlock:not(.fieldArea),
.gridContainer .grid4of5:not(.gridContainer).gridBlock:not(.fieldArea),
#reviewForm .gridContainer .grid1of1:not(.gridContainer).gridBlock:not(.fieldArea),
#reviewForm .gridContainer .grid1of2:not(.gridContainer).gridBlock:not(.fieldArea),
#reviewForm .gridContainer .grid1of3:not(.gridContainer).gridBlock:not(.fieldArea),
#reviewForm .gridContainer .grid2of3:not(.gridContainer).gridBlock:not(.fieldArea),
#reviewForm .gridContainer .grid1of4:not(.gridContainer).gridBlock:not(.fieldArea),
#reviewForm .gridContainer .grid3of4:not(.gridContainer).gridBlock:not(.fieldArea),
#reviewForm .gridContainer .grid1of5:not(.gridContainer).gridBlock:not(.fieldArea),
#reviewForm .gridContainer .grid2of5:not(.gridContainer).gridBlock:not(.fieldArea),
#reviewForm .gridContainer .grid3of5:not(.gridContainer).gridBlock:not(.fieldArea),
#reviewForm .gridContainer .grid4of5:not(.gridContainer).gridBlock:not(.fieldArea),
.gridRow .grid1of1:not(.gridContainer).gridBlock:not(.fieldArea),
.gridRow .grid1of2:not(.gridContainer).gridBlock:not(.fieldArea),
.gridRow .grid1of3:not(.gridContainer).gridBlock:not(.fieldArea),
.gridRow .grid2of3:not(.gridContainer).gridBlock:not(.fieldArea),
.gridRow .grid1of4:not(.gridContainer).gridBlock:not(.fieldArea),
.gridRow .grid3of4:not(.gridContainer).gridBlock:not(.fieldArea),
.gridRow .grid1of5:not(.gridContainer).gridBlock:not(.fieldArea),
.gridRow .grid2of5:not(.gridContainer).gridBlock:not(.fieldArea),
.gridRow .grid3of5:not(.gridContainer).gridBlock:not(.fieldArea),
.gridRow .grid4of5:not(.gridContainer).gridBlock:not(.fieldArea),
#reviewForm .gridRow .grid1of1:not(.gridContainer).gridBlock:not(.fieldArea),
#reviewForm .gridRow .grid1of2:not(.gridContainer).gridBlock:not(.fieldArea),
#reviewForm .gridRow .grid1of3:not(.gridContainer).gridBlock:not(.fieldArea),
#reviewForm .gridRow .grid2of3:not(.gridContainer).gridBlock:not(.fieldArea),
#reviewForm .gridRow .grid1of4:not(.gridContainer).gridBlock:not(.fieldArea),
#reviewForm .gridRow .grid3of4:not(.gridContainer).gridBlock:not(.fieldArea),
#reviewForm .gridRow .grid1of5:not(.gridContainer).gridBlock:not(.fieldArea),
#reviewForm .gridRow .grid2of5:not(.gridContainer).gridBlock:not(.fieldArea),
#reviewForm .gridRow .grid3of5:not(.gridContainer).gridBlock:not(.fieldArea),
#reviewForm .gridRow .grid4of5:not(.gridContainer).gridBlock:not(.fieldArea) {
    padding: /*style._content_gap(*/30px/*)*/ /*style._content_third_gap(*/10px/*)*/;
    }
.evEditable .gridContainer.flex,
.evEditable .gridRow.flex {
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
    }

/*
    Table
    -----
*/
table td,
table th {
    text-align: left;
    border-bottom: 2px solid /*style.body_background_color(*/#fff/*)*/;
    }
table td,
table td[class*="halfpad"],
table td[class*="stdpad"],
table td[class*="doublepad"],
table th,
table th[class*="halfpad"],
table th[class*="stdpad"],
table th[class*="doublepad"] {
    padding: /*style._content_half_gap(*/15px/*)*/;
    }
table td:not([width]),
table th:not([width]) {
    width: auto;
    }
table td.first,
table td:first-child,
table th.first,
table th:first-child {
    padding-left: 0;
    }
table td.last,
table td:last-child,
table th.last,
table th:last-child {
    padding-right: 0;
    }
table td.alignCenter,
table td[align="center"],
table th.alignCenter,
table th[align="center"] {
    text-align: center;
    }
table td.alignRight,
table td[align="right"],
table th.alignRight,
table th[align="right"] {
    text-align: right;
    }
table tr.last td,
table tr:last-child td,
table tr.last th,
table tr:last-child th {
    padding-bottom: /*style._content_half_gap(*/15px/*)*/;
    }
table.standard td,
table.standard th {
    padding: 7px;
    padding-top: 0;
    text-align: left;
    }
table.standard td.first,
table.standard td:first-child,
table.standard th.first,
table.standard th:first-child {
    padding-left: 0;
    }
table.standard td.last,
table.standard td:last-child,
table.standard th.last,
table.standard th:last-child {
    padding-right: 0;
    }
table.standard td.alignCenter,
table.standard td[align="center"],
table.standard th.alignCenter,
table.standard th[align="center"] {
    text-align: center;
    }
table.standard td.alignRight,
table.standard td[align="right"],
table.standard th.alignRight,
table.standard th[align="right"] {
    text-align: right;
    }
table.standard tr.last td,
table.standard tr:last-child td,
table.standard tr.last th,
table.standard tr:last-child th {
    padding-bottom: 0;
    }
table.specifications td,
table.specifications th {
    padding: 3px /*style._content_gap(*/30px/*)*/;
    padding-top: 0;
    font-weight: normal;
    text-align: left;
    }
table.specifications td.first,
table.specifications td:first-child,
table.specifications th.first,
table.specifications th:first-child {
    padding-left: 0;
    }
table.specifications td.last,
table.specifications td:last-child,
table.specifications th.last,
table.specifications th:last-child {
    padding-right: 0;
    }
table.specifications td.alignCenter,
table.specifications td[align="center"],
table.specifications th.alignCenter,
table.specifications th[align="center"] {
    text-align: center;
    }
table.specifications td.alignRight,
table.specifications td[align="right"],
table.specifications th.alignRight,
table.specifications th[align="right"] {
    text-align: right;
    }
table.specifications th {
    padding: 3px;
    padding-top: 0;
    width: auto;
    min-width: /*style._button_min_width(*/120px/*)*/;
    }
table.specifications th > span {
    display: block;
    padding: /*style._content_third_gap(*/10px/*)*/ /*style._content_two_third_gap(*/20px/*)*/;
    }
table.specifications tr.last td,
table.specifications tr:last-child td,
table.specifications tr.last th,
table.specifications tr:last-child th {
    padding-bottom: 0;
    }
table.evProductVolumePrices:not(:last-child) {
    margin-bottom: /*style._content_gap(*/30px/*)*/;
    }
table.evProductVolumePrices td,
table.evProductVolumePrices th {
    padding: /*style._content_third_gap(*/10px/*)*/;
    padding-top: 0;
    text-align: left;
    }
table.evProductVolumePrices td.first,
table.evProductVolumePrices td:first-child,
table.evProductVolumePrices th.first,
table.evProductVolumePrices th:first-child {
    padding-left: 0;
    }
table.evProductVolumePrices td.last,
table.evProductVolumePrices td:last-child,
table.evProductVolumePrices th.last,
table.evProductVolumePrices th:last-child {
    padding-right: 0;
    }
table.evProductVolumePrices td.alignCenter,
table.evProductVolumePrices td[align="center"],
table.evProductVolumePrices th.alignCenter,
table.evProductVolumePrices th[align="center"] {
    text-align: center;
    }
table.evProductVolumePrices td.alignRight,
table.evProductVolumePrices td[align="right"],
table.evProductVolumePrices th.alignRight,
table.evProductVolumePrices th[align="right"] {
    text-align: right;
    }
table.evProductVolumePrices tr.last td,
table.evProductVolumePrices tr:last-child td,
table.evProductVolumePrices tr.last th,
table.evProductVolumePrices tr:last-child th {
    padding-bottom: 0;
    }
table.evCartLines td,
table.evCartLines th,
.evCartLines > table td,
.evCartLines > table th {
    padding: /*style._content_half_gap(*/15px/*)*/;
    }
table.evCartLines td,
table.evCartLines td.first,
table.evCartLines td:first-child,
table.evCartLines th,
table.evCartLines th.first,
table.evCartLines th:first-child,
.evCartLines > table td,
.evCartLines > table td.first,
.evCartLines > table td:first-child,
.evCartLines > table th,
.evCartLines > table th.first,
.evCartLines > table th:first-child {
    width: auto;
    }
table.evCartLines td.first,
table.evCartLines td:first-child,
table.evCartLines th.first,
table.evCartLines th:first-child,
.evCartLines > table td.first,
.evCartLines > table td:first-child,
.evCartLines > table th.first,
.evCartLines > table th:first-child {
    padding-left: 0;
    }
table.evCartLines td.last,
table.evCartLines td:last-child,
table.evCartLines th.last,
table.evCartLines th:last-child,
.evCartLines > table td.last,
.evCartLines > table td:last-child,
.evCartLines > table th.last,
.evCartLines > table th:last-child {
    padding-right: 0;
    }
table.evCartLines td.alignCenter,
table.evCartLines td[align="center"],
table.evCartLines th.alignCenter,
table.evCartLines th[align="center"],
.evCartLines > table td.alignCenter,
.evCartLines > table td[align="center"],
.evCartLines > table th.alignCenter,
.evCartLines > table th[align="center"] {
    text-align: center;
    }
table.evCartLines td.alignRight,
table.evCartLines td[align="right"],
table.evCartLines th.alignRight,
table.evCartLines th[align="right"],
.evCartLines > table td.alignRight,
.evCartLines > table td[align="right"],
.evCartLines > table th.alignRight,
.evCartLines > table th[align="right"] {
    text-align: right;
    }
table.evCartLines tr.last td,
table.evCartLines tr:last-child td,
table.evCartLines tr.last th,
table.evCartLines tr:last-child th,
.evCartLines > table tr.last td,
.evCartLines > table tr:last-child td,
.evCartLines > table tr.last th,
.evCartLines > table tr:last-child th {
    padding-bottom: /*style._content_half_gap(*/15px/*)*/;
    }
table.evAccountTable td,
table.evAccountTable th {
    color: /*style.text_color(*/#454545/*)*/;
    }
table.evAccountTable td a:link,
table.evAccountTable td a:visited,
table.evAccountTable th a:link,
table.evAccountTable th a:visited {
    color: inherit;
    }
table.evAccountTable td.status.unread,
table.evAccountTable td.status.read,
table.evAccountTable td.status.packing,
table.evAccountTable th.status.unread,
table.evAccountTable th.status.read,
table.evAccountTable th.status.packing {
    color: /*style._pending_text_color(*/#E68333/*)*/;
    }
table.evAccountTable td.status.packing > span.icon,
table.evAccountTable th.status.packing > span.icon {
    font-size: 20px;
    }
table.evAccountTable td.status.complete,
table.evAccountTable th.status.complete {
    color: /*style._positive_text_color(*/#5fc050/*)*/;
    }
table.evAccountTable td.status.cancelled,
table.evAccountTable th.status.cancelled {
    color: /*style._cancel_text_color(*/#d1d1d1/*)*/;
    }
table.evAccountTable td.status span.icon,
table.evAccountTable th.status span.icon {
    line-height: 1em;
    }
div.datepickerContainer table td,
div.datepickerContainer table th {
    padding: 0;
    }
#page-body .optionsTable,
#page-body .availablePostage {
    background-color: /*style.body_background_color(*/#fcfcfc/*).colorAdjust(0,0,-1,0)*/;
    border-color: /*style.border_color(*/#fafafa/*)*/;
    border-radius: /*style.component_border_radius(*/2px/*)*/;
    }
#page-body .optionsTable table td,
#page-body .availablePostage table td {
    vertical-align: middle;
    padding: /*style._content_half_gap(*/15px/*)*/ /*style._content_third_gap(*/10px/*)*/;
    border-color: /*style.border_color(*/#fafafa/*)*/;
    line-height: 1;
    }
#page-body .optionsTable table td.checkbox,
#page-body .availablePostage table td.checkbox {
    padding-left: /*style._content_gap(*/30px/*)*/;
    }
#page-body .optionsTable table td.checkbox a.evCheckbox,
#page-body .optionsTable table td.checkbox a.evRadio,
#page-body .availablePostage table td.checkbox a.evCheckbox,
#page-body .availablePostage table td.checkbox a.evRadio {
    vertical-align: baseline;
    }
#page-body .optionsTable table td label,
#page-body .availablePostage table td label {
    margin: 0 0 1px;
    width: 100%;
    }

/*
    Lists
    -----
*/
ul,
ol {
    padding-left: 45px;
    }
ul li,
ol li {
    padding-top: 0;
    }
ul li.last,
ul li:last-child,
ol li.last,
ol li:last-child {
    padding-bottom: 0;
    }
ul.evListOfOptions li {
    padding: 0 !important;
    line-height: 36px;
    }
ul.evListOfOptions li a {
    padding: 10px 15px 10px 15px !important;
    display: block;
    }
ul.evListOfOptions li a:hover {
    text-decoration: none;
    }
ul.evListOfOptions li a:after {
    display: block;
    content: attr(title);
    font-weight: bold;
    height: 1px;
    color: transparent;
    overflow: hidden;
    visibility: hidden;
    margin-bottom: -1px;
    }
ul.listOfDownloads {
    list-style: none;
    padding-left: 0;
    }
ul.listOfDownloads li {
    padding-bottom: /*style._content_half_gap(*/15px/*)*/;
    }
ul.listOfDownloads li.last,
ul.listOfDownloads li:last-child {
    padding-bottom: 0;
    }
ul.listOfDownloads a {
    color: /*style.text_color(*/#454545/*)*/;
    font-weight: bold;
    text-decoration: none;
    }
ul.listOfDownloads a:hover,
ul.listOfDownloads a.hover,
ul.listOfDownloads a:focus,
ul.listOfDownloads a.focus,
ul.listOfDownloads a:active,
ul.listOfDownloads a.active {
    color: /*style.primary(*/#19388A/*)*/;
    }

/*
    Content
	-------
*/
.contentSection,
.headerContainer,
.contentBlock,
.asideSection,
.asideItem {
    position: relative;
    }
.contentSection.first,
.contentSection:first-child,
.headerContainer.first,
.headerContainer:first-child,
.contentBlock.first,
.contentBlock:first-child,
.asideSection.first,
.asideSection:first-child,
.asideItem.first,
.asideItem:first-child {
    padding-top: 0;
    }
.contentSection.last,
.contentSection:last-child,
.headerContainer.last,
.headerContainer:last-child,
.contentBlock.last,
.contentBlock:last-child,
.asideSection.last,
.asideSection:last-child,
.asideItem.last,
.asideItem:last-child {
    padding-bottom: 0;
    }
.asideItem {
    padding-top: /*style._content_half_gap(*/15px/*)*/;
    padding-bottom: /*style._content_half_gap(*/15px/*)*/;
    }
.contentBlock {
    padding-left: 0;
    padding-right: 0;
    }
.contentSection[class*="halfpad"],
.contentSection[class*="stdpad"],
.contentSection[class*="doublepad"] {
    padding-top: /*style._content_gap(*/30px/*)*/;
    padding-right: 0;
    padding-bottom: /*style._content_gap(*/30px/*)*/;
    padding-left: 0;
    }
.contentSection + .contentSection {
    border-top: 1px solid /*style.border_color(*/#fafafa/*)*/;
    }
.contentSection.headerContainer + .contentSection {
    border-top: 0 none;
    }
.contentSection.tabContainer {
    padding-bottom: 0;
    }
.asideSection:last-child {
    padding-bottom: /*style._content_double_gap(*/60px/*)*/;
    }
.asideSection + .asideSection {
    border-top: 1px solid /*style.border_color(*/#fafafa/*)*/;
    }
.asideSection div[data-reference] {
    padding-right: 5px;
    }
.toolbarSection > .inner,
.paginationSection > .inner {
    display: table;
    }
.toolbarSection > .inner > div,
.paginationSection > .inner > div {
    display: table-cell;
    vertical-align: middle;
    }
.toolbarSection .resultcount-container,
.paginationSection .resultcount-container {
    width: 100%;
    }
.toolbarSection .resultcount-container .filter-results-anchor,
.paginationSection .resultcount-container .filter-results-anchor {
    margin-left: /*style._content_third_gap(*/10px/*)*/;
    border-left: 1px solid /*style.border_color(*/#fafafa/*)*/;
    padding-left: /*style._content_third_gap(*/10px/*)*/;
    }
.flexbox .toolbarSection > .inner,
.flexbox .paginationSection > .inner {
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-flow: row wrap;
    -ms-flex-flow: row wrap;
    flex-flow: row wrap;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    margin: -10px;
    }
.flexbox .toolbarSection > .inner > div,
.flexbox .paginationSection > .inner > div {
    display: block;
    width: auto;
    padding: /*style._content_third_gap(*/10px/*)*/;
    }
@media screen and (max-width: /*style._second_content_break_max(*/448px/*)*/) {
.flexbox .toolbarSection > .inner > div,
.flexbox .paginationSection > .inner > div {
    width: 100%;
    text-align: center;
    }
}

.resultcount-container {
    display: none;
    }
.sortpage-container {
    text-align: right;
    white-space: nowrap;
    }
.sortpage-container > * {
    display: inline-block;
    vertical-align: middle;
    }
.sortpage-container > span {
    margin-right: 8px;
    }
.perpage-container {
    white-space: nowrap;
    }
.perpage-container > * {
    display: inline-block;
    vertical-align: middle;
    }
.perpage-container > span {
    margin-right: 8px;
    }
@media (min-width:/*style._second_special_content_break_min(*/701px/*)*/) {
.sortpage-container .evSelectButton,
.perpage-container .evSelectButton {
    width: auto;
    }
.sortpage-container .evSelectButton .evButton,
.perpage-container .evSelectButton .evButton {
    width: auto;
    margin: 0 !important;
    }
.sortpage-container .evSelectButton .evButton .label,
.perpage-container .evSelectButton .evButton .label {
    width: auto;
    }
.sortpage-container .evSelectButton .evSelect,
.perpage-container .evSelectButton .evSelect {
    position: absolute;
    top: 0;
    margin: 0;
    left: 0;
    }
}

.evSortPage .evSelectButton,
.evPerPage .evSelectButton {
    width: auto;
    }
.evSortPage .evSelectButton .evButton,
.evPerPage .evSelectButton .evButton {
    width: auto;
    margin: 0 !important;
    }
.evSortPage .evSelectButton .evButton .label,
.evPerPage .evSelectButton .evButton .label {
    width: auto;
    }
.evSortPage .evSelectButton .evSelect,
.evPerPage .evSelectButton .evSelect {
    position: absolute;
    top: 0;
    margin: 0;
    left: 0;
    }
.evPagination {
    float: right;
    }
@media screen and (max-width: /*style._second_special_content_break_min(*/701px/*)*/) {
.evSortPage {
    width: calc(100vw - /*style._content_two_third_gap(*/20px/*)*/);
    text-align: center;
    }
.evPerPage .evSelectButton {
    width: auto;
    }
.evPerPage .evSelectButton .evButton {
    width: auto;
    margin: 0 !important;
    }
.evPerPage .evSelectButton .evButton .label {
    width: auto;
    }
.evPerPage .evSelectButton .evSelect {
    position: absolute;
    top: 0;
    margin: 0;
    left: 0;
    }
.evPagination {
    float: none;
    }
}

.pagination-container {
    width: 100%;
    text-align: right;
    }
@media screen and (min-width: /*style._first_content_break_min(*/1001px/*)*/) {
.toolbarSection .resultcount-container .filter-results-anchor {
    display: none;
    }
}

.headerContainer {
    position: relative;
    width: 100%;
    padding: 0 0 /*style._content_gap(*/30px/*)*/ 0;
    }
.headerContainer + .contentSection,
.headerContainer + .contentBlock {
    padding-top: 0;
    }

/*
    Alerts and Notices
    ------------------
*/
.evAlert {
    background-image: none;
    background-color: /*style._alert_color(*/#FFF5CA/*)*/;
    padding: /*style._content_two_third_gap(*/20px/*)*/ /*style._content_gap(*/30px/*)*/;
    border-radius: /*style.component_border_radius(*/2px/*)*/;
    color: #111;
    }
.evAlert h1,
.evAlert h2,
.evAlert h3,
.evAlert h4,
.evAlert h5,
.evAlert h6,
.evAlert .title {
    color: inherit;
    }
.evAlert + div {
    margin-top: /*style._content_gap(*/30px/*)*/;
    }
.evNotices {
    display: none;
    background-color: /*style._error_text_color(*/#ef4242/*)*/;
    padding: /*style._content_two_third_gap(*/20px/*)*/ /*style._content_gap(*/30px/*)*/;
    border-radius: /*style.component_border_radius(*/2px/*)*/;
    color: #fff;
    }
.evNotices h1,
.evNotices h2,
.evNotices h3,
.evNotices h4,
.evNotices h5,
.evNotices h6,
.evNotices .title {
    color: inherit;
    }
.evNotices + div {
    margin-top: /*style._content_gap(*/30px/*)*/;
    }

/*
    Mobile Show/Hide
    ----------------
*/
.mobile-only {
    display: none;
    }
@media screen and (max-width: /*style._first_content_break_max(*/1000px/*)*/) {
.mobile-only {
    display: block;
    }
.mobile-hide {
    display: none;
    }
}

/*
    Widgets
    -------
*/
.widgetSection:after {
    content: "";
    display: block;
    height: 0;
    font-size: 0;
    clear: both;
    visibility: hidden;
    }
.widgetSection > .gridContainer {
    margin: -10px;
    }
@media (max-width:/*style._second_content_break_max(*/448px/*)*/) {
.widgetSection {
    padding-bottom: 0;
    }
.widgetSection > .gridContainer {
    margin: 0 -10px;
    }
.widgetSection > .gridContainer > [class^='grid'] {
    padding-top: 0;
    }
}

.evWidget {
    position: relative;
    display: block;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    min-height: 560px;
    padding: /*style._content_half_gap(*/15px/*)*/;
    text-align: left;
    color: /*style.pod_content_text_color(*/#fff/*)*/;
    }
.evWidget > .inner {
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-flow: column nowrap;
    -ms-flex-flow: column nowrap;
    flex-flow: column nowrap;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    max-width: /*style._pod_content_width(*/400px/*)*/;
    position: relative;
    z-index: 2;
    }
.evWidget h1,
.evWidget h2,
.evWidget h3,
.evWidget h4,
.evWidget h5,
.evWidget h6,
.evWidget .title,
.evWidget p {
    color: inherit;
    }
.evWidget.evPod {
    border: 0 none;
    padding: /*style._content_gap(*/30px/*)*/ /*style._content_double_gap(*/60px/*)*/;
    }
.evWidget.evPod:before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background-color: /*style.pod_content_background_color(*/rgba(0,0,0,.2)/*).colorAdjust(0,0,0,-80)*/;
    }
.evWidget.evPod:not([style*="background-image"]) {
    padding: /*style._content_double_gap(*/60px/*)*/;
    }
@media (max-width: /*style._first_content_break(*/1000px/*)*/) {
.evWidget.evPod {
    padding: /*style._content_gap(*/30px/*)*/;
    }
}

.flexbox .evWidget {
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-flow: column nowrap;
    -ms-flex-flow: column nowrap;
    flex-flow: column nowrap;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    text-align: center;
    }
.flexbox .grid2of3 .evWidget.flexstart,
.flexbox .grid1of1 .evWidget.flexstart {
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
    text-align: left;
    }
.flexbox .grid2of3 .evWidget.flexend,
.flexbox .grid1of1 .evWidget.flexend {
    -webkit-align-items: flex-end;
    -ms-flex-align: end;
    align-items: flex-end;
    text-align: left;
    }
@media (max-width: /*style._first_content_break(*/1000px/*)*/) {
.flexbox .grid2of3 .evWidget.flexstart,
.flexbox .grid2of3 .evWidget.flexend,
.flexbox .grid1of1 .evWidget.flexstart,
.flexbox .grid1of1 .evWidget.flexend {
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    text-align: center;
    }
}

/*
		input-placeholder
		-----------------
		@fragment input-placeholder(#(0), #(1), #(2));
		#(0) is the colour for the placeholder text; e.g. #ff0000
        #(1) is the font style for the placeholder text; e.g. italic
		#(2) is the element selector; e.g. input.numeric
	*/
/*
		header-styles
		-----------------
		@fragment h1-h6-style
        used if heading styles not possible directly
	*/
/*
    	socialIcon
		----------
		@fragment socialIcon(#(0), #(1));
		#(0) is the icon font string; e.g. "\e600"
		#(1) is the colour for the icon; e.g. #ff0000
	*/
/*
    Page Canvas
	-----------
*/
#page-canvas {
    position: relative;
    display: block;
    padding: 0;
    margin: 0 auto;
    overflow: hidden;
    z-index: 1;
    }

/*
	Wrappers
	--------
*/
.wrapper-inner {
    margin: 0 auto;
    max-width: /*style._content_width_with_gaps(*/1440px/*)*/;
    width: 100%;
    }
.wrapper-inner > div[id^="page-"],
.wrapper-inner > div[id^="product-"] {
    padding-left: /*style._content_gap(*/30px/*)*/;
    padding-right: /*style._content_gap(*/30px/*)*/;
    }
#wrapper-links,
#wrapper-header,
#wrapper-navigation,
#wrapper-notice,
#wrapper-banner,
#wrapper-breadcrumbs,
#wrapper-body,
#wrapper-footer,
#wrapper-company {
    display: block;
    clear: both;
    margin: 0 auto;
    padding: 0;
    position: relative;
    }
@media screen and (max-width: /*style._first_content_break_max(*/1000px/*)*/) {
#wrapper-body,
#wrapper-notice,
#wrapper-banner {
    padding: 0 /*style._content_gap(*/30px/*)*/;
    }
}

@media screen and (max-width: /*style._second_content_break_max(*/448px/*)*/) {
#wrapper-body,
#wrapper-notice,
#wrapper-banner {
    padding: 0;
    }
}

/*
	Page Breakdown
	--------------
*/
#page-links,
#page-header,
#page-navigation,
#page-notice,
#page-banner,
#page-breadcrumbs,
#page-body,
#page-footer,
#page-company {
    margin: 0 auto;
    position: relative;
    }

/*
    Cookie Consent
    --------------
*/
#page-cookie {
    padding-left: /*style._content_gap(*/30px/*)*/;
    padding-right: /*style._content_gap(*/30px/*)*/;
    }

/*
		input-placeholder
		-----------------
		@fragment input-placeholder(#(0), #(1), #(2));
		#(0) is the colour for the placeholder text; e.g. #ff0000
        #(1) is the font style for the placeholder text; e.g. italic
		#(2) is the element selector; e.g. input.numeric
	*/
/*
		header-styles
		-----------------
		@fragment h1-h6-style
        used if heading styles not possible directly
	*/
/*
    	socialIcon
		----------
		@fragment socialIcon(#(0), #(1));
		#(0) is the icon font string; e.g. "\e600"
		#(1) is the colour for the icon; e.g. #ff0000
	*/
/*
    Links
    -----
*/
#wrapper-links {
    z-index: 10;
    background-color: /*style.primary(*/#19388A/*)*/;
    color: /*style.text_color_on_primary(*/#fff/*)*/;
    }
#page-links {
    display: table;
    width: 100%;
    padding: 0 30px;
    }
#page-links #header-links {
    display: table-cell;
    vertical-align: middle;
    text-align: left;
    width: 100%;
    }
#page-links #header-links ul.evMenu {
    display: inline-block;
    vertical-align: middle;
    font-weight: /*style.semibold_text_font_weight(*/600/*)*/;
    }
#page-links #header-links ul.evMenu > li > a {
    opacity: .6;
    line-height: 20px;
    letter-spacing: .8px;
    }
#page-links #header-links ul.evMenu > li > a:hover,
#page-links #header-links ul.evMenu > li > a.hover,
#page-links #header-links ul.evMenu > li > a:focus,
#page-links #header-links ul.evMenu > li > a.focus,
#page-links #header-links ul.evMenu > li.active > a {
    opacity: 1;
    text-decoration: none;
    }
#page-links #header-action {
    display: table-cell;
    vertical-align: middle;
    margin-left: 20px;
    }
#page-links #header-action > .wrapper-inner {
    display: table;
    width: 100%;
    text-align: right;
    }
#page-links #header-action > .wrapper-inner > a {
    display: table-cell;
    vertical-align: middle;
    text-align: center;
    white-space: nowrap;
    padding: 17px 19px;
    border-left: 1px solid /*style.primary(*/#19388A/*)*/;
    background-color: /*style._darker_primary(*//*style.primary(*/#152f74/*).colorAdjust(0,0,-5,0)*//*)*/;
    color: /*style.text_color_on_primary(*/#fff/*)*/;
    line-height: 1;
    }
#page-links #header-action > .wrapper-inner > a:hover,
#page-links #header-action > .wrapper-inner > a.active,
#page-links #header-action > .wrapper-inner > a:focus {
    text-decoration: none;
    background-color: /*style.secondary(*/#b4975b/*)*/;
    }
#page-links #header-action > .wrapper-inner > a:hover + a:hover,
#page-links #header-action > .wrapper-inner > a:hover + a.active,
#page-links #header-action > .wrapper-inner > a:hover + a:focus,
#page-links #header-action > .wrapper-inner > a.active + a:hover,
#page-links #header-action > .wrapper-inner > a.active + a.active,
#page-links #header-action > .wrapper-inner > a.active + a:focus,
#page-links #header-action > .wrapper-inner > a:focus + a:hover,
#page-links #header-action > .wrapper-inner > a:focus + a.active,
#page-links #header-action > .wrapper-inner > a:focus + a:focus,
#page-links #header-action > .wrapper-inner > a:hover + #minicart-anchor,
#page-links #header-action > .wrapper-inner > a.active + #minicart-anchor,
#page-links #header-action > .wrapper-inner > a:focus + #minicart-anchor {
    border-left: 1px solid /*style._lighter_secondary(*//*style.secondary(*/#bca26c/*).colorAdjust(0,0,5,0)*//*)*/;
    }
#page-links #header-action > .wrapper-inner > a .icon {
    width: auto;
    height: auto;
    vertical-align: middle;
    font-size: 16px;
    }
#page-links #header-action > .wrapper-inner > a#search-anchor {
    display: /*style.header_search_field(*/inline-block/*)*/;
    padding: 16px 19px;
    }
#page-links #header-action > .wrapper-inner > a#search-anchor .icon {
    font-size: 18px;
    }
#page-links #header-action > .wrapper-inner > a .icon + .label {
    letter-spacing: 1px;
    }
#page-links #header-action > .wrapper-inner > a .icon + .label,
#page-links #header-action > .wrapper-inner > a .icon + .label b {
    padding-left: 5px;
    }
#page-links #header-action > .wrapper-inner #minicart-anchor {
    background-color: /*style.secondary(*/#b4975b/*)*/;
    color: /*style.text_color_on_secondary(*/#fff/*)*/;
    }
#page-links #header-action > .wrapper-inner #minicart-anchor span {
    -webkit-transition: all /*style.animation_speed(*/0.3s/*)*/ ease-in;
    transition: all /*style.animation_speed(*/0.3s/*)*/ ease-in;
    }
#page-links #header-action > .wrapper-inner #minicart-anchor:hover,
#page-links #header-action > .wrapper-inner #minicart-anchor.active,
#page-links #header-action > .wrapper-inner #minicart-anchor:focus {
    text-decoration: none;
    background-color: /*style._darker_secondary(*//*style.secondary(*/#a88b4d/*).colorAdjust(0,0,-5,0)*//*)*/;
    }
#page-links #header-action > .wrapper-inner #minicart-anchor:hover .lighter,
#page-links #header-action > .wrapper-inner #minicart-anchor.active .lighter,
#page-links #header-action > .wrapper-inner #minicart-anchor:focus .lighter {
    opacity: 1;
    }
#page-links #header-action > .wrapper-inner #miniCartBubble {
    text-align: left;
    color: /*style.text_color(*/#454545/*)*/;
    }
#page-links #header-action > .wrapper-inner #miniCartBubble .minicart-items--empty {
    padding: 15px 20px;
    }
#page-links #header-action #header-cart {
    display: table-cell;
    vertical-align: middle;
    }
#page-links #header-action #header-cart #miniCartBubble .minicart-items,
#page-links #header-action #header-cart #miniCartBubble .minicart-footer-total {
    color: /*style.text_color(*/#454545/*)*/;
    }
#page-links #header-action #header-cart #miniCartBubble .minicart-items table,
#page-links #header-action #header-cart #miniCartBubble .minicart-footer-total table {
    width: 100%;
    }
#page-links #header-action #header-cart #miniCartBubble .minicart-items table td,
#page-links #header-action #header-cart #miniCartBubble .minicart-footer-total table td {
    border-bottom: 1px solid /*style.border_color(*/#fafafa/*)*/;
    padding: /*style._content_half_gap(*/15px/*)*/ /*style._content_third_gap(*/10px/*)*/;
    vertical-align: top;
    }
#page-links #header-action #header-cart #miniCartBubble .minicart-items table td.cartline-thumbnail,
#page-links #header-action #header-cart #miniCartBubble .minicart-footer-total table td.cartline-thumbnail {
    min-width: 110px;
    padding-top: 0;
    padding-bottom: 0;
    }
#page-links #header-action #header-cart #miniCartBubble .minicart-items table td.price,
#page-links #header-action #header-cart #miniCartBubble .minicart-footer-total table td.price {
    text-align: right;
    font-weight: /*style.semibold_text_font_weight(*/600/*)*/;
    color: /*style.heading_color(*/#454545/*)*/;
    padding-top: 46px;
    }
#page-links #header-action #header-cart #miniCartBubble .minicart-items table td a.cartline-title,
#page-links #header-action #header-cart #miniCartBubble .minicart-footer-total table td a.cartline-title {
    display: inline-block;
    font-size: /*style.text_font_size(*/14px/*)*/;
    line-height: /*style.text_line_height(*/1.5/*)*/;
    color: /*style.heading_color(*/#454545/*)*/;
    margin-bottom: /*style._content_third_gap(*/10px/*)*/;
    }
#page-links #header-action #header-cart #miniCartBubble .minicart-items table td.first,
#page-links #header-action #header-cart #miniCartBubble .minicart-items table td:first-child,
#page-links #header-action #header-cart #miniCartBubble .minicart-footer-total table td.first,
#page-links #header-action #header-cart #miniCartBubble .minicart-footer-total table td:first-child {
    padding-left: /*style._content_gap(*/30px/*)*/;
    }
#page-links #header-action #header-cart #miniCartBubble .minicart-items table td.last,
#page-links #header-action #header-cart #miniCartBubble .minicart-items table td:last-child,
#page-links #header-action #header-cart #miniCartBubble .minicart-footer-total table td.last,
#page-links #header-action #header-cart #miniCartBubble .minicart-footer-total table td:last-child {
    padding-right: /*style._content_gap(*/30px/*)*/;
    }
#page-links #header-action #header-cart #miniCartBubble .minicart-items--empty {
    padding: /*style._content_two_third_gap(*/20px/*)*/;
    text-align: center;
    }
#page-links #header-action #header-cart #miniCartBubble .minicart-footer {
    padding: 0;
    }
#page-links #header-action #header-cart #miniCartBubble .minicart-footer .minicart-footer-total {
    font-weight: 600;
    }
#page-links #header-action #header-cart #miniCartBubble .minicart-footer .minicart-footer-total table {
    width: 100%;
    }
#page-links #header-action #header-cart #miniCartBubble .minicart-footer .minicart-footer-total table td {
    padding-top: /*style._content_two_third_gap(*/20px/*)*/;
    border-bottom: 0 none;
    }
#page-links #header-action #header-cart #miniCartBubble .minicart-footer .minicart-footer-total table td.price {
    font-size: 16px;
    }
#page-links #header-action #header-cart #miniCartBubble .minicart-footer .minicart-footer-actions {
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-flow: row wrap;
    -ms-flex-flow: row wrap;
    flex-flow: row wrap;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    }
#page-links #header-action #header-cart #miniCartBubble .minicart-footer .minicart-footer-actions .evButton {
    width: 50%;
    margin: 0;
    border-radius: 0;
    }
#page-links #header-action #header-cart #miniCartBubble .minicart-footer .minicart-footer-actions .evButton:only-child {
    margin: 0 auto;
    }
#page-links #header-action #header-search {
    width: 0;
    overflow: hidden;
    -webkit-transition: all .6s cubic-bezier(1,0,0,1);
    transition: all .6s cubic-bezier(1,0,0,1);
    position: absolute;
    }
#page-links #header-action #header-search.active {
    width: 205px;
    margin-left: -205px;
    }
#page-links #header-action #header-search .evTextField {
    width: 100%;
    border-radius: 0;
    border-color: transparent;
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
    background: /*style._darker_primary(*//*style.primary(*/#152f74/*).colorAdjust(0,0,-5,0)*//*)*/;
    }
#page-links #header-action #header-search .evTextField > .evTextFieldInput > input {
    color: /*style.text_color_on_primary(*/#fff/*)*/;
    height: 48px;
    }
#page-links #header-action #header-search .evTextField > .evTextFieldInput > input:placeholder-shown {
    color: /*style.text_color_on_primary(*/rgba(255,255,255,.5)/*).colorAdjust(0,0,0,-50)*/;
    }
#page-links #header-action #header-search .evTextField > .evTextFieldInput > input::-ms-input-placeholder {
    color: /*style.text_color_on_primary(*/rgba(255,255,255,.5)/*).colorAdjust(0,0,0,-50)*/;
    }
#page-links #header-action #header-search .evTextField > .evTextFieldInput > input:-ms-input-placeholder {
    color: /*style.text_color_on_primary(*/rgba(255,255,255,.5)/*).colorAdjust(0,0,0,-50)*/;
    }
#page-links #header-action #header-search .evTextField > .evTextFieldInput > input::-moz-placeholder {
    color: /*style.text_color_on_primary(*/rgba(255,255,255,.5)/*).colorAdjust(0,0,0,-50)*/;
    }
#page-links #header-action #header-search .evTextField > .evTextFieldInput > input::-webkit-input-placeholder {
    color: /*style.text_color_on_primary(*/rgba(255,255,255,.5)/*).colorAdjust(0,0,0,-50)*/;
    }
#page-links #header-action #header-search .evTextField > .evTextFieldInput > input:-moz-placeholder {
    color: /*style.text_color_on_primary(*/rgba(255,255,255,.5)/*).colorAdjust(0,0,0,-50)*/;
    }
#page-links #header-action #header-search .evTextField input:-webkit-autofill {
    -webkit-box-shadow: 0 0 0 50px /*style._darker_primary(*//*style.primary(*/#152f74/*).colorAdjust(0,0,-5,0)*//*)*/ inset;
    -webkit-text-fill-color: /*style.text_color_on_primary(*/#fff/*)*/;
    }
#page-links #header-action #header-search .evTextField input:-webkit-autofill:focus {
    -webkit-box-shadow: 0 0 0 50px /*style._darker_primary(*//*style.primary(*/#152f74/*).colorAdjust(0,0,-5,0)*//*)*/ inset;
    -webkit-text-fill-color: /*style.text_color_on_primary(*/#fff/*)*/;
    }
#page-links #header-action #accountBubble {
    top: 58px !important;
    color: /*style.text_color(*/#454545/*)*/;
    text-align: center;
    }
#page-links #header-action #accountBubble .userThumbnail {
    padding: 20px;
    overflow: hidden;
    text-transform: none;
    }
#page-links #header-action #accountBubble .userThumbnail .evAvatar {
    margin-bottom: /*style._content_half_gap(*/15px/*)*/;
    border-width: 2px;
    font-size: 20px;
    font-weight: 600;
    line-height: 56px;
    color: /*style.primary(*/#19388A/*)*/;
    }
#page-links #header-action #accountBubble .userThumbnail .loginAvatar {
    background-color: /*style.primary(*/#19388A/*)*/;
    border: 0 none;
    color: /*style.text_color_on_primary(*/#fff/*)*/;
    font-size: 60px;
    overflow: hidden;
    }
#page-links #header-action #accountBubble .userThumbnail .loginAvatar:before {
    -webkit-transition: top .25s;
    transition: top .25s;
    top: 50px;
    position: relative;
    }
#page-links #header-action #accountBubble .userThumbnail h1,
#page-links #header-action #accountBubble .userThumbnail h2,
#page-links #header-action #accountBubble .userThumbnail h3,
#page-links #header-action #accountBubble .userThumbnail h4,
#page-links #header-action #accountBubble .userThumbnail h5,
#page-links #header-action #accountBubble .userThumbnail h6,
#page-links #header-action #accountBubble .userThumbnail .title {
    margin: 10px 0;
    }
#page-links #header-action #accountBubble.open .loginAvatar:before {
    top: 10px;
    }
#page-links #header-action #accountBubble .userMenu {
    text-align: left;
    font-weight: 600;
    }
#page-links #header-action #accountBubble .userMenu ul.evMenu {
    display: block;
    }
#page-links #header-action #accountBubble .userMenu ul.evMenu li a {
    padding: /*style._content_third_gap(*/10px/*)*/ /*style._content_gap(*/30px/*)*/;
    text-align: center;
    }
#page-links #header-action #accountBubble .userMenu ul.evMenu li a:hover {
    text-decoration: none;
    }
#page-links #header-action #accountBubble .userMenu ul.evMenu li.bubbleHide {
    display: none;
    }
#page-links #header-action #accountBubble .userForm .fieldContainer {
    padding: 0 /*style._content_two_third_gap(*/20px/*)*/;
    text-align: left;
    padding-bottom: /*style._content_two_third_gap(*/20px/*)*/;
    }
#page-links #header-action #accountBubble .userForm button {
    margin: 0 !important;
    }
#page-links #header-action #accountBubble .userForm a.registerButton {
    display: block;
    font-family: /*style.text_font_family(*/"Arial"/*)*/;
    font-size: 12px;
    font-weight: 600;
    text-transform: /*style.button_text_transformation(*/none/*)*/;
    text-align: center;
    height: /*style._button_height(*/48px/*)*/;
    line-height: 46px;
    }
#page-links #header-action #accountBubble .userForm a:hover {
    color: /*style.text_color(*/#454545/*)*/ !important;
    }

/*
    Header
    ------
*/
#wrapper-header {
    z-index: 8;
    background-color: /*style.header_background_color(*/#fff/*)*/;
    color: /*style.header_text_color(*/#000/*)*/;
    }
#header-menu-toggle {
    display: table-cell;
    vertical-align: middle;
    width: 100%;
    padding: 0;
    }
#header-menu-toggle .inner {
    padding: 6px 10px;
    display: inline-block;
    }
#page-header {
    display: table;
    }
#page-header #header-logo {
    display: table-cell;
    vertical-align: middle;
    text-align: center;
    width: 100%;
    padding-top: /*style._content_double_gap(*/60px/*)*/;
    padding-bottom: 38px;
    padding-right: /*style._content_half_gap(*/15px/*)*/;
    padding-left: /*style._content_half_gap(*/15px/*)*/;
    }
#page-header #header-tools-container {
    display: table-cell;
    vertical-align: middle;
    width: 100%;
    padding-top: /*style._content_two_third_gap(*/20px/*)*/;
    padding-bottom: /*style._content_third_gap(*/10px/*)*/;
    }
#page-header #header-tools-container #header-tools {
    display: table;
    width: 100%;
    }
#page-header #header-tools-container #header-tools #header-search {
    display: table-cell;
    width: 100%;
    vertical-align: middle;
    padding-right: /*style._content_half_gap(*/15px/*)*/;
    }
#page-header #header-tools-container #header-tools #header-search > form {
    display: /*style.header_search_field(*/inline-block/*)*/;
    min-width: /*style._header_search_field_min_width(*/250px/*)*/;
    }
#page-header #header-tools-container #header-tools #header-search .evTextField {
    display: /*style.header_search_field(*/inline-block/*)*/;
    background-color: /*style.header_background_color(*/#fff/*).colorAdjust(0,0,7.8,0)*/;
    border-color: /*style.header_background_color(*/#fff/*).colorAdjust(0,0,13.2,0)*/;
    color: /*style.header_text_color(*/#000/*)*/;
    }
#page-header #header-tools-container #header-tools #header-search .evTextField input:-ms-input-placeholder {
    color: /*style.header_text_color(*/#000/*)*/;
    font-style: italic;
    }
#page-header #header-tools-container #header-tools #header-search .evTextField input::-webkit-input-placeholder {
    color: /*style.header_text_color(*/#000/*)*/;
    font-style: italic;
    }
#page-header #header-tools-container #header-tools #header-search .evTextField input:-moz-placeholder {
    color: /*style.header_text_color(*/#000/*)*/;
    font-style: italic;
    }
#page-header #header-tools-container #header-tools #header-search .evTextField input::placeholder {
    color: /*style.header_text_color(*/#000/*)*/;
    font-style: italic;
    }
#page-header #header-tools-container #header-tools #header-search .evTextField input.placeholder-state {
    color: /*style.header_text_color(*/#000/*)*/;
    font-style: italic;
    }
#page-header #header-tools-container #header-tools #header-search .evTextField > .evTextFieldInput > input:-webkit-autofill {
    -webkit-box-shadow: /*style._field_box_shadow(*/0px 0 0 0 rgba(0,0,0,0)/*)*/,0 0 0 50px /*style.header_background_color(*/#fff/*).colorAdjust(0,0,7.8,0)*/ inset;
    color: /*style.header_text_color(*/#000/*)*/;
    -webkit-text-fill-color: /*style.header_text_color(*/#000/*)*/;
    }
#page-header #header-tools-container #header-tools #header-search .evTextField > .evTextFieldInput > input:-webkit-autofill:focus {
    -webkit-box-shadow: /*style._field_box_shadow(*/0px 0 0 0 rgba(0,0,0,0)/*)*/,0 0 0 50px /*style.header_background_color(*/#fff/*).colorAdjust(0,0,7.8,0)*/ inset;
    color: /*style.header_text_color(*/#000/*)*/;
    -webkit-text-fill-color: /*style.header_text_color(*/#000/*)*/;
    }
#page-header #header-tools-container #header-tools #header-search .evTextField:hover,
#page-header #header-tools-container #header-tools #header-search .evTextField.hover,
#page-header #header-tools-container #header-tools #header-search .evTextField:focus,
#page-header #header-tools-container #header-tools #header-search .evTextField.focus,
#page-header #header-tools-container #header-tools #header-search .evTextField:active,
#page-header #header-tools-container #header-tools #header-search .evTextField.active {
    -webkit-box-shadow: 0 0 5px 0 rgba(0,0,0,.1);
    box-shadow: 0 0 5px 0 rgba(0,0,0,.1);
    color: /*style.header_text_color(*/#000/*)*/;
    color: /*style.header_text_color(*/#000/*)*/;
    }
.flexbox #page-header {
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-flow: row wrap;
    -ms-flex-flow: row wrap;
    flex-flow: row wrap;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    }
.flexbox #page-header #header-logo {
    -webkit-flex: 1 0 0;
    -ms-flex: 1 0 0;
    flex: 1 0 0;
    }
.flexbox #page-header #header-tools-container {
    -webkit-flex: 0 1 385px;
    -ms-flex: 0 1 385px;
    flex: 0 1 385px;
    }
@media screen and (min-width: /*style._first_content_break_min(*/1001px/*)*/) {
#wrapper-links,
#wrapper-navigation {
    text-transform: uppercase;
    }
#header-menu-toggle {
    display: none;
    }
#page-header #header-logo img {
    max-width: none;
    }
}

@media screen and (max-width: /*style._first_content_break_max(*/1000px/*)*/) {
#page-links {
    padding: 0;
    }
#header-links {
    display: none !important;
    }
#page-header #header-logo {
    padding-top: 40px;
    padding-bottom: 40px;
    padding-right: /*style._content_gap(*/30px/*)*/;
    padding-left: /*style._content_gap(*/30px/*)*/;
    width: 100%;
    text-align: center;
    }
.flexbox #page-header #header-tools-container {
    -webkit-flex: 0 1 0;
    -ms-flex: 0 1 0;
    flex: 0 1 0;
    }
#header-menu-toggle.is-active .inner {
    background-color: /*style.text_color_on_primary(*/#fff/*)*/;
    }
.evMenuToggle.is-active span,
.evMenuToggle.is-active span:before,
.evMenuToggle.is-active span:after {
    background-color: /*style.primary(*/#19388A/*)*/;
    }
}

@media screen and (max-width:530px) {
#search-anchor,
#header-search {
    display: none !important;
    }
}

@media screen and (max-width: /*style._second_content_break_max(*/448px/*)*/) {
#page-header {
    padding-left: /*style._content_third_gap(*/10px/*)*/;
    padding-right: /*style._content_third_gap(*/10px/*)*/;
    }
#page-header #header-logo {
    padding-top: /*style._content_two_third_gap(*/20px/*)*/;
    padding-bottom: /*style._content_two_third_gap(*/20px/*)*/;
    }
#page-header #header-logo img {
    max-height: 45px;
    }
#page-notice {
    padding-left: /*style._content_third_gap(*/10px/*)*/;
    padding-right: /*style._content_third_gap(*/10px/*)*/;
    }
#header-menu-toggle.is-active .inner {
    background-color: transparent;
    }
.evMenuToggle.is-active span,
.evMenuToggle.is-active span:before,
.evMenuToggle.is-active span:after {
    background-color: /*style.text_color_on_primary(*/#fff/*)*/;
    }
#miniCartBubble {
    right: 4px;
    width: 100vw;
    width: calc(100vw - 8px);
    left: auto !important;
    }
#accountBubble {
    right: 7px;
    left: auto !important;
    }
#accountBubble .triangleWrapper {
    right: 131px;
    }
}

/*
    Notice
    ------
*/
#wrapper-notice {
    z-index: 6;
    background-color: /*style.notice_background_color(*/#fff/*)*/;
    color: /*style.notice_text_color(*/#000/*)*/;
    }
@media (max-width:/*style._first_content_break_max(*/1000px/*)*/) {
#wrapper-notice {
    border-top: 2px solid /*style.border_color(*/#fafafa/*)*/;
    }
}

#wrapper-notice + #wrapper-breadcrumbs {
    border-top: 2px solid /*style.border_color(*/#fafafa/*)*/;
    }
#page-notice {
    padding-top: 10px;
    padding-bottom: 10px;
    text-align: center;
    }
#page-notice a:link,
#page-notice a:visited,
#page-notice a:hover,
#page-notice a.hover,
#page-notice a:focus,
#page-notice a.focus {
    color: inherit;
    }

/*
		input-placeholder
		-----------------
		@fragment input-placeholder(#(0), #(1), #(2));
		#(0) is the colour for the placeholder text; e.g. #ff0000
        #(1) is the font style for the placeholder text; e.g. italic
		#(2) is the element selector; e.g. input.numeric
	*/
/*
		header-styles
		-----------------
		@fragment h1-h6-style
        used if heading styles not possible directly
	*/
/*
    	socialIcon
		----------
		@fragment socialIcon(#(0), #(1));
		#(0) is the icon font string; e.g. "\e600"
		#(1) is the colour for the icon; e.g. #ff0000
	*/
/*
    Mobile
    ------
*/
#wrapper-mobile {
    display: none;
    z-index: 9;
    color: /*style.header_text_color(*/#000/*)*/;
    padding-top: 48px;
    background-color: rgba(0,0,0,.65);
    width: 100%;
    }
#page-mobile {
    padding-left: 0;
    padding-right: 0;
    padding-bottom: 50px;
    height: calc(100vh - 48px);
    width: 400px;
    max-width: 100%;
    background-color: /*style.header_background_color(*/#fff/*)*/;
    -webkit-box-shadow: 0 0 18px 3px rgba(35,31,32,.5);
    box-shadow: 0 0 18px 3px rgba(35,31,32,.5);
    overflow: auto;
    }
#page-mobile #mobile-search > form {
    display: /*style.header_search_field(*/inline-block/*)*/;
    }
#page-mobile #mobile-search .icon.search {
    font-size: 20px;
    }
#page-mobile #mobile-search .evTextField {
    display: /*style.header_search_field(*/inline-block/*)*/;
    padding: 0;
    border: 0 none;
    background-color: /*style.header_background_color(*/#fff/*).colorAdjust(0,0,7.8,0)*/;
    border-color: /*style.header_background_color(*/#fff/*).colorAdjust(0,0,13.2,0)*/;
    color: /*style.header_text_color(*/#000/*)*/;
    }
#page-mobile #mobile-search .evTextField input:-ms-input-placeholder {
    color: /*style._field_placeholder_color(*/rgba(104,104,104,.5)/*).colorAdjust(0,0,0,-50%)*/;
    font-style: italic;
    }
#page-mobile #mobile-search .evTextField input::-webkit-input-placeholder {
    color: /*style._field_placeholder_color(*/rgba(104,104,104,.5)/*).colorAdjust(0,0,0,-50%)*/;
    font-style: italic;
    }
#page-mobile #mobile-search .evTextField input:-moz-placeholder {
    color: /*style._field_placeholder_color(*/rgba(104,104,104,.5)/*).colorAdjust(0,0,0,-50%)*/;
    font-style: italic;
    }
#page-mobile #mobile-search .evTextField input::placeholder {
    color: /*style._field_placeholder_color(*/rgba(104,104,104,.5)/*).colorAdjust(0,0,0,-50%)*/;
    font-style: italic;
    }
#page-mobile #mobile-search .evTextField input.placeholder-state {
    color: /*style._field_placeholder_color(*/rgba(104,104,104,.5)/*).colorAdjust(0,0,0,-50%)*/;
    font-style: italic;
    }
#page-mobile #mobile-search .evTextField input:-ms-input-placeholder {
    color: /*style.header_text_color(*/#000/*)*/;
    font-style: italic;
    }
#page-mobile #mobile-search .evTextField input::-webkit-input-placeholder {
    color: /*style.header_text_color(*/#000/*)*/;
    font-style: italic;
    }
#page-mobile #mobile-search .evTextField input:-moz-placeholder {
    color: /*style.header_text_color(*/#000/*)*/;
    font-style: italic;
    }
#page-mobile #mobile-search .evTextField input::placeholder {
    color: /*style.header_text_color(*/#000/*)*/;
    font-style: italic;
    }
#page-mobile #mobile-search .evTextField input.placeholder-state {
    color: /*style.header_text_color(*/#000/*)*/;
    font-style: italic;
    }
#page-mobile #mobile-search .evTextField > .evTextFieldInput > input {
    height: 45px;
    padding: 0 /*style._content_half_gap(*/15px/*)*/;
    font-size: 14px;
    }
#page-mobile #mobile-search .evTextField > .evTextFieldIcon {
    padding-left: 18px;
    }
#page-mobile #mobile-search .evTextField:hover {
    -webkit-box-shadow: none;
    box-shadow: none;
    }
#page-mobile #mobile-navigation {
    margin: 0 0 /*style._content_two_third_gap(*/20px/*)*/;
    text-transform: /*style.mobile_menu_text_transformation(*/uppercase/*)*/;
    }
#page-mobile #mobile-navigation ul.evMenu {
    margin: 0;
    padding-top: 0;
    padding-bottom: 0;
    text-align: left;
    overflow: hidden;
    width: 100%;
    }
#page-mobile #mobile-navigation ul.evMenu > li > a {
    font-size: 16px;
    }
#page-mobile #mobile-navigation ul.evMenu li:not(.evMenuLevel_1) {
    padding-left: /*style._content_half_gap(*/15px/*)*/;
    }
#page-mobile #mobile-navigation ul.evMenu li {
    display: block;
    float: none;
    padding-top: 1px;
    padding-bottom: 1px;
    border: 0;
    }
#page-mobile #mobile-navigation ul.evMenu li a {
    font-weight: inherit;
    color: /*style.mobile_menu_text_color(*/#696969/*)*/;
    position: relative;
    }
#page-mobile #mobile-navigation ul.evMenu li a > .evMenuLinkTitle {
    color: inherit;
    white-space: normal;
    font-weight: bold;
    letter-spacing: 1.5px;
    }
#page-mobile #mobile-navigation ul.evMenu li a > .evMenuLinkDescription {
    text-transform: none;
    color: /*style.header_text_color(*/rgba(0,0,0,.85)/*).colorAdjust(0,0,0,-15)*/;
    }
#page-mobile #mobile-navigation ul.evMenu li > a {
    position: relative;
    padding-top: 12px;
    padding-bottom: 12px;
    padding-right: /*style._content_gap(*/30px/*)*/;
    padding-left: /*style._content_two_third_gap(*/20px/*)*/;
    }
#page-mobile #mobile-navigation ul.evMenu li > a:hover,
#page-mobile #mobile-navigation ul.evMenu li > a.hover,
#page-mobile #mobile-navigation ul.evMenu li > a:focus,
#page-mobile #mobile-navigation ul.evMenu li > a.focus,
#page-mobile #mobile-navigation ul.evMenu li.active > a,
#page-mobile #mobile-navigation ul.evMenu li.accordion-open > a {
    color: inherit;
    text-decoration: none;
    }
#page-mobile #mobile-navigation ul.evMenu li.evMenuParent > a > span.evMenuAccordionToggle {
    position: absolute;
    display: block;
    top: 0;
    right: 2px;
    bottom: 0;
    padding: 0 /*style._content_two_third_gap(*/20px/*)*/;
    font-size: 26px;
    background-color: /*style.header_background_color(*/#fff/*).colorAdjust(0,0,7.8,0)*/;
    }
#page-mobile #mobile-navigation ul.evMenu li.evMenuParent > a > span.evMenuAccordionToggle:after {
    content: "\e096";
    font-family: 'ev2';
    position: absolute;
    top: 50%;
    right: 50%;
    -webkit-transform: translateY(-50%) translateX(50%);
    -ms-transform: translateY(-50%) translateX(50%);
    transform: translateY(-50%) translateX(50%);
    }
#page-mobile #mobile-navigation ul.evMenu li.evMenuParent > a:after {
    display: none;
    }
#page-mobile #mobile-navigation ul.evMenu li.evMenuParent.accordion-open > a > span.evMenuAccordionToggle:after {
    content: "\e098";
    }
#page-mobile #mobile-navigation ul.evMenu li.evMenuParent > ul {
    position: relative;
    display: block;
    top: 0;
    left: 0;
    background: none transparent;
    -webkit-box-shadow: none;
    box-shadow: none;
    color: inherit;
    padding-top: 1px;
    padding-bottom: 1px;
    }
#page-mobile #mobile-navigation ul.evMenu li.active > a {
    color: /*style.heading_color(*/#454545/*)*/;
    }
#page-mobile #mobile-navigation ul.evMenu li.active > a > span.evMenuAccordionToggle {
    color: /*style.heading_color(*/#454545/*)*/;
    }
#page-mobile #mobile-navigation ul.evMenu li.evMenuGrid > ul li.evMenuLinkHasThumbnail > a {
    padding-left: 109px;
    padding-right: 10px;
    width: auto;
    }
#page-mobile #mobile-navigation ul.evMenu li.evMenuGrid > ul li.evMenuLinkHasThumbnail > a > .evMenuLinkThumbnail {
    top: 8px;
    left: /*style._content_gap(*/30px/*)*/;
    }
#page-mobile #mobile-navigation ul.evMenu li.evMenuColumn {
    padding-top: 0;
    padding-bottom: 0;
    }
#page-mobile #mobile-navigation ul.evMenu li.evMenuColumn > ul {
    padding-top: 0;
    padding-bottom: 0;
    padding-left: 0;
    }
#page-mobile #mobile-navigation ul.evMenu li.evMenuFooter > a {
    text-align: inherit;
    }
#page-mobile #mobile-navigation ul.evMenu li.evMenuMegamenu ul {
    padding-right: 0;
    }
#page-mobile #mobile-navigation ul.evMenu.header-links {
    color: /*style.header_text_color(*/rgba(0,0,0,.55)/*).colorAdjust(0,0,0,-45)*/;
    }
#page-mobile #mobile-navigation ul.evMenu[data-tiers="1"] li[data-level="1"].evMenuParent > a:after {
    display: none;
    }
#page-mobile #mobile-navigation ul.evMenu[data-tiers="1"] li[data-level="1"] > ul {
    display: none;
    }
#page-mobile #mobile-account {
    display: table;
    width: 100%;
    }
#page-mobile #mobile-account > .evButton {
    display: table-cell;
    width: 50%;
    padding-top: 3px !important;
    padding-bottom: 3px !important;
    border: 0 none;
    }
#page-mobile #mobile-account > .cell-divider {
    display: table-cell;
    width: 2px;
    min-width: 2px;
    }
#page-mobile #mobile-languages {
    color: /*style.header_text_color(*/rgba(0,0,0,.55)/*).colorAdjust(0,0,0,-45)*/;
    padding: 5px /*style._content_half_gap(*/15px/*)*/;
    }
#page-mobile #mobile-languages > .evButton {
    width: 100%;
    border: 0 none;
    padding: 0 /*style._content_half_gap(*/15px/*)*/ !important;
    text-align: left;
    }
#page-mobile #mobile-languages > .evButton > .icon {
    line-height: 48px;
    }
#page-mobile #mobile-languages > .evButton > .label {
    height: /*style._button_height(*/48px/*)*/;
    line-height: 46px;
    }
@media screen and (max-width: /*style._first_content_break_max(*/1000px/*)*/) {
#mobile-search {
    display: none;
    }
.fixed-nav #wrapper-mobile {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    max-width: 100%;
    }
}

@media screen and (max-width: /*style._second_content_break_max(*/448px/*)*/) {
#mobile-search {
    display: block;
    }
.fixed-nav #page-mobile {
    width: 100%;
    }
}

/*
		input-placeholder
		-----------------
		@fragment input-placeholder(#(0), #(1), #(2));
		#(0) is the colour for the placeholder text; e.g. #ff0000
        #(1) is the font style for the placeholder text; e.g. italic
		#(2) is the element selector; e.g. input.numeric
	*/
/*
		header-styles
		-----------------
		@fragment h1-h6-style
        used if heading styles not possible directly
	*/
/*
    	socialIcon
		----------
		@fragment socialIcon(#(0), #(1));
		#(0) is the icon font string; e.g. "\e600"
		#(1) is the colour for the icon; e.g. #ff0000
	*/
/*
    Navigation
    ----------
*/
#wrapper-navigation {
    z-index: 7;
    background-color: /*style.header_background_color(*/#fff/*)*/;
    color: /*style.header_text_color(*/#000/*)*/;
    position: relative;
    }
#wrapper-navigation:after {
    content: "";
    width: 100%;
    position: absolute;
    bottom: 0;
    border-bottom: 2px solid /*style.border_color(*/#fafafa/*)*/;
    z-index: -1;
    }
#page-navigation ul.evMenu {
    padding-top: 10px;
    white-space: normal;
    text-align: /*style.header_menu_alignment(*/center/*)*/;
    }
#page-navigation ul.evMenu > li {
    float: none;
    border-bottom: 2px solid transparent;
    }
#page-navigation ul.evMenu > li > a {
    padding-top: 5px;
    padding-bottom: 10px;
    font-weight: /*style.semibold_text_font_weight(*/600/*)*/;
    letter-spacing: 1.5px;
    }
#page-navigation ul.evMenu > li.evMenuLevel_1.active,
#page-navigation ul.evMenu > li.evMenuLevel_1.open,
#page-navigation ul.evMenu > li.evMenuLevel_1:hover,
#page-navigation ul.evMenu > li.evMenuLevel_1.hover,
#page-navigation ul.evMenu > li.evMenuLevel_1:focus,
#page-navigation ul.evMenu > li.evMenuLevel_1.focus {
    border-bottom-color: /*style.primary(*/#19388A/*)*/;
    }
#page-navigation ul.evMenu > li > a:hover,
#page-navigation ul.evMenu > li > a.hover,
#page-navigation ul.evMenu > li > a:focus,
#page-navigation ul.evMenu > li > a.focus,
#page-navigation ul.evMenu > li.active > a {
    text-decoration: none;
    }
#page-navigation ul.evMenu > li.evMenuMegamenu li.evMenuFlyout.open a,
#page-navigation ul.evMenu > li.evMenuMegamenu li.evMenuFlyout.active a,
#page-navigation ul.evMenu > li.evMenuMegamenu li.evMenuFlyout:hover a,
#page-navigation ul.evMenu > li.evMenuMegamenu li.evMenuFlyout.hover a,
#page-navigation ul.evMenu > li.evMenuMegamenu li.evMenuFlyout:focus a,
#page-navigation ul.evMenu > li.evMenuMegamenu li.evMenuFlyout.focus a {
    background: transparent;
    text-decoration: inherit;
    color: inherit;
    }
#page-navigation ul.evMenu > li.evMenuMegamenu li:not(.evMenuLevel_2).active > a,
#page-navigation ul.evMenu > li.evMenuMegamenu li:not(.evMenuLevel_2) > a:hover {
    text-decoration: underline;
    }
#page-navigation ul.evMenu > li.evMenuMegamenu li:not(.evMenuLevel_2).evMenuParent ul {
    padding-left: 10px;
    display: none;
    }
#page-navigation ul.evMenu li.evMenuFlyout:not(.evMenuLevel_1).open > a,
#page-navigation ul.evMenu li.evMenuFlyout:not(.evMenuLevel_1).active > a,
#page-navigation ul.evMenu li.evMenuFlyout:not(.evMenuLevel_1):hover > a,
#page-navigation ul.evMenu li.evMenuFlyout:not(.evMenuLevel_1).hover > a,
#page-navigation ul.evMenu li.evMenuFlyout:not(.evMenuLevel_1):focus > a,
#page-navigation ul.evMenu li.evMenuFlyout:not(.evMenuLevel_1).focus > a,
#page-navigation ul.evMenu li.evMenuFlyout li.open > a,
#page-navigation ul.evMenu li.evMenuFlyout li.active > a,
#page-navigation ul.evMenu li.evMenuFlyout li:hover > a,
#page-navigation ul.evMenu li.evMenuFlyout li.hover > a,
#page-navigation ul.evMenu li.evMenuFlyout li:focus > a,
#page-navigation ul.evMenu li.evMenuFlyout li.focus > a {
    background: /*style.primary(*/#19388A/*)*/;
    text-decoration: none;
    color: /*style.text_color_on_primary(*/#fff/*)*/;
    }
#page-navigation ul.evMenu li.evMenuParent > a:after {
    content: "";
    }
#page-navigation ul.evMenu li.evMenuMegamenu > ul {
    padding: 0;
    left: 10px !important;
    max-width: 100vw;
    }
#page-navigation ul.evMenu li.evMenuMegamenu > ul li.evMenuLevel_2 {
    width: 200px;
    }
#page-navigation ul.evMenu li.evMenuMegamenu > ul li.evMenuLevel_2 > a {
    font-size: 18.2px;
    }
#page-navigation ul.evMenu li.evMenuMegamenu > ul li.evMenuLevel_2 > a .evMenuLinkTitle {
    white-space: normal !important;
    }
#page-navigation ul.evMenu li.custom > a {
    border-top: 2px solid /*style.border_color(*/#fafafa/*)*/;
    }
#page-navigation ul.evMenu li.custom > a .evMenuLinkTitle {
    text-align: center;
    font-weight: normal;
    }
#page-navigation ul.evMenu li.custom > a:hover .evMenuLinkTitle {
    text-decoration: none;
    }
#page-navigation ul.evMenu .evMenuLinkTitle {
    white-space: nowrap;
    }
#page-navigation ul.evMenu .evMenuAccordionToggle {
    position: absolute;
    top: 50%;
    right: 0;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    }
#page-navigation ul.evMenu .evMenuAccordionToggle:after {
    display: block;
    content: "\e098";
    font-family: 'ev2';
    padding: 0 10px;
    }
.accordion-open #page-navigation ul.evMenu .evMenuAccordionToggle:after {
    content: "\e097";
    }
@media screen and (max-width: /*style._first_content_break_max(*/1000px/*)*/) {
#page-navigation {
    display: none;
    }
}

/*
		input-placeholder
		-----------------
		@fragment input-placeholder(#(0), #(1), #(2));
		#(0) is the colour for the placeholder text; e.g. #ff0000
        #(1) is the font style for the placeholder text; e.g. italic
		#(2) is the element selector; e.g. input.numeric
	*/
/*
		header-styles
		-----------------
		@fragment h1-h6-style
        used if heading styles not possible directly
	*/
/*
    	socialIcon
		----------
		@fragment socialIcon(#(0), #(1));
		#(0) is the icon font string; e.g. "\e600"
		#(1) is the colour for the icon; e.g. #ff0000
	*/
/*
    Banner
    ------
*/
#wrapper-banner {
    z-index: 3;
    background-color: /*style.body_background_color(*/#fff/*)*/;
    }
#wrapper-banner .wrapper-inner {
    max-width: none;
    }
#wrapper-banner #page-banner {
    padding: 0;
    }
#page-banner #evPageBanner {
    max-height: 85vh;
    }
#page-banner #evPageBanner a {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
    }
#page-banner #evPageBanner .banner-image {
    width: 100%;
    height: 100%;
    background-position: 60% center;
    background-repeat: no-repeat;
    background-size: cover;
    }
#page-banner .banner-controller-container {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    max-width: /*style._content_width_with_gaps(*/1440px/*)*/;
    margin: 0 auto;
    padding-left: /*style._content_gap(*/30px/*)*/;
    padding-right: /*style._content_gap(*/30px/*)*/;
    text-align: /*style.banner_controller_align(*/left/*)*/;
    z-index: 3;
    }
#page-banner .banner-controller-container ul.evController {
    padding: /*style._content_two_third_gap(*/20px/*)*/ 0;
    }
#page-banner .banner-content-container {
    position: absolute;
    overflow: hidden;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    max-width: 100%;
    }
#page-banner .banner-content-container .wrapper {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    display: block;
    }
#page-banner .banner-content-container .content {
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    color: /*style.banner_content_text_color(*/#fff/*)*/;
    padding: 0 /*style._content_gap(*/30px/*)*/;
    height: 100%;
    max-width: 100%;
    width: 720px;
    }
#page-banner .banner-content-container .content .content_inner {
    padding: /*style._content_gap(*/30px/*)*/ 0 /*style._content_double_gap(*/60px/*)*/;
    margin: 0;
    z-index: 2;
    position: relative;
    }
#page-banner .banner-content-container .content .content_inner h1,
#page-banner .banner-content-container .content .content_inner h2,
#page-banner .banner-content-container .content .content_inner h3,
#page-banner .banner-content-container .content .content_inner h4,
#page-banner .banner-content-container .content .content_inner h5,
#page-banner .banner-content-container .content .content_inner h6,
#page-banner .banner-content-container .content .content_inner .title {
    color: inherit;
    }
#page-banner .banner-content-container .content .content_inner div[data-reference],
#page-banner .banner-content-container .content .content_inner .evEditable,
#page-banner .banner-content-container .content .content_inner eveditable,
#page-banner .banner-content-container .content .content_inner .evLangid {
    width: /*style._pod_content_width(*/400px/*)*/;
    }
@media (max-width: /*style._pod_content_width_with_padding(*/460px/*)*/) {
#page-banner .banner-content-container .content .content_inner div[data-reference],
#page-banner .banner-content-container .content .content_inner .evEditable,
#page-banner .banner-content-container .content .content_inner eveditable,
#page-banner .banner-content-container .content .content_inner .evLangid {
    max-width: 100%;
    width: auto;
    }
}

#page-banner .banner-content-container .content,
#page-banner .banner-content-container .content.content-left {
    position: absolute;
    right: 50%;
    }
#page-banner .banner-content-container .content .content_inner,
#page-banner .banner-content-container .content.content-left .content_inner {
    text-align: left;
    }
#page-banner .banner-content-container .content.content-center {
    position: relative;
    margin: 0 auto;
    right: auto;
    }
#page-banner .banner-content-container .content.content-center .content_inner {
    margin: 0 auto;
    text-align: center;
    }
#page-banner .banner-content-container .content.content-right {
    position: absolute;
    left: 50%;
    right: auto;
    }
#page-banner .banner-content-container .content.content-right .content_inner {
    margin: 0 0 0 auto;
    text-align: left;
    }
@media (max-width:/*style._content_width(*/1360px/*)*/) {
#page-banner .banner-content-container .content,
#page-banner .banner-content-container .content.content-left {
    position: absolute;
    right: auto;
    left: 0;
    }
#page-banner .banner-content-container .content.content-center {
    position: relative;
    margin: 0 auto;
    right: auto;
    }
#page-banner .banner-content-container .content.content-right {
    position: absolute;
    left: auto;
    right: 0;
    }
}

#page-banner.homepageBanner .banner-content-container .content {
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    color: /*style.banner_content_text_color(*/#fff/*)*/;
    padding: 0 /*style._content_gap(*/30px/*)*/;
    height: 100%;
    max-width: 100%;
    width: 720px;
    }
#page-banner.homepageBanner .banner-content-container .content:before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: auto;
    width: 50vw;
    z-index: 1;
    background: /*style.banner_content_background_color(*/rgba(59,59,59,.5)/*).colorAdjust(0,0,0,-50)*/;
    background: -moz-linear-gradient(left,/*style.banner_content_background_color(*/rgba(59,59,59,.5)/*).colorAdjust(0,0,0,-50)*/ 0%,/*style.banner_content_background_color(*/rgba(59,59,59,0)/*).colorAdjust(0,0,0,-100%)*/ 100%);
    background: -webkit-linear-gradient(left,/*style.banner_content_background_color(*/rgba(59,59,59,.5)/*).colorAdjust(0,0,0,-50)*/ 0%/*style.banner_content_background_color(*/rgba(59,59,59,0)/*).colorAdjust(0,0,0,-100%)*/ 100%);
    background: -webkit-linear-gradient(to right,/*style.banner_content_background_color(*/rgba(59,59,59,.5)/*).colorAdjust(0,0,0,-50)*/ 0%,/*style.banner_content_background_color(*/rgba(59,59,59,0)/*).colorAdjust(0,0,0,-100%)*/ 100%);
    background: linear-gradient(to right,/*style.banner_content_background_color(*/rgba(59,59,59,.5)/*).colorAdjust(0,0,0,-50)*/ 0%,/*style.banner_content_background_color(*/rgba(59,59,59,0)/*).colorAdjust(0,0,0,-100%)*/ 100%);
    -webkit-filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#3F000000',endColorstr='#00000000',GradientType=1);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#3F000000',endColorstr='#00000000',GradientType=1);
    }
#page-banner.homepageBanner .banner-content-container .content.content-center:before {
    right: auto;
    left: -50vw;
    width: 200vw;
    background: /*style.banner_content_background_color(*/rgba(59,59,59,.5)/*).colorAdjust(0,0,0,-50)*/;
    background: -moz-linear-gradient(top,/*style.banner_content_background_color(*/rgba(59,59,59,.5)/*).colorAdjust(0,0,0,-50)*/ 0%,/*style.banner_content_background_color(*/rgba(59,59,59,0)/*).colorAdjust(0,0,0,-100%)*/ 100%);
    background: -webkit-linear-gradient(top,/*style.banner_content_background_color(*/rgba(59,59,59,.5)/*).colorAdjust(0,0,0,-50)*/ 0%/*style.banner_content_background_color(*/rgba(59,59,59,0)/*).colorAdjust(0,0,0,-100%)*/ 100%);
    background: -webkit-linear-gradient(to bottom,/*style.banner_content_background_color(*/rgba(59,59,59,.5)/*).colorAdjust(0,0,0,-50)*/ 0%,/*style.banner_content_background_color(*/rgba(59,59,59,0)/*).colorAdjust(0,0,0,-100%)*/ 100%);
    background: linear-gradient(to bottom,/*style.banner_content_background_color(*/rgba(59,59,59,.5)/*).colorAdjust(0,0,0,-50)*/ 0%,/*style.banner_content_background_color(*/rgba(59,59,59,0)/*).colorAdjust(0,0,0,-100%)*/ 100%);
    -webkit-filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#3F000000',endColorstr='#00000000',GradientType=0);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#3F000000',endColorstr='#00000000',GradientType=0);
    }
#page-banner.homepageBanner .banner-content-container .content.content-right:before {
    right: auto;
    left: 0;
    background: /*style.banner_content_background_color(*/rgba(59,59,59,.5)/*).colorAdjust(0,0,0,-50)*/;
    background: -moz-linear-gradient(left,/*style.banner_content_background_color(*/rgba(59,59,59,0)/*).colorAdjust(0,0,0,-100)*/ 0%,/*style.banner_content_background_color(*/rgba(59,59,59,.5)/*).colorAdjust(0,0,0,-50)*/ 100%);
    background: -webkit-linear-gradient(left,/*style.banner_content_background_color(*/rgba(59,59,59,0)/*).colorAdjust(0,0,0,-100)*/ 0%/*style.banner_content_background_color(*/rgba(59,59,59,.5)/*).colorAdjust(0,0,0,-50)*/ 100%);
    background: -webkit-linear-gradient(to right,/*style.banner_content_background_color(*/rgba(59,59,59,0)/*).colorAdjust(0,0,0,-100)*/ 0%,/*style.banner_content_background_color(*/rgba(59,59,59,.5)/*).colorAdjust(0,0,0,-50)*/ 100%);
    background: linear-gradient(to right,/*style.banner_content_background_color(*/rgba(59,59,59,0)/*).colorAdjust(0,0,0,-100)*/ 0%,/*style.banner_content_background_color(*/rgba(59,59,59,.5)/*).colorAdjust(0,0,0,-50)*/ 100%);
    -webkit-filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000',endColorstr='#3F000000',GradientType=1);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000',endColorstr='#3F000000',GradientType=1);
    }
@media (max-width:/*style._content_width(*/1360px/*)*/) {
#page-banner.homepageBanner .banner-content-container .content:before,
#page-banner.homepageBanner .banner-content-container .content.content-left:before {
    left: 0;
    }
#page-banner.homepageBanner .banner-content-container .content.content-right:before {
    right: 0;
    left: auto;
    }
}

#page-banner.standardPageBanner .banner-content-container .content {
    height: 100%;
    max-width: 100%;
    width: 720px;
    }
#page-banner.standardPageBanner .banner-content-container .content .content_inner {
    width: /*style._standard_banner_content_width_with_padding(*/600px/*)*/;
    max-width: 100%;
    background: /*style.standard_banner_content_background_color(*/rgba(255,255,255,0)/*).colorAdjust(0,0,0,-100)*/;
    color: /*style.banner_content_text_color(*/#fff/*)*/;
    padding: /*style._content_gap(*/30px/*)*/;
    }
#page-banner.standardPageBanner .banner-content-container .content .content_inner div[data-reference],
#page-banner.standardPageBanner .banner-content-container .content .content_inner .evEditable,
#page-banner.standardPageBanner .banner-content-container .content .content_inner eveditable,
#page-banner.standardPageBanner .banner-content-container .content .content_inner .evLangid {
    max-width: 100%;
    width: auto;
    }
@media (max-width:/*style._content_width(*/1360px/*)*/) {
#page-banner.standardPageBanner .banner-content-container .content:before,
#page-banner.standardPageBanner .banner-content-container .content.content-left:before {
    left: 0;
    }
#page-banner.standardPageBanner .banner-content-container .content.content-right:before {
    right: 0;
    left: auto;
    }
}

#page-banner.categoryBanner #evPageBanner {
    height: 335px;
    background: /*style.body_background_color(*/#fff/*)*/;
    }
#page-banner.categoryBanner .content {
    width: /*style._standard_banner_content_width_with_padding(*/600px/*)*/;
    -webkit-transform: translateX(50%);
    -ms-transform: translateX(50%);
    transform: translateX(50%);
    }
#page-banner.categoryBanner .content .content_inner {
    width: 100%;
    background: /*style.standard_banner_content_background_color(*/rgba(255,255,255,0)/*).colorAdjust(0,0,0,-100)*/;
    color: /*style.banner_content_text_color(*/#fff/*)*/;
    padding: /*style._content_gap(*/30px/*)*/;
    }
#page-banner.categoryBanner .content .content_inner div[data-reference],
#page-banner.categoryBanner .content .content_inner .evEditable,
#page-banner.categoryBanner .content .content_inner eveditable,
#page-banner.categoryBanner .content .content_inner .evLangid {
    max-width: 100%;
    width: auto;
    }
@media (max-width:/*style._content_width(*/1360px/*)*/) {
#page-banner.categoryBanner .content {
    right: 50%;
    left: auto;
    }
}

@media (max-width:/*style._second_content_break(*/448px/*)*/) {
#page-banner.categoryBanner .content {
    width: 100%;
    }
#page-banner.categoryBanner .content .content_inner {
    width: 100%;
    }
}

/* Flexbox Enhancement */
.flexbox #page-banner .banner-content-container .wrapper {
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    }
@media (max-width:/*style._first_content_break(*/1000px/*)*/) {
#wrapper-banner #page-banner {
    margin: 0 25px;
    }
}

@media (max-width:/*style._second_content_break(*/448px/*)*/) {
#wrapper-banner #page-banner {
    margin: 0 10px;
    }
#page-banner .banner-content-container .content {
    padding: 0 /*style._content_two_third_gap(*/20px/*)*/;
    }
}

/*
		input-placeholder
		-----------------
		@fragment input-placeholder(#(0), #(1), #(2));
		#(0) is the colour for the placeholder text; e.g. #ff0000
        #(1) is the font style for the placeholder text; e.g. italic
		#(2) is the element selector; e.g. input.numeric
	*/
/*
		header-styles
		-----------------
		@fragment h1-h6-style
        used if heading styles not possible directly
	*/
/*
    	socialIcon
		----------
		@fragment socialIcon(#(0), #(1));
		#(0) is the icon font string; e.g. "\e600"
		#(1) is the colour for the icon; e.g. #ff0000
	*/
/*
    Body
    ----
*/
#wrapper-body,
#wrapper-breadcrumbs {
    z-index: 4;
    background-color: /*style.body_background_color(*/#fff/*)*/;
    background-image: /*style.body_background_image(*/url()/*)*/;
    }
#page-breadcrumbs {
    padding: /*style._content_half_gap(*/15px/*)*/ /*style._content_gap(*/30px/*)*/;
    }
@media (max-width:/*style._first_content_break_min(*/1001px/*)*/) {
#page-breadcrumbs {
    padding: /*style._content_half_gap(*/15px/*)*/ /*style._content_double_gap(*/60px/*)*/;
    }
}

@media (max-width:/*style._second_content_break_min(*/449px/*)*/) {
#page-breadcrumbs {
    padding: /*style._content_half_gap(*/15px/*)*/ /*style._content_third_gap(*/10px/*)*/;
    }
}

#page-breadcrumbs a:link,
#page-breadcrumbs a:visited {
    color: inherit;
    }
#page-breadcrumbs a:hover,
#page-breadcrumbs a.hover,
#page-breadcrumbs a:focus,
#page-breadcrumbs a.focus {
    color: /*style.primary(*/#19388A/*)*/;
    }
#page-breadcrumbs ul.evBreadcrumbs {
    text-transform: uppercase;
    }
#page-breadcrumbs ul.evBreadcrumbs,
#page-breadcrumbs ul.evBreadcrumbs span {
    font-size: 13px;
    }
#page-breadcrumbs ul.evBreadcrumbs li {
    vertical-align: middle;
    padding: 2px 0;
    }
#page-breadcrumbs ul.evBreadcrumbs li.separator {
    padding-left: 5px;
    padding-right: 5px;
    }
#page-breadcrumbs ul.evBreadcrumbs li.separator {
    padding: 0 5px;
    font-size: 0;
    font-weight: lighter;
    line-height: 0;
    }
#page-breadcrumbs ul.evBreadcrumbs li.separator:before {
    font-family: "ev2";
    font-size: 15px;
    line-height: 15px;
    content: "\e092";
    content: /*style.breadcrumbs_separator(*/"\e0a0"/*)*/;
    }
#page-breadcrumbs + #page-body {
    padding-top: /*style._content_two_third_gap(*/20px/*)*/;
    }
#page-body {
    padding-top: /*style._content_four_third_gap(*/40px/*)*/;
    padding-bottom: /*style._content_four_third_gap(*/40px/*)*/;
    }
#page-body .breadcrumbsContainer,
#page-body ul.evBreadcrumbs {
    display: none;
    }
#page-body aside,
#page-body .aside {
    -webkit-box-sizing: content-box;
    -moz-box-sizing: content-box;
    box-sizing: content-box;
    width: /*style._aside_width(*/300px/*)*/;
    padding: 0 /*style._content_gap(*/30px/*)*/ 0 0;
    float: left;
    -webkit-order: 1;
    -ms-flex-order: 1;
    order: 1;
    }
#page-body aside .asideItem .asideItem-heading,
#page-body aside .asideItem h1,
#page-body aside .asideItem h2,
#page-body aside .asideItem h3,
#page-body aside .asideItem h4,
#page-body aside .asideItem h5,
#page-body aside .asideItem h6,
#page-body aside .asideItem .title,
#page-body .aside .asideItem .asideItem-heading,
#page-body .aside .asideItem h1,
#page-body .aside .asideItem h2,
#page-body .aside .asideItem h3,
#page-body .aside .asideItem h4,
#page-body .aside .asideItem h5,
#page-body .aside .asideItem h6,
#page-body .aside .asideItem .title {
    margin-bottom: 7px;
    }
#page-body aside .asideItem .asideItem-heading.last,
#page-body aside .asideItem .asideItem-heading:last-child,
#page-body aside .asideItem h1.last,
#page-body aside .asideItem h1:last-child,
#page-body aside .asideItem h2.last,
#page-body aside .asideItem h2:last-child,
#page-body aside .asideItem h3.last,
#page-body aside .asideItem h3:last-child,
#page-body aside .asideItem h4.last,
#page-body aside .asideItem h4:last-child,
#page-body aside .asideItem h5.last,
#page-body aside .asideItem h5:last-child,
#page-body aside .asideItem h6.last,
#page-body aside .asideItem h6:last-child,
#page-body aside .asideItem .title.last,
#page-body aside .asideItem .title:last-child,
#page-body .aside .asideItem .asideItem-heading.last,
#page-body .aside .asideItem .asideItem-heading:last-child,
#page-body .aside .asideItem h1.last,
#page-body .aside .asideItem h1:last-child,
#page-body .aside .asideItem h2.last,
#page-body .aside .asideItem h2:last-child,
#page-body .aside .asideItem h3.last,
#page-body .aside .asideItem h3:last-child,
#page-body .aside .asideItem h4.last,
#page-body .aside .asideItem h4:last-child,
#page-body .aside .asideItem h5.last,
#page-body .aside .asideItem h5:last-child,
#page-body .aside .asideItem h6.last,
#page-body .aside .asideItem h6:last-child,
#page-body .aside .asideItem .title.last,
#page-body .aside .asideItem .title:last-child {
    margin: 0;
    }
#page-body aside .asideItem .asideItem-heading a:link,
#page-body aside .asideItem .asideItem-heading a:visited,
#page-body aside .asideItem h1 a:link,
#page-body aside .asideItem h1 a:visited,
#page-body aside .asideItem h2 a:link,
#page-body aside .asideItem h2 a:visited,
#page-body aside .asideItem h3 a:link,
#page-body aside .asideItem h3 a:visited,
#page-body aside .asideItem h4 a:link,
#page-body aside .asideItem h4 a:visited,
#page-body aside .asideItem h5 a:link,
#page-body aside .asideItem h5 a:visited,
#page-body aside .asideItem h6 a:link,
#page-body aside .asideItem h6 a:visited,
#page-body aside .asideItem .title a:link,
#page-body aside .asideItem .title a:visited,
#page-body .aside .asideItem .asideItem-heading a:link,
#page-body .aside .asideItem .asideItem-heading a:visited,
#page-body .aside .asideItem h1 a:link,
#page-body .aside .asideItem h1 a:visited,
#page-body .aside .asideItem h2 a:link,
#page-body .aside .asideItem h2 a:visited,
#page-body .aside .asideItem h3 a:link,
#page-body .aside .asideItem h3 a:visited,
#page-body .aside .asideItem h4 a:link,
#page-body .aside .asideItem h4 a:visited,
#page-body .aside .asideItem h5 a:link,
#page-body .aside .asideItem h5 a:visited,
#page-body .aside .asideItem h6 a:link,
#page-body .aside .asideItem h6 a:visited,
#page-body .aside .asideItem .title a:link,
#page-body .aside .asideItem .title a:visited {
    color: inherit;
    }
#page-body aside .asideItem.asideMenu:not(.filterMenu) .asideItem-content,
#page-body .aside .asideItem.asideMenu:not(.filterMenu) .asideItem-content {
    margin: 0 -10px;
    }
#page-body aside + main,
#page-body aside + .main,
#page-body .aside + main,
#page-body .aside + .main {
    width: 1030px;
    float: left;
    -webkit-order: 2;
    -ms-flex-order: 2;
    order: 2;
    }
#page-body aside + main:after,
#page-body aside + .main:after,
#page-body .aside + main:after,
#page-body .aside + .main:after {
    content: "";
    display: block;
    height: 0;
    font-size: 0;
    clear: both;
    visibility: hidden;
    }
#page-body main,
#page-body .main,
#page-body .bodyContainer {
    width: 100%;
    margin: 0 auto;
    }
.flexbox #page-body {
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-flow: row wrap;
    -ms-flex-flow: row wrap;
    flex-flow: row wrap;
    }
.flexbox #page-body aside,
.flexbox #page-body .aside {
    -webkit-flex: 0 0 /*style._aside_width(*/300px/*)*/;
    -ms-flex: 0 0 /*style._aside_width(*/300px/*)*/;
    flex: 0 0 /*style._aside_width(*/300px/*)*/;
    }
.flexbox #page-body aside + main,
.flexbox #page-body aside + .main,
.flexbox #page-body .aside + main,
.flexbox #page-body .aside + .main {
    -webkit-flex: 1 0 0;
    -ms-flex: 1 0 0;
    flex: 1 0 0;
    }
@media screen and (max-width: /*style._first_content_break_max(*/1000px/*)*/) {
.flexbox #page-body aside,
.flexbox #page-body .aside {
    -webkit-order: 3;
    -ms-flex-order: 3;
    order: 3;
    padding: /*style._content_gap(*/30px/*)*/ 0 0;
    border-top: 1px solid /*style.border_color(*/#fafafa/*)*/;
    margin: /*style._content_gap(*/30px/*)*/ auto 0;
    }
.flexbox #page-body aside .asideItem,
.flexbox #page-body .aside .asideItem {
    text-align: center;
    }
.flexbox #page-body aside .asideItem.asideMenu,
.flexbox #page-body .aside .asideItem.asideMenu {
    text-align: left;
    }
.flexbox #page-body aside + main,
.flexbox #page-body aside + .main,
.flexbox #page-body .aside + main,
.flexbox #page-body .aside + .main {
    -webkit-flex: initial;
    -ms-flex: initial;
    flex: initial;
    width: 100%;
    }
}

@media screen and (max-width: /*style._content_width_with_gaps(*/1440px/*)*/ and (min-width:/*style._first_content_break_min(*/1001px/*)*/)) {
#page-body {
    padding: /*style._content_four_third_gap(*/40px/*)*/ /*style._content_double_gap(*/60px/*)*/;
    }
}

@media screen and (max-width: /*style._first_content_break_max(*/1000px/*)*/) {
#page-body {
    padding: /*style._content_four_third_gap(*/40px/*)*/ /*style._content_gap(*/30px/*)*/;
    }
}

@media screen and (max-width: /*style._second_content_break_max(*/448px/*)*/) {
#page-body {
    padding: /*style._content_third_gap(*/10px/*)*/ /*style._content_third_gap(*/10px/*)*/;
    }
}

.flexbox .sortPageWrap {
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    position: relative;
    }
.flexbox .sortPageWrap.padL {
    padding-left: /*style._aside_width_with_gaps(*/330px/*)*/;
    }
.flexbox .sortPageWrap:before,
.flexbox .sortPageWrap:after {
    content: "";
    position: absolute;
    height: 2px;
    width: 10000px;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    background: /*style.border_color(*/#fafafa/*)*/;
    left: 0;
    }
.flexbox .sortPageWrap:before {
    top: 0;
    }
.flexbox .sortPageWrap:after {
    bottom: 0;
    }
@media (max-width:/*style._content_width(*/1360px/*)*/) {
.flexbox .sortPageWrap {
    padding: 0;
    }
}

@media (max-width:/*style._first_content_break_max(*/1000px/*)*/) {
.flexbox .sortPageWrap {
    -webkit-flex-flow: row wrap;
    -ms-flex-flow: row wrap;
    flex-flow: row wrap;
    }
.flexbox .sortPageWrap #viewButton-container {
    display: none;
    }
}

@media (max-width:/*style._first_content_break_max(*/1000px/*)*/) and (min-width:/*style._second_special_content_break_max(*/700px/*)*/) {
.flexbox .sortPageWrap {
    padding: 0;
    margin: 0 -40px;
    }
.flexbox .sortPageWrap .pagination-container {
    width: auto;
    margin-left: auto;
    }
.flexbox .sortPageWrap .evSelectButton > .evButton {
    padding: 0 !important;
    }
}

@media (max-width:/*style._second_special_content_break_max(*/700px/*)*/) {
.flexbox .sortPageWrap {
    -webkit-flex-flow: row wrap;
    -ms-flex-flow: row wrap;
    flex-flow: row wrap;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    }
.flexbox .sortPageWrap .pagination-container {
    text-align: center;
    }
}

@media (max-width:/*style._second_content_break_max(*/448px/*)*/) {
.flexbox .sortPageWrap .perpage-container {
    padding-left: 0;
    }
.flexbox .sortPageWrap .sortpage-container,
.flexbox .sortPageWrap .perpage-container {
    width: 80%;
    }
}

.sortpage-container span[data-reference],
.perpage-container span[data-reference] {
    display: none;
    }
@media (min-width:/*style._second_special_content_break_min(*/701px/*)*/) {
.sortpage-container.perpage-container,
.perpage-container.perpage-container {
    padding-left: 16px;
    }
.sortpage-container:before,
.perpage-container:before {
    content: "";
    height: 28px;
    width: 1px;
    display: inline-block;
    background: /*style.field_border_color(*/#efefef/*)*/;
    vertical-align: middle;
    margin-right: 0;
    }
.sortpage-container .evSelectButton > .evButton,
.perpage-container .evSelectButton > .evButton {
    border-color: transparent !important;
    margin-bottom: -40px;
    height: 36px;
    background-color: transparent;
    border: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
    }
.sortpage-container .evSelectButton > .evButton:hover,
.sortpage-container .evSelectButton > .evButton.hover,
.sortpage-container .evSelectButton > .evButton:focus,
.sortpage-container .evSelectButton > .evButton.focus,
.sortpage-container .evSelectButton > .evButton:active,
.sortpage-container .evSelectButton > .evButton.active,
.perpage-container .evSelectButton > .evButton:hover,
.perpage-container .evSelectButton > .evButton.hover,
.perpage-container .evSelectButton > .evButton:focus,
.perpage-container .evSelectButton > .evButton.focus,
.perpage-container .evSelectButton > .evButton:active,
.perpage-container .evSelectButton > .evButton.active {
    -webkit-box-shadow: none;
    box-shadow: none;
    }
}

@media (max-width:/*style._second_special_content_break_max(*/700px/*)*/) {
.sortpage-container .evSelectButton,
.perpage-container .evSelectButton {
    margin-top: /*style._content_two_third_gap(*/20px/*)*/;
    }
}

@media (min-width:/*style._first_content_break_max(*/1000px/*)*/) {
.sortpage-container {
    padding-left: 0;
    margin-left: -10px;
    }
}

@media (max-width:/*style._second_special_content_break_max(*/700px/*)*/) {
.pagination-container .evPagination {
    margin-top: /*style._content_third_gap(*/10px/*)*/;
    margin-bottom: /*style._content_two_third_gap(*/20px/*)*/;
    }
}

/*
     * Other specific stuff not in pages/
     *
     */
#evAuthRegisterForm > .gridContainer {
    margin: 0;
    }
.blog_latest {
    -webkit-order: 3;
    -ms-flex-order: 3;
    order: 3;
    border-top: 2px solid /*style.border_color(*/#fafafa/*)*/;
    }
@media screen and (max-width: /*style._first_content_break_max(*/1000px/*)*/) {
.blog_latest {
    padding-top: 0;
    }
.blog_latest > .contentSection {
    padding-bottom: 0;
    }
}

.searchTypeDropdown.evDropdown > .content {
    margin-top: 15px;
    }
.searchTypeDropdown.evDropdown ul.evListOfOptions li a {
    padding: 0 !important;
    }
.eventTickets .eventTicketQTY {
    width: 83px;
    }
#evAccountScreen h1,
#evAccountScreen h2 {
    font-family: /*style.heading_font_family(*/"Arial"/*)*/;
    font-weight: /*style.heading_font_weight(*/400/*)*/;
    font-style: /*style.heading_font_style(*/normal/*)*/;
    line-height: /*style.heading_line_height(*/1.143/*)*/;
    text-transform: /*style.heading_text_transformation(*/uppercase/*)*/;
    color: /*style.heading_color(*/#454545/*)*/;
    font-size: /*style.h4_font_size(*/20px/*)*/;
    font-weight: /*style.heading_font_weight(*/400/*)*/;
    font-weight: bold;
    }
#evAccountScreen h3,
#evAccountScreen h4 {
    font-family: /*style.heading_font_family(*/"Arial"/*)*/;
    font-weight: /*style.heading_font_weight(*/400/*)*/;
    font-style: /*style.heading_font_style(*/normal/*)*/;
    line-height: /*style.heading_line_height(*/1.143/*)*/;
    text-transform: /*style.heading_text_transformation(*/uppercase/*)*/;
    color: /*style.heading_color(*/#454545/*)*/;
    font-size: /*style.h5_font_size(*/16px/*)*/;
    font-weight: /*style.heading_font_weight(*/400/*)*/;
    }
#evCartUpsellScreen form > .contentSection.doublepad.stdpad > .inline-block.vAlignMiddle.stdpad {
    padding: 10px 0;
    margin-left: -10px;
    }
#evCartUpsellScreen table.standard td:first-child {
    width: 70px;
    }
#evCartUpsellScreen table.standard td:first-child input {
    text-align: right;
    }
@media (max-width:/*style._first_content_break_max(*/1000px/*)*/) {
#evCartUpsellScreen table.standard td:nth-child(2),
#evCartUpsellScreen table.standard td:nth-child(3) {
    display: none;
    }
}

/*
		input-placeholder
		-----------------
		@fragment input-placeholder(#(0), #(1), #(2));
		#(0) is the colour for the placeholder text; e.g. #ff0000
        #(1) is the font style for the placeholder text; e.g. italic
		#(2) is the element selector; e.g. input.numeric
	*/
/*
		header-styles
		-----------------
		@fragment h1-h6-style
        used if heading styles not possible directly
	*/
/*
    	socialIcon
		----------
		@fragment socialIcon(#(0), #(1));
		#(0) is the icon font string; e.g. "\e600"
		#(1) is the colour for the icon; e.g. #ff0000
	*/
/*
    Footer
    ------
*/
#wrapper-product-footer {
    background: /*style.border_color(*/#fafafa/*)*/;
    border-bottom: 1px solid /*style.body_background_color(*/#fff/*)*/;
    }
@media (max-width:/*style._first_content_break(*/1000px/*)*/) {
#wrapper-product-footer {
    margin: 0 -30px;
    padding: 0 /*style._content_gap(*/30px/*)*/;
    }
}

@media screen and (max-width: /*style._second_content_break_max(*/448px/*)*/) {
#wrapper-product-footer {
    margin: 0 -10px;
    padding: 0 /*style._content_third_gap(*/10px/*)*/;
    }
}

#wrapper-footer-upper {
    z-index: 2;
    }
#footer-upper {
    border-top: 2px solid /*style.border_color(*/#fafafa/*)*/;
    padding-top: 80px;
    padding-bottom: 80px;
    padding-left: /*style._content_gap(*/30px/*)*/;
    padding-right: /*style._content_gap(*/30px/*)*/;
    }
@media screen and (max-width: /*style._second_content_break_max(*/448px/*)*/) {
#footer-upper {
    padding: /*style._content_four_third_gap(*/40px/*)*/ /*style._content_third_gap(*/10px/*)*/;
    }
}

#wrapper-footer {
    z-index: 2;
    background-color: /*style.newsletter_background_color(*/#f1f1f1/*)*/;
    background-image: /*style.footer_background_image(*/url()/*)*/;
    color: /*style.newsletter_text_color(*/#191919/*)*/;
    }
#page-footer {
    padding-top: 55px;
    padding-bottom: 55px;
    padding-left: /*style._content_gap(*/30px/*)*/;
    padding-right: /*style._content_gap(*/30px/*)*/;
    }
#page-footer h1,
#page-footer h2,
#page-footer h3,
#page-footer h4,
#page-footer h5,
#page-footer h6,
#page-footer .title {
    margin-bottom: 7px;
    }
#page-footer > .row {
    display: table;
    width: 100%;
    }
#page-footer > .row > div {
    display: table-cell;
    vertical-align: top;
    padding: /*style._content_gap(*/30px/*)*/;
    padding-top: 0;
    }
#page-footer #footer-menu-container {
    padding: 0;
    width: 100%;
    }
#page-footer #footer-content .columns2,
#page-footer #footer-content .columns3,
#page-footer #footer-content .columns4 {
    margin: -15px;
    }
#page-footer #footer-newsletter {
    min-width: 430px;
    max-width: 430px;
    margin: auto;
    }
#page-footer #footer-newsletter form {
    margin-top: /*style._content_gap(*/30px/*)*/;
    }
@media screen and (max-width: /*style._content_width(*/1360px/*)*/) {
.flexbox #page-footer > .row {
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-flow: row wrap;
    -ms-flex-flow: row wrap;
    flex-flow: row wrap;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
    width: 100%;
    }
.flexbox #page-footer > .row > div {
    display: block;
    padding: /*style._content_gap(*/30px/*)*/;
    padding-top: 0;
    }
.flexbox #page-footer #footer-newsletter {
    min-width: 0;
    width: 100%;
    }
@media screen and (max-width: /*style._first_content_break_max(*/1000px/*)*/) {
.flexbox #page-footer > .row {
    text-align: center;
    }
}

}

/*
    Lower Footer
    ------------
*/
#wrapper-footer-lower {
    z-index: 5;
    position: relative;
    background-color: /*style.footer_background_color(*/#19388a/*)*/;
    color: /*style.footer_text_color(*/#fff/*)*/;
    }
#page-footer-lower {
    width: 100%;
    display: table;
    padding-left: /*style._content_two_third_gap(*/20px/*)*/;
    padding-right: /*style._content_two_third_gap(*/20px/*)*/;
    font-weight: bold;
    }
#page-footer-lower a:link,
#page-footer-lower a:visited,
#page-footer-lower a:hover,
#page-footer-lower a.hover,
#page-footer-lower a:focus,
#page-footer-lower a.focus {
    color: inherit;
    }
#page-footer-lower ul {
    padding: 0;
    list-style: none;
    }
#page-footer-lower ul.evMenu > li {
    border-bottom: 2px solid transparent;
    -webkit-transition: all .15s ease-in-out;
    transition: all .15s ease-in-out;
    }
#page-footer-lower ul.evMenu > li.evMenuLevel_1.active,
#page-footer-lower ul.evMenu > li.evMenuLevel_1:hover,
#page-footer-lower ul.evMenu > li.evMenuLevel_1.hover,
#page-footer-lower ul.evMenu > li.evMenuLevel_1:focus,
#page-footer-lower ul.evMenu > li.evMenuLevel_1.focus {
    border-bottom-color: /*style.primary(*/#19388A/*)*/;
    }
#page-footer-lower ul.evMenu > li > a:hover,
#page-footer-lower ul.evMenu > li > a.hover,
#page-footer-lower ul.evMenu > li > a:focus,
#page-footer-lower ul.evMenu > li > a.focus,
#page-footer-lower ul.evMenu > li.active > a {
    text-decoration: none;
    }
#page-footer-lower ul.evSocialLinks,
#page-footer-lower ul.evByLinks {
    font-size: 0;
    vertical-align: middle;
    }
#page-footer-lower ul.evSocialLinks li a,
#page-footer-lower ul.evByLinks li a {
    text-decoration: none;
    }
#page-footer-lower ul.evSocialLinks li a .socialIcon,
#page-footer-lower ul.evSocialLinks li a .shareIcon,
#page-footer-lower ul.evSocialLinks li a .byIcon,
#page-footer-lower ul.evByLinks li a .socialIcon,
#page-footer-lower ul.evByLinks li a .shareIcon,
#page-footer-lower ul.evByLinks li a .byIcon {
    color: inherit;
    }
#page-footer-lower ul.evSocialLinks li a .socialIcon:before,
#page-footer-lower ul.evSocialLinks li a .shareIcon:before,
#page-footer-lower ul.evSocialLinks li a .byIcon:before,
#page-footer-lower ul.evByLinks li a .socialIcon:before,
#page-footer-lower ul.evByLinks li a .shareIcon:before,
#page-footer-lower ul.evByLinks li a .byIcon:before {
    color: inherit;
    }
#page-footer-lower ul.evSocialLinks li a .socialIcon + .label,
#page-footer-lower ul.evSocialLinks li a .shareIcon + .label,
#page-footer-lower ul.evSocialLinks li a .byIcon + .label,
#page-footer-lower ul.evByLinks li a .socialIcon + .label,
#page-footer-lower ul.evByLinks li a .shareIcon + .label,
#page-footer-lower ul.evByLinks li a .byIcon + .label {
    display: none;
    }
#page-footer-lower #footer-poweredby,
#page-footer-lower #footer-lower,
#page-footer-lower #footer-sociallinks {
    display: table-cell;
    vertical-align: middle;
    white-space: nowrap;
    padding: /*style._content_third_gap(*/10px/*)*/;
    }
#page-footer-lower #footer-lower {
    width: 100%;
    white-space: normal;
    }
#page-footer-lower #footer-lower ul.evMenu.evMenu--inline {
    margin: 0;
    }
#page-footer-lower #footer-lower ul.evMenu.evMenu--inline li {
    text-align: inherit;
    }
.flexbox #page-footer-lower {
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-flow: row wrap;
    -ms-flex-flow: row wrap;
    flex-flow: row wrap;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
    padding: 0 /*style._content_half_gap(*/15px/*)*/;
    }
.flexbox #page-footer-lower #footer-poweredby,
.flexbox #page-footer-lower #footer-lower,
.flexbox #page-footer-lower #footer-sociallinks {
    padding: 3px /*style._content_half_gap(*/15px/*)*/ 0;
    }
.flexbox #page-footer-lower #footer-lower {
    -webkit-flex: 1 0 440px;
    -ms-flex: 1 0 440px;
    flex: 1 0 440px;
    }
.flexbox #page-footer-lower #footer-lower ul {
    white-space: normal;
    }
.flexbox #page-footer-lower #footer-poweredby,
.flexbox #page-footer-lower #footer-sociallinks {
    -webkit-flex: 0 1 0;
    -ms-flex: 0 1 0;
    flex: 0 1 0;
    line-height: 30px;
    padding-top: 8px;
    }
@media screen and (max-width: /*style._content_width(*/1360px/*)*/) {
.flexbox #page-lower {
    -webkit-justify-content: space-around;
    -ms-flex-pack: distribute;
    justify-content: space-around;
    }
.flexbox #page-lower #footer-lower {
    -webkit-flex: 0 1 440px;
    -ms-flex: 0 1 440px;
    flex: 0 1 440px;
    }
}

@media screen and (max-width: /*style._first_content_break_max(*/1000px/*)*/) {
.flexbox #page-footer-lower {
    padding: 0 40px /*style._content_two_third_gap(*/20px/*)*/;
    }
.flexbox #page-footer-lower #footer-lower {
    padding: 0 5px;
    -webkit-flex: 0 1 100%;
    -ms-flex: 0 1 100%;
    flex: 0 1 100%;
    }
.flexbox #page-footer-lower #footer-lower ul.evMenu {
    margin-top: /*style._content_two_third_gap(*/20px/*)*/;
    text-align: inherit;
    }
.flexbox #page-footer-lower #footer-lower ul.evMenu li {
    float: left;
    clear: left;
    }
.flexbox #page-footer-lower #footer-lower ul.evMenu li a {
    padding: 5px /*style._content_third_gap(*/10px/*)*/;
    }
.flexbox #page-footer-lower #footer-sociallinks {
    padding-top: /*style._content_gap(*/30px/*)*/;
    -webkit-flex: 0 1 100%;
    -ms-flex: 0 1 100%;
    flex: 0 1 100%;
    }
.flexbox #page-footer-lower #footer-sociallinks .label {
    display: block;
    margin-bottom: /*style._content_third_gap(*/10px/*)*/;
    }
.flexbox #page-footer-lower #footer-sociallinks .evSocialLinks {
    margin-left: -7px;
    }
}

@media screen and (max-width: /*style._second_content_break_max(*/448px/*)*/) {
#page-footer {
    padding: /*style._content_gap(*/30px/*)*/ /*style._content_third_gap(*/10px/*)*/;
    }
.flexbox #page-footer-lower {
    padding: 0 /*style._content_third_gap(*/10px/*)*/ /*style._content_two_third_gap(*/20px/*)*/;
    }
.flexbox #page-footer-lower #footer-lower {
    padding: 0;
    }
.flexbox #page-footer-lower #footer-lower ul.evMenu li a {
    padding-left: 0;
    }
.flexbox #page-footer-lower #footer-sociallinks {
    padding: /*style._content_gap(*/30px/*)*/ 0;
    }
}

/*
		input-placeholder
		-----------------
		@fragment input-placeholder(#(0), #(1), #(2));
		#(0) is the colour for the placeholder text; e.g. #ff0000
        #(1) is the font style for the placeholder text; e.g. italic
		#(2) is the element selector; e.g. input.numeric
	*/
/*
		header-styles
		-----------------
		@fragment h1-h6-style
        used if heading styles not possible directly
	*/
/*
    	socialIcon
		----------
		@fragment socialIcon(#(0), #(1));
		#(0) is the icon font string; e.g. "\e600"
		#(1) is the colour for the icon; e.g. #ff0000
	*/
@font-face {
    font-family: 'socialIcons';
    src: url(/portal/web/387/theme/Stripe/common/fonts/socialIcons/socialIcons.eot?-y9ukkv=&v=1484826382);
    src: url(/portal/web/387/theme/Stripe/common/fonts/socialIcons/socialIcons.eot?v=1484826382#iefix-y9ukkv) format('embedded-opentype'),url(/portal/web/387/theme/Stripe/common/fonts/socialIcons/socialIcons.woff?-y9ukkv=&v=1484826382) format('woff'),url(/portal/web/387/theme/Stripe/common/fonts/socialIcons/socialIcons.ttf?-y9ukkv=&v=1484826382) format('truetype'),url(/portal/web/387/theme/Stripe/common/fonts/socialIcons/socialIcons.svg?-y9ukkv=&v=1484826382#socialIcons) format('svg');
    font-weight: normal;
    font-style: normal;
    speak: none;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    }
@font-face {
    font-family: 'themeIcons';
    src: url(/portal/web/387/theme/Stripe/common/fonts/theme/icons.eot?-y9ukkv=&v=1484826382);
    src: url(/portal/web/387/theme/Stripe/common/fonts/theme/icons.eot?v=1484826382#iefix-y9ukkv) format('embedded-opentype'),url(/portal/web/387/theme/Stripe/common/fonts/theme/icons.woff?-y9ukkv=&v=1484826382) format('woff'),url(/portal/web/387/theme/Stripe/common/fonts/theme/icons.ttf?-y9ukkv=&v=1484826382) format('truetype'),url(/portal/web/387/theme/Stripe/common/fonts/theme/icons.svg?-y9ukkv=&v=1484826382#icons) format('svg');
    font-weight: normal;
    font-style: normal;
    speak: none;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    }
.icon {
    display: inline-block;
    vertical-align: middle;
    width: 1em;
    height: 1em;
    font-size: 1em;
    line-height: 1;
    }
.icon + .label,
.icon + .iconLabel {
    display: inline-block;
    vertical-align: middle;
    padding-left: /*style._content_third_gap(*/10px/*)*/;
    }
.icon.loading {
    line-height: 1em;
    }
.icon.spinner-2:before,
.icon.loading:before {
    font-family: 'ev2' !important;
    content: "\e0fa" !important;
    }
.icon.plus,
.icon.minus {
    font-size: 20px;
    }

/*
    Social / Share Icons
    --------------------
    Brand colours retrieved from: http://brandcolors.net?brands=39,58,68,70,72,76,78,92,99,112,132,133,148,149,150,155,156,168.
    The colours can be changed to whatever (and can be customisable if you wish).
*/
.evSocialLinks,
.evShareLinks {
    display: -moz-inline-box;
    display: inline-block;
    zoom: 1;
    *display: inline;
    }
.evSocialLinks,
.evShareLinks,
.evSocialLinks li,
.evShareLinks li {
    display: inline-block;
    list-style: none;
    padding: 0;
    margin: 0;
    }
.evSocialLinks span.label,
.evShareLinks span.label,
.evSocialLinks li span.label,
.evShareLinks li span.label {
    display: none;
    }
.evShareLinks {
    padding-top: /*style._content_third_gap(*/10px/*)*/;
    }
.socialIcon,
.shareIcon {
    position: relative;
    background-image: none !important;
    height: /*style._social_icon_height(*/32px/*)*/;
    width: /*style._social_icon_height(*/32px/*)*/;
    display: inline-block;
    text-align: center;
    vertical-align: middle;
    font-size: /*style._social_icon_font_size(*/16px/*)*/;
    line-height: 16px;
    padding: 8px;
    border-width: /*style._social_icon_border_width(*/0/*)*/;
    border-style: solid;
    border-radius: /*style.social_icon_border_radius(*/100%/*)*/;
    border-color: inherit;
    background-color: /*style._social_icon_background_color(*/transparent/*)*/;
    }
.socialIcon:before,
.shareIcon:before {
    font-family: 'socialIcons';
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    vertical-align: baseline;
    -webkit-transition: color /*style.animation_speed(*/0.3s/*)*/;
    transition: color /*style.animation_speed(*/0.3s/*)*/;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    color: /*style._social_icon_color(*/#363636/*)*/;
    }
.socialIcon:hover,
.socialIcon.hover,
.socialIcon:focus,
.socialIcon.focus,
a:hover .socialIcon,
a.hover .socialIcon,
a:focus .socialIcon,
a.focus .socialIcon,
.shareIcon:hover,
.shareIcon.hover,
.shareIcon:focus,
.shareIcon.focus,
a:hover .shareIcon,
a.hover .shareIcon,
a:focus .shareIcon,
a.focus .shareIcon {
    text-decoration: none;
    outline: none;
    }
.socialIcon:hover:before,
.socialIcon.hover:before,
.socialIcon:focus:before,
.socialIcon.focus:before,
a:hover .socialIcon:before,
a.hover .socialIcon:before,
a:focus .socialIcon:before,
a.focus .socialIcon:before,
.shareIcon:hover:before,
.shareIcon.hover:before,
.shareIcon:focus:before,
.shareIcon.focus:before,
a:hover .shareIcon:before,
a.hover .shareIcon:before,
a:focus .shareIcon:before,
a.focus .shareIcon:before {
    color: /*style._hover_social_icon_color(*/#fff/*)*/;
    }
.socialIcon.facebook,
.shareIcon.facebook {
    -webkit-transition: all /*style.animation_speed(*/0.3s/*)*/ ease-in;
    transition: all /*style.animation_speed(*/0.3s/*)*/ ease-in;
    background: none;
    color: /*style._social_icon_color(*/#363636/*)*/;
    border-color: #3b5998;
    background-color: /*style._social_icon_background_color(*/transparent/*)*/;
    }
.socialIcon.facebook:before,
.shareIcon.facebook:before {
    content: "\e700";
    }
.socialIcon.facebook:hover,
.socialIcon.facebook.hover,
.socialIcon.facebook:focus,
.socialIcon.facebook.focus,
a:hover .socialIcon.facebook,
a.hover .socialIcon.facebook,
a:focus .socialIcon.facebook,
a.focus .socialIcon.facebook,
.shareIcon.facebook:hover,
.shareIcon.facebook.hover,
.shareIcon.facebook:focus,
.shareIcon.facebook.focus,
a:hover .shareIcon.facebook,
a.hover .shareIcon.facebook,
a:focus .shareIcon.facebook,
a.focus .shareIcon.facebook {
    color: #3b5998;
    color: /*style._hover_social_icon_color(*/#fff/*)*/;
    border-color: #3b5998;
    background-color: #3b5998;
    }
.socialIcon.flickr,
.shareIcon.flickr {
    -webkit-transition: all /*style.animation_speed(*/0.3s/*)*/ ease-in;
    transition: all /*style.animation_speed(*/0.3s/*)*/ ease-in;
    background: none;
    color: /*style._social_icon_color(*/#363636/*)*/;
    border-color: #ff0084;
    background-color: /*style._social_icon_background_color(*/transparent/*)*/;
    }
.socialIcon.flickr:before,
.shareIcon.flickr:before {
    content: "\e701";
    }
.socialIcon.flickr:hover,
.socialIcon.flickr.hover,
.socialIcon.flickr:focus,
.socialIcon.flickr.focus,
a:hover .socialIcon.flickr,
a.hover .socialIcon.flickr,
a:focus .socialIcon.flickr,
a.focus .socialIcon.flickr,
.shareIcon.flickr:hover,
.shareIcon.flickr.hover,
.shareIcon.flickr:focus,
.shareIcon.flickr.focus,
a:hover .shareIcon.flickr,
a.hover .shareIcon.flickr,
a:focus .shareIcon.flickr,
a.focus .shareIcon.flickr {
    color: #ff0084;
    color: /*style._hover_social_icon_color(*/#fff/*)*/;
    border-color: #ff0084;
    background-color: #ff0084;
    }
.socialIcon.googlePlus,
.shareIcon.googlePlus {
    -webkit-transition: all /*style.animation_speed(*/0.3s/*)*/ ease-in;
    transition: all /*style.animation_speed(*/0.3s/*)*/ ease-in;
    background: none;
    color: /*style._social_icon_color(*/#363636/*)*/;
    border-color: #dc4e41;
    background-color: /*style._social_icon_background_color(*/transparent/*)*/;
    }
.socialIcon.googlePlus:before,
.shareIcon.googlePlus:before {
    content: "\e702";
    }
.socialIcon.googlePlus:hover,
.socialIcon.googlePlus.hover,
.socialIcon.googlePlus:focus,
.socialIcon.googlePlus.focus,
a:hover .socialIcon.googlePlus,
a.hover .socialIcon.googlePlus,
a:focus .socialIcon.googlePlus,
a.focus .socialIcon.googlePlus,
.shareIcon.googlePlus:hover,
.shareIcon.googlePlus.hover,
.shareIcon.googlePlus:focus,
.shareIcon.googlePlus.focus,
a:hover .shareIcon.googlePlus,
a.hover .shareIcon.googlePlus,
a:focus .shareIcon.googlePlus,
a.focus .shareIcon.googlePlus {
    color: #dc4e41;
    color: /*style._hover_social_icon_color(*/#fff/*)*/;
    border-color: #dc4e41;
    background-color: #dc4e41;
    }
.socialIcon.linkedIn,
.shareIcon.linkedIn {
    -webkit-transition: all /*style.animation_speed(*/0.3s/*)*/ ease-in;
    transition: all /*style.animation_speed(*/0.3s/*)*/ ease-in;
    background: none;
    color: /*style._social_icon_color(*/#363636/*)*/;
    border-color: #0077b5;
    background-color: /*style._social_icon_background_color(*/transparent/*)*/;
    }
.socialIcon.linkedIn:before,
.shareIcon.linkedIn:before {
    content: "\e703";
    }
.socialIcon.linkedIn:hover,
.socialIcon.linkedIn.hover,
.socialIcon.linkedIn:focus,
.socialIcon.linkedIn.focus,
a:hover .socialIcon.linkedIn,
a.hover .socialIcon.linkedIn,
a:focus .socialIcon.linkedIn,
a.focus .socialIcon.linkedIn,
.shareIcon.linkedIn:hover,
.shareIcon.linkedIn.hover,
.shareIcon.linkedIn:focus,
.shareIcon.linkedIn.focus,
a:hover .shareIcon.linkedIn,
a.hover .shareIcon.linkedIn,
a:focus .shareIcon.linkedIn,
a.focus .shareIcon.linkedIn {
    color: #0077b5;
    color: /*style._hover_social_icon_color(*/#fff/*)*/;
    border-color: #0077b5;
    background-color: #0077b5;
    }
.socialIcon.pinterest,
.shareIcon.pinterest {
    -webkit-transition: all /*style.animation_speed(*/0.3s/*)*/ ease-in;
    transition: all /*style.animation_speed(*/0.3s/*)*/ ease-in;
    background: none;
    color: /*style._social_icon_color(*/#363636/*)*/;
    border-color: #bd081c;
    background-color: /*style._social_icon_background_color(*/transparent/*)*/;
    }
.socialIcon.pinterest:before,
.shareIcon.pinterest:before {
    content: "\e704";
    }
.socialIcon.pinterest:hover,
.socialIcon.pinterest.hover,
.socialIcon.pinterest:focus,
.socialIcon.pinterest.focus,
a:hover .socialIcon.pinterest,
a.hover .socialIcon.pinterest,
a:focus .socialIcon.pinterest,
a.focus .socialIcon.pinterest,
.shareIcon.pinterest:hover,
.shareIcon.pinterest.hover,
.shareIcon.pinterest:focus,
.shareIcon.pinterest.focus,
a:hover .shareIcon.pinterest,
a.hover .shareIcon.pinterest,
a:focus .shareIcon.pinterest,
a.focus .shareIcon.pinterest {
    color: #bd081c;
    color: /*style._hover_social_icon_color(*/#fff/*)*/;
    border-color: #bd081c;
    background-color: #bd081c;
    }
.socialIcon.twitter,
.shareIcon.twitter {
    -webkit-transition: all /*style.animation_speed(*/0.3s/*)*/ ease-in;
    transition: all /*style.animation_speed(*/0.3s/*)*/ ease-in;
    background: none;
    color: /*style._social_icon_color(*/#363636/*)*/;
    border-color: #55acee;
    background-color: /*style._social_icon_background_color(*/transparent/*)*/;
    }
.socialIcon.twitter:before,
.shareIcon.twitter:before {
    content: "\e705";
    }
.socialIcon.twitter:hover,
.socialIcon.twitter.hover,
.socialIcon.twitter:focus,
.socialIcon.twitter.focus,
a:hover .socialIcon.twitter,
a.hover .socialIcon.twitter,
a:focus .socialIcon.twitter,
a.focus .socialIcon.twitter,
.shareIcon.twitter:hover,
.shareIcon.twitter.hover,
.shareIcon.twitter:focus,
.shareIcon.twitter.focus,
a:hover .shareIcon.twitter,
a.hover .shareIcon.twitter,
a:focus .shareIcon.twitter,
a.focus .shareIcon.twitter {
    color: #55acee;
    color: /*style._hover_social_icon_color(*/#fff/*)*/;
    border-color: #55acee;
    background-color: #55acee;
    }
.socialIcon.vimeo,
.shareIcon.vimeo {
    -webkit-transition: all /*style.animation_speed(*/0.3s/*)*/ ease-in;
    transition: all /*style.animation_speed(*/0.3s/*)*/ ease-in;
    background: none;
    color: /*style._social_icon_color(*/#363636/*)*/;
    border-color: #1ab7ea;
    background-color: /*style._social_icon_background_color(*/transparent/*)*/;
    }
.socialIcon.vimeo:before,
.shareIcon.vimeo:before {
    content: "\e706";
    }
.socialIcon.vimeo:hover,
.socialIcon.vimeo.hover,
.socialIcon.vimeo:focus,
.socialIcon.vimeo.focus,
a:hover .socialIcon.vimeo,
a.hover .socialIcon.vimeo,
a:focus .socialIcon.vimeo,
a.focus .socialIcon.vimeo,
.shareIcon.vimeo:hover,
.shareIcon.vimeo.hover,
.shareIcon.vimeo:focus,
.shareIcon.vimeo.focus,
a:hover .shareIcon.vimeo,
a.hover .shareIcon.vimeo,
a:focus .shareIcon.vimeo,
a.focus .shareIcon.vimeo {
    color: #1ab7ea;
    color: /*style._hover_social_icon_color(*/#fff/*)*/;
    border-color: #1ab7ea;
    background-color: #1ab7ea;
    }
.socialIcon.youTube,
.shareIcon.youTube {
    -webkit-transition: all /*style.animation_speed(*/0.3s/*)*/ ease-in;
    transition: all /*style.animation_speed(*/0.3s/*)*/ ease-in;
    background: none;
    color: /*style._social_icon_color(*/#363636/*)*/;
    border-color: #cd201f;
    background-color: /*style._social_icon_background_color(*/transparent/*)*/;
    }
.socialIcon.youTube:before,
.shareIcon.youTube:before {
    content: "\e707";
    }
.socialIcon.youTube:hover,
.socialIcon.youTube.hover,
.socialIcon.youTube:focus,
.socialIcon.youTube.focus,
a:hover .socialIcon.youTube,
a.hover .socialIcon.youTube,
a:focus .socialIcon.youTube,
a.focus .socialIcon.youTube,
.shareIcon.youTube:hover,
.shareIcon.youTube.hover,
.shareIcon.youTube:focus,
.shareIcon.youTube.focus,
a:hover .shareIcon.youTube,
a.hover .shareIcon.youTube,
a:focus .shareIcon.youTube,
a.focus .shareIcon.youTube {
    color: #cd201f;
    color: /*style._hover_social_icon_color(*/#fff/*)*/;
    border-color: #cd201f;
    background-color: #cd201f;
    }
.socialIcon.instagram,
.shareIcon.instagram {
    -webkit-transition: all /*style.animation_speed(*/0.3s/*)*/ ease-in;
    transition: all /*style.animation_speed(*/0.3s/*)*/ ease-in;
    background: none;
    color: /*style._social_icon_color(*/#363636/*)*/;
    border-color: #3f729b;
    background-color: /*style._social_icon_background_color(*/transparent/*)*/;
    }
.socialIcon.instagram:before,
.shareIcon.instagram:before {
    content: "\e708";
    }
.socialIcon.instagram:hover,
.socialIcon.instagram.hover,
.socialIcon.instagram:focus,
.socialIcon.instagram.focus,
a:hover .socialIcon.instagram,
a.hover .socialIcon.instagram,
a:focus .socialIcon.instagram,
a.focus .socialIcon.instagram,
.shareIcon.instagram:hover,
.shareIcon.instagram.hover,
.shareIcon.instagram:focus,
.shareIcon.instagram.focus,
a:hover .shareIcon.instagram,
a.hover .shareIcon.instagram,
a:focus .shareIcon.instagram,
a.focus .shareIcon.instagram {
    color: #3f729b;
    color: /*style._hover_social_icon_color(*/#fff/*)*/;
    border-color: #3f729b;
    background-color: #3f729b;
    }
.socialIcon.dribbble,
.shareIcon.dribbble {
    -webkit-transition: all /*style.animation_speed(*/0.3s/*)*/ ease-in;
    transition: all /*style.animation_speed(*/0.3s/*)*/ ease-in;
    background: none;
    color: /*style._social_icon_color(*/#363636/*)*/;
    border-color: #ea4c89;
    background-color: /*style._social_icon_background_color(*/transparent/*)*/;
    }
.socialIcon.dribbble:before,
.shareIcon.dribbble:before {
    content: "\e709";
    }
.socialIcon.dribbble:hover,
.socialIcon.dribbble.hover,
.socialIcon.dribbble:focus,
.socialIcon.dribbble.focus,
a:hover .socialIcon.dribbble,
a.hover .socialIcon.dribbble,
a:focus .socialIcon.dribbble,
a.focus .socialIcon.dribbble,
.shareIcon.dribbble:hover,
.shareIcon.dribbble.hover,
.shareIcon.dribbble:focus,
.shareIcon.dribbble.focus,
a:hover .shareIcon.dribbble,
a.hover .shareIcon.dribbble,
a:focus .shareIcon.dribbble,
a.focus .shareIcon.dribbble {
    color: #ea4c89;
    color: /*style._hover_social_icon_color(*/#fff/*)*/;
    border-color: #ea4c89;
    background-color: #ea4c89;
    }
.socialIcon.tumblr,
.shareIcon.tumblr {
    -webkit-transition: all /*style.animation_speed(*/0.3s/*)*/ ease-in;
    transition: all /*style.animation_speed(*/0.3s/*)*/ ease-in;
    background: none;
    color: /*style._social_icon_color(*/#363636/*)*/;
    border-color: #35465c;
    background-color: /*style._social_icon_background_color(*/transparent/*)*/;
    }
.socialIcon.tumblr:before,
.shareIcon.tumblr:before {
    content: "\e710";
    }
.socialIcon.tumblr:hover,
.socialIcon.tumblr.hover,
.socialIcon.tumblr:focus,
.socialIcon.tumblr.focus,
a:hover .socialIcon.tumblr,
a.hover .socialIcon.tumblr,
a:focus .socialIcon.tumblr,
a.focus .socialIcon.tumblr,
.shareIcon.tumblr:hover,
.shareIcon.tumblr.hover,
.shareIcon.tumblr:focus,
.shareIcon.tumblr.focus,
a:hover .shareIcon.tumblr,
a.hover .shareIcon.tumblr,
a:focus .shareIcon.tumblr,
a.focus .shareIcon.tumblr {
    color: #35465c;
    color: /*style._hover_social_icon_color(*/#fff/*)*/;
    border-color: #35465c;
    background-color: #35465c;
    }
.socialIcon.foursquare,
.shareIcon.foursquare {
    -webkit-transition: all /*style.animation_speed(*/0.3s/*)*/ ease-in;
    transition: all /*style.animation_speed(*/0.3s/*)*/ ease-in;
    background: none;
    color: /*style._social_icon_color(*/#363636/*)*/;
    border-color: #f94877;
    background-color: /*style._social_icon_background_color(*/transparent/*)*/;
    }
.socialIcon.foursquare:before,
.shareIcon.foursquare:before {
    content: "\e711";
    }
.socialIcon.foursquare:hover,
.socialIcon.foursquare.hover,
.socialIcon.foursquare:focus,
.socialIcon.foursquare.focus,
a:hover .socialIcon.foursquare,
a.hover .socialIcon.foursquare,
a:focus .socialIcon.foursquare,
a.focus .socialIcon.foursquare,
.shareIcon.foursquare:hover,
.shareIcon.foursquare.hover,
.shareIcon.foursquare:focus,
.shareIcon.foursquare.focus,
a:hover .shareIcon.foursquare,
a.hover .shareIcon.foursquare,
a:focus .shareIcon.foursquare,
a.focus .shareIcon.foursquare {
    color: #f94877;
    color: /*style._hover_social_icon_color(*/#fff/*)*/;
    border-color: #f94877;
    background-color: #f94877;
    }
.socialIcon.vine,
.shareIcon.vine {
    -webkit-transition: all /*style.animation_speed(*/0.3s/*)*/ ease-in;
    transition: all /*style.animation_speed(*/0.3s/*)*/ ease-in;
    background: none;
    color: /*style._social_icon_color(*/#363636/*)*/;
    border-color: #00b488;
    background-color: /*style._social_icon_background_color(*/transparent/*)*/;
    }
.socialIcon.vine:before,
.shareIcon.vine:before {
    content: "\e712";
    }
.socialIcon.vine:hover,
.socialIcon.vine.hover,
.socialIcon.vine:focus,
.socialIcon.vine.focus,
a:hover .socialIcon.vine,
a.hover .socialIcon.vine,
a:focus .socialIcon.vine,
a.focus .socialIcon.vine,
.shareIcon.vine:hover,
.shareIcon.vine.hover,
.shareIcon.vine:focus,
.shareIcon.vine.focus,
a:hover .shareIcon.vine,
a.hover .shareIcon.vine,
a:focus .shareIcon.vine,
a.focus .shareIcon.vine {
    color: #00b488;
    color: /*style._hover_social_icon_color(*/#fff/*)*/;
    border-color: #00b488;
    background-color: #00b488;
    }
.socialIcon.soundcloud,
.shareIcon.soundcloud {
    -webkit-transition: all /*style.animation_speed(*/0.3s/*)*/ ease-in;
    transition: all /*style.animation_speed(*/0.3s/*)*/ ease-in;
    background: none;
    color: /*style._social_icon_color(*/#363636/*)*/;
    border-color: #f80;
    background-color: /*style._social_icon_background_color(*/transparent/*)*/;
    }
.socialIcon.soundcloud:before,
.shareIcon.soundcloud:before {
    content: "\e713";
    }
.socialIcon.soundcloud:hover,
.socialIcon.soundcloud.hover,
.socialIcon.soundcloud:focus,
.socialIcon.soundcloud.focus,
a:hover .socialIcon.soundcloud,
a.hover .socialIcon.soundcloud,
a:focus .socialIcon.soundcloud,
a.focus .socialIcon.soundcloud,
.shareIcon.soundcloud:hover,
.shareIcon.soundcloud.hover,
.shareIcon.soundcloud:focus,
.shareIcon.soundcloud.focus,
a:hover .shareIcon.soundcloud,
a.hover .shareIcon.soundcloud,
a:focus .shareIcon.soundcloud,
a.focus .shareIcon.soundcloud {
    color: #f80;
    color: /*style._hover_social_icon_color(*/#fff/*)*/;
    border-color: #f80;
    background-color: #f80;
    }
.socialIcon.spotify,
.shareIcon.spotify {
    -webkit-transition: all /*style.animation_speed(*/0.3s/*)*/ ease-in;
    transition: all /*style.animation_speed(*/0.3s/*)*/ ease-in;
    background: none;
    color: /*style._social_icon_color(*/#363636/*)*/;
    border-color: #2ebd59;
    background-color: /*style._social_icon_background_color(*/transparent/*)*/;
    }
.socialIcon.spotify:before,
.shareIcon.spotify:before {
    content: "\e714";
    }
.socialIcon.spotify:hover,
.socialIcon.spotify.hover,
.socialIcon.spotify:focus,
.socialIcon.spotify.focus,
a:hover .socialIcon.spotify,
a.hover .socialIcon.spotify,
a:focus .socialIcon.spotify,
a.focus .socialIcon.spotify,
.shareIcon.spotify:hover,
.shareIcon.spotify.hover,
.shareIcon.spotify:focus,
.shareIcon.spotify.focus,
a:hover .shareIcon.spotify,
a.hover .shareIcon.spotify,
a:focus .shareIcon.spotify,
a.focus .shareIcon.spotify {
    color: #2ebd59;
    color: /*style._hover_social_icon_color(*/#fff/*)*/;
    border-color: #2ebd59;
    background-color: #2ebd59;
    }
.socialIcon.behance,
.shareIcon.behance {
    -webkit-transition: all /*style.animation_speed(*/0.3s/*)*/ ease-in;
    transition: all /*style.animation_speed(*/0.3s/*)*/ ease-in;
    background: none;
    color: /*style._social_icon_color(*/#363636/*)*/;
    border-color: #1769ff;
    background-color: /*style._social_icon_background_color(*/transparent/*)*/;
    }
.socialIcon.behance:before,
.shareIcon.behance:before {
    content: "\e715";
    }
.socialIcon.behance:hover,
.socialIcon.behance.hover,
.socialIcon.behance:focus,
.socialIcon.behance.focus,
a:hover .socialIcon.behance,
a.hover .socialIcon.behance,
a:focus .socialIcon.behance,
a.focus .socialIcon.behance,
.shareIcon.behance:hover,
.shareIcon.behance.hover,
.shareIcon.behance:focus,
.shareIcon.behance.focus,
a:hover .shareIcon.behance,
a.hover .shareIcon.behance,
a:focus .shareIcon.behance,
a.focus .shareIcon.behance {
    color: #1769ff;
    color: /*style._hover_social_icon_color(*/#fff/*)*/;
    border-color: #1769ff;
    background-color: #1769ff;
    }
.socialIcon.github,
.shareIcon.github {
    -webkit-transition: all /*style.animation_speed(*/0.3s/*)*/ ease-in;
    transition: all /*style.animation_speed(*/0.3s/*)*/ ease-in;
    background: none;
    color: /*style._social_icon_color(*/#363636/*)*/;
    border-color: #4183c4;
    background-color: /*style._social_icon_background_color(*/transparent/*)*/;
    }
.socialIcon.github:before,
.shareIcon.github:before {
    content: "\e716";
    }
.socialIcon.github:hover,
.socialIcon.github.hover,
.socialIcon.github:focus,
.socialIcon.github.focus,
a:hover .socialIcon.github,
a.hover .socialIcon.github,
a:focus .socialIcon.github,
a.focus .socialIcon.github,
.shareIcon.github:hover,
.shareIcon.github.hover,
.shareIcon.github:focus,
.shareIcon.github.focus,
a:hover .shareIcon.github,
a.hover .shareIcon.github,
a:focus .shareIcon.github,
a.focus .shareIcon.github {
    color: #4183c4;
    color: /*style._hover_social_icon_color(*/#fff/*)*/;
    border-color: #4183c4;
    background-color: #4183c4;
    }
.socialIcon.twitch,
.shareIcon.twitch {
    -webkit-transition: all /*style.animation_speed(*/0.3s/*)*/ ease-in;
    transition: all /*style.animation_speed(*/0.3s/*)*/ ease-in;
    background: none;
    color: /*style._social_icon_color(*/#363636/*)*/;
    border-color: #6441a5;
    background-color: /*style._social_icon_background_color(*/transparent/*)*/;
    }
.socialIcon.twitch:before,
.shareIcon.twitch:before {
    content: "\e717";
    }
.socialIcon.twitch:hover,
.socialIcon.twitch.hover,
.socialIcon.twitch:focus,
.socialIcon.twitch.focus,
a:hover .socialIcon.twitch,
a.hover .socialIcon.twitch,
a:focus .socialIcon.twitch,
a.focus .socialIcon.twitch,
.shareIcon.twitch:hover,
.shareIcon.twitch.hover,
.shareIcon.twitch:focus,
.shareIcon.twitch.focus,
a:hover .shareIcon.twitch,
a.hover .shareIcon.twitch,
a:focus .shareIcon.twitch,
a.focus .shareIcon.twitch {
    color: #6441a5;
    color: /*style._hover_social_icon_color(*/#fff/*)*/;
    border-color: #6441a5;
    background-color: #6441a5;
    }
.socialIcon.azexis,
.shareIcon.azexis {
    -webkit-transition: all /*style.animation_speed(*/0.3s/*)*/ ease-in;
    transition: all /*style.animation_speed(*/0.3s/*)*/ ease-in;
    background: none;
    color: /*style._social_icon_color(*/#363636/*)*/;
    border-color: #000;
    background-color: /*style._social_icon_background_color(*/transparent/*)*/;
    }
.socialIcon.azexis:before,
.shareIcon.azexis:before {
    content: "\e70a";
    }
.socialIcon.azexis:hover,
.socialIcon.azexis.hover,
.socialIcon.azexis:focus,
.socialIcon.azexis.focus,
a:hover .socialIcon.azexis,
a.hover .socialIcon.azexis,
a:focus .socialIcon.azexis,
a.focus .socialIcon.azexis,
.shareIcon.azexis:hover,
.shareIcon.azexis.hover,
.shareIcon.azexis:focus,
.shareIcon.azexis.focus,
a:hover .shareIcon.azexis,
a.hover .shareIcon.azexis,
a:focus .shareIcon.azexis,
a.focus .shareIcon.azexis {
    color: #000;
    color: /*style._hover_social_icon_color(*/#fff/*)*/;
    border-color: #000;
    background-color: #000;
    }
.socialIcon.evance,
.shareIcon.evance {
    -webkit-transition: all /*style.animation_speed(*/0.3s/*)*/ ease-in;
    transition: all /*style.animation_speed(*/0.3s/*)*/ ease-in;
    background: none;
    color: /*style._social_icon_color(*/#363636/*)*/;
    border-color: #6c40af;
    background-color: /*style._social_icon_background_color(*/transparent/*)*/;
    }
.socialIcon.evance:before,
.shareIcon.evance:before {
    content: "\e70b";
    }
.socialIcon.evance:hover,
.socialIcon.evance.hover,
.socialIcon.evance:focus,
.socialIcon.evance.focus,
a:hover .socialIcon.evance,
a.hover .socialIcon.evance,
a:focus .socialIcon.evance,
a.focus .socialIcon.evance,
.shareIcon.evance:hover,
.shareIcon.evance.hover,
.shareIcon.evance:focus,
.shareIcon.evance.focus,
a:hover .shareIcon.evance,
a.hover .shareIcon.evance,
a:focus .shareIcon.evance,
a.focus .shareIcon.evance {
    color: #6c40af;
    color: /*style._hover_social_icon_color(*/#fff/*)*/;
    border-color: #6c40af;
    background-color: #6c40af;
    }
.socialIcon.feed,
.shareIcon.feed {
    -webkit-transition: all /*style.animation_speed(*/0.3s/*)*/ ease-in;
    transition: all /*style.animation_speed(*/0.3s/*)*/ ease-in;
    background: none;
    color: /*style._social_icon_color(*/#363636/*)*/;
    border-color: #f57321;
    background-color: /*style._social_icon_background_color(*/transparent/*)*/;
    }
.socialIcon.feed:before,
.shareIcon.feed:before {
    content: "\e71a";
    }
.socialIcon.feed:hover,
.socialIcon.feed.hover,
.socialIcon.feed:focus,
.socialIcon.feed.focus,
a:hover .socialIcon.feed,
a.hover .socialIcon.feed,
a:focus .socialIcon.feed,
a.focus .socialIcon.feed,
.shareIcon.feed:hover,
.shareIcon.feed.hover,
.shareIcon.feed:focus,
.shareIcon.feed.focus,
a:hover .shareIcon.feed,
a.hover .shareIcon.feed,
a:focus .shareIcon.feed,
a.focus .shareIcon.feed {
    color: #f57321;
    color: /*style._hover_social_icon_color(*/#fff/*)*/;
    border-color: #f57321;
    background-color: #f57321;
    }
.socialIcon.send,
.shareIcon.send {
    -webkit-transition: all /*style.animation_speed(*/0.3s/*)*/ ease-in;
    transition: all /*style.animation_speed(*/0.3s/*)*/ ease-in;
    background: none;
    color: /*style._social_icon_color(*/#363636/*)*/;
    border-color: #000;
    background-color: /*style._social_icon_background_color(*/transparent/*)*/;
    }
.socialIcon.send:before,
.shareIcon.send:before {
    content: "\e71b";
    }
.socialIcon.send:hover,
.socialIcon.send.hover,
.socialIcon.send:focus,
.socialIcon.send.focus,
a:hover .socialIcon.send,
a.hover .socialIcon.send,
a:focus .socialIcon.send,
a.focus .socialIcon.send,
.shareIcon.send:hover,
.shareIcon.send.hover,
.shareIcon.send:focus,
.shareIcon.send.focus,
a:hover .shareIcon.send,
a.hover .shareIcon.send,
a:focus .shareIcon.send,
a.focus .shareIcon.send {
    color: #000;
    color: /*style._hover_social_icon_color(*/#fff/*)*/;
    border-color: #000;
    background-color: #000;
    }
.socialIcon.favourite,
.shareIcon.favourite {
    -webkit-transition: all /*style.animation_speed(*/0.3s/*)*/ ease-in;
    transition: all /*style.animation_speed(*/0.3s/*)*/ ease-in;
    background: none;
    color: /*style._social_icon_color(*/#363636/*)*/;
    border-color: #19388A;
    background-color: /*style._social_icon_background_color(*/transparent/*)*/;
    }
.socialIcon.favourite:before,
.shareIcon.favourite:before {
    content: "\e71c";
    }
.socialIcon.favourite:hover,
.socialIcon.favourite.hover,
.socialIcon.favourite:focus,
.socialIcon.favourite.focus,
a:hover .socialIcon.favourite,
a.hover .socialIcon.favourite,
a:focus .socialIcon.favourite,
a.focus .socialIcon.favourite,
.shareIcon.favourite:hover,
.shareIcon.favourite.hover,
.shareIcon.favourite:focus,
.shareIcon.favourite.focus,
a:hover .shareIcon.favourite,
a.hover .shareIcon.favourite,
a:focus .shareIcon.favourite,
a.focus .shareIcon.favourite {
    color: #19388A;
    color: /*style._hover_social_icon_color(*/#fff/*)*/;
    border-color: #19388A;
    background-color: #19388A;
    }

/*
    Author / Platform Icons
    -----------------------
*/
.evByLinks {
    display: -moz-inline-box;
    display: inline-block;
    zoom: 1;
    *display: inline;
    }
.evByLinks,
.evByLinks li {
    display: inline-block;
    list-style: none;
    padding: 0;
    margin: 0;
    }
.byIcon {
    position: relative;
    background-image: none;
    height: /*style._social_icon_height(*/32px/*)*/;
    width: /*style._social_icon_height(*/32px/*)*/;
    display: inline-block;
    text-align: center;
    vertical-align: middle;
    font-size: /*style._social_icon_font_size(*/16px/*)*/;
    line-height: 16px;
    padding: 8px;
    border-width: /*style._social_icon_border_width(*/0/*)*/;
    border-style: solid;
    border-color: inherit;
    border-radius: /*style.social_icon_border_radius(*/100%/*)*/;
    background-color: /*style._social_icon_background_color(*/transparent/*)*/;
    }
.byIcon:before {
    font-family: 'socialIcons';
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    vertical-align: baseline;
    -webkit-transition: color /*style.animation_speed(*/0.3s/*)*/;
    transition: color /*style.animation_speed(*/0.3s/*)*/;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    color: /*style._social_icon_color(*/#363636/*)*/;
    }
.byIcon:hover,
.byIcon.hover,
.byIcon:focus,
.byIcon.focus,
a:hover .byIcon,
a.hover .byIcon,
a:focus .byIcon,
a.focus .byIcon {
    text-decoration: none;
    outline: none;
    }
.byIcon:hover:before,
.byIcon.hover:before,
.byIcon:focus:before,
.byIcon.focus:before,
a:hover .byIcon:before,
a.hover .byIcon:before,
a:focus .byIcon:before,
a.focus .byIcon:before {
    color: /*style._hover_social_icon_color(*/#fff/*)*/;
    }
.byIcon.azexis {
    -webkit-transition: all /*style.animation_speed(*/0.3s/*)*/ ease-in;
    transition: all /*style.animation_speed(*/0.3s/*)*/ ease-in;
    background: none;
    color: /*style._social_icon_color(*/#363636/*)*/;
    border-color: #000;
    background-color: /*style._social_icon_background_color(*/transparent/*)*/;
    }
.byIcon.azexis:before {
    content: "\e70a";
    }
.byIcon.azexis:hover,
.byIcon.azexis.hover,
.byIcon.azexis:focus,
.byIcon.azexis.focus,
a:hover .byIcon.azexis,
a.hover .byIcon.azexis,
a:focus .byIcon.azexis,
a.focus .byIcon.azexis {
    color: #000;
    color: /*style._hover_social_icon_color(*/#fff/*)*/;
    border-color: #000;
    background-color: #000;
    }
.byIcon.evance {
    -webkit-transition: all /*style.animation_speed(*/0.3s/*)*/ ease-in;
    transition: all /*style.animation_speed(*/0.3s/*)*/ ease-in;
    background: none;
    color: /*style._social_icon_color(*/#363636/*)*/;
    border-color: #6c40af;
    background-color: /*style._social_icon_background_color(*/transparent/*)*/;
    }
.byIcon.evance:before {
    content: "\e70b";
    }
.byIcon.evance:hover,
.byIcon.evance.hover,
.byIcon.evance:focus,
.byIcon.evance.focus,
a:hover .byIcon.evance,
a.hover .byIcon.evance,
a:focus .byIcon.evance,
a.focus .byIcon.evance {
    color: #6c40af;
    color: /*style._hover_social_icon_color(*/#fff/*)*/;
    border-color: #6c40af;
    background-color: #6c40af;
    }

/*
    evRating
    --------
*/
.evRating {
    color: /*style.star_rating_color(*/#ffc600/*)*/;
    }
.evRating > .icon {
    color: inherit;
    margin-right: 3px;
    text-decoration: none;
    }
.evRating > .icon.last,
.evRating > .icon:last-child {
    margin-right: 0;
    }
form .evRating {
    font-size: 20px;
    }
form .evRating > .icon {
    padding: 2px;
    width: auto;
    height: auto;
    color: #d2d2d2;
    vertical-align: middle;
    }
form .evRating > .icon:before {
    content: "\e05e";
    }
form .evRating > .icon.active,
form .evRating > .icon.hover {
    font-size: 24px;
    padding: 0;
    color: /*style.star_rating_color(*/#ffc600/*)*/;
    }
form .evRating > .icon.hover ~ .icon.active:not(.hover):before {
    content: "\e05c";
    }

/*
    Theme Icons
    -----------
*/
/*
        themeIcon
    	----------
		@fragment themeIcon(#(0), #(1));
		#(0) is the icon font string; e.g. "\e600"
		#(1) is the colour for the icon; e.g. #ff0000
	*/
.icon.flag {
    -webkit-transition: all /*style.animation_speed(*/0.3s/*)*/ ease-in;
    transition: all /*style.animation_speed(*/0.3s/*)*/ ease-in;
    background: none;
    }
.icon.flag:before {
    font-family: "themeIcons";
    content: "\e90f";
    }
.icon.check {
    -webkit-transition: all /*style.animation_speed(*/0.3s/*)*/ ease-in;
    transition: all /*style.animation_speed(*/0.3s/*)*/ ease-in;
    background: none;
    }
.icon.check:before {
    font-family: "themeIcons";
    content: "\e900";
    }
.icon.arrow-down {
    -webkit-transition: all /*style.animation_speed(*/0.3s/*)*/ ease-in;
    transition: all /*style.animation_speed(*/0.3s/*)*/ ease-in;
    background: none;
    }
.icon.arrow-down:before {
    font-family: "themeIcons";
    content: "\e901";
    }
.icon.arrow-left {
    -webkit-transition: all /*style.animation_speed(*/0.3s/*)*/ ease-in;
    transition: all /*style.animation_speed(*/0.3s/*)*/ ease-in;
    background: none;
    }
.icon.arrow-left:before {
    font-family: "themeIcons";
    content: "\e902";
    }
.icon.arrow-right {
    -webkit-transition: all /*style.animation_speed(*/0.3s/*)*/ ease-in;
    transition: all /*style.animation_speed(*/0.3s/*)*/ ease-in;
    background: none;
    }
.icon.arrow-right:before {
    font-family: "themeIcons";
    content: "\e903";
    }
.icon.arrow-up {
    -webkit-transition: all /*style.animation_speed(*/0.3s/*)*/ ease-in;
    transition: all /*style.animation_speed(*/0.3s/*)*/ ease-in;
    background: none;
    }
.icon.arrow-up:before {
    font-family: "themeIcons";
    content: "\e904";
    }
.icon.cancel {
    -webkit-transition: all /*style.animation_speed(*/0.3s/*)*/ ease-in;
    transition: all /*style.animation_speed(*/0.3s/*)*/ ease-in;
    background: none;
    }
.icon.cancel:before {
    font-family: "themeIcons";
    content: "\e905";
    }
.icon.email {
    -webkit-transition: all /*style.animation_speed(*/0.3s/*)*/ ease-in;
    transition: all /*style.animation_speed(*/0.3s/*)*/ ease-in;
    background: none;
    }
.icon.email:before {
    font-family: "themeIcons";
    content: "\e906";
    }
.icon.link {
    -webkit-transition: all /*style.animation_speed(*/0.3s/*)*/ ease-in;
    transition: all /*style.animation_speed(*/0.3s/*)*/ ease-in;
    background: none;
    }
.icon.link:before {
    font-family: "themeIcons";
    content: "\e907";
    }
.icon.heartOn {
    -webkit-transition: all /*style.animation_speed(*/0.3s/*)*/ ease-in;
    transition: all /*style.animation_speed(*/0.3s/*)*/ ease-in;
    background: none;
    }
.icon.heartOn:before {
    font-family: "themeIcons";
    content: "\e908";
    }
.icon.heartOff {
    -webkit-transition: all /*style.animation_speed(*/0.3s/*)*/ ease-in;
    transition: all /*style.animation_speed(*/0.3s/*)*/ ease-in;
    background: none;
    }
.icon.heartOff:before {
    font-family: "themeIcons";
    content: "\e909";
    }
.icon.pin {
    -webkit-transition: all /*style.animation_speed(*/0.3s/*)*/ ease-in;
    transition: all /*style.animation_speed(*/0.3s/*)*/ ease-in;
    background: none;
    }
.icon.pin:before {
    font-family: "themeIcons";
    content: "\e90a";
    }
.icon.search {
    -webkit-transition: all /*style.animation_speed(*/0.3s/*)*/ ease-in;
    transition: all /*style.animation_speed(*/0.3s/*)*/ ease-in;
    background: none;
    }
.icon.search:before {
    font-family: "themeIcons";
    content: "\e90b";
    }
.icon.menu {
    -webkit-transition: all /*style.animation_speed(*/0.3s/*)*/ ease-in;
    transition: all /*style.animation_speed(*/0.3s/*)*/ ease-in;
    background: none;
    }
.icon.menu:before {
    font-family: "themeIcons";
    content: "\e90c";
    }
.icon.minus {
    -webkit-transition: all /*style.animation_speed(*/0.3s/*)*/ ease-in;
    transition: all /*style.animation_speed(*/0.3s/*)*/ ease-in;
    background: none;
    }
.icon.minus:before {
    font-family: "themeIcons";
    content: "\e90d";
    }
.icon.phone {
    -webkit-transition: all /*style.animation_speed(*/0.3s/*)*/ ease-in;
    transition: all /*style.animation_speed(*/0.3s/*)*/ ease-in;
    background: none;
    }
.icon.phone:before {
    font-family: "themeIcons";
    content: "\e90e";
    }
.icon.plus {
    -webkit-transition: all /*style.animation_speed(*/0.3s/*)*/ ease-in;
    transition: all /*style.animation_speed(*/0.3s/*)*/ ease-in;
    background: none;
    }
.icon.plus:before {
    font-family: "themeIcons";
    content: "\e910";
    }
.icon.print {
    -webkit-transition: all /*style.animation_speed(*/0.3s/*)*/ ease-in;
    transition: all /*style.animation_speed(*/0.3s/*)*/ ease-in;
    background: none;
    }
.icon.print:before {
    font-family: "themeIcons";
    content: "\e911";
    }
.icon.quote {
    -webkit-transition: all /*style.animation_speed(*/0.3s/*)*/ ease-in;
    transition: all /*style.animation_speed(*/0.3s/*)*/ ease-in;
    background: none;
    }
.icon.quote:before {
    font-family: "themeIcons";
    content: "\e912";
    }
.icon.cart {
    -webkit-transition: all /*style.animation_speed(*/0.3s/*)*/ ease-in;
    transition: all /*style.animation_speed(*/0.3s/*)*/ ease-in;
    background: none;
    }
.icon.cart:before {
    font-family: "themeIcons";
    content: "\e913";
    }
.icon.reviewOn {
    -webkit-transition: all /*style.animation_speed(*/0.3s/*)*/ ease-in;
    transition: all /*style.animation_speed(*/0.3s/*)*/ ease-in;
    background: none;
    }
.icon.reviewOn:before {
    font-family: "themeIcons";
    content: "\e914";
    }
.icon.arrow-down2 {
    -webkit-transition: all /*style.animation_speed(*/0.3s/*)*/ ease-in;
    transition: all /*style.animation_speed(*/0.3s/*)*/ ease-in;
    background: none;
    }
.icon.arrow-down2:before {
    font-family: "themeIcons";
    content: "\e915";
    }
.icon.arrow-left2 {
    -webkit-transition: all /*style.animation_speed(*/0.3s/*)*/ ease-in;
    transition: all /*style.animation_speed(*/0.3s/*)*/ ease-in;
    background: none;
    }
.icon.arrow-left2:before {
    font-family: "themeIcons";
    content: "\e916";
    }
.icon.arrow-right2 {
    -webkit-transition: all /*style.animation_speed(*/0.3s/*)*/ ease-in;
    transition: all /*style.animation_speed(*/0.3s/*)*/ ease-in;
    background: none;
    }
.icon.arrow-right2:before {
    font-family: "themeIcons";
    content: "\e917";
    }
.icon.arrow-up2 {
    -webkit-transition: all /*style.animation_speed(*/0.3s/*)*/ ease-in;
    transition: all /*style.animation_speed(*/0.3s/*)*/ ease-in;
    background: none;
    }
.icon.arrow-up2:before {
    font-family: "themeIcons";
    content: "\e91a";
    }
.icon.public {
    -webkit-transition: all /*style.animation_speed(*/0.3s/*)*/ ease-in;
    transition: all /*style.animation_speed(*/0.3s/*)*/ ease-in;
    background: none;
    }
.icon.public:before {
    font-family: "themeIcons";
    content: "\e918";
    }
.icon.user {
    -webkit-transition: all /*style.animation_speed(*/0.3s/*)*/ ease-in;
    transition: all /*style.animation_speed(*/0.3s/*)*/ ease-in;
    background: none;
    }
.icon.user:before {
    font-family: "themeIcons";
    content: "\e919";
    }

/* duplicate icons */
.icon.previous {
    -webkit-transition: all /*style.animation_speed(*/0.3s/*)*/ ease-in;
    transition: all /*style.animation_speed(*/0.3s/*)*/ ease-in;
    background: none;
    }
.icon.previous:before {
    font-family: "themeIcons";
    content: "\e902";
    }
.icon.next {
    -webkit-transition: all /*style.animation_speed(*/0.3s/*)*/ ease-in;
    transition: all /*style.animation_speed(*/0.3s/*)*/ ease-in;
    background: none;
    }
.icon.next:before {
    font-family: "themeIcons";
    content: "\e903";
    }

/* css icons */
.icon.square {
    display: inline-block;
    width: 10px;
    height: 12px;
    background: #454545;
    content: "";
    display: inline-block;
    }
.icon.square + .icon {
    margin-left: 3px;
    }

/*
		input-placeholder
		-----------------
		@fragment input-placeholder(#(0), #(1), #(2));
		#(0) is the colour for the placeholder text; e.g. #ff0000
        #(1) is the font style for the placeholder text; e.g. italic
		#(2) is the element selector; e.g. input.numeric
	*/
/*
		header-styles
		-----------------
		@fragment h1-h6-style
        used if heading styles not possible directly
	*/
/*
    	socialIcon
		----------
		@fragment socialIcon(#(0), #(1));
		#(0) is the icon font string; e.g. "\e600"
		#(1) is the colour for the icon; e.g. #ff0000
	*/
/*
    Menu
    ----
*/
ul.evMenu {
    text-align: left;
    }
ul.evMenu li {
    text-align: left;
    -webkit-transition: all .15s ease-in-out;
    transition: all .15s ease-in-out;
    }
ul.evMenu li a {
    border: 0 none;
    padding: /*style._content_third_gap(*/10px/*)*/;
    color: inherit;
    -webkit-transition: all .15s ease-in-out;
    transition: all .15s ease-in-out;
    }
ul.evMenu li a .evMenuLinkTitle:after {
    display: block;
    content: attr(title);
    font-weight: bold;
    height: 1px;
    color: transparent;
    overflow: hidden;
    visibility: hidden;
    margin-bottom: -1px;
    }
ul.evMenu li a:hover,
ul.evMenu li a.hover,
ul.evMenu li a:focus,
ul.evMenu li a.focus {
    background: none transparent;
    }
ul.evMenu li:hover > a,
ul.evMenu li.hover > a,
ul.evMenu li:focus > a,
ul.evMenu li.focus > a,
ul.evMenu li:active > a,
ul.evMenu li.active > a,
ul.evMenu li.open > a {
    background: none transparent;
    }
ul.evMenu li ul {
    background: #fff;
    border: 0 none;
    border-radius: /*style.dropdown_menu_border_radius(*/3px/*)*/;
    -webkit-box-shadow: /*style._dropdown_box_shadow(*/2px 1px 7px 1px rgba(0,0,0,.2)/*)*/;
    box-shadow: /*style._dropdown_box_shadow(*/2px 1px 7px 1px rgba(0,0,0,.2)/*)*/;
    z-index: 1;
    }
ul.evMenu li ul > li {
    border-bottom: 1px solid /*style._dropdown_menu_link_seperator_color(*/transparent/*)*/;
    }
ul.evMenu li ul > li.last,
ul.evMenu li ul > li:last-child {
    border-bottom: 0 none;
    }
ul.evMenu li ul > li > a {
    padding-left: /*style._content_two_third_gap(*/20px/*)*/;
    padding-right: /*style._content_two_third_gap(*/20px/*)*/;
    }
ul.evMenu li ul > li > a:hover,
ul.evMenu li ul > li > a.hover,
ul.evMenu li ul > li > a:focus,
ul.evMenu li ul > li > a.focus {
    text-decoration: /*style.dropdown_menu_hover_decoration(*/1/*)*/;
    }
ul.evMenu li ul > li.evMenuPrimary.first > a,
ul.evMenu li ul > li.evMenuPrimary:first-child > a {
    border-top-left-radius: /*style.dropdown_menu_border_radius(*/3px/*)*/;
    border-top-right-radius: /*style.dropdown_menu_border_radius(*/3px/*)*/;
    }
ul.evMenu li ul > li.evMenuPrimary.last > a,
ul.evMenu li ul > li.evMenuPrimary:last-child > a {
    border-bottom-left-radius: /*style.dropdown_menu_border_radius(*/3px/*)*/;
    border-bottom-right-radius: /*style.dropdown_menu_border_radius(*/3px/*)*/;
    }
ul.evMenu li ul > li.evMenuPrimary > a {
    background-color: /*style.primary(*/#19388A/*)*/;
    color: /*style.text_color_on_primary(*/#fff/*)*/;
    }
ul.evMenu li ul > li.evMenuFooter > a {
    text-align: center;
    }
ul.evMenu li.evMenuFlyout > ul li > a {
    padding-top: /*style._content_third_gap(*/10px/*)*/;
    padding-bottom: /*style._content_third_gap(*/10px/*)*/;
    }
ul.evMenu li.evMenuFlyout > ul li > ul {
    left: 100%;
    top: 0;
    }
ul.evMenu li.evMenuFlyout > ul li.evMenuParent > a {
    position: relative;
    padding-right: 28px;
    }
ul.evMenu li.evMenuFlyout > ul li.evMenuParent > a:after {
    content: "\e096";
    font-family: 'ev2';
    position: absolute;
    top: 50%;
    right: 12px;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    }
ul.evMenu li.evMenuGrid > ul li > a .evMenuLinkTitle {
    font-weight: bold;
    }
ul.evMenu li.evMenuGrid > ul li > a .evMenuLinkTitle + .evMenuLinkDescription:not(:empty) {
    padding-top: 5px;
    }
ul.evMenu li.evMenuGrid > ul li > a:hover,
ul.evMenu li.evMenuGrid > ul li > a.hover,
ul.evMenu li.evMenuGrid > ul li > a:focus,
ul.evMenu li.evMenuGrid > ul li > a.focus {
    text-decoration: none;
    }
ul.evMenu li.evMenuGrid > ul li > a:hover .evMenuLinkTitle,
ul.evMenu li.evMenuGrid > ul li > a.hover .evMenuLinkTitle,
ul.evMenu li.evMenuGrid > ul li > a:focus .evMenuLinkTitle,
ul.evMenu li.evMenuGrid > ul li > a.focus .evMenuLinkTitle {
    text-decoration: underline;
    }
ul.evMenu li.evMenuGrid > ul li.evMenuLinkHasThumbnail > a {
    min-height: 94px;
    padding-top: /*style._content_half_gap(*/15px/*)*/;
    padding-bottom: /*style._content_half_gap(*/15px/*)*/;
    padding-left: 94px;
    width: 400px;
    }
ul.evMenu li.evMenuGrid > ul li.evMenuLinkHasThumbnail > a > .evMenuLinkThumbnail {
    top: /*style._content_half_gap(*/15px/*)*/;
    left: /*style._content_half_gap(*/15px/*)*/;
    border-radius: 1000px;
    }
ul.evMenu li.evMenuMegamenu > ul li.evMenuLevel_2,
ul.evMenu li.evMenuMegamenu > ul li.evMenuLevel_3 {
    border-bottom: 0 none;
    }
ul.evMenu li.evMenuMegamenu > ul li.evMenuLevel_2 > a:after,
ul.evMenu li.evMenuMegamenu > ul li.evMenuLevel_3 > a:after {
    display: none;
    }
ul.evMenu li.evMenuMegamenu > ul li.evMenuLevel_2 > ul,
ul.evMenu li.evMenuMegamenu > ul li.evMenuLevel_3 > ul {
    display: block;
    margin: 0;
    padding-bottom: /*style._content_third_gap(*/10px/*)*/;
    background: none transparent;
    }
ul.evMenu li.evMenuMegamenu > ul li.evMenuLevel_2 > ul > li > a,
ul.evMenu li.evMenuMegamenu > ul li.evMenuLevel_3 > ul > li > a {
    padding-top: 7px;
    padding-bottom: 7px;
    }
ul.evMenu li.evMenuMegamenu > ul li.evMenuLevel_3.last > ul.last,
ul.evMenu li.evMenuMegamenu > ul li.evMenuLevel_3.last > ul:last-child,
ul.evMenu li.evMenuMegamenu > ul li.evMenuLevel_3:last-child > ul.last,
ul.evMenu li.evMenuMegamenu > ul li.evMenuLevel_3:last-child > ul:last-child {
    padding-bottom: 0;
    }
ul.evMenu li.evMenuMegamenu > ul li.evMenuLevel_4 {
    border-bottom: 0 none;
    }
ul.evMenu li.evMenuMegamenu > ul li.evMenuLevel_4 ul {
    display: none;
    position: absolute !important;
    left: 98% !important;
    top: 2px !important;
    -webkit-box-shadow: /*style._dropdown_box_shadow(*/2px 1px 7px 1px rgba(0,0,0,.2)/*)*/;
    box-shadow: /*style._dropdown_box_shadow(*/2px 1px 7px 1px rgba(0,0,0,.2)/*)*/;
    border-radius: /*style.dropdown_menu_border_radius(*/3px/*)*/;
    }
ul.evMenu li.evMenuMegamenu > ul li.evMenuLevel_4:hover > ul,
ul.evMenu li.evMenuMegamenu > ul li.evMenuLevel_4.open > ul {
    display: block;
    }
ul.evMenu li.evMenuMegamenu > ul > li {
    padding: /*style._content_third_gap(*/10px/*)*/ 0 0;
    }
ul.evMenu.evMenu--inline {
    margin: 0 -10px;
    }
ul.evMenu.evMenu--inline li {
    display: inline-block;
    }
ul.evMenu.evMenu--inline li ul {
    margin: 0 -10px;
    }
ul.evMenu.evMenu--inline li ul > li {
    display: block;
    }
ul.evMenu.evMenu--inline > li.evMenuParent > ul {
    text-transform: initial;
    top: 100%;
    top: calc(100% + 2px);
    left: 10px;
    min-width: 115%;
    -webkit-box-shadow: /*style._first_dropdown_box_shadow(*/2px 3px 7px 1px rgba(0,0,0,.2)/*)*/;
    box-shadow: /*style._first_dropdown_box_shadow(*/2px 3px 7px 1px rgba(0,0,0,.2)/*)*/;
    }
.asideMenu ul.evMenu li > a {
    white-space: normal;
    color: /*style.aside_menu_link_color(*/#000/*)*/;
    }
.asideMenu ul.evMenu li > a > .evCount {
    display: none;
    }
.asideMenu ul.evMenu li > a:hover,
.asideMenu ul.evMenu li > a.hover,
.asideMenu ul.evMenu li > a:focus,
.asideMenu ul.evMenu li > a.focus,
.asideMenu ul.evMenu li > a:active,
.asideMenu ul.evMenu li > a.active {
    color: /*style.primary(*/#19388A/*)*/;
    }
.asideMenu ul.evMenu li:hover > a,
.asideMenu ul.evMenu li.hover > a,
.asideMenu ul.evMenu li:focus > a,
.asideMenu ul.evMenu li.focus > a,
.asideMenu ul.evMenu li:active > a,
.asideMenu ul.evMenu li.active > a,
.asideMenu ul.evMenu li.open > a {
    color: /*style.primary(*/#19388A/*)*/;
    }
.asideMenu ul.evMenu li.evMenuParent > a {
    position: relative;
    padding-right: 28px;
    }
.asideMenu ul.evMenu li.evMenuParent > a > span.evMenuAccordionToggle {
    position: absolute;
    display: block;
    top: 6px;
    right: 0;
    bottom: 5px;
    width: 31px;
    font-size: 16px;
    background: transparent;
    }
.asideMenu ul.evMenu li.evMenuParent > a > span.evMenuAccordionToggle:after {
    content: "\e096";
    font-family: 'ev2';
    position: absolute;
    top: 50%;
    right: 50%;
    -webkit-transform: translateY(-50%) translateX(50%);
    -ms-transform: translateY(-50%) translateX(50%);
    transform: translateY(-50%) translateX(50%);
    }
.asideMenu ul.evMenu li.evMenuParent.accordion-open > a > span.evMenuAccordionToggle:after {
    content: "\e098";
    }
.asideMenu ul.evMenu li.evMenuParent > ul {
    position: relative;
    display: block;
    top: 0;
    left: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
    padding-left: /*style._content_third_gap(*/10px/*)*/;
    overflow: hidden;
    }
.asideMenu ul.evMenu li.evMenuParent > ul > li {
    border: 0 none;
    }
.asideMenu ul.evMenu li.evMenuParent > ul > li > a {
    padding-left: /*style._content_third_gap(*/10px/*)*/;
    padding-right: /*style._content_third_gap(*/10px/*)*/;
    }
.asideMenu.filterMenu ul.evMenu {
    font-size: 14px;
    line-height: 20px;
    }
.asideMenu.filterMenu ul.evMenu > li {
    margin-bottom: 5px;
    border-bottom: 1px solid #cfcfcf;
    }
.asideMenu.filterMenu ul.evMenu > li > a {
    color: /*style.heading_color(*/#454545/*)*/;
    font-weight: 400;
    text-decoration: none;
    padding: /*style._content_third_gap(*/10px/*)*/;
    }
.asideMenu.filterMenu ul.evMenu > li > ul {
    padding: 0 10px 30px;
    overflow: visible;
    }
.asideMenu.filterMenu ul.evMenu > li > ul:after {
    content: "";
    display: block;
    height: 0;
    font-size: 0;
    clear: both;
    visibility: hidden;
    }
.asideMenu.filterMenu ul.evMenu > li > ul > li.swatch {
    float: left;
    line-height: 0;
    width: 25%;
    }
.asideMenu.filterMenu ul.evMenu > li > ul > li.swatch:hover:before,
.asideMenu.filterMenu ul.evMenu > li > ul > li.swatch.hover:before,
.asideMenu.filterMenu ul.evMenu > li > ul > li.swatch:focus:before,
.asideMenu.filterMenu ul.evMenu > li > ul > li.swatch.focus:before,
.asideMenu.filterMenu ul.evMenu > li > ul > li.swatch.active:before {
    content: "";
    position: absolute;
    top: 1px;
    left: -4px;
    border-radius: 999px;
    width: 48px;
    height: 48px;
    border: 2px solid /*style.primary(*/#19388A/*)*/;
    }
.asideMenu.filterMenu ul.evMenu > li > ul > li > a {
    padding-top: 5px;
    padding-right: 0;
    padding-bottom: 5px;
    padding-left: 0;
    width: 100%;
    }
.asideMenu.filterMenu ul.evMenu > li > ul > li > a .icon {
    display: none;
    }
.asideMenu.filterMenu ul.evMenu > li > ul > li > a[data-widget="checkbox"]:before,
.asideMenu.filterMenu ul.evMenu > li > ul > li > a[data-widget="radio"]:before {
    content: '';
    display: inline-block;
    vertical-align: middle;
    background: /*style.field_background_color(*/#fff/*)*/;
    border: 1px solid /*style.field_border_color(*/#efefef/*)*/;
    border-radius: /*style.component_border_radius(*/2px/*)*/;
    width: 12px;
    height: 12px;
    }
.asideMenu.filterMenu ul.evMenu > li > ul > li > a[data-widget="checkbox"] > .label,
.asideMenu.filterMenu ul.evMenu > li > ul > li > a[data-widget="radio"] > .label {
    padding-left: /*style._content_third_gap(*/10px/*)*/;
    }
.asideMenu.filterMenu ul.evMenu > li > ul > li > a[data-widget="checkbox"]:hover,
.asideMenu.filterMenu ul.evMenu > li > ul > li > a[data-widget="checkbox"].hover,
.asideMenu.filterMenu ul.evMenu > li > ul > li > a[data-widget="checkbox"]:focus,
.asideMenu.filterMenu ul.evMenu > li > ul > li > a[data-widget="checkbox"].focus,
.asideMenu.filterMenu ul.evMenu > li > ul > li > a[data-widget="radio"]:hover,
.asideMenu.filterMenu ul.evMenu > li > ul > li > a[data-widget="radio"].hover,
.asideMenu.filterMenu ul.evMenu > li > ul > li > a[data-widget="radio"]:focus,
.asideMenu.filterMenu ul.evMenu > li > ul > li > a[data-widget="radio"].focus {
    text-decoration: none;
    }
.asideMenu.filterMenu ul.evMenu > li > ul > li > a[data-widget="checkbox"]:hover:before,
.asideMenu.filterMenu ul.evMenu > li > ul > li > a[data-widget="checkbox"].hover:before,
.asideMenu.filterMenu ul.evMenu > li > ul > li > a[data-widget="checkbox"]:focus:before,
.asideMenu.filterMenu ul.evMenu > li > ul > li > a[data-widget="checkbox"].focus:before,
.asideMenu.filterMenu ul.evMenu > li > ul > li > a[data-widget="radio"]:hover:before,
.asideMenu.filterMenu ul.evMenu > li > ul > li > a[data-widget="radio"].hover:before,
.asideMenu.filterMenu ul.evMenu > li > ul > li > a[data-widget="radio"]:focus:before,
.asideMenu.filterMenu ul.evMenu > li > ul > li > a[data-widget="radio"].focus:before {
    background: /*style.focus_field_background_color(*/#fff/*)*/;
    border-color: /*style.focus_field_border_color(*/#c1c1c1/*)*/;
    }
.asideMenu.filterMenu ul.evMenu > li > ul > li > a[data-widget="checkbox"]:hover > .label,
.asideMenu.filterMenu ul.evMenu > li > ul > li > a[data-widget="checkbox"].hover > .label,
.asideMenu.filterMenu ul.evMenu > li > ul > li > a[data-widget="checkbox"]:focus > .label,
.asideMenu.filterMenu ul.evMenu > li > ul > li > a[data-widget="checkbox"].focus > .label,
.asideMenu.filterMenu ul.evMenu > li > ul > li > a[data-widget="radio"]:hover > .label,
.asideMenu.filterMenu ul.evMenu > li > ul > li > a[data-widget="radio"].hover > .label,
.asideMenu.filterMenu ul.evMenu > li > ul > li > a[data-widget="radio"]:focus > .label,
.asideMenu.filterMenu ul.evMenu > li > ul > li > a[data-widget="radio"].focus > .label {
    text-decoration: underline;
    }
.asideMenu.filterMenu ul.evMenu > li > ul > li > a[data-widget="swatch"] {
    background-color: #efefef;
    display: inline-block;
    width: 40px;
    height: 40px;
    border-radius: 5000px;
    position: relative;
    margin: 5px 0;
    line-height: /*style.text_line_height(*/1.5/*)*/;
    }
.asideMenu.filterMenu ul.evMenu > li > ul > li > a[data-widget="swatch"] .label {
    opacity: 0;
    position: absolute;
    top: 99%;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    background-color: /*style.heading_color(*/#454545/*)*/;
    color: white;
    padding: 5px 10px;
    border-radius: 3px;
    font-weight: bold;
    -webkit-transition: all 250ms ease-in;
    transition: all 250ms ease-in;
    }
.asideMenu.filterMenu ul.evMenu > li > ul > li > a[data-widget="swatch"] .label:before {
    content: '';
    display: block;
    border-width: 7px 8px;
    border-style: solid;
    border-color: transparent;
    border-bottom-color: /*style.heading_color(*/#454545/*)*/;
    position: absolute;
    bottom: 100%;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    }
.asideMenu.filterMenu ul.evMenu > li > ul > li > a[data-widget="swatch"]:hover .label {
    z-index: 2;
    opacity: 1;
    }
.asideMenu.filterMenu ul.evMenu > li > ul > li.active > a[data-widget="checkbox"]:before,
.asideMenu.filterMenu ul.evMenu > li > ul > li.active > a[data-widget="radio"]:before {
    background: /*style.primary(*/#19388A/*)*/;
    border-color: /*style.primary(*/#19388A/*)*/;
    }
@media (max-width:/*style._second_special_content_break_max(*/700px/*)*/) {
.asideMenu.filterMenu ul.evMenu li.evMenuLevel_1:first-child {
    border-top: 1px solid #cfcfcf;
    }
}

ul.evMenu[data-tiers="1"] li[data-level="1"].evMenuParent:hover > a:after,
ul.evMenu[data-tiers="1"] li[data-level="1"].evMenuParent.hover > a:after,
ul.evMenu[data-tiers="1"] li[data-level="1"].evMenuParent:focus > a:after,
ul.evMenu[data-tiers="1"] li[data-level="1"].evMenuParent.focus > a:after,
ul.evMenu[data-tiers="1"] li[data-level="1"].evMenuParent.open > a:after {
    display: none;
    }
ul.evMenu[data-tiers="1"] li[data-level="1"] > ul {
    display: none;
    }
ul.evMenu[data-tiers="2"] li[data-level="2"].evMenuParent > a:after {
    display: none;
    }
ul.evMenu[data-tiers="2"] li[data-level="2"] > ul {
    display: none;
    }
ul.evMenu[data-tiers="3"] li[data-level="3"].evMenuParent > a:after {
    display: none;
    }
ul.evMenu[data-tiers="3"] li[data-level="3"] > ul {
    display: none;
    }

/*
    evMenuToggle
    ------------
*/
.evMenuToggle {
    display: block;
    position: relative;
    overflow: hidden;
    margin: 0;
    padding: 20px;
    width: 16px;
    height: 23px;
    font-size: 0;
    text-indent: -9999px;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    -webkit-box-shadow: none;
    box-shadow: none;
    border-radius: none;
    border: none;
    cursor: pointer;
    -webkit-transition: background /*style.animation_speed(*/0.3s/*)*/;
    transition: background /*style.animation_speed(*/0.3s/*)*/;
    }
.evMenuToggle span {
    display: block;
    position: absolute;
    top: 19px;
    left: 12px;
    width: 16px;
    height: 2px;
    background: #fff;
    -webkit-transition: background 0s /*style.animation_speed(*/0.3s/*)*/;
    transition: background 0s /*style.animation_speed(*/0.3s/*)*/;
    }
.evMenuToggle span:before,
.evMenuToggle span:after {
    content: "";
    position: absolute;
    display: block;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #fff;
    -webkit-transition-duration: /*style.animation_speed(*/0.3s/*)*/,/*style.animation_speed(*/0.3s/*)*/;
    transition-duration: /*style.animation_speed(*/0.3s/*)*/,/*style.animation_speed(*/0.3s/*)*/;
    -webkit-transition-delay: /*style.animation_speed(*/0.3s/*)*/,0s;
    transition-delay: /*style.animation_speed(*/0.3s/*)*/,0s;
    }
.evMenuToggle span:before {
    top: -5px;
    -webkit-transition-property: top,transform;
    transition-property: top,transform;
    }
.evMenuToggle span:after {
    bottom: -5px;
    -webkit-transition-property: bottom,transform;
    transition-property: bottom,transform;
    }
.evMenuToggle.is-active span {
    background: none !important;
    }
.evMenuToggle.is-active span:before,
.evMenuToggle.is-active span:after {
    -webkit-transition-delay: 0s,/*style.animation_speed(*/0.3s/*)*/;
    transition-delay: 0s,/*style.animation_speed(*/0.3s/*)*/;
    }
.evMenuToggle.is-active span:before {
    top: 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    }
.evMenuToggle.is-active span:after {
    bottom: 0;
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
    }

/*
    evTabs
    ------
*/
ul.evTabs {
    width: 100%;
    }
ul.evTabs li.active {
    margin: 0 0 -2px;
    border: 0 solid /*style.primary(*/#19388A/*)*/;
    border-width: 0 0 2px;
    }
ul.evTabs li a:link,
ul.evTabs li a:visited {
    color: /*style.heading_color(*/#454545/*)*/;
    white-space: nowrap;
    display: block;
    padding: /*style._content_third_gap(*/10px/*)*/ /*style._content_two_third_gap(*/20px/*)*/;
    text-align: center;
    }
ul.evTabs li a:link .label,
ul.evTabs li a:visited .label {
    text-decoration: none;
    font-size: 18px;
    }
ul.evTabs li a:link .label:after,
ul.evTabs li a:visited .label:after {
    display: block;
    content: attr(title);
    font-weight: bold;
    height: 1px;
    color: transparent;
    overflow: hidden;
    visibility: hidden;
    margin-bottom: -1px;
    }
ul.evTabs li a:link:hover,
ul.evTabs li a:visited:hover {
    color: /*style.primary(*/#19388A/*)*/;
    text-decoration: none;
    }
ul.evTabs li.active a:link,
ul.evTabs li.active a:visited {
    color: /*style.primary(*/#19388A/*)*/;
    text-decoration: underline;
    }
.tabContainer > .evAccordionTab {
    display: none;
    margin: 0;
    border-width: 1px 0 0;
    border-style: solid;
    border-color: /*style.border_color(*/#fafafa/*)*/;
    }
.tabContainer > .evAccordionTab a:link,
.tabContainer > .evAccordionTab a:visited {
    display: block;
    color: /*style.heading_color(*/#454545/*)*/;
    padding: /*style._content_two_third_gap(*/20px/*)*/ /*style._content_gap(*/30px/*)*/;
    }
.tabContainer > .evAccordionTab a:link .label,
.tabContainer > .evAccordionTab a:visited .label {
    text-decoration: none;
    }
.tabContainer > .evAccordionTab a:hover,
.tabContainer > .evAccordionTab a.hover,
.tabContainer > .evAccordionTab a:focus,
.tabContainer > .evAccordionTab a.focus,
.tabContainer > .evAccordionTab a:active,
.tabContainer > .evAccordionTab a.active {
    text-decoration: underline;
    }
.tabContainer > .evAccordionTab.active a:link,
.tabContainer > .evAccordionTab.active a:visited {
    font-weight: bold;
    text-decoration: none;
    }
.tabContainer .tabbedContent {
    border-top: 2px solid /*style.border_color(*/#fafafa/*)*/;
    padding: /*style._content_two_third_gap(*/20px/*)*/ /*style._content_third_gap(*/10px/*)*/ !important;
    -webkit-transition: all /*style.animation_speed(*/0.3s/*)*/ ease;
    transition: all /*style.animation_speed(*/0.3s/*)*/ ease;
    }
@media screen and (max-width: /*style._first_content_break_max(*/1000px/*)*/) {
.tabContainer .tabContainer > .evAccordionTab {
    border-width: 2px 2px 0;
    }
.tabContainer .tabbedContent {
    border-bottom: 0 none;
    padding-right: /*style._content_third_gap(*/10px/*)*/ !important;
    padding-left: /*style._content_third_gap(*/10px/*)*/ !important;
    }
html:not(.edit) .tabContainer > ul.evTabs {
    display: none;
    }
html:not(.edit) .tabContainer > .evAccordionTab {
    display: block;
    }
html:not(.edit) .tabContainer > .evAccordionTab + div:not(.evAccordionTab) > .tabbedContent {
    padding-top: /*style._content_third_gap(*/10px/*)*/ !important;
    padding-bottom: /*style._content_gap(*/30px/*)*/ !important;
    }
}

.tabContainer.asideList {
    border: 2px solid /*style.border_color(*/#fafafa/*)*/;
    }
.tabContainer.asideList:after {
    content: "";
    display: block;
    height: 0;
    font-size: 0;
    clear: both;
    visibility: hidden;
    }
.tabContainer.asideList ul.evTabs {
    width: 20%;
    width: calc(20% + 2px);
    float: left;
    margin: 0 -2px -2px 0;
    border: 0 solid /*style.border_color(*/#fafafa/*)*/;
    border-width: 0 2px 2px 0;
    }
.tabContainer.asideList ul.evTabs li {
    border-color: transparent;
    display: block;
    }
.tabContainer.asideList ul.evTabs li + li {
    border-top: 2px solid /*style.border_color(*/#fafafa/*)*/;
    }
.tabContainer.asideList ul.evTabs li a:link,
.tabContainer.asideList ul.evTabs li a:visited {
    color: /*style.heading_color(*/#454545/*)*/;
    padding: /*style._content_two_third_gap(*/20px/*)*/ /*style._content_gap(*/30px/*)*/;
    white-space: nowrap;
    display: block;
    text-align: left;
    }
.tabContainer.asideList ul.evTabs li a:link .label,
.tabContainer.asideList ul.evTabs li a:visited .label {
    text-decoration: none;
    }
.tabContainer.asideList ul.evTabs li a:link:hover,
.tabContainer.asideList ul.evTabs li a:visited:hover {
    color: /*style.primary(*/#19388A/*)*/;
    text-decoration: none;
    }
.tabContainer.asideList ul.evTabs li.active {
    border-top-color: /*style.border_color(*/#fafafa/*)*/;
    border-right-color: /*style.border_color(*/#fafafa/*)*/;
    border-bottom-color: /*style.body_background_color(*/#fff/*)*/;
    border-left-color: /*style.border_color(*/#fafafa/*)*/;
    border-bottom-width: 0;
    }
.tabContainer.asideList ul.evTabs li.active a:link,
.tabContainer.asideList ul.evTabs li.active a:visited {
    color: /*style.primary(*/#19388A/*)*/;
    text-decoration: underline;
    }
.tabContainer.asideList .tabbedContent {
    width: 80%;
    float: right;
    border: 2px solid /*style.border_color(*/#fafafa/*)*/;
    border-width: 0 0 0 2px;
    }
@media (max-width:/*style._first_content_break_max(*/1000px/*)*/) {
.tabContainer.asideList ul.evTabs {
    float: none;
    width: 100%;
    margin: 0 !important;
    border-width: 0 0 2px;
    }
.tabContainer.asideList .tabbedContent {
    float: none;
    width: 100%;
    border: 0;
    }
}

/*
		input-placeholder
		-----------------
		@fragment input-placeholder(#(0), #(1), #(2));
		#(0) is the colour for the placeholder text; e.g. #ff0000
        #(1) is the font style for the placeholder text; e.g. italic
		#(2) is the element selector; e.g. input.numeric
	*/
/*
		header-styles
		-----------------
		@fragment h1-h6-style
        used if heading styles not possible directly
	*/
/*
    	socialIcon
		----------
		@fragment socialIcon(#(0), #(1));
		#(0) is the icon font string; e.g. "\e600"
		#(1) is the colour for the icon; e.g. #ff0000
	*/
/*
    Bubble
    ------
*/
.evBubble {
    background-color: /*style.body_background_color(*/#fff/*)*/;
    border-radius: /*style.dropdown_menu_border_radius(*/3px/*)*/;
    -webkit-box-shadow: /*style._dropdown_box_shadow(*/2px 1px 7px 1px rgba(0,0,0,.2)/*)*/;
    box-shadow: /*style._dropdown_box_shadow(*/2px 1px 7px 1px rgba(0,0,0,.2)/*)*/;
    text-transform: none;
    }
.evBubble > .triangleWrapper {
    position: absolute;
    left: 50px;
    top: -10px;
    width: 16px;
    height: 10px;
    overflow: hidden;
    }
.evBubble > .evBubbleBody {
    overflow: auto;
    }
.evBubble > .evBubbleBody a:not(.evButton) {
    color: /*style.text_color(*/#454545/*)*/;
    }
.evBubble > .evBubbleBody a:not(.evButton):hover,
.evBubble > .evBubbleBody a:not(.evButton).hover,
.evBubble > .evBubbleBody a:not(.evButton):focus,
.evBubble > .evBubbleBody a:not(.evButton).focus {
    color: /*style.text_color_on_primary(*/#fff/*)*/;
    text-decoration: underline;
    }
.evBubble > .evBubbleBody a:not(.evButton).active {
    background: /*style.primary(*/#19388A/*)*/;
    color: /*style.text_color_on_primary(*/#fff/*)*/;
    text-decoration: underline;
    }
.evBubble > .evBubbleBody ul.evListOfOptions li > a {
    padding: 0 10px !important;
    }
.evBubble > .evBubbleBody ul.evListOfOptions li:first-child:hover > a:before {
    left: auto;
    right: 23px;
    top: -5px;
    width: 10px;
    height: 10px;
    background: /*style.primary(*/#19388A/*)*/;
    content: "";
    display: inline-block;
    position: absolute;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    }
.evBubble > .evBubbleBody li.active,
.evBubble > .evBubbleBody li:hover,
.evBubble > .evBubbleBody li.hover,
.evBubble > .evBubbleBody li:focus,
.evBubble > .evBubbleBody li.focus {
    background-color: /*style.primary(*/#19388A/*)*/;
    }
.evBubble > .evBubbleBody li.active a,
.evBubble > .evBubbleBody li:hover a,
.evBubble > .evBubbleBody li.hover a,
.evBubble > .evBubbleBody li:focus a,
.evBubble > .evBubbleBody li.focus a {
    color: /*style.text_color_on_primary(*/#fff/*)*/;
    text-decoration: underline;
    }
.evBubble > .evBubbleBody ul.evListOfLanguages li:hover a {
    text-decoration: none;
    }
.evBubble > .footer {
    border-bottom-right-radius: 3px;
    border-bottom-left-radius: 3px;
    }

/*
    Triangle Wrapper
    ----------------
*/
.triangleWrapper > .triangle {
    width: 10px;
    height: 10px;
    background: /*style.body_background_color(*/#fff/*)*/;
    -webkit-box-shadow: -1px -1px 3px rgba(0,0,0,.15);
    box-shadow: -1px -1px 3px rgba(0,0,0,.15);
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
    position: relative;
    top: 5px;
    left: 3px;
    }
.triangleWrapper.bottomLeft > .triangle,
.triangleWrapper.bottomRight > .triangle,
.triangleWrapper.bottomCenter > .triangle {
    top: -5px;
    -webkit-box-shadow: 0 1px 3px rgba(0,0,0,.15);
    box-shadow: 0 1px 3px rgba(0,0,0,.15);
    }
.triangleWrapper.topLeft,
.triangleWrapper.bottomLeft {
    left: 20px;
    }
.triangleWrapper.topRight,
.triangleWrapper.bottomRight {
    left: auto;
    right: 20px;
    }
.triangleWrapper.topCenter,
.triangleWrapper.bottomCenter {
    left: 50%;
    margin-left: -8px;
    }
.triangleWrapper.bottomLeft,
.triangleWrapper.bottomRight,
.triangleWrapper.bottomCenter {
    top: auto;
    bottom: -10px;
    }
.triangleWrapper.leftTop > .triangle,
.triangleWrapper.leftBottom > .triangle,
.triangleWrapper.leftCenter > .triangle {
    top: 3px;
    left: 4px;
    }
.triangleWrapper.leftTop,
.triangleWrapper.leftBottom,
.triangleWrapper.leftCenter {
    left: -10px;
    height: 16px;
    width: 10px;
    }
.triangleWrapper.leftTop,
.triangleWrapper.rightTop {
    top: 24px;
    }
.triangleWrapper.leftBottom,
.triangleWrapper.rightBottom {
    top: auto;
    bottom: 24px;
    }
.triangleWrapper.leftCenter,
.triangleWrapper.rightCenter {
    top: 50%;
    margin-top: -8px;
    }
.triangleWrapper.rightTop,
.triangleWrapper.rightBottom,
.triangleWrapper.rightCenter {
    left: auto;
    right: -10px;
    height: 16px;
    width: 10px;
    }
.triangleWrapper.rightTop > .triangle,
.triangleWrapper.rightBottom > .triangle,
.triangleWrapper.rightCenter > .triangle {
    top: 3px;
    left: -6px;
    }

/*
		input-placeholder
		-----------------
		@fragment input-placeholder(#(0), #(1), #(2));
		#(0) is the colour for the placeholder text; e.g. #ff0000
        #(1) is the font style for the placeholder text; e.g. italic
		#(2) is the element selector; e.g. input.numeric
	*/
/*
		header-styles
		-----------------
		@fragment h1-h6-style
        used if heading styles not possible directly
	*/
/*
    	socialIcon
		----------
		@fragment socialIcon(#(0), #(1));
		#(0) is the icon font string; e.g. "\e600"
		#(1) is the colour for the icon; e.g. #ff0000
	*/
/*
    Button
    ------
*/
.evDropdown {
    font-family: /*style.text_font_family(*/"Arial"/*)*/;
    font-size: 12px;
    color: inherit;
    height: auto;
    padding: 0;
    }
.evDropdown:link,
.evDropdown:visited {
    color: inherit;
    }
.evDropdown > .link {
    display: block;
    vertical-align: baseline;
    line-height: 1;
    height: auto;
    padding: /*style._content_third_gap(*/10px/*)*/;
    border-radius: 0;
    }
.evDropdown > .link > .icon {
    display: inline-block;
    vertical-align: middle;
    font-size: 1.1em;
    line-height: 1;
    text-decoration: none !important;
    color: inherit;
    width: auto;
    height: auto;
    margin: 0;
    }
.evDropdown > .link > .icon + .label {
    padding-left: /*style._content_third_gap(*/10px/*)*/;
    }
.evDropdown > .link > .label + .icon {
    padding-left: /*style._content_third_gap(*/10px/*)*/;
    }
.evDropdown > .link > .label {
    display: inline-block;
    vertical-align: middle;
    font-family: inherit;
    font-size: inherit;
    font-weight: inherit;
    color: inherit;
    padding: 0;
    text-decoration: inherit;
    text-transform: inherit;
    line-height: 20px;
    }
.evDropdown > .content {
    top: 100%;
    right: auto;
    left: 0;
    min-width: 115%;
    margin: 0 -10px;
    background: /*style.dropdown_menu_background_color(*/#fff/*)*/;
    border: 0 none;
    border-radius: /*style.dropdown_menu_border_radius(*/3px/*)*/;
    -webkit-box-shadow: /*style._dropdown_box_shadow(*/2px 1px 7px 1px rgba(0,0,0,.2)/*)*/;
    box-shadow: /*style._dropdown_box_shadow(*/2px 1px 7px 1px rgba(0,0,0,.2)/*)*/;
    font-size: 14px;
    line-height: 20px;
    z-index: 1;
    }
.evDropdown > .content li {
    line-height: 1;
    border: 0 none;
    border-bottom: 1px solid /*style.border_color(*/#fafafa/*)*/;
    border-bottom-color: /*style.dropdown_menu_link_seperator_color(*/#fff/*)*/;
    padding: 0;
    margin: 0;
    }
.evDropdown > .content li.last,
.evDropdown > .content li:last-child {
    border-bottom: 0 none;
    }
.evDropdown > .content li > a,
.evDropdown > .content li > label {
    position: relative;
    display: block;
    border: 0 none;
    color: inherit;
    padding: /*style._content_third_gap(*/10px/*)*/ /*style._content_two_third_gap(*/20px/*)*/;
    }
.evDropdown > .content li > a:hover,
.evDropdown > .content li > a.hover,
.evDropdown > .content li > a:focus,
.evDropdown > .content li > a.focus {
    text-decoration: /*style.dropdown_menu_hover_decoration(*/1/*)*/;
    }
.evDropdown > .content li > label:hover a.evCheckbox,
.evDropdown > .content li > label.hover a.evCheckbox,
.evDropdown > .content li > label:focus a.evCheckbox,
.evDropdown > .content li > label.focus a.evCheckbox,
.evDropdown > .content li > label:hover a.evRadio,
.evDropdown > .content li > label.hover a.evRadio,
.evDropdown > .content li > label:focus a.evRadio,
.evDropdown > .content li > label.focus a.evRadio {
    border-color: /*style.primary(*/#19388A/*)*/;
    -webkit-box-shadow: 0 0 3px /*style.primary(*/#19388A/*)*/;
    box-shadow: 0 0 3px /*style.primary(*/#19388A/*)*/;
    color: /*style.field_text_color(*/#5e5e5e/*)*/ !important;
    }
.evDropdown > .content li > label:hover a.evCheckbox:checked,
.evDropdown > .content li > label.hover a.evCheckbox:checked,
.evDropdown > .content li > label:focus a.evCheckbox:checked,
.evDropdown > .content li > label.focus a.evCheckbox:checked,
.evDropdown > .content li > label:hover a.evCheckbox.checked,
.evDropdown > .content li > label.hover a.evCheckbox.checked,
.evDropdown > .content li > label:focus a.evCheckbox.checked,
.evDropdown > .content li > label.focus a.evCheckbox.checked,
.evDropdown > .content li > label:hover a.evRadio:checked,
.evDropdown > .content li > label.hover a.evRadio:checked,
.evDropdown > .content li > label:focus a.evRadio:checked,
.evDropdown > .content li > label.focus a.evRadio:checked,
.evDropdown > .content li > label:hover a.evRadio.checked,
.evDropdown > .content li > label.hover a.evRadio.checked,
.evDropdown > .content li > label:focus a.evRadio.checked,
.evDropdown > .content li > label.focus a.evRadio.checked {
    background-color: /*style.primary(*/#19388A/*)*/;
    border-color: /*style.primary(*/#19388A/*)*/;
    color: /*style.text_color_on_primary(*/#fff/*)*/ !important;
    }
.evDropdown.open > .link {
    background: none transparent;
    border: 0 none;
    padding: /*style._content_third_gap(*/10px/*)*/;
    border-radius: 0;
    }
.evDropdown.open > .link:after {
    content: '';
    display: block;
    border-width: 7px 8px;
    border-style: solid;
    border-color: transparent;
    border-bottom-color: #fff;
    position: absolute;
    bottom: 0;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    z-index: 2;
    }

/*
		input-placeholder
		-----------------
		@fragment input-placeholder(#(0), #(1), #(2));
		#(0) is the colour for the placeholder text; e.g. #ff0000
        #(1) is the font style for the placeholder text; e.g. italic
		#(2) is the element selector; e.g. input.numeric
	*/
/*
		header-styles
		-----------------
		@fragment h1-h6-style
        used if heading styles not possible directly
	*/
/*
    	socialIcon
		----------
		@fragment socialIcon(#(0), #(1));
		#(0) is the icon font string; e.g. "\e600"
		#(1) is the colour for the icon; e.g. #ff0000
	*/
/*
    Button
	------
*/
.evButton {
    font-family: /*style.text_font_family(*/"Arial"/*)*/;
    font-size: /*style.text_font_size(*/14px/*)*/;
    font-weight: 600;
    color: /*style.button_text_color(*/#fff/*)*/;
    text-transform: /*style.button_text_transformation(*/none/*)*/;
    text-align: center;
    height: /*style._button_height(*/48px/*)*/;
    min-width: /*style._button_min_width(*/120px/*)*/;
    line-height: 1;
    padding: 0 /*style._button_padding(*/25px/*)*/ !important;
    background: /*style.button_background_color(*/#19388A/*)*/;
    border-width: /*style._button_border_width(*/2px/*)*/;
    border-color: transparent !important;
    border-radius: /*style.component_border_radius(*/2px/*)*/;
    -webkit-transition: all /*style.animation_speed(*/0.3s/*)*/ linear;
    transition: all /*style.animation_speed(*/0.3s/*)*/ linear;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    }
.evButton:link,
.evButton:visited {
    color: /*style.button_text_color(*/#fff/*)*/;
    }
.evButton:hover,
.evButton.hover,
.evButton:focus,
.evButton.focus,
.evButton:active,
.evButton.active {
    background: /*style._darker_button_background_color(*//*style.button_background_color(*/#152f74/*).colorAdjust(0,0,-5,0)*//*)*/;
    border-color: transparent !important;
    color: /*style.button_text_color(*/#fff/*)*/;
    -webkit-box-shadow: 0 0 0 rgba(0,0,0,0);
    box-shadow: 0 0 0 rgba(0,0,0,0);
    }
.evDropdown.open > .evButton.link {
    background: /*style._darker_button_background_color(*//*style.button_background_color(*/#152f74/*).colorAdjust(0,0,-5,0)*//*)*/;
    border-color: transparent !important;
    color: /*style.button_text_color(*/#fff/*)*/;
    }
.evButton > .icon {
    font-size: 1.2em;
    line-height: 1;
    text-decoration: none !important;
    color: inherit;
    width: auto;
    height: auto;
    margin: 0;
    line-height: 44px;
    }
.evButton > .icon + .label {
    padding-left: 10px;
    }
.evButton > .label + .icon {
    padding-left: 10px;
    }
.evButton > .label {
    font-family: inherit;
    font-size: inherit;
    font-weight: inherit;
    color: inherit;
    padding: 0;
    text-decoration: inherit !important;
    text-transform: inherit !important;
    height: 44px;
    line-height: 42px;
    }
.evButton.disabled > .label,
.evButton.disabled > .icon {
    color: inherit;
    opacity: .5;
    }
.evButton.full-width {
    width: 100%;
    }
a.button,
a.actionButton,
a.proceedButton,
a.primaryButton,
a.underlineButton,
a.assetButton {
    display: inline-block;
    font-family: /*style.text_font_family(*/"Arial"/*)*/;
    font-weight: 600;
    color: /*style.button_text_color(*/#fff/*)*/;
    text-transform: /*style.button_text_transformation(*/none/*)*/;
    text-align: center;
    height: auto;
    min-height: /*style._button_height(*/48px/*)*/;
    min-width: /*style._button_min_width(*/120px/*)*/;
    padding: 0 /*style._button_padding(*/25px/*)*/;
    background: /*style.button_background_color(*/#19388A/*)*/;
    border-width: /*style._button_border_width(*/2px/*)*/;
    border-style: solid;
    border-color: /*style.button_background_color(*/#19388A/*)*/;
    border-radius: /*style.component_border_radius(*/2px/*)*/;
    -webkit-transition: all /*style.animation_speed(*/0.3s/*)*/ ease-in;
    transition: all /*style.animation_speed(*/0.3s/*)*/ ease-in;
    margin: 5px;
    line-height: 42px;
    }
a.button:not(:last-child),
a.actionButton:not(:last-child),
a.proceedButton:not(:last-child),
a.primaryButton:not(:last-child),
a.underlineButton:not(:last-child),
a.assetButton:not(:last-child) {
    margin-bottom: /*style.text_font_size(*/14px/*)*/;
    }
a.button:hover,
a.button.hover,
a.button:focus,
a.button.focus,
a.button:active,
a.button.active,
a.actionButton:hover,
a.actionButton.hover,
a.actionButton:focus,
a.actionButton.focus,
a.actionButton:active,
a.actionButton.active,
a.proceedButton:hover,
a.proceedButton.hover,
a.proceedButton:focus,
a.proceedButton.focus,
a.proceedButton:active,
a.proceedButton.active,
a.primaryButton:hover,
a.primaryButton.hover,
a.primaryButton:focus,
a.primaryButton.focus,
a.primaryButton:active,
a.primaryButton.active,
a.underlineButton:hover,
a.underlineButton.hover,
a.underlineButton:focus,
a.underlineButton.focus,
a.underlineButton:active,
a.underlineButton.active,
a.assetButton:hover,
a.assetButton.hover,
a.assetButton:focus,
a.assetButton.focus,
a.assetButton:active,
a.assetButton.active {
    background: /*style._darker_button_background_color(*//*style.button_background_color(*/#152f74/*).colorAdjust(0,0,-5,0)*//*)*/;
    border-color: /*style._darker_button_background_color(*//*style.button_background_color(*/#152f74/*).colorAdjust(0,0,-5,0)*//*)*/;
    color: /*style.button_text_color(*/#fff/*)*/;
    text-decoration: none;
    }

/* Action Button */
.evButtonAction {
    background: transparent;
    border-color: /*style.action_button_background_color(*/#999/*)*/ !important;
    color: /*style.action_button_text_color(*/#a7a7a7/*)*/;
    }
.evButtonAction:link,
.evButtonAction:visited {
    color: /*style.action_button_text_color(*/#a7a7a7/*)*/;
    }
.evButtonAction:hover,
.evButtonAction.hover,
.evButtonAction:focus,
.evButtonAction.focus,
.evButtonAction:active,
.evButtonAction.active {
    background: transparent;
    border-color: /*style._darker_action_button_background_color(*//*style.action_button_background_color(*/#8c8c8c/*).colorAdjust(0,0,-5,0)*//*)*/ !important;
    color: /*style._darker_action_button_background_color(*//*style.action_button_background_color(*/#8c8c8c/*).colorAdjust(0,0,-5,0)*//*)*/;
    }
.evDropdown.open > .evButtonAction.link {
    background: transparent;
    border-color: /*style._darker_action_button_background_color(*//*style.action_button_background_color(*/#8c8c8c/*).colorAdjust(0,0,-5,0)*//*)*/ !important;
    color: /*style._darker_action_button_background_color(*//*style.action_button_background_color(*/#8c8c8c/*).colorAdjust(0,0,-5,0)*//*)*/;
    }
a.actionButton {
    background: transparent;
    border-color: /*style.action_button_background_color(*/#999/*)*/;
    color: /*style.action_button_text_color(*/#a7a7a7/*)*/;
    }
a.actionButton:hover,
a.actionButton.hover,
a.actionButton:focus,
a.actionButton.focus,
a.actionButton:active,
a.actionButton.active {
    background: transparent;
    border-color: /*style._darker_action_button_background_color(*//*style.action_button_background_color(*/#8c8c8c/*).colorAdjust(0,0,-5,0)*//*)*/;
    color: /*style._darker_action_button_background_color(*//*style.action_button_background_color(*/#8c8c8c/*).colorAdjust(0,0,-5,0)*//*)*/;
    }

/* Proceed Button */
.evButtonProceed {
    background: /*style.proceed_button_background_color(*/#b38900/*)*/;
    border-color: transparent !important;
    color: /*style.proceed_button_text_color(*/#fff/*)*/;
    }
.evButtonProceed:link,
.evButtonProceed:visited {
    color: /*style.proceed_button_text_color(*/#fff/*)*/;
    }
.evButtonProceed:hover,
.evButtonProceed.hover,
.evButtonProceed:focus,
.evButtonProceed.focus,
.evButtonProceed:active,
.evButtonProceed.active {
    background: /*style._darker_proceed_button_background_color(*//*style.proceed_button_background_color(*/#9a7500/*).colorAdjust(0,0,-5,0)*//*)*/;
    border-color: transparent !important;
    color: /*style.proceed_button_text_color(*/#fff/*)*/;
    }
.evDropdown.open > .evButtonProceed.link {
    background: /*style._darker_proceed_button_background_color(*//*style.proceed_button_background_color(*/#9a7500/*).colorAdjust(0,0,-5,0)*//*)*/;
    border-color: transparent !important;
    color: /*style.proceed_button_text_color(*/#fff/*)*/;
    }
a.proceedButton {
    background: /*style.proceed_button_background_color(*/#b38900/*)*/;
    border-color: transparent;
    color: /*style.proceed_button_text_color(*/#fff/*)*/;
    }
a.proceedButton:hover,
a.proceedButton.hover,
a.proceedButton:focus,
a.proceedButton.focus,
a.proceedButton:active,
a.proceedButton.active {
    background: /*style._darker_proceed_button_background_color(*//*style.proceed_button_background_color(*/#9a7500/*).colorAdjust(0,0,-5,0)*//*)*/;
    border-color: transparent;
    color: /*style.proceed_button_text_color(*/#fff/*)*/;
    }

/* Cancel Button */
.evButtonCancel {
    background: /*style._cancel_button_background_color(*/#e5e5e5/*)*/;
    border-color: transparent !important;
    color: /*style._cancel_button_text_color(*/#565656/*)*/;
    }
.evButtonCancel:link,
.evButtonCancel:visited {
    color: /*style._cancel_button_text_color(*/#565656/*)*/;
    }
.evButtonCancel:hover,
.evButtonCancel.hover,
.evButtonCancel:focus,
.evButtonCancel.focus,
.evButtonCancel:active,
.evButtonCancel.active {
    border-color: transparent !important;
    color: /*style._cancel_hover_button_text_color(*/#2e2e2e/*)*/;
    }
.evDropdown.open > .evButtonCancel.link {
    background: /*style._cancel_hover_button_background_color(*/#d1d1d1/*)*/;
    border-color: transparent !important;
    color: /*style._cancel_hover_button_text_color(*/#2e2e2e/*)*/;
    }
a.evButtonCancel {
    background: /*style._cancel_button_background_color(*/#e5e5e5/*)*/;
    border-color: transparent !important;
    color: /*style._cancel_button_text_color(*/#565656/*)*/;
    }
a.evButtonCancel:hover,
a.evButtonCancel.hover,
a.evButtonCancel:focus,
a.evButtonCancel.focus,
a.evButtonCancel:active,
a.evButtonCancel.active {
    background: /*style._cancel_hover_button_background_color(*/#d1d1d1/*)*/;
    border-color: transparent !important;
    color: /*style._cancel_hover_button_text_color(*/#2e2e2e/*)*/;
    }

/* Primary Button */
.evButtonPrimary {
    background: /*style.primary(*/#19388A/*)*/;
    border-color: /*style.primary(*/#19388A/*)*/ !important;
    color: /*style.text_color_on_primary(*/#fff/*)*/;
    }
.evButtonPrimary:link,
.evButtonPrimary:visited {
    color: /*style.text_color_on_primary(*/#fff/*)*/;
    }
.evButtonPrimary:hover,
.evButtonPrimary.hover,
.evButtonPrimary:focus,
.evButtonPrimary.focus,
.evButtonPrimary:active,
.evButtonPrimary.active {
    background: /*style._darker_primary(*//*style.primary(*/#152f74/*).colorAdjust(0,0,-5,0)*//*)*/;
    border-color: /*style._darker_primary(*//*style.primary(*/#152f74/*).colorAdjust(0,0,-5,0)*//*)*/ !important;
    }
.evDropdown.open > .evButtonPrimary.link {
    background: /*style._darker_primary(*//*style.primary(*/#152f74/*).colorAdjust(0,0,-5,0)*//*)*/;
    border-color: /*style._darker_primary(*//*style.primary(*/#152f74/*).colorAdjust(0,0,-5,0)*//*)*/ !important;
    }
a.primaryButton {
    background: /*style.primary(*/#19388A/*)*/;
    border-color: /*style.primary(*/#19388A/*)*/;
    color: /*style.text_color_on_primary(*/#fff/*)*/;
    }
a.primaryButton:hover,
a.primaryButton.hover,
a.primaryButton:focus,
a.primaryButton.focus,
a.primaryButton:active,
a.primaryButton.active {
    background: /*style._darker_primary(*//*style.primary(*/#152f74/*).colorAdjust(0,0,-5,0)*//*)*/;
    border-color: /*style._darker_primary(*//*style.primary(*/#152f74/*).colorAdjust(0,0,-5,0)*//*)*/ !important;
    color: /*style.text_color_on_primary(*/#fff/*)*/;
    }

/* Underline Button */
.evButtonUnderline {
    background: transparent;
    border-width: 0;
    color: /*style.heading_color(*/#454545/*)*/;
    }
.evButtonUnderline:link,
.evButtonUnderline:visited {
    color: /*style.heading_color(*/#454545/*)*/;
    }
.evButtonUnderline:hover,
.evButtonUnderline.hover,
.evButtonUnderline:focus,
.evButtonUnderline.focus,
.evButtonUnderline:active,
.evButtonUnderline.active {
    background: transparent;
    color: /*style.heading_color(*/#454545/*)*/;
    }
.evDropdown.open > .evButtonUnderline.link {
    background: transparent;
    color: /*style.heading_color(*/#454545/*)*/;
    }
.evButtonUnderline > .icon {
    height: /*style._button_height(*/48px/*)*/;
    line-height: 46px;
    border-bottom: /*style.heading_color(*/#454545/*)*/ solid;
    }
.evButtonUnderline > .label {
    height: /*style._button_height(*/48px/*)*/;
    line-height: 46px;
    border-bottom: /*style.heading_color(*/#454545/*)*/ solid;
    }
a.underlineButton {
    background: transparent;
    color: /*style.heading_color(*/#454545/*)*/;
    padding: 0;
    min-width: 0;
    border-width: 0 0 /*style._button_border_width(*/2px/*)*/ 0;
    line-height: 46px;
    }
a.underlineButton:hover,
a.underlineButton.hover,
a.underlineButton:focus,
a.underlineButton.focus,
a.underlineButton:active,
a.underlineButton.active {
    color: /*style.heading_color(*/#454545/*)*/;
    }

/* Asset Button */
.evButtonAsset {
    background: /*style.asset_button_background_color(*/#fff/*).colorAdjust(0,0,0,-0)*/;
    border-color: transparent;
    color: /*style.asset_button_text_color(*/#333/*)*/;
    }
.evButtonAsset:link,
.evButtonAsset:visited {
    color: /*style.asset_button_text_color(*/#333/*)*/;
    }
.evButtonAsset:hover,
.evButtonAsset.hover,
.evButtonAsset:focus,
.evButtonAsset.focus,
.evButtonAsset:active,
.evButtonAsset.active {
    background: /*style.asset_button_background_color(*/#fff/*)*/;
    border-color: transparent;
    color: /*style.asset_button_text_color(*/#333/*)*/;
    }
.evDropdown.open > .evButtonAsset.link {
    background: /*style.asset_button_background_color(*/#fff/*)*/;
    border-color: transparent;
    color: /*style.asset_button_text_color(*/#333/*)*/;
    }
a.assetButton {
    background: /*style.asset_button_background_color(*/#fff/*).colorAdjust(0,0,0,-0)*/;
    border-color: transparent;
    color: /*style.asset_button_text_color(*/#333/*)*/;
    }
a.assetButton:hover,
a.assetButton.hover,
a.assetButton:focus,
a.assetButton.focus,
a.assetButton:active,
a.assetButton.active {
    background: /*style.asset_button_background_color(*/#fff/*)*/;
    border-color: transparent;
    color: /*style.asset_button_text_color(*/#333/*)*/;
    }

/* Empty Button */
.evButtonEmpty {
    background: none transparent;
    border-color: transparent !important;
    color: inherit;
    font-weight: inherit;
    }
.evButtonEmpty:link,
.evButtonEmpty:visited {
    color: inherit;
    }
.evButtonEmpty:hover,
.evButtonEmpty.hover,
.evButtonEmpty:focus,
.evButtonEmpty.focus,
.evButtonEmpty:active,
.evButtonEmpty.active {
    background: none transparent;
    border-color: transparent !important;
    }
.evDropdown.open > .evButtonEmpty.link {
    background: none transparent;
    border-color: transparent !important;
    }

/* CMS Styles */
.evEditable a.button,
.evEditable a.actionButton,
.evEditable a.proceedButton,
.evEditable a.cancelButton,
.evEditable a.primaryButton,
.evEditable a.assetButton,
div[data-reference] a.button,
div[data-reference] a.actionButton,
div[data-reference] a.proceedButton,
div[data-reference] a.cancelButton,
div[data-reference] a.primaryButton,
div[data-reference] a.assetButton {
    position: inherit;
    }
.evEditable .evButton:not(:last-child),
div[data-reference] .evButton:not(:last-child) {
    margin-bottom: 1em;
    }
@media screen and (max-width: /*style._second_content_break_max(*/448px/*)*/) {
a.button,
a.actionButton,
a.proceedButton,
a.cancelButton,
a.primaryButton,
a.assetButton {
    min-width: 180px;
    }
}

/*
    Pagination
    ----------
*/
.evPagination .evButton {
    border-radius: 0;
    border: 0;
    padding: 5px 7px !important;
    min-width: 0;
    background-color: transparent;
    margin: 0;
    color: /*style.text_color(*/#454545/*)*/;
    font-weight: inherit;
    }
.evPagination .evButton .label {
    padding: 10px 3px;
    height: auto;
    width: auto;
    line-height: /*style.text_line_height(*/1.5/*)*/;
    font-size: /*style.text_font_size(*/14px/*)*/;
    }
.evPagination .evButton .icon {
    line-height: /*style.text_line_height(*/1.5/*)*/;
    }
.evPagination .evButton.active,
.evPagination .evButton.focus,
.evPagination .evButton:hover {
    -webkit-box-shadow: none;
    box-shadow: none;
    }
.evPagination .evButton.active .label,
.evPagination .evButton.focus .label,
.evPagination .evButton:hover .label {
    text-decoration: underline !important;
    }
.evPagination .evButton.evPaginationPrevious .icon,
.evPagination .evButton.evPaginationNext .icon {
    padding-left: 3px;
    opacity: .4;
    }
.evPagination .evButton.evPaginationPrevious .icon:before,
.evPagination .evButton.evPaginationNext .icon:before {
    font-size: 20px;
    line-height: /*style.text_line_height(*/1.5/*)*/;
    vertical-align: middle;
    }
.evPagination .evButton.evPaginationPrevious:hover .label,
.evPagination .evButton.evPaginationNext:hover .label {
    text-decoration: none !important;
    }
.evPagination .evButton.evPaginationPrevious:hover .icon,
.evPagination .evButton.evPaginationNext:hover .icon {
    opacity: 1;
    }

/*
		input-placeholder
		-----------------
		@fragment input-placeholder(#(0), #(1), #(2));
		#(0) is the colour for the placeholder text; e.g. #ff0000
        #(1) is the font style for the placeholder text; e.g. italic
		#(2) is the element selector; e.g. input.numeric
	*/
/*
		header-styles
		-----------------
		@fragment h1-h6-style
        used if heading styles not possible directly
	*/
/*
    	socialIcon
		----------
		@fragment socialIcon(#(0), #(1));
		#(0) is the icon font string; e.g. "\e600"
		#(1) is the colour for the icon; e.g. #ff0000
	*/
/*
    Select
    ------
*/
.evSelectButton {
    border-collapse: separate;
    width: 100%;
    }
.evSelectButton > .evButton {
    display: table;
    width: 100%;
    min-width: 0;
    margin-bottom: -41px;
    background-color: /*style.field_background_color(*/#fff/*)*/;
    border-width: /*style._field_border_width(*/1px/*)*/;
    border-color: /*style.field_border_color(*/#efefef/*)*/ !important;
    -webkit-box-shadow: 0 0 0 0 rgba(0,0,0,0);
    box-shadow: 0 0 0 0 rgba(0,0,0,0);
    font-weight: 400;
    color: /*style.field_text_color(*/#5e5e5e/*)*/;
    padding: 0 /*style._field_padding(*/15px/*)*/ !important;
    text-align: left;
    text-transform: initial;
    }
.evSelectButton > .evButton > .label {
    display: table-cell;
    vertical-align: middle;
    width: 100%;
    margin: 0;
    }
.evSelectButton > .evButton > .label > .prefix,
.evSelectButton > .evButton > .label > .postfix {
    opacity: .7;
    }
.evSelectButton > .evButton > .label > .prefix {
    padding-right: /*style._field_padding(*/15px/*)*/;
    }
.evSelectButton > .evButton > .label > .postfix {
    padding-left: /*style._field_padding(*/15px/*)*/;
    }
.evSelectButton > .evButton > .icon.select {
    display: table-cell;
    vertical-align: middle;
    position: relative;
    top: auto;
    right: auto;
    }
.evSelectButton > .evButton:hover,
.evSelectButton > .evButton.hover,
.evSelectButton > .evButton:focus,
.evSelectButton > .evButton.focus,
.evSelectButton > .evButton:active,
.evSelectButton > .evButton.active {
    background-color: /*style.focus_field_background_color(*/#fff/*)*/;
    border-color: /*style.focus_field_border_color(*/#c1c1c1/*)*/ !important;
    -webkit-box-shadow: 0 0 5px 0 rgba(0,0,0,.1);
    box-shadow: 0 0 5px 0 rgba(0,0,0,.1);
    color: /*style.focus_field_text_color(*/#686868/*)*/;
    }
select.evSelect {
    height: 45px;
    margin-top: -5px;
    }

/*
    Combo
    -----
*/
.evCombo .evComboOptions {
    background-color: /*style.focus_field_background_color(*/#fff/*)*/;
    border-color: /*style.focus_field_border_color(*/#c1c1c1/*)*/;
    -webkit-box-shadow: 0 0 5px 0 rgba(0,0,0,.1);
    box-shadow: 0 0 5px 0 rgba(0,0,0,.1);
    color: /*style.focus_field_text_color(*/#686868/*)*/;
    }
.evCombo .evComboOptions .active {
    background: /*style.primary(*/#19388A/*)*/;
    color: /*style.text_color_on_primary(*/#fff/*)*/;
    }
.evCombo .evComboOptions li:last-child {
    border-bottom: 0 none;
    }

/*
    Textfield
    ---------
*/
.evTextField {
    background-color: /*style.field_background_color(*/#fff/*)*/;
    border-width: /*style._field_border_width(*/1px/*)*/;
    border-radius: /*style.component_border_radius(*/2px/*)*/;
    border-color: /*style.field_border_color(*/#efefef/*)*/;
    -webkit-box-shadow: 0 0 0 0 rgba(0,0,0,0);
    box-shadow: 0 0 0 0 rgba(0,0,0,0);
    font-family: /*style.text_font_family(*/"Arial"/*)*/;
    font-size: /*style.text_font_size(*/14px/*)*/;
    font-weight: 400;
    color: /*style.field_text_color(*/#5e5e5e/*)*/;
    -webkit-transition: all /*style.animation_speed(*/0.3s/*)*/ ease-in;
    transition: all /*style.animation_speed(*/0.3s/*)*/ ease-in;
    }
.evTextField:hover,
.evTextField.hover,
.evTextField:focus,
.evTextField.focus,
.evTextField:active,
.evTextField.active {
    background-color: /*style.focus_field_background_color(*/#fff/*)*/;
    border-color: /*style.focus_field_border_color(*/#c1c1c1/*)*/;
    -webkit-box-shadow: 0 0 5px 0 rgba(0,0,0,.1);
    box-shadow: 0 0 5px 0 rgba(0,0,0,.1);
    color: /*style.focus_field_text_color(*/#686868/*)*/;
    outline: none;
    }
.evTextField:hover > .evTextFieldInput > input,
.evTextField.hover > .evTextFieldInput > input,
.evTextField:focus > .evTextFieldInput > input,
.evTextField.focus > .evTextFieldInput > input,
.evTextField:active > .evTextFieldInput > input,
.evTextField.active > .evTextFieldInput > input {
    color: inherit;
    }
.evTextField:hover > .evTextFieldPostfix .evDropdown,
.evTextField.hover > .evTextFieldPostfix .evDropdown,
.evTextField:focus > .evTextFieldPostfix .evDropdown,
.evTextField.focus > .evTextFieldPostfix .evDropdown,
.evTextField:active > .evTextFieldPostfix .evDropdown,
.evTextField.active > .evTextFieldPostfix .evDropdown {
    border-color: /*style.focus_field_border_color(*/#c1c1c1/*)*/;
    }
.evTextField.error {
    background-color: /*style._error_field_background_color(*/#fcf7f7/*)*/;
    border-color: /*style._error_field_border_color(*/#ef4242/*)*/;
    color: /*style._error_field_border_color(*/#ef4242/*)*/;
    }
.evTextField.error :-ms-input-placeholder {
    color: /*style._error_field_border_color(*/#ef4242/*)*/;
    font-style: > .evTextFieldInput > input;
    }
.evTextField.error ::-webkit-input-placeholder {
    color: /*style._error_field_border_color(*/#ef4242/*)*/;
    font-style: > .evTextFieldInput > input;
    }
.evTextField.error :-moz-placeholder {
    color: /*style._error_field_border_color(*/#ef4242/*)*/;
    font-style: > .evTextFieldInput > input;
    }
.evTextField.error ::placeholder {
    color: /*style._error_field_border_color(*/#ef4242/*)*/;
    font-style: > .evTextFieldInput > input;
    }
.evTextField.error .placeholder-state {
    color: /*style._error_field_border_color(*/#ef4242/*)*/;
    font-style: > .evTextFieldInput > input;
    }
.evTextField.error > .evTextFieldPostfix .evDropdown {
    border-color: /*style._error_field_border_color(*/#ef4242/*)*/;
    color: /*style._error_field_border_color(*/#ef4242/*)*/;
    }
.evTextField > .evTextFieldIcon,
.evTextField > .evTextFieldPrefix,
.evTextField > .evTextFieldPostfix {
    color: inherit;
    }
.evTextField > .evTextFieldIcon .label,
.evTextField > .evTextFieldPrefix .label,
.evTextField > .evTextFieldPostfix .label {
    color: inherit;
    opacity: .7;
    padding: 0;
    }
.evTextField > .evTextFieldIcon .icon,
.evTextField > .evTextFieldPrefix .icon,
.evTextField > .evTextFieldPostfix .icon {
    width: auto;
    height: auto;
    }
.evTextField > .evTextFieldIcon:empty,
.evTextField > .evTextFieldPrefix:empty,
.evTextField > .evTextFieldPostfix:empty {
    display: none;
    }
.evTextField > .evTextFieldIcon,
.evTextField > .evTextFieldPrefix {
    padding-left: /*style._field_padding(*/15px/*)*/;
    }
.evTextField > .evTextFieldPostfix {
    padding-right: /*style._field_padding(*/15px/*)*/;
    }
.evTextField > .evTextFieldPostfix .evDropdown {
    border-color: /*style.field_border_color(*/#efefef/*)*/;
    margin: 0;
    height: 39px;
    line-height: 37px;
    }
.evTextField > .evTextFieldPostfix .evDropdown > .link {
    padding: 0;
    padding-left: /*style._field_padding(*/15px/*)*/;
    height: 39px;
    line-height: 37px;
    }
.evTextField > .evTextFieldInput > input {
    font-family: inherit;
    font-size: inherit;
    font-weight: inherit;
    color: inherit;
    padding: 0 /*style._field_padding(*/15px/*)*/;
    height: 46px;
    }
.evTextField > .evTextFieldInput > input:-webkit-autofill {
    -webkit-box-shadow: /*style._field_box_shadow(*/0px 0 0 0 rgba(0,0,0,0)/*)*/,0 0 0 50px /*style.field_background_color(*/#fff/*)*/ inset;
    color: /*style.field_text_color(*/#5e5e5e/*)*/;
    border-radius: /*style.component_border_radius(*/2px/*)*/;
    }
.evTextField > .evTextFieldInput > input:-webkit-autofill:focus {
    -webkit-box-shadow: /*style._focus_field_box_shadow(*/0px 0 5px 0 rgba(0,0,0,.1)/*)*/,0 0 0 50px /*style.focus_field_background_color(*/#fff/*)*/ inset;
    color: /*style.focus_field_text_color(*/#686868/*)*/;
    border-radius: /*style.component_border_radius(*/2px/*)*/;
    }
.evTextField > .evTextFieldInput > input:placeholder-shown {
    color: /*style._field_placeholder_color(*/#686868/*)*/;
    }
.evTextField > .evTextFieldInput > input::-ms-input-placeholder {
    color: /*style._field_placeholder_color(*/#686868/*)*/;
    }
.evTextField > .evTextFieldInput > input:-ms-input-placeholder {
    color: /*style._field_placeholder_color(*/#686868/*)*/;
    }
.evTextField > .evTextFieldInput > input::-moz-placeholder {
    color: /*style._field_placeholder_color(*/#686868/*)*/;
    }
.evTextField > .evTextFieldInput > input::-webkit-input-placeholder {
    color: /*style._field_placeholder_color(*/#686868/*)*/;
    }
.evTextField > .evTextFieldInput > input:-moz-placeholder {
    color: /*style._field_placeholder_color(*/#686868/*)*/;
    }
.evTextField > .evTextFieldInput > input input:-webkit-autofill {
    -webkit-box-shadow: 0 0 0 50px /*style.field_text_color(*/#5e5e5e/*)*/ inset;
    -webkit-text-fill-color: /*style.field_background_color(*/#fff/*)*/;
    }
.evTextField > .evTextFieldInput > input input:-webkit-autofill:focus {
    -webkit-box-shadow: 0 0 0 50px /*style.field_text_color(*/#5e5e5e/*)*/ inset;
    -webkit-text-fill-color: /*style.field_background_color(*/#fff/*)*/;
    }

/*
    Textarea
    --------
*/
.evTextArea {
    background-color: /*style.field_background_color(*/#fff/*)*/;
    border-width: /*style._field_border_width(*/1px/*)*/;
    border-radius: /*style.component_border_radius(*/2px/*)*/;
    border-color: /*style.field_border_color(*/#efefef/*)*/;
    -webkit-box-shadow: 0 0 0 0 rgba(0,0,0,0);
    box-shadow: 0 0 0 0 rgba(0,0,0,0);
    font-family: /*style.text_font_family(*/Arial/*)*/;
    font-size: inherit;
    font-weight: 400;
    color: /*style.field_text_color(*/#5e5e5e/*)*/;
    -webkit-transition: all /*style.animation_speed(*/0.3s/*)*/ ease-in;
    transition: all /*style.animation_speed(*/0.3s/*)*/ ease-in;
    }
.evTextArea:hover,
.evTextArea.hover {
    -webkit-box-shadow: none;
    box-shadow: none;
    }
.evTextArea:focus,
.evTextArea.focus {
    background-color: /*style.focus_field_background_color(*/#fff/*)*/;
    border-color: /*style.focus_field_border_color(*/#c1c1c1/*)*/;
    -webkit-box-shadow: 0 0 5px 0 rgba(0,0,0,.1);
    box-shadow: 0 0 5px 0 rgba(0,0,0,.1);
    color: /*style.focus_field_text_color(*/#686868/*)*/;
    outline: none;
    }
.evTextArea textarea {
    font-family: inherit;
    font-size: inherit;
    font-weight: inherit;
    color: inherit;
    padding: /*style._content_third_gap(*/10px/*)*/ /*style._field_padding(*/15px/*)*/;
    }

/*
    Checkbox / Radio
    ----------------
*/
a.evCheckbox,
a.evRadio {
    border-color: /*style.field_border_color(*/#efefef/*)*/;
    color: /*style.field_text_color(*/#5e5e5e/*)*/ !important;
    text-decoration: none;
    -webkit-transition: all /*style.animation_speed(*/0.3s/*)*/ ease-in;
    transition: all /*style.animation_speed(*/0.3s/*)*/ ease-in;
    width: 16px;
    height: 16px;
    line-height: 12px;
    }
a.evCheckbox:after,
a.evRadio:after {
    font-size: 11px;
    line-height: 1;
    }
a.evCheckbox:hover,
a.evCheckbox.hover,
a.evRadio:hover,
a.evRadio.hover {
    border-color: /*style.primary(*/#19388A/*)*/;
    -webkit-box-shadow: 0 0 3px /*style.primary(*/#19388A/*)*/;
    box-shadow: 0 0 3px /*style.primary(*/#19388A/*)*/;
    color: /*style.field_text_color(*/#5e5e5e/*)*/ !important;
    }
a.evCheckbox:checked,
a.evCheckbox.checked,
a.evRadio:checked,
a.evRadio.checked {
    background-color: /*style.primary(*/#19388A/*)*/;
    border-color: /*style.primary(*/#19388A/*)*/;
    color: /*style.text_color_on_primary(*/#fff/*)*/ !important;
    }
a.evCheckbox ~ label,
a.evRadio ~ label {
    display: inline-table;
    padding-left: /*style._content_third_gap(*/10px/*)*/;
    }
a.evCheckbox ~ label .title,
a.evRadio ~ label .title {
    display: table-cell;
    vertical-align: middle;
    }
.evCheckoutSubscription .evCheckbox {
    margin-top: 2px;
    }

/*
    Range Slider
    ------------
*/
.ui-slider {
    border: 0 none;
    }
.ui-slider .ui-slider-range {
    background-color: /*style.text_color(*/#454545/*)*/;
    }
.ui-slider .ui-slider-handle {
    height: 14px;
    width: 14px;
    padding: 0;
    top: -4px;
    margin-left: -7px;
    border: 0 none;
    background-color: /*style.heading_color(*/#454545/*)*/ !important;
    }
.ui-slider-horizontal {
    height: 6px;
    background-color: /*style.field_border_color(*/#efefef/*)*/;
    }

/*
    Date Picker
    -----------
*/
div.datepicker {
    font-family: /*style.text_font_family(*/Arial/*)*/;
    font-size: /*style.text_font_size(*/14px/*)*/;
    font-weight: /*style.text_font_weight(*/400/*)*/;
    font-style: /*style.text_font_style(*/normal/*)*/;
    line-height: /*style.text_line_height(*/1.5/*)*/;
    color: /*style.text_color(*/#454545/*)*/;
    }
div.datepicker .icon {
    height: auto;
    width: auto;
    }
div.datepicker a:link,
div.datepicker a:visited {
    color: inherit;
    }
div.datepicker td.datepickerSelected {
    background: /*style.primary(*/#19388A/*)*/ !important;
    color: /*style.text_color_on_primary(*/#fff/*)*/;
    }

/*
    Inline Buttons
    --------------
*/
.inline-buttons {
    font-size: 0;
    white-space: nowrap;
    }
.inline-buttons > * {
    font-size: 1rem;
    display: inline-block;
    vertical-align: middle;
    }
.no-cssremunit .inline-buttons > * {
    font-size: 16px;
    }
.inline-buttons > .evButton + .evButton,
.inline-buttons > .evButton + .evDropdown,
.inline-buttons > .evDropdown + .evButton,
.inline-buttons > .evDropdown + .evDropdown {
    margin-left: 1px;
    }
.inline-buttons > .evButton {
    border-radius: 0 !important;
    }
.inline-buttons > .evButton.first,
.inline-buttons > .evButton:first-child {
    border-top-left-radius: /*style.component_border_radius(*/2px/*)*/ !important;
    border-bottom-left-radius: /*style.component_border_radius(*/2px/*)*/ !important;
    }
.inline-buttons > .evButton.last,
.inline-buttons > .evButton:last-child {
    border-top-right-radius: /*style.component_border_radius(*/2px/*)*/ !important;
    border-bottom-right-radius: /*style.component_border_radius(*/2px/*)*/ !important;
    }
.inline-buttons > .evDropdown > .evButton {
    border-radius: 0 !important;
    }
.inline-buttons > .evDropdown.first > .evButton,
.inline-buttons > .evDropdown:first-child > .evButton {
    border-top-left-radius: /*style.component_border_radius(*/2px/*)*/ !important;
    border-bottom-left-radius: /*style.component_border_radius(*/2px/*)*/ !important;
    }
.inline-buttons > .evDropdown.open.first > .evButton,
.inline-buttons > .evDropdown.open:first-child > .evButton {
    border-bottom-left-radius: 0 !important;
    }
.inline-buttons > .evDropdown.last > .evButton,
.inline-buttons > .evDropdown:last-child > .evButton {
    border-top-right-radius: /*style.component_border_radius(*/2px/*)*/ !important;
    border-bottom-right-radius: /*style.component_border_radius(*/2px/*)*/ !important;
    }
.inline-buttons > .evDropdown.open.last > .evButton,
.inline-buttons > .evDropdown.open:last-child > .evButton {
    border-bottom-right-radius: 0 !important;
    }
.inline-buttons .evTextFieldButton > .evTextField {
    border-radius: 0 !important;
    }
.inline-buttons .evTextFieldButton > .evTextField .evTextFieldInput > input {
    text-align: center;
    }
.inline-buttons .evTextFieldButton.first > .evTextField,
.inline-buttons .evTextFieldButton:first-child > .evTextField {
    border-top-left-radius: /*style.component_border_radius(*/2px/*)*/ !important;
    border-bottom-left-radius: /*style.component_border_radius(*/2px/*)*/ !important;
    }
.inline-buttons .evTextFieldButton.last > .evTextField,
.inline-buttons .evTextFieldButton:last-child > .evTextField {
    border-top-right-radius: /*style.component_border_radius(*/2px/*)*/ !important;
    border-bottom-right-radius: /*style.component_border_radius(*/2px/*)*/ !important;
    }
.inline-buttons.quantity-buttons {
    display: table;
    width: auto;
    }
.inline-buttons.quantity-buttons > * {
    display: table-cell;
    vertical-align: middle;
    line-height: 0;
    }
.inline-buttons.quantity-buttons .evButton {
    min-width: 0;
    background-color: /*style.field_background_color(*/#fff/*)*/;
    padding: 0 /*style._field_padding(*/15px/*)*/ !important;
    border-width: /*style._field_border_width(*/1px/*)*/;
    border-color: /*style.field_border_color(*/#efefef/*)*/ !important;
    -webkit-box-shadow: 0 0 0 0 rgba(0,0,0,0);
    box-shadow: 0 0 0 0 rgba(0,0,0,0);
    color: /*style.field_text_color(*/#5e5e5e/*)*/;
    font-weight: 400;
    margin: 5px;
    width: 45px;
    height: 40px;
    }
.inline-buttons.quantity-buttons .evButton.minus,
.inline-buttons.quantity-buttons .evButton.plus {
    font-size: 20px;
    }
.inline-buttons.quantity-buttons .evButton.minus {
    border-radius: 3px 0 0 3px !important;
    }
.inline-buttons.quantity-buttons .evButton.plus {
    border-radius: 0 3px 3px 0 !important;
    }
.inline-buttons.quantity-buttons .evButton > .label {
    height: 37px;
    line-height: 39px;
    padding: 0;
    color: #cfcfcf;
    }
.inline-buttons.quantity-buttons .evButton:hover,
.inline-buttons.quantity-buttons .evButton.hover,
.inline-buttons.quantity-buttons .evButton:focus,
.inline-buttons.quantity-buttons .evButton.focus,
.inline-buttons.quantity-buttons .evButton:active,
.inline-buttons.quantity-buttons .evButton.active {
    background-color: /*style.focus_field_background_color(*/#fff/*)*/;
    border-color: /*style.focus_field_border_color(*/#c1c1c1/*)*/ !important;
    -webkit-box-shadow: 0 0 5px 0 rgba(0,0,0,.1);
    box-shadow: 0 0 5px 0 rgba(0,0,0,.1);
    color: /*style.focus_field_text_color(*/#686868/*)*/;
    }
.inline-buttons.quantity-buttons .evButton:hover > .label,
.inline-buttons.quantity-buttons .evButton.hover > .label,
.inline-buttons.quantity-buttons .evButton:focus > .label,
.inline-buttons.quantity-buttons .evButton.focus > .label,
.inline-buttons.quantity-buttons .evButton:active > .label,
.inline-buttons.quantity-buttons .evButton.active > .label {
    color: /*style.focus_field_text_color(*/#686868/*)*/;
    }
.inline-buttons.quantity-buttons .evTextFieldButton {
    padding: 0;
    }
.inline-buttons.quantity-buttons .evTextFieldButton .evTextField {
    width: 100% !important;
    }
.inline-buttons.quantity-buttons .evTextFieldButton .evTextField .evTextFieldInput > input {
    height: 48px;
    }
.inline-buttons.quantity-buttons .evButton.minus + .evTextFieldButton .evTextField {
    border-width: 1px 0;
    }

/*
    Form / Field Styling
    --------------------
*/
.fieldHeader,
.formHeader {
    padding: 0 0 /*style._content_third_gap(*/10px/*)*/ 0;
    }
.fieldHeader:not(:first-child),
.formHeader:not(:first-child) {
    margin-top: /*style._content_gap(*/30px/*)*/;
    }
.fieldHeader + .evNotices,
.formHeader + .evNotices {
    margin-top: /*style._content_two_third_gap(*/20px/*)*/;
    }
.fieldFooter,
.formFooter {
    padding: /*style._content_third_gap(*/10px/*)*/ 0 0 0;
    }
.fieldArea {
    padding: /*style._content_third_gap(*/10px/*)*/ 0;
    }
.fieldArea.first:not(.cell.grid1of1.gridBlock),
.fieldArea.first:not(.cell.grid1of2.gridBlock),
.fieldArea.first:not(.cell.grid1of3.gridBlock),
.fieldArea.first:not(.cell.grid2of3.gridBlock),
.fieldArea.first:not(.cell.grid1of4.gridBlock),
.fieldArea.first:not(.cell.grid3of4.gridBlock),
.fieldArea.first:not(.cell.grid1of5.gridBlock),
.fieldArea.first:not(.cell.grid2of5.gridBlock),
.fieldArea.first:not(.cell.grid3of5.gridBlock),
.fieldArea.first:not(.cell.grid4of5.gridBlock),
.fieldArea:first-child:not(.cell.grid1of1.gridBlock),
.fieldArea:first-child:not(.cell.grid1of2.gridBlock),
.fieldArea:first-child:not(.cell.grid1of3.gridBlock),
.fieldArea:first-child:not(.cell.grid2of3.gridBlock),
.fieldArea:first-child:not(.cell.grid1of4.gridBlock),
.fieldArea:first-child:not(.cell.grid3of4.gridBlock),
.fieldArea:first-child:not(.cell.grid1of5.gridBlock),
.fieldArea:first-child:not(.cell.grid2of5.gridBlock),
.fieldArea:first-child:not(.cell.grid3of5.gridBlock),
.fieldArea:first-child:not(.cell.grid4of5.gridBlock) {
    padding-top: 0;
    }
.fieldArea.last:not(.cell.grid1of1.gridBlock),
.fieldArea.last:not(.cell.grid1of2.gridBlock),
.fieldArea.last:not(.cell.grid1of3.gridBlock),
.fieldArea.last:not(.cell.grid2of3.gridBlock),
.fieldArea.last:not(.cell.grid1of4.gridBlock),
.fieldArea.last:not(.cell.grid3of4.gridBlock),
.fieldArea.last:not(.cell.grid1of5.gridBlock),
.fieldArea.last:not(.cell.grid2of5.gridBlock),
.fieldArea.last:not(.cell.grid3of5.gridBlock),
.fieldArea.last:not(.cell.grid4of5.gridBlock),
.fieldArea:last-child:not(.cell.grid1of1.gridBlock),
.fieldArea:last-child:not(.cell.grid1of2.gridBlock),
.fieldArea:last-child:not(.cell.grid1of3.gridBlock),
.fieldArea:last-child:not(.cell.grid2of3.gridBlock),
.fieldArea:last-child:not(.cell.grid1of4.gridBlock),
.fieldArea:last-child:not(.cell.grid3of4.gridBlock),
.fieldArea:last-child:not(.cell.grid1of5.gridBlock),
.fieldArea:last-child:not(.cell.grid2of5.gridBlock),
.fieldArea:last-child:not(.cell.grid3of5.gridBlock),
.fieldArea:last-child:not(.cell.grid4of5.gridBlock) {
    padding-bottom: 0;
    }
#reviewForm .fieldArea:first-of-type {
    padding-top: 0;
    }
#reviewForm .fieldArea:last-of-type {
    padding-bottom: 0;
    }
.fieldContainer {
    padding: 0;
    }
.fieldContainer .fieldArea {
    padding: /*style._content_third_gap(*/10px/*)*/ 0;
    }
.fieldContainer .fieldArea.first,
.fieldContainer .fieldArea:first-child {
    padding-top: 0;
    }
.fieldContainer .fieldArea.first.cell,
.fieldContainer .fieldArea:first-child.cell,
.fieldContainer .fieldArea.first.grid1of1,
.fieldContainer .fieldArea.first.grid1of2,
.fieldContainer .fieldArea.first.grid1of3,
.fieldContainer .fieldArea.first.grid2of3,
.fieldContainer .fieldArea.first.grid1of4,
.fieldContainer .fieldArea.first.grid3of4,
.fieldContainer .fieldArea.first.grid1of5,
.fieldContainer .fieldArea.first.grid2of5,
.fieldContainer .fieldArea.first.grid3of5,
.fieldContainer .fieldArea.first.grid4of5,
.fieldContainer .fieldArea:first-child.grid1of1,
.fieldContainer .fieldArea:first-child.grid1of2,
.fieldContainer .fieldArea:first-child.grid1of3,
.fieldContainer .fieldArea:first-child.grid2of3,
.fieldContainer .fieldArea:first-child.grid1of4,
.fieldContainer .fieldArea:first-child.grid3of4,
.fieldContainer .fieldArea:first-child.grid1of5,
.fieldContainer .fieldArea:first-child.grid2of5,
.fieldContainer .fieldArea:first-child.grid3of5,
.fieldContainer .fieldArea:first-child.grid4of5,
.fieldContainer .fieldArea.first.gridBlock,
.fieldContainer .fieldArea:first-child.gridBlock {
    padding-top: /*style._content_third_gap(*/10px/*)*/;
    }
.fieldContainer .fieldArea.last,
.fieldContainer .fieldArea:last-child {
    padding-bottom: 0;
    }
.fieldContainer .fieldArea.last.cell,
.fieldContainer .fieldArea:last-child.cell,
.fieldContainer .fieldArea.last.grid1of1,
.fieldContainer .fieldArea.last.grid1of2,
.fieldContainer .fieldArea.last.grid1of3,
.fieldContainer .fieldArea.last.grid2of3,
.fieldContainer .fieldArea.last.grid1of4,
.fieldContainer .fieldArea.last.grid3of4,
.fieldContainer .fieldArea.last.grid1of5,
.fieldContainer .fieldArea.last.grid2of5,
.fieldContainer .fieldArea.last.grid3of5,
.fieldContainer .fieldArea.last.grid4of5,
.fieldContainer .fieldArea:last-child.grid1of1,
.fieldContainer .fieldArea:last-child.grid1of2,
.fieldContainer .fieldArea:last-child.grid1of3,
.fieldContainer .fieldArea:last-child.grid2of3,
.fieldContainer .fieldArea:last-child.grid1of4,
.fieldContainer .fieldArea:last-child.grid3of4,
.fieldContainer .fieldArea:last-child.grid1of5,
.fieldContainer .fieldArea:last-child.grid2of5,
.fieldContainer .fieldArea:last-child.grid3of5,
.fieldContainer .fieldArea:last-child.grid4of5,
.fieldContainer .fieldArea.last.gridBlock,
.fieldContainer .fieldArea:last-child.gridBlock {
    padding-bottom: /*style._content_third_gap(*/10px/*)*/;
    }
.fieldContainer header,
.fieldContainer footer {
    padding: /*style._content_third_gap(*/10px/*)*/ 0;
    }
.fieldContainer .gridContainer {
    margin-top: 0;
    margin-bottom: 0;
    }
.fieldContainer .gridContainer .fieldArea.first,
.fieldContainer .gridContainer .fieldArea:first-child {
    padding-top: /*style._content_third_gap(*/10px/*)*/;
    }
.fieldContainer .gridContainer .fieldArea.last,
.fieldContainer .gridContainer .fieldArea:last-child {
    padding-bottom: /*style._content_third_gap(*/10px/*)*/;
    }
.fieldContainer .gridContainer.first .fieldArea,
.fieldContainer .gridContainer:first-child .fieldArea {
    padding-top: 0;
    }
.fieldContainer .gridContainer.last .fieldArea,
.fieldContainer .gridContainer:last-child .fieldArea {
    padding-bottom: 0;
    }
.fieldContainer + .fieldContainer,
.fieldContainer + .fieldFooter {
    padding-top: /*style._content_two_third_gap(*/20px/*)*/;
    }
.fieldContainer:after {
    content: "";
    display: block;
    height: 0;
    font-size: 0;
    clear: both;
    visibility: hidden;
    }

/*
    Form Field Combo
    ----------------
*/
form.fieldCombo {
    display: table;
    width: 100%;
    }
form.fieldCombo > .textfieldContainer {
    display: table-cell;
    vertical-align: middle;
    width: 100%;
    }
form.fieldCombo > .textfieldContainer.first .evTextField,
form.fieldCombo > .textfieldContainer:first-child .evTextField {
    border-top-right-radius: 0 !important;
    border-bottom-right-radius: 0 !important;
    }
form.fieldCombo > .textfieldContainer.last .evTextField,
form.fieldCombo > .textfieldContainer:last-child .evTextField {
    border-top-left-radius: 0 !important;
    border-bottom-left-radius: 0 !important;
    }
form.fieldCombo > .buttonContainer {
    display: table-cell;
    vertical-align: middle;
    }
form.fieldCombo > .buttonContainer.first .evButton,
form.fieldCombo > .buttonContainer:first-child .evButton {
    border-top-right-radius: 0 !important;
    border-bottom-right-radius: 0 !important;
    }
form.fieldCombo > .buttonContainer.last .evButton,
form.fieldCombo > .buttonContainer:last-child .evButton {
    border-top-left-radius: 0 !important;
    border-bottom-left-radius: 0 !important;
    }

/*
    Custom Address Fixes
    --------------------
*/
#address .zipArea {
    width: 100%;
    }
#address .regionsArea:not([style*="display: none"]) + .zipArea {
    padding-left: /*style._content_third_gap(*/10px/*)*/;
    }
#address .regionsArea:not([style*="display: none"]) + .zipArea.cell {
    width: auto;
    }
#address .regionsArea[style*="display: none"] + .zipArea .evTextField {
    width: 100%;
    }
form[name="address"] .regionsArea:not([style*="display: none"]) + .zipArea {
    padding-left: /*style._content_third_gap(*/10px/*)*/;
    }
form[name="address"] .regionsArea:not([style*="display: none"]) + .zipArea.cell {
    width: auto;
    }
form[name="address"] .regionsArea[style*="display: none"] + .zipArea .evTextField {
    width: 100%;
    }

/*
		input-placeholder
		-----------------
		@fragment input-placeholder(#(0), #(1), #(2));
		#(0) is the colour for the placeholder text; e.g. #ff0000
        #(1) is the font style for the placeholder text; e.g. italic
		#(2) is the element selector; e.g. input.numeric
	*/
/*
		header-styles
		-----------------
		@fragment h1-h6-style
        used if heading styles not possible directly
	*/
/*
    	socialIcon
		----------
		@fragment socialIcon(#(0), #(1));
		#(0) is the icon font string; e.g. "\e600"
		#(1) is the colour for the icon; e.g. #ff0000
	*/
.entriesContainer {
    margin: -10px;
    font-size: 0;
    }
.entriesContainer > .evEntry,
.entriesContainer .evCategory,
.entriesContainer .evCategoryProduct {
    margin: /*style._content_third_gap(*/10px/*)*/;
    display: inline-block;
    vertical-align: top;
    font-size: /*style.text_font_size(*/14px/*)*/;
    }
.entriesContainer > .evReviewEntry {
    margin: /*style._content_half_gap(*/15px/*)*/ /*style._content_third_gap(*/10px/*)*/;
    font-size: 1rem;
    }
.entriesContainer:after {
    content: "";
    display: block;
    height: 0;
    font-size: 0;
    clear: both;
    visibility: hidden;
    }
@media screen and (max-width: /*style._first_content_break(*/1000px/*)*/) {
.entriesContainer > .evEntry,
.entriesContainer > .evReviewEntry,
.entriesContainer > .evCategory,
.entriesContainer .evCategoryProduct {
    text-align: left;
    }
}

@media screen and (max-width: /*style._second_special_content_break_max(*/700px/*)*/) {
.entriesContainer > .evReviewEntry {
    padding: 0 /*style._content_half_gap(*/15px/*)*/;
    }
}

@media screen and (max-width: /*style._second_content_break_max(*/448px/*)*/) {
.entriesContainer > .evReviewEntry {
    padding: 0;
    }
}

.entriesSlideshow > .header {
    padding: /*style._content_four_third_gap(*/40px/*)*/ 0;
    }
@media (max-width:/*style._special_content_break(*/900px/*)*/) {
.entriesSlideshow > .header {
    padding: /*style._content_gap(*/30px/*)*/ 0;
    }
}

.entriesSlideshow > .body {
    position: relative;
    overflow: hidden;
    }
.entriesSlideshow > .body > .evSlideshow {
    position: static;
    overflow: visible;
    }
.entriesSlideshow > .body > .evSlideshow > .evSlideshowMask {
    overflow: visible !important;
    }
.entriesSlideshow > .body > .evSlideshow > .evSlideshowMask .evCategoryProduct {
    padding: /*style._content_half_gap(*/15px/*)*/ 0;
    }
.entriesSlideshow > .footer {
    padding-top: /*style._content_gap(*/30px/*)*/;
    }
.entriesSlideshow .recentProducts {
    height: 252px;
    }
.entriesSlideshow .recentProducts .evSlideshowMask {
    height: 230px !important;
    }
.entriesSlideshow .recentProducts a {
    display: inline-block;
    width: 100%;
    height: 0;
    padding-bottom: 150%;
    position: relative;
    }
.entriesSlideshow .recentProducts a img {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    -webkit-transition: all .15 ease-in;
    transition: all .15 ease-in;
    }
.entriesSlideshow + .entriesSlideshow {
    margin-top: /*style._content_gap(*/30px/*)*/;
    }
@media screen and (max-width: /*style._first_content_break_max(*/1000px/*)*/) {
.entriesSlideshow > .body {
    margin: 0 -30px;
    padding: 0 /*style._content_gap(*/30px/*)*/;
    }
}

@media screen and (max-width: /*style._second_content_break_max(*/448px/*)*/) {
.entriesSlideshow > .body {
    margin: 0 -30px;
    padding: 0 8px;
    }
}

/*
    Entries
    -------
*/
.evEntry {
    position: relative;
    width: 20%;
    width: calc(20% - /*style._content_two_third_gap(*/20px/*)*/);
    }
.evEntry > .inner:after {
    content: "";
    display: block;
    height: 0;
    font-size: 0;
    clear: both;
    visibility: hidden;
    }
.evEntry .image {
    width: 100%;
    }
.evEntry .image img {
    width: 100%;
    height: 100%;
    }
.evEntry .image:hover ~ .titleAndBlurb a {
    text-decoration: underline;
    }
.evEntry .titleAndBlurb {
    margin: /*style._content_half_gap(*/15px/*)*/;
    text-align: center;
    }
.evEntry .titleAndBlurb a {
    display: inline-block;
    margin-bottom: /*style._content_third_gap(*/10px/*)*/;
    }
@media screen and (max-width: /*style._first_content_break_max(*/1000px/*)*/) {
.evEntry {
    width: 25%;
    width: calc(25% - /*style._content_two_third_gap(*/20px/*)*/);
    }
.evEntry .image {
    float: none;
    }
.evEntry .titleAndBlurb {
    margin: 0;
    margin-top: /*style._content_half_gap(*/15px/*)*/;
    }
}

@media (max-width:/*style._second_special_content_break_max(*/700px/*)*/) {
.evEntry {
    width: 50%;
    width: calc(50% - /*style._content_half_gap(*/15px/*)*/);
    }
.evEntry:nth-child(2n) {
    margin-left: 5px;
    }
.evEntry:nth-child(2n - 1) {
    margin-right: 5px;
    }
}

/*
    Categories
*/
.evCategory {
    position: relative;
    width: 100%;
    max-width: /*style._category_entry_width(*/calc(20% - 20px)/*)*/;
    }
.entriesContainer > .evCategory {
    margin-bottom: 0;
    }
.evCategory > .inner:after {
    content: "";
    display: block;
    height: 0;
    font-size: 0;
    clear: both;
    visibility: hidden;
    }
.evCategory .image {
    width: 100%;
    height: 0;
    padding-bottom: 153.84%;
    position: relative;
    }
.evCategory .image:hover ~ .content a {
    color: /*style.primary(*/#19388A/*)*/;
    }
.evCategory .image a {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    }
.evCategory .image img {
    width: 100%;
    top: 50%;
    position: absolute;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    left: 0;
    }
.evCategory .content {
    background: /*style.body_background_color(*/rgba(255,255,255,.8)/*).colorAdjust(0,0,0,-20)*/;
    }
.evCategory .content .titleAndBlurb {
    padding: /*style._content_half_gap(*/15px/*)*/;
    text-align: center;
    }
.evCategory .content h1,
.evCategory .content h2,
.evCategory .content h3,
.evCategory .content h4,
.evCategory .content h5,
.evCategory .content h6,
.evCategory .content .title {
    margin-bottom: 7px;
    }
.evCategory .content h1 a,
.evCategory .content h2 a,
.evCategory .content h3 a,
.evCategory .content h4 a,
.evCategory .content h5 a,
.evCategory .content h6 a,
.evCategory .content .title a {
    color: inherit;
    }
.evCategory .content a:hover {
    text-decoration: none;
    color: /*style.primary(*/#19388A/*)*/;
    }
@media (max-width:/*style._first_content_break_max(*/1000px/*)*/) {
.evCategory {
    max-width: 25%;
    max-width: calc(25% - 20px);
    }
}

@media (max-width:/*style._second_special_content_break_max(*/700px/*)*/) {
.evCategory {
    max-width: 50%;
    max-width: calc(50% - 20px);
    }
}

/*
    Products
*/
.evCategoryProduct {
    position: relative;
    text-align: left;
    width: 20%;
    width: calc(20% - /*style._content_two_third_gap(*/20px/*)*/);
    outline: 0;
    }
.evCategoryProduct[data-grid="5"] {
    width: calc(20% - /*style._content_two_third_gap(*/20px/*)*/);
    }
.evCategoryProduct[data-grid="4"] {
    width: calc(25% - /*style._content_two_third_gap(*/20px/*)*/);
    }
.evCategoryProduct[data-grid="2"] {
    width: calc(50% - /*style._content_two_third_gap(*/20px/*)*/);
    }
.evCategoryProduct > .inner:after {
    content: "";
    display: block;
    height: 0;
    font-size: 0;
    clear: both;
    visibility: hidden;
    }
.evCategoryProduct .image {
    width: 100%;
    height: 0;
    padding-bottom: 153.84%;
    position: relative;
    }
.evCategoryProduct .image:hover ~ .content a {
    text-decoration: underline;
    }
.evCategoryProduct .image a {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    }
.evCategoryProduct .image img {
    width: 100%;
    top: 50%;
    left: 0;
    position: absolute;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    }
.evCategoryProduct .image .addToWishlist {
    z-index: 2;
    width: 40px;
    height: 40px;
    padding: 10px;
    bottom: auto;
    left: auto;
    -webkit-transition: all .15 ease-in-out;
    transition: all .15 ease-in-out;
    color: /*style.inactive_heart_color(*/#a8a8a8/*)*/;
    }
.evCategoryProduct .image .addToWishlist .label {
    display: none;
    }
.evCategoryProduct .image .addToWishlist .icon:before {
    -webkit-transition: all .15 ease-in-out;
    transition: all .15 ease-in-out;
    font-size: 20px;
    }
.evCategoryProduct .image .addToWishlist[data-exists="false"] .icon:before {
    content: "\e909";
    }
.evCategoryProduct .image .addToWishlist[data-exists="true"] {
    color: /*style.active_heart_color(*/#b4975b/*)*/;
    }
.evCategoryProduct .image .addToWishlist[data-exists="true"] .icon:before {
    content: "\e908";
    }
.evCategoryProduct .image .addToWishlist:hover {
    padding: 8px;
    color: /*style.active_heart_color(*/#b4975b/*)*/;
    }
.evCategoryProduct .image .addToWishlist:hover .icon:before {
    font-size: 26px;
    }
.evCategoryProduct .content {
    padding-top: /*style._content_two_third_gap(*/20px/*)*/;
    overflow: hidden;
    font-size: 12px;
    }
.evCategoryProduct .content .titleAndBlurb {
    margin-bottom: /*style._content_third_gap(*/10px/*)*/;
    overflow: hidden;
    }
.evCategoryProduct .content .titleAndBlurb h1,
.evCategoryProduct .content .titleAndBlurb h2,
.evCategoryProduct .content .titleAndBlurb h3,
.evCategoryProduct .content .titleAndBlurb h4,
.evCategoryProduct .content .titleAndBlurb h5,
.evCategoryProduct .content .titleAndBlurb h6,
.evCategoryProduct .content .titleAndBlurb .title {
    color: /*style.text_color(*/#454545/*)*/;
    font-size: /*style.text_font_size(*/14px/*)*/;
    font-weight: /*style.text_font_weight(*/400/*)*/;
    line-height: /*style.text_line_height(*/1.5/*)*/;
    margin: 0;
    }
.evCategoryProduct .content .titleAndBlurb h1 a,
.evCategoryProduct .content .titleAndBlurb h2 a,
.evCategoryProduct .content .titleAndBlurb h3 a,
.evCategoryProduct .content .titleAndBlurb h4 a,
.evCategoryProduct .content .titleAndBlurb h5 a,
.evCategoryProduct .content .titleAndBlurb h6 a,
.evCategoryProduct .content .titleAndBlurb .title a {
    color: inherit;
    }
.evCategoryProduct .content .titleAndBlurb .blurb {
    display: none;
    }
.evCategoryProduct .content .averageRating {
    margin-bottom: /*style._content_third_gap(*/10px/*)*/;
    }
.evCategoryProduct .content .averageRating > .evRating,
.evCategoryProduct .content .averageRating > .totalReviews {
    display: inline-block;
    vertical-align: middle;
    }
.evCategoryProduct .content .averageRating > .totalReviews {
    display: none;
    padding-left: /*style._content_third_gap(*/10px/*)*/;
    }
.evCategoryProduct .content .shopping {
    margin-top: 17px;
    }
.evCategoryProduct .content .shopping ul.evPriceList li {
    font-size: 16px;
    display: inline-block;
    padding-right: 25px;
    }
.evCategoryProduct .content .shopping ul.evPriceList li .prefix {
    font-size: 12px;
    }
.evCategoryProduct .content .shopping ul.evPriceList li.current {
    font-weight: bold;
    color: /*style.heading_color(*/#454545/*)*/;
    }
.evCategoryProduct .content .shopping ul.evPriceList li.current.discount {
    color: #e43c3c;
    }
.evCategoryProduct .content form .fieldArea {
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-flow: row wrap;
    -ms-flex-flow: row wrap;
    flex-flow: row wrap;
    -webkit-align-items: flex-top;
    align-items: flex-top;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    }
.evCategoryProduct .content form .evButton {
    min-width: 0;
    margin: 0 auto 10px;
    width: 40%;
    font-size: 14px;
    }
.evCategoryProduct .content form .evButton[type="submit"] {
    width: 55%;
    }
.evCategoryProduct .content form .evButton + .evButton {
    margin: 0;
    }
@media screen and (max-width: /*style._first_content_break_max(*/1000px/*)*/) {
.evCategoryProduct {
    width: 25%;
    width: calc(25% - /*style._content_two_third_gap(*/20px/*)*/);
    }
.evCategoryProduct[data-grid="5"] ul.evPriceList li,
.evCategoryProduct[data-grid="4"] ul.evPriceList li {
    display: block !important;
    }
.evCategoryProduct .image {
    float: none;
    }
.evCategoryProduct .content {
    margin: 0;
    margin-top: /*style._content_half_gap(*/15px/*)*/;
    }
}

@media screen and (max-width: /*style._second_special_content_break_max(*/700px/*)*/) {
.evCategoryProduct,
.evCategoryProduct[data-grid="4"] {
    width: 50%;
    width: calc(50% - 10px);
    }
.entriesContainer .evCategoryProduct,
.entriesContainer .evCategoryProduct[data-grid="4"] {
    margin: 5px;
    }
.evCategoryProduct[data-grid="5"] ul.evPriceList li,
.evCategoryProduct[data-grid="4"] ul.evPriceList li,
.evCategoryProduct[data-grid="4"][data-grid="5"] ul.evPriceList li,
.evCategoryProduct[data-grid="4"][data-grid="4"] ul.evPriceList li {
    display: inline-block !important;
    }
}

/*
    Reviews
    -------
*/
.evReviewEntry {
    position: relative;
    border-bottom: 2px solid /*style.border_color(*/#fafafa/*)*/;
    }
.evReviewEntry > .inner {
    display: table;
    width: 100%;
    }
.evReviewEntry > .inner:after {
    content: "";
    display: block;
    height: 0;
    font-size: 0;
    clear: both;
    visibility: hidden;
    }
.evReviewEntry .contentRow {
    display: table-row;
    }
.evReviewEntry .contentRow .ratingAndAuthor {
    min-width: 280px;
    display: table-cell;
    vertical-align: top;
    padding: /*style._content_two_third_gap(*/20px/*)*/ 0;
    }
.evReviewEntry .contentRow .ratingAndAuthor .reviewer {
    margin: /*style._content_two_third_gap(*/20px/*)*/ 0 /*style._content_third_gap(*/10px/*)*/;
    font-size: /*style.h5_font_size(*/16px/*)*/;
    }
.evReviewEntry .contentRow .ratingAndAuthor .date {
    padding-bottom: 7px;
    }
.evReviewEntry .contentRow .ratingAndAuthor .evRating .icon {
    font-size: 16px;
    }
.evReviewEntry .contentRow .message {
    display: table-cell;
    vertical-align: top;
    width: 100%;
    padding: /*style._content_two_third_gap(*/20px/*)*/;
    }
.evReviewEntry .contentRow .message dl {
    margin: 0;
    }
.evReviewEntry .contentRow .message dl dt {
    clear: left;
    float: left;
    }
.evReviewEntry .contentRow .message dl dt span.label {
    display: none;
    }
.evReviewEntry .contentRow .message dl dt.pros {
    color: /*style._positive_text_color(*/#5fc050/*)*/;
    }
.evReviewEntry .contentRow .message dl dt.cons {
    color: /*style._error_text_color(*/#ef4242/*)*/;
    }
.evReviewEntry .contentRow .message dl dd {
    margin: 3px 0 /*style._content_half_gap(*/15px/*)*/ /*style._content_four_third_gap(*/40px/*)*/;
    padding-top: 1px;
    }
.evReviewEntry .contentRow .message dl dd span.no-comment {
    font-style: italic;
    color: /*style._review_flags_text_color(*/#929292/*)*/;
    }
.evReviewEntry .actionRow {
    display: table-row;
    color: /*style._review_flags_text_color(*/#929292/*)*/;
    }
.evReviewEntry .actionRow .vote {
    display: table-cell;
    vertical-align: bottom;
    width: 100%;
    padding: /*style._content_two_third_gap(*/20px/*)*/;
    padding-right: 0;
    }
.evReviewEntry .actionRow .vote .voteForm {
    float: left;
    }
.evReviewEntry .actionRow .vote .evButton {
    padding: /*style._content_third_gap(*/10px/*)*/ !important;
    background: none;
    color: /*style._review_flags_text_color(*/#929292/*)*/;
    margin: 0;
    }
.evReviewEntry .actionRow .vote .evButton:hover .label {
    text-decoration: underline !important;
    }
.evReviewEntry .actionRow .vote .evButton + .evButton {
    padding-left: 0 !important;
    }
.evReviewEntry .actionRow .vote .evButton + .evButton:before {
    content: "";
    height: 28px;
    width: 1px;
    display: inline-block;
    background: /*style.field_border_color(*/#efefef/*)*/;
    vertical-align: middle;
    margin-right: /*style._content_third_gap(*/10px/*)*/;
    }
.evReviewEntry .actionRow .report {
    float: right;
    }
.evReviewEntry .actionRow .report .evButton {
    padding-right: 5px !important;
    }
.evReviewEntry .evButton {
    height: auto;
    min-width: 0;
    border: 0 none;
    padding: 0 !important;
    text-align: left;
    font-weight: 400;
    }
.evReviewEntry .evButton > .icon,
.evReviewEntry .evButton > .label {
    height: 20px;
    line-height: 18px;
    }
@media screen and (max-width: /*style._first_content_break_max(*/1000px/*)*/) {
#product-review {
    padding: 0;
    }
#product-review .sortPageWrap {
    margin: 0;
    }
.evReviewEntry .contentRow .ratingAndAuthor {
    min-width: 160px;
    }
.evReviewEntry .actionRow {
    display: none;
    }
}

@media screen and (max-width: /*style._second_special_content_break_max(*/700px/*)*/) {
.evReviewEntry > .inner {
    display: block;
    }
.evReviewEntry .contentRow {
    display: block;
    }
.evReviewEntry .contentRow .ratingAndAuthor,
.evReviewEntry .contentRow .message {
    display: block;
    }
.evReviewEntry .contentRow .message {
    border-left: 0 none;
    border-top: 1px solid /*style.border_color(*/#fafafa/*)*/;
    padding: 5px;
    }
}

/*
		input-placeholder
		-----------------
		@fragment input-placeholder(#(0), #(1), #(2));
		#(0) is the colour for the placeholder text; e.g. #ff0000
        #(1) is the font style for the placeholder text; e.g. italic
		#(2) is the element selector; e.g. input.numeric
	*/
/*
		header-styles
		-----------------
		@fragment h1-h6-style
        used if heading styles not possible directly
	*/
/*
    	socialIcon
		----------
		@fragment socialIcon(#(0), #(1));
		#(0) is the icon font string; e.g. "\e600"
		#(1) is the colour for the icon; e.g. #ff0000
	*/
/*
    Slideshow
    ---------
*/
.evSlideshow .evSlideshowSlide .ev360 .ev360Toolbar {
    left: auto;
    right: 10px;
    }
.evSlideshow .evSlideshowButton a {
    width: 35px;
    height: 35px;
    margin: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
    border-radius: 0;
    padding: 0;
    text-transform: /*style.button_text_transformation(*/none/*)*/;
    }
.evSlideshow .evSlideshowButton .icon {
    width: 35px;
    height: 35px;
    margin: 0;
    line-height: 35px;
    text-align: center;
    color: inherit;
    }
.evSlideshow .evSlideshowPrevious,
.evSlideshow .evSlideshowNext {
    margin-top: -17px;
    }
.evSlideshow .evSlideshowPrevious {
    left: -40px;
    }
.evSlideshow .evSlideshowNext {
    right: -40px;
    }
.evSlideshow:hover .evSlideshowPrevious {
    left: 0;
    }
.evSlideshow:hover .evSlideshowNext {
    right: 0;
    }
.evSlideshow.evSlideshowThumbnails .evSlideshowSlide {
    opacity: 1;
    }
.evSlideshow.evSlideshowThumbnails .evSlideshowSlide img {
    border: 1px solid /*style.border_color(*/#fafafa/*)*/;
    -webkit-transition: all ease /*style.animation_speed(*/0.3s/*)*/;
    transition: all ease /*style.animation_speed(*/0.3s/*)*/;
    }
.evSlideshow.evSlideshowThumbnails .evSlideshowSlide.active img {
    border-width: 2px;
    border-color: /*style.primary(*/#19388A/*)*/;
    }
.evSlideshow.evSlideshowThumbnails .evSlideshowSlide .evProductMediaIcon {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1;
    background: rgba(0,0,0,.5);
    color: #fff;
    font-size: 40px;
    }
.evSlideshow.evSlideshowThumbnails .evSlideshowSlide .evProductMediaIcon > .icon {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translateY(-50%) translateX(-50%);
    -ms-transform: translateY(-50%) translateX(-50%);
    transform: translateY(-50%) translateX(-50%);
    height: auto;
    width: auto;
    font-size: inherit;
    line-height: 1;
    }
@media screen and (max-width: /*style._first_content_break_max(*/1000px/*)*/) {
.evSlideshow .evSlideshowPrevious {
    left: 0;
    }
.evSlideshow .evSlideshowNext {
    right: 0;
    }
}

/*
    Controller
    ----------
*/
.evController {
    padding: 0;
    }
.evController li {
    padding: 4px !important;
    margin: 4px;
    border-radius: 5px;
    background-color: transparent;
    border-radius: 100%;
    }
.evController li a {
    width: 12px;
    height: 12px;
    border: 0 none;
    background-color: #747372;
    -webkit-transition: all linear /*style.animation_speed(*/0.3s/*)*/;
    transition: all linear /*style.animation_speed(*/0.3s/*)*/;
    border-radius: 100%;
    }
.evController li a:hover,
.evController li a.hover,
.evController li a:focus,
.evController li a.focus {
    background-color: /*style.primary(*/#19388A/*)*/;
    }
.evController li.active {
    background-color: #868180;
    background-color: rgba(255,255,255,.4);
    }
.evController li.active > a {
    background-color: /*style.primary(*/#19388A/*)*/;
    }

/* Slick Js Slideshow */
.slickSlideshow-wrap {
    position: relative;
    }
.slickSlideshow {
    position: relative;
    z-index: 1;
    text-align: center;
    overflow: hidden;
    }
.slickSlideshow .slide,
.slickSlideshow .banner {
    z-index: 1;
    float: left;
    width: 100%;
    height: auto;
    position: relative;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    }
.slickSlideshow .slide :allHeadings,
.slickSlideshow .slide p,
.slickSlideshow .banner :allHeadings,
.slickSlideshow .banner p {
    color: inherit;
    }
.slickSlideshow .slide:focus,
.slickSlideshow .banner:focus {
    outline: 0;
    }
@media (max-width:) {
}

@media (max-width:) {
}

.slickSlideshow .slide .evProductMediaIcon,
.slickSlideshow .banner .evProductMediaIcon {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 20px;
    left: 0;
    z-index: 1;
    background: rgba(0,0,0,.3);
    color: #fff;
    font-size: 40px;
    }
.slickSlideshow .slide .evProductMediaIcon > .icon,
.slickSlideshow .banner .evProductMediaIcon > .icon {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translateY(-50%) translateX(-50%);
    -ms-transform: translateY(-50%) translateX(-50%);
    transform: translateY(-50%) translateX(-50%);
    height: auto;
    width: auto;
    font-size: inherit;
    line-height: 1;
    }
.slickSlideshow :not(.evCategoryProduct .inner) .content {
    display: table;
    height: 100%;
    width: 100%;
    margin: auto;
    z-index: 3;
    position: absolute;
    left: 50%;
    bottom: 50%;
    -webkit-transform: translate(-50%,50%);
    -ms-transform: translate(-50%,50%);
    transform: translate(-50%,50%);
    }
.slickSlideshow :not(.evCategoryProduct .inner) .content :editables,
.slickSlideshow :not(.evCategoryProduct .inner) .content .contentInner {
    display: table-cell;
    vertical-align: bottom;
    text-align: center;
    height: 100%;
    padding: 20px;
    }
.slickSlideshow :not(.evCategoryProduct .inner) .content .contentInner {
    text-align: center;
    }
.slickSlideshow .bannerThumbnail {
    width: 500px;
    margin: auto;
    }
.bannerArrow {
    display: block;
    position: absolute;
    top: 0;
    z-index: 5;
    width: 100%;
    }
.bannerArrow .icon {
    color: /*style.primary(*/#19388A/*)*/;
    font-size: 50px;
    opacity: 1;
    }
#recentProducts .slickSlideshow {
    text-align: center;
    }
#recentProducts .slickSlideshow .banner {
    padding: 0 8px;
    width: 128px;
    display: inline-block;
    float: none;
    }
#recentProducts .slickSlideshow .banner > a {
    display: inline-block;
    height: 0;
    width: 100%;
    padding-top: 150%;
    position: relative;
    }
#recentProducts .slickSlideshow .banner > a img {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    }
.bannerWrapController {
    position: relative;
    margin: auto;
    padding: /*style._content_two_third_gap(*/20px/*)*/ 0 /*style._content_gap(*/30px/*)*/;
    }
.bannerWrapController:after {
    content: "";
    display: block;
    height: 0;
    font-size: 0;
    clear: both;
    visibility: hidden;
    }
.bannerWrapController:empty {
    padding: 0;
    }
.bannerWrapController.dots {
    text-align: center;
    }
.bannerWrapController .slick-prev,
.bannerWrapController .slick-next {
    top: 0;
    position: relative;
    height: auto;
    width: auto;
    min-width: 0;
    padding: 10px !important;
    margin: 0;
    opacity: .3;
    border-radius: 0;
    display: inline-block;
    background-color: /*style.body_background_color(*/#fff/*)*/;
    color: /*style.primary(*/#19388A/*)*/;
    -webkit-transform: translate(0,0);
    -ms-transform: translate(0,0);
    transform: translate(0,0);
    left: 0;
    right: 0;
    }
.bannerWrapController .slick-prev.slick-next,
.bannerWrapController .slick-next.slick-next {
    float: right;
    }
.bannerWrapController .slick-prev:before,
.bannerWrapController .slick-next:before {
    font-size: 20px;
    }
.bannerWrapController .slick-prev:hover,
.bannerWrapController .slick-next:hover {
    background-color: /*style.body_background_color(*/#fff/*)*/;
    color: /*style.primary(*/#19388A/*)*/;
    opacity: 1;
    }
.slick-dots {
    position: relative;
    bottom: 0;
    font-size: 0;
    width: auto;
    display: inline-block !important;
    z-index: 5;
    }
.slick-dots li {
    height: auto;
    width: auto;
    margin: 4px;
    }
.slick-dots li button {
    height: auto;
    width: auto;
    min-width: 0;
    padding: 0 !important;
    margin: 0;
    width: 20px;
    height: 20px;
    padding: 4px !important;
    border-radius: 5px;
    background-color: transparent;
    border-radius: 100%;
    }
.slick-dots li button:hover {
    opacity: 1;
    }
.slick-dots li button:before {
    width: 12px;
    height: 12px;
    font-size: 0;
    opacity: 1;
    top: 4px;
    background: #747372;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    border-radius: 100%;
    }
.slick-dots li.slick-active {
    background-color: #868180;
    background-color: rgba(255,255,255,.4);
    }
.slick-dots li.slick-active button:before {
    opacity: 1;
    background: /*style.primary(*/#19388A/*)*/;
    }

/*
		input-placeholder
		-----------------
		@fragment input-placeholder(#(0), #(1), #(2));
		#(0) is the colour for the placeholder text; e.g. #ff0000
        #(1) is the font style for the placeholder text; e.g. italic
		#(2) is the element selector; e.g. input.numeric
	*/
/*
		header-styles
		-----------------
		@fragment h1-h6-style
        used if heading styles not possible directly
	*/
/*
    	socialIcon
		----------
		@fragment socialIcon(#(0), #(1));
		#(0) is the icon font string; e.g. "\e600"
		#(1) is the colour for the icon; e.g. #ff0000
	*/
/*
    Dialog
    ------ 
*/
.evDialog {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 2;
    }
.evDialog .evDialogWindow {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translateX(-50%) translateY(-50%);
    -ms-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
    width: 100%;
    padding: /*style._content_gap(*/30px/*)*/;
    border: 1px solid /*style.border_color(*/#fafafa/*)*/;
    border-radius: /*style.component_border_radius(*/2px/*)*/;
    background: /*style.body_background_color(*/#fff/*)*/;
    -webkit-box-shadow: 0 0 8px 0 rgba(0,0,0,.4);
    box-shadow: 0 0 8px 0 rgba(0,0,0,.4);
    }
.evDialog .evDialogWindow .header {
    color: /*style.heading_color(*/#454545/*)*/;
    }
.evDialog .evDialogWindow .header .headerIcon {
    display: none;
    }
.evDialog .evDialogWindow .header .headerTitle h1,
.evDialog .evDialogWindow .header .headerTitle h2,
.evDialog .evDialogWindow .header .headerTitle h3,
.evDialog .evDialogWindow .header .headerTitle h4,
.evDialog .evDialogWindow .header .headerTitle h5,
.evDialog .evDialogWindow .header .headerTitle h6,
.evDialog .evDialogWindow .header .headerTitle .title {
    padding-right: 80px;
    }
.evDialog .evDialogWindow .header .headerTitle .text {
    color: /*style.text_color(*/#454545/*)*/;
    }
.evDialog .evDialogWindow .closeIcon {
    position: absolute;
    top: 35px;
    right: 37px;
    }
.evDialog .evDialogWindow .closeIcon a {
    text-decoration: none;
    color: /*style.heading_color(*/#454545/*)*/;
    width: auto;
    height: auto;
    vertical-align: middle;
    font-size: 20px;
    }
.evDialog .evDialogWindow .closeIcon a:before {
    vertical-align: middle;
    padding: 0 5px 2px 0;
    display: inline-block;
    }
.evDialog .evDialogWindow .closeIcon a:after {
    content: attr(title);
    font-family: /*style.text_font_family(*/Arial/*)*/;
    font-size: 16px;
    font-weight: bold;
    text-transform: Capitalize;
    }
.evDialog .evDialogWindow .closeIcon a:hover,
.evDialog .evDialogWindow .closeIcon a.hover,
.evDialog .evDialogWindow .closeIcon a:focus,
.evDialog .evDialogWindow .closeIcon a.focus {
    color: /*style.primary(*/#19388A/*)*/;
    }
.evDialog .evDialogWindow .footer {
    display: none;
    }
.evDialog.evDialogModal {
    background: /*style.body_background_color(*/rgba(255,255,255,.7)/*).colorAdjust(0,0,0,-30)*/;
    }

/*
		input-placeholder
		-----------------
		@fragment input-placeholder(#(0), #(1), #(2));
		#(0) is the colour for the placeholder text; e.g. #ff0000
        #(1) is the font style for the placeholder text; e.g. italic
		#(2) is the element selector; e.g. input.numeric
	*/
/*
		header-styles
		-----------------
		@fragment h1-h6-style
        used if heading styles not possible directly
	*/
/*
    	socialIcon
		----------
		@fragment socialIcon(#(0), #(1));
		#(0) is the icon font string; e.g. "\e600"
		#(1) is the colour for the icon; e.g. #ff0000
	*/
/*
    Heading & Text stylings
	-----------------------
	Preset styles that the cms user can choose from for any
    of the available headings (h1, h2, h3, h4, h5, h6);
*/
.light {
    opacity: 1;
    }
p.primary_color,
span.primary_color,
div.primary_color,
a.primary_color,
h1.primary_color,
h2.primary_color,
h3.primary_color,
h4.primary_color,
h5.primary_color,
h6.primary_color,
.title.primary_color {
    color: /*style.primary(*/#19388A/*)*/;
    }
p.secondary_color,
span.secondary_color,
div.secondary_color,
a.secondary_color,
h1.secondary_color,
h2.secondary_color,
h3.secondary_color,
h4.secondary_color,
h5.secondary_color,
h6.secondary_color,
.title.secondary_color {
    color: /*style.secondary(*/#b4975b/*)*/;
    }
p.text,
span.text,
div.text,
a.text,
h1.text,
h2.text,
h3.text,
h4.text,
h5.text,
h6.text,
.title.text {
    color: /*style.text_color(*/#454545/*)*/;
    }
p.light,
span.light,
div.light,
a.light,
h1.light,
h2.light,
h3.light,
h4.light,
h5.light,
h6.light,
.title.light {
    font-weight: /*style.light_text_font_weight(*/400/*)*/;
    }
p.normal,
span.normal,
div.normal,
a.normal,
h1.normal,
h2.normal,
h3.normal,
h4.normal,
h5.normal,
h6.normal,
.title.normal {
    opacity: 1;
    font-weight: /*style.light_text_font_weight(*/400/*)*/;
    }
p.medium,
span.medium,
div.medium,
a.medium,
h1.medium,
h2.medium,
h3.medium,
h4.medium,
h5.medium,
h6.medium,
.title.medium {
    font-weight: /*style.semibold_text_font_weight(*/600/*)*/;
    }
p.bold,
span.bold,
div.bold,
a.bold,
h1.bold,
h2.bold,
h3.bold,
h4.bold,
h5.bold,
h6.bold,
.title.bold,
p.strong,
span.strong,
div.strong,
a.strong,
h1.strong,
h2.strong,
h3.strong,
h4.strong,
h5.strong,
h6.strong,
.title.strong {
    font-weight: /*style.strong_text_font_weight(*/700/*)*/;
    }
p.underline,
span.underline,
div.underline,
a.underline,
h1.underline,
h2.underline,
h3.underline,
h4.underline,
h5.underline,
h6.underline,
.title.underline {
    text-decoration: underline;
    }
h1.light,
h2.light,
h3.light,
h4.light,
h5.light,
h6.light,
.title.light {
    font-weight: /*style.light_heading_font_weight(*/400/*)*/;
    }
h1.normal,
h2.normal,
h3.normal,
h4.normal,
h5.normal,
h6.normal,
.title.normal {
    opacity: 1;
    font-weight: /*style.light_heading_font_weight(*/400/*)*/;
    }
h1.medium,
h2.medium,
h3.medium,
h4.medium,
h5.medium,
h6.medium,
.title.medium {
    font-weight: /*style.semibold_heading_font_weight(*/600/*)*/;
    }
h1.bold,
h2.bold,
h3.bold,
h4.bold,
h5.bold,
h6.bold,
.title.bold,
h1.strong,
h2.strong,
h3.strong,
h4.strong,
h5.strong,
h6.strong,
.title.strong {
    font-weight: /*style.strong_heading_font_weight(*/700/*)*/;
    }
.evEditable p.primary_color,
.evEditable p.secondary_color,
.evEditable p.text,
.evEditable p.underline,
.evEditable p.light,
.evEditable p.medium,
.evEditable p.normal,
.evEditable p.bold,
.evEditable span.primary_color,
.evEditable span.secondary_color,
.evEditable span.text,
.evEditable span.underline,
.evEditable span.light,
.evEditable span.medium,
.evEditable span.normal,
.evEditable span.bold,
.evEditable div.primary_color,
.evEditable div.secondary_color,
.evEditable div.text,
.evEditable div.underline,
.evEditable div.light,
.evEditable div.medium,
.evEditable div.normal,
.evEditable div.bold,
.evEditable h1.primary_color,
.evEditable h1.secondary_color,
.evEditable h1.text,
.evEditable h1.underline,
.evEditable h1.light,
.evEditable h1.medium,
.evEditable h1.normal,
.evEditable h1.bold,
.evEditable h2.primary_color,
.evEditable h2.secondary_color,
.evEditable h2.text,
.evEditable h2.underline,
.evEditable h2.light,
.evEditable h2.medium,
.evEditable h2.normal,
.evEditable h2.bold,
.evEditable h3.primary_color,
.evEditable h3.secondary_color,
.evEditable h3.text,
.evEditable h3.underline,
.evEditable h3.light,
.evEditable h3.medium,
.evEditable h3.normal,
.evEditable h3.bold,
.evEditable h4.primary_color,
.evEditable h4.secondary_color,
.evEditable h4.text,
.evEditable h4.underline,
.evEditable h4.light,
.evEditable h4.medium,
.evEditable h4.normal,
.evEditable h4.bold,
.evEditable h5.primary_color,
.evEditable h5.secondary_color,
.evEditable h5.text,
.evEditable h5.underline,
.evEditable h5.light,
.evEditable h5.medium,
.evEditable h5.normal,
.evEditable h5.bold,
.evEditable h6.primary_color,
.evEditable h6.secondary_color,
.evEditable h6.text,
.evEditable h6.underline,
.evEditable h6.light,
.evEditable h6.medium,
.evEditable h6.normal,
.evEditable h6.bold,
.evEditable .title.primary_color,
.evEditable .title.secondary_color,
.evEditable .title.text,
.evEditable .title.underline,
.evEditable .title.light,
.evEditable .title.medium,
.evEditable .title.normal,
.evEditable .title.bold {
    zoom: 1;
    }

/*
        The styles below already have their styling set
        within generic.css. We are just re-calling inside
        the .evEditable to ensure they are loaded within
        the cms styles dropdown
    */
.evEditable h1.h1-Style,
.evEditable h1.h2-Style,
.evEditable h1.h3-Style,
.evEditable h1.h4-Style,
.evEditable h1.h5-Style,
.evEditable h1.h6-Style,
.evEditable h1.h1-style,
.evEditable h1.h2-style,
.evEditable h1.h3-style,
.evEditable h1.h4-style,
.evEditable h1.h5-style,
.evEditable h1.h6-style,
.evEditable h2.h1-Style,
.evEditable h2.h2-Style,
.evEditable h2.h3-Style,
.evEditable h2.h4-Style,
.evEditable h2.h5-Style,
.evEditable h2.h6-Style,
.evEditable h2.h1-style,
.evEditable h2.h2-style,
.evEditable h2.h3-style,
.evEditable h2.h4-style,
.evEditable h2.h5-style,
.evEditable h2.h6-style,
.evEditable h3.h1-Style,
.evEditable h3.h2-Style,
.evEditable h3.h3-Style,
.evEditable h3.h4-Style,
.evEditable h3.h5-Style,
.evEditable h3.h6-Style,
.evEditable h3.h1-style,
.evEditable h3.h2-style,
.evEditable h3.h3-style,
.evEditable h3.h4-style,
.evEditable h3.h5-style,
.evEditable h3.h6-style,
.evEditable h4.h1-Style,
.evEditable h4.h2-Style,
.evEditable h4.h3-Style,
.evEditable h4.h4-Style,
.evEditable h4.h5-Style,
.evEditable h4.h6-Style,
.evEditable h4.h1-style,
.evEditable h4.h2-style,
.evEditable h4.h3-style,
.evEditable h4.h4-style,
.evEditable h4.h5-style,
.evEditable h4.h6-style,
.evEditable h5.h1-Style,
.evEditable h5.h2-Style,
.evEditable h5.h3-Style,
.evEditable h5.h4-Style,
.evEditable h5.h5-Style,
.evEditable h5.h6-Style,
.evEditable h5.h1-style,
.evEditable h5.h2-style,
.evEditable h5.h3-style,
.evEditable h5.h4-style,
.evEditable h5.h5-style,
.evEditable h5.h6-style,
.evEditable h6.h1-Style,
.evEditable h6.h2-Style,
.evEditable h6.h3-Style,
.evEditable h6.h4-Style,
.evEditable h6.h5-Style,
.evEditable h6.h6-Style,
.evEditable h6.h1-style,
.evEditable h6.h2-style,
.evEditable h6.h3-style,
.evEditable h6.h4-style,
.evEditable h6.h5-style,
.evEditable h6.h6-style,
.evEditable .title.h1-Style,
.evEditable .title.h2-Style,
.evEditable .title.h3-Style,
.evEditable .title.h4-Style,
.evEditable .title.h5-Style,
.evEditable .title.h6-Style,
.evEditable .title.h1-style,
.evEditable .title.h2-style,
.evEditable .title.h3-style,
.evEditable .title.h4-style,
.evEditable .title.h5-style,
.evEditable .title.h6-style {
    position: inherit;
    }
.evEditable p.large {
    position: inherit;
    }
.evEditable p.large.nomar {
    margin-bottom: 0;
    }

/*
    Text styles
    -----------
    Preset styles that the cms user can choose from
*/
.evEditable p.error,
.evEditable span.error {
    color: /*style._error_text_color(*/#ef4242/*)*/;
    }

/*
    Column stylings
    ---------------
*/
.columns2,
.columns3,
.columns4 {
    margin: -15px;
    }
.columns2 .column1of2,
.columns2 .column1of3,
.columns2 .column2of3,
.columns2 .column1of4,
.columns2 .column3of4,
.columns2 .column1of5,
.columns2 .column2of5,
.columns2 .column3of5,
.columns2 .column4of5,
.columns3 .column1of2,
.columns3 .column1of3,
.columns3 .column2of3,
.columns3 .column1of4,
.columns3 .column3of4,
.columns3 .column1of5,
.columns3 .column2of5,
.columns3 .column3of5,
.columns3 .column4of5,
.columns4 .column1of2,
.columns4 .column1of3,
.columns4 .column2of3,
.columns4 .column1of4,
.columns4 .column3of4,
.columns4 .column1of5,
.columns4 .column2of5,
.columns4 .column3of5,
.columns4 .column4of5 {
    padding: /*style._content_half_gap(*/15px/*)*/;
    }
.csscolumns .columns2,
.csscolumns .columns3,
.csscolumns .columns4 {
    margin: 0;
    -webkit-column-width: 220px;
    -moz-column-width: 220px;
    column-width: 220px;
    }
.csscolumns .columns2 [class^="column"],
.csscolumns .columns3 [class^="column"],
.csscolumns .columns4 [class^="column"] {
    float: none;
    width: auto;
    padding: /*style._content_half_gap(*/15px/*)*/ 0;
    -webkit-column-break-inside: avoid;
    -moz-column-break-inside: avoid;
    -o-column-break-inside: avoid;
    -ms-column-break-inside: avoid;
    column-break-inside: avoid;
    }
.columns2:after,
.columns3:after,
.columns4:after {
    content: "";
    display: block;
    height: 0;
    font-size: 0;
    clear: both;
    visibility: hidden;
    }
.csscolumns .evEditable div.columns2 {
    -webkit-column-count: 2;
    -moz-column-count: 2;
    column-count: 2;
    }
.csscolumns .evEditable div.columns3 {
    -webkit-column-count: 3;
    -moz-column-count: 3;
    column-count: 3;
    }
.csscolumns .evEditable div.columns4 {
    -webkit-column-count: 4;
    -moz-column-count: 4;
    column-count: 4;
    }
