/* ## corrects possible view port issues in browsers that do not recognize the viewport meta tag ## */
/* http://timkadlec.com/2013/01/windows-phone-8-and-device-width/ */
@-webkit-viewport   { width: device-width; }
@-moz-viewport      { width: device-width; }
@-ms-viewport       { width: device-width; }
@-o-viewport        { width: device-width; }
@viewport           { width: device-width; }



/*! normalize.css v2.0.1 | MIT License | git.io/normalize */

/* ==========================================================================
   HTML5 display definitions
   ========================================================================== */

/*
 * Corrects `block` display not defined in IE 8/9.
 */

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
nav,
section,
summary {
    display: block;
}

/*
 * Corrects `inline-block` display not defined in IE 8/9.
 */

audio,
canvas,
video {
    display: inline-block;
}

/*
 * Prevents modern browsers from displaying `audio` without controls.
 * Remove excess height in iOS 5 devices.
 */

audio:not([controls]) {
    display: none;
    height: 0;
}

/*
 * Addresses styling for `hidden` attribute not present in IE 8/9.
 */

[hidden] {
    display: none;
}

/* ==========================================================================
   Base
   ========================================================================== */

/*
 * 1. Sets default font family to sans-serif.
 * 2. Prevents iOS text size adjust after orientation change, without disabling
 *    user zoom.
 */

html {
    font-family: sans-serif; /* 1 */
    -webkit-text-size-adjust: 100%; /* 2 */
    -ms-text-size-adjust: 100%; /* 2 */
}

/*
 * Removes default margin.
 */

body {
    margin: 0;
}

/* ==========================================================================
   Links
   ========================================================================== */

/*
 * Addresses `outline` inconsistency between Chrome and other browsers.
 */

a:focus {
    outline: thin dotted;
}

/*
 * Improves readability when focused and also mouse hovered in all browsers.
 */

a:active,
a:hover {
    outline: 0;
}

/* ==========================================================================
   Typography
   ========================================================================== */

/*
 * Addresses `h1` font sizes within `section` and `article` in Firefox 4+,
 * Safari 5, and Chrome.
 */

h1 {
    font-size: 2em;
}

/*
 * Addresses styling not present in IE 8/9, Safari 5, and Chrome.
 */

abbr[title] {
    border-bottom: 1px dotted;
}

/*
 * Addresses style set to `bolder` in Firefox 4+, Safari 5, and Chrome.
 */

b,
strong {
    font-weight: 600;
}

/*
 * Addresses styling not present in Safari 5 and Chrome.
 */

dfn {
    font-style: italic;
}

/*
 * Addresses styling not present in IE 8/9.
 */

mark {
    background: #ff0;
    color: #000;
}


/*
 * Corrects font family set oddly in Safari 5 and Chrome.
 */

code,
kbd,
pre,
samp {
    font-family: monospace, serif;
    font-size: 1em;
}

/*
 * Improves readability of pre-formatted text in all browsers.
 */

pre {
    white-space: pre;
    white-space: pre-wrap;
    word-wrap: break-word;
}

/*
 * Sets consistent quote types.
 */

q {
    quotes: "\201C" "\201D" "\2018" "\2019";
}

/*
 * Addresses inconsistent and variable font size in all browsers.
 */

small {
    font-size: 80%;
}

/*
 * Prevents `sub` and `sup` affecting `line-height` in all browsers.
 */

sub,
sup {
    font-size: 75%;
    line-height: 0;
    position: relative;
    vertical-align: baseline;
}

sup {
    top: -0.5em;
}

sub {
    bottom: -0.25em;
}

/* ==========================================================================
   Embedded content
   ========================================================================== */

/*
 * Removes border when inside `a` element in IE 8/9.
 */

img {
    border: 0;
}

/*
 * Corrects overflow displayed oddly in IE 9.
 */

svg:not(:root) {
    overflow: hidden;
}

/* ==========================================================================
   Figures
   ========================================================================== */

/*
 * Addresses margin not present in IE 8/9 and Safari 5.
 */

figure {
    margin: 0;
}

/* ==========================================================================
   Forms
   ========================================================================== */

/*
 * Define consistent border, margin, and padding.
 */

fieldset {
    border: 1px solid #c0c0c0;
    margin: 0 2px;
    padding: 0.35em 0.625em 0.75em;
}

/*
 * 1. Corrects color not being inherited in IE 8/9.
 * 2. Remove padding so people aren't caught out if they zero out fieldsets.
 */

legend {
    border: 0; /* 1 */
    padding: 0; /* 2 */
}

/*
 * 1. Corrects font family not being inherited in all browsers.
 * 2. Corrects font size not being inherited in all browsers.
 * 3. Addresses margins set differently in Firefox 4+, Safari 5, and Chrome
 */

button,
input,
select,
textarea {
    font-family: inherit; /* 1 */
    font-size: 100%; /* 2 */
    margin: 0; /* 3 */
}

/*
 * Addresses Firefox 4+ setting `line-height` on `input` using `!important` in
 * the UA stylesheet.
 */

button,
input {
    line-height: normal;
}

/*
 * 1. Avoid the WebKit bug in Android 4.0.* where (2) destroys native `audio`
 *    and `video` controls.
 * 2. Corrects inability to style clickable `input` types in iOS.
 * 3. Improves usability and consistency of cursor style between image-type
 *    `input` and others.
 */

button,
html input[type="button"], /* 1 */
input[type="reset"],
input[type="submit"] {
    -webkit-appearance: button; /* 2 */
    cursor: pointer; /* 3 */
}

/*
 * Re-set default cursor for disabled elements.
 */

button[disabled],
input[disabled] {
    cursor: default;
}

/*
 * 1. Addresses box sizing set to `content-box` in IE 8/9.
 * 2. Removes excess padding in IE 8/9.
 */

input[type="checkbox"],
input[type="radio"] {
    box-sizing: border-box; /* 1 */
    padding: 0; /* 2 */
}

/*
 * 1. Addresses `appearance` set to `searchfield` in Safari 5 and Chrome.
 * 2. Addresses `box-sizing` set to `border-box` in Safari 5 and Chrome
 *    (include `-moz` to future-proof).
 */

input[type="search"] {
    -webkit-appearance: textfield; /* 1 */
    -moz-box-sizing: content-box;
    -webkit-box-sizing: content-box; /* 2 */
    box-sizing: content-box;
}

/*
 * Removes inner padding and search cancel button in Safari 5 and Chrome
 * on OS X.
 */

input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
    -webkit-appearance: none;
}

/*
 * Removes inner padding and border in Firefox 4+.
 */

button::-moz-focus-inner,
input::-moz-focus-inner {
    border: 0;
    padding: 0;
}

/*
 * 1. Removes default vertical scrollbar in IE 8/9.
 * 2. Improves readability and alignment in all browsers.
 */

textarea {
    overflow: auto; /* 1 */
    vertical-align: top; /* 2 */
}

/* ==========================================================================
   Tables
   ========================================================================== */

/*
 * Remove most spacing between table cells.
 */

table {
    border-collapse: collapse;
    border-spacing: 0;
}


/* Default - 081711 */

html, body {font-family: "Trebuchet MS", Helvetica, sans-serif; color:#000;}
table, td {font-size: 1em;}
th {text-align:left; background-color:#eee;}
p {margin: 0 0 25px 0;}

input, select, textarea {font-size: 1em;}
form {display:inline;}
label,
#CT_Main_0_ctl14_lblField {vertical-align:middle; font-size: 0.813em;}
input[type='radio'], input[type='checkbox'] {vertical-align:middle; margin-right: 10px;}
img {margin:0; padding:0; border-style:none;}

input[disabled=true] {background-color: #F0F0F0;}
textarea[disabled=true] {background-color: #F0F0F0;}
select[disabled=true] {background-color: #F0F0F0;}
input[readonly=true] {background-color: #F0F0F0;}
textarea[readonly=true] {background-color: #F0F0F0;}
select[readonly=true] {background-color: #F0F0F0;}

.hide {display:none;}
.smallest {font-size: 0.650em;}
.smaller {font-size: 0.713em;}
.larger {font-size: 0.750em;}
.largest {font-size: 0.813em;}
.bold {font-weight:bold;}
.italic {font-style:italic;}
.strike {text-decoration:line-through;}

/* ## Text Color Helper Classes ## */
.red         { color:#f00 !important; }
.green     { color:#390  !important; }
.lgreen   { color:#97937d !important; }
.black     { color:#000 !important; }

.vtop {vertical-align:top;}
.center {text-align:center;}
.right {text-align:right;}
.nowrap {white-space:nowrap;}
.left {text-align:left;}
.breakforprint {page-break-after:always;}
.clear {display:block; clear:both; line-height:0; height:0; margin:0; padding:0; overflow:hidden; font-size: 0.063em;}
.skip {display:block; line-height:0; width:0px; height:0; margin:0; padding:0; text-indent:-9999em; overflow:hidden; font-size: 0.063em;}
img {margin:0; padding:0; border-style:none;}
.skipc {position: absolute; overflow: hidden; clip: rect(0 0 0 0); height: 1px; width: 1px; margin: -1px; padding: 0; border: 0;}
img {margin:0; padding:0; border-style:none;max-width:100% !important; height:auto !important; vertical-align: middle; }

/* ## Image replacement ## */
.ir { background-color: transparent; border: 0; overflow: hidden; /* IE 6/7 fallback */ *text-indent: -9999px; }
.ir:before { content: ""; display: block; width: 0; height: 100%; }

/* ## Hide from both screenreaders and browsers: h5bp.com/u ## */
.hidden { display: none !important; visibility: hidden; }

/* ## Hide only visually, but have it available for screenreaders: h5bp.com/v ## */
.visuallyHidden { border: 0; clip: rect(0 0 0 0); height: 1px; margin: -1px; overflow: hidden; padding: 0; position: absolute; width: 1px; }

/* ## Extends the .visuallyhidden class to allow the element to be focusable when navigated to via the keyboard: h5bp.com/p ## */
.visuallyHidden.focusable:active,
.visuallyHidden.focusable:focus { clip: auto; height: auto; margin: 0; overflow: visible; position: static; width: auto;}

/* ## Hide visually and from screenreaders, but maintain layout ## */
.invisible { visibility: hidden; }

/* ## Clearfix: contain floats
*
* For modern browsers
* 1. The space content is one way to avoid an Opera bug when the
* `contenteditable` attribute is included anywhere else in the document.
* Otherwise it causes space to appear at the top and bottom of elements
* that receive the `clearfix` class.
* 2. The use of `table` rather than `block` is only necessary if using
* `:before` to contain the top-margins of child elements.
## */
.clearfix:before,
.clearfix:after {
    content: " "; /* 1 */
    display: table; /* 2 */
}
.clearfix:after { clear: both; }
/* For IE 6/7 only Include this rule to trigger hasLayout and contain floats. */
.clearfix { *zoom: 1; }

a, a:link, a:visited {text-decoration:none; color:#248EBD; -webkit-transition: all 0.3s ease-in-out 0s; transition: all 0.3s ease-in-out 0s;}
a:hover {text-decoration: underline; color:#248EBD;}
a:active {text-decoration: underline; color:#248EBD;}
a:focus {outline: thin dotted;}

a.red, a.red:link, a.red:visited {color: #f00; text-decoration: underline;}
a.red:hover {color: #f00; text-decoration: none;}
a.red:active {color: #f00; text-decoration: underline;}


.bdr {border:1px solid #555244; padding:1px; background-color:#a7a496; }
.bdrtop {border-top:1px solid #999;}
.bdrright {border-right:1px solid #999;}
.bdrbottom {border-bottom:1px solid #999;}
.bdrleft {border-left:1px solid #999;}

/* Start Up Styles */
.colsp {font-size: 0.125em; padding:4px;}
.cblock10 {margin:10px;}
.cblock15 {margin:15px;}
.lnpad4 {padding-bottom:4px;}
.lnpad8 {padding-bottom:8px;}

/* Start Up Layout */
.mainbody {}
.mainbody-btm {}
.bdywrpr {}
.bdywrprIn {}
.hdrwrpr {}
.corwrpr {}
.corwrpr-int {}
.corwrpr-int-inn {}


.header {}
.header a.sitelogo,
.header a.sitelogo:link,
.header a.sitelogo:visited {font-family: "Open Sans Condensed"; font-size: 3.250em; text-transform: uppercase; color: #ffffff;}
.header a.sitelogo:hover,
.header a.sitelogo:focus {text-decoration: none;}

.SecNav {float:right; position:relative; color:#ffffff; font-size: 0.813em; padding: 0 10px 0 0;}
.SecNav p {margin:0; padding:0;}
.SecNav a {font-size:13px; color:#ffffff; text-decoration:none;}
.SecNav a:hover {text-decoration:underline;}
.SecNav span {margin: 0px 8px 0px 8px;}

.quicklinks-wrapper {}
.info-wrapper {}
.info-wrapper p {}
.logo-wrapper {}



.header .siteSearch {}
.header .siteSearch .input {}
.header .siteSearch .text {}
.header .siteSearch .imgBtn {}
.header .siteSearch .imgBtn:hover {}
.header .siteSearch label {}

.iWantTo {float:right; display:block; position:relative; width:330px; margin: 14px 0px 0px 0px;}
.iWantTo h2.hdr {float:left; display:block; position:relative; width:82px; height:15px; background:url('/cms/images/layout/iWantTo-hdr.png') no-repeat; cursor:pointer; margin: 4px 7px 0px 0px; padding:0px; text-indent:-999em;}
.iWantTo div.msrSelectAll {position:relative: margin: 0px 0px 0px 0px; height:30px;}
.iWantTo div.msrSelectAll select.msrSelect {
	position:relative;
	z-index:10;
	width:231px !important;
	height:21px !important;
	line-height:26px;
	font-size: 0.875em;
	color:#4a4949;
	cursor:pointer;
}
.iWantTo div.msrSelectAll span.msrSelect {
	position:absolute;
	margin: 0px 0px 0px -231px;
	width:231px;
	height:21px;
	font-size: 0.875em;
	line-height:20px;
	text-indent:10px;
	color:#4a4949;
	background:url(/cms/images/layout/msrSelect.gif) no-repeat 0 0;
	cursor:pointer;
	z-index:1;
}
.iWantTo div.msrSelectAll span.msrSelect option {font-size: 0.875em;}

.hdmsrSelectAll {float:right; display:block; position:relative; width:350px; margin: 6px 0px 8px 0px;}
.hdmsrSelectAll h2.hdr {float:left; display:block; position:relative; width:82px; height:15px; background:url('/cms/images/layout/iWantTo-hdr.png') no-repeat; cursor:pointer; margin: 4px 7px 0px 0px; padding:0px; text-indent:-999em;}
.hdmsrSelectAll .hdql {float:left; margin: 1px 5px 0px 0px; width:110px; text-align:right; font-size: 1em; color:#ffffff; font-weight:bold;}
.hdmsrSelectAll div.msrSelectAll {float:right; position:relative: margin: 0px 0px 0px 0px; height:30px;}
.hdmsrSelectAll div.msrSelectAll select.msrSelect {
	position:relative;
	z-index:10;
	width:231px !important;
	height:21px !important;
	line-height:26px;
	font-size: 0.875em;
	color:#4a4949;
	cursor:pointer;
}

.hdmsrSelectAll div.msrSelectAll span.msrSelect {
	position:absolute;
	margin: 0px 0px 0px -231px;
	width:231px;
	height:21px;
	font-size: 0.875em;
	line-height:20px;
	text-indent:10px;
	color:#4a4949;
	background:url(/cms/images/layout/msrSelect.gif) no-repeat 0 0;
	cursor:pointer;
	z-index:1;
	text-align:left;
}
.hdmsrSelectAll div.msrSelectAll span.msrSelect option {font-size: 0.875em;}

.BanListHome {}
.BanListHome .BanRect {}
.BanListHome .BanRect .hdr {}
.BanListHome .BanRect .hdr a {}
.BanListHome .BanRect .hdr a:hover {}

.bDiv {float:left; background: url(/cms/images/layout/bDiv.gif) no-repeat right center; width:1px; height:60px;}
.bDiv:last-child {background:none; display:none;}	

.ContWrprB {min-height:300px; border: 10px solid #083b52; background:#083b52; color:#ffffff;}
.ContWrprBIn {margin: 20px auto 0px auto; width:887px;}
.HLeft {}
.HRight {}

.HLeft .BnSqB {}
.HLeft .BnSqB .BnSqBIn {}
.HLeft .BnSqB .BnSqBIn p.bnr {}
.HLeft .BnSqB .BnSqBIn h2.hdr {}
.HLeft .BnSqB .BnSqBIn span.bnlnk {}
.HLeft .BnSqB .BnSqBIn span.bnlnk:hover {}
.HLeft .BnSqB .BnSqBIn:hover {}

.pageTools {width:140px; float:right; display:block; position:relative; height:8px; margin: 7px 13px 0px 0px; text-align:right;}
.pageTools a,
.pagetools a:link,
.pagetools a:visited {color:#ffffff; margin:0px 0px 0 0px; padding-right:2px; padding-top:2px; padding-bottom:5px; cursor:pointer;}
.pageTools a:hover,
.pagetools a:active {text-decoration:none;}
.pageTools a.print {font-size: 0.813em; text-decoration:underline; color:#ffffff; margin-right:5px; margin-top:-2px; line-height:22px;}
.pageTools a.print:link,
.pageTools a.print:visited {background:url(/cms/images/layout/icon_email.png) no-repeat right 6px; padding-top:-1px; padding-right:25px; float:left; display:block; text-decoration:none;}
.pageTools a.print:hover,
.pagetools a.print:active {text-decoration:underline;}
.pageTools a.email {font-size: 0.813em; text-decoration:underline; color:#ffffff; padding-right:0px; margin-top:-1px; line-height:24px;}
.pageTools a.email:link,
.pageTools a.email:visited {background:url(/cms/images/layout/icon_print.png) no-repeat right 4px; padding-top:0px; padding-right:23px; float:left; display:block;text-decoration:none; margin-right:7px;}
.pageTools a.email:hover,
.pagetools a.email:active {text-decoration:underline;}
.pageTools a.share {font-size: 0.813em; text-decoration:none; color:#ffffff; padding-right:21px; line-height:22px;}
.pageTools a.share:link,
.pageTools a.share:visited {float:left; display:block;text-decoration:none; margin-right:0px;}
.pageTools a.share:hover,
.pagetools a.share:active {text-decoration:underline;}
.pageTools .addthis_button_compact {background:url(/cms/images/layout/icon_share.png) no-repeat right 2px; padding-top:0px; padding-right:0px; float:left; display:block; text-decoration:none;}

.pageTools a.addthis_button {}
.pageTools a.addthis_button:active,
.pageTools a.addthis_button:hover {text-decoration:underline;}

.breadcrumbs {height:1%; font-size: 0.813em; font-weight:normal; text-decoration:none; color:#248ebd; font-family:"Trebuchet MS", Helvetica, sans-serif; margin: 22px 0px 0px 0px;}
.breadcrumbs a,
.breadcrumbs a:link,
.breadcrumbs a:visited {color:#231f20; text-decoration:none;}
.breadcrumbs a:hover {color:#231f20; text-decoration:underline;}
.breadcrumbs a:acitve {color:#231f20;}
.breadcrumbs span.seperator {font-weight:normal; margin-left:7px; margin-right:7px;color:#231f20;}

.ContWrprW {background:#ffffff; color:#231f20;}
.ILeft {background:#083b52; position: relative;}
.IRight { position: relative;}

.IRight .lRail {}
.IRight .rRail {margin: 15px 0px 0px 0px; line-height:18px;}
.IRight .lRail > p,
.IRight .rRail > p {font-size: 0.813em; line-height: 1.5em;}
.IRight .rRailOne {margin: 15px 0px 0px 0px;}

.OneRail {}
.OneRail .lRailOne {margin: 15px 0px 0px 0px;}

.IRight h1, .OneRail h1, .lRail h1 {margin: 10px 0px 15px 0px; padding:0px; color:#231f20; font-weight: 600; font-family: 'Open Sans', Arial, sans-serif; text-transform:none; line-height:32px;}
.IRight h2, .OneRail h2, .lRail h2 {margin: 10px 0px 15px 0px; padding:0px; color:#231f20; font-weight: 600; font-family: 'Open Sans', Arial, sans-serif; text-transform:none; line-height:32px;}
.IRight h3, .OneRail h3, .lRail h3 {margin: 10px 0px 15px 0px; padding:0px; color:#231f20; font-weight: 600; font-family: 'Open Sans', Arial, sans-serif; text-transform:none; line-height:32px;}
.IRight h4, .OneRail h4, .lRail h4 {margin: 10px 0px 15px 0px; padding:0px; color:#231f20; font-weight: 600; font-family: 'Open Sans', Arial, sans-serif; text-transform:none; line-height:25px;}
.IRight h5, .OneRail h5, .lRail h5 {margin: 10px 0px 15px 0px; padding:0px; color:#231f20; font-weight: 600; font-family: 'Open Sans', Arial, sans-serif; text-transform:none; line-height:20px;}

.ContWrprW .ILeft h1 {margin:0px;}
.ContWrprW .ILeft h2 {margin:0px;}
.ContWrprW .ILeft h3 {margin:0px;}
.ContWrprW .ILeft h4 {margin:0px;}
.ContWrprW .ILeft h5 {margin:0px;}
.ContWrprW .ILeft h6 {margin:0px;}

.IRight a, .OneRail a {color:#248ebd; text-decoration:none;
    -ms-word-break: break-all;
     word-break: break-all;
     /* Non standard for webkit */
     word-break: break-word;
    -webkit-hyphens: auto;
       -moz-hyphens: auto;
        -ms-hyphens: auto;
            hyphens: auto;
}
.IRight a:hover, .OneRail a:hover {text-decoration:underline;}

.pageHeading h1 { color:#1e896a; font-family: 'Open Sans', Arial, sans-serif; text-transform:uppercase; line-height:35px; background:url(/cms/images/layout/hdrud.png) repeat-x left bottom;}


/* print page */
body.printPg {color:#3F3F3F; background-color:#fff; font-size: 0.875em; margin: 0px 0px 0px 0px; padding: 0px 0px 0px 0px; line-height:22px;}
body.printPg .printBody {width:660px; margin: 0px auto; color:#3F3F3F;}
body.printPg .printHdrAll {float:left; width:660px; padding: 0px 0px 0px 0px;}
body.printPg .printHdrLogo {float:left; width:660px; padding: 0px 0px 0px 0px;}
body.printPg .printHdrLogo img {border: none; padding:0px;}
body.printPg .printContent {margin: 0px auto 30px auto; width:600px;}
body.printPg h1 {
	margin: 18px 0px 0px 0px; 
	padding: 5px 0px 18px 0px; 
	color:#1e896a; 
	font-weight:bold; 
	font-family: 'Open Sans', Arial, sans-serif; 
	font-size: 2.250em; 
	letter-spacing:-2px; 
	text-transform:uppercase; 
	background:url(/cms/images/layout/hdrud.png) repeat-x left bottom;
}
body.printPg h2 {margin: 10px 0px 15px 0px; padding:0px; color:#231f20; font-weight:bold; font-family: 'Open Sans', Arial, sans-serif; font-size: 1.625em; letter-spacing:-2px; text-transform:none; line-height:32px;}
body.printPg h3 {margin: 10px 0px 15px 0px; padding:0px; color:#231f20; font-weight:bold; font-family: 'Open Sans', Arial, sans-serif; font-size: 1.438em; letter-spacing:-2px; text-transform:none; line-height:32px;}
body.printPg h4 {margin: 10px 0px 15px 0px; padding:0px; color:#231f20; font-weight:bold; font-family: 'Open Sans', Arial, sans-serif; font-size: 1.313em; letter-spacing:-2px; text-transform:none; line-height:32px;}
body.printPg h5 {margin: 10px 0px 15px 0px; padding:0px; color:#231f20; font-weight:bold; font-family: 'Open Sans', Arial, sans-serif; font-size: 1.188em; letter-spacing:-2px; text-transform:none; line-height:32px;}
body.printPg a {color:#248ebd; text-decoration:none;}
body.printPg a:hover {text-decoration:underline;}
body.printPg p {margin: 15px 0px 5px 0px;}
body.printPg ul {font-size: 0.688em; margin-top:10px;}
body.printPg .printFtr {float:left; margin-top:10px; margin-bottom:0px; width:640px; padding: 16px 10px 0px 10px; border-top: 1px solid #e0e4e7; font-size: 0.688em; color:#8a8a8a; font-weight:normal; line-height:20px; text-align:center;}



.ftrwrprAll {position:relative; z-index:1;}
.ftrwrpr {}

.ftrwrpr a.ftrlogo,
.ftrwrpr a.ftrlogo:link,
.ftrwrpr a.ftrlogo:visited {display: inline-block; width:123px; height:145px; margin: 0; background:transparent url(/cms/images/layout/ftrlogo.png) no-repeat 0 0; text-indent:-9999em; overflow:hidden;}

.ftrwrpr .ftrLeft {}
.ftrwrpr .ftrLeft p {}
.ftrwrpr .ftrRight {}
.ftrwrpr .ftrRight .ftrlnk {}
.ftrwrpr .ftrRight .ftrlnk p {}
.ftrwrpr .ftrRight .ftrlnk a {font-size: 0.750em; color:#ffffff; text-decoration:none;}
.ftrwrpr .ftrRight .ftrlnk a:hover {text-decoration:underline;}
.ftrwrpr .ftrRight .ftrlnk span {margin: 0px 6px 0px 6px;}
.ftrwrpr .ftrRight .ftrsoc {display:block; position:relative; color:#ffffff; font-size: 0.750em; line-height:16px;}
.ftrwrpr .ftrRight .ftradd {display:block; position:relative; color:#ffffff; font-size: 0.750em; line-height:16px;}
.ftrsoc .ftrTwitter a, .ftrsoc .ftrFacebook a, .ftrsoc .ftrTwitter a, .ftrsoc .ftrShare a, .ftrsoc .ftrYouTube a {display:block; width:23px; height:23px;}
.ftrwrpr .ftrRight .ftrsoc .ftrFacebook {position:relative; width:23px; height:23px; background:url(/cms/images/layout/fb.png) no-repeat 0 0; text-indent:-99999em;}
.ftrsoc .ftrTwitter {position:relative; width:23px; height:23px; background:url(/cms/images/layout/tw.png) no-repeat 0 0; text-indent:-99999em;}
.ftrsoc .ftrShare {position:relative; width:23px; height:23px; background:url(/cms/images/layout/sh.png) no-repeat 0 0; text-indent:-99999em;}
.ftrsoc .ftrYouTube {position:relative; width:23px; height:23px; background:url(/cms/images/layout/yt.png) no-repeat 0 0; text-indent:-99999em;}
.ftrsoc .ftrInstagram {position:relative; width:23px; height:23px; background:url(/cms/images/layout/instagram.png) no-repeat 0 0; text-indent:-99999em;}


/* Left Nav */
.lnavwrpr {font-size: 0.750em; margin:0 10px 30px 10px; line-height:1.2em;}
.lnvgrphdg {font-size: 0.813em; font-weight:bold; margin:15px 0 8px 0;}

ul.lnav {padding:0; text-transform: normal; font-weight:normal; list-style-type:none; list-style-image: none; border-top: none;}
ul.lnav li {padding: 0px 0px 0px 0px; margin: 0; line-height:18px; list-style: none outside none; }
ul.lnav a, ul.lnav a:link, ul.lnav a:visited {font-family: 'Open Sans', Arial, sans-serif; color:#ffffff; text-decoration:none; line-height:1.23em; letter-spacing:0px; text-transform:uppercase; text-shadow: 1px 1px #000000;}
ul.lnav a span {font-size: 0.500em;}
ul.lnav a:hover, ul.lnav a {display:block; padding: 14px 13px 14px 13px;}
ul.lnav a:hover, ul.lnav a.on {background: #166588; color:#ffffff; padding: 14px 13px 14px 13px;}

ul.lnav ul {margin: 1px 0px 0px 0px; padding: 3px 0px 0px 0px; text-transform: normal; list-style-type:none; list-style-image: none;}
ul.lnav ul li {padding: 0px 0px 10px 17px; margin: 1px 0px 0px 0px; background:none; border-bottom: 1px solid #568398;}
ul.lnav ul a, ul.lnav ul a:link, ul.lnav ul a:visited {color:#ffffff; text-decoration:none; background:none; font-weight:normal; text-transform:none;}
ul.lnav ul a:hover, ul.lnav ul a { display:block; padding: 8px 0px 5px 0px; background:none;}
ul.lnav ul a:hover, ul.lnav ul a.on {color:#4bbff4; text-decoration:underline; background:none; }
ul.lnav ul a:hover, ul.lnav ul li a.on {color:#4bbff4; text-decoration:none; background:none; padding: 8px 0px 5px 0px;}

ul.lnav ul ul li {padding: 5px 5px 0 10px; border-bottom:none;}
ul.lnav ul ul li:last-child {padding-bottom:5px;}

ul.lnav ul ul {margin: 1px 0px 0px 0px; padding: 0px 0px 0px 0px; text-transform: normal; list-style-type:none; list-style-image: none; background: #0d4e6b;}
ul.lnav ul ul a:hover, ul.lnav ul ul a { display:block; padding: 4px 0px 0px 0px; background:none;}
ul.lnav ul ul a:hover, ul.lnav ul ul a.on {color:#4bbff4; text-decoration:underline; background:none; }
ul.lnav ul ul a:hover, ul.lnav ul ul li a.on {color:#4bbff4; text-decoration:none; background:none; padding: 4px 0px 0px 0px;}


/* Header Summary */

div.smrywrpr {text-align:right; padding:0 0 10px 0;}
div.smrywrpr a {text-decoration:none; margin:0 5px;}


/* Page Tools */

.tlswrpr {font-size: 0.563em; text-align:right; padding:0 10px 10px 0;}

/* Page Remote Bookmark */

.sharewrpr {text-align:right; padding:0 10px 10px 0;}


/* Mods Default */
.hdng {border-bottom:1px dotted #c4bca8; background:transparent url(/cms/images/filter-bg.gif) repeat-x; text-align:left; padding:6px 10px; margin-bottom:10px;}


/* .hdng {border-bottom:1px dotted #c4bca8; background:transparent url(/cms/images/filter-bg.gif) repeat-x; text-align:left; padding:6px 10px; margin-bottom:10px;} */
.hdng2 {font-size: 1em; font-weight:bold; color:#fff; background-color:#666; padding:3px 10px; margin:0 0 8px 0;}
.hdngbox {font-size: 1em; font-weight:bold; color:#fff; background-color:#999; padding:3px 10px; margin:0;}

/* ## Buttons Styles ## */
/* 
    <span class="btnWrapper btnAddToCart"><input class="btn" value="Add To Cart" /></span>
*/


.btnAlt {background-color:#C0CCE4;}
.btnAlt .btn{color:#000; background-color:#ECF0F6; border:1px solid #fff; text-align:center; text-decoration:none; cursor:pointer;}

.btnLarge .btn {padding:5px 10px; font-size: 1em;}

.btnFullWidth {display:block;}
.btnFullWidth .btn {display:block; padding-left:0; padding-right:0; }

.btncheckout {font-size: 0.875em; font-weight:bold; color:#c00; background-color:#fff; border:1px solid #c00; text-decoration:none; cursor:pointer;}
.btncheckout:hover {color:#000; border:1px solid #000;}

span.btnWrapper { display:inline-block; cursor:pointer; text-decoration:none; margin-right:10px; -webkit-border-radius: 5px; border-radius: 5px; }
span.btnWrapper a.btn, 
span.btnWrapper input.btn {
    background: #6aa2be; /* Old browsers */
    background: -moz-linear-gradient(top,  #6aa2be 0%, #4592bd 24%, #2683b4 53%, #237eac 90%, #195d80 100%); /* FF3.6+ */
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#6aa2be), color-stop(24%,#4592bd), color-stop(53%,#2683b4), color-stop(90%,#237eac), color-stop(100%,#195d80)); /* Chrome,Safari4+ */
    background: -webkit-linear-gradient(top,  #6aa2be 0%,#4592bd 24%,#2683b4 53%,#237eac 90%,#195d80 100%); /* Chrome10+,Safari5.1+ */
    background: -o-linear-gradient(top,  #6aa2be 0%,#4592bd 24%,#2683b4 53%,#237eac 90%,#195d80 100%); /* Opera 11.10+ */
    background: -ms-linear-gradient(top,  #6aa2be 0%,#4592bd 24%,#2683b4 53%,#237eac 90%,#195d80 100%); /* IE10+ */
    background: linear-gradient(to bottom,  #6aa2be 0%,#4592bd 24%,#2683b4 53%,#237eac 90%,#195d80 100%); /* W3C */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#6aa2be', endColorstr='#195d80',GradientType=0 ); /* IE6-9 */
    -webkit-border-radius: 5px;
    border-radius: 5px;
    border: 1px solid #195d80;
    display:block;
    padding:3px 9px 3px 10px; 
    text-decoration:none; 
    color:#fff; 
    cursor:pointer; 
    font-weight: 600; 
    font-family: 'Open Sans', Arial, sans-serif; 
	letter-spacing:0px; 
    text-transform:uppercase; 
    text-shadow: 1px 1px #154c69;
}
span.btnWrapper a.btn {}
span.btnWrapper:hover {}
span.btnWrapper a.btn:hover,
span.btnWrapper input.btn:hover {background: #2586b7;}

/* Banner Module */
.bannerWidget {position:relative; margin-bottom:5px; overflow:hidden; border:1px solid #e0dfdf;}
.bannerWidget .bwContent {z-index:0;}
.bannerWidget .nav {position:absolute; bottom:13px; left:16px; z-index:1;}
.bannerWidget .nav a,
.bannerWidget .nav a:link,
.bannerWidget .nav a:visited {float:left; display:inline; margin:0 8px 0 0; padding:1px; background:#fff; border:1px solid #1C4E87; text-decoration:none;}
.bannerWidget .nav a span,
.bannerWidget .nav a:link span,
.bannerWidget .nav a:visited span {display:block; padding:2px 4px;}
.bannerWidget .nav a.imgThumb img,
.bannerWidget .nav a.imgThumb:link img,
.bannerWidget .nav a.imgThumb:visited img {width:75px;}
.bannerWidget .nav a.indicator span,
.bannerWidget .nav a.indicator:link span,
.bannerWidget .nav a.indicator:visited span {display:block; width:8px; height:8px; padding:0; background:#fff; text-indent:-9999em; overflow:hidden;}
.bannerWidget .nav a.activeSlide span,
.bannerWidget .nav a.activeSlide:link span,
.bannerWidget .nav a.activeSlide:visited span {color:#fff; background:#1C4E87;}
.bannerWidget .nav a:focus {outline:none;}


/* GSI Form */
table.gsi_form {border:solid 4px rgb(30, 137, 106); padding:5px;border-radius: 10px;-moz-border-radius: 5px; -khtml-border-radius: 5px; -webkit-border- radius: 5px; color= rgb(0,0,0);font-size: 0.875em; FONT FACE="calibri"; text-align: left;}



/* Store */

div.paginate {font-size: 0.563em;}

div.thumbwrpr {width:770px; margin:10px auto;}
div.thumbwrpr a {width:140px; height:190px; float:left; font-size: 0.563em; text-align:center; border:1px solid #ccc; padding:10px; margin:5px 15px;}
div.thumbwrpr a:link, div.thumbwrpr a:visited {color:#01b; text-decoration:none;}
div.thumbwrpr a:hover {color:#666;  background-color:#eee; text-decoration:none;}
div.thumbwrpr a:active {color:#01b; text-decoration:none;}
div.thumbwrpr img {border-style:none; margin-bottom:6px;}

div.thumblgwrpr {width:770px; margin:10px auto;}
div.thumblgwrpr a {width:160px; height:190px; float:left; font-size: 0.563em; text-align:center; border:1px solid #ccc; padding:10px; margin:5px 15px;}
div.thumblgwrpr a:link, div.thumblgwrpr a:visited {color:#01b; text-decoration:none;}
div.thumblgwrpr a:hover {color:#666;  background-color:#eee; text-decoration:none;}
div.thumblgwrpr a:active {color:#01b; text-decoration:none;}
div.thumblgwrpr img {border-style:none; margin-bottom:8px;}

div.rcntvwwrpr {width:100%; margin:10px;}
div.rcntvwwrpr a {width:130px; height:150px; float:left; font-size: 0.563em; text-align:center; border:1px solid #ccc; padding:10px; margin:8px}
div.rcntvwwrpr a:link, div.rcntvwwrpr a:visited {color:#01b; text-decoration:none;}
div.rcntvwwrpr a:hover {color:#601;  background-color:#eee; text-decoration:none;}
div.rcntvwwrpr a:active {color:#01b; text-decoration:none;}
div.rcntvwwrpr img {width:100px; height:100px; border-style:none; margin-bottom:6px;}

div.reltdwrpr {width:100%; margin:10px 0;}
div.reltdwrpr a {width:130px; height:150px; float:left; font-size: 0.563em; text-align:center; border:1px solid #ccc; padding:10px; margin:8px;}
div.reltdwrpr a:link, div.reltdwrpr a:visited {color:#01b; text-decoration:none;}
div.reltdwrpr a:hover {color:#601;  background-color:#eee; text-decoration:none;}
div.reltdwrpr a:active {color:#01b; text-decoration:none;}
div.reltdwrpr img {width:100px; height:100px; border-style:none; margin-bottom:6px;}

table.carttbl {width:100%;}
table.carttbl td {padding:4px; vertical-align:top;}
table.carttbl th {padding:4px;}

div.stepswrpr {padding:10px;}
div.stepswrpr table {margin-left:auto;}

input.qtybox {width:25px; font-weight:bold; font-size: 0.750em; text-align:center;}

.promo {font-size: 0.750em; color:#ff0000; font-weight:bold; border-top:5px solid #eeeeee;}
.gift1 	{background-color:#dc0707;}
.gift2 	{background-color:#fdfbbe;}

.txtlimitbx {background-color:#dc0707;}
.txtlimitbx2 {background-color:#fdfbbe;}

.alternate	{background-color: #d6e3e9;}
.row		{background-color: #ffffff;}

/* Error Markers */

.fieldlbl {padding:4px 2px 0 0; text-align:right;}
.field {padding-left:2px;}
.fieldpad {padding-bottom:2px;}

.fieldtext {color:#000000;}
.fielderror {color:#cc0000;}
.fieldnorm {width:16px; height:20px;}
.fieldreq {width:16px; height:20px; background:transparent url(/cms/images/global/field-req.gif) no-repeat center right;}
 span.fieldreq {padding:0 6px; background-position:center center;}
 span.fieldnorm {padding:0 6px; background-position:center center;}
.fieldred {width:16px; height:20px; background:transparent url(/cms/images/global/field-error.gif) no-repeat center right;}
 span.fieldred {padding:0 6px; background-position:center center;}

/* Admin Edit */

.content {border:1px dashed #2b4487; padding:1px; margin:1px 1px 1px 1px;}
.contentregion {background:#b8cde7; color: #2b4487; border:1px solid #2b4487; padding:2px; margin:1px 0 1px 0;}
.contentheader {background:#dddddd; color:#000000; border:1px solid #2b4487; padding:2px; margin:1px 0 1px 0px; text-align:right;}
.contentedit {background:#f2faff; color:#000000; border:1px solid #2b4487; padding:2px;}
.contentbottom {background: #dddddd; color: #000000; border: 1px solid #2b4487; padding: 2px; margin:1px 0 1px 0;}
.contentsettings {background:#ffffff; color:#000000; border:1px solid #2b4487; padding:2px;}

/* AdminPublishing */
.notificationIcon {position: fixed; bottom:0px; right:0px;width: 16px; height: 16px; z-index:999999999; display: block;}

.rss {background:transparent url(/cms/images/icon-rss.gif) no-repeat 0% 50%; padding-left:15px;}
.acrobat {background:transparent url(/cms/images/icon-acrobat.gif) no-repeat 0% 50%; padding-left:15px;}
.print {background:transparent url(/cms/images/icon-print.gif) no-repeat 0% 50%; padding-left:15px;}
.email {background:transparent url(/cms/images/icon-email.gif) no-repeat 0% 50%; padding-left:15px;}
.pdf {background:transparent url(/cms/images/icon-pdf.gif) no-repeat 0% 0%; padding-left:15px; display:block;}
.pdf1 {background:transparent url(/cms/images/icon-pdf.gif) no-repeat 0% 0%; padding-left:15px;}

.inn {margin:10px auto; width:940px;margin-left:0px;}
.vd {padding:0 8px;}

.txt-links {position:absolute; top:11px; right:173px;}
.txt-links img {vertical-align:middle; float:left;}
.txt-links a, .txt-links a:link, .txt-links a:visited {color: #423f30; text-decoration: none; padding:5px; float:left;}
.txt-links a:hover {color: #423f30; text-decoration: none; background:transparent url(/cms/images/txt-links-bg.gif) repeat-x;}
.txt-links a:active {color: #423f30; text-decoration: none;}

.srch {position:absolute; top:10px; right:5px; text-align:right;}
/*.nav {width:523px; position:absolute; top:53px; right:0;}*/
.slideshow {position; width:620px; margin:20px 0 20px 21px;}

.info-box {position:relative; left:19px; width: 618px; height:106px; background:transparent url(/cms/images/info-bg.gif) no-repeat; margin-bottom:20px;}
.info-box .inn {position:absolute; top:30px; left:196px;  width: 412px; height:50px; overflow:hidden;}


.item {margin-bottom:10px;}
.dblitem {margin-bottom:20px;}
.dblmrg {margin-bottom:20px;}
.mrgleft {margin-left:10px;}

.time {font-weight:normal; font-size: 0.938em; font-family: Arial; color:#97937d; text-transform: uppercase; margin-right:5px;}

.photo {float:left; display:inline; width:78px;}
.descr {float:left; display:inline; width:640px; margin-left:20px; }

.hm-box {float:left; display:inline; width: 300px; margin-left:20px;}
.hm-box .date-cal {float:left; display:inline; height:37px; width:34px; overflow:hidden; background:transparent url(/cms/images/cal-bg.gif) no-repeat;}
.hm-box .month {font:normal 8px Arial; color:#fff; margin:0 0 0 2px; height:12px; overflow:hidden; }
.hm-box .day {font:bold 18px Arial; color:#625e53; text-align:center; margin:0 2px 0 0;}
.hm-box .descr {float:left; width:250px; margin-left:10px;}

.item a,.item a:link, .item a:visited {color: #423f30; text-decoration: none;}
.item a:hover {color: #423f30; text-decoration:underline;}
.item a:active {color: #423f30; text-decoration: none;}

.mod {width:260px; margin-bottom:20px; background:none;}
.mod h2 {padding:6px;}
.bar {margin-bottom:10px;}
.prem {float:right; }

.mod .descr {float:left; width:200px; margin-left:10px;}

.mod-center .date-cal {float:left; display:inline; height:37px; width:34px; overflow:hidden; background:transparent url(/cms/images/cal-bg.gif) no-repeat;}
.mod-center .month {font:normal 8px Arial; color:#fff; margin:0 0 0 2px; height:12px; overflow:hidden; }
.mod-center .day {font:bold 18px Arial; color:#625e53; text-align:center; margin:0 2px 0 0;}
.mod-center .descr {float:left; width:390px; margin-left:10px;}

.mod-xl .date-cal {float:left; display:inline; height:37px; width:34px; overflow:hidden; background:transparent url(/cms/images/cal-bg.gif) no-repeat;}
.mod-xl .month {font:normal 8px Arial; color:#fff; margin:0 0 0 2px; height:12px; overflow:hidden; }
.mod-xl .day {font:bold 18px Arial; color:#625e53; text-align:center; margin:0 2px 0 0;}
.mod-xl .descr {float:left; width:690px; margin-left:10px;}


.filter {background: #083B52; padding: 10px; margin-top:15px; margin-bottom:20px; border: 3px solid #1E896A;}
.filter-letters {float:left; margin-top:4px; }
.filter-letters a {margin: 0 2px;}

.filter label { color: #ffffff;}

table.datatbl {width:100%; margin-bottom:15px;}
table.datatbl th {border-bottom:1px dotted #c4bca8; background:transparent url(/cms/images/filter-bg.gif) repeat-x; text-align:left; padding:6px 15px;}
table.datatbl td {vertical-align:top; padding:6px 15px;}
table.datatbl a, table.datatbl a:link, table.datatbl  a:visited {font-weight:bold;}

#dhtmltooltip {background-color:#000; text-align:left; padding:8px; position:fixed; width:150px; border:3px solid #c3ba8f; visibility:hidden; z-index:100; filter:progid:DXImageTransform.Microsoft.Shadow(color=#999999,strength:5,direction=135);}

/* calendar summary */
.calendarDate {text-align:center;}
.today, .today td {background-color:#d0c8a4;text-align:center;}
.currday, .currday td {background-color:red;}
table.cal-sm {background-color:#f8f5e4; border-collapse:collapse; width:100%;margin-bottom:15px;}
table.cal-sm td {padding:4px 2px; border:1px solid #c3ba8f; color:#000;}
table.cal-sm th {text-align:center; padding:4px; font-weight:bold; border:1px solid #c3ba8f; background-color:#f8f5e4;}
table.cal-sm td.day {font-weight:bold;}
table.cal-sm a, table.cal-sm a:link, table.cal-sm a:visited {color: #000; text-decoration:underline;}
table.cal-sm a:hover {color: #000; text-decoration:none;}
table.cal-sm a:active {color: #000; text-decoration: underline;}


/* calendar list */
.todayList, .todayList td {background-color:#d0c8a4;}
table.cal-list {border-collapse:collapse;}
table.cal-list td {border:1px solid #c3ba8f; padding:12px; }
table.cal-list .alternate {padding:12px;}
table.cal-list td.listRailDate, .listRailDate {float:none; font:normal 11px Arial; color:#525042; text-transform: uppercase;vertical-align: middle;width:27%;}
table.cal-list td.listRailInfo, .listRailInfo {}
.listRailInfo ul {}


/* calendar month */

table.calendar_month {width:100%; border:1px solid #c3ba8f; border-collapse:collapse;}
table.calendar_month tr {vertical-align:top;}
table.calendar_month th {font-size: 0.750em; text-align:center; padding:6px; background-color:#cdc59f;}
table.calendar_month td.day {font-size: 0.750em; font-weight:bold; border:1px solid #c3ba8f;}
table.calendar_month th.cal-week {background:#cdc59f url(/cms/images/cal-week.gif) no-repeat center; vertical-align:middle;}

.calendar_numeral {color:#999; font-size: 0.875em; font-weight:bold;}
.calendar_day_empty {border:1px solid #c3ba8f; }
.calendar_day_empty, .calendar_day_event {width:14%; height:50px;}
.calendar_day_event {border:1px solid #c3ba8f; }

table.cal-sm a.grey,table.cal-sm a.grey:link,table.cal-sm a.grey:visited {color: #666666; text-decoration:none;}
table.cal-sm a.grey:hover {color: #666666; text-decoration: underline;}
table.cal-sm a.grey:active {color: #666666; text-decoration: none;}

table.thumbitemtbl {width:100%; margin-bottom:10px;}
table.thumbitemtbl td {vertical-align:top; padding:10px 15px;}

/* Photo Gallery */

table.pgtbllayout {width:733px; table-layout:fixed; }
table.pgtbllayout td {vertical-align:top;}
table.pgthmbtbl {width:324px;}
table.pgthmbtbl td {width:102px; text-align:center; vertical-align:middle; background-color:#f8f5e4;}
table.floatimghldr td {width:384px; height:288px; text-align:center; vertical-align:middle; background-color:#f8f5e4;}

.pglfttd {width:390px; height:380px;}
.pgrttd {height:380px;}
.pgimgwrpr {width:384px; height:374px; position:relative;}
.pgimg {top:3px; left:0; position:absolute;}
.pgenlrgbtn {position:absolute; top:262px; left:346px;}
.pgcptn {height:40px; background-color:#F2F8E6;}
.pgprvbtn {top:348px; left:6px; position:absolute;}
.pgnxtbtn {top:348px; right:6px; position:absolute;}
.pgcount {width:190px; top:352px; left:98px; position:absolute; text-align:center;}
.pgthmbscrl {width:343px; height:370px; overflow:auto;}

.wrp {position:relative;width:620px;}

.pagerwrpr a, .pagerwrpr a:link, .pagerwrpr a:visited {color: #423f30; text-decoration: none; margin: 0 2px;}
.pagerwrpr a:hover {color: #423f30; text-decoration:underline;}
.pagerwrpr a:active {color: #423f30; text-decoration: none;}
.pager { padding:7px 0; color:#000;}

/* video */

.player {width:512px; float:left; display:inline;}
.videodescr {width:200px; float: left;  display:inline; margin-left:20px; }
.cont {padding:0 10px;}

div.th {width:128px; border:1px solid #c3ba8f; padding:10px; margin-right:30px; margin-bottom:16px; float:left; }
div.th img, div.th-feat img {margin-bottom:5px;}
div.th a.ttl,div.th a.ttl:link, div.th a.ttl:visited {font:normal 13px Arial; height:18px; overflow:hidden; display:block; color:#660000; text-decoration: none;}
div.th a.ttl:hover {text-decoration: underline;}
div.th a.ttl:active {text-decoration: none;}



/* Shade Tabs */
.shadetabs {padding: 3px 0;margin-left: 0;margin-top: 1px;margin-bottom: 0;font: bold 12px Arial;list-style-type: none;text-align: left;}
.shadetabs li {display: inline;margin: 0;vertical-align:bottom;}
.shadetabs li a {text-decoration: none;position: relative;z-index: 1;padding: 3px 7px;margin-right: 0px;border: 1px solid #e2ddc7;color: #fff;background: #d2cbac url(/cms/images/shad-bg.gif) top left repeat-x;}
.shadetabs li a:visited {color: #2d2b2b;}
.shadetabs li a:hover {text-decoration: none;color: #660000;}
.shadetabs li a.selected {position: relative;bottom: -1px;}
.shadetabs li a.selected {color:#660000;background-image:none;background-color:#fff;font-size: 0.875em;padding-top:8px;border-bottom:2px solid #fff;}
.shadetabs li a.selected:hover {text-decoration: none;}
.tabcontent {display:none;}
@media print {
	.tabcontent {display:block !important;}
}
/* Shade Tabs End */

.mod .date-cal {background:transparent url(/cms/images/cal-bg.gif) no-repeat scroll 0 0;display:inline;float:left;height:37px;overflow:hidden;width:34px;}
.mod .month {-x-system-font:none;color:#FFFFFF;font-family:Arial;font-size: 0.500em;font-size-adjust:none;font-stretch:normal;font-style:normal;font-variant:normal;font-weight:normal;height:12px;line-height:normal;margin:0 0 0 2px;overflow:hidden;}
.mod .day {-x-system-font:none;color:#625E53;font-family:Arial;font-size: 1.125em;font-size-adjust:none;font-stretch:normal;font-style:normal;font-variant:normal;font-weight:bold;line-height:normal;margin:0 2px 0 0;text-align:center;}

/* Popup styles */
.PopupTitleBorder{	border-bottom: #d5d59d 1px solid;}
.PopupTitle {font-weight: bold; font-size: 14pt; color: #737357; background-color: #e3e3c7; padding: 3px 10px 3px 10px; cursor:move;}
.PopupTitle .closeButton {
	position: absolute;
	right: 0px;
	top: 0px;
	margin-top: 5px;
	margin-right: 10px;
	width: 20px;
	height: 20px;
	cursor: pointer;
	background-image: url(/cms/images/fck/sprites.png);
	background-repeat: no-repeat;
	background-position: -16px -651px;
}
.PopupTitle .closeButton{ cursor: hand; background-image: url(/cms/images/fck/sprites.gif);}
.PopupTitle .closeButton:hover { background-position: -16px -687px;}
.popupcontents { background-color: #f1f1e3; overflow: visible;z-index: 1;}

.tl, .tr, .tc, .bl, .br, .bc { position: absolute; background-image: url(/cms/images/fck/sprites.png); background-repeat: no-repeat; z-index: -1;}
* html .tl, * html .tr, * html .tc, * html .bl, * html .br, * html .bc { background-image: url(/cms/images/fck/sprites.gif);}
.ml, .mr { position: absolute; background-image: url(/cms/images/fck/dialog.sides.png); background-repeat: repeat-y;}
* html .ml, * html .mr { background-image: url(/cms/images/fck/dialog.sides.gif);}
.rtl .ml, .rtl .mr { position: absolute; background-image: url(/cms/images/fck/dialog.sides.rtl.png); background-repeat: repeat-y;}
* html .rtl .ml, * html .rtl .mr { background-image: url(/cms/images/fck/dialog.sides.gif);}
.tl { top: -2px; left: -16px; width: 16px; height: 16px; background-position: -16px -16px;}
.rtl .tl { background-position: -16px -397px;}
.tr {top: -2px; right: -16px;  width: 16px; height: 16px; background-position: -16px -76px;}
.rtl .tr { background-position: -16px -457px;}
.tc { top: -2px; right: 0px; left: 0px; height: 16px; background-position: 0px -136px; background-repeat: repeat-x;}
.ml { top: 14px; left: -16px; width: 16px; bottom: 31px; background-position: 0px 0px;}
.mr {top: 14px; right: -16px; width: 16px; bottom: 31px; background-position: -16px 0px;}
.bl {bottom: -20px; left: -16px; width: 30px; height: 51px; background-position: -16px -196px;}
.rtl .bl { background-position: -16px -517px;}
.br { bottom: -20px; right: -16px; width: 30px; height: 51px; background-position: -16px -263px; }
.rtl .br { background-position: -16px -584px;}
.bc { bottom: -20px; right: 14px; left: 14px; height: 51px; background-position: 0px -330px; background-repeat: repeat-x;}

.job_th { 
	-x-system-font:none;
	background:transparent url(/cms/images/filter-bg.gif) repeat-x scroll 0 0;
	border-bottom:1px dotted #C4BCA8; 
	font-size: 0.813em; 
	font-size-adjust:none; 
	font-stretch:normal; 
	font-style:normal; 
	font-variant:normal; 
	font-weight:bold; 
	line-height:normal; 
	padding:6px 15px; 
	text-align:left;
}


/* cms */
.contentregion {background: #B8CDE7; color: #2B4487; border: 1px solid #2B4487; padding: 2px; margin: 1 0 1 0;}
.contentbottom {background: #DDDDDD; color: #000000; border: 1px solid #2B4487; padding: 2px; margin: 1 0 1 0;}

div.cmsregion {border-color:#f00;}
div.cmsselector tr.hdr td, div.cmsselectorhover tr.hdr td {background-color:#e792e4; border-color:#00f;}
div.cmsselector table, div.cmsselectorhover table {background-color:#fc6; border-color:#00f;}

/* set colors for sub region outline and control box */

div.cmssubregion {border-color:#00f;}
div.cmssubselector tr.hdr td, div.cmssubselectorhover tr.hdr td {background-color:#fc6; border-color:#f00;}
div.cmssubselector table, div.cmssubselectorhover table {background-color:#fc6; border-color:#f00;}

/* cms preview default styles  --------------------------------------   */
div.cmsmarker {position:relative; z-index:2000;}
div.cmsregion {top:0px; left:0px; position:absolute; border-width:1px; border-style:dashed;}

div.cmsselector, div.cmsselectorhover {width:180px; top:1px; left:1px; position:absolute; overflow:visible;}
div.cmsselector table, div.cmsselectorhover table {width:100%; border-width:1px; border-style:solid; border-collapse:collapse; opacity:0.9; -moz-opacity:0.9; filter:alpha(opacity=90);}
div.cmsselector td, div.cmsselectorhover td {vertical-align:top; font-size: 0.688em; color:#000; padding:2px 4px; border-bottom-width:1px; border-bottom-style:solid;}

div.cmsselector {visibility:hidden; z-index:3000;}
div.cmsselectorhover {visibility:visible;}

div.cmssubmarker {position:relative; min-height:30px;}
div.cmssubregion {top:1px; left:1px; position:absolute; border-width:1px; border-style:dashed; margin:1px;}

div.cmssubselector, div.cmssubselectorhover {width:176px; top:4px; left:5px; position:absolute; overflow:visible;}
div.cmssubselector table, div.cmssubselectorhover table {width:100%; border-width:1px; border-style:solid; border-collapse:collapse; opacity:0.9; -moz-opacity:0.9; filter:alpha(opacity=90);}
div.cmssubselector td, div.cmssubselectorhover td {vertical-align:top; font-size: 0.688em; color:#000; padding:2px 4px; border-bottom-width:1px; border-bottom-style:solid;}

div.cmssubselector {visibility:hidden; z-index:4000;}
div.cmssubselectorhover {visibility:visible;}

.spacer {display:block; clear:both; line-height:0; height:0; margin:0; padding:0; overflow:hidden; font-size: 0.063em;}

.AETabHeader {padding:8px; background:url(/cms/images/admin/info_bg.gif) #FFE7A2 repeat-x; border-bottom:solid 2px #FFBE6B; line-height:1.4em; font-size: 0.688em;}
.invisibile {visibility:hidden;}

/* Smart Bug */

.smartbug ul { list-style-type:none; background-color:#ccc; font-size: 0.625em; border-left:1px solid #000; border-right:1px solid #000; border-top:1px solid #000; padding:0px;}
.smartbug li {border-bottom:1px solid #000;}
.smartbug a,
.smartbug a:link,
.smartbug a:visited { text-decoration:none; display:block; color:#000; padding:5px;}
.smartbug a:hover { background-color:#999; text-decoration:underline;}

a.all {white-space:nowrap;}
a.all:active {color: #003300; text-decoration: underline;}

.mrg20b {margin-bottom:20px;}
.mrg10b {margin-bottom:10px;}
.bdr {border:1px solid #1E896A; padding:3px; background-color:#fff; }
.time {color:#587d58; margin-right:10px;}

.alert {float:left; margin: 5px 20px 5px 0px; clear: left;  background: #ffffff; border: 3px solid #1E896A; color:#484B51; padding:10px; overflow:hidden; width:97%;}
.alert a {color:#015EA1; text-decoration:none;}
.alert a:hover {text-decoration:underline;}
.alertleft {float:left; display:block; position:relative; width:6%; margin-top:10px; text-align:center;}
.alertright {float:left; display:block; position:relative; width:92%; margin-top:10px; line-height:19px;}
.alertright span {font-size: 0.625em; font-weight:bold; color:#248EBD; line-height:19px;}
.mod {background:none; padding:10px 10px; color:#fff; }
.mod h4 a {color:#000;}


/* Email a Friend Styles */

.eaf_wrpr {width:640px; padding:0px; margin:0 auto; line-height:22px;}
.eaf_wrpr .red {padding:0 0 0 8px; background: url(/cms/images/global/field-req-star.gif) no-repeat 0px 2px;}
.eaf_wrpr .accountBlocks {position:relative; width:620px; min-height:1px; margin:0px 0 5px 15px; border:none; font-size: 0.875em;}
.eaf_logo {border-bottom: none; margin-bottom:25px; padding-bottom:10px;}
.eaf_HdrLogo  {float:left; width:640px; padding: 7px 0px 0px 0px;}
.eaf_HdrPhone {float:right; width:200px; margin: 35px 0px 0px 0px; text-align:right; font-size: 1.063em; color:#4A62A8; line-height:22px;}
.eaf_wrpr .accountBlocks .inner {padding:0px 0px 10px 0px; }
.eaf_wrpr .accountBlocks .blockhdng {
	position:absolute;  
	top:-14px; 
	left:0px; 
	padding:3px 0px; 
	margin:0; 
	background-color:#fff; 
	background-position:50% 50%; 
	color:#1e896a; 
	font-weight:bold; 
	font-family: 'Open Sans', Arial, sans-serif; 
	font-size: 1.250em; 
	letter-spacing:0px; 
	text-transform:uppercase;
}
.eaf_wrpr .accountBlocks label {font-weight:normal; color:#696667; font-size: 0.750em;}
.eaf_wrpr .accountBlocks .lnnum {font-size: 1.125em; color:#1e896a; font-weight:bold;}

#divAddMore a,
#divAddMoreNo a {color:#1E896A; font-size: 0.750em; font-weight:bold;}

.eaf_wrpr .eafRequired {float:right; padding: 0px 20px 0px 0px; font-size: 0.813em;}
.eaf_wrpr .floatLeft {float:left; display:inline;}
.eaf_wrpr .floatRight {float:right; display:inline;}
.eaf_wrpr .multiColumn {}
.eaf_wrpr .multiColumn .halfColumn {float:left; display:inline; width:45%;}
.eaf_wrpr .multiColumn .rightColumn {float:right;}
.eaf_wrpr .accountLogin {background:url(/cms/images/global/lbl-or.gif) no-repeat center 45%;}
.eaf_wrpr .accountLogin .halfColumn {width:46%;}
.eaf_wrpr .accountBlocks .cartwrpr  {margin:0; padding:0;}
.eaf_wrpr .accountBlocks .multipleShips {border-bottom:0; padding:0; margin:0;}

.formRow {margin:0 0 8px 0;}
.formRow label {display:inline-block; margin:0 0 2px 0;}
.formRow input.text {width:210px; margin:0 0 7px 0;}

.eaf_wrpr .formRow input.text {width:210px; margin:0 0 0px 0;}

.formRow input.full {width:93%;}
.formRow .req, .formRow .fieldreq {padding:0 0 0 8px; background: url(/cms/images/global/field-req-star.gif) no-repeat 0px 2px;}
.formRow .red {padding:0 0 0 12px; background-position:0 2px;}
.formRow .error, .formRow .fieldred {padding:0 0 0 12px; background-position:0 2px;}
.forms fieldset {margin:0; border:0; padding:0;}
.formRow .formLabel {display:block; font-weight:normal;}
.formsColumn .formRow .formLabel {float:left; display:inline; width:110px; margin-right:10px;}

.multiCol .colWrap {float:left; display:inline;}
.multiCol2 .colWrap {width:48%;}
.multiCol .ratio35	{width:34%;}
.multiCol .ratio40	{width:39%;}
.multiCol .ratio60	{width:59%;}
.multiCol .ratio65	{width:64%;}

.eaf_req {padding-right:8px; font-weight:bold; background:url(/cms/images/global/field-req-star.gif) no-repeat 0px 0px;}
.eaf_red {padding-right:8px; font-weight:bold; color:#f00; background:url(/cms/images/global/field-req-star.gif) no-repeat 0px 0px;}
.eaf_help {font-size: 0.563em; color: #999;}

.emailFtr {float:left; margin-top:10px; margin-bottom:0px; width:640px; padding: 16px 0px 0px 0px; border-top: 1px solid #e0e4e7; font-size: 0.688em; color:#8a8a8a; font-weight:normal; line-height:20px; text-align:center;}
.emailFtr b.pl {color:#00477a; font-size: 0.813em;}

/*Photo Gallery Styles */

.mod_landing_gal {  }
.mod_landing_gal ul li { margin-top: 5px; float: left; display: inline; overflow: hidden; margin-left:27px;text-align:center;margin-bottom:10px;}
.mod_landing_gal ul li img { padding: 3px; border: 1px solid #e9e5cf; }

#demotip { display:none; background:transparent url(/tools/img/tooltip/black_arrow.png); font-size: 0.750em; height:70px; width:160px; padding:25px; color:#fff;}

/* Tooltip Classes */
.toolTipWrpr {display:none;width:340px;z-index:99;}
.toolTipShadow {background: url(/cms/images/core/tooltipbacktop.png) no-repeat top left;padding: 10px 13px 1px 13px;color:#666666;}
.toolTopShadowBottom {background: url(/cms/images/core/tooltipbackbottom.png) no-repeat top left;width:340px;height:16px;}
.toolTipDate {font-size: 0.688em;color:#999999;font-weight:bold;}
.toolTipName {font-size: 0.875em;color:#666666;font-weight:bold;margin-bottom:14px;}
/* End Tooltip Classes */

/* Begin Comments styles */
div.submitcommentswrpr {display: none;border: 1px solid white;}

/* Begin Commenting styles */
.cmt_nav {position:relative; width:650px; min-height:1px; text-align:center; background:#fff; z-index:100; padding:0;}
.cmt_nav ul {margin:0; padding:0;}
.cmt_nav li {float:left; list-style-type:none; width: 150px; padding:0px; margin: 0px -1px -1px 0px; border:solid 1px #c0dcf1; border-bottom: none;}
.cmt_nav a, .cmt_nav a:link, .cmt_nav a:visited {padding:0px 0 0px 7px; font-size: 0.750em; display:block; color:#2777d1; height:38px; text-transform:uppercase;}
.cmt_nav span {padding: 15px 9px 15px 3px;  font-size: 0.750em; display:block; color:#2777d1; text-transform:uppercase;}
.cmt_nav span:hover {background-color:#ebf2f8; cursor:pointer;}

/* Commenting Box */
.cmt_box { min-height:340px; width:648px; position:relative; border:solid 1px #c0dcf1; clear:both; background:#ebf2f8; padding-bottom:12px; overflow: hidden; }
.cmt_box h2 {margin-left:10px; }
.cmt_box h4 {font-size: 1.3em; font-weight:normal; color:#acc3da; padding:0; margin:0; }
.cmt_box strong {color:#000; }

.cmt_read { position:absolute; z-index:999999; top:999px;  }
.cmt_read_inner { min-height: 300px;}
.cmt_leave { position:absolute; z-index:99999;  top:0; }
.cmt_field { margin-top:10px; margin-left:8px; float:left;}
.cmt_name { width:140px; float:left; }
.cmt_name p { float:left; margin-left:15px; }

.cmt_textwrp { width:630px; }
.cmt_text { border:1px solid #b0d8f2; background:#fff; width:415px; margin:5px 0 0 163px; padding:10px 20px 10px 20px; height:42px; overflow: auto; overflow-x: hidden; }

/* End Commenting styles */

/* jQuery.Rating Plugin CSS - http://www.fyneworks.com/jquery/star-rating/ */
div.rating-cancel,div.star-rating{float:left;width:17px;height:15px;text-indent:-999em;cursor:pointer;display:block;background:transparent;overflow:hidden}
div.rating-cancel,div.rating-cancel a{background:url(/cms/images/delete.gif) no-repeat 0 -16px}
div.star-rating,div.star-rating a{background:url(/cms/images/star.gif) no-repeat 0 0px}
div.rating-cancel a,div.star-rating a{display:block;width:16px;height:100%;background-position:0 0px;border:0}
div.star-rating-on a{background-position:0 -16px!important}
div.star-rating-hover a{background-position:0 -32px}
/* Read Only CSS */
div.star-rating-readonly a{cursor:default !important}
/* Partial Star CSS */
div.star-rating{background:transparent!important;overflow:hidden!important}
/* END jQuery.Rating Plugin CSS */

.sortStatus {font-size: 0.813em;}

.paging {margin-bottom:15px;}

/* Generic Pager */
.genericPager {}
.genericPager ul {list-style-type: none; margin:0; padding:0;}
.genericPager li {float:left; display:block; font-size: 0.688em; margin:0 5px 5px 0;}
.genericPager li:last-child {margin-right:0px;}
.genericPager li a {float:left; color:#003871; padding:5px 10px; border:1px solid #1E896A;text-decoration:none;}
.genericPager li a:hover {
	color:#ffffff; 
	background: #1e70a0; /* Old browsers */
	background: -moz-linear-gradient(-45deg,  #1e70a0 0%, #1e896a 100%); /* FF3.6+ */
	background: -webkit-gradient(linear, left top, right bottom, color-stop(0%,#1e70a0), color-stop(100%,#1e896a)); /* Chrome,Safari4+ */
	background: -webkit-linear-gradient(-45deg,  #1e70a0 0%,#1e896a 100%); /* Chrome10+,Safari5.1+ */
	background: -o-linear-gradient(-45deg,  #1e70a0 0%,#1e896a 100%); /* Opera 11.10+ */
	background: -ms-linear-gradient(-45deg,  #1e70a0 0%,#1e896a 100%); /* IE10+ */
	background: linear-gradient(135deg,  #1e70a0 0%,#1e896a 100%); /* W3C */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#1e70a0', endColorstr='#1e896a',GradientType=1 ); /* IE6-9 fallback on horizontal gradient */
	border: 1px solid #003871;
	text-decoration:none;
}
.genericPager li.nolink {color:#ccc; border:1px solid #1E896A; padding:0px 10px;}
.genericPager li.active {
	color:#fff; 
	border:1px solid #1E896A; 
	padding:5px 10px; 
	background: #1e70a0; /* Old browsers */
	background: -moz-linear-gradient(-45deg,  #1e70a0 0%, #1e896a 100%); /* FF3.6+ */
	background: -webkit-gradient(linear, left top, right bottom, color-stop(0%,#1e70a0), color-stop(100%,#1e896a)); /* Chrome,Safari4+ */
	background: -webkit-linear-gradient(-45deg,  #1e70a0 0%,#1e896a 100%); /* Chrome10+,Safari5.1+ */
	background: -o-linear-gradient(-45deg,  #1e70a0 0%,#1e896a 100%); /* Opera 11.10+ */
	background: -ms-linear-gradient(-45deg,  #1e70a0 0%,#1e896a 100%); /* IE10+ */
	background: linear-gradient(135deg,  #1e70a0 0%,#1e896a 100%); /* W3C */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#1e70a0', endColorstr='#1e896a',GradientType=1 ); /* IE6-9 fallback on horizontal gradient */
}

/* Asset Manager */
.assetPickerNoAsset p{ margin: 10px 5px; font-size: 0.9em; }
.assetUploadLog { padding: 0; margin: 0 0 10px 0; width: 300px; overflow: auto; max-height: 300px; }
.assetUploadLog .progressbar{ border: 1px solid #333; height: 2px; background: #fff; }
.assetUploadLog .progress{ background: #999; width: 0%; height: 2px; }
.assetUploadLog .progresstext { font-size: 0.750em; }
.assetflashUploadTable { }
.assetflashUploadTable td { color: #003333; margin: 0; padding: 0; font-family: Arial,Verdana,Geneva,sans-serif; font-size: 0.750em; vertical-align: top; }
.assetPicker a { cursor: pointer; }
.assetPickerHide { position: absolute; top: -1000px; left: -1000px; }
.assetDetailInvalid { color: #f00; }


.errorMessageWrap { margin:10px 0; width:100%; }
.errorMessage { border:1px solid #ff0000; padding:10px; background-color:#ffff99; }
.errorHeader { float:left; width: 40px; }
.errorHeader h2 { display:block; padding:6px 0 0; width:24px; height:24px; text-indent:-9999em; background:url(/cms/images/exclam.gif) no-repeat 0 0; }
.errors { float: left; max-width:92%; }
.errors h3 { margin-bottom:4px; font-weight:bold; color:red; font-size: 1em; }
.errors ul { margin:0; }
.errors li { color: red; font-family: Arial,Verdana,Geneva,sans-serif; }
.errors li span { color:#000; }

/* Master Overlay Control */
/* overlay default */
.siteOverlay {
	display:none; 
	position:relative; 
	width:550px; 
	min-height:1px; 
	background-color:#fff; 
	z-index:1000; 
	-moz-border-radius:5px; 
	-webkit-border-radius:5px; 
	border-radius:5px; 
	-moz-box-shadow:0 0 15px #333; 
	-webkit-box-shadow:0 0 15px #333; 
	box-shadow:0 0 15px #333; 
}
.siteOverlay .overlayBar {padding:7px 10px; text-align:right; border-bottom:1px solid #e6e6e6;}
.siteOverlay .overlayClose {
	display:inline-block; 
	height:19px; 
	padding-right:28px; 
	line-height:19px; 
	color:#707070; 
	text-transform:uppercase; 
	font-weight:bold; 
	font-size: 0.625em; 
	background:url(/cms/images/layout/icon_x.gif) no-repeat 100% 0; 
	cursor:pointer; 
	z-index:5;
}
.siteOverlay .overlayContent {padding:15px;}

.autocomplete {z-index:99999999;}

/* NEW Limit Text Box */
.limitTextBox {}
.limitTextBox span {display: none;}
.limitTextBoxBar { width:100%;}
.limitTextBoxBarWrpr { width:100%; border:0px solid #000; overflow:hidden; font-size: 0.563em; color:#000; white-space:nowrap; height:5px; background-color:#FDFBBE;}
.limitTextBoxBarInner { width:0%; background-color:#FF0000;}
.limitTextBoxInputWrpr { display: table-cell; width: 100%; vertical-align: top;}
.limitTextBoxInputWrpr textarea { box-sizing: border-box; vertical-align: top;}
.limitTextBoxSpellWrpr { display: table-cell; padding-left: 5px; vertical-align: top;}

.InterRaildocumentsSummaryWrpr {position:relative; margin-top:0px;}
.InterRaildocumentsSummaryWrpr a.mlnk {display:block; color:#248ebd; font-weight:bold; font-size: 0.750em; text-decoration:none; font-family: "Trebuchet MS", Helvetica, sans-serif; text-align:right; letter-spacing:-1px;}
.InterRaildocumentsSummaryWrpr a.mlnk:hover {text-decoration:underline;}
.rRail .InterRaildocumentsSummaryWrpr h3 {margin: 0px 0px 0px 0px; padding: 0px 0px 5px 0px; text-transform: uppercase; font-size: 1.250em; font-family: 'Open Sans', Arial, sans-serif; letter-spacing:-1px; color:#1e896a;}
.IRail .InterRaildocumentsSummaryWrpr h3 { font-size: 1.250em;}
.InterRaildocumentsSummaryBackgroundWrpr {background:url(/cms/images/layout/hdrud.png) repeat-x left top; padding-top:18px; width:100%;}
.InterRaildocumentsSummaryImage {float:left; margin-right:0px; border:none; border-radius:3px;}
.InterRaildocumentsSummaryImage img {margin-right:12px;}
.InterRaildocumentsSummaryDesc { border-bottom: none; margin: -3px 0px 0px 0px; padding: 0px 0px 10px;}
.InterRaildocumentsSummaryViewAll {text-align:right; float:right; padding:8px 0px 0px 0px;}
.InterRaildocumentsSummaryDesc p.smaller {font-size: 0.813em; font-weight:bold; font-family: "Trebuchet MS", Helvetica, sans-serif; color:#1e896a; margin: 0px 0px 0px 0px; padding: 0px 0px 0px 0px;}
.InterRaildocumentsSummaryDesc p {font-size: 0.813em; font-weight:normal; font-family: "Trebuchet MS", Helvetica, sans-serif; color:#231f20; margin: 0px 0px 0px 0px; padding: 0px 0px 0px 0px; line-height:18px;}
.InterRaildocumentsSummaryDesc p a {font-size: 1.125em; font-weight:bold; font-family: "Trebuchet MS", Helvetica, sans-serif; color:#248ebd; margin: 0px 0px 0px 0px; padding: 0px 0px 0px 0px; text-decoration:none;}
.InterRaildocumentsSummaryDesc p a:hover {text-decoration:underline;}	

.ILeft .BnRecB {float:left; display: table;  width:198px; height:83px; margin: 0px 0px 0px 0px; background: url(/cms/images/layout/BnRecB.png) no-repeat right center;}
.ILeft .BnRecB .BnRecBIn {margin: 19px auto 0px auto; width:140px; height:48px; text-align:left;}
.ILeft .BnRecB .BnRecBIn p.bnr {display:table-cell; vertical-align:middle; width:112px; height:45px; text-align:right;}
.ILeft .BnRecB .BnRecBIn h2.hdr {
	display:table-cell; 
	vertical-align:middle; 
	width:112px; 
	height:30px; 
	text-align:left; 
	text-align:left; 
	margin: 0px 0px 0px 0px; 
	padding: 0px 10px 0px 0px; 
	font-weight:bold; 
	font-family: 'Open Sans', Arial, sans-serif; 
	font-size: 0.875em; 
	text-shadow: 1px 1px #000000; 
	text-transform:uppercase; 
	text-decoration:none; 
	line-height:16px; 
	letter-spacing:0px;
}
.ILeft .BnRecB .BnRecBIn a.bnlnk {
	text-align:center; 
	margin: 0px 0px 0px 0px; 
	padding:0px; 
	color:#ffffff; 
	font-weight:bold; 
	font-family: 'Open Sans', Arial, sans-serif; 
	font-size: 0.875em; 
	text-shadow: 1px 1px #000000; 
	text-transform:uppercase; 
	text-decoration:none; 
	line-height:16px; 
	letter-spacing:0px;
}
.ILeft .BnRecB .BnRecBIn a.bnlnk:hover {text-decoration:none; opacity:0.7; -moz-opacity:0.7; filter:alpha(opacity=70);}
.ILeft .BnRecB .BnRecBIn:hover {text-decoration:none; opacity:0.7; -moz-opacity:0.7; filter:alpha(opacity=70); cursor:pointer;}
.ILeft .BnRecG {float:left; display: table;  width:198px; height:83px; margin: 0px 0px 0px 0px; background: url(/cms/images/layout/BnRecG.png) no-repeat right center;}
.ILeft .BnRecG .BnRecBIn {margin: 19px auto 0px auto; width:140px; height:48px; text-align:left;}
.ILeft .BnRecG .BnRecBIn p.bnr {display:table-cell; vertical-align:middle; width:112px; height:45px; text-align:right;}
.ILeft .BnRecG .BnRecBIn h2.hdr {
	display:table-cell; 
	vertical-align:middle; 
	width:112px; 
	height:30px; 
	text-align:left; 
	text-align:left; 
	margin: 0px 0px 0px 0px; 
	padding: 0px 10px 0px 0px; 
	font-weight:bold; 
	font-family: 'Open Sans', Arial, sans-serif; 
	font-size: 0.875em; 
	text-shadow: 1px 1px #000000; 
	text-transform:uppercase; 
	text-decoration:none; 
	line-height:16px; 
	letter-spacing:0px;
}
.ILeft .BnRecG .BnRecBIn a.bnlnk {
	text-align:center; 
	margin: 0px 0px 0px 0px; 
	padding:0px; 
	color:#ffffff; 
	font-weight:bold; 
	font-family: 'Open Sans', Arial, sans-serif; 
	font-size: 0.875em; 
	text-shadow: 1px 1px #000000; 
	text-transform:uppercase; 
	text-decoration:none; 
	line-height:16px; 
	letter-spacing:0px;
}
.ILeft .BnRecG .BnRecBIn a.bnlnk:hover {text-decoration:none; opacity:0.7; -moz-opacity:0.7; filter:alpha(opacity=70);}
.ILeft .BnRecG .BnRecBIn:hover {text-decoration:none; opacity:0.7; -moz-opacity:0.7; filter:alpha(opacity=70); cursor:pointer;}

.topOfPage {border-bottom: 1px solid #1E896A; padding-bottom:10px; text-align:right;}

.gsc-control{ width: 600px;}
.cse .gsc-control-cse,
.gsc-control-cse {  padding: 2%; width: 96%;}
.cse .gsc-branding,
.gsc-branding {}
.cse .gsc-control-cse div,
.gsc-control-cse div {  position: normal;}

/* Selector for entire element. */
.cse .gsc-control-cse,
.gsc-control-cse {  font-family: inherit;  background-color: #dae0e5; border: 1px solid; border-color: #dae0e5;}
.cse .gsc-control-cse:after,
.gsc-control-cse:after { content:"."; display:block; height:0; clear:both; visibility:hidden;}
.cse .gsc-resultsHeader,
.gsc-resultsHeader { border: none;}
.cse input.gsc-input,
input.gsc-input { padding:1px 2px 2px 10px; width:96%;} 
.cse input.gsc-search-button, input.gsc-search-button { font:bold 11px Arial; color:#fff; background-color:#375d84; border:1px solid #7293b7; text-decoration:none; cursor:pointer; text-transform:uppercase; height:21px;}

/* Base tab selector styles */
.cse .gsc-tabHeader,
.gsc-tabHeader {
	text-shadow: 0 1px 2px #fff;
	padding: 2px 8px 0 8px;
	border-top-right-radius: 4px;
	-moz-border-radius-topright: 4px;
	-webkit-border-top-right-radius: 4px;
	border-top-left-radius: 4px;
	-moz-border-radius-topleft: 4px;
	-webkit-border-top-left-radius: 4px;
}

/* Inactive tab */
.cse .gsc-tabHeader.gsc-tabhInactive,
.gsc-tabHeader.gsc-tabhInactive { background-color: #b2bdc6; border: 1px solid; border-bottom: none; border-color: #b2bdc6; color: #000;}

/* Active tab */
.cse .gsc-tabHeader.gsc-tabhActive,
.gsc-tabHeader.gsc-tabhActive { background-color: #8A99A6; border: 1px solid; border-bottom: none; border-color: #8A99A6; color: #000;}

/* This is the tab bar bottom border. */
.cse .gsc-tabsArea,
.gsc-tabsArea { margin-top: 1em; border-bottom: 1px solid; border-color: #8A99A6; padding: 0;}

/* Wrapper for all results */
.cse .gsc-results,
.gsc-results {
	width: 100%;
	background-color: #FFFFFF;
	border-bottom-right-radius: 4px;
	-moz-border-radius-bottomright: 4px;
	-webkit-border-bottom-right-radius: 4px;
	border-bottom-left-radius: 4px;
	-moz-border-radius-bottomleft: 4px;
	-webkit-border-bottom-left-radius: 4px;
}
.cse div.gs-title,
div.gs-title,
.cse .gs-snippet,
.gs-snippet,
.cse .gs-visibleUrl,
.gs-visibleUrl,
.cse .gs-visibleUrl-short,
.gs-visibleUrl-short { padding: 0 8px;}

/* Inner wrapper for a result */
.cse .gsc-webResult.gsc-result,
.gsc-webResult.gsc-result { padding: 6px 0; border-top: 1px solid; border-color: #ffffff;}

/* Result hover event styling */
.cse .gsc-webResult.gsc-result:hover,
.gsc-webResult.gsc-result:hover { border-top: 1px solid; border-color: #d2d6dc; background-color: #ededed; -webkit-box-shadow: 0 1px 4px #8A99A6; -moz-box-shadow: 0 2px 2px #8A99A6;}

/* Set link colors. */
.cse .gs-webResult.gs-result a.gs-title:link,
.gs-webResult.gs-result a.gs-title:link,
.cse .gs-webResult.gs-result a.gs-title:link b,
.gs-webResult.gs-result a.gs-title:link b,
.cse .gs-webResult.gs-result a.gs-title:visited,
.gs-webResult.gs-result a.gs-title:visited,
.cse .gs-webResult.gs-result a.gs-title:visited b,
.gs-webResult.gs-result a.gs-title:visited b,
.cse .gs-webResult.gs-result a.gs-title:hover,
.gs-webResult.gs-result a.gs-title:hover,
.cse .gs-webResult.gs-result a.gs-title:hover b,
.gs-webResult.gs-result a.gs-title:hover b,
.cse .gs-webResult.gs-result a.gs-title:active,
.gs-webResult.gs-result a.gs-title:active,
.cse .gs-webResult.gs-result a.gs-title:active b,
.gs-webResult.gs-result a.gs-title:active b,
.cse .gsc-cursor-page,
.gsc-cursor-page,
.cse a.gsc-trailing-more-results:link,
a.gsc-trailing-more-results:link { color: #0568cd; }

/* Override default.css selector to disable underlines. */
.cse .gs-result .gs-title,
.gs-result .gs-title,
.cse .gs-result .gs-title *,
.gs-result .gs-title * { text-decoration: none;}
.cse .gs-webResult.gs-visibleUrl,
.gs-webResult.gs-visibleUrl,
.cse .gs-webResult.gs-visibleUrl-short,
.gs-webResult.gs-visibleUrl-short { color: #5f6a73; font-weight: bold; font-size: 0.688em;}

/* Snippet text color */
.cse .gs-webResult.gs-result .gs-snippet,
.gs-webResult.gs-result .gs-snippet { color: #333333;}

/* Pagination container centered */
.cse .gsc-cursor-box,
.gsc-cursor-box { border-color: #8A99A6; padding: 1.2em 0 2em 0; text-align: center;}

/* Pagination */
.cse .gsc-cursor-page,
.gsc-cursor-page {
  padding: .2em .5em;
  background-color: #fff;
  border:1px solid;
  border-color: #b2bdc6;
  border-radius: 4px;
  -moz-border-radius: 4px;
  -webkit-border-radius: 4px;
  text-decoration: none;
}

/* Selected pagination */
.cse .gsc-results .gsc-cursor-page.gsc-cursor-current-page,
.gsc-results .gsc-cursor-page.gsc-cursor-current-page {
  color: #1c001e;
  text-shadow: 0px 1px 1px #fff;
  text-shadow: 0 1px 2px #fff;
  background-color: #8A99A6;
  border:1px solid;
  border-color: #d2d6dc;
}

/*Promotion Settings*/
/* The entire promo */
.cse .gs-promotion.gs-result,
.gs-promotion.gs-result { background-color: #D0D1D4; border: 1px solid; border-color: #D2D6DC;}
/* Promotion image */
.cse .gs-promotion.gs-result .gs-promotion-image,
.gs-promotion.gs-result .gs-promotion-image {}
/* Promotion title */
.cse .gs-promotion.gs-result a.gs-title:link,
.gs-promotion.gs-result a.gs-title:link { color: #0066CC;}
.cse .gs-promotion.gs-result a.gs-title:visited,
.gs-promotion.gs-result a.gs-title:visited { color: #0066CC;}
.cse .gs-promotion.gs-result a.gs-title:hover,
.gs-promotion.gs-result a.gs-title:hover { color: #0066CC;}
.cse .gs-promotion.gs-result a.gs-title:active,
.gs-promotion.gs-result a.gs-title:active { color: #0066CC;}
/* Promotion snippet */
.cse .gs-promotion.gs-result .gs-snippet,
.gs-promotion.gs-result .gs-snippet { color: #333333;}
/* Promotion url */
.cse .gs-promotion.gs-result ..gs-visibleUrl,
.gs-promotion.gs-result .gs-visibleUrl { color: #5F6A73;}

/* Agendas & Minutes Start */
.agendaminuteFilter {background: #083B52; padding: 0 0 5px; margin-top:0px; margin-bottom:0px; border: 3px solid #1E896A; color:#ffffff;}
.agendaminuteFilterRight {padding: 10px 0;}
.agendaminuteFilter span {font-size: 0.813em;}
.agendaminuteFilter select {width: 100%; margin-bottom: 5px; -webkit-box-sixing: border-box; box-sizing: border-box;}

.agl {float:left; display:block; position:relative;}
.agr {float:left; display:block; position:relative;}

table.agendaminuteDataTbl {width:100%; margin-bottom:15px;}
table.agendaminuteDataTbl th {background:#fff url(/cms/images/filter-left.gif) repeat-x bottom; text-align:left; padding:6px 15px; font:bold 11px Georgia; border-bottom:1px solid #9aaba3;  border-top:1px solid #9aaba3;}
table.agendaminuteDataTbl td {vertical-align:top; padding:7px 15px; border-bottom:1px dotted #9aaba3;}
table.agendaminuteDataTbl th a, 
table.agendaminuteDataTbl th a:link, 
table.agendaminuteDataTbl th a:visited {color:#333; }
.agendaminuteDataTblAlternate {padding:12px;background-color: #e6eae8;}

.agendaminuteRailWrpr {width:170px;}
.agendaminuteRailWrpr img {border-style: none; height: 14px; vertical-align: middle; padding-right:2px;}
.agendaminuteDate {width:160px; float:none; font:normal 11px Arial; color:#525042; text-transform: uppercase;}
a.agendaminuteMore, a.agendaminuteMore:link, a.agendaminuteMore:visited {background:transparent url(/cms/images/arrows.gif) no-repeat 100% 50%; color: #9e9676; text-decoration: none; font-size: 0.688em; font-weight:bold; white-space:nowrap;padding-right:10px;}
a.agendaminuteMore:hover {color: #9e9676; text-decoration: underline;}
a.agendaminuteMore:active {color: #9e9676; text-decoration: none;}
/* Agendas & Minutes End */



#facebox { position: absolute; top: 0; left: 0; z-index: 99999; text-align: left;}
#facebox .popup{position:relative; border:3px solid rgba(0,0,0,0); -webkit-border-radius:5px; -moz-border-radius:5px; border-radius:5px; -webkit-box-shadow:0 0 18px rgba(0,0,0,0.4); -moz-box-shadow:0 0 18px rgba(0,0,0,0.4); box-shadow:0 0 18px rgba(0,0,0,0.4);}
#facebox .content { display:table; width:600px; min-height:170px; padding: 0px; background:#ffffff; -webkit-border-radius:4px; -moz-border-radius:4px; border:none;}
#facebox .content > p:first-child { margin-top:0;}
#facebox .content > p:last-child { margin-bottom:0;}
#facebox .close { position:absolute; top:5px; right:5px; padding:2px; background:#ffffff;}
#facebox .close img { opacity:0.3;}
#facebox .close:hover img { opacity:1.0;}
#facebox .loading { text-align: center; }
#facebox .image { text-align: center;}
#facebox img { border: 0; margin: 0;}
#facebox_overlay { position: fixed; z-index: 1101; top: 0px; left: 0px; height:100%; width:100%;}
.facebox_hide { z-index:-100;}
.facebox_overlayBG { background-color: #000000; z-index: 99;}

.selbox {margin: 0px 20px 30px 20px; width:600px;} 
.selbox h2 {
	background: url("/cms/images/layout/hdrud.png") repeat-x scroll left bottom transparent; 
	color: #1E896A;
	font-family: 'Open Sans',Arial,sans-serif;
	font-size: 30px;
	font-weight: bold; 
	letter-spacing: 0px;
	margin: 4px 0px 20px 0px; 
	padding: 15px 0px 15px 0px; 
	text-transform: uppercase;
}
.selbox p {margin: 7px 0px 7px 0px; font-size: 0.875em; line-height:20px;}
.selbox p b.red {color:#ff0000;}

.InterRaildocumentsSummaryDesc div.imgdoc {display:block; margin: 5px 8px 0px 0px; float:left;}
.InterRaildocumentsSummaryDesc div.doctxt {display:block; margin-top:5px;}

/* =================================================================
                        THIRD PARTY STYLES
===================================================================*/


/* Core Owl Carousel CSS */
.owl-carousel .owl-wrapper:after {content: ".";display: block;clear: both;visibility: hidden;line-height: 0;height: 0;}
.owl-carousel{display: none;position: relative;width: 100%;-ms-touch-action: pan-y;}
.owl-carousel .owl-wrapper{display: none;position: relative;-webkit-transform: translate3d(0px, 0px, 0px);}
.owl-carousel .owl-wrapper-outer{overflow: hidden;position: relative;width: 100%;}
.owl-carousel .owl-wrapper-outer.autoHeight{
	-webkit-transition: height 500ms ease-in-out;
	-moz-transition: height 500ms ease-in-out;
	-ms-transition: height 500ms ease-in-out;
	-o-transition: height 500ms ease-in-out;
	transition: height 500ms ease-in-out;
}
.owl-carousel .owl-item {float: left;}
.owl-controls .owl-page,
.owl-controls .owl-buttons div {cursor: pointer;}
.owl-controls {text-align: center;-webkit-user-select: none;-khtml-user-select: none;-moz-user-select: none;-ms-user-select: none;user-select: none;-webkit-tap-highlight-color: rgba(0, 0, 0, 0);}

/* fix */
.owl-carousel  .owl-wrapper,
.owl-carousel  .owl-item {
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility:    hidden;
    -ms-backface-visibility:     hidden;
    -webkit-transform: translate3d(0,0,0);
    -moz-transform: translate3d(0,0,0);
    -ms-transform: translate3d(0,0,0);
}

/*  Styling Pagination
	---------------------------------------------- */
.owl-theme .owl-controls .owl-page {display: inline-block;zoom: 1;*display: inline;/*IE7 life-saver */}
.owl-theme .owl-controls .owl-page span {display: block;width: 7px;height: 7px;margin: 5px 3px;border: 1px solid #2c2c2d;-webkit-border-radius: 20px;-moz-border-radius: 20px;border-radius: 20px;background: #2c2c2d;}
.owl-theme .owl-controls .owl-page.active span,
.owl-theme .owl-controls.clickable .owl-page:hover span {background: #eae01c;}

/*  Owl Carousel CSS3 Transitions */
.owl-origin {
    -webkit-perspective: 1200px;
    -webkit-perspective-origin-x : 50%;
    -webkit-perspective-origin-y : 50%;
    -moz-perspective : 1200px;
    -moz-perspective-origin-x : 50%;
    -moz-perspective-origin-y : 50%;
    perspective : 1200px;
}

/* fade */
.owl-fade-out { z-index: 10; -webkit-animation: fadeOut .7s both ease; -moz-animation: fadeOut .7s both ease; animation: fadeOut .7s both ease;}
.owl-fade-in {-webkit-animation: fadeIn .7s both ease; -moz-animation: fadeIn .7s both ease; animation: fadeIn .7s both ease;}

/* backSlide */
.owl-backSlide-out { -webkit-animation: backSlideOut 1s both ease; -moz-animation: backSlideOut 1s both ease; animation: backSlideOut 1s both ease;}
.owl-backSlide-in { -webkit-animation: backSlideIn 1s both ease; -moz-animation: backSlideIn 1s both ease; animation: backSlideIn 1s both ease;}

/* goDown */
.owl-goDown-out { -webkit-animation: scaleToFade .7s ease both; -moz-animation: scaleToFade .7s ease both; animation: scaleToFade .7s ease both;}
.owl-goDown-in { -webkit-animation: goDown .6s ease both; -moz-animation: goDown .6s ease both; animation: goDown .6s ease both;}

/* scaleUp */
.owl-fadeUp-in { -webkit-animation: scaleUpFrom .5s ease both; -moz-animation: scaleUpFrom .5s ease both; animation: scaleUpFrom .5s ease both;}
.owl-fadeUp-out { -webkit-animation: scaleUpTo .5s ease both; -moz-animation: scaleUpTo .5s ease both; animation: scaleUpTo .5s ease both;}

/* Keyframes */
/*empty*/
@-webkit-keyframes empty { 0% {opacity: 1}}
@-moz-keyframes empty { 0% {opacity: 1}}
@keyframes empty { 0% {opacity: 1}}
@-webkit-keyframes fadeIn { 0% { opacity:0; } 100% { opacity:1; }}
@-moz-keyframes fadeIn { 0% { opacity:0; } 100% { opacity:1; }}
@keyframes fadeIn { 0% { opacity:0; } 100% { opacity:1; }}
@-webkit-keyframes fadeOut { 0% { opacity:1; } 100% { opacity:0; }}
@-moz-keyframes fadeOut { 0% { opacity:1; } 100% { opacity:0; }}
@keyframes fadeOut { 0% { opacity:1; } 100% { opacity:0; }}
@-webkit-keyframes backSlideOut {
  25% { opacity: .5; -webkit-transform: translateZ(-500px); }
  75% { opacity: .5; -webkit-transform: translateZ(-500px) translateX(-200%); }
  100% { opacity: .5; -webkit-transform: translateZ(-500px) translateX(-200%); }
}
@-moz-keyframes backSlideOut {
  25% { opacity: .5; -moz-transform: translateZ(-500px); }
  75% { opacity: .5; -moz-transform: translateZ(-500px) translateX(-200%); }
  100% { opacity: .5; -moz-transform: translateZ(-500px) translateX(-200%); }
}
@keyframes backSlideOut {
  25% { opacity: .5; transform: translateZ(-500px); }
  75% { opacity: .5; transform: translateZ(-500px) translateX(-200%); }
  100% { opacity: .5; transform: translateZ(-500px) translateX(-200%); }
}
@-webkit-keyframes backSlideIn {
  0%, 25% { opacity: .5; -webkit-transform: translateZ(-500px) translateX(200%); }
  75% { opacity: .5; -webkit-transform: translateZ(-500px); }
  100% { opacity: 1; -webkit-transform: translateZ(0) translateX(0); }
}
@-moz-keyframes backSlideIn {
  0%, 25% { opacity: .5; -moz-transform: translateZ(-500px) translateX(200%); }
  75% { opacity: .5; -moz-transform: translateZ(-500px); }
  100% { opacity: 1; -moz-transform: translateZ(0) translateX(0); }
}
@keyframes backSlideIn {
  0%, 25% { opacity: .5; transform: translateZ(-500px) translateX(200%); }
  75% { opacity: .5; transform: translateZ(-500px); }
  100% { opacity: 1; transform: translateZ(0) translateX(0); }
}
@-webkit-keyframes scaleToFade { to { opacity: 0; -webkit-transform: scale(.8); }}
@-moz-keyframes scaleToFade { to { opacity: 0; -moz-transform: scale(.8); }}
@keyframes scaleToFade { to { opacity: 0; transform: scale(.8); }}
@-webkit-keyframes goDown { from { -webkit-transform: translateY(-100%); }}
@-moz-keyframes goDown { from { -moz-transform: translateY(-100%); }}
@keyframes goDown { from { transform: translateY(-100%); }}
@-webkit-keyframes scaleUpFrom { from { opacity: 0; -webkit-transform: scale(1.5); }}
@-moz-keyframes scaleUpFrom { from { opacity: 0; -moz-transform: scale(1.5); }}
@keyframes scaleUpFrom { from { opacity: 0; transform: scale(1.5); }}
@-webkit-keyframes scaleUpTo { to { opacity: 0; -webkit-transform: scale(1.5); }}
@-moz-keyframes scaleUpTo { to { opacity: 0; -moz-transform: scale(1.5); }}
@keyframes scaleUpTo { to { opacity: 0; transform: scale(1.5); }}


/*	TABLE FIXES
------------------------- */
.table {width: 100%; display: table; -webkit-box-sizing: border-box; -moz-box-sizing: border-box; box-sizing: border-box;}
.table-row {display: table-row; -webkit-box-sizing: border-box; -moz-box-sizing: border-box; box-sizing: border-box;}
.table-cell {display: table-cell; -webkit-box-sizing: border-box; -moz-box-sizing: border-box; box-sizing: border-box;}
.table > .table-row > .table-cell,
.table > .table-column > .column-header,
.table > .table-column > .column-content {font-size: 0.813em;}
.table-header .table-cell,
.table-content .table-cell,
.table-column .column-header,
.table-column .inner {padding: 5px; border-bottom: 1px solid #d8d8d8;}
.table-header,
.column-header {background: #e8e8e8; font-weight: bold;}
.table-caption {display: table-caption; text-align: center; padding: 5px; font-size: 0.813em;}

.table-green .table-header {background: #99cc99;}
.table-green .table-content:nth-child(even) {background: #ccffcc;}

.table-keep-headers {}
.table-column {-webkit-box-sizing: border-box; -moz-box-sizing: border-box; box-sizing: border-box;}


/*	SHARED STYLES
------------------------- */
.mainbody {}
.mainbody-btm {}
.bdywrpr {} 
.bdywrprIn {}
.hdrwrpr {}
.corwrpr {}
.corwrpr-int {}
.corwrpr-int-inn {}


.header {position:relative;}
.header .siteSearch .imgBtn {border: 0 none;}

.BanListHome {}
.BanListHome .BanRect,
.services-dropdown {position:relative; display:block; background: url(/cms/images/layout/BanRect.gif) no-repeat center top / 100% 60px #191919; }
.BanListHome .BanRect h2.hdr,
.BanListHome .BanRect h2.hdr a,
.services-dropdown h2.hdr,
.services-dropdown h2.hdr a {text-align:center;margin:0;padding:0px;color:#ffffff;font-weight:600;font-family: 'Open Sans', Arial, sans-serif;text-shadow: 1px 1px #000000;text-transform:uppercase;text-decoration:none; line-height: 2.500em}
.BanListHome a:hover {text-decoration: none;}

.IsRotate90     
{
    -ms-transform: rotate(90deg); /* IE 9 */
    -webkit-transform: rotate(90deg); /* Chrome, Safari, Opera */
    transform: rotate(90deg);
}

.video-container {
    position: relative;
    padding-bottom: 56.25%;
    padding-top: 30px; 
    height: 0; 
    overflow: hidden;
}
 
.video-container iframe,
.video-container object,
.video-container embed {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.em-set {font-size: 0.813em;}
.block > p,
.block > ul > li,
.rRailOne > p,
.rRailOne > ul > li,
.lRail > p,
.lRail > ul > li,
.lRailOne > p,
.lRailOne > ul > li,
table > tbody > tr > td,
table > tbody > tr > td > p {font-size: 0.813em; line-height: 1.750em;}
.block > ul > li li,
.rRailOne > ul > li li,
.lRail > ul > li li,
.lRailOne > ul > li li {font-size: 1em;}

.ctpe_overlay table > tbody > tr > td,
.ctpe_overlay table > tbody > tr > td > p {font-size: 1em;}
.contentButton a,
.contentButton a:link,
.contentButton a:visited,
.contentButton a:hover {-webkit-transition: none; transition: none;}

.scroll-table > table {width: 100%}

.IsRotate90 {
    -ms-transform: rotate(90deg); /* IE 9 */
    -webkit-transform: rotate(90deg); /* Chrome, Safari, Opera */
    transform: rotate(90deg);
}

/* =================================================================
                        Media Queries
===================================================================*/

/* 16px baseline (180px - 767px) */
@media only screen and (min-width:11.250em) and (max-width:47.938em) {	
	.SecNav,
	.quicklinks-wrapper,
	.info-wrapper,
	.pageTools,
	.IRight .breadcrumbs,
	.OneRail .breadcrumbs {display: none;}
	
	body {
        background: #165e42; /* Old browsers */
        background: -moz-linear-gradient(-45deg,  #165e42 0%, #134833 100%); /* FF3.6+ */
        background: -webkit-gradient(linear, left top, right bottom, color-stop(0%,#165e42), color-stop(100%,#134833)); /* Chrome,Safari4+ */
        background: -webkit-linear-gradient(-45deg,  #165e42 0%,#134833 100%); /* Chrome10+,Safari5.1+ */
        background: -o-linear-gradient(-45deg,  #165e42 0%,#134833 100%); /* Opera 11.10+ */
        background: -ms-linear-gradient(-45deg,  #165e42 0%,#134833 100%); /* IE10+ */
        background: linear-gradient(135deg,  #165e42 0%,#134833 100%); /* W3C */
        filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#165e42', endColorstr='#134833',GradientType=1 ); /* IE6-9 fallback on horizontal gradient */
    }
    
	.bdywrpr {overflow: hidden;}
	
	.hdrwrpr {}
	.header {position: static;background: url("/cms/images/layout/mainNavAll.png") no-repeat center -2px;}
	.header a.sitelogo, 
	.header a.sitelogo:link, 
	.header a.sitelogo:visited { display: block; font-size: 2.375em; line-height: 1em; padding: 0 30px; margin: 70px 0 10px; text-align: center; text-decoration: none; }
	.header .siteSearch {position: absolute; top: 10px; right: 60px;}
	.header .siteSearch .input {width: 100%;}
	.header .siteSearch .input input {
	    width: 100%; 
	    height: 30px; 
	    padding: 5px 40px 5px 10px; 
	    -webkit-box-sizing: border-box; 
	      -moz-box-sizing: border-box; 
	        box-sizing: border-box; 
	    border: 0 none;
	      -webkit-border-radius:2px 0 0 2px; 
	    border-radius: 2px 0 0 2px;
	}
	.header .siteSearch .imgBtn {
	    position:absolute;
	    right:0;
	    top:0;
	    background:#1e896a;
	    padding:5px;
	    display:inline-block;
	    vertical-align:middle;
	    color: #ffffff;
	    font-weight:bold;
	    -webkit-border-radius:0;
	    border-radius: 0;
	    height: 30px;
	    line-height: 1;
	}
	.mainNavAll .quicklinks-wrapper,
	.mainNavAll .SecNav {display: block;}
	
	.mainNavAll .quicklinks-wrapper {float: none; width: auto; padding: 20px 20px 0;}
	.mainNavAll .hdmsrSelectAll,
	.mainNavAll .hdmsrSelectAll .hdql,
	.mainNavAll .hdmsrSelectAll div.msrSelectAll {float: none; width: auto; text-align: left;}
	.mainNavAll .hdmsrSelectAll .hdql {margin-bottom: 10px;}
	.mainNavAll .hdmsrSelectAll div.msrSelectAll select.msrSelect {opacity:1 !important;width:90% !important; font-size: 1em; height: auto !important;}
	.mainNavAll .hdmsrSelectAll div.msrSelectAll span.msrSelect {display: none;}
	
	.mainNavAll .SecNav {float: none; width: auto; text-align: left; padding: 0 0 0 20px;}
    .mainNavAll .SecNav a {display: block; font-size: 1.125em; padding: 0 0 20px;}
	.mainNavAll .SecNav span {display: none;}
	
	.site-search-toggler {position: absolute; right: -50px; top: -10px; background: url(/cms/images/layout/search-icon.png) no-repeat center center; width: 50px; height: 50px;}
	.site-search-toggler.active {background: url(/cms/images/layout/search-icon-active.png) no-repeat center center;}
	.site-search-form {position: relative; margin-right: 10px; display: none;}
	
	.ftrwrprAll { margin: 0 -10px; color: #ffffff;}
	.ftrwrpr {text-align: center;}
	.ftrwrpr .ftrLeft {padding: 40px 0 0;}
	.ftrwrpr .ftrRight .ftrlnk p {margin: 0 0 10px;}
	.ftrwrpr .ftrRight .ftrsoc {text-align: center; margin: 5px 0 10px;}
	.ftrwrpr .ftrRight .ftrsoc p {margin: 0 3px; display: inline-block;}
	.ftrwrpr .ftrRight {padding-bottom: 10px;}
	
	.BanListHome,
	.services-dropdown {margin: 0 -10px;}
	.ContWrprB {margin: 0 -10px; padding: 0 10px;}
	
	.services-dropdown {text-align: center;}
	.services-dropdown .hdr {display: inline-block; position: relative;}
	.services-dropdown .hdr:after {content: ''; border-left: 6px solid Transparent; border-right: 6px solid Transparent; border-top: 6px solid #ffffff; position: absolute; right: -20px; top: 30px;}
	.services-dropdown.active .hdr:after { border-top: 0 none; border-bottom: 6px solid #ffffff;}
	
	.HLeft .banner-list-wrapper {display: none; position: absolute; top: 60px; left: 0; right: 0; z-index: 1; border-bottom: 1px solid #000000; margin: 0 -10px; -webkit-box-shadow: 0 3px 3px 1px rgba(1,1,1,0.5); box-shadow: 0 3px 3px 1px rgba(1,1,1,0.5);}
	.HLeft .BnSqB {text-align: center;}
	.HLeft .BnSqB .BnSqBIn p.bnr {display: none;}
	.HLeft .BnSqB .BnSqBIn h2.hdr {font-family: "Open Sans"; font-size: 1.125em; font-weight: normal; padding: 8px 0; margin: 0; border-bottom: 1px solid #373737; border-top: 1px solid #000000; background: #262626}
	.HLeft .BnSqB .BnSqBIn span.bnlnk {color: #ffffff;}
	.HLeft .BnSqB .BnSqBIn span.bnlnk:hover {text-decoration: none;}
	
	.ContWrprW {margin-top: 55px; border: 5px solid #1e896a; }
  .ContWrprW table td {width: 100%; display:block;}
	.ILeft, .IRight {min-height: 0 !important;}
	.IRight {padding: 10px;}
	.OneRail {padding: 10px;}
	
	.IRight h1, .OneRail h1, .lRail h1 {font-size: 1.250em;}
	.IRight h2, .OneRail h2, .lRail h2 {font-size: 1.125em;}
	.IRight h3, .OneRail h3, .lRail h3 {font-size: 1em;}
	
	.pageHeading h1{ font-weight: 700; font-size: 1.125em; margin: 0 0 10px; line-height: 1.125em; padding: 0 0 5px;}
	
	.left-nav-toggler {
		cursor: pointer;
		display: inline-block;
		height: 45px;
		position: absolute;
		vertical-align: middle;
		width: 50px;
		z-index: 9000;
		top: -50px;
		left: -5px;
		background: #1e896a;
		-webkit-transition: all 0 ease-in-out 0s;
		transition: all 0 ease-in-out 0s;
	}
	.left-nav-toggler.active {background: #083b52;}
	.left-nav-toggler .LNavIcon:before {
	    background: #ffffff;
		content: "";
		display: block;
		height: 3px;
		left: 0;
		position: absolute;
		top: -10px;
		-webkit-transition: transform 0.4s ease 0s;
		transition: transform 0.4s ease 0s;
		width: 25px;
	}
	.left-nav-toggler .LNavIcon {
		background: #ffffff;
		content: "";
		display: block;
		height: 3px;
		left: 50%;
		margin-left: -12.5px;
		position: absolute;
		top: 50%;
		-webkit-transition: all 0.2s linear 0s;
		transition: all 0.2s linear 0s;
		width: 25px;
	}
	.left-nav-toggler .LNavIcon:after {
	    background: #ffffff none repeat scroll 0 0;
		content: "";
		display: block;
		height: 3px;
		left: 0;
		position: absolute;
		top: 10px;
		-webkit-transition: transform 0.4s ease 0s;
		transition: transform 0.4s ease 0s;
		width: 25px;
	}
	ul.lnav {
	    margin: 0; 
	    background: #083b52; 
	    position: absolute; 
	    top: -5px; 
	    left: -5px; 
	    z-index: 2000; 
	    width: 100%; 
	    padding: 0 5px; 
	    display: none; 
	    -webkit-box-shadow: 0 3px 3px -2px rgba(1,1,1,0.5); 
	    box-shadow: 0 3px 3px -2px rgba(1,1,1,0.5);
	}
	ul.lnav li {border-bottom: 1px solid #105571; margin: 0 -5px;}
	ul.lnav a, ul.lnav a:link, ul.lnav a:visited {font-size: 0.938em; font-weight: 700; line-height: 1em;}
	ul.lnav ul {background: #0d4d6b}
	
	.genericPager {padding: 5px 0 0;}
	
	.agendaminuteFilterRight {padding: 10px;}
	.directoryFilter select {width: 100%; -webkit-box-sizing: border-bod; box-sizing: border-bod; }
	
	/*	TABLE FIXES
	------------------------- */
	.table,
	.table-row,
	.table-cell,
	.table-caption {display: block;}
	.table-header {display: none;}
	.table-row {border-bottom: 1px solid #e8e8e8; padding: 10px 0;}
	.table-content .table-cell {padding: 0 5px; border-bottom: 0 none;}
	.table-content .table-cell:first-child {font-weight: bold;}
	
	.scroll-table {width: auto; overflow-x: scroll;}
	.table-column {margin-top: 10px;}
	.table-column:first-child {margin-top: 0;}
	
	
	.block > table,
	.block > table tbody,
	.block > table thead,
	.block > table tr,
	.block > table tr th,
	.block > table tr td,
  .block .scroll-table table,
  .block .scroll-table table tbody,
  .block .scroll-table table thead,
  .block .scroll-table table tr,
  .block .scroll-table table tr th,
  .block .scroll-table table tr td {display: block; -webkit-box-sizing: border-box; box-sizing: border-box; height: auto}
	
	.block > table, .block .scroll-table table  {width: 100% !important; border: 0 none; }
	.block > table thead, .block .scroll-table table thead  {display: none;}
	.block > table tr, .block .scroll-table table tr  {border-bottom: 1px solid #e8e8e8; padding: 5px 0;}
	.block > table tr td, .block .scroll-table table tr td {border: 0 none;  padding: 0 5px;}
	.block > table tr td:first-child, .block .scroll-table table tr td:first-child {font-weight: bold;}
	
	
}

/* 16px baseline (480px) */
@media only screen and (min-width:30.000em) and (max-width:47.938em) {	
	.header a.sitelogo, 
	.header a.sitelogo:link, 
	.header a.sitelogo:visited {padding: 0 20px;}
    .services-dropdown {margin: 0 -20px;}
}
/* 16px baseline (768px) */
@media only screen and (min-width:48em) {
    .site-search-toggler,
    .services-dropdown,
    .mainNavAll .quicklinks-wrapper,
    .mainNavAll .SecNav,
	.info-wrapper,
	.left-nav-toggler {display: none;}
	.outerContainer {min-height: 0 !important;}
	
	html, body {background: url(/cms/images/layout/bga.gif);}

	.header a.sitelogo, 
	.header a.sitelogo:link, 
	.header a.sitelogo:visited {font-size: 2.5em;}
	
	.mainbody {background: url(/cms/images/layout/bg.gif) repeat-x; margin:0; padding:0;}
	.mainbody-btm { background:transparent url(/cms/images/bg-btm.gif) repeat-x 0 100%; margin:0; padding:0;}
	.bdywrpr {background: url(/cms/images/layout/bgImg.jpg) no-repeat center top; z-index:1;}
	.bdywrprIn {min-height:500px;}
	.hdrwrpr { position:relative; z-index:100;}
	.corwrpr {width:960px; margin-top:9px; background:transparent url(/cms/images/hm-cormain-bg.png) repeat-y;}
	.corwrpr-int {background:transparent url(/cms/images/corwrpr-int.png) repeat-y right; margin-top:9px;}
	.corwrpr-int-inn {margin:10px 20px; padding:5px 0; float:left; display:inline; position:relative;}

	.header {}
	.header .siteSearch {float:right; padding:0; margin: 20px 10px 0px 7px; width:230px; height:32px; background:#ffffff;}
	.header .siteSearch .input {float:left; display:inline; width:195px; height:32px; border: none; margin:0px 0px 0 0; color:#231f20;}
	.header .siteSearch .text {
	    margin:0px 6px 0 9px; 
	    line-height:15px; 
	    color:#231f20; 
	    font-weight:normal; 
	    font-family:"Trebuchet MS", Helvetica, sans-serif; 
	    font-size:14px; 
	    border-style:none; 
	    background:transparent; 
	    outline: none; 
	    height:32px;
	}
	.header .siteSearch .imgBtn {
	    float:left; 
	    width:30px; 
	    height:26px; 
	    margin-left:2px; 
	    margin-top:3px; 
	    padding:0; 
	    border-style:none; 
	    background:url('/cms/images/layout/search-off.png') no-repeat; 
	    cursor:pointer; 
	    text-indent:-99em;
	}
	.header .siteSearch .imgBtn:hover {background:url('/cms/images/layout/search-on.png') no-repeat; cursor:pointer;}
	.header .siteSearch label {position: absolute; overflow: hidden; text-indent:-999em; left:-999em;}
	

	.quicklinks-wrapper {padding: 10px 10px 0;}
    .info-wrapper {color: #ffffff; font-style: italic; float: left; padding: 0 0 0 40px;}
    .info-wrapper p {margin: 0;}
    .logo-wrapper {float: left; padding: 0 0 0 10px;}
	
	.BanListHome {margin: 0 auto;}
	.BanListHome .BanRect {float:left; width:33.333%;}
	.BanListHome .BanRect h2.hdr,
	.BanListHome .BanRect h2.hdr a {}
	.BanListHome .BanRect h2.hdr a:hover {}
	
	.ftrwrprAll { min-height:230px; background: url(/cms/images/layout/ftrwrpr.png) no-repeat center top; position:relative; z-index:1; margin-top:-104px;}
    .ftrwrpr { padding-top:55px;}

    .ftrwrpr a.ftrlogo,
    .ftrwrpr a.ftrlogo:link,
    .ftrwrpr a.ftrlogo:visited {float:left; display:inline; position:absolute; width:123px; height:145px; margin: 0px 0px 0px 0px; background:transparent url(/cms/images/layout/ftrlogo.png) no-repeat 0 0; text-indent:-9999em; overflow:hidden;}

    .ftrwrpr .ftrLeft {float:left; display:block; position:relative; width:355px; margin: -50px 0 0 11px;}
    .ftrwrpr .ftrLeft p {margin:0; padding:0;}
    .ftrwrpr .ftrRight {float:right; display:block; position:relative; width:250px; margin: -20px 11px 0px 0px;}
    .ftrwrpr .ftrRight .ftrlnk {text-align:right; display:block; position:relative; color:#ffffff; font-size: 0.750em;}
    .ftrwrpr .ftrRight .ftrlnk p {margin: 0px 0px 5px 0px; padding:0;}
    .ftrwrpr .ftrRight .ftrlnk a {font-size: 1em; color:#ffffff; text-decoration:none;}
    .ftrwrpr .ftrRight .ftrlnk a:hover {text-decoration:underline;}
    .ftrwrpr .ftrRight .ftrlnk span {margin: 0px 6px 0px 6px;}
    .ftrwrpr .ftrRight .ftrsoc {float:right; display:block; position:relative; margin-top:10px; color:#ffffff; font-size: 0.750em; line-height:16px;}
    .ftrwrpr .ftrRight .ftradd {float:right; display:block; position:relative; margin-top:-13px; color:#ffffff; font-size: 0.750em; line-height:16px; text-align:right;}
    .ftrsoc .ftrTwitter a, 
	.ftrsoc .ftrFacebook a, 
	.ftrsoc .ftrTwitter a, 
	.ftrsoc .ftrShare a, 
	.ftrsoc .ftrYouTube a, 
	.ftrsoc .ftrInstagram a {display:block; width:23px; height:23px;}
	
	
    .ftrwrpr .ftrRight .ftrsoc .ftrFacebook {float:left; display:block; position:relative; width:23px; height:23px; background:url(/cms/images/layout/fb.png) no-repeat 0 0; text-indent:-99999em; margin-right:6px;}
    .ftrsoc .ftrTwitter {float:left; display:block; position:relative; width:23px; height:23px; background:url(/cms/images/layout/tw.png) no-repeat 0 0; text-indent:-99999em; margin-right:6px;}
    .ftrsoc .ftrShare {float:left; display:block; position:relative; width:23px; height:23px; background:url(/cms/images/layout/sh.png) no-repeat 0 0; text-indent:-99999em; margin-right:6px;}
    .ftrsoc .ftrYouTube {float:left; display:block; position:relative; width:23px; height:23px; background:url(/cms/images/layout/yt.png) no-repeat 0 0; text-indent:-99999em; margin-right:6px;}
	.ftrsoc .ftrInstagram {float:left; display:block; position:relative; width:23px; height:23px; background:url(/cms/images/layout/instagram.png) no-repeat 0 0; text-indent:-99999em; margin-right:6px;}

    .ContWrprB {margin: 20px auto 0px auto; padding-bottom:104px;}
    
	.HLeft {padding: 20px 0 0 10px}
	.HRight {padding-right: 10px;}
	.IRight .rRailOne,
	.OneRail .lRailOne {padding-bottom:100px;}


	
	.IRight h1, .OneRail h1, .lRail h1 {font-size: 1.550em;}
	.IRight h2, .OneRail h2, .lRail h2 {font-size: 1.325em;}
	.IRight h3, .OneRail h3, .lRail h3 {font-size: 1.250em;}
	.IRight h4, .OneRail h4, .lRail h4 {font-size: 1.125em;}
	.IRight h5, .OneRail h5, .lRail h5 {font-size: 1em;}

	.pageHeading h1 { font-weight: 600; font-size: 2em; letter-spacing:-2px; margin: 4px 0 0 0; padding: 4px 0px 15px 0px;  }
	
    .HLeft .banner-list-wrapper {display: block !important; border-bottom: 1px solid #000000;-webkit-box-shadow: 0 2px 2px 0 rgba(1,1,1,0.25); box-shadow: 0 2px 2px 0 rgba(1,1,1,0.25);}
	.HLeft .BnSqB {}
	.HLeft .BnSqB .BnSqBIn {
		padding: 10px 0; 
		margin: 0; 
		border-bottom: 1px solid #373737;
		border-top: 1px solid #000000;
		background: #424242; /* Old browsers */
		background: -moz-radial-gradient(center, ellipse cover,  #424242 0%, #1c1c1c 89%, #000000 96%); /* FF3.6+ */
		background: -webkit-gradient(radial, center center, 0px, center center, 100%, color-stop(0%,#424242), color-stop(89%,#1c1c1c), color-stop(96%,#000000)); /* Chrome,Safari4+ */
		background: -webkit-radial-gradient(center, ellipse cover,  #424242 0%,#1c1c1c 89%,#000000 96%); /* Chrome10+,Safari5.1+ */
		background: -o-radial-gradient(center, ellipse cover,  #424242 0%,#1c1c1c 89%,#000000 96%); /* Opera 12+ */
		background: -ms-radial-gradient(center, ellipse cover,  #424242 0%,#1c1c1c 89%,#000000 96%); /* IE10+ */
		background: radial-gradient(ellipse at center,  #424242 0%,#1c1c1c 89%,#000000 96%); /* W3C */
		filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#424242', endColorstr='#000000',GradientType=1 ); /* IE6-9 fallback on horizontal gradient */
	}
	.HLeft .BnSqB .BnSqBIn:hover,
	.HLeft .BnSqB .BnSqBIn:focus,
	.HLeft .BnSqB .BnSqBIn:active {background: #1c1c1c;}
	.HLeft .BnSqB .BnSqBIn p.bnr {width: 25%; display: inline-block; float: left; margin: 0; padding: 0 10px; -webkit-box-sizing: border-box; box-sizing: border-box;}
	.HLeft .BnSqB .BnSqBIn p.bnr img {width: auto !important; height: 100% !important; max-height: 25px;}
	.HLeft .BnSqB .BnSqBIn .clear {display: none;}
	.HLeft .BnSqB .BnSqBIn h2.hdr {font-family: "Open Sans"; font-size: 0.875em; font-weight: normal; width: 75%; display: inline-block; margin: 0; padding: 0 10px; -webkit-box-sizing: border-box; box-sizing: border-box;}
	.HLeft .BnSqB .BnSqBIn span.bnlnk {color: #ffffff;}
	.HLeft .BnSqB .BnSqBIn span.bnlnk:hover {text-decoration: none;}
    
	.ContWrprW {margin: 20px auto 0px auto; min-height:300px; border: 10px solid #1e896a; background:#ffffff; color:#231f20;}
	.ILeft {min-height:350px; margin: 0px 0px 0px -10px; border-right: 10px solid #1e896a; padding-bottom:104px;}
	.IRight {padding: 0 10px 0 0;}
	.IRight .lRail {margin: 15px 0px 0px -10px; padding-bottom: 100px;}	
	.IRight .rRail {padding-bottom: 100px;}
	
	ul.lnav {margin: 0px 0px 15px 0px; display: block !important;}
	ul.lnav li {background:url(/cms/images/layout/lnavund.png) no-repeat left bottom;}
	ul.lnav a, ul.lnav a:link, ul.lnav a:visited {font-size: 0.813em; font-weight: 600; line-height: 1.23em;}
	ul.lnav ul {background: #0d4e6b url(/cms/images/layout/lnavund.png) no-repeat left bottom;}
	ul.lnav ul li:last-child {border-bottom:none;}
	
	.documentFilter label {padding: 6px 0 0}
	.directoryFilter { font-size: 0.813em; line-height: 2em;}
	.directoryFilterLetters {margin-bottom: 8px;}
	
	.desktop-floatRight {float: right;}
	.sortStatus {float:left; padding-top:5px;}
	.genericPager {float:right; padding:0px 0px 0px 10px;}
	
	.rRail .InterRaildocumentsSummaryWrpr h3,
	.IRail .InterRaildocumentsSummaryWrpr h3 { font-size: 1em;}
	
	/*	TABLE FIXES
	------------------------- */
	.table {border: 1px solid #d8d8d8; border-bottom: 0 none;}
	.table-header .table-cell,
	.column-header {border-right: 1px solid #cccccc;}
	.table-content .table-cell,
	.column-content {border-right: 1px solid #d8d8d8;}
	.table-header .table-cell:last-child,
	.table-content .table-cell:last-child,
	.table-column:last-child .column-header,
	.table-column:last-child .column-content {border-right: 0 none;}
	
	.table-green .table-header .table-cell {border-right: 1px solid #89b889;}
	
	.table-column {float: left;}
	.table-two-column .table-column {width: 50%;}
	.table-three-column .table-column {width: 33.333%;}
    
    .desktopImgRt {width: 250px; float: right;}	
}

/* 16px baseline (861px) */
@media only screen and (min-width: 53.813em) {
    .info-wrapper {display: inline-block;}
	.header a.sitelogo, 
	.header a.sitelogo:link, 
	.header a.sitelogo:visited {font-size: 3em;}
	.header .siteSearch { margin: 26px 10px 0px 7px; }
	
	.IRight h1, .OneRail h1, .lRail h1 {font-size: 1.750em;}
	.IRight h2, .OneRail h2, .lRail h2 {font-size: 1.625em;}
	.IRight h3, .OneRail h3, .lRail h3 {font-size: 1.500em;}
	.IRight h4, .OneRail h4, .lRail h4 {font-size: 1.375em;}
	.IRight h5, .OneRail h5, .lRail h5 {font-size: 1.250em;}
	.IRight .lRail {}
	
	.rRail .InterRaildocumentsSummaryWrpr h3,
	.IRail .InterRaildocumentsSummaryWrpr h3 { font-size: 1.250em;}


}

/* 16px baseline (960px) */
@media only screen and (min-width: 60.000em) {
    .header a.sitelogo, 
	.header a.sitelogo:link, 
	.header a.sitelogo:visited {font-size: 3.25em;}
	.header .siteSearch { margin: 20px 10px 0px 7px; }
	
	.OneRail {margin: 0px 20px;}
	.HLeft {padding: 30px 0 0 25px}
	.HRight {padding: 10px 20px 0 0; margin-left: -10px}
	
	.HLeft .banner-list-wrapper {border-bottom: 0 none; -webkit-box-shadow:none; box-shadow: none;}
	.HLeft .BnSqB {float:left; display: table;  width:130px; height:113px; margin: 0px 0px 0px 0px; background: url(/cms/images/layout/BnSqB.png) no-repeat right center;}
    .HLeft .BnSqB .BnSqBIn {margin: 17px auto 0px auto; width:112px; height:78px; text-align:center; padding: 0; background: none; border: 0 none;}
    .HLeft .BnSqB .BnSqBIn p.bnr {display:table-cell; vertical-align:middle; width:112px; height:45px; text-align:center; padding: 0; float: none;}
	.HLeft .BnSqB .BnSqBIn p.bnr img {width: auto !important; height: auto !important; max-height: none;}
	.HLeft .BnSqB .BnSqBIn .clear {display: block;}
    .HLeft .BnSqB .BnSqBIn h2.hdr {
	    display:table-cell; 
	    vertical-align:middle; 
	    width:112px; 
	    height:30px; 
	    text-align:center; 
	    text-align:center; 
	    margin: 0px 0px 0px 0px; 
	    padding:0px; 
	    font-weight:bold; 
	    font-family: 'Open Sans', Arial, sans-serif; 
	    font-size: 0.750em; 
	    text-shadow: 1px 1px #000000;
	    text-transform:uppercase; 
	    text-decoration:none; 
	    line-height:16px; 
	    letter-spacing:0px;
		float: none;
    }
    .HLeft .BnSqB .BnSqBIn span.bnlnk {
	    text-align:center; 
	    margin: 0px 0px 0px 0px;
	    padding:0px; 
	    color:#ffffff; 
	    font-weight:bold; 
	    font-family: 'Open Sans', Arial, sans-serif;
	    text-shadow: 1px 1px #000000; 
	    text-transform:uppercase; 
	    text-decoration:none; 
	    line-height:16px; 
	    letter-spacing:0px;
    }
    .HLeft .BnSqB .BnSqBIn span.bnlnk:hover {text-decoration:none; opacity:0.7; -moz-opacity:0.7; filter:alpha(opacity=70);}
    .HLeft .BnSqB .BnSqBIn:hover {text-decoration:none; opacity:0.7; -moz-opacity:0.7; filter:alpha(opacity=70); cursor:pointer;}
	
	.IRight {padding: 10px 10px 100px 20px;}
	
	.IRight h1, .OneRail h1, .lRail h1 {font-size: 1.750em;}
	.IRight h2, .OneRail h2, .lRail h2 {font-size: 1.625em;}
	.IRight h3, .OneRail h3, .lRail h3 {font-size: 1.500em;}
	.IRight h4, .OneRail h4, .lRail h4 {font-size: 1.375em;}
	.IRight h5, .OneRail h5, .lRail h5 {font-size: 1.250em;}
	
	.pageHeading h1 { font-size: 2.250em;}
		
}

.IRight .rRail > ol li p,
.IRight .lRail > ol li p {font-size: 0.813em;line-height: 1.5em;}
.blockUI.blockMsg.blockPage{
	position: absolute !important;
}

.map img {
    max-width: none !important; 
}











