/* ## 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  =============== */

* {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;}

::-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%; 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, .visually-hidden { 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,
.visually-hidden.focusable:active,
.visually-hidden.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; }

.click-user *:focus, .click-user *:active {outline:0;}

/* ## 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: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: 36px; margin:0 0 .5em 0;}
h2 {font-size: 28px; margin:0 0 .5em 0;}
h3 {font-size: 22px; margin:0 0 .5em 0;}
h4 {font-size: 18px; margin:0 0 .5em 0;}
h5 {font-size: 1em; margin:0 0 1em 0;}
h6 {font-size: .9em; margin:0 0 1em 0;}

@media (max-width:479px) {
	h2.pageTitle {font-size:22px;}
}

/* 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:#176433; text-decoration:none; }
a:hover, a:active, a:focus { color:#176433; text-decoration:underline;  
    -wekbit-transition: all 0.4s ease-in-out;
            transition: all 0.4s ease-in-out;
}

.btnText { margin:0; padding:0; color:#6D6D6D; text-decoration:none; border:0; background:none; }
.btnText:hover { color:#6D6D6D; text-decoration:underline; }

.svg-legend {
    height: 0;
    position: absolute;
    top: -999em;
    width: 0;
}

/* ## 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 ## */
html, document { overflow-x: hidden; position:relative;}
body {background:#fff; font-family: 'Open Sans', sans-serif; color:#000; overflow-x: hidden; position:relative;}
.siteBody { min-height:300px; margin:0; background:#f5f4f4;}
.main {margin:20px 0;}
.home .main {margin:0;}
main {outline:0;}

@media (max-width:47.938em) {
	.main-content {padding-bottom: 30px;}
}

@media (max-width:47.938em) {
	.siteBody {background:#fff;}
}
/* ## Site Header ## */
.siteHeader {position:relative; min-height:80px; margin-bottom:0; z-index:1000;}
.siteHeader a.sitelogo,
.siteHeader a.sitelogo:link,
.siteHeader a.sitelogo:visited {display:block; /*float:left; width:300px; height:85px; 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;
}


/* ## Disabled Form Fields ## */
.siteSearchWrpr {float: right;}
.siteSearch {
	margin-right:30px;
    color: #FFFFFF;
	width:280px;
	padding-right:55px;
	position:relative;
	background: #cbcccd;
	border:3px solid #cbcccd;
	-webkit-border-radius:10px; -moz-border-radius:10px; border-radius:10px;
}
@media (min-width:1250px){
	.siteSearch {
		margin-right: 15px;
	}
}
.siteSearch label {
    display: none;
}
.siteSearch input[type="text"] {background: #cbcccd; border:none; padding:6px 10px; color:#000; outline: none;}
.siteSearch .btnWrapper {
	position:absolute;
	top:0;
	right:0;
}
.siteSearch .btnWrapper input.btn {width:55px; border:none; padding:6px;
	background:#348834 url(/cms/images/layout/icon-search.png) no-repeat 50% 50%;
	border-top-right-radius:10px;
	border-bottom-right-radius:10px;
	-webkit-border-top-right-radius:10px;
	-webkit-border-bottom-right-radius:10px;
	-moz-border-radius-topright:10px;
	-moz-border-radius-bottomright:10px;
}
.searchToggle {display:none; width:40px; height:40px;
	background:url(/cms/images/layout/icon-search.png) no-repeat 50% 50%;
	position:absolute; 
	top:25px;
	right:10px;
}
@media (min-width:1250px){
	.siteSearchWrpr {display:block !important;}
	.desktopLinks {display:block !important;}
}	
@media (max-width:1249px){
	.searchToggle {display:block;}
	.siteSearchWrpr {display:none; position:absolute; top:23px; right:190px; }
	.social-icons {margin-right:60px;}
}
@media (max-width:47.938em) {
	.searchToggle {
		top:10px;
		right:10%;
		margin-right:-20px;
	}
	.searchToggle.active {
		background:url(/cms/images/layout/icon-search-black.png) no-repeat 50% 50%;}
	.siteSearchWrpr {background:#eee; padding:23px 15px; left:0; top:100%; width:100%;}
	.siteSearch {margin:0; width:100%; border:1px solid #d9d9d9; background:#fff;
		-webkit-border-radius:0; -moz-border-radius:0; border-radius:0;
	}
	.siteSearch input[type="text"] {background:#fff; padding: 10px 10px;}
	.siteSearch .btnWrapper input.btn { padding:10px 6px; width:45px;
		-webkit-border-radius:0; -moz-border-radius:0; border-radius:0;		
	}
	.headerLeft.searchAactive .mobileLinks li:last-child {background:#eee; border-bottom:1px solid #eee;}
}	

/* Twitter news icon adjustment */
.meta #CT_Main_0_ctl03_divTwitter { margin: 2px 4px; }

/* ==========================================================================
   Global Modules
   ========================================================================== */

.mod { position: relative; margin:0 0 1.5em; }
.moreLink {text-align:right;}
.moreLink a {text-decoration:none;}
.moreLink a:after {
	content:'\3e';
	font-family: 'Basic-Icons';
	font-size:12px;
	font-weight:bold;
}

.moreLink a:hover,
.moreLink a:focus {text-decoration:none; color:#000;}

.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;
}

.corlnav .modContent {
    background: #021702 none repeat scroll 0 0;
    padding: 10px 15px 15px;
	margin:0 0 15px;
}
.corlnav .modHead {background: #021702 none repeat scroll 0 0;}
.corlnav .modHead h3.hdng,
.corlnav .eventsSummary .modHead h2.title {
    color: #fff;
    font-size: 26px;
    font-weight: 600;
    margin: 0;
    /* padding-top: 20px; */
    text-align: center;
    text-transform: uppercase;
	background:#348934;
	padding:10px 0;
}

.corlnav .mod .content .title a {
    color: #fff;
    font-size: 16px;
	font-weight:bold;
}
.corlnav .modContent .item {
    padding: 0.35em 0;
}

.corlnav .item > .content {color:#fff;}

.corlnav .eventsSummary .date {padding:0 5px 0 0;}
.corlnav .newsSummary .item .content a.more {color:#fff; font-weight:bold;}
.corlnav .newsSummary .item .aside {display:none;}


/* Item Lists Content
   ========================================================================== */

.itemList {
	margin:0;
	padding:0;
	list-style:none;
}

.item {
	display: table;
	padding: 1.5em 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 #ccc;
	background: #fcfcfc;
}

.filter-options{
	float: left;
}

.filter-actions{
	float: right;
}

@media (max-width : 1100px) {
	.filter.agendaminuteFilter input[type="submit"] {
		margin-top:10px;
	}
}

/* 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
   ============================================================== */
.siteBody.home {position:relative;}
.newsAlertWrpr {position: absolute; top:0; width:100%; z-index:999; }
.newsAlertWrpr .container {max-width:1920px;} 

.alert {
	overflow:hidden;
	border: 1px solid #ff6666;
	/* margin: 1em 0; */
	padding: 10px;
	min-height: 50px;
	color: #fff;
	background-color: #ff0000;
	line-height: 1.2;
}
.alertSign {float:left; margin-right: 10px;}
.alertItem {padding:10px 0; margin:0 0 0 50px;}
.alert a, .alert .date {color:#fff;}
h3.newsAlertTitle {font-size:19px; line-height:1.2;}


.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; margin:0 0 5px;}
.genericPager {float:right;}
.genericPager ul {list-style-type: none; margin:0; padding:0;}
.genericPager li {float:left; display:block; font-size:16px; margin:0 5px 5px 0;}
.genericPager li a {float:left; color:#000; 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 a.btn {color:#fff; padding:3px 10px; margin:0 15px;}
.genericPager li.nolink {color:#fff; /* border:1px solid #ddd; */ padding:2px 4px;}
.genericPager li.active {color:#176433; /* border:1px solid #ddd; */ padding:2px 4px; /* background-color:#CFCFCF; */ font-weight:bold;}


/* ##  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:10px;}

/* ##  Breadcrumb  ## */

.breadcrumbs a, .breadcrumbs a:visited { text-decoration:none; }
.breadcrumbs a:hover, .breadcrumbs a:focus, .breadcrumbs a:active { text-decoration:underline; }
.breadcrumbs span { margin:0 2px; font-weight:normal; }


/* ##  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; text-decoration:none;}
.pageToolsWrapper a:hover,
.pageToolsWrapper a:active {color:#1C4E87; 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 {}
.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%;}
.emailFriendWrapper {width:680px; text-align:left; margin:0 auto; z-index:1;}

.emailFriendWrapper .siteHeader a.sitelogo, 
.emailFriendWrapper .siteHeader a.sitelogo:link, 
.emailFriendWrapper .siteHeader a.sitelogo:visited {width:200px; margin:10px auto 20px;}


@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; }
}

/* ## 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-border-radius:5px; -moz-border-radius:5px; border-radius:5px;
    -wekbit-transition: all 0.4s ease-in-out;
            transition: all 0.4s ease-in-out;	
}
.btn { display:inline-block; margin:0; padding:9px 18px; font-weight:normal; color:#fff; font-weight:bold; background-color:#479347; border:none; text-align:center; text-decoration:none; cursor:pointer; overflow:visible; text-transform:uppercase;
	-webkit-border-radius:5px; -moz-border-radius:5px; border-radius:5px;
    -wekbit-transition: all 0.4s ease-in-out;
            transition: all 0.4s ease-in-out;	
}
.btn:hover, .btn:focus {background-color:#000;
    -wekbit-transition: all 0.4s ease-in-out;
            transition: all 0.4s ease-in-out;
}
a.btn {color:#fff;}
a.btn:hover, a.btn:focus {background-color:#000; color:#fff; text-decoration:none;
    -wekbit-transition: all 0.4s ease-in-out;
            transition: all 0.4s ease-in-out;
}


.btnAlt {background-color:#ccc ;
    -wekbit-transition: all 0.4s ease-in-out;
            transition: all 0.4s ease-in-out;
}
.btnAlt .btn {color:#313131; background-color:#ccc ; text-align:center; text-decoration:none; cursor:pointer;
    -wekbit-transition: all 0.4s ease-in-out;
            transition: all 0.4s ease-in-out;
}
.btnAlt:hover, .btnAlt:hover .btn { background-color:#000; color:#fff;
    -wekbit-transition: all 0.4s ease-in-out;
            transition: all 0.4s ease-in-out;
}

.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; padding:40px 0 20px;}
.footerBar {margin-bottom:10px; min-height:1px; padding:10px; background-color:#ecf1f8;}
.ftrPhonenum {float:left; width:170px; height:28px; text-indent:-9999em; background-position:100% 0; background-repeat:no-repeat;}

.advFooter {position: relative; margin-bottom:15px; padding:0 0 5px 0;}
.advFooter li.callout {margin-bottom:10px;}
.advFooter .callout a,
.advFooter .callout a:link,
.advFooter .callout a:visited {font-weight:bold; font-size:1.1em; color:#6d6d6d;}

ul.advList {margin:0 0 10px; padding:0; list-style-type:none;}
ul.advList a,
ul.advList a:link,
ul.advList a:visited {text-decoration:none;}
ul.advList a:hover,
ul.advList a:active {text-decoration:underline;}
ul.advList .listhdng {display:block; margin-bottom:8px; font-size:1.1em;}
ul.advList .listhdng,
ul.advList .listhdng a,
ul.advList .listhdng a:link,
ul.advList .listhdng a:visited {font-weight:bold; color:#6d6d6d;}

.footerHeading {display:block; margin:0 0 2px; font-weight:bold; font-size:1.1em;}

.welcomeMessage {position:absolute; bottom:5px; right:0; width:50%; padding:20px; font-size:12px; background-color:#ECF1F8; border:1px solid #9BAAB7;}
.welcomeMessage .iconClose {position:absolute; top:3px; right:3px; width:13px; height:13px; background:url(/cms/images/layout/icon_x.gif) no-repeat 0 0; cursor:pointer;}



.footer {text-align:center; color:#fff;}
.footerLinks {font-size:14px; font-weight:300;}
.footerLinks a,
.footerLinks a:link,
.footerLinks a:visited {text-decoration:none; color:#fff;}

.footerLinks a:hover,
.footerLinks a:active {text-decoration:underline;}

.footer .social-icons {float:none;  margin:0 0 15px;}
.footer .social-icons a {width:38px; height:32px;}
.footer .social-icons .svg-icon {
    height: 32px;
    width: 38px;
}
.footer .social-icons a:hover .svg-icon,
.footer .social-icons a:focus .svg-icon {
	fill:#000;
    -wekbit-transition: all 0.4s ease-in-out;
            transition: all 0.4s ease-in-out;	
}


.footer .schoolInfo {margin:0 0 25px}
.footer .school {display:inline-block; font-size:18px; font-weight:bold;}
.footer .address {font-size:14px; font-weight:300;}
.footer span.mobile {font-size:14px; font-weight:300; padding:0 10px;}


.footerCallout {text-align:center; margin:0 0 20px;}
.footerCallout a,
.footerCallout a:visited
	{font-size:18px; font-weight:bold; text-decoration:none; color:#fff;}
.footerCallout a:hover,
.footerCallout a:focus {color:#000;}	
.footerCallout .circle {display:inline-block; padding:0 15px;}

.footerCallout .svg-icon {width:57px; height:57px;}
.footerCallout a:hover .svg-icon,
.footerCallout a:focus .svg-icon {
	fill:#000;
    -wekbit-transition: all 0.4s ease-in-out;
            transition: all 0.4s ease-in-out;	
}

.subFooter {color:#b2b2b2; font-size:12px; padding:16px 0;}
.subFooter a,
.subFooter a:link, 
.subFooter a:visited {color:#b2b2b2; text-decoration:none;}
.subFooter a:hover, .subFooter a:focus {text-decoration:underline;}

@media (min-width:1200px) {
	.footerCallout .txt {position:relative; top:-22px;}
}


.footerCallout.callout-alt .circle {     border: 3px solid #fff;    padding: 10px;    border-radius: 50%;    display: inline-block;    width: 57px;    height: 57px; margin-bottom: 5px; }
.footerCallout.callout-alt a:hover .circle,
.footerCallout.callout-alt a:focus .circle { border-color: #000; 
    -wekbit-transition: all 0.4s ease-in-out;
            transition: all 0.4s ease-in-out;	
}
.footerCallout.callout-alt .svg-icon {  margin: -4px;    width: 43px;    height: 43px;}
@media (min-width:1200px) {
	.footerCallout.callout-alt .circle {margin-bottom:0;}
	.footerCallout.callout-alt .txt { top:-12px;}
}

@media (min-width:60em) {
	.subFooterLinks {display:inline-block;}	
}
@media (min-width:48em) {
	.copyright {display:inline-block;}
	.footerLinks div  {display:inline-block;}
	
	.footer .school {display:inline-block;}
	.footer .address {display:inline-block;}

}
@media (min-width:1024px) {
	.footerLinks {display:inline-block;}	
}
@media (max-width:1023px) {
	.footerLinks {margin-right: 6px;}
	.footer span.tablet {display:none;}
}	
@media (max-width:47.938em) {
	.footer {padding:30px 0 0;}
	
	.subFooter a,
	.subFooter a:link, 
	.subFooter a:visited {color:#fff;}
	
	.powered {display:block;}
	.subFooter span.mobile {display:none;}
	
	.footer .social-icons {display:block;}
	.footer span.mobile {display:none;}
	.footer .schoolInfo {margin:0 0 15px}
	.footer .school {font-size:14px;}
	.footer .address span {display:block;}
	.footerLinks {margin-right:0;}
}
@media (max-width:59.938em) {
	.subFooter span.tablet {display:none;}
}
@media (max-width:1199px) {
	.footerCallout .txt {display:block;}
}

/* ## Footer Email Signup ## */

.emailSignup {margin:0; color:#fff; padding:30px 0;}
.emailSignup .imgLabel {float:left; margin:5px 7px 0 0;}
.emailSignup .text {float:left; width:165px; margin:0 5px 0 0;}
.emailSignup label {font-size:20px; display:inline-block; margin:0 0 5px;}
.emailSignup .btn { font-weight:bold; padding:10px 20px; width: 100%; border:1px solid #000;
	-webkit-border-radius:5px; -moz-border-radius:5px; border-radius:5px;
}
.emailSignup .btn:hover,
.emailSignup .btn:focus {border:1px solid #fff;}
.emailSignup .formee input[type="text"] {padding:12px 10px 13px; color:#626161; margin-bottom:0; border:1px solid #7cbd3f;  background: #fff;}

.emailSignupLeft {text-align:center; margin:0 0 10px;
	-webkit-box-sizing: border-box; -moz-box-sizing: border-box; box-sizing: border-box;
}
.emailSignupRight { padding-top:5px;}
.emailSignupTxt {margin:0 0 25px;}
.emailSignup .btnWrapper {width:190px; margin:0 auto; display:block;}

@media (min-width:48em) {
	.emailSignup {padding:50px 0;}	
	.emailSignupTxt {width:64%; margin-right: 1%; float:left; margin-bottom:0;}
	.emailSignup .btnWrapper {width:34%; margin-left: 1%; display:inline-block;}	
	.emailSignup .btn {padding:13px 20px;}
	.emailSignup label {font-size:24px;}	
	.emailSignupLeft {float:left; width:345px; padding-right:30px; line-height:60px; text-align:left; margin:0;}
	.emailSignupRight {float:left; width:calc(100% - 345px);}
	.emailSignup .btn {-webkit-border-radius:0; -moz-border-radius:0; border-radius:0;}	
}
@media (min-width:60em) {
	.emailSignup label {font-size:30px;}
	.emailSignupLeft {width:435px; padding-right:40px;}
	.emailSignupRight {width:calc(100% - 435px);}	
}
@media (min-width:1200px) {
	.emailSignup label {font-size:40px;}	
	.emailSignupLeft {width:570px; padding-right:50px;}
	.emailSignupRight {width:calc(100% - 570px);}
}



/* ## Footer Social Follow ## */
.social-icons {float:right; margin-top: 7px;}
.social-icons a {text-decoration:none; display:inline-block; margin:0 5px; color:#fff; width:26px; height:30px;}
.social-icons a:hover,
.social-icons a:focus {color:#000; text-decoration:none; }

.social-icons .svg-icon {
    fill: #fff;
    height: 26px;
    position: relative;
    width: 30px;
}

@media (min-width:768px) and (max-width:959px){
	.social-icons a {  margin: 0 2px; width: 18px; height: 18px; vertical-align: middle; }
	.social-icons .svg-icon { height: 18px;  width: 18px; }
}

.main .social-icons a:hover .svg-icon,
.main .social-icons a:focus .svg-icon,
.headerLeft .social-icons a:hover .svg-icon,
.headerLeft .social-icons a:focus .svg-icon {
    fill: #479347;
}

.svg-icon {
    fill: #fff;
    /*position: relative;	
    height: 40px;

    width: 40px;*/
}


/* ## Table Wrapper to allow for overflow/scroll on smaller screens ## */
.tableWrapper { overflow:auto; }
.tableWrapper h2 {margin:0;}
table.dataTbl {
	widtH:100%;
	display: table;
	border-collapse:collapse;
	margin-bottom:20px;
	border: 1px solid #ccc;
}
	
table.dataTbl tr:nth-child(even) {background:#ebebeb;}
table.dataTbl tr:nth-child(odd) {background:#fff;}
table.dataTbl th {background:#479347; padding:10px 15px; font-size:1em; color:#fff; text-transform:uppercase; text-align:left;}
table.dataTbl th:first-child{padding-left:40px;}
table.dataTbl th a {color:#fff; text-decoration:underline;}
table.dataTbl td {vertical-align:top; padding:12px 15px; font-weight:600;}
table.dataTbl td:first-child{padding-left:40px;}
table.dataTbl td td {border-style:none;}

table.dataTbl tr.loss td {color:#333; font-weight:normal;}

@media (max-width:47.938em){
	table.dataTbl {font-size:14px;}
	table.dataTbl th {padding:8px 10px;}
	table.dataTbl td {padding:10px 10px;}
	table.dataTbl th:first-child{padding-left:10px;}
	table.dataTbl td:first-child{padding-left:10px;}	
}

.splitted-table { table-layout:fixed;}
.splitted-table th { border-right: 1px solid #ccc;}
.splitted-table th:last-child { border-right:0;}
.splitted-table td:nth-child(3) { border-right: 1px solid #ccc;}

/* Directory Description */
.directoy-description > div { margin-bottom: 30px;}
@media (min-width:768px){	
	.directoy-description .staff-rail {text-align: left;}
	.directoy-description .railLink {margin: 0 0 20px;}
	.directoy-description .staff-rail figure {float: right; width: 30%; text-align:right;}
}

/* ## 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;}

.figure-right {display:table; max-width:100%; float:right; margin:0 0 15px 20px;  border-top:3px solid #000; border-bottom:3px solid #000; padding:5px 0;}
.figure-left  {display:table; max-width:100%; float:left; margin:0 20px 15px 0; border-top:3px solid #000; border-bottom:3px solid #000; padding:5px 0;}
.figure-right figcaption,
.figure-left figcaption {margin-top:5px; display:table-caption; caption-side:bottom; font-size:0.9em;}

.figure-right img,
.figure-left img {
    display: block;
    width: 100%;}

.hidden-info, a.hidden-info { color:#fff; background:#00529b; -webkit-transition: all 0s; transition: all 0s; }
.hidden-info:focus { display:block; padding:10px; width:100%; text-align:center;  }




/* =================================================================
                        Custom styles
===================================================================*/
/* .container {border:1px solid #ccc;} */


.headerWrpr {background:#348934; padding:23px 0 20px; position:relative;}
.sitelogo-wrpr {padding:0 15px; line-height:142px;}
.sitelogo {margin:0;}
.sitelogo .mobile {display:none;}

.footerWrpr {background:#348934;}
.subFooterWrpr {background:#000; text-align:center;}



.siteHeader .desktopLinks {list-style:none; margin:2px 0 0 0; padding:0; float: left;}
.siteHeader .desktopLinks li {display:inline-block; padding:0 20px 0 20px; position:relative;}

.siteHeader .desktopLinks li:nth-child(-n+2):after {
	position:absolute;
	content:"";
	top:50%;
	right:-2px;
	height:12px;
	margin-top:-6px;
	width:2px;
	background:#fff;
}
.siteHeader .desktopLinks #lnkLogout:after {
	position:absolute;
	content:"";
	top:50%;
	left:-3px;
	height:12px;
	margin-top:-6px;
	width:2px;
	background:#fff;
}
.siteHeader .desktopLinks li:first-child{padding-left:0;}
.siteHeader .desktopLinks li  a {color:#fff; text-decoration:none; text-transform:uppercase; font-weight:600; display:inline-block; padding:10px 0;}
.siteHeader .desktopLinks li.translate {padding:0 10px 0 0;}
.siteHeader .desktopLinks li.translate a{padding-left:60px; cursor: pointer;
	background: url(/cms/images/layout/icon-translation.png) no-repeat 8px 50%;
}
.siteHeader .desktopLinks li a:hover,
.siteHeader .desktopLinks li a:focus { color:#348934; text-decoration:none;}
.siteHeader .desktopLinks li.translate a:hover,
.siteHeader .desktopLinks li.translate a:focus {text-decoration:none;}

@media (min-width:768px) and (max-width:1439px){
	.siteHeader .desktopLinks {font-size:14px;}
	.siteHeader .desktopLinks li {padding:0 20px 0 14px;}
}
@media (min-width:768px) and (max-width:959px){
	.siteHeader .desktopLinks li {padding:0 12px 0 12px;}
	.siteHeader .desktopLinks li.translate {padding:0;}		
	.social-icons {margin-right: 40px;}
}
@media (min-width:768px) and (max-width:1400px){
	.siteHeader .desktopLinks li.translate span {display:none;}
}

.siteHeader .mobileLinks {list-style:none; margin:0; padding:0; display:table; width:100%; table-layout:fixed; background:#181f28; border-top:1px solid #e5e5e5; }
.siteHeader .mobileLinks li {display:table-cell; border-right:1px solid #e5e5e5; text-align:center; height:58px; vertical-align:middle; border-bottom:1px solid #e5e5e5;}
.siteHeader .mobileLinks li:last-child {border-right:none;}
.siteHeader .mobileLinks li a {color:#fff;}


#google_translate_element {
    display: none;
}
#google_translate_element.active {
    display: block;
}
#google_translate_element {
    position: absolute;
    right: 20%;
    top: 59px;
    z-index: 99999;
}
#google_translate_element a:hover,
#google_translate_element a:focus {text-decoration:none;}
@media (min-width:48em) {
	#google_translate_element {
		top:39px;
		right:50%;
	}	
}
.goog-te-banner-frame.skiptranslate {display: none !important;}
body { top: 0px !important; }

.pageTopWrpr {text-align:center; background:rgba(31, 31, 31, 0.9); height:80px; position:relative; overflow-x: hidden;}
.pageTopImg {
	position:absolute;
	top:0;
	left:50%;
	margin-left:-400px;
	width:1060px;
}
.pageTopImg img {max-width:1060px;}
.pageTopImg p {margin:0;}

.pageTop {position:absolute; width:100%; text-align: center; display:table;}
.pageTop h1 {color:#fff; font-size:22px; text-transform:uppercase; margin:0;  font-weight:bold; display:inline-block; line-height:1.1; text-shadow: 4px 4px 2px rgba(0, 0, 0, 0.5); display:table-cell; vertical-align:middle; height:80px; padding:0 20px;}

@media (min-width:48em) {
	.pageTopWrpr {height:145px}
	.pageTopImg {
		position:absolute;
		top:0;
		left:50%;
		margin-left:-960px;
		width:1920px;
	}
	.pageTopImg img {max-width:1920px;}
	
	.pageTop h1 {font-size:30px; height:145px;}	
}
@media (min-width:60em) {
	.pageTop h1 {font-size:36px;}
}
@media (min-width:1200px) {
	.pageTop h1 {font-size:42px;}
}
@media (min-width:1440px) {
	.pageTop h1 {font-size:48px;}	
}


/* Campus Tour, Rebel Gear
--------------------------------------*/
.campusWrpr {background:#4b4a4a; position:relative;}
.campusWrpr:before {
    position: absolute;	
    content: "";
    left: 0;
    top: 0;	
	width: 50%;	
    height: 100%;
    background: #fff none repeat scroll 0 0;	
}
.campus-tour {background:#fff; padding:40px; text-align:center;}
.campus-tour h2 {font-size:40px; font-weight:900; text-transform:uppercase; color:#348934; margin:0;}
.campus-tour h2 span {color:#000;}
.campus-tour p {font-size:20px;}
.campus-tour .logo-circle {margin:0 0 10px;}
.campus-tour .btn {padding: 9px 35px 9px 70px; position:relative;}
.campus-tour .btn:after {
	position:absolute;
	content:"";
	width:31px;
	height:25px;
	top:5;
	left:25px;
	background: url(/cms/images/layout/icon-360deg.png) no-repeat 0 0;
}
.rebel-gear {background:#4b4a4a; padding:40px; text-align:center;}
.rebel-gear h2 {font-size:40px; font-weight:900; text-transform:uppercase; color:#348934; margin:0;}
.rebel-gear h2 span {color:#fff;}
.rebel-gear p {font-size:20px; color:#fff;}
.rebel-gear .logo-rebel-gear {margin:0 0 11px;}
.rebel-gear .btn {width:210px;}

@media (max-width:47.938em) {
	.campus-tour {padding:30px 4%;}
	.campus-tour h2 {font-size:33px;}
	.campus-tour p {font-size:17px;}
	.campus-tour p span {display:none;}
	.campus-tour .btn {padding:9px 25px 9px 60px;}
	.rebel-gear {padding:30px 4%;}	
	.rebel-gear h2 {font-size:33px;}
	.rebel-gear p {font-size:17px;}
	.rebel-gear p span {display:none;}	
	.rebel-gear .btn {width:190px;}	
}	
@media (max-width:47.938em) {
	.campusWrpr .grid_6 {padding:0;}
}	


.newsletterWrpr {background:#000;}


/* Departments 
------------------------------*/
.departments ul {list-style:none; padding:0; margin:0;}
.departments ul li {float:left; width:33.33%; padding:0 10px;}

@media (max-width:639px) {
	.departments h3 {font-size:15px;}
}
	a.deptLink {display:block; text-align:center; color:#000; text-decoration:none; padding:15px 0;  max-width:250px; margin:0 auto 40px; border:2px solid rgba(170,170,170,0);
		-webkit-box-sizing: content-box; -moz-box-sizing: content-box; box-sizing: content-box;
	 
		-wekbit-transition: all 0.4s ease-in-out;
				transition: all 0.4s ease-in-out;
	}
	.deptLink .svg-icon {
		fill: #408e4a;
		display:inline-block;
		width:100%;
		margin: 0 0 30px;
		-wekbit-transition: all 0.4s ease-in-out;
				transition: all 0.4s ease-in-out;
	}
	.deptLink:hover,
	a.deptLink:focus {background:#408e4a; color:#fff; border:2px solid rgba(170,170,170,1);
		-wekbit-transition: all 0.4s ease-in-out;
				transition: all 0.4s ease-in-out;
	}
	/* a.deptLink:hover h3,
	a.deptLink:focus h3,
	a.deptLink:hover img,
	a.deptLink:focus img {display:none;} */

	.deptLink:hover .svg-icon,
	.deptLink:focus .svg-icon {fill: #fff;
		-wekbit-transition: all 0.4s ease-in-out;
				transition: all 0.4s ease-in-out;
	}
		
	.deptLink img {margin:0 0 30px;}

/* Adjusting icons */
a.deptLink.icon-softball {
	overflow: hidden;
	height: 196px;
}
a.deptLink.icon-softball .svg-icon {
	width: 240px;
    height: 240px;
    margin-top: -45px;
    margin-left: 5px;
}
a.deptLink.icon-softball h3 {
	margin-top: -42px;
}

a.deptLink.icon-poms .svg-icon {
	width: 62%;
}


@media (min-width:48em) {
	.departments ul li:nth-child(3n+1) {clear:left;}	
}
@media (max-width:47.938em) {
	.departments {margin:0 -15px;}	
	.departments ul li {width:50%; padding:0 10px;}	
	.departments ul li:nth-child(2n+1) {clear:left;}	

	a.deptLink {padding:10px;}
	.dept-box h3 {font-size:18px;}
}



/* Portal Pages 
============================ */
.portal-icons > br {display:none;}
.portal-icons > a {display:block; text-align:center; color:#000; text-decoration:none; margin:0 auto 40px;
	-webkit-box-sizing: content-box; -moz-box-sizing: content-box; box-sizing: content-box;
 
	-wekbit-transition: all 0.4s ease-in-out;
			transition: all 0.4s ease-in-out;
}
.portal-icons > a > div {
	padding:15px;
	border:2px solid rgba(170,170,170,0);
}

.portal-icons > a > div > span {
	display: block;
}

.portal-icons > a .svg-icon {
	fill: #000; 
	display:inline-block;
	width:100%;
	margin: 0 0 30px;
	-wekbit-transition: all 0.4s ease-in-out;
			transition: all 0.4s ease-in-out;    
}
.portal-icons > a:hover,
.portal-icons > a:focus {background:#408e4a; color:#fff;
	-wekbit-transition: all 0.4s ease-in-out;
			transition: all 0.4s ease-in-out;
}
.portal-icons > a:hover > div,
.portal-icons > a:focus > div {
	border:2px solid rgba(170,170,170,1);
}
.portal-icons > a:hover .svg-icon,
.portal-icons > a:focus .svg-icon {
	fill: #fff;
	-wekbit-transition: all 0.4s ease-in-out;
			transition: all 0.4s ease-in-out;	
}

.portal-icons {
	font-size:22px;
	font-weight: bold;
}

.portal-icons > a {display:block; float:left; width:20%; }
.portal-icons.four-items > a {float:left; width:25%; }

@media (min-width:48em) {
	.portal-icons.five-items > a:nth-child(5n+1) {clear:left;}	
	.portal-icons.four-items > a:nth-child(4n+1) {clear:left;}	
}
@media (max-width:47.938em) {
	.portal-icons {margin:0 -15px;}	
	.portal-icons > a,
	.portal-icons.four-items > a	{width:50%; }	
	.portal-icons > a:nth-child(2n+1) {clear:left;}	
}


/* New 
============================ */
.dept-box {display:block; text-align:center; color:#000; text-decoration:none; padding:15px 0;  max-width:250px; margin:0 auto 40px;  cursor:pointer; position:relative;
	-webkit-box-sizing: content-box; -moz-box-sizing: content-box; box-sizing: content-box;
 
    -wekbit-transition: all 0.4s ease-in-out;
            transition: all 0.4s ease-in-out;
}
.dept-box h3 {font-size:21px; margin:0; line-height:1.2;}
.dept-box img {
    margin: 0 0 30px;
}
.dept-box .svg-icon {
    fill: #408e4a;
    margin: 0 0 30px;
    max-width: 100%;	
}
.dept-box-text {
    background: #408e4a;
	border:2px solid rgba(170,170,170,1);
    display: none;
    height: 100%;
    left: 0;
    padding: 25px 10px;
    position: absolute;
    text-align: center;
    top: 0;
    width: 100%;
    z-index: 9;
}
@media (min-width:1200px) {
.dept-box:hover .dept-box-text
	{
		display: block;
	}
}
.dept-box-text > div {display: table; table-layout: fixed; width:100%; height: 100%;}
.dept-box-text > div > div {display: table-cell; vertical-align: middle;}
.dept-box-text ul {list-style:none; padding:0; margin:0;}
.dept-box-text ul li {float:none; width:100%; display:block; margin:3px 0; padding:0;}
.dept-box-text ul li {font-size:17px; color:#fff; font-weight:bold; }
.dept-box-text h4 a {color:#000;}
@media (max-width:479px) {
	.dept-box-text {padding:15px 10px;}
	.dept-box-text h4 {font-size:17px; margin:0 0 .25em;}	
	.dept-box-text ul li {margin:1px 0;}
	.dept-box-text ul li a {font-size:15px; display:inline-block; line-height:1.1;}	
}
@media (min-width:1200px) {
	.dept-box-text:hover h4 a {color:#fff;}
}



/* Faculty Portal 
------------------------------*/
.deptLink .svg-icon.icon-fs {padding:0 10px; max-width:140px;}
.deptLink .svg-icon.icon-documents {max-width:175px;}
@media (min-width:1200px) {
	.departments.faculty-portal ul li {width:25%; width:16.666%;}
	.departments.faculty-portal ul li:nth-child(3n+1) {clear:none;}		
	.departments.faculty-portal ul li:nth-child(6n+1) {clear:left;}
}
@media (min-width:60em) and (max-width:1199px){
	.departments.faculty-portal ul li {width:25%;}
	.departments.faculty-portal ul li:nth-child(3n+1) {clear:none;}	
	.departments.faculty-portal ul li:nth-child(4n+1) {clear:left;}
}
@media (min-width:48em) and (max-width:59.938em){
	.departments.faculty-portal ul li {width:33.3%;}	
	.departments.faculty-portal ul li:nth-child(3n+1) {clear:left;}
}
@media (max-width:47.938em) {
	.departments.faculty-portal ul li {width:50%; padding:0 10px;}	
	.departments.faculty-portal ul li:nth-child(2n+1) {clear:left;}
}

/* Athletics 
------------------------------*/
.athletics .departments {float:left; width:50%; margin:0;}
.athletics h2 {float:left; width:50%; text-align:center; text-transform:uppercase;}
.athletics .departments:last-child {border-left:2px solid #a1a1a1;}
.athletics .departments ul li {width:100%; clear:none;}

.athletics .deptLink .svg-icon {margin:0;}

@media (min-width:48em) {
	.athletics .departments {padding-top:40px;}
	.athletics .departments ul li {width:50%;}
	.athletics .departments ul li:nth-child(odd) {clear:left;}
}
@media (max-width:47.938em) {
	.athletics	{margin:0 -15px;}
	.athletics a.deptLink {margin:0 auto 10px;}
}	

/* Staff Rail 
------------------------------*/
.staff-rail {
	margin:0 0 20px 0;
	text-align:center;
	padding:0 10px;
	text-transform:uppercase;
	font-weight:bold;
}

.staff-rail figure {
	position:relative;
	max-width:240px;
	margin:0 auto 10px auto;

}
.staff-rail figure img {
	-webkit-border-radius:50%; -moz-border-radius:50%; border-radius:50%;	
	margin-bottom: 15px;
}
.staff-rail h3 {
	margin:0;
	font-size:26px;
	line-height:1.1;
}
.staff-rail p + p {margin:0 0 .5em;}



@media (max-width:1199px){
	.staff-rail h3 {font-size:17px;}
	.staff-rail p {font-size:15px;}
	.staff-rail .btn {font-size:15px;}
	.railLink {font-size:15px;}
}
@media (max-width:800px){
	.staff-rail h3 {font-size:13px;}
	.staff-rail p {font-size:12px;}
	.staff-rail .btn {font-size:12px;}
	.railLink {font-size:12px;}
}
@media (max-width:479px){
	.staff-rail	.btn {display:block; margin:0 -10px;}
	.staff-rail h3 {font-size:24px;}
}

.railLink {margin:0 auto 20px; padding:26px 15px; text-transform: uppercase; font-weight: bold;
	background-color: #479347;
    color: #fff;
    cursor: pointer;
    text-align: center;
    -wekbit-transition: all 0.4s ease-in-out;
            transition: all 0.4s ease-in-out;
}
.railLink:hover,
.railLink:focus {background:#7a7a7a;}
.railLink a {color:#fff; text-transform: uppercase; font-weight: bold;}
.railLink a:hover,
.railLink a:focus {text-decoration:none;}
.railLink p {margin:.75em 0 0; line-height:1.2; text-transform:none; font-weight:normal;}

@media (min-width:480px) {
	.railLink {max-width:450px;}
}

.railLink.no-hyperlink {cursor: auto;}
.railLink.no-hyperlink:hover,
.railLink.no-hyperlink:focus {background-color: #479347;}



/* Clubs
------------------------------*/
.box-list {
	display: flex;
	flex-wrap:wrap;
	list-style-type: none; 
	margin:0 -2px 1rem -2px;
	padding:0;
}

.box-list li {
	width: 100%;
	padding:4px 3px;
}

.box-list li a {
	color:#000;
	font-weight:bold;
	font-size:20px;
	display:block;
	padding:16px 20px;
	height:100%;
	text-align:center;
	line-height:1.1;
	background:#d8d8d8;
}

.box-list li a:hover,
.box-list li a:focus {
	color:#fff;
	text-decoration:none;
	background:#479347;
}

.box-list li a {
	min-height: 75px;
}
.box-list li a h3 {
	margin:0;
	display:table;
	table-layout: fixed;
	width:100%;
	height: 100%;
}
.box-list li a h3 span {
	display: table-cell;
    vertical-align: middle;
}

@media only screen and (min-width:480px){
	.box-list li {
		width: 50%;
	}
}
@media only screen and (min-width:48em){
	.box-list li {
		padding: 2px 2px;	
	}	
}
@media only screen and (min-width:60em){
	.box-list li {
		width: 33.33%;
	}
}


/* Login
------------------------------*/
.loginWrpr {background:#fff; border:2px solid #a1a1a1; max-width:660px; margin:40px auto; padding:30px 45px;}
.loginWrpr h1 {padding:0 15px; font-size:30px; text-transform:uppercase; color:#313131; /*font-weight:600;*/}

/*.loginWrpr .formee-lbl,
.loginWrpr .formee label {color:#000;}*/
.loginWrpr a,
.loginWrpr a:visited {color:#000;}

.loginWrpr .formee input[type="text"],
.loginWrpr .formee input[type="password"]  {
	background:#ededed;
	border-color:#c7c7c7;
	padding: 6px 10px;
	-webkit-border-radius:10px; -moz-border-radius:10px; border-radius:10px;
}

@media (max-width:479px){
	.loginWrpr {padding:20px 20px;}
	.loginWrpr h1 {padding:0}
}

.accountLogin {width: 500px; max-width: 100%; margin:0 auto;}


/* Events - Homepage
-------------------------------------*/
.tabPanel .grid_3 .match-heights-item { /* background: #cbcccd; */ }
@media (min-width:48em) {
	.tabPanel .grid_3 .match-heights-item {margin-bottom:30px; background: #000;}
}
.eventsSummary .modHead {background:#021702;}
.eventsSummary .modHead h2.title {font-size:30px; color:#fff; font-weight:600; text-transform:uppercase; text-align:center; margin:0; padding-top:20px;}
.eventsSummary .modContent {background:#021702; padding:10px 15px 15px; }
.home .eventsSummary .modContent {margin:0 0 30px;}
.eventsSummary .modContent .item {padding:0.30em 0;}
.eventsSummary .content {color:#fff;}
.eventsSummary .content h3 {color:#fff; font-size:16px;}
.eventsSummary .content h3.title a {color:#fff; font-size:16px;}
.eventsSummary .date {
    display: inline-block;
    float: left;
    padding: 0 5px;
    vertical-align: middle;
    width: 70px;
}
.eventsSummary .date > .dateIcon {
    text-align: center;
}
.eventsSummary .date > .dateIcon > .month {
    background-color: #348934;
    color: #fff;
    font-weight: bold;
    line-height: 0.97;
    min-width: 50px;
    padding: 5px 5px 0;
    text-transform: uppercase;
}
.eventsSummary .date > .dateIcon > .day {
    background-color: #348934;
    color: #fff;
    font-size: 36px;
    font-weight: 300;
    line-height: 0.97;
    padding: 0 5px 5px;
}

.eventsSummary .item > .content {
    display: table-cell;
    padding: 0 5px 0 10px;;
    vertical-align: top;
    width: 100%;
}
.eventsSummary .time {font-size:14px;}

/* 16px baseline (768px - 1199px) */
@media only screen and (min-width:48em) and (max-width:1199px) {
	/* .tabs #tabs02 .grid_9 {width:66.66%;}
	.tabs #tabs02 .grid_3 {width:33.33%;} */
}
/* 16px baseline (180px - 767px) */
@media only screen and (min-width:11.250em) and (max-width:47.938em) {
	.eventsSummary .modHead {display:none;}
	.eventsSummary .modContent {background:none; padding:0; margin:0 0 15px;}
	.eventsSummary .modContent .item {background:#021702; padding:0; margin:10px 0;}
	.eventsSummary .item > .content {padding:7px 5px;}
	.eventsSummary .date {padding:0 5px 0 0;}
	
	.home .eventsSummary .modContent {margin:0 0 15px;}	
	
	.tabPanel .match-heights-item {min-height:0 !important;}
}

/* Events - Calendar - Homepage
-------------------------------------*/
.eventsTheme .hdngbar {display:none;}
.eventsTheme + .monthNav {display:none;}
.tabs .eventsTheme + .monthNav {display:block;}
.tabs .monthNav {text-align:center;}
.tabs .monthNav a.prevMonth {float:left; font-size:24px; font-weight:300; color:#233746; padding-left:15px; position:relative; top:15px;}
.tabs .monthNav a.nextMonth {float:right; font-size:24px; font-weight:300; color:#233746; padding-right:15px; position:relative; top:15px; }
.tabs .monthNav a.prevMonth:after,
.tabs .monthNav a.nextMonth:after {
	position:absolute;
	font-family: 'icomoon';
	content: "\2329";
	font-size:14px;
	color:#479347;
	font-weight:normal;
	color:#233746;
	top:50%;
	margin-top:-5px;
	left:0;
}
.tabs .monthNav a.nextMonth:after {
	content: "\232a";
	left:auto;
	right:0;
}

.tabs .monthNav a.viewAll {display:inline-block;}

.tabs table.calendarMonth {border:1px solid #717070;}
.tabs .calendarMonth th {background:#fff; font-size:18px; color:#233746; font-weight:normal; text-transform:uppercase;}
.tabs .calendarMonth th span {display:none;}
.tabs .eventsTheme .hdngbar {display:block;}
.tabs .eventsTheme .hdngbar h3 {background:#348934; font-size:32px; color:#fff; font-weight:normal; padding:5px 25px; margin:0; border:1px solid #717070; border-bottom:none;}
.tabs .eventsTheme .hdngbar h3 span {float:right;}

.tabs .calendarDayEmpty, 
.tabs .calendarDayEvent {}
.tabs .calendarDayEmpty {background:#fff;}
.tabs .calendarToday {background:#348934;}
.tabs .calendarToday .calendarNumeral {color:#fff; font-weight:600;}
.tabs .calendarNumeral { font-size:22px; font-weight:300; color:#233746; padding:5px 0 0 10px; line-height:1;}
.tabs table.calendarMonth a.eventNumbLink{display:none;}

@media (min-width:48em) {
	.tabs .eventsTheme {padding:0 30px 0 5%; border-right:4px solid #bababa;}
	.tabs .eventsTheme .hdngbar h3 {font-size:32px;}
	.tabs .calendarMonth th {font-size:20px;}
	.tabs .calendarNumeral { font-size:22px;} 

	.tabs .eventsTheme + .monthNav {padding:0 30px 0 5%}	
	
	.tabs .monthNav a.viewAll {margin-top: 7px;}

	.tabs .monthNav a.prevMonth {padding-left:25px; top:0;}
	.tabs .monthNav a.nextMonth {padding-right:25px; top:0;}
}
@media (min-width:60em) {
	.tabs .eventsTheme .hdngbar h3 {font-size:42px;}
	.tabs .calendarMonth th {font-size:24px;}
	.tabs .calendarNumeral { font-size:28px;}
	
	.tabs .monthNav a.prevMonth,
	.tabs .monthNav a.nextMonth {font-size:35px;}
	.tabs .monthNav a.prevMonth:after,
	.tabs .monthNav a.nextMonth:after {font-size:20px; margin-top:-8px;}
	
	.tabs .monthNav a.viewAll {margin-top: 17px;}	
}
@media (min-width:1200px) {
	.tabs .eventsTheme .hdngbar h3 {font-size:52px;}
	.tabs .calendarMonth th {font-size:28px;}
	.tabs .calendarNumeral { font-size:34px;} 	
}
@media (min-width:1440px) {
	.tabs .eventsTheme .hdngbar h3 {font-size:65px;}
}
@media (max-width:479px) {
	.tabs .calendarMonth th {font-size:14px; padding:6px 3px;}
	.tabs .calendarDayEmpty, .tabs .calendarDayEvent { height: 70px;}
	.tabs .calendarNumeral { font-size:18px; padding:5px 0 0 5px;}
	.tabs a.eventNumbLink {font-size:14px;}
}
@media (max-width:48em) {
	.tabs .monthNav {margin:0 0 20px;}		
}

.tabs .event-calendar-short-desc {display: none;}

@media (min-width:1200px) and (max-width:1320px) {
	.home .eventsSummary .modHead h2.title {padding-top: 15px;}
	
	.home .eventsSummary .date > .dateIcon > .month {font-size:15px;}
	.home .eventsSummary .date > .dateIcon > .day {font-size:28px;}
	.home .content .title {line-height: 1.2;}
	.home .eventsSummary .content h3.title a {font-size:15px;}
}

/* Events - Calendar - Landing
-------------------------------------*/
.dropdown-hold { display:none; position: absolute;    bottom: -1px;      font-size: 13px;   text-align: center;    width: 100%;    left: 0; color: #348934;}
.dropdown-hold span { display:inline-block; 
-webkit-transform: rotate(90deg);
-moz-transform: rotate(90deg);
-ms-transform: rotate(90deg);
-o-transform: rotate(90deg);
filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=1);
}
@media (min-width:1200px) {
	.has-dropdown .dropdown-hold { display:block; }
	
	.calendarMonth td {position:relative; height:158px !important; padding:0 !important; }
	.event-calendar-item { height: 158px; min-height:158px; padding:12px 15px 15px;}
	.event-calendar-item > div { height: 100%; overflow: hidden;}
	.calendarMonth td:hover .event-calendar-item { position: absolute; height: auto; width: 100%; background:#176433; color:#fff; z-index: 1;}
	.calendarMonth td:hover .event-calendar-item * { color:#fff !important; text-decoration:none; }
	.calendarMonth td:hover .event-calendar-item.has-dropdown .dropdown-hold { display:none; }
	
	.tabs .calendarMonth td {position:static; height:100px !important; }
	.tabs .event-calendar-item {height: 100px; min-height:100px;}
	.tabs .calendarMonth td:hover .event-calendar-item { position: static;}
}

table.dataTbl.calendarMonth tr:nth-child(even) {
    background: #fff;
}

/* Events - Day View - Homepage
-------------------------------------*/
.tabs .eventsTheme.eventDay {border-right:none; color:#233746; padding:0 0 0 10px;}
.tabs .eventsTheme.eventDay h2 {font-size:28px; color:#233746; font-weight:600;}
.tabs .eventsTheme.eventDay .item {border-top:3px solid #bababa;}
.tabs .eventsTheme.eventDay .item:first-child {border-top:none;}
.tabs .eventsTheme.eventDay .item.alternate {background:none;}
.tabs .eventsTheme.eventDay .item > .content {padding:10px 0 15px;}
.tabs .eventsTheme.eventDay .item .title.eventLink {font-size:24px;}
.tabs .eventsTheme.eventDay .description {display:none;}
.tabs .eventsTheme.eventDay .location,
.tabs .eventsTheme.eventDay .dateTime {font-size:20px; font-style:italic;}

@media (max-width:48em) {
	.tabs .eventsTheme.eventDay {padding:0;}	
}

a.viewAll {display:inline-block; font-weight:bold; color:#000; text-transform:uppercase;}
.tabs .viewAll {display:inline-block; font-weight:bold; color:#000; text-transform:uppercase;     font-size: 1.3em;}
.tabs .eventsSummary .viewAll {margin-left:10px;}

/* News - Homepage
-------------------------------------*/
.tabs .newsSummary .modHead {display:none;}
.tabs .newsSummary .modContent {padding:0; margin:0 -15px;}
.tabs .newsSummary .item {display:block; float:left; width:33.3%; padding:0 15px; margin:0 0 30px; position:relative;}
@media only screen and (min-width:1200px) {
	.tabs .news-tab .newsSummary .item { width:25%; }
}

.tabs .newsSummary .item .aside {display:block; padding:0;}
.tabs .newsSummary .item .content {background:rgba(52,137,52,.9); color:#fff; font-size:14px; padding:10px 15px; position:absolute; bottom:0; left:15px; right:15px; width:auto;}
.tabs .newsSummary .item .content h2.title {font-size:16px; color:#fff;}
.tabs .newsSummary .item .content h2.title a {font-size:16px; color:#fff;}
.tabs .newsSummary .item .content a.more {display:none;}

.tabs .all-tab .newsSummary .item:nth-child(n+7) {display:none;} 

@media only screen and (min-width:1200px) {	
	.tabs .all-tab .newsSummary .item:nth-child(2) .content {background:rgba(26,69,26,.9);} 
	.tabs .all-tab .newsSummary .item:nth-child(5) .content {background:rgba(26,69,26,.9);}  
	.tabs .news-tab .newsSummary .item:nth-child(even) .content {background:rgba(26,69,26,.9);}  
}
/* 16px baseline (768px - 1199px) */
@media only screen and (min-width:48em) and (max-width:1199px) {
	.tabs #tabs00 .grid_9 {width:66.66%;}
	.tabs #tabs00 .grid_3 {width:33.33%;}
	.tabs #tabs00 .newsSummary .item {width:50%;}

	.tabs #tabs00 .newsSummary .item:nth-child(2) .content {background:rgba(26,69,26,.9);} 
	.tabs #tabs00 .newsSummary .item:nth-child(3) .content {background:rgba(26,69,26,.9);} 
	.tabs #tabs00 .newsSummary .item:nth-child(6) .content {background:rgba(26,69,26,.9);} 

	.tabs #tabs01 .newsSummary .item:nth-child(2) .content {background:rgba(26,69,26,.9);} 
	.tabs #tabs01 .newsSummary .item:nth-child(5) .content {background:rgba(26,69,26,.9);}	
}

/* 16px baseline (180px - 767px) */
@media only screen and (min-width:11.250em) and (max-width:47.938em) {
	.home .tabContent {padding:1em 10px;}
	.home .tabContent .grid_9,
	.home .tabContent .grid_3 {padding:0;}
	.home .tabContent .grid_8,
	.home .tabContent .grid_4 {padding:0;}	
	
	.tabs .newsSummary .modContent {margin:0 -10px;}	
	
	.tabs .newsSummary .item {width:100%; float:none; padding:0 10px; margin:0 0 10px;}
	.tabs .newsSummary .item .content {left:10px; right:10px;}
	.tabs .newsSummary .item:nth-child(2n) .content {background:rgba(26,69,26,.9);}	
	
	.tabs .newsSummary .viewAll {margin:5px auto 15px;}
	
	.tabs #tabs00 .newsSummary .item .aside	{display:none;}
	.tabs #tabs00 .newsSummary .item .content {position:relative; left:0; right:0; /* padding:0; */ display:block;}

	
	.tabContent a.viewAll {color:#317e42; border:2px solid #317e42; width:180px; margin:5px auto 15px; display:block; padding:4px 10px; text-align:center;
		-webkit-border-radius:5px; -moz-border-radius:5px; border-radius:5px;
	}
	.tabContent a.viewAll:hover,
	.tabContent a.viewAll:focus {color:#000; border:2px solid #000; text-decoration:none; background:#fff;}	
}


.niceList {
	list-style: outside none none;
    margin: 0 0 1em;
    padding: 0;
}
.niceList li {position:relative; padding:0 0 0 10px; margin:0 0 1em;}
.niceList li:after {
	position:absolute;
	content:"";
	width:5px;
	height:5px;
	top:9px;
	left:0;
	background:#000;
	-webkit-border-radius:50%; -moz-border-radius:50%; border-radius:50%;
}

.main-content .social-icons {margin-left:10px;}
.main-content .social-icons a {width:32px; height:30px;}
.main-content .social-icons .svg-icon {
    fill: #000;
    height: 30px;
    width: 32px;
}

/* Documents module */
.documentItem img {min-width: 16px;}

/* Video Container */
.video-hold {width:560px; max-width:100%;}

/* Administration page adddition */
.administration-page > h3 { border-bottom: 1px solid #348934;}
.administration-page .aside img {width:172px; max-width:172px;}
.administration-page-image {display: block; margin: 0 auto 25px; border-radius: 50%;}

/* Athletics contact page adddition */
.align-center {width: 720px; max-width: 100%; margin:0 auto;} 
.currentAccount {width: 720px; max-width: 100%; margin:0 auto;} 
.currentAccount .required {padding-right: 10px;} 

/* Site Map
-------------------------------------*/
.sitemap-hold table td {vertical-align: top;}
@media (max-width:767px) {
	.sitemap-hold table td {display: block;}
}


.adminFix .headerWrpr {height:auto;}
.adminFix .siteHeader .mobileLinks {display:block;}
.adminFix .siteSearchWrpr {float:none;}
.adminFix .navWrpr {background:#ccc;}
.adminFix .main-nav {position:static;}
.adminFix .pageTopWrpr {height:auto;}
.adminFix .pageTopImg {position:static; left:0; margin-left:0; width:100%;}
.adminFix .pageTop  {position:static; width:100%;}
.adminFix .pageTop h1 {display:block; height:auto;}
.adminFix #google_translate_element {display:block; position:static;}
/* =================================================================
                        Media Queries
===================================================================*/
@media (min-width:1440px) {
	.headerWrpr:after {
		position:absolute;
		content:"";
		height:100%;
		top:0;
		left:0;
		right:50%;
		margin-right:720px;
		background:#fff;
	}	
}

@media (min-width:60em) {

}

@media (max-width:59.938em) {
	.FAQWrpr .grid_6 {width:100%;}
}	

/* 16px baseline (180px - 767px) */
@media only screen and (min-width:11.250em) and (max-width:47.938em) {
	.siteHeader a.sitelogo,
	.siteHeader a.sitelogo:link,
	.siteHeader a.sitelogo:visited {float:none; display:block; width:100%; text-align:center;}

	.pageTools {display:none;}

	.headerWrpr {padding:0;}
	.headerWrpr .container .grid_9 {padding:0;}
	.sitelogo-wrpr {padding:23px 15px 20px; line-height:100%; text-align:center;}
	.sitelogo .mobile {display:inline-block;}
	.sitelogo .desktop {display:none;}
	
	.desktopLinks {display:none !important;}
	.social-icons {display:none;}

	.subFooterWrpr {background:#348934; color:#fff;}
	.subFooter {color:#fff;}		
}


/* 16px baseline (768px +) */
@media only screen and (min-width:48em){
	.headerWrpr {height:142px; padding:0; z-index: 9;
		background: -webkit-linear-gradient(top, #262b33 85px, rgba(71, 147, 71, 0.9) 85px) repeat scroll 0 0;
		background: linear-gradient(to bottom, rgba(31,31,31,.9) 85px, rgba(71, 147, 71, 0.9) 85px) repeat scroll 0 0;
	}
	.home .headerWrpr {
		background: linear-gradient(to bottom, rgba(31,31,31,1) 85px, rgba(71, 147, 71, 0.9) 85px) repeat scroll 0 0;
	}
	.headerWrpr .container .grid_3 {width: 26%;}	
	.headerWrpr .container .grid_9 {width: 74%;}
	
	.sitelogo-wrpr {background:#fff; padding: 0 30px 0 15px; line-height:142px; position:relative; height:142px;}
	.sitelogo-wrpr:before {
		position:absolute;
		content:"";
		left:100%;
		bottom:0;
		width: 0;
		height: 0;
		border-style: solid;
		border-width: 57px 0 0 33px;
		border-color: transparent transparent transparent #ffffff;
	}	
	.sitelogo-wrpr:after {
		position:absolute;
		content:"";
		right:0;
		top:0;
		width: 0;
		height: 0;
		border-style: solid;
		border-width: 0 48px 85px 0;
		border-color: transparent rgba(31, 31, 31, 0.9) transparent transparent;
	}
	.home .sitelogo-wrpr:after {
		border-color: transparent rgba(31, 31, 31, 1) transparent transparent;
	}	
	.navWrpr {position:relative;}
	.main-nav {position:absolute; right:0; top:-57px; width:74%; padding:0 15px 0 5%;}


	.headerLeft {padding-top:23px;}
	.siteHeader .mobileLinks {display:none;}
}


/* =================================================================
                       ADMIN buttons fix
===================================================================*/

.modulePanel a, .modulePanel a:link, .modulePanel a:visited {
	-moz-box-sizing: content-box;
	-webkit-box-sizing: content-box;
    box-sizing: content-box;
}

.overlayModulesWrprBrdr div.modulePanel {
	margin-right:7px;
}


@media (min-width:48em) {

}
@media (min-width:60em) {

}
@media (min-width:1200px) {

}
@media (min-width:1440px) {
	
}
