@charset "UTF-8";
/******************************************************************
Site Name:
Author:

Stylesheet: Main Stylesheet

Here's where the magic happens. Here, you'll see we are calling in
the separate media queries. The base mobile goes outside any query
and is called at the beginning, after that we call the rest
of the styles inside media queries.
******************************************************************/
/*! normalize.css 2012-07-07T09:50 UTC - http://github.com/necolas/normalize.css */
/* ==========================================================================
   HTML5 display definitions
   ========================================================================== */
/*
 * Corrects `block` display not defined in IE6/7/8/9 & FF3.
 */
@import url("https://fonts.googleapis.com/css?family=Noto+Serif:300,700");
@import url("https://fonts.googleapis.com/css?family=Open+Sans:300,400,600,700,800");
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
nav,
section,
summary {
  display: block;
}

/*
 * Corrects `inline-block` display not defined in IE6/7/8/9 & FF3.
 */
audio,
canvas,
video {
  display: inline-block;
  *display: inline;
  *zoom: 1;
}

/*
 * Prevents modern browsers from displaying `audio` without controls.
 * Remove excess height in iOS5 devices.
 */
audio:not([controls]) {
  display: none;
  height: 0;
}

/*
 * Addresses styling for `hidden` attribute not present in IE7/8/9, FF3, S4.
 * Known issue: no IE6 support.
 */
[hidden] {
  display: none;
}

/* ==========================================================================
   Base
   ========================================================================== */
/*
 * 1. Corrects text resizing oddly in IE6/7 when body `font-size` is set using
 *    `em` units.
 * 2. Prevents iOS text size adjust after orientation change, without disabling
 *    user zoom.
 */
html {
  font-size: 100%;
  /* 1 */
  -webkit-text-size-adjust: 100%;
  /* 2 */
  -ms-text-size-adjust: 100%;
  /* 2 */
}

/*
 * Addresses `font-family` inconsistency between `textarea` and other form
 * elements.
 */
html,
button,
input,
select,
textarea {
  font-family: sans-serif;
}

/*
 * Addresses margins handled incorrectly in IE6/7.
 */
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.
 * people.opera.com/patrickl/experiments/keyboard/test
 */
a:active,
a:hover {
  outline: 0;
}

/* ==========================================================================
   Typography
   ========================================================================== */
/*
 * Addresses font sizes and margins set differently in IE6/7.
 * Addresses font sizes within `section` and `article` in FF4+, Chrome, S5.
 */
h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

h2 {
  font-size: 1.5em;
  margin: 0.83em 0;
}

h3 {
  font-size: 1.17em;
  margin: 1em 0;
}

h4 {
  font-size: 1em;
  margin: 1.33em 0;
}

h5 {
  font-size: 0.83em;
  margin: 1.67em 0;
}

h6 {
  font-size: 0.75em;
  margin: 2.33em 0;
}

/*
 * Addresses styling not present in IE7/8/9, S5, Chrome.
 */
abbr[title] {
  border-bottom: 1px dotted;
}

/*
 * Addresses style set to `bolder` in FF3+, S4/5, Chrome.
 */
b,
strong {
  font-weight: bold;
}

blockquote {
  margin: 1em 40px;
}

/*
 * Addresses styling not present in S5, Chrome.
 */
dfn {
  font-style: italic;
}

/*
 * Addresses styling not present in IE6/7/8/9.
 */
mark {
  background: #ff0;
  color: #000;
}

/*
 * Addresses margins set differently in IE6/7.
 */
p,
pre {
  margin: 1em 0;
}

/*
 * Corrects font family set oddly in IE6, S4/5, Chrome.
 * en.wikipedia.org/wiki/User:Davidgothberg/Test59
 */
code,
kbd,
pre,
samp {
  font-family: monospace, serif;
  _font-family: "courier new", monospace;
  font-size: 1em;
}

/*
 * Improves readability of pre-formatted text in all browsers.
 */
pre {
  white-space: pre;
  white-space: pre-wrap;
  word-wrap: break-word;
}

/*
 * Addresses CSS quotes not supported in IE6/7.
 */
q {
  quotes: none;
}

/*
 * Addresses `quotes` property not supported in S4.
 */
q:before,
q:after {
  content: "";
  content: none;
}

small {
  font-size: 75%;
}

/*
 * Prevents `sub` and `sup` affecting `line-height` in all browsers.
 * gist.github.com/413930
 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sup {
  top: -0.5em;
}

sub {
  bottom: -0.25em;
}

/* ==========================================================================
   Lists
   ========================================================================== */
/*
 * Addresses margins set differently in IE6/7.
 */
dl,
menu,
ol,
ul {
  margin: 1em 0;
}

dd {
  margin: 0 0 0 40px;
}

/*
 * Addresses paddings set differently in IE6/7.
 */
menu,
ol,
ul {
  padding: 0 0 0 40px;
}

/*
 * Corrects list images handled incorrectly in IE7.
 */
nav ul,
nav ol {
  list-style: none;
  list-style-image: none;
}

/* ==========================================================================
   Embedded content
   ========================================================================== */
/*
 * 1. Removes border when inside `a` element in IE6/7/8/9, FF3.
 * 2. Improves image quality when scaled in IE7.
 *    code.flickr.com/blog/2008/11/12/on-ui-quality-the-little-things-client-side-image-resizing/
 */
img {
  border: 0;
  /* 1 */
  -ms-interpolation-mode: bicubic;
  /* 2 */
}

/*
 * Corrects overflow displayed oddly in IE9.
 */
svg:not(:root) {
  overflow: hidden;
}

/* ==========================================================================
   Figures
   ========================================================================== */
/*
 * Addresses margin not present in IE6/7/8/9, S5, O11.
 */
figure {
  margin: 0;
}

/* ==========================================================================
   Forms
   ========================================================================== */
/*
 * Corrects margin displayed oddly in IE6/7.
 */
form {
  margin: 0;
}

/*
 * 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 IE6/7/8/9.
 * 2. Corrects text not wrapping in FF3.
 * 3. Corrects alignment displayed oddly in IE6/7.
 */
legend {
  border: 0;
  /* 1 */
  padding: 0;
  white-space: normal;
  /* 2 */
  *margin-left: -7px;
  /* 3 */
}

/*
 * 1. Corrects font size not being inherited in all browsers.
 * 2. Addresses margins set differently in IE6/7, FF3+, S5, Chrome.
 * 3. Improves appearance and consistency in all browsers.
 */
button,
input,
select,
textarea {
  font-size: 100%;
  /* 1 */
  margin: 0;
  /* 2 */
  vertical-align: baseline;
  /* 3 */
  *vertical-align: middle;
  /* 3 */
}

/*
 * Addresses FF3/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.
 * 4. Removes inner spacing in IE7 without affecting normal text inputs.
 *    Known issue: inner spacing remains in IE6.
 */
button,
html input[type=button],
input[type=reset],
input[type=submit] {
  -webkit-appearance: button;
  /* 2 */
  cursor: pointer;
  /* 3 */
  *overflow: visible;
  /* 4 */
}

/*
 * Re-set default cursor for disabled elements.
 */
button[disabled],
input[disabled] {
  cursor: default;
}

/*
 * 1. Addresses box sizing set to content-box in IE8/9.
 * 2. Removes excess padding in IE8/9.
 * 3. Removes excess padding in IE7.
 *    Known issue: excess padding remains in IE6.
 */
input[type=checkbox],
input[type=radio] {
  box-sizing: border-box;
  /* 1 */
  padding: 0;
  /* 2 */
  *height: 13px;
  /* 3 */
  *width: 13px;
  /* 3 */
}

/*
 * 1. Addresses `appearance` set to `searchfield` in S5, Chrome.
 * 2. Addresses `box-sizing` set to `border-box` in S5, 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 S5, 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 FF3+.
 */
button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0;
}

/*
 * 1. Removes default vertical scrollbar in IE6/7/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;
}

/******************************************************************
CUSTOMIZED RESET VALUES
I added these extra styles as a more personalized reset. Feel free
to remove them if you like or add your own. If you want to update
the normalize styles, make sure to edit from this point up.
******************************************************************/
b, strong, .strong {
  font-weight: bold;
}

dfn, em, .em {
  font-style: italic;
}

small, .small {
  font-size: 75%;
}

ul, ol {
  padding: 0;
  list-style-type: none;
}

dd {
  margin: 0;
}

.sidebar ul,
.sidebar ol,
.commentlist {
  list-style: none;
}

/******************************************************************
Site Name:
Author:

Stylesheet: Mixins & Constants Stylesheet

This is where you can take advantage of Sass' great features:
Mixins & Constants. I won't go in-depth on how they work exactly,
there are a few articles below that will help do that. What I will
tell you is that this will help speed up simple changes like
changing a color or adding CSS3 techniques gradients.

A WORD OF WARNING: It's very easy to overdo it here. Be careful and
remember less is more.

******************************************************************/
/*********************
CLEARFIXIN'
*********************/
.clearfix {
  zoom: 1;
}
.clearfix:before, .clearfix:after {
  content: "";
  display: table;
}
.clearfix:after {
  clear: both;
}

/*********************
TOOLS
*********************/
* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

.image-replacement {
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
}

/*********************
COLORS
Need help w/ choosing your colors? Try this site out:
http://0to255.com/
*********************/
/*
Here's a great tutorial on how to
use color variables properly:
http://sachagreif.com/sass-color-variables/
*/
/*********************
TYPOGRAPHY
*********************/
/* 	To embed your own fonts, use this syntax
	and place your fonts inside the
	library/fonts folder. For more information
	on embedding fonts, go to:
	http://www.fontsquirrel.com/
	Be sure to remove the comment brackets. 
*/
/*	@font-face {
    	font-family: 'Font Name';
    	src: url('library/fonts/font-name.eot');
    	src: url('library/fonts/font-name.eot?#iefix') format('embedded-opentype'),
             url('library/fonts/font-name.woff') format('woff'),
             url('library/fonts/font-name.ttf') format('truetype'),
             url('library/fonts/font-name.svg#font-name') format('svg');
    	font-weight: normal;
    	font-style: normal;
	}
*/
/*
use the best ampersand
http://simplebits.com/notebook/2008/08/14/ampersands-2/
*/
span.amp {
  font-family: Baskerville, "Goudy Old Style", Palatino, "Book Antiqua", serif !important;
  font-style: italic;
}

.text-left {
  text-align: left;
}

.text-center {
  text-align: center;
}

.text-right {
  text-align: right;
}

.alert-success, .alert-error, .alert-info, .alert-help {
  margin: 10px;
  padding: 5px 18px;
  border: 1px solid;
}

.alert-help {
  border-color: #e8dc59;
  background: #ebe16f;
}

.alert-info {
  border-color: #bfe4f4;
  background: #d5edf8;
}

.alert-error {
  border-color: #f8cdce;
  background: #fbe3e4;
}

.alert-success {
  border-color: #deeaae;
  background: #e6efc2;
}

/*********************
TRANISTION
*********************/
/*
I totally rewrote this to be cleaner and easier to use.
You'll need to be using Sass 3.2+ for these to work.
Thanks to @anthonyshort for the inspiration on these.
USAGE: @include transition(all 0.2s ease-in-out);
*/
/*********************
CSS3 GRADIENTS
Be careful with these since they can
really slow down your CSS. Don't overdue it.
*********************/
/* @include css-gradient(#dfdfdf,#f8f8f8); */
/*********************
BOX SIZING
*********************/
/* @include box-sizing(border-box); */
/* NOTE: value of "padding-box" is only supported in Gecko. So
probably best not to use it. I mean, were you going to anyway? */
/*********************
BUTTONS
*********************/
.button, .button:visited {
  font-family: "Open Sans", Helvetica, Arial, sans-serif;
  border: 1px solid #0b2d59;
  border-top-color: #0e3b74;
  border-left-color: #0e3b74;
  padding: 4px 12px;
  color: #fff;
  display: inline-block;
  font-size: 11px;
  font-weight: bold;
  text-decoration: none;
  text-shadow: 0 1px rgba(0, 0, 0, 0.75);
  cursor: pointer;
  margin-bottom: 20px;
  line-height: 21px;
  border-radius: 4px;
  background-color: #0f3f7d;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#124b94), to(#0f3f7d));
  background-image: -webkit-linear-gradient(top, #124b94, #0f3f7d);
  background-image: -moz-linear-gradient(top, #124b94, #0f3f7d);
  background-image: -o-linear-gradient(top, #124b94, #0f3f7d);
  background-image: linear-gradient(to bottom, #124b94, #0f3f7d);
}
.button:hover, .button:focus, .button:visited:hover, .button:visited:focus {
  color: #fff;
  border: 1px solid #0b2d59;
  border-top-color: #071d39;
  border-left-color: #071d39;
  background-color: #0c3467;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#0f3f7d), to(#0c3467));
  background-image: -webkit-linear-gradient(top, #0f3f7d, #0c3467);
  background-image: -moz-linear-gradient(top, #0f3f7d, #0c3467);
  background-image: -o-linear-gradient(top, #0f3f7d, #0c3467);
  background-image: linear-gradient(to bottom, #0f3f7d, #0c3467);
}
.button:active, .button:visited:active {
  background-color: #124b94;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#0f3f7d), to(#124b94));
  background-image: -webkit-linear-gradient(top, #0f3f7d, #124b94);
  background-image: -moz-linear-gradient(top, #0f3f7d, #124b94);
  background-image: -o-linear-gradient(top, #0f3f7d, #124b94);
  background-image: linear-gradient(to bottom, #0f3f7d, #124b94);
}

.blue-button, .blue-button:visited {
  border-color: #0c0c0c;
  text-shadow: 0 1px 1px #0c0c0c;
  background-color: #181818;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#252525), to(#181818));
  background-image: -webkit-linear-gradient(top, #252525, #181818);
  background-image: -moz-linear-gradient(top, #252525, #181818);
  background-image: -o-linear-gradient(top, #252525, #181818);
  background-image: linear-gradient(to bottom, #252525, #181818);
  box-shadow: inset 0 0 3px #4e4e4e;
}
.blue-button:hover, .blue-button:focus, .blue-button:visited:hover, .blue-button:visited:focus {
  border-color: black;
  background-color: #0c0c0c;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#1b1b1b), to(#0c0c0c));
  background-image: -webkit-linear-gradient(top, #1b1b1b, #0c0c0c);
  background-image: -moz-linear-gradient(top, #1b1b1b, #0c0c0c);
  background-image: -o-linear-gradient(top, #1b1b1b, #0c0c0c);
  background-image: linear-gradient(to bottom, #1b1b1b, #0c0c0c);
}
.blue-button:active, .blue-button:visited:active {
  background-color: #252525;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#181818), to(#252525));
  background-image: -webkit-linear-gradient(top, #181818, #252525);
  background-image: -moz-linear-gradient(top, #181818, #252525);
  background-image: -o-linear-gradient(top, #181818, #252525);
  background-image: linear-gradient(to bottom, #181818, #252525);
}

/*
BASE (MOBILE) SIZE
This are the mobile styles. It's what people see on their phones. If
you set a great foundation, you won't need to add too many styles in
the other stylesheets. Remember, keep it light: Speed is Important.
*/
/******************************************************************
Site Name:
Author:

Stylesheet: Base Mobile Stylesheet

Be light and don't over style since everything here will be
loaded by mobile devices. You want to keep it as minimal as
possible. This is called at the top of the main stylsheet
and will be used across all viewports.

******************************************************************/
body.admin-bar #wpadminbar {
  border-bottom: 1px solid #565656;
}
body.admin-bar #top_div {
  top: 32px;
}
body.admin-bar header.header {
  top: 64px;
}

svg {
  touch-action: none;
}

* {
  outline: none !important;
}

.jvectormap-container {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
  touch-action: none;
}

.jvectormap-tip {
  position: absolute;
  display: none;
  border: solid 1px #CDCDCD;
  border-radius: 3px;
  background: #292929;
  color: white;
  font-family: sans-serif, Verdana;
  font-size: smaller;
  padding: 3px;
}

.jvectormap-zoomin, .jvectormap-zoomout, .jvectormap-goback {
  position: absolute;
  left: 10px;
  border-radius: 3px;
  background: #292929;
  padding: 3px;
  color: white;
  cursor: pointer;
  line-height: 10px;
  text-align: center;
  box-sizing: content-box;
}

.jvectormap-zoomin, .jvectormap-zoomout {
  width: 10px;
  height: 10px;
}

.jvectormap-zoomin {
  top: 10px;
}

.jvectormap-zoomout {
  top: 30px;
}

.jvectormap-goback {
  bottom: 10px;
  z-index: 1000;
  padding: 6px;
}

.jvectormap-spinner {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background: center no-repeat url(data:image/gif;base64,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);
}

.jvectormap-legend-title {
  font-weight: bold;
  font-size: 14px;
  text-align: center;
}

.jvectormap-legend-cnt {
  position: absolute;
}

.jvectormap-legend-cnt-h {
  bottom: 0;
  right: 0;
}

.jvectormap-legend-cnt-v {
  top: 0;
  right: 0;
}

.jvectormap-legend {
  background: black;
  color: white;
  border-radius: 3px;
}

.jvectormap-legend-cnt-h .jvectormap-legend {
  float: left;
  margin: 0 10px 10px 0;
  padding: 3px 3px 1px 3px;
}

.jvectormap-legend-cnt-h .jvectormap-legend .jvectormap-legend-tick {
  float: left;
}

.jvectormap-legend-cnt-v .jvectormap-legend {
  margin: 10px 10px 0 0;
  padding: 3px;
}

.jvectormap-legend-cnt-h .jvectormap-legend-tick {
  width: 40px;
}

.jvectormap-legend-cnt-h .jvectormap-legend-tick-sample {
  height: 15px;
}

.jvectormap-legend-cnt-v .jvectormap-legend-tick-sample {
  height: 20px;
  width: 20px;
  display: inline-block;
  vertical-align: middle;
}

.jvectormap-legend-tick-text {
  font-size: 12px;
}

.jvectormap-legend-cnt-h .jvectormap-legend-tick-text {
  text-align: center;
}

.jvectormap-legend-cnt-v .jvectormap-legend-tick-text {
  display: inline-block;
  vertical-align: middle;
  line-height: 20px;
  padding-left: 3px;
}

/*********************
GENERAL STYLES
*********************/
body {
  font-family: "Open Sans", Helvetica, Arial, sans-serif;
  font-size: 100%;
  color: #565656;
}

/********************
WORDPRESS BODY CLASSES
style a page via class
********************/
/* for sites that are read right to left (i.e. hebrew) */
/* home page */
/* blog template page */
/* archive page */
/* date archive page */
/* replace the number to the corresponding page number */
/* search page */
/* search result page */
/* no results search page */
/* individual paged search (i.e. body.search-paged-3) */
/* 404 page */
/* single post page */
/* individual post page by id (i.e. body.postid-73) */
/* individual paged single (i.e. body.single-paged-3) */
/* attatchment page */
/* individual attatchment page (i.e. body.attachmentid-763) */
/* style mime type pages */
/* author page */
/* user nicename (i.e. body.author-samueladams) */
/* paged author archives (i.e. body.author-paged-4) for page 4 */
/* category page */
/* individual category page (i.e. body.category-6) */
/* replace the number to the corresponding page number */
/* tag page */
/* individual tag page (i.e. body.tag-news) */
/* replace the number to the corresponding page number */
/* custom page template page */
/* individual page template (i.e. body.page-template-contact-php */
/* replace the number to the corresponding page number */
/* parent page template */
/* child page template */
/* replace the number to the corresponding page number */
/* if user is logged in */
/* paged items like search results or archives */
/* individual paged (i.e. body.paged-3) */
/*********************
LAYOUT & GRID STYLES
*********************/
.wrap {
  width: 96%;
  margin: 0 auto;
}

/*********************
LINK STYLES
*********************/
a, a:visited {
  color: #124b94;
  /* on hover */
  /* on click */
  /* mobile tap color */
}
a:hover, a:focus, a:visited:hover, a:visited:focus {
  color: #0d366b;
}
a:link, a:visited:link {
  /*
  this highlights links on iPhones/iPads.
  so it basically works like the :hover selector
  for mobile devices.
  */
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0.3);
}

/******************************************************************
H1, H2, H3, H4, H5 STYLES
******************************************************************/
h1, h2, h3, h4, h5 {
  font-family: "Noto Serif", sans-serif;
  text-rendering: optimizelegibility;
  font-weight: 500;
  color: #252525;
  /*
  if you're going to use webfonts, be sure to check your weights
  http://css-tricks.com/watch-your-font-weight/
  */
  /* removing text decoration from all headline links */
}
h1 a, h2 a, h3 a, h4 a, h5 a {
  text-decoration: none;
}

h1 {
  font-size: 2.5em;
  line-height: 1.333em;
}

h2 {
  font-size: 42px;
  line-height: normal;
  padding: 0;
  margin: 0;
}

h3 {
  font-size: 26px;
  line-height: normal;
  padding: 0;
  margin: 0;
}

h4 {
  font-size: 1.1em;
  font-weight: 700;
}

h5 {
  font-size: 0.846em;
  line-height: 2.09em;
  text-transform: uppercase;
  letter-spacing: 2px;
}

/*********************
HEADER SYTLES
*********************/
#top_div {
  color: #252525;
  font-family: "Open Sans", Helvetica, Arial, sans-serif;
  height: 32px;
  top: 0;
  left: 0;
  width: 100%;
  background: #252525;
  z-index: 9999;
}
#top_div .wrap {
  margin: 0 auto !important;
  padding: 0 !important;
}
#top_div a {
  color: #fff;
  text-decoration: none;
  font-size: 5px;
  padding: 0 4px;
}

#top_inner_div {
  float: right;
  margin-top: 5px;
}
#top_inner_div a .search_button {
  margin-top: 11px;
  width: 8px;
}

#logo {
  float: left;
  width: 180px;
  position: relative;
  z-index: 999999;
}

#logo img {
  width: 200px;
  padding-top: 15px;
}

#tuition_break_p {
  text-align: left !important;
  width: 100%;
  max-width: 700px;
  float: left;
  clear: both;
  font-size: 18px;
}

img.callout_header_image {
  width: 50%;
  float: left;
  max-width: 500px;
  min-width: 300px;
}

/*********************
NAVIGATION STYLES
*********************/
/*
all navs have a .nav class applied via
the wp_menu function; this is so we can
easily write one group of styles for
the navs on the site so our css is cleaner
and more scalable.
*/
#mega-toggle-block-1 {
  margin-top: 24px;
}

.nav {
  border: 1px solid #ccc;
  border-bottom: 0;
  /* end .menu li */
  /* highlight current page */
  /* end current highlighters */
}
.nav li {
  /*
  so you really have to rethink your dropdowns for mobile.
  you don't want to have it expand too much because the
  screen is so small. How you manage your menu should
  depend on the project. Here's some great info on it:
  http://www.alistapart.com/articles/organizing-mobile/
  */
}
.nav li a {
  display: block;
  text-decoration: none;
  padding: 10px 10px;
  /*background-color: #eee;*/
  background-color: #FFFFFF;
  border-bottom: 1px solid #ccc;
  /*
  remember this is for mobile ONLY, so there's no need
  to even declare hover styles here, you can do it in
  the style.scss file where it's relevant. We want to
  keep this file as small as possible!
  */
}
.nav li ul.sub-menu li a,
.nav li ul.children li a {
  padding-left: 30px;
}
/* end .nav */
/*********************
POSTS & CONTENT STYLES
*********************/
/* end .hentry */
/* want to style individual post classes? Booya! */
/* post by id (i.e. post-3) */
/* general post style */
/* general article on a page style */
/* general style on an attatchment */
/* sticky post style */
/* hentry class */
/* style by category (i.e. category-videos) */
/* style by tag (i.e. tag-news) */
/* post meta */
.byline {
  color: #999;
}
/* entry content */
.entry-content {
  margin-bottom: 15px;
  /*
  image alignment on a screen this size may be
  a bit difficult. It's set to start aligning
  and floating images at the next breakpoint,
  but it's up to you. Feel free to change it up.
  */
}
.entry-content dd {
  margin-left: 0;
  font-size: 0.9em;
  color: #787878;
  margin-bottom: 1.5em;
}
.entry-content img {
  margin: 0 0 1.5em 0;
  max-width: 100%;
  height: auto;
}
.entry-content video, .entry-content object {
  max-width: 100%;
  height: auto;
}
.entry-content pre {
  background: #eee;
  border: 1px solid #cecece;
  padding: 10px;
}

/* end .entry-content */
.wp-caption {
  background: #eee;
  padding: 5px;
  /* images inside wp-caption */
}
.wp-caption img {
  margin-bottom: 0;
  width: 100%;
}
.wp-caption p.wp-caption-text {
  font-size: 0.85em;
  margin: 4px 0 7px;
  text-align: center;
}

/* end .wp-caption */
/* image gallery styles */
/* end .gallery */
/* gallery caption styles */
/******************************************************************
PAGE NAVI STYLES
******************************************************************/
.page-navigation,
.wp-prev-next {
  margin: 1.1em 0 2.2em;
}

.bones_page_navi {
  list-style-type: none !important;
  /* current page link */
  /* end .bones_page_navi .bpn-current */
  /* common styles for page-navi links */
  /* remove the bg on end links */
  /* previous link */
  /* next page link */
  /* first page link */
  /* last page link */
}
.bones_page_navi li {
  float: left;
  margin-left: 10px;
}
.bones_page_navi li a {
  padding: 3px 6px;
  display: block;
  text-decoration: none;
  position: relative;
}
.bones_page_navi li a:hover, .bones_page_navi li a:focus {
  text-decoration: underline;
}
.bones_page_navi li.bpn-current {
  padding: 3px 6px;
  position: relative;
}
.bones_page_navi li.bpn-current a {
  /* hovering on current page link */
}
.bones_page_navi li.bpn-prev-link,
.bones_page_navi li.bpn-next-link {
  font-weight: 700;
}
.bones_page_navi li.bpn-prev-link a,
.bones_page_navi li.bpn-next-link a {
  padding: 0;
}
.bones_page_navi li.bpn-prev-link a:hover,
.bones_page_navi li.bpn-next-link a:hover,
.bones_page_navi li.bpn-first-page-link a:hover,
.bones_page_navi li.bpn-last-page-link a:hover {
  background: none;
}
/* end .bones_page_navi */
/* fallback previous & next links */
.wp-prev-next .prev-link {
  float: left;
}
.wp-prev-next .next-link {
  float: right;
}

/* end .wp-prev-next */
/******************************************************************
COMMENT STYLES
******************************************************************/
/* h3 comment title */
#comments {
  /* number of comments span */
}
#comment-nav ul li {
  list-style-type: none !important;
}

.commentlist {
  /* general comment classes */
  /* vcard */
  /* end .commentlist .vcard */
  /* comment meta */
  /* comment content */
  /* end .commentlist .comment_content */
  /* comment reply link */
  /* end .commentlist .comment-reply-link */
}
.commentlist li {
  position: relative;
  clear: both;
  overflow: hidden;
  list-style-type: none;
  margin-bottom: 1.5em;
  padding: 0.7335em 10px;
  /* end .commentlist li ul.children */
}
.commentlist li:last-child {
  margin-bottom: 0;
}
.commentlist li ul.children {
  margin: 0;
  /* variations */
  /* change number for different depth */
}
.commentlist li[class*=depth-] {
  margin-top: 1.1em;
}
.commentlist li.depth-1 {
  margin-left: 0;
  margin-top: 0;
}
.commentlist li:not(.depth-1) {
  margin-right: -10px;
  margin-left: -10px;
  margin-top: 0;
  padding-bottom: 0;
}
.commentlist .odd {
  background: #eee;
}
.commentlist .even {
  background: #fefefe;
}
.commentlist .vcard {
  margin-left: 50px;
}
.commentlist .vcard cite.fn {
  font-weight: 700;
  font-style: normal;
}
.commentlist .vcard time {
  float: right;
}
.commentlist .vcard time a {
  color: #999;
  text-decoration: none;
}
.commentlist .vcard time a:hover {
  text-decoration: underline;
}
.commentlist .vcard img.avatar {
  position: absolute;
  left: 10px;
  padding: 2px;
  border: 1px solid #cecece;
  background: #fff;
}
.commentlist .comment_content {
  margin-left: 50px;
}
.commentlist .comment_content p {
  margin: 0.7335em 0 1.5em;
  font-size: 1em;
  line-height: 1.5em;
}
.commentlist .comment-reply-link {
  text-decoration: none;
  float: right;
  background: #4598bb;
  padding: 3px 5px;
  color: #fff;
  opacity: 0.65;
  margin-bottom: 10px;
  font-weight: 700;
  font-size: 0.9em;
}
.commentlist .comment-reply-link:hover, .commentlist .comment-reply-link:focus {
  opacity: 1;
}

/* end .commentlist */
/******************************************************************
COMMENT FORM STYLES
******************************************************************/
.respond-form {
  margin: 1.5em 10px;
  padding-bottom: 2.2em;
}
.respond-form form {
  margin: 0.75em 0;
}
.respond-form form li {
  list-style-type: none;
  clear: both;
  margin-bottom: 0.7335em;
}
.respond-form form li label,
.respond-form form li small {
  display: none;
}
.respond-form form input[type=text],
.respond-form form input[type=email],
.respond-form form input[type=url],
.respond-form form textarea {
  padding: 3px 6px;
  background: #efefef;
  border: 2px solid #cecece;
  line-height: 1.5em;
  /* form validation */
}
.respond-form form input[type=text]:focus,
.respond-form form input[type=email]:focus,
.respond-form form input[type=url]:focus,
.respond-form form textarea:focus {
  background: #fff;
}
.respond-form form input[type=text]:invalid,
.respond-form form input[type=email]:invalid,
.respond-form form input[type=url]:invalid,
.respond-form form textarea:invalid {
  outline: none;
  border-color: #fbc2c4;
  background-color: #f6e7eb;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  -ms-box-shadow: none;
  box-shadow: none;
}
.respond-form form input[type=text],
.respond-form form input[type=email],
.respond-form form input[type=url] {
  max-width: 400px;
  min-width: 250px;
}
.respond-form form textarea {
  resize: none;
  width: 97.3%;
  height: 150px;
}

/* comment submit button */
/* comment form title */
#comment-form-title {
  margin: 0 0 1.1em;
}

/* cancel comment reply link */
/* logged in comments */
/* allowed tags */
#allowed_tags {
  margin: 1.5em 10px 0.7335em 0;
}

/* no comments */
.nocomments {
  margin: 0 20px 1.1em;
}

/*********************
SIDEBARS & ASIDES
*********************/
.widget ul li {
  /* deep nesting */
}
.custom-twitter-feed-block {
  margin-bottom: 25px;
}

/*********************
FOOTER STYLES
*********************/
.footer {
  clear: both;
  background-color: #252525;
}

/*
if you checked out the link above:
http://www.alistapart.com/articles/organizing-mobile/
you'll want to style the footer nav
a bit more in-depth. Remember to keep
it simple because you'll have to
override these styles for the desktop
view.
*/
/* end .footer-links */
.cover {
  background-repeat: no-repeat;
  background-position: center center;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  position: relative;
}

.overlay {
  background: #252525;
  opacity: 0.5;
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}

.overlay-content {
  position: relative;
  z-index: 99;
}

.white h1, .white h2, .white h3, .white h4, .white h5, .white p, .white li, .white a, .white small {
  color: #fff;
}

.center {
  text-align: center !important;
  margin: 0 auto;
  padding: 10px;
}
.center * {
  text-align: center !important;
  margin: 0 auto;
}

#sidebar-links {
  padding: 30px;
}

.individual-outer .callout-text small, .individual-outer .callout-text h4, .individual-outer .callout-text p, .individual-outer .callout-text .button {
  margin-left: 10px;
  margin-right: 10px;
}

.flexible-content-block {
  clear: both;
  display: block;
}
.flexible-content-block.block-callout-centered-icons .callout-icon {
  background: #124b94;
  width: 112px;
  height: 112px;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  display: block;
}
.flexible-content-block.block-callout-centered-icons .callout-icon .fa {
  font-size: 60px;
  color: #fff;
  line-height: 112px;
}
.flexible-content-block .callout-full-width {
  padding: 80px 0 !important;
  height: 400px;
}
.flexible-content-block .block-articles-three-column .cover {
  min-height: 215px;
  width: 100%;
  display: block;
}
.flexible-content-block .block-articles-three-column .cover a {
  height: 100%;
  width: 100%;
  display: block;
}
.flexible-content-block .block-articles-three-column .individual-callout .callout-image {
  height: 175px;
}
.flexible-content-block .slick-active .overlay-content.wrap .callout-buttons {
  margin: 10px auto;
  display: table;
}

.block-articles-three-column h2 {
  font-family: "Noto Serif", sans-serif;
  font-size: 3em;
  font-weight: bold;
}
.block-articles-three-column .individual-callout {
  padding-right: 30px;
}
.block-articles-three-column .individual-callout .individual-outer {
  border: 1px solid #eee;
  float: none;
  height: 100%;
}
.block-articles-three-column .individual-callout .individual-outer .individual-inner {
  padding: 25px 20px 10px 20px;
  text-align: left;
  height: 100%;
}
.block-articles-three-column .individual-callout .individual-outer .individual-inner .callout-text {
  font-family: "Open Sans", Helvetica, Arial, sans-serif;
}
.block-articles-three-column .individual-callout .individual-outer .individual-inner .callout-text small {
  font-size: 1em;
}
.block-articles-three-column .individual-callout .individual-outer .individual-inner .callout-text .actual_content h4 {
  font-size: 1.5em;
  margin: 0.7em 0;
  text-align: left;
}
.block-articles-three-column .individual-callout .individual-outer .individual-inner a.btn {
  margin: 15px 0;
}
.block-articles-three-column .individual-callout .callout-image {
  float: none;
}

.block-articles-two-column .individual-callout .cover {
  padding: 25px !important;
}
.block-articles-two-column .individual-callout .cover small {
  font-size: 1em;
}
.block-articles-two-column .individual-callout .cover small .fa {
  margin-right: 5px;
}
.block-articles-two-column .individual-callout .cover .header-text h4 {
  font-size: 1.5em;
  margin: 15px 0;
}
.block-articles-two-column .individual-callout .cover .header-text h4 a {
  color: #eaeaea;
}
.block-articles-two-column .individual-callout .cover .callout-text {
  height: 100%;
}
.block-articles-two-column .individual-callout .cover .callout-text p {
  width: 88%;
  color: #eaeaea;
}
.block-articles-two-column .individual-callout .cover .callout-text p a {
  display: none;
}
.block-articles-two-column .individual-callout .cover a.button {
  height: 42px;
  background: transparent;
  border: 1px solid #eaeaea;
  padding: 10px 15px;
  font-size: 0.8em;
  color: #eaeaea;
}
.block-articles-two-column .button-view-all a.button {
  width: 240px;
  height: 3.7em;
  font-size: 1em;
  text-transform: uppercase;
  text-align: center;
  padding: 20px 0;
  margin: 0 10px;
  border-radius: 3px;
  border: 0px;
  background-image: none;
  background-color: #124B94;
}

.job_link h2 {
  font-family: "Noto Serif", sans-serif;
  font-size: 2.5em;
  font-weight: bold;
}
.job_link .wrap {
  width: 60%;
}
.job_link p {
  font-family: "Open Sans", Helvetica, Arial, sans-serif;
  font-size: 1.6em;
}

#recent-newsletter {
  margin-top: 20px;
}

#featured-newsletter-text {
  margin-bottom: 10px;
}

.slick-slider {
  padding: 0;
  height: 500px;
}
.slick-slider .slick-track {
  height: 500px;
}
.slick-slider .slick-arrow {
  position: absolute;
  margin-top: 225px;
  z-index: 1;
  cursor: pointer;
  font-size: 55px;
  color: #aaa;
  padding: 0;
}
.slick-slider .overlay-content {
  width: 50%;
}
.slick-slider .callout-buttons a.button-transparent {
  background: transparent !important;
  border: 1px solid #fff !important;
}
.slick-slider .callout-buttons a.button {
  width: 175px;
  height: 3.7em;
  font-size: 1em;
  text-transform: uppercase;
  text-align: center;
  padding: 20px 0;
  /* margin: 30px; */
  margin: 0 10px;
  border-radius: 3px;
  border: 0px;
  background-image: none;
  background-color: royalblue;
}
.slick-slider ul.slick-dots {
  text-align: center;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  color: #FFFFFF;
}
.slick-slider ul.slick-dots li {
  display: inline;
  padding: 5px;
}
.slick-slider i.fa.fa-chevron-right.slick-arrow {
  right: 0;
  top: 0;
}

.wrap {
  content: "";
  clear: both;
  display: table;
  padding: 15px;
  margin: 20px auto;
}

.block-callout-full-width {
  padding: 0 !important;
}
.block-callout-full-width .callout-buttons a.button-transparent {
  background: transparent !important;
  border: 1px solid #fff !important;
}
.block-callout-full-width .callout-buttons a.button {
  height: 3.7em;
  font-size: 1em;
  text-transform: uppercase;
  text-align: center;
  padding: 20px 0;
  margin: 30px;
  border-radius: 3px;
  border: 0px;
  background-image: none;
  background-color: royalblue;
}

.social-footer {
  text-align: center;
}
.social-footer .fa {
  color: #FFFFFF;
}
.social-footer ul li {
  display: inline;
  padding: 0 20px 0 0;
}

footer #inner-footer {
  margin: 0 auto;
}
footer nav {
  text-align: center;
  color: #FFFFFF;
}
footer nav a {
  color: #FFFFFF;
  padding: 0 10px;
  font-size: 14px;
  font-family: "Open Sans", Helvetica, Arial, sans-serif;
  font-weight: 600;
  text-decoration: none;
}
footer nav a:visited {
  color: #FFFFFF;
}
footer nav a:visited:hover {
  color: #FFFFFF;
}
footer nav a:visited:focus {
  color: #FFFFFF;
}
footer nav a:visited:active {
  color: #FFFFFF;
}
footer nav a:visited:link {
  color: #FFFFFF;
}

.nav.top-nav.clearfix {
  background: #fff;
  float: right;
}
.nav.top-nav.clearfix li {
  text-transform: uppercase;
  font-family: "Open Sans", Helvetica, Arial, sans-serif;
  /* font-size: 1.3em; */
  font-size: 18px;
  font-weight: bold;
}

.nav.footer-nav.clearfix {
  background: #FFFFFF;
}
.nav.footer-nav.clearfix ul {
  /*float: right;*/
}
.nav.footer-nav.clearfix ul li a {
  color: #124B94;
  font-weight: bold;
  font-size: 15px;
  background: #FFFFFF;
}

.callout-newsletter .wrap {
  margin: 15px auto 0 auto;
}
.callout-newsletter .content {
  font-size: 1.2em;
}
.callout-newsletter p {
  font-size: 1.3em;
  color: #C4D2E4;
}
.callout-newsletter .newsletter_header {
  font-size: 3em;
  font-family: "Noto Serif", sans-serif;
  margin-bottom: 15px;
  color: #fff !important;
}
.callout-newsletter .callout-buttons {
  width: 100%;
  max-width: 445px;
}
.callout-newsletter .callout-buttons a.button {
  margin: 30px 0;
  line-height: 20px;
  color: #6187B7 !important;
  background: transparent !important;
  padding: 19px 48px;
  border-top: 1px solid #88A5C9 !important;
  border-bottom: 1px solid #CAD7E7 !important;
  border-left: 1px solid #97B1D0 !important;
  border-right: 1px solid #8EAACC !important;
  font-family: "Open Sans", Helvetica, Arial, sans-serif;
  font-weight: 600;
  text-shadow: none;
  line-height: 18px;
}
.callout-newsletter .callout-buttons input {
  height: 3.7em;
  font-size: 1em;
  text-transform: uppercase;
  padding: 20px 10px;
  margin: 30px 5px;
  border-radius: 3px;
  background: transparent !important;
  border-right: 1px solid #97B1D0 !important;
  border-bottom: 1px solid #CAD7E7 !important;
  border-left: 1px solid #8EAACC !important;
  border-top: 1px solid #88A5C9 !important;
  width: 64%;
  color: #6187B7 !important;
  text-align: left !important;
  line-height: 21px;
  font-family: "Open Sans", Helvetica, Arial, sans-serif;
  font-weight: 600;
}
.callout-newsletter .callout-buttons input::placeholder {
  /* Chrome, Firefox, Opera, Safari 10.1+ */
  color: #6187B7 !important;
  opacity: 1;
  /* Firefox */
}
.callout-newsletter .callout-buttons input:-ms-input-placeholder {
  /* Internet Explorer 10-11 */
  color: #6187B7 !important;
}
.callout-newsletter .callout-buttons input::-ms-input-placeholder {
  /* Microsoft Edge */
  color: #6187B7 !important;
}

.block-listing-two-column .social-footer .fa {
  color: #124B94;
}
.block-listing-two-column .right_menu {
  padding: 10px 25px;
  margin-top: 0px !important;
}
.block-listing-two-column .right_menu .bold_val {
  font-weight: bold;
}
.block-listing-two-column .right_menu h1 {
  font-size: 1em;
  font-weight: bold;
  font-family: "Noto Serif", sans-serif;
  color: #000;
  margin: 0px;
}
.block-listing-two-column .right_menu h4 {
  font-size: 1.8em;
  font-family: "Noto Serif", sans-serif;
  font-weight: bold;
  color: #000;
  margin: 0px;
}
.block-listing-two-column .right_menu ul.links li {
  line-height: 2em;
  color: #124B94;
}
.block-listing-two-column .right_menu ul.links li b {
  font-size: 0.8em;
}
.block-listing-two-column .right_menu ul.links li a {
  text-decoration: none;
  font-family: "Open Sans", Helvetica, Arial, sans-serif;
  font-size: 1.3em;
}
.block-listing-two-column .right_menu .social-footer {
  text-align: left;
}
.block-listing-two-column .listing {
  padding: 10px;
}
.block-listing-two-column .listing .individual-outer {
  border: 1px solid #eee;
  float: none;
  margin-bottom: 50px;
  overflow: hidden;
}
@media (min-width: 1030px) {
  .block-listing-two-column .listing .individual-outer {
    height: 250px;
  }
}
.block-listing-two-column .listing .individual-outer .individual-inner {
  display: table;
  padding: 0;
  text-align: left;
}
.block-listing-two-column .listing .individual-outer .individual-inner .callout-text {
  font-family: "Open Sans", Helvetica, Arial, sans-serif;
}
.block-listing-two-column .listing .individual-outer .individual-inner .callout-text * {
  margin-left: 0 !important;
  font-style: normal !important;
}
.block-listing-two-column .listing .individual-outer .individual-inner .callout-text small {
  font-size: 1em;
}
.block-listing-two-column .listing .individual-outer .individual-inner .callout-text .actual_content h4 {
  font-size: 18px;
  margin: 0.7em 0;
  text-align: left;
}
.block-listing-two-column .listing .callout-image {
  height: 275px;
  width: 335px;
  position: relative;
}
@media (max-width: 1030px) {
  .block-listing-two-column .listing .callout-image {
    width: 100%;
  }
}
.block-listing-two-column .listing .callout-image .overlay {
  background: rgba(0, 0, 0, 0.7);
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}

.block-grid h4 {
  font-size: 22px;
  margin: 0 0 15px 0;
  color: #fff;
}
.block-grid .social-footer .fa {
  color: #124B94;
}
.block-grid .right_menu {
  padding: 10px 25px;
  margin-top: 0px !important;
}
.block-grid .right_menu h1 {
  font-size: 1em;
  font-weight: bold;
  font-family: "Noto Serif", sans-serif;
  color: #000;
  margin: 0px;
}
.block-grid .right_menu h4 {
  font-size: 1.6em;
  font-family: "Noto Serif", sans-serif;
  color: #000;
  margin: 0px;
}
.block-grid .right_menu .bold_val {
  font-weight: bold;
}
.block-grid .right_menu ul.links li {
  line-height: 2em;
  color: #124B94;
}
.block-grid .right_menu ul.links li b {
  font-size: 0.8em;
}
.block-grid .right_menu ul.links li a {
  text-decoration: none;
  font-family: "Open Sans", Helvetica, Arial, sans-serif;
  font-size: 1.3em;
}
.block-grid .right_menu .social-footer {
  text-align: left;
}
.block-grid .grid .large_img {
  /* border:1px solid #000; */
  height: 400px;
}
.block-grid .grid .large_img .cover {
  height: 400px;
  padding-top: 140px;
  font-size: 0.8em;
  padding-right: 56px;
}
.block-grid .grid .small_img {
  /* border:1px solid #000; */
  height: 400px;
}
.block-grid .grid .small_img .inner_small_img {
  /* border:1px solid #000; */
  height: 185px;
}
.block-grid .grid .small_img .inner_small_img .cover {
  height: 185px;
}
.block-grid .grid .small_img .inner_small_img .cover a.btn {
  height: 3.2em;
  font-size: 0.7em;
  position: absolute;
  bottom: 0;
}
.block-grid .grid .cover {
  padding: 20px;
  color: #fff;
  font-family: "Open Sans", Helvetica, Arial, sans-serif;
}
.block-grid .grid .cover p {
  font-size: 1.8em;
  margin-top: 10px;
}
.block-grid .grid .cover a.transparent {
  background: transparent !important;
  border: 1px solid #fff !important;
}
.block-grid .grid .cover a.btn {
  height: 3em;
  font-size: 0.9em;
  text-transform: uppercase;
  text-align: center;
  padding: 8px;
  border-radius: 3px;
  border: 0px;
  background-image: none;
  background-color: royalblue;
  margin-top: 30px;
}
.block-grid .grid .d-2of3.t-2of3.m-all.large_img {
  padding-right: 1.75em;
}
.block-grid .single-grid {
  background-color: #F1F1F1;
}
.block-grid .single-grid p {
  font-family: "Open Sans", Helvetica, Arial, sans-serif;
  font-size: 0.8em;
  margin-bottom: 10px;
  display: block;
  margin: 0 0 20px 0;
  padding: 0;
}
.block-grid .single-grid h4 {
  color: #124B94;
  font-weight: bold;
  font-size: 22px;
  margin: 40px 0 20px 0;
  padding: 0;
}

.d-1of3.t-1of3.m-all.individual-callout {
  margin-top: 20px;
  margin-bottom: 10px;
}

.gray_background {
  background: #F1F1F1;
  display: table;
}

/*.nav li.current_page_item {
	color: #124B94;
}*/
#inner-header {
  color: #FFFFFF;
  margin: 0 auto !important;
  padding: 0 !important;
}

h1#logo {
  margin-top: 10px;
}

.overlay-content.wrap {
  width: 100%;
  font-family: "Open Sans", Helvetica, Arial, sans-serif;
}

.block-callout-full-width.page-hero .overlay-content.wrap {
  position: relative;
  top: 50%;
  transform: translateY(-50%);
  margin-top: 0 !important;
  padding-top: 0 !important;
  padding: 0;
}
.block-callout-full-width.page-hero .overlay-content.wrap h1 {
  margin: 0;
}

.entry-content .block-callout-full-width .callout-newsletter .overlay-content.wrap {
  top: 0 !important;
  transform: none !important;
  margin-top: 20px !important;
  padding-top: 10px !important;
}

/*.flexible-content-block {
	border: 1px solid wheat;	
}*/
a.d-1of3.btn.button.button-transparent {
  float: none;
}

.callout-text.d-all {
  float: none;
  display: block;
  padding: 20px;
}

.d-1of2.t-1of2.m-all.individual-callout.white .callout-image.d-all.cover {
  padding: 0 10px;
  padding-top: 10px;
}

.button-view-all.clearfix.center {
  margin: 10px auto;
}

.d-1of2.t-1of2.m-all.individual-callout.white {
  font-family: "Open Sans", Helvetica, Arial, sans-serif;
}

.d-2of3.t-2of3.m-all.large_img {
  margin-bottom: 10px;
}

.d-1of3.t-1of3.m-all {
  padding: 0px 11px;
}

.wrap .flexible-content-block.block-callout-centered-icons .d-1of5.t-1of3.m-all.individual-callout.center a.clearfix, a.clearfix:visited {
  text-decoration: unset;
  padding: 0 10px;
  color: #565656;
  font-family: "Open Sans", Helvetica, Arial, sans-serif;
  font-weight: unset;
}

.d-all.content-editor p {
  font-family: "Open Sans", Helvetica, Arial, sans-serif;
}

.callout-text.d-all p {
  font-family: "Open Sans", Helvetica, Arial, sans-serif;
}

.callout-text.d-1of2 a, a:visited {
  text-decoration: unset;
  padding: 0 10px;
  font-family: "Open Sans", Helvetica, Arial, sans-serif;
  font-weight: bold;
  font-size: 14px;
}

/* .gray_background { */
/* } */
/* float:right; margin-top:-90px */
.block-callout-left-icons a {
  padding: 0 !important;
}

.block-articles-three-column .individual-outer .callout-text small,
.block-articles-three-column .individual-outer .callout-text h4,
.block-articles-three-column .individual-outer .callout-text p,
.block-articles-three-column .individual-outer .callout-text .button {
  margin-right: 0 !important;
  margin-left: 0 !important;
}

.block-articles-three-column .inner-content-block {
  width: 100%;
}
.block-articles-three-column .inner-content-block .individual-callout {
  padding: 0;
}

.block-articles-two-column .individual-outer .individual-callout {
  padding: 0;
}
.block-articles-two-column .individual-outer .individual-callout .callout-image {
  height: 100%;
  float: none;
}
.block-articles-two-column .individual-outer .individual-callout * {
  margin-left: 0 !important;
}

.excerpt {
  margin-bottom: 14px;
}
.excerpt a {
  display: none;
}

#map-module {
  padding-top: 40px;
  background: #f1f1f1;
}
#map-module .jvectormap-container {
  height: 470px;
  width: 100%;
}

.block-articles-three-column .cover {
  min-height: 175px;
}

.block-articles-three-column .callout-image,
.block-callout-full-width .callout-image,
.block-listing-two-column .callout-image {
  position: relative;
}
.block-articles-three-column .callout-image a,
.block-callout-full-width .callout-image a,
.block-listing-two-column .callout-image a {
  display: block;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  position: absolute;
  top: 0;
}

#sidebar-nav li {
  padding: 0 0 20px 0;
}
#sidebar-nav li a {
  font-family: "Open Sans", Helvetica, Arial, sans-serif;
  text-decoration: none;
}
#sidebar-nav li a:hover {
  opacity: 0.8;
}
#sidebar-nav li a:before {
  font-family: "FontAwesome";
  content: "";
  font-size: 12px;
  color: #124b94;
  padding-right: 5px;
}

.mega-menu-box-content h2 {
  margin: 0 !important;
  font-size: 30px;
  font-family: "Open Sans", Helvetica, Arial, sans-serif;
  line-height: normal;
}

#mega-menu-wrap-main-nav #mega-menu-main-nav > li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-item li.mega-menu-item > a.mega-menu-link, #mega-menu-wrap-main-nav #mega-menu-main-nav > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-column > ul.mega-sub-menu > li.mega-menu-item li.mega-menu-item > a.mega-menu-link,
#mega-menu-wrap-main-nav #mega-menu-main-nav > li.mega-menu-flyout ul.mega-sub-menu li.mega-menu-item a.mega-menu-link {
  font-size: 14px !important;
  font-family: "Open Sans", Helvetica, Arial, sans-serif !important;
  color: #252525 !important;
}

#mega-menu-wrap-main-nav #mega-menu-main-nav > li.mega-menu-item > a.mega-menu-link {
  font-family: "Open Sans", Helvetica, Arial, sans-serif !important;
  padding: 0 10px !important;
  height: 72px !important;
  line-height: 72px !important;
  font-size: 13px !important;
}

#mega-menu-wrap-main-nav #mega-menu-main-nav {
  padding: 0 !important;
}

#mega-menu-wrap-main-nav #mega-menu-main-nav > li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-item > a.mega-menu-link, #mega-menu-wrap-main-nav #mega-menu-main-nav > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-column > ul.mega-sub-menu > li.mega-menu-item > a.mega-menu-link {
  font-size: 20px !important;
  font-family: "Noto Serif", sans-serif !important;
  color: #252525 !important;
}
#mega-menu-wrap-main-nav #mega-menu-main-nav > li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-item > a.mega-menu-link:before, #mega-menu-wrap-main-nav #mega-menu-main-nav > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-column > ul.mega-sub-menu > li.mega-menu-item > a.mega-menu-link:before {
  display: none !important;
}

/*.mega-menu-item-has-children {
  .mega-sub-menu {
    padding:30px!important;
    min-width:200px!important;
    .mega-sub-menu {
      padding:0!important;
    min-width: 0!important; 
    }
  }
}*/
#sidebar-links h3 {
  font-size: 20px;
}

#sidebar-nav .page_item_has_children {
  padding-bottom: 0 !important;
}
#sidebar-nav .page_item_has_children ul {
  margin: 20px 0 0 20px;
}

.ssba img {
  padding: 15px 15px 0 0 !important;
}

table.dataTable.display tbody tr.odd > .sorting_1,
table.dataTable.order-column.stripe tbody tr.odd > .sorting_1,
table.dataTable.no-footer,
table.dataTable.stripe tbody tr.odd, table.dataTable.display tbody tr.odd,
table.dataTable.stripe tbody tr.even, table.dataTable.display tbody tr.even,
table.dataTable.stripe tbody tr.even:hover, table.dataTable.display tbody tr.eveoddn:hover,
table.dataTable.stripe tbody tr.odd:hover, table.dataTable.display tbody tr.even:hover,
table.dataTable thead th, table.dataTable thead td,
table.dataTable.display tbody tr.even > .sorting_1, table.dataTable.order-column.stripe tbody tr.even > .sorting_1 {
  background-color: transparent !important;
  border-width: 0 !important;
}

.dataTables_info {
  margin: 20px 0;
  display: block;
}

.dataTables_wrapper .dataTables_paginate {
  clear: both;
  float: none;
  text-align: left !important;
  margin: 20px 0;
  display: block;
}
.dataTables_wrapper .dataTables_paginate .previous, .dataTables_wrapper .dataTables_paginate .next {
  display: none !important;
}

#all-posts {
  padding-top: 60px;
  display: none;
}
#all-posts .sorting_asc,
#all-posts .sorting {
  display: none;
}

table.dataTable tbody th,
table.dataTable tbody td {
  padding: 0;
}

.pdf-link {
  display: inline;
  float: left;
  padding: 3px 15px 0 0;
  max-width: 125px;
}

.pdf-content h3.subHead {
  font-size: 0;
  line-height: normal;
}

.single .article-header {
  margin-bottom: 40px;
}

#menu-footer-menu {
  text-align: center;
}
#menu-footer-menu li {
  display: inline-block;
}

#menu-header-menu {
  margin: 0;
  padding: 0;
}
#menu-header-menu li {
  display: inline-block;
}
#menu-header-menu li a {
  text-transform: uppercase;
}

.menu-header-menu-container {
  float: left;
}

.flexible-content-block.block-grid .callout-image {
  padding: 0 !important;
}
.flexible-content-block.block-grid .callout-image .inner-text {
  padding: 20px !important;
  position: relative;
  z-index: 99999;
  min-height: 185px;
}

.flexible-content-block.block-grid .large_img .callout-image {
  padding: 0 !important;
}
.flexible-content-block.block-grid .large_img .callout-image .inner-text {
  min-height: 400px;
}

#main ul {
  margin-left: 20px;
}
#main ul li {
  list-style-type: disc;
}
#main ol {
  margin-left: 20px;
}
#main ol li {
  list-style-type: none;
}

.right_menu ul li {
  list-style-type: none !important;
}

/*
LARGER MOBILE DEVICES
This is for devices like the Galaxy Note or something that's
larger than an iPhone but smaller than a tablet. Let's call them
tweeners.
*/
@media only screen and (min-width: 481px) {
  /******************************************************************
  Site Name: 
  Author: 

  Stylesheet: 481px and Up Stylesheet

  This stylesheet is loaded for larger devices. It's set to 
  481px because at 480px it would load on a landscaped iPhone.
  This isn't ideal because then you would be loading all those
  extra styles on that same mobile connection. 

  A word of warning. This size COULD be a larger mobile device,
  so you still want to keep it pretty light and simply expand
  upon your base.scss styles.

  ******************************************************************/
  /*********************
  HEADER STYLES
  *********************/
  #top_div a {
    font-size: 8px;
  }

  #top_inner_div a .search_button {
    margin-top: 7px;
    width: 15px;
  }

  /*********************
  NAVIGATION STYLES
  *********************/
  /* .menu is clearfixed inside mixins.scss */
  .menu {
    /* end .menu ul */
  }
  .menu ul {
    /* end .menu ul li */
    /* highlight current page */
    /* end current highlighters */
  }
  .menu ul li {
    /*
    plan your menus and drop-downs wisely.
    */
  }
  .menu ul li a {
    /*
    you can use hover styles here even though this size
    has the possibility of being a mobile device.
    */
  }
  /* end .menu */
  #logo {
    float: left;
    width: 280px;
    margin-top: -10px;
  }

  #logo img {
    width: 228px;
    padding-top: 22px;
  }

  /*********************
  POSTS & CONTENT STYLES
  *********************/
  /* entry content */
  .entry-content {
    /* at this larger size, we can start to align images */
  }
  .entry-content .alignleft, .entry-content img.alignleft {
    margin-right: 1.5em;
    display: inline;
    float: left;
  }
  .entry-content .alignright, .entry-content img.alignright {
    margin-left: 1.5em;
    display: inline;
    float: right;
  }
  .entry-content .aligncenter, .entry-content img.aligncenter {
    margin-right: auto;
    margin-left: auto;
    display: block;
    clear: both;
  }

  /* end .entry-content */
  /*********************
  FOOTER STYLES
  *********************/
  /*
  check your menus here. do they look good?
  do they need tweaking?
  */
  /* end .footer-links */
}
/*
TABLET & SMALLER LAPTOPS
This is the average viewing window. So Desktops, Laptops, and
in general anyone not viewing on a mobile device. Here's where
you can add resource intensive styles.
*/
@media only screen and (min-width: 768px) {
  /******************************************************************
  Site Name:
  Author:

  Stylesheet: Grid Stylesheet

  I've seperated the grid so you can swap it out easily. It's
  called at the top the style.scss stylesheet.

  There are a ton of grid solutions out there. You should definitely
  experiment with your own. Here are some recommendations:

  http://gridsetapp.com - Love this site. Responsive Grids made easy.
  http://susy.oddbird.net/ - Grids using Compass. Very elegant.
  http://gridpak.com/ - Create your own responsive grid.
  https://github.com/dope/lemonade - Neat lightweight grid.


  The grid below is a custom built thingy I modeled a bit after
  Gridset. It's VERY basic and probably shouldn't be used on
  your client projects. The idea is you learn how to roll your
  own grids. It's better in the long run and allows you full control
  over your project's layout.

  ******************************************************************/
  .last-col {
    float: right;
    padding-right: 0 !important;
  }

  /*
  Mobile Grid Styles
  These are the widths for the mobile grid.
  There are four types, but you can add or customize
  them however you see fit.
  */
  /* Portrait tablet to landscape */
  /* Landscape to small desktop */
  /******************************************************************
  Site Name:
  Author:

  Stylesheet: Tablet & Small Desktop Stylesheet

  Here's where you can start getting into the good stuff.
  This size will work on iPads, other tablets, and desktops.
  So you can start working with more styles, background images,
  and other resources. You'll also notice the grid starts to
  come into play. Have fun!

  ******************************************************************/
  /*********************
  GENERAL STYLES
  *********************/

  /*********************
  LAYOUT & GRID STYLES
  *********************/

  /*********************
  HEADER SYTLES
  *********************/

  /*********************
  NAVIGATION STYLES
  *********************/

  /* end .nav */

  /*********************
  SIDEBARS & ASIDES
  *********************/

  /* links widget */

  /* meta widget */

  /* pages widget */

  /* recent-posts widget */

  /* archives widget */

  /* tag-cloud widget */

  /* calendar widget */

  /* category widget */

  /* recent-comments widget */

  /* search widget */

  /* text widget */

  /*********************
  FOOTER STYLES
  *********************/
  /*
  you'll probably need to do quite a bit
  of overriding here if you styled them for
  mobile. Make sure to double check these!
  */

  /* end .footer-links */
}
@media only screen and (min-width: 768px) and (max-width: 767px) {
  .m-all {
    float: left;
    padding-right: 0.75em;
    width: 100%;
    padding-right: 0;
  }

  .m-1of2 {
    float: left;
    padding-right: 0.75em;
    width: 50%;
  }

  .m-1of3 {
    float: left;
    padding-right: 0.75em;
    width: 33.33%;
  }

  .m-2of3 {
    float: left;
    padding-right: 0.75em;
    width: 66.66%;
  }

  .m-1of4 {
    float: left;
    padding-right: 0.75em;
    width: 25%;
  }

  .m-3of4 {
    float: left;
    padding-right: 0.75em;
    width: 75%;
  }
}
@media only screen and (min-width: 768px) and (min-width: 768px) and (max-width: 1029px) {
  .t-all {
    float: left;
    padding-right: 0.75em;
    width: 100%;
    padding-right: 0;
  }

  .t-1of2 {
    float: left;
    padding-right: 0.75em;
    width: 50%;
  }

  .t-1of3 {
    float: left;
    padding-right: 0.75em;
    width: 33.33%;
  }

  .t-2of3 {
    float: left;
    padding-right: 0.75em;
    width: 66.66%;
  }

  .t-1of4 {
    float: left;
    padding-right: 0.75em;
    width: 25%;
  }

  .t-3of4 {
    float: left;
    padding-right: 0.75em;
    width: 75%;
  }

  .t-1of5 {
    float: left;
    padding-right: 0.75em;
    width: 20%;
  }

  .t-2of5 {
    float: left;
    padding-right: 0.75em;
    width: 40%;
  }

  .t-3of5 {
    float: left;
    padding-right: 0.75em;
    width: 60%;
  }

  .t-4of5 {
    float: left;
    padding-right: 0.75em;
    width: 80%;
  }
}
@media only screen and (min-width: 768px) and (min-width: 1030px) {
  .d-all {
    float: left;
    padding-right: 0.75em;
    width: 100%;
    padding-right: 0;
  }

  .d-1of2 {
    float: left;
    padding-right: 0.75em;
    width: 50%;
  }

  .d-1of3 {
    float: left;
    padding-right: 0.75em;
    width: 33.33%;
  }

  .d-2of3 {
    float: left;
    padding-right: 0.75em;
    width: 66.66%;
  }

  .d-1of4 {
    float: left;
    padding-right: 0.75em;
    width: 25%;
  }

  .d-3of4 {
    float: left;
    padding-right: 0.75em;
    width: 75%;
  }

  .d-1of5 {
    float: left;
    padding-right: 0.75em;
    width: 20%;
  }

  .d-2of5 {
    float: left;
    padding-right: 0.75em;
    width: 40%;
  }

  .d-3of5 {
    float: left;
    padding-right: 0.75em;
    width: 60%;
  }

  .d-4of5 {
    float: left;
    padding-right: 0.75em;
    width: 80%;
  }

  .d-1of6 {
    float: left;
    padding-right: 0.75em;
    width: 16.6666666667%;
  }

  .d-1of7 {
    float: left;
    padding-right: 0.75em;
    width: 14.2857142857%;
  }

  .d-2of7 {
    float: left;
    padding-right: 0.75em;
    width: 28.5714286%;
  }

  .d-3of7 {
    float: left;
    padding-right: 0.75em;
    width: 42.8571429%;
  }

  .d-4of7 {
    float: left;
    padding-right: 0.75em;
    width: 57.1428572%;
  }

  .d-5of7 {
    float: left;
    padding-right: 0.75em;
    width: 71.4285715%;
  }

  .d-6of7 {
    float: left;
    padding-right: 0.75em;
    width: 85.7142857%;
  }

  .d-1of8 {
    float: left;
    padding-right: 0.75em;
    width: 12.5%;
  }

  .d-1of9 {
    float: left;
    padding-right: 0.75em;
    width: 11.1111111111%;
  }

  .d-1of10 {
    float: left;
    padding-right: 0.75em;
    width: 10%;
  }

  .d-1of11 {
    float: left;
    padding-right: 0.75em;
    width: 9.0909090909%;
  }

  .d-1of12 {
    float: left;
    padding-right: 0.75em;
    width: 8.33%;
  }
}
@media only screen and (min-width: 768px) {
  .wrap {
    max-width: 1140px;
  }
}
@media only screen and (min-width: 768px) {
  #inner-header {
    padding: 10px 0 !important;
  }
}
@media only screen and (min-width: 768px) {
  #top_div a {
    font-size: 14px;
  }
}
@media only screen and (min-width: 768px) {
  #top_inner_div a .search_button {
    margin-top: 4px;
    width: 16px;
  }
}
@media only screen and (min-width: 768px) {
  .nav {
    background: #eee;
    border: 0;
    /* end .menu ul li */
    /* highlight current page */
    /* end current highlighters */
  }
  .nav li {
    float: left;
    position: relative;
    /*
    plan your menus and drop-downs wisely.
    */
    /* showing sub-menus */
  }
  .nav li a {
    border-bottom: 0;
    /*
    you can use hover styles here even though this size
    has the possibility of being a mobile device.
    */
  }
  .nav li a:hover, .nav li a:focus {
    background-color: #dedede;
  }
  .nav li ul.sub-menu,
.nav li ul.children {
    width: 200px;
    border: 1px solid #ccc;
    border-top: 0;
    position: absolute;
    display: none;
    z-index: 8999;
    /* highlight sub-menu current page */
  }
  .nav li ul.sub-menu li,
.nav li ul.children li {
    /*
    if you need to go deeper, go nuts
    just remember deeper menus suck
    for usability. k, bai.
    */
  }
  .nav li ul.sub-menu li a,
.nav li ul.children li a {
    padding-left: 10px;
    border-right: 0;
    display: block;
    width: 180px;
    border-bottom: 1px solid #ccc;
  }
  .nav li ul.sub-menu li:last-child a,
.nav li ul.children li:last-child a {
    border-bottom: 0;
  }
  .nav li:hover ul {
    top: auto;
    display: block;
  }
}
@media only screen and (min-width: 768px) {
  #logo {
    float: left;
    width: 300px;
    margin-top: 0;
  }
}
@media only screen and (min-width: 768px) {
  #logo img {
    width: 300px;
    padding-top: 0px;
  }
}
@media only screen and (min-width: 768px) {
  #mega-toggle-block-1 {
    margin-top: 15px;
  }
}
@media only screen and (min-width: 768px) {
  .sidebar {
    margin-top: 2.2em;
  }
}
@media only screen and (min-width: 768px) {
  .widgettitle {
    border-bottom: 2px solid #444;
    margin-bottom: 0.75em;
  }
}
@media only screen and (min-width: 768px) {
  .widget {
    padding: 0 10px;
    margin: 2.2em 0;
  }
  .widget ul li {
    margin-bottom: 0.75em;
    /* deep nesting */
  }
  .widget ul li ul {
    margin-top: 0.75em;
    padding-left: 1em;
  }
}
@media only screen and (min-width: 768px) {
  .footer-links ul li {
    /*
    be careful with the depth of your menus.
    it's very rare to have multi-depth menus in
    the footer.
    */
  }
}
@media only screen and (min-width: 768px) {
  .overlay-content.wrap.newsletter-footer .newsletter-wrapper, .overlay-content.wrap.newsletter-footer #recent-newsletter {
    width: 48%;
  }
  .overlay-content.wrap.newsletter-footer #featured-newsletter-text, .overlay-content.wrap.newsletter-footer #featured-newsletter-image {
    width: 50%;
  }
  .overlay-content.wrap.newsletter-footer .newsletter-wrapper {
    float: left;
    margin-top: 32px;
  }
  .overlay-content.wrap.newsletter-footer #recent-newsletter {
    float: right;
  }
  .overlay-content.wrap.newsletter-footer #featured-newsletter-text {
    margin-top: 34px;
    float: right;
  }
  .overlay-content.wrap.newsletter-footer #featured-newsletter-image {
    float: left;
  }
}
@media only screen and (min-width: 768px) {
  .slick-slider .overlay-content {
    padding: 0;
    width: 50%;
  }
  .slick-slider .overlay-content h1 {
    font-size: 3.2em;
    margin: 0 0 0.5em 0;
    line-height: 1.2em;
    font-weight: bold;
    font-family: "Noto Serif", sans-serif;
  }
}
@media only screen and (min-width: 768px) {
  header.header {
    -webkit-box-shadow: 0 1px 10px rgba(0, 0, 0, 0.1);
    -moz-box-shadow: 0 1px 10px rgba(0, 0, 0, 0.1);
    box-shadow: 0 1px 10px rgba(0, 0, 0, 0.1);
    z-index: 99999;
    width: 100%;
    top: 32px;
    background: #fff;
  }
}
/*
DESKTOP
This is the average viewing window. So Desktops, Laptops, and
in general anyone not viewing on a mobile device. Here's where
you can add resource intensive styles.
*/
@media only screen and (min-width: 1030px) {
  /******************************************************************
  Site Name: 
  Author: 

  Stylesheet: Desktop Stylsheet

  This is the desktop size. It's larger than an iPad so it will only
  be seen on the Desktop. 

  ******************************************************************/
  /*********************
  HEADER SYTLES
  *********************/
  #logo {
    margin-top: 10px;
  }

  /*********************
  MISC SYTLES
  *********************/
  .flexible-content-block .callout-full-width {
    padding: 0 !important;
  }

  .slick-slider .overlay-content {
    top: 5%;
    width: 50%;
  }
  .slick-slider .overlay-content h1 {
    font-size: 3.2em;
    margin: 0.5em 0;
    line-height: 1.2em;
    font-weight: bold;
    font-family: "Noto Serif", sans-serif;
  }

  .callout_header_paragraph {
    font-size: 1.8em;
    margin: 0.5em 0;
    font-family: "Open Sans", Helvetica, Arial, sans-serif;
    font-weight: 300;
  }

  .callout_header {
    font-size: 3.2em;
    margin: 0.5em 0;
    line-height: 1.2em;
    font-family: "Noto Serif", sans-serif;
    font-weight: bold;
  }

  img.callout_header_image {
    width: 50%;
    float: left;
    max-width: 500px;
  }

  #tuition_break_p {
    text-align: left !important;
    width: 65%;
    max-width: 700px;
    float: left;
    clear: both;
    font-size: 1.8em;
  }
}
/*
LARGE VIEWING SIZE
This is for the larger monitors and possibly full screen viewers.
*/
@media only screen and (min-width: 1240px) {
  /******************************************************************
  Site Name: 
  Author: 

  Stylesheet: Super Large Monitor Stylesheet

  You can add some advanced styles here if you like. This kicks in
  on larger screens.

  ******************************************************************/
}
/*
RETINA (2x RESOLUTION DEVICES)
This applies to the retina iPhone (4s) and iPad (2,3) along with
other displays with a 2x resolution. You can also create a media
query for retina AND a certain size if you want. Go Nuts.
*/
@media only screen and (-webkit-min-device-pixel-ratio: 1.5), only screen and (min--moz-device-pixel-ratio: 1.5), only screen and (min-device-pixel-ratio: 1.5) {
  /******************************************************************
  Site Name: 
  Author: 

  Stylesheet: Retina Screens & Devices Stylesheet

  When handling retina screens you need to make adjustments, especially
  if you're not using font icons. Here you can add them in one neat
  place.

  ******************************************************************/
  /* 

  EXAMPLE 
  Let's say you have an image and you need to make sure it looks ok
  on retina screens. Let's say we have an icon which dimension are
  24px x 24px. In your regular stylesheets, it would look something
  like this:

  .icon {
  	width: 24px;
  	height: 24px;
  	background: url(img/test.png) no-repeat;
  }

  For retina screens, we have to make some adjustments, so that image
  doesn't look blurry. So, taking into account the image above and the
  dimensions, this is what we would put in our retina stylesheet:

  .icon {
  	background: url(img/test@2x.png) no-repeat;
  	background-size: 24px 24px;
  }

  So, you would create the same icon, but at double the resolution, meaning 
  it would be 48px x 48px. You'd name it the same, but with a @2x at the end
  (this is pretty standard practice). Set the background image so it matches
  the original dimensions and you are good to go. 

  */
}
/*
iPHONE 5 MEDIA QUERY
Want to get fancy for no good reason? Knock yourself out.
*/
/*
PRINT STYLESHEET
Feel free to customize this. Remember to add things that won't make
sense to print at the bottom. Things like nav, ads, and forms should
be set to display none.
*/
@media print {
  /******************************************************************
  Site Name:
  Author:

  Stylesheet: Print Stylesheet

  This is the print stylesheet. There's probably not a lot
  of reasons to edit this stylesheet. If you want to
  though, go for it.

  ******************************************************************/
  * {
    background: transparent !important;
    color: black !important;
    text-shadow: none !important;
    filter: none !important;
    -ms-filter: none !important;
  }

  a, a:visited {
    color: #444 !important;
    text-decoration: underline;
  }
  a:after, a:visited:after {
    content: " (" attr(href) ")";
  }
  a abbr[title]:after, a:visited 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;
  }

  .sidebar,
.page-navigation,
.wp-prev-next,
.respond-form,
nav {
    display: none;
  }
}

/*# sourceMappingURL=style.css.map */
.social-sidebar ul {
	display:flex;
	flex-direction:row;
	justify-content:space-between;
	max-width:200px
}
.social-sidebar ul li {
	font-size:1.5em;
	background-color:#0177b5;
	color:#fff;
	padding:8px;
	border-radius:50%;
	width:50px;
	text-align:center;
	cursor:pointer;
}
.social-sidebar ul li:first-child {
	background-color:#4167b2;
}
.social-sidebar ul li:last-child {
	background-color:#cb2027;
}
.social-sidebar ul li a {
	color:#fff !important;
}