/*
//-----------------------------------------------------------------------------
//
//  Cascading Style Sheet for Amscot Cardholder Website
//
//-----------------------------------------------------------------------------
*/

/*
Typface: Verdana Bold and Regular

Colors:
Blue Type (all): #00539F
Yellow Type (navigation drop-down rollover): #FDDF30
Gray Type (navigation drop-down): #E6E6E6
Body Copy (gray): #333333

Number Colors:
Regular entries (black) #000000
Positive entries (blue): #00539F
Negative entries (red): #ED1C24
 */


/*
//-----------------------------------------------------------------------------
//  General HTML Styles
//-----------------------------------------------------------------------------
*/
html {
    height: 100%;
}

body {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 14px;
    line-height: normal;
	background: #FFFFFF url('../images/ams_background.gif') repeat-x;
	color: #333333;
	padding: 0px;
	margin: 0px;
	border: 0px;
    height: 100%;
}

body.print-layout {
    background: none;
}

h1 {
	color: #00539F;
	font-size: 20px;
	padding: 0px;
	margin: 0px;
	border: 0px;
    font-size: 18px;
}

h1.pg-header {
    width: 100%;
    text-align: right;
    font-weight: bold;
}

h2{
    color: #000;
    font-size: 16px;
    padding: 0px;
    margin: 14px 0px;
    border: 0px;
}

h2.tbl-header {
    color: #00539F;
    font-size: 14px;
    font-weight: bold;
    margin: 15px 0px 3px;
    border: 0px;
    padding: 0px;
}

a {	
	text-decoration: none;
	color: #00539F;
}
a:hover {
	text-decoration: underline;
	color: #00539F;
}
a.h1 {
	color: #00539F;
	font-size: 17px;
}

p {
    margin: 14px 0px;
}

ul, ol {
    padding: 2px 2px 2px 35px;
    margin: 14px 0px;
}

ul li {
    list-style: disc outside;
    padding: 3px 0px;
}

ol li {
    list-style: decimal outside;
    padding: 3px 0px;
}

ol.type-upper-alpha li {
    list-style-type: upper-alpha;
}

input, select, button, textarea {
    max-width: 100%;
}

.print-layout .print {
    display: block;
}

.print-layout .screen {
    display: none;
}

.print-layout h1.pg-header {
    text-align: left;
}

.clear {
    clear: both;
    display: block;
    height: 1px;
    width: 1px;
}

.alternating .odd > *,
.alternating div.odd {
    background-color: #eeeeee;
}

.alternating .even > *,
.alternating div.even {
    background-color: #ffffff;
}

.head {
    padding: 5px;
    color: #FFFFFF;
    background-color: #8E8F91;
    font-weight: bold;
}

.currency {
    text-align: right;
}

.amt-negitive {
    color: #ff0000;
}

.hide-mobile {
    display: block;
}

.hide-large {
    display: none;
}

@media screen and (max-width: 768px) {
    .hide-mobile {
        display: none;
    }

    .hide-large {
        display: block;
    }
}

.collapse-table {
}

.collapse-table .row {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
}
.collapse-table .row .col {
    -webkit-align-items: stretch;
    -moz-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
}

.collapse-hdr, .collapse-footer {
    background: #8E8F91;
    color: #ffffff;
    font-weight: bold;
}

@media screen and (max-width: 768px) {

    .collapse-table .row {
        display: block;
    }
    .collapse-table .row .col {
        -webkit-align-items: baseline;
        -moz-box-align: baseline;
        -ms-flex-align: baseline;
        align-items: baseline;
    }
}

/* Bootstrap Additions to allow for 5 column layout */
.col-xs-2-4,
.col-sm-2-4,
.col-md-2-4,
.col-lg-2-4 {
    position: relative;
    min-height: 1px;
    padding-right: 10px;
    padding-left: 10px;
}

.col-xs-2-4 {
    width: 20%;
    float: left;
}

@media only screen and (min-width: 768px) {
    .col-sm-2-4 {
        width: 20%;
        float: left;
    }
}

@media only screen and (min-width: 992px) {
    .col-md-2-4 {
        width: 20%;
        float: left;
    }
}

@media only screen and (min-width: 1200px) {
    .col-lg-2-4 {
        width: 20%;
        float: left;
    }
}

/*
//-----------------------------------------------------------------------------
//  Main Website Styles
//-----------------------------------------------------------------------------
*/

#pnl-main {
    max-width: 768px;
    margin: 0 auto;
}

.print-layout #pnl-main {
    max-width: 100%;
}

#pnl-header {
	max-width: 768px;
	margin: 0px auto;
	border: 0px;
	position: relative;
}

#pnl-header img {
    width: 100%;
}

#programbanner {
	max-width: 768px;
	height: 13px;
	background: url('../images/top_yellow_rule.png') no-repeat;
	margin: 10px auto -10px;
	border: 0px;
	padding: 0px;
}

#primarycontent {
	max-width: 779px;
	background: #FFFFFF;
	margin: 0px;
	border: 0px;
	padding: 0px;
	border-top: 3px solid #00539F;
    padding: 25px;
    position: relative;
    min-height: 250px;
}

.pnl-flash-message p {
    border-radius: 7px;
    padding: 20px;
    margin: 7px 0px;
    background-color: #5399E4;
    color: #ffffff;
    border: 1px solid #0051A2;
}

.pnl-flash-message p.error {
    background-color: #ffeeee;
    color: #ff0000;
    border-color: #ff0000;
    border-radius: 0px;
}

.pnl-flash-message p.success {
    background-color: #eeffee;
    color: #008800;
    border-color: #008800;
}

.pnl-flash-message p.notice {
    background-color: #FFFFC7;
    color: #000;
    border-color: #000;
}

#pnl-ch-info {
    z-index: 999;
}

#pnl-ch-info, #pnl-ch-info a {
    color: #ffffff;
    font-size: 11px;
}
#pnl-ch-info .header-data {
    font-weight: bold;
    font-style: italic;
}

#pnl-ch-info #lnk-home {
    position: absolute;
    top: 10px;
    right: 80px;
    text-align: right;
    border-right: 1px #ffffff solid;
    padding-right: 10px;
}

#pnl-ch-info #lnk-logout {
    position: absolute;
    top: 10px;
    right: 25px;
}

#pnl-ch-info #pnl-welcome-client {
    position: absolute;
    top: 125px;
    right: 385px;
    text-align: right;
}

#pnl-ch-info #pnl-curr-balance {
    position: absolute;
    top: 125px;
    right: 160px;
}

#nav-menu-button {
    display: none;
    /*color: #ffffff;*/
    /*background: none;*/
}

@media screen and (max-width: 779px) {

    #pnl-ch-info #lnk-home {
        top: 8px;
    }

    #pnl-ch-info #lnk-logout {
        top: 8px;
    }

    #pnl-small-menu {
        background: #0053A0;
        border: 2px #003977 solid;
        border-radius: 10px;
        margin: 7px 0px;
        min-width: 100%;
        min-height: 46px;
    }

    #pnl-ch-info #pnl-welcome-client {
        position: relative;
        top: 0;
        right: 0;
        text-align: left;
        padding: 10px 5px 2px 5px;
    }

    #pnl-ch-info #pnl-curr-balance {
        position: relative;
        top: 0;
        right: 0;
        padding: 2px 5px 10px 5px;
    }

    #nav-menu-button {
        display: block;
        float: right;
        margin: 10px;
        position: relative;
        z-index: 9999;
    }

    .header-logged-out #nav-menu-button {
        margin: 4px 10px;
    }
}

/**************************************************
	Homepage Nav Bar
**************************************************/
#logged-out-nav {
    margin: 7px 0px;
    display: block;
}

#ams_home_navbar {
    margin: auto;
    display: inline-block;
}

#ams_home_navbar ul {
    margin: auto;
}

/*
//-----------------------------------------------------------------------------
//  Navigation
//-----------------------------------------------------------------------------
*/

.pnl-navigation {
    position: relative;
    width: 768px;
    height: 42px;
    color: #333333;
    font-size: 12px;
    margin: 7px 0px;
    border: 0px;
    padding: 0px;
    display: block;
}

.pnl-navigation ul, .pnl-navigation li {
    list-style: none;
    margin: 0px;
    border: 0px;
    padding: 0px;
    padding: 0px;
}

.pnl-navigation > ul > li {
    float: left;
    display: block;
    width: 192px;
    height: 42px;
    background: url('../images/cardholder_nav_btn.png') no-repeat;
    text-align: center;
    margin: 0px;
    border: 0px;
    padding: 0px;
    position: relative;
}

#logged-out-nav > ul > li {
    background: url('../images/front_end_nav_btn.png') no-repeat;
    width: 153px;
    height: 42px;
}

.pnl-navigation > ul > li:hover {
    background: url('../images/cardholder_nav_btn_rollover.png') no-repeat;
}

#logged-out-nav > ul > li:hover {
    background: url('../images/front_end_nav_rollover.png') no-repeat;
    color: #00539F;
}

.pnl-navigation ul li a {
    display: block;
    height: 42px;
    font-weight: bold;
    color: #FFFFFF;
    text-decoration: none;
    margin: 0px;
    border: 0px;
    padding: 13px 0px;
    vertical-align: middle;
}

.pnl-navigation ul > li:hover > a {
    color: #00539F;
    text-decoration: none;
}

.pnl-navigation ul li ul {
    z-index: 9999;
    clear: both;
    display: none;
    width: 192px;
    position: relative;
    top: 0px;
    left: 0px;
    background: #838BA0;
    list-style: none;
    margin: 0px;
    padding: 0px;
}

.pnl-navigation ul li:hover ul {
    display: block;
}

.pnl-navigation ul li ul {
    border-bottom: 3px solid #FDDF30;
}

.pnl-navigation ul li ul li {
    clear: both;
    width: 192px;
    background: #838BA0;
    text-align: left;
    white-space: nowrap;
    margin: 0px;
    border: 0px;
    padding: 0px;
}

.pnl-navigation ul li ul li a {
    display: block;
    font-size: 12px;
    color: #E6E6E6;
    text-decoration: none;
    margin: 0px;
    border: 0px;
    padding: 8px;
}

.pnl-navigation ul li ul li:hover a {
    color: #FDDF30;
}

@media screen and (max-width: 779px){

    .pnl-navigation {
        width: 100%;
        height: 100%;
        background: #0053A0;
        display: none;
        overflow: hidden;
    }

    #logged-out-nav {
        display: none;
        overflow: hidden;
    }

    #ams_home_navbar {
        width: 100%;
    }

    .pnl-navigation > ul > li {
        width: 100%;
        height: 100%;
        background: #0053A0;
    }

    #logged-out-nav > ul > li {
        background: #0053A0;
        width: 100%;
        height: 100%;
    }

    .pnl-navigation > ul > li:hover {
        background: none;
    }

    #logged-out-nav > ul > li:hover {
        background: none;
    }

    .pnl-navigation ul li a {
        display: block;
        height: 42px;
        font-weight: bold;
        color: #FFFFFF;
        text-decoration: none;
        margin: 0px;
        border: 0px;
        padding: 11px 0px;
        vertical-align: middle;
    }
    .pnl-navigation ul > li:hover > a {
        color: #ffffff;
        text-decoration: none;
    }

    .pnl-navigation ul li ul {
        display: block;
        width: 100%;
    }
    .pnl-navigation ul li:hover ul {
        display: block;
    }

    .pnl-navigation ul li ul li {
        width: 100%;
        background: none;
    }

}

/*
//-----------------------------------------------------------------------------
//  Forms
//-----------------------------------------------------------------------------
*/
dt, dd {
    padding: 3px 0px;
}

form .errors {
    color: #ff0000;
    margin: 3px 0px;
}

/*
//-----------------------------------------------------------------------------
//  Buttons
//-----------------------------------------------------------------------------
*/
#buttons {
	height: 0px;
	position: relative;
	clear: both;
	top: -200px;
	left: 315px;
	margin: 0px;
	border: 0px;
	text-align: center;
}

#homebutton {
	margin: 0px;
	border-right: #FFFFFF 1px solid;
	padding-right: 10px;
}

#logoutbutton {
	margin: 0px;
	border: 0px;
	padding-left: 4px;
}

#buttons a {
	color: #FFFFFF;
	font-size: 11px;
	font-weight: normal;
	text-decoration: none;
	margin: 0px;
	border: 0px;
	padding: 0px;
}
#buttons a:hover {
	text-decoration: underline;
}

/*
//-----------------------------------------------------------------------------
//  Footer
//-----------------------------------------------------------------------------
*/
#pnl-footer {
    max-width: 768px;
    margin: auto;
    display: block;
    width: 100%;
    background: #FFFFFF url('../images/bottom_yellowandblue_rule.png') no-repeat;
    color: #999999;
    font-weight: normal;
    text-align: center;
    padding-top: 15px;
}

#footer-links {
    display: table;
    margin: auto;
    text-align: center;
}

#footer-links ul {
	list-style: none;
	margin: 0px;
	border: 0px;
	padding: 0px;
	text-align: center;
    display: table-row;
}

#footer-links ul li {
    display: inline-block;
    list-style: none;
	margin: 0px;
	border: 0px;
	padding: 3px 0px;
}

#footer-links a {
	display: inline-block;
	color: #999999;
	font-size: 12px;
	font-weight: bold;
	text-decoration: none;
	margin: 0px;
    border-right: 2px solid #999999;
    padding: 0px 8px 0px 4px;
}
#footer-links a:hover {
	text-decoration: underline;
}

#footer-links a.footer-link-last {
    border-right: none;
    clear: both;
}

.textchunk {
	clear: both;
	font-size: 9px;
	color: #999999;
	font-weight: bold;
	text-align: center;
    padding-right: 15px;
    padding-left: 15px;
}

#copyright {
	margin: 0px;
	border: 0px;
	padding-top: 10px;
}
#issuer-stmt {
	margin: 0px;
	border: 0px;
	padding-bottom: 10px;
}
#patriot-act {
	margin: 0px;
	border: 0px;
	padding-bottom: 10px;
}

#billpay-menu .nav-tabs > li a {
    width: 117px;
    height: 50px;
    padding: 8px;
    text-align: center;
    line-height: 16px;
}

#billpay-menu li a {
    height: 100%;
    background: #DDDDDD;
}

#billpay-menu li a span {
    font-size: 12px;
    color: #0053A0;
    font-weight: bold;
    text-align: center;
    line-height: 14px;
}

#billpay-menu li a:focus, #billpay-menu li a:hover, #billpay-menu li.active a {
    text-decoration: none;
    background-color: #0053A0;

}

#billpay-menu li a:focus span, #billpay-menu li a:hover span, #billpay-menu li.active a span
{
    color: #ffffff;
}

#billpay-menu .nav-tabs > li > a,
#billpay-menu .nav-tabs {
    border-color: #000000;
}

.pnl-exception-info pre {
    overflow: scroll;
}

.frm-date-range .collapse-table {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
}

.frm-date-range label {
    font-weight: normal;
    font-size: 14px;
}

.frm-date-range input#start_date,
.frm-date-range input#end_date {
    width: 110px;
}

.frm-date-range label,
.frm-date-range label {
    width: 140px;
}

.frm-date-range .col {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-align-items: baseline;
    -moz-box-align: baseline;
    -ms-flex-align: baseline;
    align-items: center;
    padding: 5px;
}

@media screen and (max-width: 768px) {
    .frm-date-range .collapse-table {
        display: block;
    }

    .frm-date-range label,
    .frm-date-range label {
        width: 100%;
    }

    .frm-date-range .col {
        display: block;
        -webkit-justify-content: inherit;
        justify-content: inherit;
        -webkit-align-items: baseline;
        -moz-box-align: baseline;
        -ms-flex-align: baseline;
        align-items: baseline;
    }
}

#pnl-click2print span {
    display: block;
    background: transparent url(../images/printer_icon.gif) no-repeat scroll 0 0;
    min-height: 32px;
    min-width: 34px;

}

#pnl-click2print span a {
    display: inline-block;
    padding: 12px 0px 0px 45px;
}

.form-errors {
    color: #ff0000;
}

.amt-negative {
    color: #ff0000;
}

#frm-client-selector dt,
#frm-client-selector dd {
    float: left;
}

#client-selector-label label {
    font-weight: normal;
}

#frm-client-selector dd {
    padding-left: 16px;
}

.icon-question, .icon-answer {
    height: 11px;
    width: 20px;
    display: inline-block;
}

.icon-question {
    background: transparent url('../_images/icon/message-question_18x11.png') no-repeat center;
}

.icon-answer {
    background: transparent url('../_images/icon/message-answer_18x11.png') no-repeat center;
}