/* ## 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: bold;
}

/*
 * 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 Adjustments  =============== */

body { font-family: 'Open Sans', sans-serif; }

::-moz-selection { background: #3197fc; text-shadow: none; }
::selection { background: #3197fc; text-shadow: none; }

hr { display: block; height: 1px; border: 0; border-top: 1px solid #ccc; margin: 1em 0; padding: 0;}
img { max-width:100% !important; height:auto !important; vertical-align: middle; }
.iframeVideoContainer {
  position: relative;
  padding-bottom: 20%;
  height: 0;
}
.video-container {
    margin: 1em 0;
    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%;
}

fieldset {border: 0;margin: 0; padding: 0; }
textarea { resize: vertical; }

p { margin:0 0 1em 0; }

.ir { background-color: transparent; border: 0; overflow: hidden; *text-indent: -9999px; }
.ir:before { content: ""; display: block; width: 0; height: 100%; }
.hidden { display: none; visibility: hidden; }
.visuallyHidden { border: 0; clip: rect(0 0 0 0); height: 1px; margin: -1px; overflow: hidden; padding: 0; position: absolute; width: 1px; }
.visuallyHidden.focusable:active, .visuallyHidden.focusable:focus { clip: auto; height: auto; margin: 0; overflow: visible; position: static; width: auto; }
.invisible { visibility: hidden; }
.clearfix:before, .clearfix:after { content: ""; display: table; }
.clearfix:after { clear: both; }
.clearfix { zoom: 1; }

.hide       { display:none; }
.smallest   { font-size:.8em; }
.smaller    { font-size:.9em; }
.larger     { font-size:1.1em; }
.largest    { font-size:1.2em; }
.bold       { font-weight:bold; }
.italic     { font-style:italic !important; }
.strike     {text-decoration:line-through !important;}

.red, .red:visited          { color:#f00 !important; }
.green, .green:visited      { color:#390 !important; }
.lgreen, .lgreen:visited    { color:#97937d !important; }

.bgYellow { background:yellow; }
.bgGreen { background:lime; }
.vtop { vertical-align:top; }
.center { text-align:center; }
.left { text-align:left; }
.right { text-align:right; }
.floatLeft { float:left; }
.floatRight { float:right; }
.imgLeft { float:left; margin-right:5px; padding:5px; border:1px solid #c4c4c4; }
.imgRight { float:right; margin-left:5px; padding:5px; border:1px solid #c4c4c4; }
.imgCenter img { display: block; margin:0 auto; }
.nowrap { white-space:nowrap; }
.borderless { border:0; border-collapse:collapse; }
.breakforprint { page-break-after:always; }
.clear { overflow:hidden; clear:both; height:0; margin:0; font-size:1px; line-height:0; }
.skip { position:absolute; left:-10000px; width:1px; height:1px; overflow:hidden; }
.important { color:red; font-weight:bold; text-transform:uppercase; }


/* ## Base List styles ## */
ul, ol { margin:0 0 1em; }
.noBullet { padding:0 0 0 1em; list-style-type:none; }
.noIndent { padding:0; list-style-type:none; }
.bulletSquare { list-style-type:square; }

/* ## Note/hint text or link ## */
.note { margin:0 7px; font-size:.8em; color:#4e4e4e; }
.note a, .note a:visited { text-decoration:underline; }


/* ================================================================
   PRIMARY LAYOUT STYLES 
   ================================================================ */

/* Enter unique styles for site here */

/* ## Disabled Form Fields ## */
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; }

/* Headings */

h1, h2, h3, h4, h5, h6 { font-family: "Goudy Old Style", Garamond, "Big Caslon", "Times New Roman", serif; margin:.75em 0; }
h1, h2 { font-weight:normal; }
h5, h6 { font-size:1em; }
h1 {  }
h2 {  }
h3 {  }
h4 { font-size:1.1em; }
h5 {  }
h6 {  }

.pageHeading { font-family: "Goudy Old Style", Garamond, "Big Caslon", "Times New Roman", serif; font-size:2.250em; margin-top:0;}
.pageSubHeading { font-family: "Goudy Old Style", Garamond, "Big Caslon", "Times New Roman", serif; font-size:1.313em; font-weight:bold; text-transform:uppercase; }
.modTitle { font-size:1.375em; margin:.545em 0; }

/* Removed :link from the list to help cut down on writing time and prevent the need for extra specificity for classes */
a { color:#760010; text-decoration:none; }
a:hover, a:focus { text-decoration:underline; }
a:active, a:focus { outline:0; }
.mainBody a { 
  -webkit-transition: all 0.2s ease-in-out; 
     -moz-transition: all 0.2s ease-in-out; 
       -o-transition: all 0.2s ease-in-out; 
          transition: all 0.2s ease-in-out; 
}
.more { color: rgb(131,10,15); font-size:.875em; font-weight:700; text-decoration:none; text-transform:uppercase; }
.btnText { margin:0; padding:0; color:#760010; text-decoration:none; border:0; background:none; }
.btnText:hover { text-decoration:underline; }


/* ## Link Modifiers ## */
a .text { text-decoration:underline; }
a:hover .text, a:active .text, a:focus .text { text-decoration:none; }
a [class^="icon-"] { text-decoration:none; }
a.removeLink { color:#f00; font-size:0.9em; }


/* ## Link Lists ## */
/* We use '<ul class="linkList">' when setting a list of organized links. */
ul.linkList {margin:0 0 15px 0; padding:0; list-style-type:none;}
ul.linkList li {margin-bottom:8px;}
ul.linkList a,
ul.linkList a:visited { text-decoration:none;}
ul.linkList a:hover,
ul.linkList a:active {text-decoration:underline;}


/* ## Start Up Layout - Use, modify, or delete as need be ## */
body { background:#fff; }
.mainBody { overflow-x:hidden; }
.container { max-width: 60em; }
#header { }
#subHeader { background:#EDF4DE url('/cms/images/layout/bkgGreenNoise.png'); padding:30px 0;
  -webkit-box-shadow: inset 0px 0px 15px -5px #555;
          box-shadow: inset 0px 0px 15px -5px #555;
}
#siteBody { min-height:300px; padding:30px 0; }
#footer { background:#EDF4DE url('/cms/images/layout/bkgGreenNoise.png'); border-top: 10px solid #D8DEC1; padding:20px 0;
  -webkit-box-shadow: inset 0px 20px 20px -27px #555;
          box-shadow: inset 0px 20px 20px -27px #555;
 } 


/* ## Site Header ## */
.siteHeader {position:relative; min-height:215px; z-index:101;}
.siteHeader a.sitelogo,
.siteHeader a.sitelogo:visited { background:url(/cms/images/layout/logo.png) no-repeat 0 0; display:block; height:149px; width:232px; margin:15px 0 0 10px;  text-indent:-9999em;}

/* Used for HighDPI devices for alternative logo */
/* uncomment for use
@media only screen and (min--moz-device-pixel-ratio: 1.5),
    (-o-min-device-pixel-ratio: 3/2),
    (-webkit-min-device-pixel-ratio: 1.5),
    (min-device-pixel-ratio: 1.5) {

	.siteHeader a.sitelogo,
	.siteHeader a.sitelogo:visited {
		background-image:url(/cms/images/dev/placeholders/AE_logo_tag_3color_300w_2x.png);
	}
}
*/
.siteHeader .tagline { background:url(/cms/images/layout/tagline.png) no-repeat 0 0; display:block; height:18px; width:300px; margin:15px 0 15px 10px; text-indent:-9999em; }

.siteHeader .donate { 
  -webkit-transition: top 0.3s ease-in-out; 
          transition: top 0.3s ease-in-out; 
  background:url(/cms/images/layout/bkgGiveTab.png) no-repeat 0 0; 
  overflow:hidden;  
  height:72px; 
  width:92px;
  position:absolute; 
  right:0; top: -12px;
  z-index:2 
}
.siteHeader .donate .donateTab { 
border: 0;
font-size: 1.125em;
font-weight: 700;
text-transform: uppercase;
display: block;
text-align: center;
margin-top: 12px;
padding: 9px 5px 0 5px;
}
.siteHeader .donate:focus, 
.siteHeader .donate:hover { top:0; } 
.siteHeader .donate .donateTab,
.siteHeader .donate .donateTab:visited { color:#760010; }
.siteHeader .donate .donateTab:hover,
.siteHeader .donate .donateTab:focus { color:#FFF; text-decoration: none; }

.siteHeader .hdrPhonenum {
    background-position: 100% 0;
    background-repeat: no-repeat;
    bottom: 12px;
    display: block;
    height: 34px;
    position: absolute;
    right: 12px;
    text-indent: -9999em;
    width: 200px;
}
.headerLinks,
.headerLinks2 { background:#FFF; font-size: 0.750em; padding: 10px 0; margin:0; text-align: center; }
.headerLinks a,
.headerLinks2 a { color:#cd0230; margin: 0 3px; text-decoration: none; }

.uk .headerLinks a,
.uk .headerLinks2 a { color:#2B6741; margin: 0 3px; text-decoration: none; }

.headerLinks a:hover, 
.headerLinks a:active { text-decoration: underline; }



/* ## Disabled Form Fields ## */

.siteSearch { color:#000; margin:40px 0 0 0; padding:15px 5%; position:absolute; left:-100%; width:90%;
	-webkit-transition: all 0.2s ease-in-out; 
     -moz-transition: all 0.2s ease-in-out; 
       -o-transition: all 0.2s ease-in-out; 
          transition: all 0.2s ease-in-out; }
.siteSearch.showSearch { left:0; background:#50030D; }
.siteSearch label { display: none; }
.siteSearch input[type="text"].siteSearchText { width:75%; margin:0; display:inline-block; }
.siteSearch .siteSearchBtn { background:url(/cms/images/layout/btnSiteSearch.png) no-repeat 0 0; border:0; display:inline-block; height:45px; width:62px; margin:0 0 0 10px; padding:0; position:relative; text-indent:-9999em; z-index:1; 
  -webkit-border-radius: 10px;
          border-radius: 10px;
  background-clip: padding-box;
  -webkit-box-shadow: 0px 2px 12px -1px #999;
          box-shadow: 0px 2px 12px -1px #999;
	-webkit-transition: all 0.2s ease-out; 
     -moz-transition: all 0.2s ease-out; 
       -o-transition: all 0.2s ease-out; 
          transition: all 0.2s ease-out; 	
}
.siteSearch .siteSearchBtn:focus,
.siteSearch .siteSearchBtn:hover { outline:0;
	-webkit-box-shadow: 0px 2px 12px -1px #333;
          box-shadow: 0px 2px 12px -1px #333; }
					
.siteSearch .siteSearchBtn:active { background-image:url(/cms/images/layout/btnSiteSearchSwap.png); }

.dropdownWrap { display:none; position:absolute; bottom:6px; right:10px; }

@media only screen and (min-width:30em){
	.siteHeader .tagline:after { background:url(/cms/images/layout/gfxStTherese.png) no-repeat 0 0; content:""; display:block; height:215px; width:300px; position:absolute; top:0; left:225px;}
}
@media only screen and (min-width: 50.063em){
	.headerLinks { background:transparent; position:absolute; top:50px; right:0; text-align:left; width:400px; }	
	.headerLinks2 { background:transparent; position:absolute; top:169px; right:5px; text-align:left; width:400px; }	
	.uk .headerLinks2 { background:transparent; position:absolute; top:169px; right:5px; text-align:left; width:400px; }
	.uk .headerLinks2 a {color:#2B6741;}
	
	
	.siteSearch { display:block; background:transparent; margin:0; max-width:400px; padding:0; top:110px; right:0; left:auto; }
	.siteSearch input[type="text"].siteSearchText { width:80%; }
	.siteSearch.showSearch { left:auto; right:0; background:transparent; }
	.dropdownWrap { display:block; float:right; }
}
/* ==========================================================================
   Global Modules
   ========================================================================== */

.mod { position: relative; margin: 0 0 1em 0; }
.title { position: relative; margin: 0 0 1em; }
.titleAlt { margin:0 0 0.1em; font-size:1.2em; }
.titleAlt2 {  }
.title .more {	position: absolute;	top:0;	right: 0;	font-size: 0.6em; }
.modContent{	padding: 20px; }
.modContent ul.itemList figure.aside a img {max-width:initial !important;}

/* Item Lists Content
   ========================================================================== */

.itemList { 	margin:0; 	padding:0; 	list-style:none; }

.item { display: table;	padding: 1em 0; width: 100%; border-top: 1px solid #ccc; }
.item:first-child { border-top:0; padding-top:0; }
.item:last-child { padding-bottom: 0; }

.item > .content {	display: table-cell;	width: 100%;	vertical-align: top; }
.item .contentExtra { display: table-cell; vertical-align: top; }

.content .title { margin:0; }
.itemList .content p { margin: 0; }
.content .date { font-size:0.85em; }

/* Item Media
   ========================================================================== */

.aside { display: table-cell; padding: 0 15px 0 0; text-align: center; }
.caption {	display: block;	font-size: 0.8em;	line-height: 1.2em; }

/* Media Queries for Item Lists 
  ========================================================================== */

@media (max-width : 400px) { 
	.item { display: block; }
	.item > .content { display: block;}
	.item > .aside { display: block;}
}

/* News
   ========================================================================== */

.article > .aside {	float:right; 	margin: 1em;}
.meta{	margin:0.5em 0;}
.meta > div {	float: left;}
.meta .social-tools{	float: right;}

/* ==========================================================================
   Filters
   ========================================================================== */

.filter{	padding: 1em;	border: 1px solid #AAA;	background: #EDF4DE;}
.filter-options{	float: left;}
.filter-actions{	float: right;}

.filters {float:left; display:inline; margin:0 0 5px 0;}
.filters .filterList {float:left; display:inline; margin-bottom:5px;}
.filters label { display:inline; margin:0 5px 0 0; font-weight:bold; font-size:0.8em; }
.filters .sortList {float:left; display:inline;  padding:3px 10px 0;}
.filters .sortList label {margin:0 5px 0 0;}
.filters select {margin-right:10px;}
.filters .sortList .last {border-right:0;}
.filters .sortItem {display:inline; margin:0; padding:2px 4px; font-size:0.8em; border-right:1px solid #999999;}
.filters .sortItem a, .filters .sortItem a:visited {padding-right:12px; text-decoration:none; background:url(/cms/images/layout/arrow_sortorder.gif) no-repeat 100% 2px;}
.filters .sortItem a.down, .filters .sortItem a.down:visited {font-weight:bold; background-position:100% -18px;}
.filters .sortItem a.up, .filters .sortItem a.up:visited {font-weight:bold; background-position:100% -38px;}

/* Pagination
   ========================================================================== */

.paging {	padding: 1em; overflow: hidden; }
.sortStatus,
.paging-results { float: left; }
.genericPager,
.paging-list { float: right; }
.paging-list ul {	display: block;	padding: 0;	margin: 0; }
.paging-list li{	display: block;	padding: 0;	margin: 0;	border: 1px solid #002B40;	border-left-width: 0;	float: left; }
.paging-list li:first-child{	border-left-width: 1px; }
.paging-list li a,
.paging-list li span {	display: block;	min-width: 30px;	padding: 2px 5px;	text-align: center; }
.paging-list li a {	/* Link State */ }
.paging-list li span {	/* Current Page State */}
.paging-list li.disabled { 	display: none;}
.paging-list li.disabled+li { 	border-left-width: 1px;}
.paging-list li.disabled+.all {	border-left-width: 0;}

.pagination { overflow: hidden; text-align:right; }
.pagination .view {float:right; display:inline; padding:0 0 0 10px;}
.pagination .view a,
.pagination .view a:visited { display:inline-block; text-decoration:none; padding:2px 6px;}

.pagination .paging { float:right; display:inline; padding:0 10px; }
.pagination .paging a { color:#939598; float:left; display:inline; margin:0 3px; padding:2px 6px; text-align:center; text-decoration:none; }
.pagination .paging a:focus,
.pagination .paging a:hover  { color:#760010; }
.pagination .paging .active { float:left; display:inline; margin:0 4px; padding:2px 6px; text-align:center; color:#000; background-color:#d2d2d2; text-decoration:none; border:1px solid #969696;}
.pagination .paging .total { float:left; display:block; padding-top:2px; color:#999999;}
.pagination .paging .prev,
.pagination .paging .next { text-transform:uppercase; }

/* ##  Generic Pager  ## */

.genericPager {}
.genericPager ul {list-style-type: none; margin:0; padding:0;}
.genericPager li {float:left; display:block; font-size:11px; margin:0 5px 0 0;}
.genericPager li a, .genericPager li span {float:left; color:#003871; padding:2px 4px; border:1px solid #AAA; text-decoration:none; }
.genericPager li a:hover, .genericPager li a:focus { color:#000; background-color:#EDF4DE; border: 1px solid #AAA; text-decoration:none; }
.genericPager .nolink {color:#fff; border:1px solid #ddd; padding:2px 4px;}
.genericPager .active {color:#686868; border:1px solid #ddd; padding:2px 4px; background-color:#EDF4DE;}

.socialMediaControls { float:right; overflow:hidden; }
.socialMediaControls > div { padding:0 3px; }

.sw_stack .grid_8 .addthis_toolbox { margin:20px 0; }


/* ==============================================================
   GLOBAL STYLES 
   ============================================================== */

/*--- where is this used at? ----*/
.alert { 		
	overflow:hidden;
	border: 1px solid #FE0000; 
	margin: 1em 0;
	padding: 10px;
	min-height: 50px;	
	color: #fff;
	background-color: #FEFF99;	
}
.alert a { color:#fff; }

.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; }

.bdrDash        { border:1px dashed #555244; }
.bdrDashTop     { border-top:1px dashed #999; }
.bdrDashRight   { border-right:1px dashed #999; }
.bdrDashBottom  { border-bottom:1px dashed #999; }
.bdrDashLeft    { border-left:1px dashed #999; }

.alternate	{background-color: #EEE;}
.row		{background-color: #FFF;}

.table { display: block; }
.table-row { display: block; }
.table-cell { display: inline-block; }

@media only screen and (min-width:40em) {
  .table { display: table; }
  .table-row { display: table-row; }
  .table-cell { display: table-cell; vertical-align:middle; }
}

/* ##  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;}

 
/* ##  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:11px;color:#999999;font-weight:bold;}
.toolTipName {font-size:14px;color:#666666;font-weight:bold;margin-bottom:14px;}




/* ##  Smart Bug  ## */

.smartbug ul { list-style-type:none; background-color:#ccc; font-size:10px; 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:visited { text-decoration:none; display:block; color:#000; padding:5px; }
.smartbug a:hover { background-color:#999; text-decoration:underline; }


/* ##  Master Overlay Styles ## */

.siteOverlay {
    display:none;
    width:550px;
    max-width:95%;
    min-height:1px;
    background-color:#fff;
    z-index:1000;
    -webkit-border-radius:5px;    
       -moz-border-radius:5px;
            border-radius:5px;
    -webkit-box-shadow:0 0 15px #333;
       -moz-box-shadow:0 0 15px #333;
            box-shadow:0 0 15px #333;
}
.siteOverlay .overlayBar {position:relative; padding:7px 10px; text-align:right; border-bottom:1px solid #e6e6e6;}
.siteOverlay .overlayClose {display:inline-block; cursor:pointer; z-index:5;}
.siteOverlay .overlayContent {padding:15px;}
.siteOverlay .overlayContent .preview {display:block; margin:0 auto;}


/* =================================================================
                           MODULE STYLES 
===================================================================*/

.mainMod { border:1px solid #D1D3D4; display:block; margin: 0 0 1em 0; }
.mainMod .modHead { border-bottom:1px solid #D1D3D4; text-transform:uppercase; overflow: hidden; padding: 0 20px; text-align: center;}

.mainMod .modHead .next,
.mainMod .modHead .prev,
.mainMod .modHead .prev + .sep { color:#D1D3D4; }
.mainMod .modHead .prev:focus,
.mainMod .modHead .next:focus,
.mainMod .modHead .prev:hover,
.mainMod .modHead .next:hover { color:#760010; cursor:pointer; }
.mainMod .modHead .sep { margin:0 10px; }
.mainMod .modHead .table { width:100%; }
.mainMod .modHead .table-cell { display: block; margin-bottom: 5px; }
.mainMod .modHead .table-cell + .table-cell .right { display: block; text-align: center; }
.mainMod .modHead .modTitle { color:#760010; display: block; font-family:'Open Sans', sans-serif;  font-size:1.125em; font-weight:700; padding:0; margin:.5em 0; text-transform:uppercase; }
.mainMod .modHead .date { display: block; }
.mainMod .modHead .modTitle + .sep { display: none; }
.mainMod .modContent { overflow:hidden; }
.mainMod .modContent .aside { margin:0 auto; padding:0; width: 200px; }
.mainMod .modContent .content { width: auto; }
.mainMod .modFoot { border-top:1px solid #D1D3D4; overflow:hidden; }
.mainMod .credit { font-style:italic; text-align:right; }
.mainMod .item .date { color:#939598; font-size:.750em; }
.mainMod .item p { margin-bottom:1em; }

.dailyReflectionMenu { list-style:none; margin:10px; padding:0; overflow:hidden; }
.dailyReflectionMenu li { display:block; line-height:2em; }
.dailyReflectionMenu li a { font-size:11px; font-weight:bold; 
-webkit-transition: all 0.2s ease-in-out; 
   -moz-transition: all 0.2s ease-in-out; 
     -o-transition: all 0.2s ease-in-out;
        transition: all 0.2s ease-in-out; 
        }
.dailyReflectionMenu li a:focus,
.dailyReflectionMenu li a:hover {  }
.dailyReflectionMenu .at16nc.at16t_email { display:none; }
.dailyReflectionMenu.addthis_default_style .at300b { padding:0; float: none; }


@media only screen and (max-width:40em) { 
.dailyScriptureReadings { display: block; }
.dailyScriptureReadings > .content { display: block; margin-top:20px; text-align: center; }
.dailyScriptureReadings > .aside { display: block; }
}

@media only screen and (min-width:40em) {
  .dailyReflectionMenu li { width:33%; line-height:1em; float:left; }
  .dailyReflectionMenu li:nth-child(3n+1) a { margin-left: 40px; } 

  .mainMod .modHead { margin-top:1em; padding-bottom:1em; text-align: left; }
  .mainMod .modHead .table {  }
  .mainMod .modHead .modTitle,
  .mainMod .modHead .date,
  .mainMod .modHead .modTitle + .sep { display: inline; }
  .mainMod .modHead .table-cell { display: table-cell; }
  .mainMod .modHead .table-cell + .table-cell .right { text-align: right; }
  .mainMod .modContent .aside { margin:0; }
  .mainMod .modContent .content { padding-left:30px; }
  .dailyScriptureModule .mainMod + .mainMod > .modContent > .content { padding: 0; }
}

.prayersOfPetitionModule {  }
.prayersOfPetitionModule .modContent { padding:0; }
.prayersOfPetitionModule .modContent .itemList { padding:20px 0; }
.prayersOfPetitionModule .modContent .item .content { padding:0 20px; }
.prayersOfPetitionModule .petitioner { font-style:italic; }
.prayersOfPetitionModule .petitionerLocation { font-style:normal; }

.prayerWrap { padding:0; border:1px solid #D1D3D4; margin-bottom:25px; }
.prayerWrap .aside { width:164px; padding:0; }
.prayerWrap .content { width:auto; }
.prayerWrap .content .prayerHeading { border-bottom:1px solid #D1D3D4; font-family: "Goudy Old Style", Garamond, "Big Caslon", "Times New Roman", serif; font-size:1em; text-transform:uppercase; line-height:50px; padding-left:20px; }
.prayerWrap .content .table { height:143px; }
.prayerWrap .content .table .table-cell { padding-left:20px; }
.prayerWrap .content .table .table-cell + .table-cell { padding:0 40px; width:160px; }

.novenaModule {}
.novenaQuote { text-align:center; }
.novenaQuote .quoteText { font-size:1.500em; font-style: italic; font-weight:400; margin:0; }
.novenaQuote .quoteCredit { color:#939598; }
.novenaImage, .novenaGiftImage { float:right; margin: 0 0 15px 15px;}
.novenaGift { margin:1em 0; overflow:hidden;}





.intercessionMod .item { border: 1px solid #DEE2CC; padding: 1em 0 0; margin-bottom:20px; width: 100%; }
.intercessionMod .item .aside { border-bottom: 1px solid #DEE2CC; display: block; padding: 0; margin:0 20px; width:auto; }
.intercessionMod .item .aside .userName { font-weight: bold; }
.intercessionMod .item .aside .date, .intercessionMod .item .aside .time, .intercessionMod .item .aside .userCountry { font-size: .750em; }
.intercessionMod .item .aside .date + br { display: none; }
.intercessionMod .item .content { display: block; width: 100%; }
.intercessionMod .item .content .message { font-style: italic; margin:1em 0; padding: 0 20px; }

@media only screen and (min-width:37.500em) {
  .intercessionMod .item { padding: 1em 0; }
  .intercessionMod .item .aside { border-bottom: none; border-right: 1px solid #DEE2CC; display: table-cell; padding:0 20px; width:20%; }
  .intercessionMod .item .aside .date + br { display: block; }
  .intercessionMod .item .content { display: table-cell; width: 100%; }
  .intercessionMod .item .content .message { margin:0; }
}


.homepageCallout { background:#FFF; color:#000; display:block; font-weight:700; max-width:227px; margin:0 auto 20px auto; overflow:hidden;
  -webkit-box-shadow: 0px 2px 12px -1px #999;
          box-shadow: 0px 2px 12px -1px #999;
}
.homepageCallout:focus,
.homepageCallout:hover { text-decoration:none; 
  -webkit-box-shadow: 0px 2px 12px -1px #333;
          box-shadow: 0px 2px 12px -1px #333;}
.homepageCallout .title { display:block; font-family: "Goudy Old Style", Garamond, "Big Caslon", "Times New Roman", serif; font-size:1em; margin:1.3em 0; text-align:center; text-transform:uppercase; }
.homepageCallout a  {  }

.homepageButtons { border-bottom:2px solid #BCBEC0; margin-bottom:15px; }
.homepageButtons .btnFullWidth { margin-left:3px; margin-right:3px; }
.homepageButtons .btnFullWidth .btn { border:0; font-size:1.125em; font-weight:700; padding:10px 0; text-transform:uppercase; }
.homepageButtons .btnFullWidth .btn:visited { color:#FFF; }
.homepageButtons .btnFullWidth .btn:focus,
.homepageButtons .btnFullWidth .btn:hover { color:#FFF; }


/* ## Interior Page Banner ## */
.interiorBanner { background:#AAA; border:1px solid #D1D3D4; width:100%; z-index: 1; }
.interiorBanner p { margin:0 }
.interiorBanner img { height:200px; }

.toolsWrap {display:table; max-width:58.750em; margin:0 auto; width:100%; }
.storeItem .toolsWrap { border-bottom:1px solid #DDD; }


.pageToolsWrapper, .breadcrumbs, .stayConnected { display:table-cell; height:40px; vertical-align:middle; }

.stayConnected { width: 115px; padding-left: 10px; text-align: right; }
.stayConnected .btn { padding:5px 10px; font-size: .618em; }
.stayConnected .btn:hover,
.stayConnected .btn:focus { text-decoration: none; }
/* ##  Breadcrumb  ## */
.breadcrumbs { font-size:0.813em; }
.breadcrumbs a  { font-weight:700; text-decoration:none; }
.breadcrumbs a:hover, .breadcrumbs a:focus, .breadcrumbs a:active {  }
.breadcrumbs .default { color:#760010; font-size:1.25em; padding:0 10px; position: relative; }


/* ##  PAGE TOOLS  ## */
/* Print and Email icons and wrapper */
.pageToolsWrapper { text-align:right; }
.pageTool > span { display:none; }
.pageTool.recent { border-right:1px solid #D1D3D4; padding-right:10px; margin-right:10px; }
.pageToolsWrapper .addthis_toolbox { display:inline; }
.pageToolsWrapper .addthis_toolbox .at16nc { display:none; }
.pageToolsWrapper .addthis_toolbox a,
.pageToolsWrapper .addthis_toolbox a:visited { float:none; text-decoration: none; }
.pageToolsWrapper .addthis_toolbox a:focus,
.pageToolsWrapper .addthis_toolbox a:hover { text-decoration:underline; }

.addthis_toolbox.addthis_20x20_style a:focus,
.addthis_toolbox.addthis_20x20_style a:hover { text-decoration: none; }
.addthis_toolbox.addthis_20x20_style a { min-width: 35px; }
.addthis_toolbox.addthis_20x20_style a.addthis_button_tweet iframe { width: 100px !important; }

/* =================================================================
                        Alternate Template Styles
===================================================================*/

.altOneColumn .toolsWrap,
.altTwoColumnLeftRail .toolsWrap { border-bottom:1px solid #D1D3D4; }
.altOneColumn .pageHeading,
.altTwoColumnLeftRail .pageHeading { border-bottom:1px solid #D1D3D4; padding-bottom:10px; }

/* =================================================================
                        PRINT STYLES
===================================================================*/

@media print {
	* { background: transparent !important; color: #000 !important; box-shadow:none !important; text-shadow: none !important; }
	a, a:visited { text-decoration: underline; }
	a[href]:after { content: " (" attr(href) ")"; }
	abbr[title]:after { content: " (" attr(title) ")"; }
	.ir a:after, a[href^="javascript:"]:after, a[href^="#"]:after { content: ""; }
	pre, blockquote { border: 1px solid #999; page-break-inside: avoid; }
	thead { display: table-header-group; }
	tr, img { page-break-inside: avoid; }
	img { max-width: 100% !important; }
	@page { margin: 0.5cm; }
	p, h2, h3 { orphans: 3; widows: 3; }
	h2, h3 { page-break-after: avoid; }
}
.printBody {}
.printBody .sitelogo {background:url(/cms/images/layout/logo.png) no-repeat 0 0; display:block; height:149px; width:232px; margin:15px 0 0 10px;  text-indent:-9999em;}
.printBody .printPage { float:right; }
.printBody .container { max-width:41.250em; }
.printBody .mainNav { display:none; }
.printBody .pageHeading { border-bottom:1px solid #D1D3D4; padding-bottom:5px; }
#printFooter { border-top:1px solid #D1D3D4; }
#printFooter p { color:#760010; font-size:.750em; margin:1em 0; }
	


/* ===============  HOME SLIDESHOW  =============== */

.mainStage {position:relative; overflow:hidden; width:960px; height:425px; margin:0 20px;}

.mainStage h1 {color:#72A3D0; font:normal 14px Sone,'Arial Narrow',Arial,Helvetica,sans-serif; font-stretch:condensed; margin:0 0 0.6em 0; padding:0; text-transform:lowercase; text-shadow:1px 1px 1px #fff; z-index:2;}
.mainStage h1 sup {font-size:0.5em;}
.mainStage h3 {color:#72A3D0; font:bold 20px 'Arial Narrow',Arial,Helvetica,sans-serif; font-stretch:condensed; margin:0 0 0.6em; z-index:2;}
.mainStage-top {position:absolute; top:20px; border-bottom:1px dashed #bbc2c9; width:100%;padding-bottom:4px; z-index:1;}
.mainStage .items {width:20000em; position:absolute; clear:both}
.mainStage .single {float:left; position:relative; width:960px; height:425px; margin:0; padding:0;  background-repeat:no-repeat; background-position:right 0;}
.mainStage .single h3 { font-size:60px; text-transform:uppercase; margin:80px 0 0 0; text-shadow:2px 2px 2px #ABC9E4;}
.mainStage .single p {font-size:14px; font-weight:bold; color:#72a3d0; line-height:1.6em;}

.mainStage .navi {position:absolute; top:15px; right:0;}
.mainStage a.browse {background:url(/cms/images/slideshow/slide_arrows.png) no-repeat; display:block; width:25px; height:30px; cursor:pointer; font-size:1px; position:absolute; z-index:1000; top:0;}
.mainStage a.right {background-position:-25px 0; right:0;}
.mainStage a.right:hover {background-position:-25px -30px}
.mainStage a.right:active {background-position:-25px -60px}
.mainStage a.left {margin-left:0;right:35px;}
.mainStage a.left:hover {background-position:0 -30px;}
.mainStage a.left:active {background-position:0 -60px;}
.mainStage a.disabled {visibility:hidden !important;}


/* ## Button Styles ## */
/* 
    <span class="btnWrapper"><input class="btn" value="Submit" /></span>
	or
	<a href="#" class="btnWrapper"><span class="btn">Submit</a></a>
*/

.btnWrapper { display:inline-block; text-decoration:none !important; 
  -webkit-transition: all 0.2s ease-in-out; 
     -moz-transition: all 0.2s ease-in-out; 
       -o-transition: all 0.2s ease-in-out; 
          transition: all 0.2s ease-in-out; 
}
.btn { border:0; color:#FFF; display:inline-block; margin:0; padding:10px; font-size:.875em; font-weight:700; color:#fff; text-align:center; text-decoration:none; text-transform:uppercase; cursor:pointer; overflow:visible; background: rgb(131,10,15); /* Old browsers */
/* IE9 SVG, needs conditional override of 'filter' to 'none' */
background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIwJSIgeTI9IjEwMCUiPgogICAgPHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iIzgzMGEwZiIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiM1ZTA1MGEiIHN0b3Atb3BhY2l0eT0iMSIvPgogIDwvbGluZWFyR3JhZGllbnQ+CiAgPHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEiIGhlaWdodD0iMSIgZmlsbD0idXJsKCNncmFkLXVjZ2ctZ2VuZXJhdGVkKSIgLz4KPC9zdmc+);
background: -moz-linear-gradient(top,  rgba(131,10,15,1) 0%, rgba(94,5,10,1) 100%); /* FF3.6+ */
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(131,10,15,1)), color-stop(100%,rgba(94,5,10,1))); /* Chrome,Safari4+ */
background: -webkit-linear-gradient(top,  rgba(131,10,15,1) 0%,rgba(94,5,10,1) 100%); /* Chrome10+,Safari5.1+ */
background: -o-linear-gradient(top,  rgba(131,10,15,1) 0%,rgba(94,5,10,1) 100%); /* Opera 11.10+ */
background: -ms-linear-gradient(top,  rgba(131,10,15,1) 0%,rgba(94,5,10,1) 100%); /* IE10+ */
background: linear-gradient(to bottom,  rgba(131,10,15,1) 0%,rgba(94,5,10,1) 100%); /* W3C */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#830a0f', endColorstr='#5e050a',GradientType=0 ); /* IE6-8 */
  -webkit-box-shadow: 0px 5px 15px -5px #555;
          box-shadow: 0px 5px 15px -5px #555;
  -webkit-border-radius: 10px;
          border-radius: 10px;
  background-clip: padding-box;
  -webkit-transition: all 0.2s ease-in-out; 
     -moz-transition: all 0.2s ease-in-out; 
       -o-transition: all 0.2s ease-in-out; 
          transition: all 0.2s ease-in-out; 
 }
.btn:hover,
.btn:focus { color:#FFF; text-decoration:none; text-shadow: 0px 0px 2px #888; outline:none;
  -webkit-box-shadow: 0px 5px 15px -2px #555;
          box-shadow: 0px 5px 15px -2px #555;
}




.headerLinks .btn { border:0; color:#FFF; display:inline-block; margin:0 0 0 10px; padding:10px; font-size:.875em; font-weight:700; color:#fff; text-align:center; text-decoration:none; text-transform:uppercase; cursor:pointer; overflow:visible; background:#cd0230;
  -webkit-border-radius: 10px;
          border-radius: 10px;
  background-clip: padding-box;
  -webkit-transition: all 0.2s ease-in-out; 
     -moz-transition: all 0.2s ease-in-out; 
       -o-transition: all 0.2s ease-in-out; 
          transition: all 0.2s ease-in-out; 
 }
.headerLinks .btn:hover,
.headerLinks .btn:focus { color:#FFF; text-decoration:none; text-shadow: 0px 0px 2px #888; outline:none;
  -webkit-box-shadow: 0px 5px 15px -2px #555;
          box-shadow: 0px 5px 15px -2px #555;
}

.uk .headerLinks .btn { border:0; color:#FFF; display:inline-block; margin:0 0 0 10px; padding:10px; font-size:.875em; font-weight:700; text-align:center; text-decoration:none; text-transform:uppercase; cursor:pointer; overflow:visible; background:#2B6741;
  -webkit-border-radius: 10px;
          border-radius: 10px;
  background-clip: padding-box;
  -webkit-transition: all 0.2s ease-in-out; 
     -moz-transition: all 0.2s ease-in-out; 
       -o-transition: all 0.2s ease-in-out; 
          transition: all 0.2s ease-in-out; 
 }





.gold { 
	background: rgb(247,213,89); /* Old browsers */
	/* IE9 SVG, needs conditional override of 'filter' to 'none' */
	background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIwJSIgeTI9IjEwMCUiPgogICAgPHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iI2Y3ZDU1OSIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiNkYWIyMWUiIHN0b3Atb3BhY2l0eT0iMSIvPgogIDwvbGluZWFyR3JhZGllbnQ+CiAgPHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEiIGhlaWdodD0iMSIgZmlsbD0idXJsKCNncmFkLXVjZ2ctZ2VuZXJhdGVkKSIgLz4KPC9zdmc+);
	background: -moz-linear-gradient(top,  rgba(247,213,89,1) 0%, rgba(218,178,30,1) 100%); /* FF3.6+ */
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(247,213,89,1)), color-stop(100%,rgba(218,178,30,1))); /* Chrome,Safari4+ */
	background: -webkit-linear-gradient(top,  rgba(247,213,89,1) 0%,rgba(218,178,30,1) 100%); /* Chrome10+,Safari5.1+ */
	background: -o-linear-gradient(top,  rgba(247,213,89,1) 0%,rgba(218,178,30,1) 100%); /* Opera 11.10+ */
	background: -ms-linear-gradient(top,  rgba(247,213,89,1) 0%,rgba(218,178,30,1) 100%); /* IE10+ */
	background: linear-gradient(to bottom,  rgba(247,213,89,1) 0%,rgba(218,178,30,1) 100%); /* W3C */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f7d559', endColorstr='#dab21e',GradientType=0 ); /* IE6-8 */
 }
.gold:hover,
.gold:focus { color:#FFF; }

.emerald { background: rgb(75,133,99); /* Old browsers */
/* IE9 SVG, needs conditional override of 'filter' to 'none' */
background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIwJSIgeTI9IjEwMCUiPgogICAgPHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iIzRiODU2MyIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiMyMDVjMzUiIHN0b3Atb3BhY2l0eT0iMSIvPgogIDwvbGluZWFyR3JhZGllbnQ+CiAgPHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEiIGhlaWdodD0iMSIgZmlsbD0idXJsKCNncmFkLXVjZ2ctZ2VuZXJhdGVkKSIgLz4KPC9zdmc+);
background: -moz-linear-gradient(top,  rgba(75,133,99,1) 0%, rgba(32,92,53,1) 100%); /* FF3.6+ */
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(75,133,99,1)), color-stop(100%,rgba(32,92,53,1))); /* Chrome,Safari4+ */
background: -webkit-linear-gradient(top,  rgba(75,133,99,1) 0%,rgba(32,92,53,1) 100%); /* Chrome10+,Safari5.1+ */
background: -o-linear-gradient(top,  rgba(75,133,99,1) 0%,rgba(32,92,53,1) 100%); /* Opera 11.10+ */
background: -ms-linear-gradient(top,  rgba(75,133,99,1) 0%,rgba(32,92,53,1) 100%); /* IE10+ */
background: linear-gradient(to bottom,  rgba(75,133,99,1) 0%,rgba(32,92,53,1) 100%); /* W3C */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#4b8563', endColorstr='#205c35',GradientType=0 ); /* IE6-8 */
 }
.brown { background: rgb(117,94,59); /* Old browsers */
/* IE9 SVG, needs conditional override of 'filter' to 'none' */
background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIwJSIgeTI9IjEwMCUiPgogICAgPHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iIzc1NWUzYiIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiMzZjJiMGIiIHN0b3Atb3BhY2l0eT0iMSIvPgogIDwvbGluZWFyR3JhZGllbnQ+CiAgPHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEiIGhlaWdodD0iMSIgZmlsbD0idXJsKCNncmFkLXVjZ2ctZ2VuZXJhdGVkKSIgLz4KPC9zdmc+);
background: -moz-linear-gradient(top,  rgba(117,94,59,1) 0%, rgba(63,43,11,1) 100%); /* FF3.6+ */
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(117,94,59,1)), color-stop(100%,rgba(63,43,11,1))); /* Chrome,Safari4+ */
background: -webkit-linear-gradient(top,  rgba(117,94,59,1) 0%,rgba(63,43,11,1) 100%); /* Chrome10+,Safari5.1+ */
background: -o-linear-gradient(top,  rgba(117,94,59,1) 0%,rgba(63,43,11,1) 100%); /* Opera 11.10+ */
background: -ms-linear-gradient(top,  rgba(117,94,59,1) 0%,rgba(63,43,11,1) 100%); /* IE10+ */
background: linear-gradient(to bottom,  rgba(117,94,59,1) 0%,rgba(63,43,11,1) 100%); /* W3C */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#755e3b', endColorstr='#3f2b0b',GradientType=0 ); /* IE6-8 */
 }
.scarlet { background: rgb(131,10,15); /* Old browsers */
/* IE9 SVG, needs conditional override of 'filter' to 'none' */
background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIwJSIgeTI9IjEwMCUiPgogICAgPHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iIzgzMGEwZiIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiM1ZTA1MGEiIHN0b3Atb3BhY2l0eT0iMSIvPgogIDwvbGluZWFyR3JhZGllbnQ+CiAgPHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEiIGhlaWdodD0iMSIgZmlsbD0idXJsKCNncmFkLXVjZ2ctZ2VuZXJhdGVkKSIgLz4KPC9zdmc+);
background: -moz-linear-gradient(top,  rgba(131,10,15,1) 0%, rgba(94,5,10,1) 100%); /* FF3.6+ */
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(131,10,15,1)), color-stop(100%,rgba(94,5,10,1))); /* Chrome,Safari4+ */
background: -webkit-linear-gradient(top,  rgba(131,10,15,1) 0%,rgba(94,5,10,1) 100%); /* Chrome10+,Safari5.1+ */
background: -o-linear-gradient(top,  rgba(131,10,15,1) 0%,rgba(94,5,10,1) 100%); /* Opera 11.10+ */
background: -ms-linear-gradient(top,  rgba(131,10,15,1) 0%,rgba(94,5,10,1) 100%); /* IE10+ */
background: linear-gradient(to bottom,  rgba(131,10,15,1) 0%,rgba(94,5,10,1) 100%); /* W3C */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#830a0f', endColorstr='#5e050a',GradientType=0 ); /* IE6-8 */
 }
.btnWrapper:hover, .btnWrapper:hover .btn { }

.btnAlt .btn { 
	background: rgb(247,213,89); /* Old browsers */
	/* IE9 SVG, needs conditional override of 'filter' to 'none' */
	background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIwJSIgeTI9IjEwMCUiPgogICAgPHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iI2Y3ZDU1OSIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiNkYWIyMWUiIHN0b3Atb3BhY2l0eT0iMSIvPgogIDwvbGluZWFyR3JhZGllbnQ+CiAgPHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEiIGhlaWdodD0iMSIgZmlsbD0idXJsKCNncmFkLXVjZ2ctZ2VuZXJhdGVkKSIgLz4KPC9zdmc+);
	background: -moz-linear-gradient(top,  rgba(247,213,89,1) 0%, rgba(218,178,30,1) 100%); /* FF3.6+ */
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(247,213,89,1)), color-stop(100%,rgba(218,178,30,1))); /* Chrome,Safari4+ */
	background: -webkit-linear-gradient(top,  rgba(247,213,89,1) 0%,rgba(218,178,30,1) 100%); /* Chrome10+,Safari5.1+ */
	background: -o-linear-gradient(top,  rgba(247,213,89,1) 0%,rgba(218,178,30,1) 100%); /* Opera 11.10+ */
	background: -ms-linear-gradient(top,  rgba(247,213,89,1) 0%,rgba(218,178,30,1) 100%); /* IE10+ */
	background: linear-gradient(to bottom,  rgba(247,213,89,1) 0%,rgba(218,178,30,1) 100%); /* W3C */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f7d559', endColorstr='#dab21e',GradientType=0 ); /* IE6-8 */
 }

.btnAlt .btn:hover,
.btnAlt .btn:focus { color:#FFF; text-decoration:none; text-shadow: 0px 0px 2px #888;
  -webkit-box-shadow: 0px 5px 15px -2px #555;
          box-shadow: 0px 5px 15px -2px #555;
}

.btnLarge .btn { font-size:1.15em;}

.btnFullWidth {display:block;}
.btnFullWidth .btn {display:block; padding-left:0; padding-right:0; }
.btnFullWidth input.btn { width:100%; }


/* ## modifier for icon fonts (IcoMoon) embedded within button wrapper ## */

.btnWrapper [class^="icon-"] { margin:0 3px; font-size:0.7em; }


/* ## Site Icons ## */

.iconImage { position:relative; display:inline-block; bottom:1px; width:10px; height:10px;  vertical-align:middle; text-indent:-9999em; background:url(/cms/images/layout/icons_default.png) no-repeat 0 0; overflow:hidden; }
.iconCart { width:22px; height:22px; background-position:0 0; }
.iconRefresh { width:22px; height:22px; background-position:0 -27px; }
.iconContinueArrow { width:22px; height:16px; background-position:0 -57px; }
.iconCheckbox { width: 18px; height: 14px; background-position: -23px -112px; }
.iconXSquareRed { width: 12px; height: 12px; background-position: 0 -112px; }
.iconSearch { width: 14px; height: 14px; background-position: -55px 0; }
.iconQuestion { width: 22px; height: 22px; background-position: 0 -75px; }


/* ## truncate styling ## */

.truncateLink {}
.truncateLink a, .truncateLink a:visited { margin-left:5px; }
.truncateLink a.truncateMore, .truncateLink a.truncateMore:visited {}
.truncateLink a.truncateLess, .truncateLink a.truncateLess:visited {}


/* ## footer ## */
.advFooter { position: relative; font-size:.750em; }
.advFooter .address,
.advFooter .phone { margin: 0 0 10px 0; text-align:center; }
.advFooter a { color:#512C0B; }
.footerLogo { width:300px; margin:0 auto; }
.advFooter a.sitelogo,
.advFooter a.sitelogo:visited { background:url(/cms/images/layout/logoFooter.png) no-repeat 0 0; background-size:300px 56px; display:block; height:56px; width:300px;  text-indent:-9999em; }

.subFooter { margin:1em; text-align:center; }
.subFooter a { color:#512C0B; text-decoration:none; }
.subFooter a:focus,
.subFooter a:hover { text-decoration:underline; }

.copyright { font-size:.750em; margin:0; }
.ae { font-size:.750em; margin:0; }


/* ## Footer Email Signup ## */

.emailSignup {margin:0 0 15px;}
.emailSignup p { margin:0 0 2px 0; }
.emailSignup .imgLabel {float:left; margin:5px 7px 0 0;}
.emailSignup .text {float:left; width:165px; margin:0 5px 0 0;}


/* ## Footer Social Follow ## */

.followUs { margin:10px auto 0; min-width:100px; }
.followUs .footerHeading { display:inline; font-size:1.333em; font-weight:400; line-height:32px; margin-right:23px; }


.socialFollow { 
	display:inline; 
	margin:0; padding:0; 
	list-style-type:none; 
	overflow:hidden; 
}
.socialFollow li { 
	display:inline-block; 
	margin-left:12px 
}
.socialFollow li a { 
	background:#512C0B; 
	color:#FFF;
	display:inline-block; 
	height:32px; width:32px; 
	font-size: 24px;
	line-height: 34px;
	overflow:hidden;
 	text-align:center;  
	-webkit-border-radius: 4px;
	      	border-radius: 4px; 
 	background-clip: padding-box;
}
.socialFollow li a:focus,
.socialFollow li a:hover { 
	background-color:#760010; 
	text-decoration: none;
}

@media only screen and (min-width:30em) {
.footerLogo { margin:0; width:100%; }
.advFooter a.sitelogo,
.advFooter a.sitelogo:visited { background-size:400px 75px; display:block; float:left; height:75px; width:400px; }
.advFooter .address,
.advFooter .phone { margin: 0 0 0 55px; text-align:left; }
.copyright { text-align:right; }
.ae { text-align:left; }
.followUs  { float:right;  margin:30px 0 0 0; width:auto; }
}

/* ## Table Wrapper to allow for overflow/scroll on smaller screens ## */
.tableWrapper { overflow:auto; }


/* ## NEW Limit Text Box ## */

.limitTextBox {}
.limitTextBox span { display:none; }
.limitTextBoxBar { width:100%; }
.limitTextBoxBarWrpr {
	width:100%;
	border:0px solid #000;
	overflow:hidden;
	font-size:9px;
	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; }
.limitTextBoxSpellWrpr img { max-width:16px !important; cursor: pointer; }

/* =================================================================
                        Media Queries
===================================================================*/


/* 16px baseline (180px - 767px) */
@media only screen and (min-width:11.250em) and (max-width:48.063em) {	
	.siteHeader a.sitelogo,
	.siteHeader a.sitelogo:visited {float:none; display:block; width:auto;}
	
	.pageTools {display:none;}
}


/* 16px baseline (768px +) */
@media only screen and (min-width:48.063em){

}

/* 



*/


/*country dropdown*/

.CountryDropdown {
  border: 1px solid #c6c6c6;
	position: relative;
	display: inline-block;
  margin: 5px;	padding: 5px;
  font-size:12px;
}

.CountryDropdown span {
	cursor: pointer;
	background: #fafafa;
	color: #000;
	font-family: inherit;
	-moz-border-radius: 2px;
	-webkit-border-radius: 2px;
	border-radius: 2px;
}

.CountryDropdown span:after {
	content: '\25BC';
}

.CountryDropdown ul {
	display: none;
	position: absolute;
  right:-1px; top:100%;
	background-color: #FFF;
	border: 1px solid #c6c6c6;
	list-style-type: none;
	padding: 0;
	margin: 0;
  min-width: 150px
}
.CountryDropdown ul li a {
  background-color: #FFF;
  display: block;
  padding: 5px 10px;
  -webkit-transition: background-color 0.2s ease-in-out; 
     -moz-transition: background-color 0.2s ease-in-out; 
       -o-transition: background-color 0.2s ease-in-out; 
          transition: background-color 0.2s ease-in-out; 

}
.CountryDropdown ul li a:focus, .CountryDropdown ul li a:hover {
  background-color: #DDDDDD;
  text-decoration: none;
} 
.CountryDropdown div{
	position: fixed;
	left: 0px;
	top: 0px;
	height: 100%;
	width: 100%;
}