/*
	style.css
	- Reset
	- Base HTML Styles
	- Base Typography
	- Layout
	- Page Specific Styles
	- Print Styles

----------------------------------------------------------------------*/

@font-face {
    font-family: "ProzaDisplayW03-ExtraBold";
    src:url("laf/css/ProzaDisplayW03-ExtraBold.ttf") format('truetype');
}
@font-face {
    font-family: "Nunito";
    src:url("laf/css/Nunito-Regular.ttf") format('truetype');
}

/*
    Reset
    - html5doctor.com (Eric Meyer's Reset Reloaded + HTML5 baseline)

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

html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre, div.h1, div.p,
abbr, address, cite, code, del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var, b, i, dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    vertical-align: baseline;
}

pre {
    padding: 0.75em;
    border: 1px solid #ccc;
    background: #ddd;
    margin: 1.5em 0 0;
    white-space: normal;
}

code, pre code {
    font-family: Consolas, "Lucida Console", Monaco, monospace;
}

iframe {
    margin-bottom: -5px;
}

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
    display: block;
}

table {
    border-spacing: 0;
}

hr {
    display: block;
    height: 1px;
    border: 0;
    border-top: 1px solid #ccc;
    margin: 16px 0;
    padding: 0;
}

input, select {
    vertical-align: middle;
}

input[type="radio"] {
    vertical-align: text-bottom;
    margin-bottom: 3px;
}

*:focus {
    outline: 0;
}

/* Base HTML Styles --------------------------------------------------------------------------------------------------*/

html {
    width: 100%;
    height: 100%;
    overflow-x: hidden;
}

td {
    vertical-align: middle;
}

body {
    font-family: Nunito;
    font-style: normal;
    font-weight: normal;
    font-size: 14px;
    line-height: 20px;
    color: #3A445C;
    letter-spacing: 0.015em;
}

body.loading {
    width: 100%;
    overflow-x: hidden;
}

a {
    font-weight: bold;
    color: #3A445C;
    text-decoration: underline;
}

a:hover {
    /* text-decoration: none;*/
    color: #272F3F;
}

a:hover, a:active {
    outline: none;
}

strong {
    font-weight: bold;
}

h1, h2, h3, h4, h5, h6, div.h1 {
    margin-bottom: 4px;
}

h1, h2, h3, div.h1 {
    font-weight: bold;
}

h1, div.h1 {
    font-size: 24px;
}

h2, div.h2 {
    font-size: 20px;
}

h3, div.h3 {
    font-size: 16px;
}

h4, div.h4 {
    font-size: 14px;
}

p, ul, ol, form, div.p {
    margin-top: 3px;
    margin-bottom: 3px;
}

ul {
    list-style-position: outside;
    list-style-type: none;
    line-height: 14px;
}

/*li {*/
/*    margin-bottom: 3px;*/
/*}*/

ol {
    list-style-position: outside;
    list-style-type: decimal;
}

/*nav ul, nav li {*/
/*    margin: 0;*/
/*    list-style: none;*/
/*    list-style-image: none;*/
/*}*/

input {
    font-family: Nunito;
}

label, input[type="button"], input[type="submit"], input[type="image"], button {
    cursor: pointer;
}

textarea {
    overflow: auto;
}

select, .ms-options-wrap button {
    font-weight: normal;
    width: 100%;
    padding: 5px;
    background: #F1F1F1;
    -webkit-appearance: none;
    -moz-appearance: none;
    background: url(gwt/laf/sitewide/icons/dropdownArrow.svg) no-repeat;
    background-position-x: 98%;
    background-position-y: 50%;
}

select::-ms-expand {
    display: none;
}

*::-moz-placeholder {
    color: #C4C4C4;
}

/* Components */

/* CMS */
.cms p {
    margin-top: 3px;
    margin-bottom: 0px;
}

.cms h2 {
    margin-top: 10px;
    font-size: 20px;
    font-weight: bold;
}

.cms a.button {
    text-decoration: none;
    color: #FFFFFF;
}

.cms a:hover.button {
    text-decoration: none;
    color: #FFFFFF;
    background-image: none;
}

.cms table {
    width: 100%;
    margin: 0 0 12px;
}

.onPlaceLoad .cms table {
    margin: 0px;
}

.onPlaceLoad .cms .subForm table td {
    padding: 3px;
    padding-left: 0px;
}

.cms th, .cms td {
    padding: 5px;
    text-align: left;
}

.cms tr.even th, .cms tr.even td {
    background: #f3f2ef;
}

.cms tfoot th, .cms tfoot td {
    border-top: 2px solid #666;
    background: #eee;
}

.cms tfoot tr.total th, .cms tfoot tr.total td {
    border-top: 6px double #666;
}

.cms tfoot tr.total th {
    text-transform: uppercase;
}

.cms th.right, .cms td.right {
    text-align: right;
}

.cms .stripe tbody {
    border: 1px solid #fff;
}

.cms th.center, td.center {
    text-align: center;
}

.contentSlotEditor {
    background: white;
    padding: 10px;
    z-index: 20000;
}

/*tinymce menu dropdown*/
/*
 * z-index should be greater than the z-index of the content slot editor.
 * else the menu dropdown would be behind the content slot.
 */
.tox.tox-tinymce-aux {
    z-index: 25000;
}

.contentSlotEditor .popupContent > div > .gwt-Label {
    background: #eeeeee;
    padding: 2px 6px;
    margin: 0px 1px;
}

/* Control Editor */
.controlEditor {
    /*background: none repeat scroll 0 0 rgba(255, 255, 255, 0.7);*/
    background: #efefef;
    border: 1px solid #888888;
    display: none;
    position: absolute;
    right: 0;
    z-index: 999;
    padding: 3px 5px;
    height: 18px;
    font-size: 11px;
    overflow: hidden;
    transition: height 500ms;
    -moz-transition: height 500ms; /* Firefox 4 */
    -webkit-transition: height 500ms; /* Safari and Chrome */
    -o-transition: height 500ms; /* Opera */
}

.controlEditor:hover {
    height: 36px;
    transition: height 500ms;
    -moz-transition: height 500ms; /* Firefox 4 */
    -webkit-transition: height 500ms; /* Safari and Chrome */
    -o-transition: height 500ms; /* Opera */
    z-index: 9999;
}

.controlEditor .label {
    width: 50px;
    float: left;
    margin-left: 2px;
}

.controlEditor .control {
    margin: 0px;
    /*width: 30px;*/
    float: left;
}

.controlEditor input[type="checkbox"].control {
    margin-top: 3px;
}

.highlightCms .controlEditor,
.highlightCms .cfg_removed {
    display: none;
}

.highlightCms .loginLayout .controlEditor,
.highlightCms .loginLayout .cfg_removed {
    display: block;
    height: 70px;
}

.highlightCms .employerLoginlayout .controlEditor,
.highlightCms .employerLoginlayout .cfg_removed {
    display: block;
    height: 70px;
}

html.highlightCms .cms {
    outline: rgba(0, 0, 255, 0.3) dashed thin;
    margin: 5px 0;
    min-height: 10px;
}

html.highlightCms .cms.cmsRevertable {
    outline: red dashed thin;
}

html.ie8.highlightCms .cms {
    outline: rgb(0, 0, 255) dashed thin;
}

html.highlightCms .cms:hover {
    background-color: rgba(255, 255, 255, 0.1);
    cursor: crosshair;
    outline: thin dashed rgba(0, 0, 228, 0.5);
}

html.ie8.highlightCms .cms:hover {
    outline: thin solid rgb(0, 0, 255);
}


/*
 * CMS Auth Popup
 * -------------------------------------------------------------------------------------------------------------------*/
.auth {
    z-index: 5000;
    color: black;
    font-size: 18px;
}

.authPopup {
    left: 50%;
    background-color: black;
    font-size: 24px;
    color: white;
    text-align: center;
    z-index: 5000;
    -moz-border-radius: 5px 5px 5px 5px;
    -webkit-border-radius: 5px 5px 5px 5px;
    -border-radius: 5px 5px 5px 5px;
    -moz-box-shadow: 2px 2px 30px #000000;
    -webkit-box-shadow: 2px 2px 30px #000000;
    box-shadow: 2px 2px 30px #000000;
    border: 3px solid white;
    behavior: url('gwt/scripts/PIE.htc');
}

.authPopup > div {
    padding: 5px;
    margin: 10px;

    color: white;
    text-align: left;
}

.authPopup .message {
    padding-bottom: 5px;
    font-weight: bold;
    font-size: 16px;
}

.authPopup .error {
    color: red;
    font-weight: bold;
}

.authPopup input[type="text"], .authPopup input[type="password"] {
    width: 325px !important;
    margin-bottom: 10px;

}

.authPopup .Caption {
    font-weight: bold;
    margin-bottom: 10px;
    font-size: 14px;
}

/* Basic Components in AOL
 * -------------------------------------------------------------------------------------------------------------------*/

/*
 * RadioButton
 * -------------------------------------------------------------------------------------------------------------------*/
.radioButton {
    padding-right: 10px;
}

.radioButton label {
    padding-left: 5px;
    padding-top: 3px;
}

.place-SignUp .radioButton {
    padding-right: 10px;
    display: block;
    margin: 8px 0;
    vertical-align: middle;
    display: inline-block;
}

.place-SignUp .radioButton label {
    padding-left: 5px;

}

/*
 * Button
 * -------------------------------------------------------------------------------------------------------------------*/
.buttonWrap,
.pdfDownloadDialogButtonBar .button {
    background-color: #3A445C;
    border: 1px solid #3A445C;
    font-weight: 600;
    font-size: 16px;
    line-height: 18px;
    margin: 15px 15px 15px 0px;
    text-decoration: none;
    display: block;
    text-align: center;
    width: 100%;
    /*min-width: 158px;*/
    transition: all 0.2s ease-in-out 0s;
}

.buttonWrap a,
.pdfDownloadDialogButtonBar .button {
    text-decoration: none;
    color: #BFCED6;
    display: block;
    height: 100%;
    padding: 19px 24px;
}

.buttonWrap a:hover,
.pdfDownloadDialogButtonBar .button:hover {
    background-color: #272F3F;
}



.buttonWrap.Cancel,
.buttonWrap.CancelForNonModal,
.buttonWrap.CancelDirectDebit {
    background-color: #FFFFFF;
    color: #3A445C;
}

.buttonWrap.Cancel a:hover,
.buttonWrap.CancelForNonModal a:hover,
.buttonWrap.CancelDirectDebit a:hover {
    background-color: #272F3F;
}

.button.readonly,
.button-readonly {
    opacity: 0.3;
}

@media screen and (min-width: 420px) {
    .buttonWrap{
        display: inline-block;
        width: auto;
    }
    #fancybox-content .pdfDownloadDialogButtonBar .button{
        width: auto;
        display: inline-block;
    }
}
/*
@media screen and (min-width: 450px) and ( max-width: 767px) {
    #fancybox-content .pdfDownloadDialogButtonBar .button {
        width: auto;
        padding-left: 18px;
        padding-right: 18px;
        margin-left: 10px;
        display: inline-block;
    }
}
*/


/*
 * GlassPane
 * -------------------------------------------------------------------------------------------------------------------*/
.glasspane {
    display: block;
    background-color: #777777;
    opacity: 0.7;
    left: 0px;
    top: 0px;
    right: 0px;
    bottom: -1000px;
    position: fixed;
    z-index: 900;
}

.relGlasspane {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 900;
    background-color: #000;
    zoom: 1;
    opacity: 0.0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    filter: alpha(opacity = 0);
}

body > .relGlasspane {
    position: fixed;
    bottom: 0;
    right: 0;
}

/*
 * WizardProgressBar
 * -------------------------------------------------------------------------------------------------------------------*/
.wizardProgressBar {
    display: none;
}

/*
 * Account Bar
 * -------------------------------------------------------------------------------------------------------------------*/
.accountBar {
    display: table;
    margin-bottom: 10px;
    width: 100%;
    margin-bottom: 15px;
}

@media screen and (max-width: 480px) {
    .accountBar {
        padding-top: 20px;
    }
}
.accountBar .lbl {
    display: table-cell;
    font-weight: bold;
    padding-right: 10px;
    font-size: 14px;
    vertical-align: middle;
    width: 53px;
    display: none;
}

.accountBar .buttonWrap {
    float: right;
    margin: 1px 0 0;
}

.accountBar .button a {
    margin: 0;
    padding: 0;
}

.accountBar select {
    max-width: none;
}

/* Export Bar */
.exportBar {
    display: table;
    margin: 15px 0px;
    width: 100%;
    position: relative;
}

.exportBar .lbl {
    display: table-cell;
    /*    font-weight: bold;
        padding-right: 10px;
        font-size: 14px;
        vertical-align: middle;
        width: 45px;*/
    position: absolute;
    top: -20px;
}

.exportBar .select {
    max-width: none;
    display: table-cell;
}

.exportBar .buttonWrap {
    display: table-cell;
    width: 45px;
    margin: 0;
    vertical-align: middle;
    padding-top: 0px;
    float: none;
    border: none;
    background-color: transparent;

    user-select: none;
    text-align: right;
    min-width: auto;
}

.exportBar .buttonWrap a {
    /*float: right;
    padding: 5px 9px;
    width: 40px;
    margin: 0px;*/
    margin-left: 10px;
    background-color: #3A445C;
    border: 1px solid #3A445C;
    width: 80px;
    display: inline-block;
    text-align: center;
}

.exportBar .buttonWrap a:hover {
    background-color: #272F3F;
}
.exportBar{
    margin-top: 50px;
}

/*
 * ShowHideBlock
 * -------------------------------------------------------------------------------------------------------------------*/
.showHideBlock {
}

.showHideBlock > .horizontalButtonBar {
    display: none;
}

/*
 * DrillableList
 * -------------------------------------------------------------------------------------------------------------------*/
.drillableList {
}


.drillableList .spinner {
    margin-top: 0px;
    position: relative;
    top: auto;
}

.drillableList .warning {
    color: red;
}

.drillableList .hiddenLabel {
    display: none;
}

.drillableListStaticContent {
}

.drillableListButtonPanel {
}

.drillableTable {
    margin-top: 10px;
}

.drillableTableData {
    /*    border-collapse: separate;
        background: none repeat scroll 0 0 #F1F1F1;*/
    margin-top: 10px;
}

.drillableTableData td {
    border: 2px solid #ffffff;
    padding: 10px 12px;
    /*line-height: 15px;*/
    vertical-align: middle;
}

.drillableTableData td.readOnly {

}

.drillableTableData thead tr th {
    border: 1px solid #ffffff;
    border-width: 1px 3px 5px 1px;
    background: none repeat scroll 0 0 #3A445C;
    padding: 13px 16px;
    font-weight: normal;
    color: #F1F1F1;
}

.drillableTableData tbody tr {
    position: relative;
}

.drillableTableData tbody tr.even {
    background: #F1F1F1;
}

.drillableTableData tbody tr.odd {
    background: #F1F1F1;
}

.drillableTableData thead tr th,
.drillableTableData td {
    padding: 15px 8px;
}

.drillableTableData tr.drillableTableDataSummaryRow,
.drillableTableData tr.drillableTableDataSummaryRow td{
    font-weight: bold;
    text-align: right !important;
}

.drillableTableData tr.drillableTableDataSummaryRow td div.currencyType {
    text-align: right !important;
}

.drillableTableData tr.drillableTableDataSummaryRow.heading {
}

.drillableTableData tr.drillableTableDataSummaryRow.accordion  .tableFirstColumn::before {
    content: "\002B";
    color: #777;
    font-weight: bold;
    float: left;
    margin-right: 5px;
}

.drillableTableData tr.drillableTableDataSummaryRow.accordion.active .tableFirstColumn:before {
    content: '\2212';
}

.drillableTableData tr.disclaimer {
    font-weight: bold;
}

.drillableTableData tr.drillableTableDataHighlightRow {
    font-weight: bold;
    background-color: #f9ddc8;
}

.drillableListNoDataMessageNormal {
    color: black;
    font-style: italic;
}

.drillableListNoDataMessageHighlighted {
    color: red;
    font-weight: bold;
}

.drillableListMessage {
}

.drillableListClickableRow {
    cursor: pointer;
}

.drillableListClickableCell {
    cursor: pointer;
    text-decoration: underline;
}

.drillableListClickableCell:hover {
    cursor: pointer;
    text-decoration: none;
}

.drillableList tbody .unitPriceType6, .drillableList tbody .currencyType {
    white-space: nowrap;
}

/* Remove any paragraph headers when in an empty content block */
.drillableList .empty .paragraph {
    padding-top: 0px;
}

.drillableList .asyncDataCell {
    background: url(gwt/laf/loadingCellData.gif) 50% 50% no-repeat;
}

.drillableList .allowHtml p {
    margin: 0;
}

.drillableList td input {
    height: auto;
}


/*
 * Icons
 * -------------------------------------------------------------------------------------------------------------------*/
.icon img {
    float: left;
}

.icon label, .icon span, .icon p, .icon div.p {
    margin-left: 40px;
    display: block;
    font-weight: bold;
}

/*
 * SectionBar
 * -------------------------------------------------------------------------------------------------------------------*/
.sectionBar {
    margin-bottom: 5px;
}

.sectionBar .sectionBarIcon {
    display: none;
}

.sectionBar .title,
.sectionBar .title .header {
    color: #3A445C;
    font-size: 22px;
    font-weight: bold;
    line-height: 22px;
    margin: 5px 0;
    text-decoration: none;
}

/*
 * Form
 * -------------------------------------------------------------------------------------------------------------------*/

.formTableNested {
    margin-top: 5px;
    margin-bottom: 5px;
}

.form {
    padding: 5px 0;
    margin-top: 10px;
    margin-bottom: 10px;
    /*font-family: 'Trebuchet MS', Helvetica, sans-serif;*/
    /* font-family: Nunito;
     font-style: normal;
     font-weight: normal;
     font-size: 14px;
     line-height: 20px;
     letter-spacing: 0.015em;
     color: #3A445C;*/
}

.form.formReadOnly {
    padding: 0px;
}

.form.formEditable .header .requiredIndicatorLegend,
.form.formReadOnly .requiredIndicatorLegend {
    display: none;
}

.form.formEditable {

}

.form > .horizontalButtonBar {
    padding-bottom: 10px;
}

.form > .horizontalButtonBar > .formTable {
    width: 100%;
}

.form .labelClickable {
    cursor: pointer;
}

.formTable table {
    width: 100%;
    table-layout: fixed;
}

.formTable table table {
    table-layout: fixed;
}

.formIcon {
    display: none;
}

.formLabel {
    /*    font-weight: bold;*/
}

.form .formLabelCell,
.form .formControlCell {
    vertical-align: top;
    padding: 5px;
    width: 100%;
    overflow: hidden;
}

.form .formLabelCell {
    /*cursor: pointer;*/
}

.form .formControlCell {
}

.form .formLabelCell,
.form .formControlCell {
    float: left;
    width: 100%;
    padding: 5px 0;
}
.form .formLabelCell {
    /*    font-weight: 600;*/
    padding-bottom: 0px;
}
.form td.formControlCell {
    padding-top: 0px;
}

.form.formEditable .formTable .formLabelCell {
    /*    font-size: 14px;*/
}

.form .formIconCell {
    display: none;
}

.form .formRow.freeLongStringType .formLabelCell {
}

.formTable .formTableVerticalDivider {
    display: none;
}

.form.formEditable .formTable .formControlCell.readOnly {
}

.form .formControlCell.readOnly {
    vertical-align: top;
    padding: 5px;
    font-weight: 400;
    width: 100%;
    max-width: 832px;
    min-height: 56px;
    left: 0px;
    top: 116px;
    background: #FBFBFB;
    /* border: 1.5px solid #3A445C; */
    box-sizing: border-box;
    vertical-align: middle;
    color: #7a7a7a;
    padding-top: 20px;
    padding-left: 20px;
}

.form .checkBoxType td.formControlCell.readOnly{
    background: none;
}


.form .formControlCell.editable {

}

.form.formEditable .formTable .requiredField .formLabelCell .formLabel:after {
    content: " *";
    color: #ff0000;
}

.form.formEditable .formTable .isRequired .formLabelCell .formLabel:after {
    content: " *";
    color: #ff0000;
}

.form.formEditable .formTable .requiredField.isNotRequired .formLabelCell .formLabel:after {
    content: "";
    color: transparent;
}

.form .formControlCell .requiredIndicatorField {
    display: none;
}

.form .formRow {
    padding-bottom: 10px;
}

.form.formEditable .formRow {
    padding-bottom: 5px;
}

td.formTableVerticalSpacer,
td.formTableVerticalDivider {
    display: none;
}

td.formLabelCell > div {
}

td.formLabelCellDisabled > div {
}

/* gridForm */
.formGrid {
    width: 100%;
}

.formGrid .formIconCell {
    display: none;
}

.formGrid table {
    width: 100%;
    table-layout: fixed;
}

@media screen and (max-width: 600px) {
    .form .formTableColumn {
        float: left;
    }
}

@media screen and (max-width: 350px) {
    .form .formTableColumn {
        float: left;
    }
    .form .formLabelCell,
    .form .formControlCell {
        float: left;
        width: 100%;
        padding: 5px 0;
    }
    .form .formLabelCell {
        font-weight: 600;
        padding-bottom: 0px;
    }
    .form td.formControlCell {
        padding-top: 0px;
    }
}

/* verticalForm */
.verticalForm {

}

.verticalForm .vertical-field-label {
    margin-top: 10px;
    margin-bottom: 5px;
    font-size: 16px;
    /*font-width: 700;*/
}

.verticalForm .vertical-field-control .inputWrap input {
    padding: 10px;
}

/*
 * PushMenu
 * -------------------------------------------------------------------------------------------------------------------*/
.mp-pusher:after, .mp-level:after,
.mp-pusher.mp-pushed:after, .mp-level.mp-level-overlay:after {
    background: none;
}

/*
    Layout
    - Container
    - Headery
    - Navigation

----------------------------------------------------------------------*/

/* Activity Manager styles */

/* Layouts

  loginLayout
  memberDashboardLayout
  memberLayout
  memberThreeColumnLayout
  memberFullWidthLayout
  adviserDashboardLayout
  adviserLayout
  adviserThreeColumnLayout
  adviserFullWidthLayout
  */

/* Activity Manager Divs are all off to start with */

#login, #main, #site-header, #site-footer, #sidebar-left, #sidebar-right, #member-menu, #adviser-details-menu,
#adviser-nav-menu, #adviser-menu, #page, #fullscreen, #acc-opening-site-header, #site-footer {
    display: none;
}

/* loginLayout - loginActMgr only */
body.loginLayout {

}

body.loginLayout #login {
    display: block;
}

body.loginLayout .page-header {
    display: none;
}

body.loginLayout .captchaWidget .captchaImageControl {
    background-color: white;
}

/* fullscreenLayout - loginActMgr only */
body.fullscreenLayout {
    width: 100%;
    height: 100%;
}

body.memberWideScreenLayout #page {
    width: 100%;
}

body.employerLayout #site-header,
body.employerLayout #main,
body.employerLayout #page,
body.employerLayout #site-footer,
body.memberLayout #site-header,
body.memberLayout #main,
body.memberLayout #page,
body.memberLayout #site-footer,
body.employerDashboardLayout #site-header,
body.employerDashboardLayout #main,
body.employerDashboardLayout #page,
body.employerDashboardLayout #site-footer,
body.memberWideScreenLayout #site-header,
body.memberWideScreenLayout #main,
body.memberWideScreenLayout #page,
body.memberWideScreenLayout #site-footer,
body.adviserLayout #site-header,
body.adviserLayout #main,
body.adviserLayout #page,
body.adviserLayout #site-footer {
    display: block;
}

body.memberFullWidthLayout #acc-opening-site-header,
body.memberFullWidthLayout #main,
body.memberFullWidthLayout #page,
body.adviserFullWidthLayout #acc-opening-site-header,
body.adviserFullWidthLayout #main,
body.adviserFullWidthLayout #page,
body.employerFullWidthLayout #acc-opening-site-header,
body.employerFullWidthLayout #main,
body.employerFullWidthLayout #page {
    display: block;
}

body.memberFullWidthLayout #page,
body.adviserFullWidthLayout #page,
body.employerFullWidthLayout #page {
    width: 960px;
    margin: 0;
}

/* DashboardLayouts - like member layout but with sidebar-left hidden */
body.memberDashboardLayout #site-header,
body.memberDashboardLayout #main,
body.memberDashboardLayout #member-menu,
body.memberDashboardLayout #page,
body.memberDashboardLayout #site-footer {
    display: block;
}

body.employerDashboardLayout {
    background-color: transparent;
}

#debugActMgr .log-scroller {
    height: 150px;
}

#debugActMgr .log-controls {
    text-align: right;
    margin-right: 100px;
}

.centred {
    display: table-row;
    width: 100%;
    margin: 0 auto;
}

#page {
    padding-top: 0px;
    padding-bottom: 20px;
    padding-left: 20px;
    padding-right: 20px;
    min-height: 400px;
    display: table-cell !important;
    width: 100%;
}

#sidebar-left {
    min-width: 416px;
    height: 80vh;
    background-color: #F1F1F1;
    display: none;
    vertical-align: top;
/*    padding-bottom: 600px;*/
}

#sidebar-left .current{
    background-color: #BFCED6;
}

#sidebar-nav .leftNav {
    margin: 20px 0 40px 0;
}

#sidebar-nav .leftNav > a{
    padding: 20px 20px;
    text-decoration: none;
    background: #3A445C;
    width: 351px;
    height: 52px;
    font-weight: bold;
    font-size: 16px;
    line-height: 20px;
    display: flex;
    align-items: center;
    color: #FFFFFF;
}

#sidebar-nav > ul > li > ul > li{
    background: url(gwt/laf/sitewide/icons/sideMenuArrow.svg) no-repeat;
    background-position-x: 10%;
    background-position-y: 50%;
    margin-bottom: 0px;
}

#sidebar-nav > ul > li > ul > li >a{
    /* padding: 20px 46px; */
    text-decoration: none;
    background: rgba(255, 255, 255, 0.4);
    width: 351px;
    height: 52px;
    font-weight: normal;
    font-size: 16px;
    line-height: 22px;
    display: flex;
    align-items: center;
    color: #3A445C;
    padding-top: 20px;
    padding-right: 20px;
    padding-bottom: 20px;
    padding-left: 55px;
}
#sidebar-nav > ul > li > ul > li >a:hover{
    background-color:#BFCED6
}

#sidebar-nav > ul{
    /*width: 384px;*/
    padding-left: 32px;
    padding-right: 32px;
}

#responsive-logout {
    display: none;
}

#responsive-site-nav .Logout_Wrapper{
    display: block !important;
    background-color: #3A445C;
    color: #FFFFFF;

}

@media screen and (min-width: 1350px) {
    #responsive-site-nav .Logout_Wrapper{
        margin: 21px 32px;
        max-height: 52px;
    }
}
#responsive-site-nav .Logout_Wrapper >a{
    color: #FFFFFF !important;
    font-weight: 600;
    font-size: 16px;
    line-height: 18px;
    text-decoration: none;
    text-align: center;
}
@media screen and (min-width: 1350px) {
    #responsive-site-nav .Logout_Wrapper >a{
        margin: 19px 40.5px;
    }
}
/*
 * Side-Navigation
 * -------------------------------------------------------------------------------------------------------------------*/

/* narrow screen header */
/*@media screen and (max-width: 1349px) {*/
/*    #main-navigation{*/
/*        !*width: 384px;*!*/
/*        padding-left: 32px;*/
/*        padding-right: 32px;*/
/*    }*/
/*    #main-navigation > li > a{*/
/*        font-family: ProzaDisplayW03-ExtraBold;*/
/*        font-style: normal;*/
/*        font-weight: 800;*/
/*        font-size: 22px;*/
/*        line-height: 28px;*/
/*        !* display: flex; *!*/
/*        !* align-items: center; *!*/
/*        letter-spacing: -0.01em;*/
/*        color: #3A445C;*/
/*    }*/
/*    #main-navigation > .menu-item.current-menu-item{*/
/*        !*padding: 20px 20px;*!*/
/*        !*text-decoration: none;*!*/
/*        !*background: #3A445C;*!*/
/*        !*font-weight: bold;*!*/
/*        !*font-size: 16px;*!*/
/*        !*line-height: 20px;*!*/
/*        !*display: flex;*!*/
/*        !*align-items: center;*!*/
/*        !*color: #FFFFFF;*!*/
/*    }*/
/*    #main-navigation > .menu-item.current-menu-item > a{*/
/*        color: #ffffff;*/
/*    }*/
/*}*/





/*
 * ContextInfo
 * -------------------------------------------------------------------------------------------------------------------*/
html #contextInfo {
    display: none;
    position: fixed;
    top: 0;
    z-index: 10000;
    margin: 2px;
}

html.highlightCms #contextInfo, html.highlightVC #contextInfo {
    display: block;
    width: 500px;
}

#contextInfo label {
    margin: 4px;
    cursor: default;
    color: #000000;
    font-weight: bold;
}

#contextInfo ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
}

html #contextInfo ul li {
    display: none;
    float: left;
    margin: 0;
    padding: 3px;
}

html.highlightCms #contextInfo ul li.highlightCms, html.highlightVC #contextInfo ul li.highlightVC {
    display: table-cell;
    vertical-align: middle;
}

.siteLoading {
    text-align: center;
    width: 100%;
    margin-top: 150px;
    font-size: 20px;
}

#contextInfo .infoToolbar {

    overflow: hidden;

    box-shadow: 0px 0px 10px 1px rgba(0, 0, 0, 0.8);
    -moz-box-shadow: 0px 0px 10px 1px rgba(0, 0, 0, 0.8);
    -webkit-box-shadow: 0px 0px 10px 1px rgba(0, 0, 0, 0.8);

    border-color: #FFFFFF;
    border-style: solid solid none solid;
    border-width: 1px 1px 0 0;

    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;

    background: -moz-linear-gradient(0deg, #E6E6E6 0px, #FFFFFF 40%) no-repeat scroll 0 0 #FFFFFF;
    background: -ms-linear-gradient(0deg, #E6E6E6 0px, #FFFFFF 40%) no-repeat scroll 0 0 #FFFFFF;
    background: -webkit-linear-gradient(0deg, #E6E6E6 0px, #FFFFFF 40%) no-repeat scroll 0 0 #FFFFFF;
    background: -o-linear-gradient(0deg, #E6E6E6 0px, #FFFFFF 40%) no-repeat scroll 0 0 #FFFFFF;
    background: linear-gradient(0deg, #E6E6E6 0px, #FFFFFF 40%) no-repeat scroll 0 0 #FFFFFF;

    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#E6E6E6', endColorstr='#FFFFFF');
    behavior: url('gwt/scripts/PIE.htc');

    display: table;
    padding: 5px;
}

#contextInfo .infoToolbar .horizontalButtonBar, #contextInfo .infoToolbar .button {
    margin: 0px 2px 1px 0px;
}

#contextInfo .vcPreference {
    margin: 0 0 2px;
}

#contextInfo .vcPreference.notTrunk {
    zoom: 1;
    color: #ff0000;
    outline: none;
    background: #e6dcdc;
    border: 1px solid #ff0000;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
    behavior: url(gwt/scripts/PIE.htc);
}

html.highlightCms #contextInfo .vcPreference.notTrunk {
    margin-right: 2px;
}

#contextInfo .vcPreference .vcImage {
    -ms-filter: literal("progid:DXImageTransform.Microsoft.Alpha(Opacity=40)");
    filter: literal("alpha(opacity=40)");
    opacity: 0.4;
}

#contextInfo .vcPreference .vcImage:hover {
    cursor: pointer;
    -ms-filter: literal("progid:DXImageTransform.Microsoft.Alpha(Opacity=100)");
    filter: literal("alpha(opacity=100)");
    opacity: 1;
}

#contextInfo .devicePreference {
    background-image: url("gwt/laf/sitewide/itemSeperator.png");
    background-position: left center;
    background-repeat: no-repeat;
    padding-left: 3px;
}

#contextInfo .devicePreference .horizontalButtonBar {
    float: right;
}

#contextInfo .devicePreference .button {
    display: block;
    float: left;
    width: auto;
}

#contextInfo .devicePreference .button a {
    background: none repeat scroll 0 0 #FAA634;
    padding: 6px 10px;
    font-size: 14px;
    border-radius: 3px 3px 3px 3px;
    color: #ffffff;
    text-decoration: none;
}

#contextInfo .devicePreference .button a.button-readonly {
    background-color: #CCCCCC;
    cursor: text;
}

/*!**/
/* * Responsive Menu*/
/* * -------------------------------------------------------------------------------------------------------------------*!*/
/*#responsive-site-nav {*/
/*  !*  background-color: #FFFFFF;*/
/*    background-image: url("laf/sitewide/site-logo.png");*/
/*    background-position: 25px 10px;*/
/*    background-repeat: no-repeat;*/
/*    background-size: auto 48px;*/
/*    padding: 6px 0 0;*!*/
/*}*/

/*#responsive-site-nav:after {*/
/*    !*background-image: url("laf/sitewide/mobile-menu-gradient-bg.png");*/
/*    content: " ";*/
/*    height: 100%;*/
/*    position: absolute;*/
/*    right: 0;*/
/*    top: 0;*/
/*    width: 30px;*!*/

/*}*/

/*#responsive-site-nav-wrapper .scroller {*/
/*    min-height: 100%;*/
/*    position: relative;*/
/*    padding-bottom: 47px;*/
/*    background-color: #ffffff;*/
/*}*/
#responsive-site-nav-wrapper .scroller {
    min-height: 100vh;
    position: relative;
    padding-bottom: 47px;
}

/*#responsive-site-nav.mp-menu {*/
/*    width: 270px;*/
/*    height: calc(100% - 65px);*/
/*}*/

/*#responsive-site-nav .icon:before,*/
/*#responsive-site-nav .icon-display:before {*/
/*    display: none;*/
/*}*/

/*#responsive-site-nav > .mp-level {*/
/*    top: 65px;*/
/*}*/

/*#responsive-site-nav .mp-level,*/
/*#responsive-site-nav .mp-level ul {*/
/*    background: #408faa;*/
/*}*/

/*#responsive-site-nav .mp-back {*/
/*    display: none;*/
/*}*/

/*#responsive-site-nav.mp-menu ul li a:hover,*/
/*#responsive-site-nav .mp-level > ul > li:first-child > a:hover {*/
/*    background: transparent !important;*/
/*    box-shadow: none !important;*/
/*}*/

/*#responsive-site-nav.mp-menu ul li > a {*/
/*    color: #ffffff;*/
/*    font-size: 16px;*/
/*    height: 66px;*/
/*    padding-bottom: 0px;*/
/*    padding-left: 24px;*/
/*    padding-right: 40px;*/
/*    padding-top: 0px;*/
/*    line-height: 65px;*/
/*    text-decoration: none;*/
/*    border-bottom: 1px solid #7fb4c6;*/
/*    text-shadow: 0 0 1px rgba(255,255,255,0.1);*/
/*    box-shadow: none !important;*/
/*}*/

/*#responsive-site-nav .mp-level.mp-level-open.mp-level-overlay > ul > li > a:after {*/
/*    display: none;*/
/*}*/

/*#responsive-site-nav.mp-menu ul li > a:after {*/
/*    background-image: url("laf/sitewide/icon_straps.png");*/
/*    background-position: -64px -44px;*/
/*    background-size: 74px 335px;*/
/*    content: " ";*/
/*    height: 12px;*/
/*    position: absolute;*/
/*    right: 22px;*/
/*    !*top: calc(50% - 6px);*!*/
/*    width: 8px;*/
/*    margin-top: 29px;*/
/*}*/

html.ie8 #responsive-site-nav-wrapper,
html.ie9 #responsive-site-nav-wrapper {
    left: 0px;
}

html.ie8 .mp-menu,
html.ie8 #responsive-site-nav,
html.ie9 .mp-menu,
html.ie9 #responsive-site-nav {
    display: none;
}

html.ie8.no-csstransforms3d .mp-pusher,
html.ie9.no-csstransforms3d .mp-pusher {
    padding-left: 0!important;
}

/*
 * site-header
 * -------------------------------------------------------------------------------------------------------------------*/

@media screen and (min-width: 1350px) {
    #site-header {
        height: 50px;
    }
}
@media screen and (max-width: 1349px) {
    #site-header {
        height: 98px;
    }
}

/* Narrow Screen Header */
#site-header .mobileHeader {
    height: 66px;
    border-bottom: 1px solid #BFDAE3;
    margin-bottom: 10px;
}

#site-header .menu-trigger:before {
    display: none;
}

#site-header .menu-trigger:after {
    background-image: url('laf/sitewide/icon_straps.png');
    background-position: -30px -44px;
    background-repeat: no-repeat;
    overflow: hidden;
    display: block;
    height: 18px;
    width: 24px;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    content: " ";
}

#site-header .mobileHeader .menu-trigger {
    float: left;
    height: 100%;
    width: 60px;
    display: block;
}

#site-header .mobileHeader .mlogo:after {
    background-image: url('laf/sitewide/icon_straps.png');
    background-position: 0 -144px;
    background-repeat: no-repeat;
    overflow: hidden;
    display: block;
    height: 47px;
    width: 74px;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    content: " ";
}

#site-header .mobileHeader .mlogo {
    height: 100%;
    display: block;
    position: relative;
    float: none;
    margin: 0 65px;

}

#site-header .mobileHeader .mlogo a {
    display: block;
    height: 100%;
    margin: 0 auto;
    width: 100px;
}

#site-header .mobileHeader .mlogout {
    background-image: url("laf/sitewide/icons/30/key.jpg");
    background-position: center center;
    background-repeat: no-repeat;
    background-size: 30px auto;
    color: transparent;

    height: 100%;
    width: 60px;
    display: block;
    float: right;
    line-height: 60px;
}

/* wide screen header */
#site-header {
    background: #3A445C;
}
/* narrow screen header */
@media screen and (max-width: 1349px) {
    #site-header {
        background: #FFFFFF;
    }
    #logo a {
        background: url(gwt/laf/icons/menu/siteLogo.svg) no-repeat;
        height: 45px;
        width: 200px;
        display: block;
        position: absolute;
        top: 20px;
        left: 100px;
        width: 69px;
        height: 66px;
    }
    #user-nav{
        height: 100px;
        /*border-bottom: 0.5px solid #3A445C;*/
    }
}

#site-header .desktopHeader {
    /*display: none;
    margin: 15px auto;
    padding: 0px 5px;
    max-width: 980px;
    position: relative;
    border-bottom: 1px solid #BFDAE3;*/
    background: #3A445C;
}

#site-header .desktopHeader .site-logo {
    padding: 0;
    font-size: 17px;
    position: absolute;
}

#site-header .desktopHeader .site-title {
    margin: 3px 0 0;
    padding: 0;
    font-size: 17px;
    display: inline;
    float: left;
    display: none;
}

#site-header .desktopHeader .site-title a {
    /*background: url('laf/sitewide/site-logo.png') 0 0 no-repeat;*/
    display: block;
    width: 196px;
    height: 115px;
    text-indent: -9999px;
}

#user-nav-right {
    float: right;
}

#site-header .desktopHeader .header-nav-right,
#site-header .desktopHeader .header-nav-right .employerSelection {
    float: right;
}

#site-header .desktopHeader .header-nav-right .employerSelect {
    border: 1px solid #006A8E;
}

#site-header #employer-selector {
    float: right;
}

#site-header #employer-selector .employerSelect {
    border: 1px solid #006A8E;
    height: auto;
}

#site-header  #user-nav-right li {
    display: none;
}

#site-header  ul#user-nav-right {
    display: table;
}

#site-header  #user-nav-right li a {
    text-decoration: none;
}

#site-header  #user-nav-right li p {
    margin: 5px 0;
    line-height: 20px;
    color: #FFFFFF;
}

#site-header  #user-nav-right li p + p + p {
    color: #FFFFFF;
    display: inline-block;
}

#site-header  #user-nav-right li#contactItem,
#site-header  #user-nav-right li#welcomeItem,
#site-header  #user-nav-right li#logoutItem {
    display: table-cell;
    padding: 5px 15px 10px;
    vertical-align: top;
}

#site-header  #user-nav-right li#contactItem .needHelp {
    background: url("laf/sitewide/icons/phone.svg") no-repeat scroll left center transparent;
/*    background-size: 20px 20px;
    padding-left: 25px;
    font-size: 16px;
    line-height: 24px;
    font-weight: bold;*/
}

#site-header  #user-nav-right li#contactItem .callLocal,
#site-header  #user-nav-right li#contactItem .callRegional {
    margin: 5px 0;
    line-height: 20px;
    color: #FFFFFF;
}


.loginType-EMPLOYER #site-header  #user-nav-right li#contactItem .member.callRegional,
li#contactItem .employer.callRegional {
    display: none;
}

.loginType-EMPLOYER #site-header  #user-nav-right li#contactItem .employer.callRegional {
    display: block;
}

.loginType-EMPLOYER li#contactItem .callLocal{
    display: none;
}

.place-EmployerLogin .employer.callRegional{
    display: block !important;
}

.place-EmployerLogin .callLocal,
.place-EmployerLogin .member.callRegional{
    display: none;
}


#site-header  #user-nav-right li#contactItem a {
    color: #FFFFFF;
    padding-left: 25px;
}

#site-header  #user-nav-right li#logoutItem a {
    color: #ffffff
}

#site-header  #user-nav-right li#welcomeItem p:first-child {
    background: url("laf/sitewide/icons/adviser.svg") no-repeat scroll left center transparent;
    background-size: 20px 20px;
    padding-left: 25px;
    display: inline-block;
}
#site-header  #user-nav-right li#welcomeItem p:first-child:after {
    content: "|";
    padding-left: 15px;
    padding-right: 10px;
}

#site-header  #user-nav-right li#welcomeItem p:first-child + p {
    /* background: url("laf/sitewide/icons/20/court.jpg") no-repeat scroll left center transparent;*/
    /*background-size: 20px 20px;
    padding-left: 25px;*/
    display: inline-block;
}

#site-header  #user-nav-right li#logoutItem {
    background: url("laf/sitewide/key.png") no-repeat scroll 10px center #E87722;
    border-radius: 4px 4px 4px 4px !important;
    color: #FFFFFF !important;
    display: inline-block;
    font-size: 14px;
    margin: 5px 3px;
    padding: 12px 14px 12px 32px;
    text-align: center;
    text-decoration: none;
    transition: all 0.2s ease-in-out 0s;
    white-space: nowrap;
    display: none;
}

#site-header  #user-nav-right li#logoutItem:hover {
    background-color: #7FB4C6;
}

/*
 * Main Content Pane
 * -------------------------------------------------------------------------------------------------------------------*/
/*#main {
    background: #ffffff;
    position: relative;
    z-index: 2;
    padding: 0;
    width: 100%;
}

#main > .centred {
    padding: 0;
}*/

#page .page-header {
    margin-bottom: 22px;
    margin-top: 22px;
}

#page .page-header #headerItems,
#dynamicModalDialog .page-header #headerItems {
    display: none;
}

#page {
    padding-bottom: 220px;
}

.page-header h1,
.page-header .h1 {
    margin: 5px 0;
    margin-bottom: 20px;
    text-decoration: none;
    font-family: ProzaDisplayW03-ExtraBold;
    font-weight: 800;
    font-size: 32px;
    line-height: 38px;
    letter-spacing: -0.01em;
    color: #3A445C;
    border-bottom: 0.5px solid #3A445C;
    padding-bottom: 15px;
}

/*
 * MISC
 * -------------------------------------------------------------------------------------------------------------------*/
.infobox-blue {
    padding: 15px;
    font-size: 14px;
    line-height: 16px;
    background: none repeat scroll 0 0 #BFDAE3;
}

.infobox-blue a {
    color: #006A8E;
}

.infobox-blue .alert-question-blue {
    background-image: url( 'laf/sitewide/icons/20/question-blue.jpg' );
    background-repeat: no-repeat;
    padding-left: 25px;
    font-size: 16px;
    font-weight: bold;
    color: #006A8E;
    line-height: 20px;
    min-height: 23px;
    margin-bottom: 5px;
}

.alert-question-orange {
    background-image: url("laf/sitewide/icons/20/question.jpg");
    background-repeat: no-repeat;
    background-position: left center;
    padding-left: 25px;
    min-height: 22px;
}

.alert-question-orange.end {
    background-position: right center;
    padding-right: 25px;
    padding-left: 0px;
}

/*
 * Main Footer
 * -------------------------------------------------------------------------------------------------------------------*/
.site-wrapper {
    /*max-width: 1440px;*/
    width: 100%;
    margin: 0 auto;
}

#site-footer {
    position: absolute;
    width: 100%;
    /*max-width: 1440px;*/
    bottom: 0px;
    z-index: 1;
    color: white;
    background: #3A445C;
    text-align: center;
    padding: 25px 0;
}

#site-footer .handyLinks {
    margin-bottom: 6px;
}

/* gwt iFrame*/
#__gwt_historyFrame {
    display: none;
    visibility: hidden;
    height: 0;
}

#__printingFrame {
    display: none;
    visibility: hidden;
    height: 0;
}

/*
 * Panel Styles
 * -------------------------------------------------------------------------------------------------------------------*/
.canvasPanel {
    position: relative;
    min-height: 400px;
}
.memberLayout:not(.place-MemberDashboard) .canvasPanel,
.memberDashboardLayout .canvasPanel,
.employerLayout:not(.place-WorkbenchContributionEdit) .canvasPanel,
.adviserLayout:not(.place-AdviserDashboard) .canvasPanel{
    max-width: 832px;
    margin: 0 auto;
}

.modal .canvasPanel {
    min-height: 300px;
}

.canvasPanel .diagnostics {
    display: none;
}

/*
 *   Modal window css
 * -------------------------------------------------------------------------------------------------------------------*/
.modal .canvasPanel {
    padding: 10px 10px 10px;
    background: #ffffff;
}

.modalclosebutton,
.buttonWrap.modalclosebutton{
    display: none;
}

.nonmodalclosebutton,
.buttonWrap.nonmodalclosebutton{
    display: none;
}

.place-RolloverSuperStream .transferInSuperStreamWizard_bottomButtonBar .CancelForNonModal {
    display: inline-block;
}

.modal .modalclosebutton,
.modal .buttonWrap.modalclosebutton {
    display: inline-block;
}

.dialog {
    z-index: 999999;
    text-align: center;
    top: 70px;
    left: 50%;
    margin-left: -368px; /* half width to ensure centered */
    width: 736px;
    padding-bottom: 40px;
}

.dialogWrap {
    width: auto;
}

.dialogWrap.IFrameDialog {
    width: auto;
}

.dialogWrap.IFrameDialog #dialogContent {
    height: 700px;
}

.dialogWrap .emailFileForm {
    clear: both;
    float: left;
    margin-top: 20px;
    width: 100%;
}

.dialogWrap .emailFileForm .pdfEmailTitle,
.dialogWrap .emailFileForm .cancel {
    display: none;
}

.dialogWrap .emailFileForm .recipient {
    -webkit-box-sizing: border-box; /* Safari/Chrome, other WebKit */
    -moz-box-sizing: border-box; /* Firefox, other Gecko */
    box-sizing: border-box; /* Opera/IE 8+ */
}

.dialogWrap .emailFileForm .message {
    display: block;
    width: 100%;
}

.dialogWrap .emailFileForm .message div {
    padding: 8px;
}

.dialogWrap .emailFileForm .send {
    float: right;
    margin-right: 0px;
}

.dialogBorderWrap {
    height: 150px;
}

.dialog .popupContent {
    text-align: left;
    background: white;
    padding: 10px;
}

.dialog .css3-container {
    display: block;
}


.place-Insurance.hasModalDialog .gwt-PopupPanel#dynamicModalDialog {
    position: absolute;
    left: 50%;
    top: 50%;
    margin-left: 0;
    width: auto; !important;
    height: auto; !important;
    transform: translate(-50%, -50%);
}
.place-Insurance.hasModalDialog .gwt-PopupPanel#dynamicModalDialog .popupContent .modal .canvasPanel {
    min-height: auto;
}

.place-Insurance.hasModalDialog .gwt-PopupPanel#dynamicModalDialog .popupContent .modal .canvasPanel .contentPanel{
    margin-top: 0;
}

.place-Insurance.hasModalDialog .gwt-PopupPanel#dynamicModalDialog .popupContent .modal .DisplayContentPlace .h1 {
    border-bottom: none;
}

.gwt-DialogBox {
    z-index: 12000;
}

.gwt-DialogBox .Caption {
    background: #e3e8f3 url(laf/gwtStandard/hborder.png) repeat-x 0px -2003px;
    padding: 4px 4px 4px 8px;
    cursor: default;
    border-bottom: 1px solid #bbbbbb;
    border-top: 5px solid #d0e4f6;
}

.gwt-DialogBox .dialogContent {
}

.gwt-DialogBox .dialogMiddleCenter {
    padding: 3px;
    background: white;
}

.gwt-DialogBox .dialogBottomCenter {
    background: url(laf/gwtStandard/hborder.png) repeat-x 0px -4px;
    -background: url(images/hborder_ie6.png) repeat-x 0px -4px;
}

.gwt-DialogBox .dialogMiddleLeft {
    background: url(laf/gwtStandard/vborder.png) repeat-y;
}

.gwt-DialogBox .dialogMiddleRight {
    background: url(laf/gwtStandard/vborder.png) repeat-y -4px 0px;
    -background: url(images/vborder_ie6.png) repeat-y -4px 0px;
}

.gwt-DialogBox .dialogTopLeftInner {
    width: 5px;
    zoom: 1;
}

.gwt-DialogBox .dialogTopRightInner {
    width: 8px;
    zoom: 1;
}

.gwt-DialogBox .dialogBottomLeftInner {
    width: 5px;
    height: 8px;
    zoom: 1;
}

.gwt-DialogBox .dialogBottomRightInner {
    width: 5px;
    height: 8px;
    zoom: 1;
}

.gwt-DialogBox .dialogTopLeft {
    background: url(laf/gwtStandard/corner.png) no-repeat -13px 0px;
    -background: url(images/corner_ie6.png) no-repeat -13px 0px;
}

.gwt-DialogBox .dialogTopRight {
    background: url(laf/gwtStandard/corner.png) no-repeat -18px 0px;
    -background: url(images/corner_ie6.png) no-repeat -18px 0px;
}

.gwt-DialogBox .dialogBottomLeft {
    background: url(laf/gwtStandard/corner.png) no-repeat 0px -15px;
    -background: url(images/corner_ie6.png) no-repeat 0px -15px;
}

.gwt-DialogBox .dialogBottomRight {
    background: url(laf/gwtStandard/corner.png) no-repeat -5px -15px;
    -background: url(images/corner_ie6.png) no-repeat -5px -15px;
}

* html .gwt-DialogBox .dialogTopLeftInner {
    width: 5px;
    overflow: hidden;
}

* html .gwt-DialogBox .dialogTopRightInner {
    width: 8px;
    overflow: hidden;
}

* html .gwt-DialogBox .dialogBottomLeftInner {
    width: 5px;
    height: 8px;
    overflow: hidden;
}

* html .gwt-DialogBox .dialogBottomRightInner {
    width: 8px;
    height: 8px;
    overflow: hidden;
}

.gwt-PopupPanelGlass {
    background-color: #000;
    opacity: 0.3;
    filter: alpha(opacity=30);
    z-index: 11999;
}

.contentSlotEditor .dialogMiddleCenter {
    padding: 0px;
    background: #EBEBEB;
}

.contentSlotEditor .dialogMiddleCenter .content {
    padding: 5px;
    width: 800px;
}

.contentSlotEditor .dialogMiddleCenter .content .textArea {
    background: white;
    width: 800px !important;
}

.contentSlotEditor .dialogMiddleCenter .content .toolbar {
    margin-bottom: 5px;
    width: auto !important;
}

.contentSlotEditor .dialogMiddleCenter .content .buttonDiv {
    margin-top: 5px;
}

.contentSlotEditor .dialogMiddleCenter .content .buttonDiv #save,
.contentSlotEditor .dialogMiddleCenter .content .buttonDiv #cancel {
    margin-top: 0px;
    float: right;
}

/*
 * Non-semantic helper classes
 * -------------------------------------------------------------------------------------------------------------------*/
.invisible {
    display: none!important;
}

.hide {
    display: none;
}

.required {
    display: inline;
    padding-left: 5px;
    color: red;
}

/* The Magnificent Clearfix: Updated to prevent margin-collapsing on child elements.
   j.mp/bestclearfix */
.clearfix:before, .clearfix:after {
    content: "\0020";
    display: block;
    height: 0;
    overflow: hidden;
}

.clearfix:after {
    clear: both;
}

/* Fix clearfix: blueprintcss_lighthouseapp.com/projects/15318/tickets/5-extra-margin-padding-bottom-of-page */
.clearfix {
    zoom: 1;
}

/*
 * ProgressBar
 * -------------------------------------------------------------------------------------------------------------------*/
.progressPanel {
    float: none;
    height: 20px;
    width: 100%;
    padding: 0px;
    display: block;
    border-radius: 10px;

    box-shadow: 0 1px 0 #BFBFBF inset, 0 1px 0 #FCFCFC;
    -moz-box-shadow: 0 1px 0px #bebbb9 inset, 0 1px 0 #fcfcfc;
    -webkit-box-shadow: 0 1px 0px #bebbb9 inset, 0 1px 0 #fcfcfc;

    background: -moz-linear-gradient(center top , #E1DDD9, #E1DDD9) repeat scroll 0 0 #E9E5E2;
    background: -ms-linear-gradient(top, #e1ddd9, #e9e5e2)  repeat scroll 0 0 #E9E5E2;
    background: -webkit-linear-gradient(top, #e1ddd9, #e9e5e2)  repeat scroll 0 0 #E9E5E2;
    background: -o-linear-gradient(top, #e1ddd9, #e9e5e2) repeat scroll 0 0 #E9E5E2;

    behavior: url(gwt/scripts/PIE.htc);
    position: relative;
}

.progressPanel > .progressBar {
    height: 18px;
    float: none;
    background-color: #73a012;
    display: block;
    border-radius: 10px;

    box-shadow: 0 1px 0 #FCFCFC inset, 0 1px 0 #BEBBB9;
    -moz-box-shadow: 0 1px 0px #fcfcfc inset, 0 1px 0 #bebbb9;
    -webkit-box-shadow: 0 1px 0px #fcfcfc inset, 0 1px 0 #bebbb9;

    margin: 0.5px 1px;
    behavior: url(gwt/scripts/PIE.htc);
    position: absolute;
}

/*
 * Spinner
 * -------------------------------------------------------------------------------------------------------------------*/
body > .spinner, div.canvasPanel > .spinner {
    position: fixed;
}

.spinner {
    position: absolute;
    top: 50%;
    left: 50%;
    height: 40px;
    width: 40px;
    overflow: hidden;
    z-index: 1104;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.spinner div {
    background-image: url(laf/fancybox.png);
    height: 480px;
    left: 0;
    position: absolute;
    top: 0;
    width: 40px;
}

@media screen and (max-width: 979px) {
    .spinner {
        position: fixed;
    }
}

/*
 * Canvas
 * -------------------------------------------------------------------------------------------------------------------*/

.canvasContentList {
}

.canvasContentList.border {
    border: 1px solid #CCCCCC;
    padding: 5px 5px 5px 10px;
    background: #F0F0F0;
    margin: 5px 5px 15px 3px;
    box-shadow: 2px 2px 7px;
    -moz-box-shadow: 2px 2px 7px;
    -webkit-box-shadow: 2px 2px 7px;
}

.canvasContentList.termsAndConditions {
    overflow: auto;
    height: 250px;
    width: 500px;
    background: #E5E5E5;
    color: #808080;
    border: 1px solid #FFFFFF;
    padding: 5px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 25px;
    font-size: 10px;
}

/*
 * Disclaimer
 * -------------------------------------------------------------------------------------------------------------------*/
.disclaimer {
    margin-top: 15px;
}

.disclaimerBody .listItem {
    display: list-item;
    list-style-type: square;
    margin-left: 20px;
}

/*
 * ForeignLinks
 * -------------------------------------------------------------------------------------------------------------------*/
.foreignLink {
    line-height: 18px;
    margin-top: 8px;
    padding-left: 40px;
    background: transparent;

}

.foreignLink.pdf a {
    background: transparent;
    padding-right: 20px;
}

/*
 * Input Types Related
 * -------------------------------------------------------------------------------------------------------------------*/
.selectWrap {
    margin-right: 1px;
}

.inputWrap {
}

.inputWrap > input, select {
    zoom: 1;
    width: 100%;
    border: medium none;
    padding: 9px;
    width: 100%;
    font-size: 14px;

    font-family: Nunito;
    font-style: normal;
    font-weight: normal;
    font-size: 16px;
    line-height: 22px;
    padding-left: 20px;
    padding-right: 25px;
}

select, .ms-options-wrap button {
    /*   padding: 5px;*/
    border: 1px solid #3A445C;
    background-color: #F1F1F1;
    /*max-width: 592px;*/
    max-width: 832px;
    height: 56px;
    color: #3A445C;
}

/**
* Hack to get special CSS to apply only to iOS browsers.
*
* http://stackoverflow.com/questions/9437584/what-does-webkit-min-device-pixel-ratio-2-stand-for
* https://css-tricks.com/snippets/css/retina-display-media-query/
*/
@media screen and (-webkit-min-device-pixel-ratio:2) {
    .inputWrap > input, .selectWrap > select {
        font-size: 16px;
        line-height: 16px;
    }
    .accountBar select {
        font-size: 16px;
    }
    .exportBar select {
        font-size: 16px;
    }
    select {
        font-size: 16px;
    }
}

.inputWrap > input  {
    padding: 5px;
    width: 100%;
    max-width: 832px;
    height: 56px;
    left: 0px;
    top: 116px;
    background: #F1F1F1;
    border: 1.5px solid #3A445C;
    box-sizing: border-box;
    font-weight: normal;/* 600*/
    font-size: 16px;
    line-height: 22px;
    padding-left: 20px;
}
.adviserLayout .selectWrap select {
    display: none !important;
}
.ms-options-wrap button {
    background: #F1F1F1 !important;
    border: 1.5px solid #3A445C !important;;
}

/*
 * Error styles
 * -------------------------------------------------------------------------------------------------------------------*/
.unexpectedServerErrorContainer {
    border: 1px solid red;
    padding: 5px 10px 15px;
}

.unexpectedServerError {
    font-weight: bold;
}

.error input,
.selectWrap.error select, .error textarea {
    /*border: 2px solid #ff0000 !important;    */
    background: url(gwt/laf/sitewide/icons/inputError.svg) no-repeat;
    background-position-x: 99%;
    background-position-y: 50%;
    color: #AF231C;
    background-color: #F1F1F1;
    border: 1px solid #AF231C !important;
}

.error #fileUploadControlPanel {
    border: 2px solid #ff0000 !important;
}

.errorRadioGroup {
    border: #ff0000;
}

.errorMsgHolder {
    margin-top: 15px;
}

.errorMsg {
    zoom: 1;
    color: #AF231C;
    background: #E9BEB0;
    -moz-border-radius: 3px;
    font-weight: 600;
    padding: 10px;
}

.errorMsg div {
    padding: 11px 8px 11px 8px;
}

/*
 * Validation
 * -------------------------------------------------------------------------------------------------------------------*/
.requiredIndicator {
    color: red;
    display: none;
}

.requiredIndicatorLegend {
    width: 100%;
    text-align: right;
    font-size: 14px;
    color: red;
}

.requiredIndicator {
    display: inline;
    text-align: right;
}

table.validationMessagePanel, div.validationText {
    color: #ff4040;
    font-style: italic;
    padding-bottom: 8px;
}

.actionButtonField .button {
    margin-right: 0px;
    margin-top: 0px;
}

/*
 * Suggest Combo
 * -------------------------------------------------------------------------------------------------------------------*/
.suggestMenu {
    background: white;
}

.suggestMenu table {
    width: 100%;
    table-layout: auto;
    font-size: 14px;
}

.suggestMenu tr {
    border-bottom: 1px solid lightgrey; /* selectComboCellBorder; */
    padding-top: 3px;
    padding-bottom: 3px;
}

.suggestMenu tr.suggestComboSelected {
    background: black; /* selectComboCellSelectedBackgroundColor; */
    color: white;
}

.suggestMenu tr td {
    vertical-align: top;
    padding-right: 3px;
    padding-left: 3px; /*padding-bottom: 6px;*/
    cursor: default !important;
}

.suggestCombo input {
    padding: 5px 1px;
    width: 100%;
}

.suggestCombo-error input {
    background: pink; /* fieldErrorBackgroundColor !important; */
}

.suggestScrollPanel {
}

.suggestComboMessage {
    background: #fff;
}

.suggestPopup {
    -moz-box-shadow: 0 0 10px #000;
    -webkit-box-shadow: 0 0 10px #000;
    box-shadow: 0 0 10px #000;
    behavior: url(gwt/scripts/PIE.htc);
}

.suggestMenu.FundListType td {
    float: left;
    width: 100%;
}

.suggestMenu.FundListType td.col0, .suggestMenuFundListType td .label {
    font-weight: bold;
}

.suggestMenu.FundListType td.col2, .suggestMenu.FundListType td.col3 {
    font-size: 12px;
    width: 150px;
}

/*
 * Popup messages
 * -------------------------------------------------------------------------------------------------------------------*/
div.popup-hint {
    color: white;
    background: black;
    cursor: pointer;
    padding: 6px;
    behavior: url('gwt/scripts/PIE.htc');
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -o-border-radius: 5px;
    border-radius: 5px; /* Make buttons play nice in IE:*/
}

div.popup-error {
    color: white;
    background: black;
    cursor: pointer;
    padding: 6px;
    behavior: url('gwt/scripts/PIE.htc');
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -o-border-radius: 5px;
    border-radius: 5px; /* Make buttons play nice in IE:*/
}

div.popup-message a {
    color: white;
    text-decoration: underline;
}

/*
 * Disclaimer
 * -------------------------------------------------------------------------------------------------------------------*/
.disclaimer.button {
    margin-top: 10px;
}

.disclaimerScrollPanel {
    background: none repeat scroll 0 0 #E5E5E5;
    height: 100%;
    overflow: auto;
    padding-bottom: 15px;
    padding-right: 15px;
    box-sizing: border-box;
}

.disclaimerContent {
    margin: 10px;
}

.disclaimerContent li {
    display: list-item;
    list-style-type: square;
    margin-left: 20px;
    margin-bottom: 0;
}

.disclaimerContent ul {
    list-style: square outside none;
    margin-top: 0;
    margin-left: 0;

}

/*
 * Password Toggle
 * -------------------------------------------------------------------------------------------------------------------*/
.showTogglePasswordImg{
    width: 24px;
    height: 24px;
    padding-left: 2px;
    vertical-align: middle;
    cursor: pointer;
    margin-left: -60px;
    position: relative;
    z-index: 2;
}

/*
 * Pager
 * -------------------------------------------------------------------------------------------------------------------*/
.pager {
    background: none repeat scroll 0 0 #ffffff;
}

.pager table {
    margin: auto;
}

.pager input[type="text"] {
    width: 30px;
    min-width: 30px;
    border-radius: 8px;
    padding: 2px;
    border: 1px solid #b4b4b4;
}
.pager input[type="text"]:focus {
    outline: none;
}
.pager .pagerNav {
    text-align: center;
    margin-top: 0px;
}

.pager .pageSize {
    margin: 10px 3px 5px 0px;
}

.pager .pageSize.align {
    float: right;
}

.pager td {
    padding-right: 5px;
}

a.pagerButton {
    line-height: 14px;
    background-color: #3A445C;
    color: #BFCED6;
    font-weight: 600;
    font-size: 16px;
    line-height: 18px;
    overflow: hidden;
    margin: 5px 3px 5px 0;
    padding: 10px;
    position: relative;
    text-decoration: none;
    display: block;
    text-align: center;
    width: 100%;
    transition: all 0.2s ease-in-out 0s;
    padding: 19px;
}

a.pagerButton:hover {
    background-color: #272F3F;;
}

a.pagerButton.disabled {
    background-color: #ffffff;
    border: 1px solid #CCCCCC;
    cursor: default;
    border: 1px solid #3A445C;
    color: #3A445C;
}

.pagerLabel {
    margin: 0 8px 0 0;
    padding: 0 10px;
    font-size: 16px;
    font-weight: 500;
    text-align: center;
}

.pagerLabel:before {
    /*content: "Displaying ";*/
}

.pagerButton.last,
.pagerButton.jump,
.pagerButton.first {
    display: none;
}

.pagerButton.first:before {
    content: "First";
}

.pagerButton.prev:before {
    content: "Prev";
}

.pagerButton.next:before {
    content: "Next";
}

.pagerButton.last:before {
    content: "Last";
}

.pagerButton.jump:before {
    content: "Jump";
}

/*
 * Date Picker
 * -------------------------------------------------------------------------------------------------------------------*/
.datePickerContainer {
    z-index: 900;
}

.gwt-DatePicker {
    /* The master style of the date picker. */
    /* NOTE: This element is a table. Firefox doesn't honour all style directives. */
    font-size: 14px;
    text-align: center;
    cursor: pointer;
    border: 1px solid #4A4B4D;
}

.gwt-DatePicker * {
    font-size: 14px;
    color: #3A445C;
    background: #BFCED6;
}
.datePickerMonthSelector {
    /* The month selector widget. */
}

.MonthSelector {
    background: #BFCED6;
    text-align: center; /* The month in the month selector widget. */
    width: 100%;
}

.MonthSelector * {
    font-weight: bold;
    font-size: 14px;
    padding: 4px;
    color: #3A445C;
    font-family: ProzaDisplayW03-ExtraBold;
    font-style: normal;
    font-weight: 800;
    font-size: 18px;
    line-height: 24px;
}

.datePickerPreviousButton {
    /* The previous month button. */
}

.datePickerNextButton {
    /* The next month button. */
}

.datePickerDays {
    /* The portion of the picker that shows the days. */
    /* NOTE: This element is a table. Firefox doesn't every css style. */
}

.datePickerDays td {
    background: #ffffff;
}

.datePickerDays td.datePickerWeekdayLabel {
    background: #BFCED6;
    text-align: center;
    padding: 4px 7px;
    color: #3A445C;
    font-family: Nunito;
    font-style: normal;
    font-weight: 800;
    font-size: 12px;
    line-height: 16px;
}

.datePickerDays td.datePickerWeekendLabel {
    /* The label over weekends. */
    background: #BFCED6;
    text-align: center;
    padding: 4px 7px;
    color: #3A445C;
    font-family: Nunito;
    font-style: normal;
    font-weight: 800;
    font-size: 12px;
    line-height: 16px;
}

.datePickerDay {
    /* A single day. */
    padding: 4px 7px;
    border-Collapse: collapse;
    text-align: center;
}

.datePickerDayIsToday {
    /* Today's date. */
}

.datePickerDayIsWeekend {
    /* A weekend day. */

    padding: 4px 7px;
    border-Collapse: collapse;
    text-align: center;
}

.datePickerDayIsFiller {
    /* A day in another month. */
}

.datePickerDayIsDisabled {
    /* A disabled day. */
}

.datePickerDayIsHighlighted {
    /* The currently highlighted day. */
    background: #3A445C;
    color: #ffffff;
    padding: 4px 7px;
    /*font-weight: bold;*/
}



.datePickerDayIsValueAndHighlighted {
    /* The highlighted day if it is also selected. */
    border-Collapse: collapse;
    background: #3A445C;
    padding: 4px 7px;
    color: #ffffff;
}

.datePickerDayIsValue {
    /* The selected day. */
    border-Collapse: collapse;
    background: #3A445C;
    color: #FFFFFF;
}

/* Application wide BlockUI config */
.blockUI.blockOverlay {
    background-color: #000;
    zoom: 1;
    -ms-filter: literal("progid:DXImageTransform.Microsoft.Alpha(Opacity=60)");
    filter: literal("alpha(opacity=60)");
    opacity: 0.6;
}

.blockUI.blockElement {
    height: 100px;
    left: 50%;
    margin-left: -50px;
    top: -5px;
    width: 100px;
}

.blockUI .blockContent {
    background: transparent url(laf/sitewide/tickGreenSmall.png) 0 0 no-repeat;
    height: 100%;
    width: 100%;
}

/*
 * Fancybox
 * -------------------------------------------------------------------------------------------------------------------*/
#fancybox-wrap.displayDialog {
    width: 100% !important;
    margin-left: -210px;
}

#fancybox-content {
    min-width: 400px !important;
}

#fancybox-overlay {
    position: fixed !important;
}

#fancybox-wrap #fancybox-close {
    right: -15px;
}

#fancybox-wrap .fancybox-bg {
    display: none;
}

.dialogWrap {
    width: 100%;
    padding: 10px;
    background: white;
}

@media screen and (max-width: 768px) {
    #fancybox-wrap #fancybox-close {
        right: -15px;
    }
}


@media screen and (min-width: 450px) and ( max-width: 767px) {
    #fancybox-content .pdfDownloadDialogButtonBar .button {
        width: auto;
        padding-left: 18px;
        padding-right: 18px;
        margin-left: 10px;
    }
}

@media screen and (min-width: 0px) and ( max-width: 767px) {
    #dynamicModalDialog,
    #fancybox-wrap {
        -moz-box-sizing: border-box;
        margin-left: 10% !important;
        min-width: 320px !important;
        padding-left: 0 !important;
        padding-right: 20% !important;
        width: 100% !important;
        left: 0px;
    }

    #fancybox-wrap {
        left: 0 !important;
    }

    #dynamicModalDialog {
        margin-left: 10px !important;
        padding-right: 20px !important;
    }

    #dynamicModalDialog .popupContent,
    #fancybox-wrap #fancybox-content,
    #fancybox-wrap #fancybox-content > div {
        min-width: 200px !important;
        width: auto !important;
    }
}

#fancybox-wrap #fancybox-content,
#fancybox-wrap #fancybox-content > div {
    min-width: 200px !important;
    width: auto !important;
}

@media screen and (max-width: 768px) {
    #dynamicModalDialog {
        margin-left: 0px !important;
        padding-right: 0px !important;
        top: 0px;
        left: 800px;
    }

    #dynamicModalDialog.initialContentLoaded {
        -webkit-animation-name: slideInFromRight; /* Chrome, Safari, Opera */
        -webkit-animation-duration: 0.5s; /* Chrome, Safari, Opera */
        animation-name: slideInFromRight;
        animation-duration: 0.5s;
        left:0px;
    }
}

/* Chrome, Safari, Opera */
@-webkit-keyframes slideInFromRight {
    from {left:800px;}
    to {left:0px;}
}

/* Standard syntax */
@keyframes slideInFromRight {
    from {left:800px;}
    to {left:0px;}
}

.thingsYouShouldKnowPanel {
    font-size: 13px;
    font-weight: normal;
    margin-top: 30px;
    padding: 8px 0 0;
}


/*
 * MISC
 * -------------------------------------------------------------------------------------------------------------------*/
.bgmlScript {
    display: none;
}

textarea.log-window {
    font-size: 12px;
    font-family: Consolas, sans-serif;
    font-weight: bold;
    hidden: true;
}

@media screen and (max-width: 450px) {
    .dialog .popupContent {
        /*padding: 3px;*/
    }

    .dialog .popupContent .modal > div {
        padding: 5px;
    }
    /*#dynamicModalDialog {*/
    /*margin-left: 5px !important;*/
    /*padding-right: 10px !important;*/
    /*}*/
}

/* De-Chromed */
html.de-chromed body {
    background: none;
}

html.de-chromed #site-header,
html.de-chromed #site-footer,
html.de-chromed #main #sidebar-left,
html.de-chromed #main #sidebar-right {
    display: none !important;
}
html.aol-mobile-app  #main .page-header ,
html.aol-mobile-app  #main #placeTitle {
    display: none !important;
}

html.aol-mobile-app #main {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
}

html.aol-mobile-app.aol-native-app .place-MemberDashboard #site-notification,
html.aol-mobile-app.aol-native-app .place-MemberDashboard #page .MemberDashboardPlace .contentPanel {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
}
html.aol-mobile-app.aol-native-app .place-MemberDashboard #page {
    padding-top: 0 !important;
}
html.aol-mobile-app.aol-native-app .place-MemberDashboard .MemberDashboard_accountHistoryChart_header {
    padding-right: 15px !important;
    padding-left: 15px !important;
}
html.aol-mobile-app.aol-native-app #site-header,
html.aol-mobile-app.aol-native-app #wrap,
html.aol-mobile-app.aol-native-app .site-wrapper #responsive-site-nav {
    display: none !important;
}
html.aol-mobile-app.aol-native-app .contentPanel {
    margin-top: 15px;
}

/*
 * IE8 Media Query support
 *   http://keithclark.co.uk/articles/moving-ie-specific-css-into-media-blocks/
 *   http://www.smashingmagazine.com/2011/08/techniques-for-gracefully-degrading-media-queries/
 */

/*.loginType-EMPLOYER .buttonWrap a,
.loginType-EMPLOYER #fancybox-content .pdfDownloadDialogButtonBar .button {
    background-color: #006A8E;
}*/

/*.loginType-EMPLOYER .buttonWrap a:hover,
.loginType-EMPLOYER #fancybox-content .pdfDownloadDialogButtonBar .button:hover {
    background-color: #EE9959;
}*/

/*.loginType-EMPLOYER .Dialog_ConfirmLogout .buttonWrap.No a,
.loginType-EMPLOYER .buttonWrap.Cancel a {
    background-color: #E87722;
}

.loginType-EMPLOYER .Dialog_ConfirmLogout .buttonWrap.No a:hover,
.loginType-EMPLOYER .buttonWrap.Cancel a:hover {
    background-color: #7FB4C6;
}

.loginType-EMPLOYER .drillableTableData tbody tr.odd {
    background-color: #BFDAE3;
}

.loginType-EMPLOYER .accountBar .select {
    border: 1px solid #006A8E;
}

.loginType-EMPLOYER .drillableTableData thead tr th {
    background: none repeat scroll 0 0 #006A8E;
}

.loginType-EMPLOYER #responsive-site-nav .mp-level,
.loginType-EMPLOYER #responsive-site-nav .mp-level ul {
    background: #408faa;
}

.loginType-EMPLOYER #responsive-site-nav.mp-menu ul li > a {
    border-bottom: 1px solid #7fb4c6;
}

.loginType-EMPLOYER #site-header  #user-nav-right li p {
    color: #006A8E;
}*/

/*.loginType-EMPLOYER #site-header  #user-nav-right li#contactItem .needHelp {*/
/*    background: url("laf/sitewide/icons/20/phone-blue.jpg") no-repeat scroll left center transparent;*/
/*}*/

/*.loginType-EMPLOYER #site-header  #user-nav-right li#welcomeItem p:first-child {*/
/*    background: url("laf/sitewide/icons/20/court-blue.jpg") no-repeat scroll left center transparent;*/
/*}*/

/*.loginType-EMPLOYER #site-header  #user-nav-right li#welcomeItem p:first-child + p {*/
/*    background: url("laf/sitewide/icons/20/adviser-blue.jpg") no-repeat scroll left center transparent;*/
/*}*/

/*.loginType-EMPLOYER #site-header  #user-nav-right li#logoutItem {
    background: url("laf/sitewide/key.png") no-repeat scroll 10px center #006A8E;
}

.loginType-EMPLOYER #site-header  #user-nav-right li#logoutItem:hover {
    background-color: #EE9959;
}*/

.loginType-EMPLOYER #site-header .mobileHeader .mlogout,
.loginType-ADVISER #site-header .mobileHeader .mlogout {
    background-image: url("laf/sitewide/icons/30/key-blue.jpg");
}
/*
.loginType-EMPLOYER .selectWrap > select {
    border: 1px solid #006A8E;
}

.loginType-EMPLOYER .inputWrap > input {
    border: 1px solid #006A8E;
}

.loginType-EMPLOYER a.pagerButton {
    background-color: #006A8E;
}

.loginType-EMPLOYER .MonthSelector {
    background: #006A8E;
}

.loginType-EMPLOYER .datePickerDays td.datePickerWeekdayLabel {
    background: #006A8E;
}

.loginType-EMPLOYER .datePickerDays td.datePickerWeekendLabel {
    background: #006A8E;
}

.loginType-EMPLOYER .datePickerDayIsHighlighted {
    background: #006A8E;
}

.loginType-EMPLOYER .datePickerDayIsValueAndHighlighted {
    background: #006A8E;
}

.loginType-EMPLOYER .datePickerDayIsValue {
    background: #006A8E;
}

.loginType-EMPLOYER #site-footer .desktopFooter a {
    color: #E87722;
}*/

.loginType-EMPLOYER .infobox-orange,
.loginType-ADVISER .infobox-orange {
    padding: 15px;
    font-size: 14px;
    line-height: 16px;
    background: none repeat scroll 0 0 #F9DDC8;
    margin-bottom: 20px;
}

/*.loginType-EMPLOYER .infobox-orange a {
    color: #E87722;
}

.loginType-EMPLOYER .infobox-orange .alert-info-orange {
    background-image: url('laf/sitewide/icons/30/exclaim.jpg');
    background-repeat: no-repeat;
    padding-left: 40px;
    font-size: 16px;
    font-weight: bold;
    color: #E87722;
    line-height: 30px;
    min-height: 23px;
    margin-bottom: 5px;
}*/

.loginType-EMPLOYER .infobox-blue,
.loginType-ADVISER .infobox-blue {
    margin-bottom: 20px;
}

.loginType-EMPLOYER .infobox-blue .alert-question-blue,
.loginType-ADVISER .infobox-blue .alert-question-blue {
    background-image: url( 'laf/sitewide/icons/30/question-blue.jpg' );
    padding-left: 40px;
    line-height: 30px;
}

#progress {
    border: 1px solid #cccccc;
    width: 30%;
    position: relative;
}

body .progress-animated .progress-bar {
    background: none #555 !important;
    height:27px;
}

#progress .percent-indicator {
    position:absolute;
    top:0;
    width:100%;
    text-align:center;
    color: black;
}
.WorkbenchViewAdditionalInfoDialog{
    z-index: 950;
    text-align:center;
    top: 70px;
    /*margin-left: -35%;*/
    width: 1300px;
    padding-bottom: 40px;
    right: 0;
    left: 0;
    margin: auto;

}
.WorkbenchViewAdditionalInfoForm .formTable tbody tr .formTableColumn {
    padding-right : 10px;
}
.terminationPdfContentList{
    padding: 10px;
}
.EmployerDetailsPlace .cms p{
    font-weight: bold;
    text-align: center;
    padding-bottom: 10px;
}

/*
* TacticalLinks
* -------------------------------------------------------------------------------------------------------------------*/
.tactical-boxes li {
    border: 3px solid #3A445C;
}

.tactical-boxes li:hover {
    background-color: #272F3F;
}

.tactical-boxes li a {
    color: #3A445C;
    text-decoration: none;
}

.tactical-boxes li:hover a {
    color: #BFCED6;;
}

.workbenchViewAdditionalInfoForm .grouped{
    border: 2px solid #3A445C;
    padding: 8px;
    margin: 5px;
}

/*.pensionSetupDebitFormSectionBar .cms{
    font-size: 18px;
}*/

.emailEmployer.task > ul > li >a >span{
    padding-left: 20px;
    padding-right: 20px;
    line-height: 20px;
}

.mp-menu {
    z-index: unset;
}




.textModal{
    padding: 10px;
}
.textModal .h1{
    font-family: ProzaDisplayW03-ExtraBold;
    font-weight: 800;
    font-size: 32px;
    line-height: 38px;
    letter-spacing: -0.01em;
    padding-bottom: 12px;
}
@media screen and (min-width: 1350px) {
    .scroller:not(.place-MemberJoin) #responsive-site-nav .container:before {
        content: '   ';
        background: url(gwt/laf/icons/menu/siteLogo.svg) no-repeat center center;
        display: inline-block;
        height: 66px;
        width: 69px;
        position: absolute;
        /*left: -200px;*/
        /*top: 10px;*/
        margin: 16px 0 16px 32px;
    }
}
.form.formEditable .formControlCell.readOnly .actionButtonField .gwt-Label {
}




#fancybox-content .TwoFADialog #dialogContent .resend,
#fancybox-content .TwoFAAuthDialogButtonBar .button {
    background: #3A445C;
    border: 1px solid #3A445C;
    color: #BFCED6;;
    font-weight: 600;
    font-size: 14px;
    line-height: 18px;
    outline: medium none !important;
    overflow: hidden;
    padding: 10px 13px;
    position: relative;
    text-decoration: none;
    display: inline-block;
    text-align: center;
    height: auto;
    margin: 10px 5px 5px 0px;
    cursor: pointer;
    float: left;
    transition: all 0.2s ease-in-out 0s;
}

#fancybox-content .TwoFADialog #dialogContent .resend:hover,
#fancybox-content .TwoFAAuthDialogButtonBar .button:hover {
    background-color: #272F3F;
}


#fancybox-content .TwoFADialog #dialogContent .resend:hover,
#fancybox-content .TwoFAAuthDialogButtonBar .button:hover,
#fancybox-content .pdfDownloadDialogButtonBar .button:hover {
    background: #272F3F;
}

#fancybox-content .TwoFAAuthDialogButtonBar {
    display: flex;
    flex-direction: row;
}

#fancybox-content .TwoFAAuthDialogButtonBar .resendButton {
    order: 1;
}

#fancybox-content .TwoFAAuthDialogButtonBar .cancelButton {
    order: 2;
}

.TwoFADialog .textModal > input {
    border: 1px solid red;
    /*-webkit-border-radius: 5px;*/
    /*-moz-border-radius: 5px;*/
    /*border-radius: 5px;*/
    margin: 10px 0px 10px 0px;
}

.TwoFADialog .textModal > input:focus {
    outline: none;
    box-shadow: 0 0 6px #888;
    -webkit-box-shadow: 0 0 6px #888;
    -moz-box-shadow: 0 0 6px #888;
}

.TwoFADialog .textModal > .resendText {
    margin: 10px 0px 10px 0px;
}

.TwoFADialog .textModal .TwoFAAuthDialogButtonBar {
    margin-top: -10px;
}

.TwoFADialog .textModal .cms.System_dialog_2fa_error_message {
    margin: 10px 0;
}
#fancybox-content .TwoFADialog #dialogContent .System_dialog_2fa_message {
    margin: 10px 0px 10px 0px;
}

@media screen and (max-width: 480px) {
    /*.dashboard_accountSnapshotContent {*/
    /*    margin-top: 100px;*/
    /*}*/

    .gwt-PopupPanel .popupContent {
        margin-top: 120px;
    }

    .place-MemberDashboard .contentPanel {
        margin-top: 97px !important;
    }
    .contentPanel {
        margin-top: 120px;
    }
}

.place-AccountOpening #button-open-menu, .place-AccountOpening #button-close-menu {
    display: none;
}

.horizontalButtonBar {
    display: flex;
    flex-wrap: wrap;
}
.buttonWrap.nonmodalclosebutton,
.buttonWrap.modalclosebutton{
    order: 1;
}

.buttonWrap.Previous{
    order: 2;
}
.buttonWrap.Print{
    order: 3;
}
.buttonWrap.Next{
    order: 4;
}
.buttonWrap.Submit{
    order: 5;
}

.employerDashboardLayout .memberSearchForm  {
    display: none;
}

@media screen and (max-width: 380px) {
    .place-MemberLogin .memberLoginForm {
        padding: 0 10px;
    }
}


/* footer links */
.socialMediaLink {
    margin: 0 5px;
}

#site-footer #footer-left .footer-nav-list a {
    color: white;
    font-size: 14px;
    text-decoration: none;
    text-shadow: none;
    margin: 0px;
    display: block;
    position: relative;
    padding: 3px 12px !important;
    font-weight: lighter !important;
}
#site-footer .footerLinks {
    min-width: 200px;
}
#site-footer #footer-left .footer-nav-list a:after {
    content: ".";
    background: url(gwt/laf/sitewide/icons/sideMenuArrow-white.svg) no-repeat;
    overflow: hidden;
    display: block;
    height: 12px;
    width: 8px;
    display: block;
    margin: auto;
    top: 0;
    bottom: 0;
    right: 0;
    position: absolute;
    background-size: contain;
}
#site-footer #footer-left .footer-nav-list {
    position: relative;
    line-height: 20px;
    text-align: left;
}

div #footer-left {
    display: flex;
}

#footer-left div:first-child{
    width: 130px;
}

#footer-left div:nth-child(2){
    width: 220px;
    margin-left: 10px;
    margin-right: 20px;
}

@media screen and (min-width: 681px) {
    #site-footer #footer-left {
        float: left;
        margin-left: 20px;
    }
    #site-footer #footer-right {
        float: right;
        margin-right: 20px;
    }
}
@media screen and (max-width: 680px) {
    #site-footer #footer-left {
        margin: 0 auto;
    }
    #site-footer #footer-right {
        margin-top: 20px;
    }
}
/*Control the Height of the chart using CSS its much easier at present we can control heigh in UIconfiguration
 then we can use css_chartHeight in the lookAndFeelConfiguration.properties*/
div#accountHistoryChart{
    height: 400px;
}
.gwt-viz-container{
   height: 400px;
}

@media screen and (max-width: 767px) {
    .place-TransactionHistory .transactionType select {
        background-color: #F1F1F1;
        background-image: none;
    }
}

@media screen and (max-width: 480px) {
    .place-MemberDashboard #page {
        padding-top: 20px !important;
    }
}

.drillableTableData tr.drillableTableDataSummaryRow, .drillableTableData tr.drillableTableDataSummaryRow td .labelText {
    text-align: right !important;
}


@media screen and (max-width: 320px) {
    body {
        min-width: 320px;
    }
}

.adhocDirectDebitList  .PaymentFrequency .freeStringType{
    display: none;
}
.adhocDirectDebitList .PaymentFrequency{
    text-align: right;
}
.adhocDirectDebitList .PaymentFrequency div:after{
    content: 'Once off';
}
