/*! normalize.css v2.0.1 | MIT License | git.io/normalize */

/* ==========================================================================
   HTML5 display definitions
   ========================================================================== */

/*
 * Fix for the Windows phones view port
 */
 
 /*
	font-family: 'Open Sans', sans-serif;
	font-family: 'Roboto', sans-serif;
	font-family: 'Roboto Condensed', sans-serif;
	font-family: 'Lato', sans-serif;
 
 	Normal 400, Semi-Bold 600, bold 700 for Open Sans
	only 400 for Roboto
	300, 400, 700 for Roboto Condensed
 */

@-webkit-viewport{width:device-width}
@-moz-viewport{width:device-width}
@-ms-viewport{width:device-width}
@-o-viewport{width:device-width}
@viewport{width:device-width}


/*
 * 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;
}

/*
 * Set box-sizing to border-box
 */
* {
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
}

/* ==========================================================================
   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 {
}

::-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; }
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; }
.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 10px 10px; padding: 0 0 0 10px;}
.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:link, .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; }

h1 {font-size: 48px; color:#3031b6; margin:0 0 20px 0; font-weight:400; line-height: 1em;}
h2 {font-size: 30px; margin:0; font-weight:400; line-height: 1em;}
h3 {font-size: 25px; margin:0; font-weight:400; line-height: 1em;}
h4 {font-size: 20px; margin:0; font-weight:400;}
h5 {font-size: 18px; margin:0; font-weight:400;}
h6 {font-size: 15px; margin:0; font-weight:400;}

/* Removed :link from the list to help cut down on writing time and prevent the need for extra specificity for classes */
a, a:visited { color:#3031b6; text-decoration:underline;
-webkit-transition: all 0.5s ease;
-moz-transition: all 0.5s ease;
-o-transition: all 0.5s ease;
transition: all 0.5s ease;
 }
a:hover, a:active, a:focus { text-decoration:none; }
a:active, a:focus { outline:0; }

.btnText { margin:0; padding:0; color:#6D6D6D; text-decoration:underline; border:0; background:none; }
.btnText:hover { color:#6D6D6D; text-decoration:none; }


/* ## 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:link,
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-color: #C7D1D1; }
.siteBody { min-height:300px; font-size:15px; color:#323233; font-family: 'Open Sans', sans-serif;}
.mainIn {position:relative; padding-bottom:50px;}
.mainIn.home { padding-top:50px;}
.mainIn:before {content: ""; display:block; position:absolute; top:0; left:0; width:100%; height:100%; background: #f0f0f7; opacity:0.7;}
.one-column .mainIn:before { display:none; background: none; opacity:0;}
.mainContent {line-height: 26px; padding: 10px 30px 0 30px;}

/* ## Site Header ## */
.extraNav {text-align:right; font-size:13px; font-family: 'Roboto', sans-serif; padding:20px 15px 0 0;}
.extraNav a {text-decoration:none; color:#49494c;}
.extraNav a:hover {text-decoration:underline;}
.extraNav a:after {content:"|"; display:inline-block; margin:0 10px 0 15px; color:#cac7c7}
.extraNav a:last-child:after {content:" "; margin:0;}

.siteHeader {position:relative; min-height:115px; z-index:1000; display:block !important;}
.logoHold p {margin:0;}
.siteHeader a.sitelogo,
.siteHeader a.sitelogo:link,
.siteHeader a.sitelogo:visited {float:left; display:block; margin-bottom:10px;}

.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 {
    font-size: 0.9em;
    margin: 0 0 10px;
    padding: 5px 0 0;
    text-align: right;
}
.headerLinks a, .headerLinks a:link, .headerLinks a:visited {
    margin: 0 3px;
    text-decoration: none;
}
.headerLinks a:hover, .headerLinks a:active {
    text-decoration: underline;
}


/* ## Homepage ## */
.home h1 {color:#323233; font-size:48px;}
.home .mainContent {padding: 10px 40px 0 40px;}

.homeTopItem {position:relative; overflow: hidden; max-width:590px;}
.homeTopItem.mc {border-radius: 8px 0 0 8px;}
.homeTopItem.fs {border-radius: 0 8px 8px 0;}
.htText {position:absolute; bottom:0; left:0; height:74px; width:100%;}
.htText > div { position:relative; display:block; width:100%; height:100%; display: table; }
.htText > div:before { content:""; position:absolute; display:block; width:100%; height:100%; opacity:0.8; 
background: rgb(77,77,204); /* Old browsers */
/* IE9 SVG, needs conditional override of 'filter' to 'none' */
background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIwJSIgeTI9IjEwMCUiPgogICAgPHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iIzRkNGRjYyIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiMwODA5ODIiIHN0b3Atb3BhY2l0eT0iMSIvPgogIDwvbGluZWFyR3JhZGllbnQ+CiAgPHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEiIGhlaWdodD0iMSIgZmlsbD0idXJsKCNncmFkLXVjZ2ctZ2VuZXJhdGVkKSIgLz4KPC9zdmc+);
background: -moz-linear-gradient(top,  rgba(77,77,204,1) 0%, rgba(8,9,130,1) 100%); /* FF3.6+ */
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(77,77,204,1)), color-stop(100%,rgba(8,9,130,1))); /* Chrome,Safari4+ */
background: -webkit-linear-gradient(top,  rgba(77,77,204,1) 0%,rgba(8,9,130,1) 100%); /* Chrome10+,Safari5.1+ */
background: -o-linear-gradient(top,  rgba(77,77,204,1) 0%,rgba(8,9,130,1) 100%); /* Opera 11.10+ */
background: -ms-linear-gradient(top,  rgba(77,77,204,1) 0%,rgba(8,9,130,1) 100%); /* IE10+ */
background: linear-gradient(to bottom,  rgba(77,77,204,1) 0%,rgba(8,9,130,1) 100%); /* W3C */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#4d4dcc', endColorstr='#080982',GradientType=0 ); /* IE6-8 */
}
.htText div:hover:before{opacity:1; }
.htText div a {z-index: 1; position: relative; text-decoration:none; font-size:38px; font-weight:bold; color:#f5f5f7; font-family: 'Roboto Condensed', sans-serif; text-transform:uppercase; display: table-cell; vertical-align: middle; text-align: center;}
.htText div a span {color:transparent; font-size:26px; vertical-align: 2px;}
.htText div a span:before {color:#fff;}

.htLinks {position:absolute; bottom: 0; left:0; padding-bottom:74px;  width:100%; height:0; overflow:hidden; opacity:0;
-webkit-transition: all 0.5s ease;
-moz-transition: all 0.5s ease;
-o-transition: all 0.5s ease;
transition: all 0.5s ease;
}
.htLinks.active { height:100%; opacity:1;}
.htLinks > div {position:relative; width:100%; height:100%; display:table;}
.htLinks > div:before {content:""; position:absolute; display:block; width:100%; height:100%; background:#3031c2; opacity:0.8;}
.htLinksIn {display:table-cell; vertical-align:middle; z-index:1; position: relative;}
.htLinks a {display:block; margin-bottom:14px; text-decoration:none; color:#e6e6e7; font-size:18px; font-family: 'Roboto', sans-serif; text-align:center;}
.htLinks a:last-child { margin-bottom:0px;}
.htLinks a:hover, .htLinks a:focus {text-decoration:underline;}

/* ## Disabled Form Fields ## */

.siteSearch {
    color: #FFFFFF;
    margin: 0;
}
.siteSearch label {
    display: none;
}

/* ==========================================================================
   Global Modules
   ========================================================================== */
.bannersGroup {margin-bottom:26px;}
.banner a {display: table; width: 100%; padding: 20px 0; border-top: 1px solid #cacaca; text-decoration:none;}
.banner:last-child a {border-bottom: 1px solid #cacaca;}
.banner.sglBanner {border: 2px solid #d6d6d9;}
.banner a:hover {opacity:0.5;}
.banner a > span, .banner a > div {display: table-cell; vertical-align:middle;}
.bannerImg { width: 38%; text-align: center;}
.bannerText { padding-right:10px; font-size:18px; text-transform:uppercase; color:#424141; font-weight:bold; font-family: 'Roboto Condensed', sans-serif;}
   
.mod { position: relative; margin:0 0 1em; }
.moreLink {text-align:right;}
.moreLink a:after {
	content:'\3e';
	font-family: 'Basic-Icons';
}

.modHdng
{margin: 0;
padding: 10px;
font-size: 20px;
font-weight: bold;
background: #3031b6;
color: #fff;
font-family: 'Roboto Condensed', sans-serif;
text-transform: uppercase;}

.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: 15px;
}

/* FAQ
   ========================================================================== */
   
.faqContent  {background: #dcdce3; padding: 20px 10px; font-size:13px; color:#13147c;}
.faqContent a { color:#13147c; text-decoration:none;}
.faqContent a:hover, .faqContent a:focus { text-decoration:underline;}
.faqMoreLink  {background: #dcdce3; padding: 0 10px 20px 10px; text-align: right;}
.faqMoreLink {color:#5353dd; font-size:15px;}
.faqMoreLink a { font-family: 'Roboto Condensed', sans-serif; font-weight:700; text-decoration:none;}
.faqMoreLink a:hover, .faqMoreLink a:focus {text-decoration:underline;}
.faqMoreLink span.icon-triangle-right {vertical-align: -1px;}
.faqContent > div {display: table; width:100%;}
.faqContent > div > span {display: table-cell;}
.faqContent > div > span:first-child { width:20px; font-family: 'Lato', sans-serif; font-weight:700}

.FAQWrpr h2 {margin-bottom: 20px; margin-top: 20px;}
.FAQWrpr h3 {margin-bottom: 10px;}


/* 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 #444444;
	background: #cccccc;
}

.filter-options{
	float: left;
}

.filter-actions{
	float: right;
}

/* Pagination
   ========================================================================== */

.paging {
	padding: 1em;
}

.paging-results {
	float: left;
}

.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 and filters */

.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:link, .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:link, .filters .sortItem a.down:visited {font-weight:bold; background-position:100% -18px;}
.filters .sortItem a.up, .filters .sortItem a.up:link, .filters .sortItem a.up:visited {font-weight:bold; background-position:100% -38px;}

.pagination {float:right; width:400px; margin:0 0 10px 0; text-align:right;}
.pagination .view {float:right; display:inline; padding:0 0 0 10px;}
.pagination .view a,.pagination .view a:link, .pagination .view a:visited { display:inline-block; text-decoration:none; padding:2px 6px;}
.pagination .paging {float:right; display:inline; padding:0 10px; border-right:1px solid #999999;}
.pagination .paging a,.pagination .paging a:link,.pagination .paging a:visited {float:left; display:inline; margin:0 3px; padding:2px 6px; text-align:center; text-decoration:none; }
.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 a.arrowRight,.pagination a.arrowRight:link,.pagination a.arrowRight:visited {float:left; display:inline; background:url(/cms/images/layout/arrow_right_gray.gif) no-repeat 50% 50%; text-indent:-9999em;}
.pagination a.arrowLeft,.pagination a.arrowLeft:link,.pagination a.arrowLeft:visited {float:left; display:inline; background:url(/cms/images/layout/arrow_left_gray.gif) no-repeat 50% 50%; text-indent:-9999em;}



/* ==============================================================
   GLOBAL STYLES
   ============================================================== */
.alert {
	overflow:hidden;
	border: 1px solid #ff6666;
	margin: 1em 0;
	padding: 10px;
	min-height: 50px;
	color: #fff;
	background-color: #ff0000;}
.alertSign {float:left;}
.alertItem {padding:10px 0; margin:0 0 0 50px;}
.alert a, .alert .date {color:#fff;}

.bdr        { border:1px solid #ccc; padding:1px; }
.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: rgba(0,0,0,0.03);}
.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;}


/* ##  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;}


/* ##  Generic Pager  ## */

.sortStatus {float:left;}
.genericPager {float:right;}
.genericPager ul {list-style-type: none; margin:0; padding:0;}
.genericPager li {float:left; display:block; font-size:11px; margin:0 5px 5px 0;}
.genericPager li a {float:left; color:#003871; padding:2px 4px; border:1px solid #ddd; text-decoration:none; }
.genericPager li a:hover, .genericPager li a:focus { color:#000; background-color:#CFCFCF; border: 1px solid #000; text-decoration:none; }
.genericPager li.nolink {color:#fff; border:1px solid #ddd; padding:2px 4px;}
.genericPager li.active {color:#686868; border:1px solid #ddd; padding:2px 4px; background-color:#CFCFCF;}


/* ##  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:link, .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;
    position:relative;
    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;}


/* =================================================================
                           MODULE STYLES
===================================================================*/

.bar {margin-bottom:50px; padding: 20px 20px 0 20px; position: relative;}

/* ##  Breadcrumb  ## */

.breadcrumbs a, .breadcrumbs a:visited { text-decoration:none; font-size: 14px; color:#0809bc;}
.breadcrumbs a:hover, .breadcrumbs a:focus, .breadcrumbs a:active { text-decoration:underline; }
.breadcrumbs span { margin:0 2px; font-weight:normal; color: #0809bc; vertical-align: -2px; }
.breadcrumbs span:last-child { color:#7b7b7b; vertical-align: 0px; }


/* ##  PAGE TOOLS  ## */
/* Print and Email icons and wrapper */

.pageToolsWrapper {float:right; display:inline; text-align:right;}

.pageTool { margin:0 10px 0; font-size:0.938em; color:#686868; font-weight:normal; text-decoration:none; cursor:pointer; }

.pageToolsWrapper a {display:inline; margin-left:10px; background: #7c93d7; color: #ececf1; padding: 10px 13px; border-radius: 50%; font-size:18px; text-decoration: none;}
.pageToolsWrapper a:hover,
.pageToolsWrapper a:active {opacity: 0.7; text-decoration: none;}

.pageToolsWrapper a.bookmark,
.pageToolsWrapper a.bookmark:link,
.pageToolsWrapper a.bookmark:visited {padding:0 0 0 18px; margin-left:7px; background-position:0 -39px;}
.pageToolsWrapper a.bookmark:hover,
.pageToolsWrapper a.bookmark:active {background-position:0 -119px;}

.pageToolsWrapper .addthis_toolbox { float:right; display:inline; }
.pageToolsWrapper .addthis_toolbox a,
.pageToolsWrapper .addthis_toolbox a:link,
.pageToolsWrapper .addthis_toolbox a:visited {background:none; padding:0; margin:0 0 0 5px; }

.addthis_toolbox { display:inline; }


/* ## Email a Friend ## */

.emailFriendWrapper .siteHeader img {width: 300px;}
.emailFriendWrapper .btnWrapper {margin: 20px 0;}
.emailFriendWrapper .inner { padding: 10px; }
.emailFriendWrapper .emailFriendSender { margin:10px 0 20px; border-bottom:1px dashed #ccc; }
.emailFriendWrapper .emailFriendAdditional { margin:10px 0 0; padding:20px 0 0; border-top:1px dashed #ccc; }

/* =================================================================
                        THIRD PARTY STYLES
===================================================================*/



/* =================================================================
                        PRINT STYLES
===================================================================*/

.hd  {padding:10px; border-bottom:3px solid #ccc; margin:0 0 10px 0;}
.ftr {padding:10px; border-top:3px solid #ccc; font-size:11px; text-align:center;}

.printBody {margin:0; padding:0; color:#333; background:#fff; width:100%;}
.printWrpr {width:660px; text-align:left; margin:0 auto; z-index:1;}

.emailBody {margin:0; padding:0; background:#fff; width:100%;}
.emailWrpr {width:680px; text-align:left; margin:0 auto; z-index:1;}

@media print {
	* { background: transparent !important; color: #000 !important; box-shadow:none !important; text-shadow: none !important; }
	a, a:visited { text-decoration: underline; }
	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; }
}

.iconPrintHold { text-align: right; margin: 20px 40px 0 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; padding:2px; background-color:#3F3F3F; text-decoration:none !important; }
.btn { display:inline-block; margin:0; padding:4px 6px; font-weight:normal; color:#fff; background-color:#3F3F3F; border:1px solid #A4A4A4; text-align:center; text-decoration:none; cursor:pointer; overflow:visible; }
.btnWrapper:hover, .btnWrapper:hover .btn { background-color:#7A7A7A; }

.btnAlt {background-color:#cccccc ;}
.btnAlt .btn{color:#666666; background-color:#cccccc ; border:1px solid #fff; text-align:center; text-decoration:none; cursor:pointer;}
.btnAlt:hover, .btnAlt:hover .btn { background-color:#E3E3E3; }

.btnLarge .btn {padding:5px 10px; font-size:1.4em;}

.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:link, .truncateLink a:visited { margin-left:5px; }
.truncateLink a.truncateMore, .truncateLink a.truncateMore:link, .truncateLink a.truncateMore:visited {}
.truncateLink a.truncateLess, .truncateLink a.truncateLess:link, .truncateLink a.truncateLess:visited {}


/* ## footer ## */

.footer {position:relative; margin-bottom:10px; padding:20px 0 0; }

.advFooter {position: relative; margin-bottom:20px; padding:25px 10px; background:#dcdce3; border-radius:8px; color:#575656; font-size:13px; font-family: 'Open Sans', sans-serif;}
.advFooter .copy {margin-bottom:20px;}
.advFooter .sitemapPrivacy { padding-top:38px; }
.advFooter .ftrLinks { line-height:25px;}
.advFooter .ftrLinks a { color:#4b4bcb; font-weight:600; text-decoration:none;}
.advFooter .ftrLinks a:hover { text-decoration:underline; }
.advFooter .ftrLinks span { display:inline-block; margin:0 7px 0 9px; color:#4b4bcb}
.advFooter .ftrLinks a:last-child:after {content:none; margin:0;}
.advFooter .logoFtrHold {text-align:center;}

.subFooter { margin-bottom: 25px; padding:10px 0; color:#595959; font-size:12px; font-family: 'Lato', sans-serif;}
.subFooter > div:last-child { text-align:right; }
.subFooter a {  color:#595959; text-decoration:none;}
.subFooter a:hover {  text-decoration:underline;}



/* ## Table Wrapper to allow for overflow/scroll on smaller screens ## */
.tableWrapper { overflow:auto; }
table.dataTbl {
	widtH:100%;
	display: table;
	border-collapse:collapse;
	margin-bottom:20px;}
table.dataTbl th {background:#478c26; padding:6px 15px; font-size:1em; border:1px solid #478c26; border-bottom:2px solid #fdd539; color:#fff;}
table.dataTbl th a {color:#fff; text-decoration:underline;}
table.dataTbl td {vertical-align:top; padding:6px 15px; border:1px solid #E1E1E1;}
table.dataTbl td td {border-style:none;}

/* ## NEW Limit Text Box ## */

.limitTextBox {}
.limitTextBox span { display:none; }
.limitTextBoxBar { width:100%; margin:0px 0 15px 0; }
.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; }

.vd {padding:0 5px;}
.topOfPage {text-align:right;}
.topOfPage a {background:transparent url(/cms/images/arrow.gif) no-repeat 100% 50%; padding-right:13px; text-decoration: none;}
.topOfPage a:hover, .topOfPage a:focus { text-decoration: underline;}

.sitemap table {width:100%;}
.sitemap table td {vertical-align:top;}

/* =================================================================
                        Media Queries
===================================================================*/

@media only screen and (max-width: 1023px){
	.siteHeader [class*="grid_"] {width:100%; position:static;}
	.mainIn [class*="grid_"] {width:100%;}
	.container [class*="pull_"], .container [class*="push_"] {left:0;}
	
	.extraNav {padding: 20px 0px 0 0;}
	
	.pageToolsWrapper {display:none;}
	
	.mainContent { padding: 0 0 10px 0;}
	.home .mainContent { padding: 0;}
	
	.mainIn {padding-bottom:0px;}
	.footer { padding: 0;}
}

@media only screen and (max-width:767px) {
	body {background: #f0f0f7}
	
	.siteHeader { min-height: 90px;}
	
	.siteHeader a.sitelogo,
	.siteHeader a.sitelogo:link,
	.siteHeader a.sitelogo:visited {float:none; display:block; width:100%; text-align:center;}

	.pageTools {display:none;}
	
	.siteHeader a.sitelogo {width:250px !important;}
	.extraNav {padding: 20px 10px 30px 10px; text-align:center;}
	
	.slideshowText {position: static !important; color:#454449 !important; font-size: 17px !important; margin-top:15px;}
	
	.homeTopHold {padding: 0 !important;}
	.homeTop [class*="grid_"] {padding: 0 10px 20px 10px;}
	.homeTopItem {border-radius: 0 !important;}
	.htText div a {font-size:30px;}
		
	h1 {font-size: 30px;}
	h2 {font-size: 25px;}
	h3 {font-size: 20px;}
	h4 {font-size: 18px;}
	h5 {font-size: 16px;}
	h6 {font-size: 15px;}
	.home h1 {font-size:30px;}
	
	.advFooter, .subFooter > div:last-child, .subFooter {text-align:center;}
	.subFooter > div:last-child {padding: 10px;}
	.advFooter .ftrLinks a:after {margin: 0 2px 0 4px;}
	.advFooter .sitemapPrivacy {padding:15px 0;}
}

@media only screen and (max-width:639px) {
	.htLinks {padding-bottom:40px;}
	.htText {height:40px;}
	.htLinks a {margin-bottom: 3px; font-size: 14px;}
	.htText div a span { font-size: 16px; vertical-align: 0px;}
	.htText div a {font-size:19px;}
}
@media only screen and (max-width:479px) {
	.siteHeader a.sitelogo {
		width: 228px !important;
	}
}

@media only screen and (min-width: 768px) and (max-width: 1023px){
	.htText div a {font-size:23px;}
	
	.htLinks a {margin-bottom: 3px; font-size: 14px;}
	
	.advFooter .grid_7 { padding: 0 0 0 10px;}
	.advFooter .sitemapPrivacy{ padding: 38px 10px 0 0;}	
	.advFooter .sitemapPrivacy .ftrLinks { margin-left: -20px;}	
	.advFooter .ftrLinks { font-size: 11px;}
	.advFooter .ftrLinks a { font-weight: 400;}
	.advFooter .ftrLinks span {    margin: 0 0px 0 0px;}
}

@media only screen and (min-width: 1024px) and (max-width: 1365px){
	.bannerImg {width: 42%;}
	.bannerText {font-size:17px;}
	
	.htText div a {font-size:30px;}
	
	.htLinks a {margin-bottom: 10px; font-size: 16px;}
	
	.advFooter .sitemapPrivacy .ftrLinks { margin-left: -20px;}	
}


/* ==========================================================================
   GALLERY LANDING (PORTFOLIO CATEGORIES)
========================================================================== */ 
@-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 slideDown {
    0% { max-height: 0; }
    100% { max-height: 1000px; }
}
@-moz-keyframes slideDown {
    0% { max-height: 0; }
    100% { max-height: 1000px; }
}
@keyframes slideDown {
    0% { max-height: 0; }
    100% { max-height: 1000px; }
}

.ie9 .itemList.gallery .item, .itemList.gallery .item.loaded {  display: block;}
.itemList.gallery .item.loaded {  opacity:0;}
.itemList.gallery .item {
  display: none;
  border: none;
  -webkit-transition: all .3s ease-in-out;
  -moz-transition: all .3s ease-in-out;
  -o-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
}
.ie9 .itemList.gallery .item,
.itemList.gallery .item.loaded { display:block; opacity:1;}
.ie9 .gallery.itemList .itemImage img {opacity:1;}
.ie9 .moreBtn {display:none;}


.itemList.gallery li {
  position: relative;
  margin: 0 0 28px;
  padding: 0;
  width: 100%;
}
.itemList li {
  float: left;
  width: 100%;
  min-height: 150px;
}
.itemList a { display: block; position: relative; color:#fff; }
.itemList a:hover {text-decoration:none; border-bottom:none;}
.itemList .itemText { position:absolute; width:100%; left:0; bottom:0; padding: 15px 5%;}
.itemList .itemTextIn { text-align:center; position:relative;}
.itemList .itemText h3 {margin:0 0 5px 0; font-size:19px; font-weight: 700; text-transform:uppercase; }
.itemList .itemText h4 {margin:0; font-size:19px;  }

.itemList .itemText:before {content:""; position:absolute; top:0; left:0; width:100%; height:100%; opacity:0.8; 
background: rgb(77,77,204); /* Old browsers */
/* IE9 SVG, needs conditional override of 'filter' to 'none' */
background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIwJSIgeTI9IjEwMCUiPgogICAgPHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iIzRkNGRjYyIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiMwODA5ODIiIHN0b3Atb3BhY2l0eT0iMSIvPgogIDwvbGluZWFyR3JhZGllbnQ+CiAgPHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEiIGhlaWdodD0iMSIgZmlsbD0idXJsKCNncmFkLXVjZ2ctZ2VuZXJhdGVkKSIgLz4KPC9zdmc+);
background: -moz-linear-gradient(top,  rgba(77,77,204,1) 0%, rgba(8,9,130,1) 100%); /* FF3.6+ */
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(77,77,204,1)), color-stop(100%,rgba(8,9,130,1))); /* Chrome,Safari4+ */
background: -webkit-linear-gradient(top,  rgba(77,77,204,1) 0%,rgba(8,9,130,1) 100%); /* Chrome10+,Safari5.1+ */
background: -o-linear-gradient(top,  rgba(77,77,204,1) 0%,rgba(8,9,130,1) 100%); /* Opera 11.10+ */
background: -ms-linear-gradient(top,  rgba(77,77,204,1) 0%,rgba(8,9,130,1) 100%); /* IE10+ */
background: linear-gradient(to bottom,  rgba(77,77,204,1) 0%,rgba(8,9,130,1) 100%); /* W3C */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#4d4dcc', endColorstr='#080982',GradientType=0 ); /* IE6-8 */
}

.itemList a:hover .itemText:before { opacity:1;}
.moreBtn { margin-bottom: 28px; text-align: center; font-size:19px; }

.delayed-fade-in {
	-webkit-animation: fadeIn .5s both ease .5s;
	-moz-animation: fadeIn .5s both ease .5s;
	animation: fadeIn .5s both ease .5s;
}
.itemList.gallery .itemImage img {width: 100%; opacity: 0; border-radius: 8px 8px 0 0;}

@media (min-width: 480px) {
	.itemList.gallery li {  padding: 0 13px;  width: 50%;}
	.itemList.gallery li:nth-child(odd) {  clear: left;}
}
@media (min-width: 960px) {
	.itemList.gallery li {width: 33.33%;}
	.itemList.gallery li:nth-child(odd) {clear: none;}
	.itemList.gallery li:nth-child(3n+1) {clear: left;}	
}


/* ==========================================================================
   GALLERY DETAILS NAVIGATION (PORTFOLIO Gallery)
========================================================================== */ 

.itemList.galleryNav {
	-webkit-perspective: 1000px;
	    -ms-perspective: 1000px;
	        perspective: 1000px;
	-webkit-perspective-origin: 50% 50%;
	    -ms-perspective-origin: 50% 50%;
	        perspective-origin: 50% 50%;
}
.itemList.galleryNav li { margin-bottom:3%; padding:0 10px; min-height:0; position:relative;}
.itemList.galleryNav li > span { padding: 0 10px; position:absolute; bottom:0; left:0; width:100%; font-size: 18px; color:#fff; text-align:center; }
.itemList.galleryNav li > span > span {position:relative; display:block; padding: 5px 0}
.itemList.galleryNav li > span > span:before {content:""; position:absolute; width:100%; height:100%; top:0; left:0;
opacity:0.8; 
background: rgb(77,77,204); /* Old browsers */
/* IE9 SVG, needs conditional override of 'filter' to 'none' */
background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIwJSIgeTI9IjEwMCUiPgogICAgPHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iIzRkNGRjYyIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiMwODA5ODIiIHN0b3Atb3BhY2l0eT0iMSIvPgogIDwvbGluZWFyR3JhZGllbnQ+CiAgPHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEiIGhlaWdodD0iMSIgZmlsbD0idXJsKCNncmFkLXVjZ2ctZ2VuZXJhdGVkKSIgLz4KPC9zdmc+);
background: -moz-linear-gradient(top,  rgba(77,77,204,1) 0%, rgba(8,9,130,1) 100%); /* FF3.6+ */
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(77,77,204,1)), color-stop(100%,rgba(8,9,130,1))); /* Chrome,Safari4+ */
background: -webkit-linear-gradient(top,  rgba(77,77,204,1) 0%,rgba(8,9,130,1) 100%); /* Chrome10+,Safari5.1+ */
background: -o-linear-gradient(top,  rgba(77,77,204,1) 0%,rgba(8,9,130,1) 100%); /* Opera 11.10+ */
background: -ms-linear-gradient(top,  rgba(77,77,204,1) 0%,rgba(8,9,130,1) 100%); /* IE10+ */
background: linear-gradient(to bottom,  rgba(77,77,204,1) 0%,rgba(8,9,130,1) 100%); /* W3C */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#4d4dcc', endColorstr='#080982',GradientType=0 ); /* IE6-8 */
}
.itemList.galleryNav li:hover > span > span:before {opacity:1}
.itemList.galleryNav li > span > span > span {position:relative;}
.itemList.galleryNav li * {color:#fff !important;}

.itemList.galleryNav li > a { 
	display:block;
	padding-bottom:73%;
	width:100%; height:0;
	overflow:hidden;
	text-align:center;
	-webkit-perspective: 500px;
	    -ms-perspective: 500px;
	        perspective: 500px;
	-webkit-perspective-origin: 50% 50%;
	    -ms-perspective-origin: 50% 50%;
	        perspective-origin: 50% 50%;
	-webkit-box-sizing:border-box;
	   -moz-box-sizing:border-box;
	        box-sizing:border-box;
}
.itemList.galleryNav li > a .image-bg {
position: absolute;
top:0; left: 0;
width: 100%;
height: 100% !important;
opacity:1;
-webkit-transform: translateZ(0px);
-ms-transform: translateZ(0px);
transform: translateZ(0px);
-webkit-transition:all .2s ease-in-out;
transition:all .2s ease-in-out;
text-indent: -9999em;
color: transparent;
background-repeat: no-repeat;
background-size: cover;
}
.itemList.galleryNav li > a:hover .image-bg, .itemList.galleryNav li > a:focus .image-bg { 
	opacity:.8;
	-webkit-transform: translateZ(50px);
	    -ms-transform: translateZ(50px);
	        transform: translateZ(50px);
}
.itemList p {margin:0;}

.galleryPop {
	display:none;
	position:fixed;
	z-index:9999;
	top: 0;
	left:0;
	width:100%;
	height: 100%;
	padding-bottom: 20px;
	max-height: 100%;
	background: rgba(0,0,0,.5);
}

.galleryPop .owl-item.js-hidden { display:none; }
.galleryPop .owl-item.js-hidden.active { display:block; }


.galleryPop .owl-theme .owl-controls { position:static; display: none !important; }
.galleryPop .owl-theme .owl-controls .owl-buttons { top:50%; }
.owl-theme .owl-controls .owl-buttons div { border:0; width:100px; height:100%; }

.gallery-btn {font-size:18px;}

/* GALLERY SLIDESHOW STYLES ARE LOCATED IN SLIDESHOW.CSS */

.photoGalleryPhotoCountWrpr { 
	position:relative; 
	width:98%; max-width:700px; 
	margin:0 auto; padding:0 2%; 
	text-align:left; text-shadow:1px 1px 3px #000; 
	color:#cfcfcf;
}


/* ===============  Online Gallery  =============== */

.itemList.galleryNav.hiResGal li { position:relative; -webkit-backface-visibility:hidden; }
.itemList.galleryNav.hiResGal li > a { background:#fff; }
.itemList.galleryNav.hiResGal li > div { position:relative; }

.agreeLink { 
	position:absolute; 
	left:0; bottom:0;
	padding:5px;
	width:100%; 
	text-align:center; 
	font-size:.8em;
	color:#fff;
	background:#1F1F1F;
	-webkit-box-sizing: border-box;
	   -moz-box-sizing: border-box;
	        box-sizing: border-box;
}
.agreeLink:visited { color:#fff; }
.agreeLink:hover, .agreeLink:focus { color:#009ddc; }
.agreePop { 
	display:block;
	position:absolute; left:0; z-index:99999;
	padding:20px;
	width:100%;
	background:#fff;
	box-shadow:0 0 5px #555;
	-webkit-box-sizing: border-box;
	   -moz-box-sizing: border-box;
	        box-sizing: border-box;
}
.agreePop p { font-size:.8em; }

/* ===============  Item List  =============== */

.itemList { list-style:none; padding:0; margin:30px -3% 0; }
.itemList:before, .itemList:after { content:" "; display:table; }
.itemList:after { clear:both; }
.itemList { *zoom:1; }
.itemList li { 
	float:left;
	width:100%;
	min-height:150px;
	-webkit-box-sizing:border-box; 
	   -moz-box-sizing:border-box;
	        box-sizing:border-box;
}
.itemList li a { display:block; }

@media (max-width:1199px){
	.galleryPop {	top:0px; height:100%;}
}	
@media (max-width:767px){
	.galleryPop {	background: rgba(0,0,0,.8);}
}
@media (max-width:479px){
	.itemList {   margin: 30px 3% 0;}
	.itemList.gallery .itemImage img {width:414px !important;}
}
@media (min-width:480px){
	.itemList li {
		margin:0 0 1% 0; padding:0 3%; width:50%;
	}
}
@media (min-width:768px){
	.itemList li { width:33.33%; }	
}
@media (min-width:1200px){
	.itemList.galleryNav li { width:25%; }	
}