/*
 * AACTE styles
 * http://www.aacte.org
 */

/* ---------- reset ---------- */

html, body, div, span, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, abbr, address, cite, code, del, dfn, em, img, ins, kbd, q, samp, small, strong, sub, sup, var, b, i, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, figcaption, figure, footer, header, hgroup, menu, nav, section, summary, time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
  display: block;
}
audio, canvas, video {
  display: inline-block;
}
audio:not([controls]) {
  display: none;
}
ul {
  list-style: none;
}
blockquote, q {
  quotes: none;
}
blockquote:before, blockquote:after, q:before, q:after {
  content: "";
  content: none;
}
a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
  outline: none;
}
img {
  -ms-interpolation-mode: bicubic;
}
h1, h2, h3, h4, h5, h6 {
  font-weight: 400;
}
ins {
  background-color: #ffff99;
  color: black;
  text-decoration: none;
}
mark {
  background-color: #ffff99;
  color: black;
  font-style: italic;
  font-weight: bold;
}
del {
  text-decoration: line-through;
}
abbr[title], dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
  width: 100%;
  word-wrap: break-word;
}
table.zebra tr:nth-child(even),
table.zebra-event tr:nth-child(even) {
  background: #e0f3ff;
}
table.zebra-odd tr:nth-child(odd) {
  background: #e0f3ff;
}
table.details td {
  border-bottom:1px solid #dedede;
}
table.details td.separator {
  border-bottom:2px solid #444444;
}
tr.header {
  background: #444444;
  color: #FFFFFF;
}
td {
  padding: 5px;
}
hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #cccccc;
  margin: 1em 0;
  padding: 0;
}
hr.soft {
  border-top: 1px solid #eeeeee;
}
pre {
  white-space: pre;
  white-space: pre-wrap;
  word-wrap: break-word;
}
sub, sup {
  vertical-align: baseline;
  font-size: 75%;
  line-height: 0;
  position: relative;
}
sup {
  top: -0.5em;
}
sub {
  bottom: -0.25em;
}
input, select {
  vertical-align: middle;
}
input[type="checkbox"], input[type="radio"] {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  padding: 0;
}
input[type="search"] {
  -webkit-appearance: textfield;
  -webkit-box-sizing: content-box;
  -moz-box-sizing: content-box;
  box-sizing: content-box;
}
input[type="search"]::-webkit-search-decoration, input[type="search"]::-webkit-search-cancel-button {
  -webkit-appearance: none;
}
button::-moz-focus-inner, input::-moz-focus-inner {
  border: 0;
  padding: 0;
}
textarea {
  overflow: auto;
  vertical-align: top;
  resize: vertical;
}

/* ---------- contact form fields ---------- */
#contact-form input, #contact-form button {
  border:0;
}
#contact-form input[type=text], #contact-form input[type=email] {
  width:400px;
  border:1px solid #ccc;
  height:30px;
}
#contact-form textarea {
  width:400px;
  border:1px solid #ccc;
}
#contact-form .control-group {
  padding:5px 0;
}
#contact-form .controls {
  width:400px;
}

/*-------- search form ---------*/
#searchForm select {
	width:200px;
}

/*-------- system messages ---------*/
#system-message {
	position:relative;
}
.alert-heading {
	font-weight:bold;
}
.alert-notice {
	border-top:1px solid #E6EC00;
	border-bottom:1px solid #E6EC00;
	background:#FFFFCC;
	color:#959500;
	padding:10px;
	margin:5px 0;
}

.alert-message {
	border-top:1px solid #7dabdd;
	border-bottom:1px solid #7dabdd;
	background:#d1dce3;
	color:#0055bb;
	padding:10px;
	margin:20px 0;
}

.alert-warning {
	border-top:1px solid #990000;
	border-bottom:1px solid #990000;
	background:#FFD9C8;
	color:#990000;
	padding:10px;
	margin:20px 0;
}
.alert-ok {
    border-bottom:1px solid #8EB951;
    border-top:1px solid #8EB951;
	background:#EDFFD3;
    color:#729B37;
    padding:10px;
	margin:20px 0;
}

#system-message .close {
    position:absolute;
	right:15px;
	top:5px;
}


/* ---------- tooltip ----------*/

   .tooltip {
	position: absolute;
	z-index: 1030;
	display: block;
	visibility: visible;
	font-size: 11px;
	line-height: 1.4;
	opacity: 0;
	filter: alpha(opacity=0);
}
.tooltip.in {
	opacity: 0.8;
	filter: alpha(opacity=80);
}
.tooltip.top {
	margin-top: -3px;
	padding: 5px 0;
}
.tooltip.right {
	margin-left: 3px;
	padding: 0 5px;
}
.tooltip.bottom {
	margin-top: 3px;
	padding: 5px 0;
}
.tooltip.left {
	margin-left: -3px;
	padding: 0 5px;
}
.tooltip-inner {
	max-width: 200px;
	padding: 8px;
	color: #ffffff;
	text-align: center;
	text-decoration: none;
	background-color: #000000;
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	border-radius: 4px;
}
.tooltip-arrow {
	position: absolute;
	width: 0;
	height: 0;
	border-color: transparent;
	border-style: solid;
}
.tooltip.top .tooltip-arrow {
	bottom: 0;
	left: 50%;
	margin-left: -5px;
	border-width: 5px 5px 0;
	border-top-color: #000000;
}
.tooltip.right .tooltip-arrow {
	top: 50%;
	left: 0;
	margin-top: -5px;
	border-width: 5px 5px 5px 0;
	border-right-color: #000000;
}
.tooltip.left .tooltip-arrow {
	top: 50%;
	right: 0;
	margin-top: -5px;
	border-width: 5px 0 5px 5px;
	border-left-color: #000000;
}
.tooltip.bottom .tooltip-arrow {
	top: 0;
	left: 50%;
	margin-left: -5px;
	border-width: 0 5px 5px;
	border-bottom-color: #000000;
}
.tooltip {
	max-width: 400px;
}
.tooltip-inner {
	max-width: none;
	text-align: left;
	text-shadow: none;
}
th .tooltip-inner {
	font-weight: normal;
}
.tooltip.hasimage {
	opacity: 1;
}
fieldset.panelform .tooltip img {
	float: none;
	margin: 0;
}

/* ---------- basic ---------- */

* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.lt-ie8 * {
  behavior: url("js/boxsizing.htc");
}

html {
  font: 62.5%/1.5 "Helvetica Neue", "Helvetica", Arial, sans-serif;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
}

body {
  font-size: 13px;
  line-height: 20px;
  color: #595959;
  background-color: #fafafa;
  overflow-x: hidden;
}

#skip-to-content {
  visibility: hidden;
  position: absolute;
  left: -100%;
  top: -40px;
}

.page-width-bounds {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.page-content {
  padding: 40px 20px;
}


/* ---------- typography, =formatted ---------- */

a {
  text-decoration: none;
  color: #32558c;
  -webkit-transition: color 0.14s ease, background-color 0.14s ease, opacity 0.14s ease;
  transition: color 0.14s ease, background-color 0.14s ease, opacity 0.14s ease;
}
a:hover {
  color: #3fa0de;
}

.type-alt, .page-title, .subtitle, .formatted h1, .formatted h2, .formatted h3, .formatted h4, .formatted h5, .formatted h6, .block-link, .button-action, .page-nav > ul > li > a, .footer-title, .footer-social .text, .home-feature .description {
  font-family: "Francois One", "Helvetica Neue", "Helvetica", Arial, sans-serif;
  font-weight: 400;
  font-style: normal;
}

.micro {
  font-size: 10px;
}
.milli {
  font-size: 11px;
}
.kilo {
  font-size: 15px;
}
.mega {
  font-size: 18px;
}
.giga {
  font-size: 21px;
  line-height: 40px;
}
.tera {
  font-size: 25px;
  line-height: 40px;
}
.peta {
  font-size: 30px;
  line-height: 40px;
}
.exa {
  font-size: 36px;
  line-height: 40px;
}
.yotta {
  font-size: 42px;
  line-height: 60px;
}

.page-title, .subtitle {
  font-size: 21px;
  margin-bottom: 20px;
}
.subtitle.menutitle {
  font-size:18px;
  margin-bottom:8px;
}
.page-title {
  color: #e15b1f;
}
.subtitle {
  color: #32558c;
}

.formatted {
  font-size: 13px;
}
.formatted p, .formatted ol, .formatted ul, .formatted h1, .formatted h2, .formatted h3, .formatted h4, .formatted h5, .formatted h6 {
  margin-bottom: 20px;
}
.formatted p:last-child, .formatted ol:last-child, .formatted ul:last-child {
  margin-bottom: 0;
}
.formatted ol, .formatted ul {
  margin-left: 2em;
  list-style-position: inside;
}
.formatted ul {
  list-style-type: disc;
}
.formatted ul.article-links {
  list-style:none;
  margin:0;
}
.formatted h1, .formatted h2, .formatted h3, .formatted h4, .formatted h5, .formatted h6 {
  text-rendering: optimizeLegibility;
  color: #3fa0de;
}
.style-2 .formatted h1, .style-2 .formatted h2, .style-2 .formatted h3, .style-2 .formatted h4, .style-2 .formatted h5, .style-2 .formatted h6 {
  color: #f3b435;
}
.formatted a {
  color: #e15b1f;
}
.formatted .block-link, .formatted .button-action {
  color: #fafafa;
}
.formatted .more {
  color: #32558c;
  background: #ced6e0;
}
.formatted .more:hover {
  color: #fafafa;
  background: #3fa0de;
}
.formatted h5 {
  font-size: 15px;
}
.formatted h4 {
  font-size: 18px;
}
.formatted h3 {
  font-size: 21px;
}
.formatted h2 {
  font-size: 25px;
}
.formatted h1 {
  font-size: 30px;
}
.formatted .press-header {
  margin-bottom:20px;
}
.content-category {
  margin-bottom:20px;	
}
.content-category.bold .article-link {
  font-weight: bold;
}

@media all and (min-width: 980px) {
  .page-title {
    font-size: 30px;
    line-height: 40px;
  }

  .subtitle {
    font-size: 25px;
    line-height: 40px;
  }
}


/* ---------- grids ---------- */

.grid {
  display: block;
  padding: 0;
  margin-right: -40px;
  letter-spacing: -0.31em;
  word-spacing: -0.43em;
  text-rendering: optimizespeed;
  text-align: center;
}

.grid-item {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  width: 100%;
  display: -moz-inline-box;
  display: inline-block;
  padding: 0 40px 40px 0;
  margin: 0;
  vertical-align: top;
  letter-spacing: normal;
  word-spacing: normal;
  text-rendering: auto;
  text-align: left;
}
.lt-ie8 .grid-item {
  behavior: url("js/boxsizing.htc");
}
.lt-ie8 .grid-item {
  display: inline;
  zoom: 1;
}

.grid-1-2 {
  width: 50%;
}
.grid-1-3 {
  width: 33.3%;
}
.grid-2-3 {
  width: 66.6%;
}
.grid-1-4 {
  width: 25%;
}


@media all and (min-width: 470px) {
  .grid-1-2-s {
    width: 50%;
  }
  .grid-1-3-s {
    width: 33.3%;
  }
  .grid-2-3-s {
    width: 66.6%;
  }
  .grid-1-4-s {
    width: 25%;
  }
}


@media all and (min-width: 720px) {
  .grid-1-2-m {
    width: 50%;
  }
  .grid-1-3-m {
    width: 33.3%;
  }
  .grid-2-3-m {
    width: 66.6%;
  }
  .grid-1-4-m {
    width: 25%;
  }
}


@media all and (min-width: 980px) {
  .grid-1-2-l {
    width: 50%;
  }
  .grid-1-3-l {
    width: 33.3%;
  }
  .grid-2-3-l {
    width: 66.6%;
  }
  .grid-1-4-l {
    width: 25%;
  }
}

/* ----- altered custom grid ------ */
.grid.grid-box {
	margin-right:-15px !important;
}
.grid-item.grid-item-box {
	padding:0 10px 40px 0 !important;
}
.shadow-box {
	background:#FFF;padding:15px;border:1px solid #dedede;box-shadow: 1px 1px 3px #dedede;
	min-height:160px;
}
.shadow-box:hover {
	background:border:1px solid #77b7f3;box-shadow: 1px 1px 3px #77b7f3;
}
.shadow-box h4 {
	color:#000000;
	margin-bottom:5px !important;
}
.shadow-box span {
	color:#999;
	font-size:90%
}

/* ---------- icons-social ---------- */

.icon-social {
  display: -moz-inline-box;
  display: inline-block;
  vertical-align: middle;
  width: 36px;
  height: 36px;
  background: transparent url("../images/icons.png") no-repeat 0 0;
  text-decoration: none;
  color: transparent;
  overflow: hidden;
  text-indent: 200%;
  white-space: nowrap;
}
.lt-ie8 .icon-social {
  display: inline;
  zoom: 1;
}

.icon-small {
  width: 25px;
  height: 25px;
}

@media only screen and (-moz-min-device-pixel-ratio: 1.5), only screen and (-o-min-device-pixel-ratio: 3 / 2), only screen and (-webkit-min-device-pixel-ratio: 1.5), only screen and (min-device-pixel-ratio: 1.5) {
  background-image: url("../images/icons@2x.png");
  -webkit-background-size: 150px 200px;
  -moz-background-size: 150px 200px;
  background-size: 150px 200px;
}

.icon-facebook {
  background-position: 0 0;
}
.icon-facebook:hover {
  background-position: -50px 0;
}
.icon-vimeo {
  background-position: 0 -50px;
}
.icon-vimeo:hover {
  background-position: -50px -50px;
}
.icon-twitter {
  background-position: 0 -100px;
}
.icon-twitter:hover {
  background-position: -50px -100px;
}
.icon-facebook-small {
  background-position: -100px 0;
}
.icon-vimeo-small {
  background-position: -100px -50px;
}
.icon-twitter-small {
  background-position: -100px -100px;
}
.icon-search {
  background-position: -100px -150px;
}


/* ---------- components ---------- */

.block {
  display: block;
  max-width: 100%;
  margin: 0 auto;
}

.inline-block {
  display: -moz-inline-box;
  display: inline-block;
  vertical-align: middle;
  max-width: 100%;
}
.lt-ie8 .inline-block {
  display: inline;
  zoom: 1;
}

.img-left, .img-right {
  display: block;
  max-width: 40%;
}

.img-left {
  float: left;
  margin: 5px 20px 10px 0;
}

.img-right {
  float: right;
  margin: 5px 0 10px 20px;
}
.max10 {
  max-width: 10%;
}
.max15 {
  max-width: 15%;
}
.max20 {
  max-width: 20%;
}
.max25 {
  max-width: 25%;
}
.max30 {
  max-width: 30%;
}
.max33 {
  max-width: 33%;
}
.max40 {
  max-width: 40%;
}
.max45 {
  max-width: 45%;
}
.max50 {
  max-width: 50%;
}
.max55 {
  max-width: 55%;
}
.max60 {
  max-width: 60%;
}
.max70 {
  max-width: 70%;
}
.max80 {
  max-width: 80%;
}
.max90 {
  max-width: 90%;
}
.max100 {
  max-width: 100%;
}

/*image caption*/
div.img-left {
  float:left; position:relative; margin:5px 20px 10px 0;
}
div.img-right {
  float:right; position:relative; margin:5px 0 10px 20px;
}
div.img-left img {
  width:100%;
}
div.img-right img {
  width:100%;
}
div.img {
	float:left;
	position:relative;
}
.img-left div#caption, .img-right div#caption, .img div#caption {
	position:absolute;
	left:0;
	bottom:5px;
	width:100%;
	padding:5px;
	color:#FFF;
	font-size:11px;
	line-height:12px;
	background: rgba(0, 0, 0, 0.8);
}
.img-group + * {
	clear:both;
}

.content-block {
  margin-bottom: 20px;
}
.item-page.formatted {
  margin-bottom: 20px;
}
.layout-block {
  margin-bottom: 40px;
}

.breadcrumbs {
  padding-bottom: 5px;
  font-size: 11px;
  background: #ced6e0;
}
.breadcrumbs .page-width-bounds {
  padding: 0 20px;
}
.breadcrumbs span {
  display: -moz-inline-box;
  display: inline-block;
  margin: 0 0.5em;
  opacity: 0.65;
  -webkit-transform: scaleY(1.5) scaleX(0.9) translateY(-6%);
  transform: scaleY(1.5) scaleX(0.9) translateY(-6%);
}
.lt-ie8 .breadcrumbs span {
  display: inline;
  zoom: 1;
}
.breadcrumbs a:last-child {
  font-weight: 700;
}

.js .tabs .pane, .js .nn_tabs .tab-pane {
  display: none;
}
.js .tabs .pane.active, .js .nn_tabs .tab-pane.active {
  display: block;
}
.nn_tabs {
	margin:10px 0 30px 0;
}
ul.nav-tabs {
	margin: 0;
}
ul.nav-tabs li {
	list-style: none;
	display: inline-block;
}
.standard-tab, .nn_tabs-tab > a {
  display: -moz-inline-box;
  display: inline-block;
  padding: 10px 20px;
  border: 2px solid #ced6e0;
  -webkit-border-radius: 3px 3px 0 0;
  border-radius: 3px 3px 0 0;
  color: #32558c;
  background: #ced6e0;
  position: relative;
  top: 2px;
  z-index: 1;
}
.lt-ie8 .standard-tab, .lt-ie8 .nn_tabs-tab > a {
  display: inline;
  zoom: 1;
}
.standard-tab.active, .nn_tabs-tab.active > a {
  border-color: #32558c #32558c #f3f5f8;
  color: #e15b1f;
  background: #f3f5f8;
  z-index: 3;
}

.standard-pane, .tab-pane {
  padding: 20px;
  border: 2px solid #32558c;
  background: #f3f5f8;
  position: relative;
  z-index: 2;
}

.more, .pagination .pagenav {
  display: block;
  padding: 0 10px;
  float: right;
  font-weight: 700;
  line-height: 30px;
  color: #32558c;
  background: #ced6e0;
}
.more:hover, .pagination .pagenav:hover {
  color: #fafafa;
  background: #3fa0de;
}
.page-nav .more {
  float: left;
  display: inline;
  padding: 0 10px;
}
.more.no-float {
  float: none;
  display: inline-block;
  padding: 0 10px;
  margin: 2px 0;
}
.float-left {
  float:left !important;
}
.float-right {
  float:right !important;
}
.pagination > ul > li {
	display:inline-block;
	margin-right:10px;
}
.pagination > ul > li > a {
    text-align: center;
  }
.pagination span.pagenav, .pagination span.pagenav:hover {
	background: #32558c;
	color:#fafafa;
}
.pagination li.pagination-start span.pagenav, .pagination li.pagination-prev span.pagenav, .pagination li.pagination-next span.pagenav, .pagination li.pagination-end span.pagenav {
	background: #cccccc;
	color:#fafafa;
}
.pagination .counter {
	float:right;
}

.block-link, .button-action {
  display:block;
  padding: 10px 20px;
  font-size: 15px;
  color: #fafafa;
  background: #32558c;
}
.block-link:hover, .button-action:hover {
  color: #fafafa;
  background: #3fa0de;
}
.button-action {
  display:inline-block;
  margin:5px 0 5px 0;
}

.disclose:after {
  content: "";
  display: -moz-inline-box;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: 0.5em;
  border: 0.4em solid transparent;
  border-left-color: #32558c;
  border-right-width: 0;
  -webkit-transform: scaleX(1.2) scaleY(0.9);
  transform: scaleX(1.2) scaleY(0.9);
}
.lt-ie8 .disclose:after {
  display: inline;
  zoom: 1;
}
.disclose.active:after {
  -webkit-transform: rotate(90deg) scaleX(1.2) scaleY(0.9);
  transform: rotate(90deg) scaleX(1.2) scaleY(0.9);
}

.content-box .subtitle {
  padding: 10px 20px;
  margin-bottom: 0;
}
.content-box > div, .content-box > ul {
  padding: 20px;
}
.content-box.style-1 .subtitle {
  background: #ced6e0;
}
.content-box.style-1 > div, .content-box.style-1 > ul {
  border: solid #ced6e0;
  border-width: 0 5px 5px;
}
.content-box.style-2 {
  color: #fafafa;
  background: #32558c;
}
.content-box.style-2 .subtitle {
  color: #ced6e0;
  position: relative;
  top: 10px;
}
.content-box.style-2 a {
  color: #f3b435;
}
.content-box.style-2 a:hover {
  color: #fafafa;
}
.content-box.style-2 .item-list a {
  color: #fafafa;
}
.content-box.style-2 .item-list a:hover {
  color: #f3b435;
}
.content-box.style-2 .item-list .date {
  color: #fafafa;
  opacity: 0.65;
}
.content-box.style-3 {
  background: #ced6e0;
}
.content-box.style-3 .subtitle {
  position: relative;
  top: 10px;
}
.content-box.style-2 .more, .content-box.style-3 .more {
  background: #fafafa;
  color: #e15b1f;
}
.content-box.style-2 .more:hover, .content-box.style-3 .more:hover {
  color: #fafafa;
  background: #e15b1f;
}

.item-list a {
  display: block;
}
.item-list a.inline {
  display: inline;
}
.item-list li {
  padding-bottom: 10px;
}
.item-list li:last-child {
  padding-bottom: 0;
}
.item-list .date {
  font-style: italic;
  color: #595959;
  opacity: 0.8;
}

ul.list {
 overflow:hidden;
 padding-left:20px;
}
.list li {
 list-style-position:outside;
 padding: 3px 0;
 border-bottom:1px solid #f1f1f1;
}
.list li:last-child {
  border: none;
}
.list ul {
 margin-left:20px;
}
.list.no-border li {
 border-bottom:none;
}


.date-list {
  padding-bottom: 10px;
}
.date-list a {
  display: block;
  padding: 10px 0;
}
.date-list .date {
  width: 39px;
  padding: 2.5px 0;
  float: left;
  text-align: center;
  background: #3fa0de;
}
.date-list .m {
  position: relative;
  top: 2px;
  font-weight: 700;
  color: #fafafa;
}
.date-list .d {
  position: relative;
  top: -2px;
  color: #ced6e0;
  font-size: 18px;
}
.date-list .content {
  margin-left: 49px;
}
.date-list .title, .categories-list .title {
  font-size: 15px;
  font-weight: 700;
  color: #32558c;
}
.date-list .description {
  color: #595959;
}
.date-list .date, .date-list .title, .categories-list .title, .date-list .description {
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.date-list a:hover .date {
  background: #55abe2;
}
.date-list a:hover .title, .categories-list a:hover .title {
  color: #3fa0de;
}
.date-list a:hover .description {
  color: #516e80;
}

.frame {
  border: 5px solid #ced6e0;
}
a.no-frame img, .no-frame {
	border:none !important;
}

.advert {
  text-align: center;
}

.advert-identifier {
  display: block;
  line-height: 30px;
  font-family: serif;
  font-style: italic;
  opacity: 0.5;
}
.advert-identifier:before, .advert-identifier:after {
  content: "\2014";
  display: -moz-inline-box;
  display: inline-block;
}
.lt-ie8 .advert-identifier:before, .lt-ie8 .advert-identifier:after {
  display: inline;
  zoom: 1;
}
.advert-identifier:before {
  margin-right: 1em;
}
.advert-identifier:after {
  margin-left: 1em;
}


@media all and (max-width: 719px) {
  .shared-height {
    min-height: auto !important;
  }
  .content-box {
    margin-left: -20px;
    margin-right: -20px;
  }
}


@media all and (min-width: 720px) {
  .breadcrumbs {
    font-size: 13px;
  }
  .content-box .subtitle {
    font-size: 21px;
    line-height: 20px;
  }
}


/* ---------- header and =nav ---------- */

#menu-small, .menu-small-toggle {
  display: none;
}

.page-header {
  border: solid #ced6e0;
  border-width: 5px 0;
  background: #32558c;
  position: relative;
  z-index: 10;
}

#menu-small {
  max-height: 0;
  overflow: hidden;
  visibility: hidden;
  background-color: #2c405f;
  -webkit-box-shadow: inset 0 -5px 20px -10px rgba(0, 0, 0, 0.5);
  box-shadow: inset 0 -5px 20px -10px rgba(0, 0, 0, 0.5);
  -webkit-transition: max-height 0.4s cubic-bezier(0.19, 1, 0.22, 1), visibility 0s linear 0.4s;
  transition: max-height 0.4s cubic-bezier(0.19, 1, 0.22, 1), visibility 0s linear 0.4s;
}
#menu-small.active {
  max-height: 80em;
  visibility: visible;
  -webkit-transition: max-height 0.3s cubic-bezier(0.55, 0.055, 0.675, 0.19), visibility 0s linear;
  transition: max-height 0.3s cubic-bezier(0.55, 0.055, 0.675, 0.19), visibility 0s linear;
}

.menu-small-toggle {
  float: right;
  padding: 0 10px;
  margin: 20px 20px 0 0;
  height: 30px;
  line-height: 28px;
  border: 1px solid #32558c;
  -webkit-border-radius: 1px;
  border-radius: 1px;
  font-size: 15px;
  background: #fafafa;
}
.menu-small-toggle > img {
  display: -moz-inline-box;
  display: inline-block;
  vertical-align: middle;
  line-height: 30px;
  height: 13px;
  margin-right: 0.2em;
}
.lt-ie8 .menu-small-toggle > img {
  display: inline;
  zoom: 1;
}

.page-logo {
  width: 120px;
  float: left;
  margin: 10px 0 10px 20px;
}

.page-nav {
  position: relative;
}
.page-nav a {
  display: block;
}
.page-nav h3, .page-nav span {
  -webkit-transition: color 0.15s ease;
  transition: color 0.15s ease;
}
.page-nav .current > a h3, .page-nav .current > a span {
  color: #f3b435;
}

.header-search {
  position: relative;
}
#com-search {
	float: none;
	margin: 0;
	width: 50%;
}

.header-search input {
  display: block;
  width: 100%;
  height: 30px;
  line-height: 30px;
  padding: 0 10px 0 35px;
  border: 1px solid #32558c;
}
.header-search input:focus {
  border-color: #f3b435;
  outline: none;
}
.header-search .icon-social {
  display: block;
  position: absolute;
  left: 5px;
  top: 50%;
  margin-top: -12.5px;
}

.header-utility, .header-utility-2 {
  padding: 20px 0;
  text-align: center;
}
.header-utility li, .header-utility-2 li {
  display: -moz-inline-box;
  display: inline-block;
  vertical-align: middle;
}
.lt-ie8 .header-utility li, .lt-ie8 .header-utility-2 li {
  display: inline;
  zoom: 1;
}
.header-utility li + li, .header-utility-2 li + li {
  margin-left: 1.3em;
}
.header-utility .icon-social, .header-utility-2 .icon-social {
  display: block;
}
.header-utility a, .header-utility-2 a {
  color: #fafafa;
}
.header-utility a:hover, .header-utility-2 a:hover {
  color: #f3b435;
}


@media all and (max-width: 719px) {
  .js .mobile-header {
    display: none;
  }

  .js #menu-small, .js .menu-small-toggle, #menu-small .mobile-header {
    display: block;
  }

  .page-nav {
    background: rgba(250, 250, 250, 0.6);
  }
  .page-nav li ul, .page-nav span {
    display: none;
  }
  .page-nav a {
    padding: 10px 20px;
    margin-top: 1px;
    font-size: 15px;
    background: rgba(250, 250, 250, 0.7);
  }
  .page-nav a:hover {
    background: #fafafa;
  }
  .header-search {
    margin: 20px 120px 0 20px;
  }
}


@media all and (min-width: 470px) {
  .page-logo {
    width: 90px;
  }
}


@media all and (min-width: 720px) {
  .page-logo {
    width: 200px;
    margin-top: 20px;
  }

  .header-utility, .header-utility-2 {
    text-align: right;
    padding-right: 20px;
  }

  .header-search {
    width: 25%;
    float: right;
    margin: 0 20px;
  }

  .header-utility a {
    opacity: 0.8;
  }
  .header-utility a:hover {
    opacity: 1;
  }

  .header-utility-2 {
    clear: right;
  }
  .header-utility-2 a {
    display: block;
    height: 30px;
    line-height: 28px;
    padding: 0 10px;
    border: 1px solid #32558c;
    color: #fafafa;
    background: #3fa0de;
    background: rgba(250, 250, 250, 0.15);
  }
  .header-utility-2 a:hover {
    color: #32558c;
    background: #fafafa;
  }

  .page-nav {
    clear: both;
  }
  .page-nav > ul {
    padding: 0 20px;
    margin-right: -10px;
  }
  .page-nav > ul > li {
    position: relative;
    width: 16.66%;
    float: left;
    padding-right: 10px;
  }
  .page-nav > ul > li > a {
    text-align: center;
  }
  .page-nav > ul > li > a:before {
    content: "";
    display: -moz-inline-box;
    display: inline-block;
    vertical-align: bottom;
    width: 0;
    height: 60px;
    margin: 0 -0.25em;
  }
  .lt-ie8 .page-nav > ul > li > a:before {
    display: inline;
    zoom: 1;
  }
  .page-nav h3 {
    display: -moz-inline-box;
    display: inline-block;
    width: 98%;
    vertical-align: bottom;
    font-size: 15px;
    color: #3fa0de;
  }
  .lt-ie8 .page-nav h3 {
    display: inline;
    zoom: 1;
  }
  .page-nav span {
    display: block;
    padding: 5px 0;
    margin: 5px 0 10px;
    color: #fafafa;
    border: solid #5a76a2;
    border-width: 1px 0;
    font-size: 11px;
  }
  .page-nav li ul {
    position: absolute;
    top: 90%;
    left: 0;
    width: 200%;
    padding: 5px 0;
    border-top: 5px solid transparent;
    background: #fafafa;
    -webkit-background-clip: padding-box;
    -moz-background-clip: padding-box;
    background-clip: padding-box;
    visibility: hidden;
    opacity: 0;
    -webkit-box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    -webkit-transition: opacity 0.3s ease, top 0.3s ease, visibility 0s linear 0.4s;
    transition: opacity 0.3s ease, top 0.3s ease, visibility 0s linear 0.4s;
  }
  .page-nav li ul:before, .page-nav li ul:after {
    content: "";
    display: block;
    width: 0;
    height: 0;
    border: 10px solid transparent;
    border-bottom-color: #fafafa;
    border-top-width: 0;
    position: absolute;
    left: 25%;
    top: -10px;
    margin-left: -15px;
    -webkit-transform: scaleX(1.4);
    -moz-transform: scaleX(1.4);
    -ms-transform: scaleX(1.4);
    -o-transform: scaleX(1.4);
    transform: scaleX(1.4);
    z-index: 4;
  }
  .page-nav li ul:after {
    border-width: 0 14px 14px;
    border-bottom-color: #ced6e0;
    top: -14px;
    margin-left: -19px;
    z-index: 3;
  }
  .page-nav li ul a {
    padding: 5px 20px;
  }
  .page-nav li ul a:hover {
    color: #fafafa;
    background: #32558c;
  }
  .page-nav li:last-child ul {
    left: auto;
    right: 0;
  }
  .page-nav li:last-child ul:before, .page-nav li:last-child ul:after {
    left: 75%;
  }
  .page-nav > ul > li:hover h3, .page-nav > ul > li:hover span {
    color: #f3b435;
  }
  .page-nav > ul > li:hover ul {
    top: 100%;
    visibility: visible;
    opacity: 1;
    -webkit-transition: opacity 0.14s ease, top 0.14s ease, visibility 0s linear;
    transition: opacity 0.14s ease, top 0.14s ease, visibility 0s linear;
  }
}


@media all and (min-width: 900px) {
  .page-logo {
    width: 180px;
  }

  .header-utility-2 {
    clear: none;
    padding: 0;
  }
}


@media all and (min-width: 980px) {
  .page-nav h3 {
    font-size: 18px;
  }
  .page-nav span {
    font-size: 13px;
  }
}
@media all and (min-width: 1120px) {
  .page-nav > ul > li > a:before {
    height: 40px;
  }
}


/* ---------- footer ---------- */

.page-footer {
  border-top: 5px solid #ced6e0;
  text-align: center;
  color: #fafafa;
  background: #32558c;
}
.page-footer .page-width-bounds {
  padding: 40px 20px;
}
.page-footer a {
  color: #fafafa;
  text-decoration: underline;
}
.page-footer a:hover {
  color: #f3b435;
}
.page-footer .divider {
  display: -moz-inline-box;
  display: inline-block;
  margin: 0 0.5em;
  opacity: 0.5;
}
.lt-ie8 .page-footer .divider {
  display: inline;
  zoom: 1;
}

.footer-title {
  font-size: 18px;
  margin-bottom: 10px;
}

.footer-address, .footer-copyright {
  margin-bottom: 20px;
}

.footer-social > a {
  display: -moz-inline-box;
  display: inline-block;
  vertical-align: top;
  text-decoration: none;
}
.lt-ie8 .footer-social > a {
  display: inline;
  zoom: 1;
}
.footer-social > a + a {
  margin-left: 20px;
}
.footer-social .text {
  display: block;
}

.footer-logos {
  background: #ced6e0;
  padding: 40px 0;
  margin: 0 auto;
}
.footer-logos img {
  max-width: 40%;
  max-height: 80px;
}
.footer-logos img + img {
  margin-left: 5%;
}


@media all and (min-width: 980px) {
  .footer-info {
    float: left;
    text-align: left;
  }

  .footer-address {
    margin-bottom: 0;
  }

  .footer-copyright, .footer-social {
    text-align: right;
  }

  .footer-social a {
    text-align: center;
  }
}


/* ---------- home ---------- */

.home-feature {
  position: relative;
  max-width:1200px;
  margin-left:auto;
  margin-right:auto;
}
.home-feature .panes {
  position: relative;
}
.home-feature .pane {
  width: 100%;
  position: absolute;
  left: 0;
  top: 0;
}
.home-feature .pane:first-child {
  position: relative;
}
.js .home-feature .pane {
  display: block;
  opacity: 0;
  z-index: 2;
  -webkit-transition: opacity 0s linear 0.3s;
  transition: opacity 0s linear 0.3s;
}
.js .home-feature .pane.active {
  z-index: 3;
  opacity: 1;
  -webkit-transition: opacity 0.27s ease;
  transition: opacity 0.27s ease;
}
.home-feature .pane img {
  width: 100%;
}
.home-feature .position {
  display: none;
  padding: 85px 0 5px;
  background: #ced6e0;
  text-align: center;
  position: relative;
  z-index: 5;
}
.js .home-feature .position {
  display: block;
}
.home-feature .position a {
  display: -moz-inline-box;
  display: inline-block;
  vertical-align: middle;
}
.lt-ie8 .home-feature .position a {
  display: inline;
  zoom: 1;
}
.home-feature .position .dot {
  display: block;
  width: 13px;
  height: 13px;
  -webkit-border-radius: 100%;
  border-radius: 100%;
  font-size: 0;
  color: transparent;
  text-decoration: none;
  overflow: hidden;
  text-indent: 200%;
  white-space: nowrap;
  background: #32558c;
}
.home-feature .position a:hover .dot {
  background: #3fa0de;
}
.home-feature .position a.active .dot {
  background: #e15b1f;
}
.home-feature .position a + a {
  margin-left: 13px;
}
.home-feature .description {
  display: none;
  width: 100%;
  padding: 0 20px;
  overflow: hidden;
  color: #fafafa;
  background: #222222;
  position: absolute;
  left: 0;
  bottom: 30px;
}
.home-feature .active .description {
  display: block;
}

.home-grid .decoration {
  margin-bottom: 20px;
}

.home-member .portrait {
  max-width: 38%;
  float: left;
  margin: 0 10px 10px 0;
}


@media all and (min-width: 470px) {
  .home-member .portrait {
    margin-right: 20px;
  }
}


@media all and (max-width: 719px) {
  .home-feature .description {
    height: 80px;
  }
  .home-feature .description:before {
    content: "";
    display: -moz-inline-box;
    display: inline-block;
    vertical-align: middle;
    width: 0;
    height: 100%;
    margin: 0 -0.25em;
  }
  .lt-ie8 .home-feature .description:before {
    display: inline;
    zoom: 1;
  }
  .home-feature .description p {
    display: -moz-inline-box;
    display: inline-block;
    vertical-align: middle;
    width: 98%;
    max-height: 60px;
    overflow: hidden;
  }
  .lt-ie8 .home-feature .description p {
    display: inline;
    zoom: 1;
  }
  .interior-aside-bottom {
    margin-top:20px;
  }
  div#caption {
	display: none;
  }

}

@media all and (max-width: 470px) {
  .standard-tab, .nn_tabs-tab {
    width:100%;
  } 
  .standard-tab, .nn_tabs-tab > a {
    width:100%;
  } 	
}


@media all and (min-width: 720px) {
  .home-feature .position {
    padding-top: 5px;
  }
  .home-feature .description {
    width: 100%;
    padding: 20px;
    font-size: 15px;
    background: rgba(37, 62, 102, 0.78);
  }

  .home-grid .subtitle {
    font-size: 21px;
  }
}


@media all and (min-width: 980px) {
  .home-feature .description {
    display: block;
    left: 0%;
    width: 24.3%;
    text-align: left;
  }
  .home-feature .tab + .tab .description {
    left: 25.3%;
  }
  .home-feature .tab + .tab + .tab .description {
    left: 50.5%;
  }
  .home-feature .tab + .tab + .tab + .tab .description {
    left: 75.7%;
  }
  .home-feature .active .description {
    color: #f3b435;
  }
}


/* ---------- general interior ---------- */

.interior-nav .current a {
  font-weight: 700;
  color: #f3b435;
}


.interior-main-full-width { 
  width: 100%;	/* if no left column displayed, article area width should be 100% */
}

@media all and (max-width: 719px) {
  .interior-nav {
    margin: -20px -20px 20px;
  }
  .interior-nav .subtitle {
    font-size: 18px;
  }
  .interior-nav > ul {
    display: none;
  }
  .interior-nav > ul.active {
    display: block;
  }
}


@media all and (min-width: 720px) {
  .interior-nav .subtitle:after {
    display: none;
  }

  .interior-aside-top, .interior-aside-bottom {
    width: 35%;
    padding-right: 40px;
  }

  .interior-aside-top {
    float: left;
  }

  .interior-aside-bottom {
    clear: left;
    overflow: hidden;
  }

  .interior-main {
    width: 65%;
    float: right;
  }
}


@media all and (min-width: 980px) {
  .interior-aside-top, .interior-aside-bottom {
    width: 30%;
  }

  .interior-main {
    width: 70%;
  }
}


/* ---------- misc, unique ---------- */

.aacte-tools h4, .aacte-tools p {
  margin-left: 55px;
}
.aacte-tools h4 {
  margin-bottom: 10px;
}
.aacte-tools a {
  color: #32558c;
}
.aacte-tools a:hover {
  color: #3fa0de;
}

.state-list {
  -webkit-column-count: 2;
  -moz-column-count: 2;
  column-count: 2;
  -webkit-column-gap: 20px;
  -moz-column-gap: 20px;
  column-gap: 20px;
}
.ie9 .state-list > li, .lt-ie9 .state-list > li {
  width: 50%;
  float: left;
}


@media all and (min-width: 470px) {
  .state-list {
    -webkit-column-count: 3;
    -moz-column-count: 3;
    column-count: 3;
  }
  .ie9 .state-list > li, .lt-ie9 .state-list > li {
    width: 33%;
  }
}


@media all and (min-width: 980px) {
  .state-list {
    -webkit-column-count: 4;
    -moz-column-count: 4;
    column-count: 4;
  }
  .ie9 .state-list > li, .lt-ie9 .state-list > li {
    width: 25%;
  }
}


/* ---------- fixes ---------- */

.clear {
  clear: both;
}

.group:after, .formatted:after, .page-content:after, .date-list a:after, .state-list:after {
  content: ".";
  display: block;
  height: 0;
  clear: both;
  visibility: hidden;
}
.ie6 .group, .ie6 .formatted, .ie6 .page-content, .ie6 .date-list a, .date-list .ie6 a, .ie6 .state-list {
  height: 1%;
}
.ie7 .group, .ie7 .formatted, .ie7 .page-content, .ie7 .date-list a, .date-list .ie7 a, .ie7 .state-list {
  min-height: 1px;
}

/* ------- additions ---------*/
ul.nav.menu li.invisible, ul.nav.menu li a.invisible {
  display: none;
}

/* ------ blockquote -------*/
blockquote {
  background: #f9f9f9;
  border-left: 10px solid #ccc;
  margin: 1.5em 10px;
  padding: 0.5em 10px;
  quotes: "\201C""\201D""\2018""\2019";
}
blockquote:before {
  color: #ccc;
  content: open-quote;
  font-size: 4em;
  line-height: 0.1em;
  margin-right: 0.25em;
  vertical-align: -0.4em;
}
blockquote q {
  display: inline;
}
blockquote div.author:before {
  content: "\2013";
  margin-right:5px;
}
blockquote div.author {
  margin-top: 10px;
}

/* --------- Price Table ---------- */
#plans,#plans ul,#plans ul li {
	margin: 0;
	padding: 0;
	list-style: none;
	max-width:890px;
}

#pricePlans:after {
	content: '';
	display: table;
	clear: both;
}

#pricePlans {
	zoom: 1;
}

#pricePlans {
	max-width: 69em;
	margin: 0 auto;
}

#pricePlans #plans .plan {
	background: #fff;
	float: left;
	width: 100%;
	text-align: center;
	border-radius: 5px;
	margin: 0 0 20px 0;
    background:#f8f8f8;
	-webkit-box-shadow: 0 1px 3px rgba(0,0,0,0.3);
	box-shadow: 0 1px 3px rgba(0,0,0,0.3);
}

.planContainer .title h2 {
	font-size: 2.125em;
	font-weight: 300;
	color: #3e4f6a;
	margin: 0;
	padding: .6em 0;
	line-height:100%;
}

.planContainer .title h2.bestPlanTitle {
	background: #32558c;

	background: -webkit-linear-gradient(top, #32558c, #2a4672);
	background: -moz-linear-gradient(top, #32558c, #2a4672);
	background: -o-linear-gradient(top, #32558c, #2a4672);
	background: -ms-linear-gradient(top, #32558c, #2a4672);
	background: linear-gradient(top, #32558c, #2a4672);
	color: #fff;
	border-radius: 5px 5px 0 0;
}


.planContainer .price p {
	background: #32558c;

	background: -webkit-linear-gradient(top, #32558c, #2a4672);
	background: -moz-linear-gradient(top, #32558c, #2a4672);
	background: -o-linear-gradient(top, #32558c, #2a4672);
	background: -ms-linear-gradient(top, #32558c, #2a4672);
	background: linear-gradient(top, #32558c, #2a4672);
	color: #fff;
	font-size: 1.2em;
	font-weight: 700;
	height: 2.6em;
	line-height: 2.6em;
	margin: 0 0 1em;
}

.planContainer .price p.member-price {
	font-size: 1.5em;
	margin-bottom:1px;
}

.planContainer .price p.nonmember-price {
	background:#cccccc;
}

.planContainer .price p.bestPlanPrice {
	background: #e15b1f;
}

.planContainer .price p span {
	color: #3fa0d8;
}

.planContainer .price p.bestPlanPrice span {
	color: #2b6a8e;
}

.planContainer .options {
	margin-top: 10em;
}

.planContainer .options li {
	font-weight: 700;
	color: #364762;
	line-height: 2.5;
}

.planContainer .options li span {
	font-weight: 400;
	color: #979797;
}

.planContainer .button a {
	text-transform: uppercase;
	text-decoration: none;
	color: #ffffff;
	font-weight: 700;
	letter-spacing: 2px;
	line-height: 2.8em;
	border: 2px solid #32558c;
	background: #32558c;
	display: inline-block;
	width: 80%;
	height: 2.8em;
	border-radius: 4px;
	margin: 1.5em 0 1.8em;
}

.planContainer .button a.bestPlanButton {
	color: #fff;
	background: #e15b1f;
	border: 2px solid #e15b1f;
}

.planContainer div.description {
	font-weight: 400;
	font-size:12px;
    line-height:1.5;
	color: #333333;
	padding:10px;
	border-top:1px solid #ccc;
}

#credits {
	text-align: center;
	font-size: .8em;
	font-style: italic;
	color: #777;
}

#credits a {
	color: #333;
}

#credits a:hover {
	text-decoration: none;
}

@media screen and (min-width: 481px) and (max-width: 768px) {

#pricePlans #plans .plan {
	width: 49%;
	margin: 0 2% 20px 0;
}

#pricePlans #plans > li:nth-child(2n) {
	margin-right: 0;
}

}

@media screen and (min-width: 769px) and (max-width: 1024px) {

#pricePlans #plans .plan {
	width: 49%;
	margin: 0 2% 20px 0;
}

#pricePlans #plans > li:nth-child(2n) {
	margin-right: 0;
}

}

@media screen and (min-width: 1025px) {

#pricePlans {
	margin: 2em auto;
}

#pricePlans #plans .plan {
	width: 24%;
	margin: 0 1.33% 20px 0;

	-webkit-transition: all .25s;
	   -moz-transition: all .25s;
	    -ms-transition: all .25s;
	     -o-transition: all .25s;
	        transition: all .25s;
}

#pricePlans #plans > li:last-child {
	margin-right: 0;
}

/*
#pricePlans #plans .plan:hover {
	-webkit-transform: scale(1.04);
	   -moz-transform: scale(1.04);
	    -ms-transform: scale(1.04);
	     -o-transform: scale(1.04);
	        transform: scale(1.04);
}
*/

.planContainer .button a {
	-webkit-transition: all .25s;
	   -moz-transition: all .25s;
	    -ms-transition: all .25s;
	     -o-transition: all .25s;
	        transition: all .25s;
}

.planContainer .button a:hover {
	background: #3fa0d8;
	border: 2px solid #3fa0d8;
	color: #fff;
}

.planContainer .button a.bestPlanButton:hover {
	background: #3fa0d8;
	border: 2px solid #3fa0d8;
}

}
/* --------- End of Price Table ---------- */

/* --------- Resource Library Module -------- */
a.rl-file-link {
  color: #444444;
}
.rl-file-author {
	border-top: 1px solid #ddd;
	color: #777;
	font-size: 11px;
	margin-top: 3px;
	padding-top: 3px;
}

.content-box.style-2 a.rl-file-link {
  color: #fafafa;
}
.content-box.style-2 a.rl-file-link:hover {
  color: #f3b435;
}
.content-box.style-2 .rl-file-author {
  border-top: 1px solid #575757;
  color: #ccc;
}
.subtitle.members-only {
	line-height:20px;
}
.subtitle.members-only::after {
	content: "\Amembers only";
	color:#ffffff;
	background:#ed1b24;
	padding:5px;
	font-size:12px;
	font-weight:normal;
	white-space: pre;
	display:inline-block;
	line-height:2px;
	padding-block-end:10px;
}