﻿/* DEFAULTS
----------------------------------------------------------*/

*
{
    margin: 0;
    padding: 0;
}

body, html
{
    height: 100%;
}

body
{
    background: #d9d9d9;
    font-size: .80em;
    font-family: Arial;
    margin: 0px;
    padding: 0px;
    color: #000;
}

a:link, a:visited
{
    color: #034af3;
}

a:hover
{
    color: #1d60ff;
    text-decoration: none;
}

a:active
{
    color: #034af3;
}

p
{
    margin-bottom: 10px;
    line-height: 1.6em;
}

/* HEADINGS
----------------------------------------------------------*/

h1, h2, h3, h4, h5, h6
{
    font-size: 1.5em;
    color: #666666;
    text-transform: none;
    font-weight: 200;
    margin-bottom: 0px;
}

h1
{
    font-size: 1.8em;
    padding-bottom: 0px;
    margin-bottom: 0px;
    color: #000;
}

h2
{
    font-size: 1.5em;
    font-weight: 600;
}

h3
{
    font-size: 1.2em;
}

h4
{
    font-size: 1.1em;
}

h5, h6
{
    font-size: 1em;
}

/* this rule styles <h1> and <h2> tags that are the
first child of the left and right table columns */
.rightColumn > h1, .rightColumn > h2, .leftColumn > h1, .leftColumn > h2
{
    margin-top: 0px;
}

/* PRIMARY LAYOUT ELEMENTS
----------------------------------------------------------*/

.page
{
    background: #fff url('/Images/BottomBg.png') repeat-x 0 100%;
    border-bottom: 1px solid #666;
}

.header
{
    position: relative;
    margin: 0px;
    padding: 0px;
}
.content-width
{
    margin-right: auto;
    margin-left: auto;
    width: 800px;
}

.title
{
    display: inline-block;
    text-align: left;
    *display: inline;
    zoom:1;
}

.subtitle
{
    border-top: 1px solid #666;
    width: 800px;
    text-align: right;
    display: block;
}

.hidden
{
    display: none;
}

.title h1
{
    margin: 0px;
    padding: 5px 0 0 0;
    color: #000;
    border: none;
    font-size: 2em;
    display: block;
    color: #1c65aa;
}

.subtitle h2
{
    display: block;
    margin: 0px;
    padding: 0px;
    font-weight: 200;
    color: #1c65aa;
}

.logo
{
    display: inline-block;
    vertical-align: top;
    padding: 5px 0 0 0;
    height: 30px;
}

.logo2
{
    display: inline-block;
    vertical-align: top;
    padding: 5px 0 0 0; 
}

.header-seperator
{
    display: inline-block;
    vertical-align: top;
    padding: 5px 0 0 0;
    font-size: 1.6em;
}

.main
{
    min-height: 420px;
}

.leftCol
{
    padding: 6px 0px;
    margin: 12px 8px 8px 8px;
    width: 200px;
    min-height: 200px;
}

.footer, .footer a
{
    color: #666;
    padding: 8px 0px 0px 0px;
    margin: 0px auto;
    text-align: left;
    line-height: normal;
    text-decoration: none;
    vertical-align: top;
    font-size: 11px;
}

.footer a:hover
{
    color: #444;
}

.footer-padding
{
    padding: 0 40px 10px 0;
    margin: 0;
}

.footer-section
{
    display: -moz-inline-stack;
    display: inline-block;
    *display: inline;
    zoom: 1;
    text-align: left;
    vertical-align: top;
}

.footer-label
{
    font-weight: bold;
}

.footer-section li
{
    margin: 0;
    padding: 2px 0;
    display: block;
    *display: block;
    list-style-type: none;
    zoom: 1;
}

/* TAB MENU
----------------------------------------------------------*/

.topNav
{
    background: #fff;
}

div.hideSkiplink
{
    width: 100%;
}

div.menu-container
{
    background: url('/Images/TopBg.gif');
    width: 100%;
    height: 41px;
}

div.menu
{
    float: none !important;
    margin-top: .6em;
    margin-bottom: .4em;
    display: inline-block;
}

ul
{
    padding-left: 15px;
}

ul li
{
    padding-right: 5px;
    padding-bottom: 5px;
}

div.menu ul
{
    list-style: none;
    margin: 0px;
    padding: 0px;
    width: auto;
}

div.menu ul li
{
    display: inline;
}

div.menu ul li a, div.menu ul li a:visited
{
    color: #dde4ec;
    display: inline-block;
    line-height: 1.35em;
    padding: 4px 10px 4px 10px;
    text-decoration: none;
    white-space: nowrap;
}

div.menu ul li a:hover
{
    background-color: #427db7;
    text-decoration: none;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    -khtml-border-radius: 5px;
    border-radius: 5px;
}

div.menu ul li a:active
{
    background-color: #427db7;
    text-decoration: none;
}

div.message
{
    text-align: center;
    border: 1px solid black;
    padding: 5px;
    margin-right: 50px;
    margin-left: 40px;
    margin-bottom: 5px;
    margin-top: 5px;
}

/* FORM ELEMENTS
----------------------------------------------------------*/

fieldset
{
    margin: 1em 0px;
    padding: 1em;
    border: 1px solid #ccc;
}

fieldset p
{
    margin: 2px 12px 10px 10px;
}

fieldset.login label, fieldset.register label, fieldset.changePassword label
{
    display: block;
}

fieldset label.inline
{
    display: inline;
}

legend
{
    font-size: 1.1em;
    font-weight: 600;
    padding: 2px 4px 8px 4px;
}

input.textEntry, input.passwordEntry
{
    width: 200px ! important;
    border: 1px solid #ccc;
}

.aspNetDisabled
{
    border: 1px solid #999;
    background-color: #ddd;
}

div.accountInfo
{
    width: 42%;
}

/* MISC
----------------------------------------------------------*/

.clear
{
    clear: both;
}

.section
{

}

.section textarea
{
    width: 100%;
    height: 60px;
}

.seperator, .section-padding
{
    padding-left: 10px;
    padding-top: 10px;
    break-inside: avoid;
}

.seperator-big
{
    background: url('/Images/TopBG.gif') repeat-x center;
    color: #fff;
    vertical-align: middle;
    font-weight: 700;
    font-size: 15px;
    padding-top: 1px;
    padding-bottom: 1px;
    align:right;
    line-height: 100%;
    
    
}

.seperator
{
    background: url('/Images/Seperator.png') repeat-x;
    height: 20px;
    color: #fff;
    vertical-align: middle;
    font-weight: 700;
    font-size: 15px;
    padding-top: 1px;
    padding-bottom: 1px;
    align:right;
    margin-top: 15px;
}

.section-row
{
    display: table-row;
    padding: 0 0 5px 0;
}

.section-subsection
{
      
    display: table-cell;
    *display: inline; 
    zoom: 1;
    white-space: nowrap;
}

.section-row .section-tip
{
    display: block;
    font-size: .85em;
    color: #666;
    padding-top: 2px;
    padding-bottom: 4px;
}

.section-row label.large
{
    width: 250px;
}

.section-row label.second
{
    width: 100px;
}

.section-row label
{
    display: table-cell;
    *display: inline;
    zoom: 1;
    text-align: right;
    padding: 5px;
    white-space: nowrap;
    width: 175px;
    vertical-align: top;
}

.validation
{
    color: Red;
}

.selection-row validation
{
    display: table-cell;
}

.section-row > span
{
    display: table-cell; /*padding: 5px;*/
}

.notes, .section-notes
{
    font-style: italic;
    font-size: .85em;
}

.section-notes
{
    vertical-align: top;
    display: table-cell;
    *display: inline;
    zoom: 1;
    }

.fixed-width
{
    width: 200px;
    white-space: normal;
}

input[type=text], select, input[type=password]
{
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
	border: 1px inset #999;
	margin: 3px 0 3px 0;
	background: #fff url('/Images/TextGradient.png') repeat-x 0 100%;
}

input[disabled]
{
    background-image: none;
    background-color: #ddd;
}

select[multiple]
{
    background-image:none;
}

input[type=text]:focus
{
    -moz-box-shadow: 3px 3px 3px #666;
    -webkit-box-shadow: 3px 3px 3px #666;
    box-shadow: 3px 3px 3px #ddd;
}

input[type=text], input[type=submit], input[type=button], input[type=password]
{
    width: 200px;
    padding: 3px 5px 3px 5px;
    margin-right: 10px;
}
input[type=checkbox]
{
    padding: 5px;
    margin: 0 5px 5px 0;
}

table.label-table
{
    margin: 0;
    padding: 0;
}

table.label-table thead tr th
{
    padding: 10px;
}

table.label-table tbody tr td
{
    border-top: 1px solid black;
    border-left: 1px solid black;
    margin: 0;
    padding: 5px;
}

table.label-table tbody tr th
{
    width: 300px;
    font-size: inherit;
    font-style: inherit;
    font-weight: inherit;
    text-align: left;
    border-top: 1px solid black;
}

table.merchant-returns-table th, 
table.merchant-returns-table tr, 
table.merchant-returns-table td
{
    table-layout: fixed;
    word-break: break-all;
}

table.service-table
{
    width: 100%;
    border: 1px solid black;
}

table.service-table th
{
    background: #aaa;
    padding: 0 10px 0 10px;
    border: 1px solid black;
}

table.service-table tr td
{
    padding: 5px;
    margin: 5px;
    vertical-align: top;
    border: 1px solid black;
}

table.service-table tr td textarea
{
    width: 90%;
    height: 40px;
}

table.service-table .table-seperator
{
    padding: 0px;
    background: blue;
}

table.service-table tbody tr th
{
    background: none;
    font-size: inherit;
    font-style: inherit;
    font-weight: normal;
    text-align: left;
    border-top: 1px solid black;
}

.loginDisplay
{
    font-size: 1.1em;
    display: block;
    text-align: right;
    padding: 10px;
    color: White;
}

.loginDisplay a:link
{
    color: white;
}

.loginDisplay a:visited
{
    color: white;
}

.loginDisplay a:hover
{
    color: white;
}

.failureNotification
{
    font-size: 1.2em;
    color: Red;
}

.bold
{
    font-weight: bold;
}

.static-size
{
    width: 180px;
    display: inline;
    zoom: 1;
}

.static-value
{
    padding: 5px;
    font-weight: bold;
    display: inline;
    zoom: 1;
}

.submitButton
{
    text-align: right;
    padding-right: 10px;
}

/* Wizard Style
----------------------------------------------------------*/
.hideButton
{
    display: none;
}
.section-Header
{
    font-size:18.0pt;
    color : #2F6FA9;
}

.wizardButton {
	color: #d9eef7;
	font-weight : bold;
	
	border: solid 1px #0076a3;
	background: #0095cd;
	background: -webkit-gradient(linear, left top, left bottom, from(#00adee), to(#0078a5));
	background: -moz-linear-gradient(top,  #00adee,  #0078a5);
	filter:  progid:DXImageTransform.Microsoft.gradient(startColorstr='#00adee', endColorstr='#0078a5');
}
.wizardButton:hover {
	background: #007ead;
	background: -webkit-gradient(linear, left top, left bottom, from(#0095cc), to(#00678e));
	background: -moz-linear-gradient(top,  #0095cc,  #00678e);
	filter:  progid:DXImageTransform.Microsoft.gradient(startColorstr='#0095cc', endColorstr='#00678e');
}
.wizardButton:active {
	color: #80bed6;
	background: -webkit-gradient(linear, left top, left bottom, from(#0078a5), to(#00adee));
	background: -moz-linear-gradient(top,  #0078a5,  #00adee);
	filter:  progid:DXImageTransform.Microsoft.gradient(startColorstr='#0078a5', endColorstr='#00adee');
}
 



/* Report Page Styles
-----------------------------------------------------------*/
.reportPageListBox
{
    padding-left: 10px;
    padding-right: 10px;
    padding-bottom: 20px;
    display: inline-block;
    *display: inline;
    zoom: 1;
}

.reportPageHeader
{
    font-weight: bold;
    font-size: larger;
}

.reportPageDateText
{
    display: inline;
    vertical-align: bottom;
}
.addresOverride
{
    white-space : normal;
}
.navigationButton
{
        width: 200px;
    padding: 0px;
    margin-right: 10px;
}
.PrintOptions
{
     height: 30px;
     vertical-align : middle;
}
    
.button
{
	display: inline-block;
	zoom: 1; /* zoom and *display = ie7 hack for display:inline-block */
	*display: inline;
	vertical-align: baseline;
	margin: 0 2px;
	outline: none;
	cursor: pointer;
	text-align: center;
	text-decoration: none;
	font: 14px/100% Arial, Helvetica, sans-serif;
	padding: .5em 2em .55em;
	text-shadow: 0 1px 1px rgba(0,0,0,.3);
	-webkit-border-radius: .5em; 
	-moz-border-radius: .5em;
	border-radius: .5em;
	-webkit-box-shadow: 0 1px 2px rgba(0,0,0,.2);
	-moz-box-shadow: 0 1px 2px rgba(0,0,0,.2);
	box-shadow: 0 1px 2px rgba(0,0,0,.2);
	font-weight: bold;
	height: 22px;
}

.button:hover {
	text-decoration: none;
}

.button:active {
	position: relative;
	top: 1px;
}

.button.blue {
	color: #d9eef7;
	border: solid 1px #0076a3;
	background: #0095cd;
	background: -webkit-gradient(linear, left top, left bottom, from(#00adee), to(#0078a5));
	background: -moz-linear-gradient(top,  #00adee,  #0078a5);
	filter:  progid:DXImageTransform.Microsoft.gradient(startColorstr='#00adee', endColorstr='#0078a5');
}

.button.blue:hover {
	background: #007ead;
	background: -webkit-gradient(linear, left top, left bottom, from(#0095cc), to(#00678e));
	background: -moz-linear-gradient(top,  #0095cc,  #00678e);
	filter:  progid:DXImageTransform.Microsoft.gradient(startColorstr='#0095cc', endColorstr='#00678e');
}

.button.blue:active {
	color: #80bed6;
	background: -webkit-gradient(linear, left top, left bottom, from(#0078a5), to(#00adee));
	background: -moz-linear-gradient(top,  #0078a5,  #00adee);
	filter:  progid:DXImageTransform.Microsoft.gradient(startColorstr='#0078a5', endColorstr='#00adee');
}

.button.red 
{
    color: #fffbf9;
    border: solid 1px #c50503;
    background: #c50503; /* for non-css3 browsers */
    background: -webkit-gradient(linear, left top, left bottom, from(#ff8a50), to(#c30000)); /* For Webkit Browsers */
    background: -moz-linear-gradient(top, #ff8a50, #c30000); /* for Firefox */
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff8a50', endColorstr='#c30000'); /* for IE */
}

.button.red:hover {
    background: #c50503;
    background: -webkit-gradient(linear, left top, left bottom, from(#c30000), to(#ff8a50));
    background: -moz-linear-gradient(top, #c30000, #ff8a50);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#c30000', endColorstr='#ff8a50');
}
.button.red:active {
    border: solid 1px #ec3331;
    color: #f9baae;
    background: -webkit-gradient(linear, left top, left bottom, from(#dc3921), to(#ffb36a));
    background: -moz-linear-gradient(top, #dc3921, #ffb36a);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#dc3921', endColorstr='#ffb36a');
}

.button.green 
{
    color: #fffbf9;
    border: solid 1px #00c300;
    background: #05c503; /* for non-css3 browsers */
    background: -webkit-gradient(linear, left top, left bottom, from(#8aff50), to(#00c300)); /* For Webkit Browsers */
    background: -moz-linear-gradient(top, #8aff50, #00c300); /* for Firefox */
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#8aff50', endColorstr='#00c300'); /* for IE */
}

.button.green:hover {
    background: #05c503;
    background: -webkit-gradient(linear, left top, left bottom, from(#00c300), to(#8aff50));
    background: -moz-linear-gradient(top, #00c300, #8aff50);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00c300', endColorstr='#8aff50');
}
.button.green:active {
    border: solid 1px #33ec31;
    color: #baf9ae;
    background: -webkit-gradient(linear, left top, left bottom, from(#39dc21), to(#b3ff6a));
    background: -moz-linear-gradient(top, #39dc21, #b3ff6a);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#39dc21', endColorstr='#b3ff6a');
}

.graygradient 
{
    border: solid 1px #aaa;
    border-radius: 6px;
    color: #000;
    padding: 15px;
    margin-bottom: 20px;
    filter:  progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#e4e4e4');
    background: -webkit-gradient(linear, left top, left bottom, from(#ffffff), to(#e4e4e4));
    background: -moz-linear-gradient(top, #ffffff, #e4e4e4);
    background: -o-linear-gradient(top,  #ffffff, #e4e4e4); /* Opera 11.10+ */
    background: -ms-linear-gradient(top,  #ffffff, #e4e4e4); /* IE10+ */
    background: linear-gradient(top,  #ffffff, #e4e4e4); /* W3C */
    *background: #e5e5e5 url('/Images/BottomBg.png') repeat-x 0 0;
}