/*---------------------------------------------------
    LESS Elements 0.6
  ---------------------------------------------------
    A set of useful LESS mixins by Dmitry Fadeyev
    Special thanks for mixin suggestions to:
      Kris Van Herzeele,
      Benoit Adam,
      Portenart Emile-Victor,
      Ryan Faerman

    More info at: http://lesselements.com
-----------------------------------------------------*/
.no_absolute {
  top: auto;
  right: auto;
  bottom: auto;
  left: auto;
  position: static;
  margin: auto;
}
.no_abs {
  top: auto;
  right: auto;
  bottom: auto;
  left: auto;
  position: static;
  margin: auto;
}
.no-abs {
  top: auto;
  right: auto;
  bottom: auto;
  left: auto;
  position: static;
  margin: auto;
}
.required {
  color: #C00;
}
.disable-select {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.visually-hidden {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}
/* -------------------------------------------------------------- 
   
   forms.css
   * Sets up some default styling for forms
   * Gives you classes to enhance your forms
   
   Usage:
   * For text fields, use class .title or .text
   
-------------------------------------------------------------- */
/* Fieldsets */
fieldset {
  padding: 1.4em 1.4em 0 1.4em;
  margin: 0 0 1.5em 0;
  border: 1px solid #ccc;
  position: relative;
}
legend {
  font-weight: bold;
  font-size: 1.2em;
  text-align: left;
}
/* Text fields */
input,
textarea,
select {
  font-family: Arial, Helvetica, sans-serif;
}
input.disabled {
  margin: 0.5em 0.5em 0em 0;
  padding: 0.1em 0.3em;
}
input.text,
input.title {
  width: 100%;
  margin: 0em 0 0.5em 0;
  padding: 4px 0px;
  text-indent: 3px;
}
input.password {
  width: 36%;
  margin: 0em 0 0.5em 0;
  padding: 4px 2px;
}
input.date {
  width: 7em;
  padding: 3px;
}
input.time {
  width: 5em;
  padding: 3px;
}
input.text,
input.title,
input.date,
input.time,
input.minitext {
  border: 1px solid #bbb;
  background: #FFF;
}
input.text.disabled {
  background: #EEE;
}
input.text:focus,
input.title:focus,
input.date:focus,
input.minitext:focus,
input.time:focus {
  border: 1px solid #999;
  background: #D5E7B9;
}
label.Title input.text {
  font-size: 2em;
  margin-top: 0em;
  margin-bottom: 0.2em;
}
/* Textareas */
textarea {
  width: 100%;
  height: 150px;
  margin: 0;
  padding: 4px 0px;
  border: 1px solid #bbb;
  background: #FFF;
  font-size: 1.2em;
  resize: vertical;
}
textarea:focus {
  border: 1px solid #999;
  background: #D5E7B9;
}
textarea.HTML {
  height: 700px;
}
textarea.Mailing {
  height: 600px;
}
textarea.Summary {
  height: 100px;
}
textarea.Description {
  height: 80px;
}
textarea.Options {
  height: 100px;
  font-size: 1em;
}
textarea#ProjectFull {
  height: 100px;
}
textarea#ProjectPreview {
  height: 100px;
}
/* Select fields */
select {
  border: 1px solid #ccc;
  background: #FFF;
  padding: 0.1em;
  margin: 0.5em 0 0 0;
}
select option {
  padding-right: 0.6em;
}
/* Success, error & notice boxes for messages and errors. */
span.required {
  color: #CC0000;
  font-weight: bold;
}
span.info span.required {
  display: none;
}
label {
  display: block;
  clear: both;
  margin-bottom: 1.2em;
}
b.label,
legend.label,
h4.label {
  font-size: 1.2em;
  display: inline-block;
  width: 100%;
  margin: 0;
  padding: 0.3em 0 0.7em;
  height: auto;
  line-height: 1em;
  color: #333;
  position: relative;
  /*background: #BEE;	*/
}
b.label.locked,
legend.label.locked,
h4.label.locked {
  text-indent: 20px;
  background: url(/images_admin/icons/padlock.png) left 5px no-repeat;
}
fieldset,
fieldset label {
  position: relative;
}
fieldset span.info,
fieldset label span.info {
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  padding-left: 19px;
  height: 16px;
  font-weight: normal;
  background: url(/images_admin/icons/help.png) left center no-repeat;
}
fieldset.Radio span.info,
fieldset.dateselect span.info,
fieldset.YesNo span.info {
  top: -2em;
}
fieldset legend span.info {
  top: -2em;
  font-size: 0.8em;
}
.label i {
  font-weight: normal;
  font-style: normal;
  font-size: 0.8em;
}
h4.label {
  margin-bottom: 0.6em;
}
.label.icon {
  background-position: left 0.3em;
  text-indent: 19px;
}
.label.icon:hover {
  cursor: pointer;
}
fieldset fieldset {
  border: none;
  padding: 0;
  margin: 0;
  position: relative;
}
fieldset.file label.float {
  float: left;
  clear: none;
  margin-right: 1em;
  white-space: nowrap;
}
fieldset.file select {
  padding: 0px;
  width: auto;
  margin-left: 0.2em;
}
fieldset.datetime {
  text-align: center;
}
fieldset.datetime p {
  text-align: left;
}
fieldset.datetime label {
  display: block;
  float: left;
  clear: none;
  margin-right: 1em;
}
fieldset.datetime fieldset legend {
  display: none;
}
fieldset.datetime select {
  padding: 0.1em;
}
fieldset.Chekckbox label,
fieldset.Radio label,
fieldset.YesNo label,
fieldset.dateselect label {
  display: inline-block;
  margin-right: 1em;
}
/* MESSAGES */
.message {
  padding: 1em;
  background: #96C251;
  text-align: center;
  border: 1px solid #709567;
  margin-bottom: 1.6em;
  color: #FFF;
}
.message p,
.message label,
.message li,
.message h4 {
  margin-bottom: 0px;
  margin-top: 0px;
  font-size: 1.2em;
  color: #FFFFCC;
}
.message a {
  color: #FFF;
}
.message p {
  text-align: left;
}
.message p.icon {
  background-position: 0px 4px;
}
.message ul {
  margin-top: 0.5em;
  margin-bottom: 0;
}
.message.error {
  color: #FFF;
  background: #BB0000;
  border: 1px solid #999;
  padding: 1em 1em 0 1em;
  margin-bottom: 1em;
  text-align: left;
}
.message.error p,
.message.error li,
.message.error h2,
.message.error h3,
.message.error h4,
.message.error label {
  color: #FFF;
}
.message.error p strong,
.message.error li strong,
.message.error h2 strong,
.message.error h3 strong,
.message.error h4 strong,
.message.error label strong {
  color: #FFF;
}
.message.notice {
  color: #000;
  background-color: #FFCC00;
  border: 1px solid #999;
}
.message.notice p {
  color: #333;
  margin: 0;
}
form .message select {
  padding: 0px;
  background: #FFF;
}
form hr {
  border: none;
  height: 0;
  border-bottom: 1px solid #CCC;
}
form fieldset.hidden + hr,
form fieldset[style="display:none"] + hr,
form fieldset[style="display: none;"] + hr,
form label.hidden + hr {
  display: none;
}
/* special items */
fieldset.file label.float {
  float: left;
  clear: none;
  margin-right: 1em;
  white-space: nowrap;
}
fieldset.file select {
  padding: 0px;
  width: auto;
  margin-left: 0.2em;
}
fieldset fieldset legend {
  font-size: 1em;
}
fieldset.select {
  position: relative;
}
fieldset.select .narrowSearch {
  position: absolute;
  right: 0;
  top: -3px;
  font-weight: normal;
}
fieldset.select .narrowSearch input {
  widtH: 100px;
}
div.selContainer {
  background: #96C251;
  padding: 0.7em 0 0;
  float: left;
  width: 100%;
  margin-bottom: 1em;
  min-height: 3em;
}
div.selContainer img {
  float: left;
  margin-left: 0.7em;
  margin-bottom: 0.7em;
  border: 0.3em solid #FFF;
  max-width: 150px;
}
div.selContainer label {
  display: inline;
  width: auto;
  margin-left: 0.7em;
  margin-bottom: 0;
  color: #FFF;
  font-weight: bold;
  font-size: 1.1em;
}
div.selContainer.multi label {
  float: left;
  clear: none;
  height: 85px;
  width: 85px;
  margin: 0 15px 15px 0;
}
div.selContainer .item.text,
div.selContainer label.textOption {
  background: #FFF;
  color: #000;
  padding: 4px 24px 4px 6px;
  line-height: 1.6em;
  cursor: pointer;
  height: 1.6em;
  margin: 0;
  margin-left: 0.8em;
  margin-bottom: 0.8em;
  width: auto !important;
  position: relative;
  font-weight: bold;
  float: left;
  display: block;
}
/*
div.selContainer .item.text span.close,
div.selContainer label.textOption span.close { 
	background: #C00; 
	color: #FFF; 
	width: 16px;
	height: 16px;
}
*/
div.selContainer .item.thumbnail img,
div.selContainer.multi img {
  margin: 0em;
  float: none;
  max-height: 100%;
  max-width: 100%;
  display: inline;
}
div.selContainer label.selImage,
div.selContainer .item.thumbnail {
  height: 60px;
  width: 60px;
  padding: 3px;
  background: #FFF;
  display: block;
  float: left;
  position: relative;
  display: table-cell !important;
  line-height: 56px;
  text-align: center;
  cursor: pointer;
  margin-left: 10px;
  margin-bottom: 10px;
  margin-right: 0;
}
div.selContainer .item.thumbnail:hover,
div.selContainer label.selImage:hover {
  background: #D5E7B9;
}
div.selContainer .item.thumbnail b,
div.selContainer label.selImage b {
  display: none;
}
div.selContainer label.selImage.Video {
  width: auto;
  height: 60px;
  line-height: normal;
}
div.selContainer label.selImage.Video img {
  display: inline-block !important;
  margin: 0;
}
div.selContainer label.selImage.Video b {
  display: inline-block;
  color: #111;
  line-height: normal;
  height: auto;
  margin: 5px;
}
div.selContainer .item span.close,
div.selContainer label span.close {
  position: absolute;
  top: 4px;
  right: 4px;
  padding: 0px;
  width: auto;
  display: block;
  background: #CC0000;
  color: #FFF;
  font-size: 20px;
  text-transform: uppercase;
  line-height: 16px;
  height: 16px;
  width: 16px;
  text-align: center;
  font-weight: bold;
  opacity: 0.6;
  filter: alpha(opacity=60);
}
div.selContainer .item span.close:hover,
div.selContainer label span.close:hover {
  opacity: 1;
  filter: alpha(opacity=10);
  color: #333333;
}
div.selContainer .item.thumbnail img,
div.selContainer label.selImage img {
  display: inline;
  float: none !important;
  border: none;
  margin: 0px;
  float: none;
  line-height: 76px;
  vertical-align: middle;
}
div.selContainer input {
  display: none;
}
div.selHeader {
  width: 100%;
  display: block;
  float: left;
  text-indent: 0em;
  padding: 0;
  font-weight: bold;
  margin-top: 0em;
  margin-bottom: 0.4em;
  position: relative;
}
div.itemContainerScroll {
  background: #EEE;
  float: left;
  padding: 0px;
  height: 150px;
  width: 100%;
  overflow: scroll;
  overflow-x: hidden;
  border: 1px solid #CCC;
  margin-bottom: 0.5em;
}
div.itemContainer {
  padding: 0.6em;
  display: block;
  margin-right: -0.8em;
  position: relative;
}
div.itemContainer span {
  display: inline-block;
  height: 1.3em;
  padding: 3px 0;
  background: #FFF;
  text-align: left;
  width: 98%;
  clear: both;
  margin-right: 0em;
  margin-bottom: 0.4em;
  overflow: hidden;
  text-indent: 4px;
}
#FeatureLinks_TO_Pages div.itemContainer span {
  padding: 3px;
  width: auto;
  text-indent: 0;
}
div.itemContainer span.thumbnail {
  display: table-cell;
  position: relative;
  width: 60px;
  height: 60px;
  background: #FFF;
  text-align: center;
  line-height: 56px;
  float: left;
  margin-right: 0.4em;
  margin-bottom: 0.4em;
  clear: none;
  text-indent: 0px;
  overflow: hidden;
}
div.itemContainer span.thumbnail b {
  display: none;
}
div.itemContainer span.thumbnail img {
  margin: 0;
  max-width: 60px;
  max-height: 60px;
  border: none;
  vertical-align: middle;
}
div.itemContainer span.thumbnail.Video {
  width: auto;
  height: 60px;
  white-space: nowrap;
}
div.itemContainer span.thumbnail.Video b.hidden {
  display: inline-block !important;
  float: left;
  margin: 5px;
  white-space: normal;
  line-height: normal;
}
div.itemContainer span.thumbnail.Video img {
  display: inline-block !important;
  float: left;
  margin: 0;
}
div.itemContainer span:hover {
  background: #96C251;
  cursor: pointer;
}
fieldset.selectWithOptions div.options {
  background: #FFF;
  max-height: 35em;
  overflow: scroll;
  overflow-x: hidden;
  border: 1px solid #CCC;
}
fieldset.selectWithOptions div.selContainer {
  padding: 0 !important;
  margin-bottom: 1em;
}
fieldset.selectWithOptions div.options div,
fieldset.selectWithOptions div.selContainer label {
  margin: 0;
  border-bottom: 1px solid #CCC;
  float: left;
  width: 96%;
  padding: 0.6em 2%;
  position: relative;
}
fieldset.selectWithOptions div.selContainer label {
  border-bottom-color: #FFF;
}
fieldset.selectWithOptions div.options div:hover {
  background: #D5E7B9;
}
fieldset.selectWithOptions div.selContainer label,
fieldset.selectWithOptions div.options div {
  background: #FFF;
  padding: 0.5em 20% 0.5em 10%;
  width: 70%;
}
fieldset.selectWithOptions div.selContainer label {
  background: none;
}
fieldset.selectWithOptions div.selContainer b em,
fieldset.selectWithOptions div.options div b em {
  float: left;
  margin-left: -14.3%;
  padding-left: 1em;
}
fieldset.selectWithOptions div.selContainer span.close,
fieldset.selectWithOptions div.options div button {
  position: absolute;
  top: 0.8em;
  right: 0.8em;
}
fieldset.selectWithOptions div.selContainer span.close {
  background-image: url(/images_admin/icons/delete.png);
  background-position: center center;
  background-repeat: no-repeat;
  text-indent: -90000em;
  width: 20px;
  height: 20px;
  cursor: pointer;
}
fieldset.selectWithOptions div.selContainer label,
fieldset.selectWithOptions div.options label {
  margin: 0;
}
fieldset.selectWithOptions div.selContainer span.DeliveredLabel,
fieldset.selectWithOptions div.options label.DeliveredLabel {
  display: block;
  position: absolute;
  top: 1em;
  right: 6.2em;
  font-size: 1em;
}
fieldset.selectWithOptions div.selContainer span.DeliveredLabel {
  white-space: nowrap;
  position: absolute;
  right: 3.2em;
}
fieldset.selectWithOptions div.selContainer span.DeliveredLabel input {
  display: inline;
}
fieldset.selectWithOptions div.options label select {
  padding: 0;
  margin: 0 0 0 1em;
}
fieldset.select select {
  width: 100%;
}
fieldset.select.orAdd select,
fieldset.select.orAdd input.text {
  margin: 0 ;
  clear: none;
  width: auto;
}
fieldset.select.orAdd label {
  floaT: left;
  clear: none;
  display: block;
  margin-right: 0.5em;
}
ul.positionList {
  display: block;
  background: #DDD;
  list-style: none;
  padding: 1px 1px 0.1px 1px;
  margin: 0px;
  margin-top: 0em;
  margin-bottom: 1.3em;
}
ul.positionList li {
  padding: 0.2em 0.4em;
  background: #FFF;
  margin-bottom: 1px;
}
ul.positionList li:hover {
  background: #D5E7B9;
}
ul.positionList li.divider {
  background: #666;
  padding: 9px 0 0;
  height: 1px;
  overflow: hidden;
  display: none;
  /* disable dividers */
}
ul.positionList li.current {
  background: #96C251;
  color: #FFF;
  cursor: default;
}
ul#menuDividerContainer {
  display: block;
  background: #DDD;
  list-style: none;
  padding: 1px 1px 0.1px 1px;
  margin: 0px;
  margin-top: 0em;
  margin-bottom: 1.3em;
  display: none;
  /* disable dividers */
}
ul#menuDividerContainer li {
  color: #FFF;
  background: #666;
  padding: 0.2em 0.4em;
  text-align: center;
}
ul#menuDividerContainer.delete li {
  display: none;
}
ul#menuDividerContainer.delete {
  height: 40px;
  background: #FF6 url(/images_admin/icons/delete.png) center center no-repeat;
  border: 1px solid #C00;
}
label.FileLocation div.message {
  margin-bottom: 1.8em;
}
div.filePreview {
  border: 1px solid #CCC;
  padding: 1em;
  margin-bottom: 1em;
}
div.filePreview h4 {
  margin-bottom: 0.5em;
}
div.filePreview div.scroll {
  max-height: 20em;
  overflow: auto;
  overflow-x: hidden;
  margin: 0;
  border-top: 1px solid #CCC;
}
div.filePreview dl {
  padding: 0em;
  margin: 0em 0 1em;
  display: block;
  /*background: #363B41;*/
  border: none;
  /*1px solid #CCC;*/
  text-align: center;
}
div.filePreview dl dd {
  padding: 0;
  margin: 0;
  display: block;
  position: relative;
}
div.filePreview dl img {
  max-width: 90%;
  max-height: 18em;
  border: 5px solid #FFF;
}
div.filePreview dl a.VideoContainer {
  width: 100%;
}
div.filePreview dl dt {
  color: #333;
  font-size: 1em;
  margin-top: -0.2em;
  margin-bottom: 0em;
  padding: 0;
  font-weight: normal;
}
div.filePreview dl.thumbnail dt {
  text-transform: uppercase;
  padding: 0.5em 0;
  font-weight: bold;
}
div.filePreview dl.thumbnail dt a {
  text-transform: none;
}
div.filePreview dl.thumbnail {
  border-bottom: 1px solid #CCC;
  padding-bottom: 1em;
}
div.filePreview dl dd div {
  margin-top: 0.5em;
}
div.filePreview dl dd span.icon {
  margin: 0;
  left: 50%;
  margin-left: 27px;
  margin-top: 62px;
  display: block;
  width: 34px;
  height: 34px;
  border: 1px solid #CEDCE3;
  padding: 0;
  text-indent: -9000em;
  background-color: #FFF;
  background-position: center center !important;
  position: absolute;
}
div.filePreview dl .icon.pdf {
  background-image: url(/images_admin/icons/med/pdf.gif);
}
div.filePreview dl .icon.xls {
  background-image: url(/images_admin/icons/med/excel.gif);
}
div.filePreview dl .icon.doc,
div.filePreview dl .icon.txt,
div.filePreview dl .icon.rtf {
  background-image: url(/images_admin/icons/med/word.gif);
}
div.filePreview dl .icon.ppt {
  background-image: url(/images_admin/icons/med/powerpoint.gif);
}
div.filePreview dl .icon.zip {
  background-image: url(/images_admin/icons/med/zip.png);
  width: 12px;
  height: 89px;
  margin-left: 49%;
  margin-top: 6px;
  border: none;
}
fieldset.CheckBoxList legend i {
  position: absolute;
  right: 1.5em;
  font-style: normal;
}
fieldset.CheckBoxList div {
  overflow: scroll;
  overflow-x: hidden;
  background: #FFF;
  border: 1px solid #CCC;
  margin-bottom: 1em;
  max-height: 20em;
}
fieldset.CheckBoxList.Contacts_TO_Mailings div {
  height: 40em;
}
fieldset.CheckBoxList div label {
  padding: 0.2em 2em 0.2em 0.3em;
  margin: 0;
  border-bottom: 1px solid #CCC;
  position: relative;
}
fieldset.CheckBoxList div label b {
  color: #999;
  margin-right: 0.2em;
  font-size: 1.1em;
  font-weight: normal;
}
fieldset.CheckBoxList div label.diabled {
  color: #BBB;
}
fieldset.CheckBoxList div label:hover {
  background: #D5E7B9;
  cursor: pointer;
}
fieldset.CheckBoxList div label input {
  position: absolute;
  right: 0.2em;
  top: 0.2em;
  display: block;
}
fieldset.Address {
  padding-bottom: 1em;
}
fieldset.Address label {
  padding-left: 10em;
  margin-bottom: 0;
}
fieldset.Address label b {
  width: 8.4em;
  margin-left: -8.4em;
  display: block;
  float: left;
}
fieldset.Address label select,
fieldset.Address label input {
  max-width: 38em;
}
fieldset.Address label select {
  margin-bottom: 1em;
}
fieldset.Address label.CityOrTown input,
fieldset.Address label.County input {
  max-width: 20em;
}
fieldset.Address label.Postcode input {
  max-width: 11em;
}
fieldset.Visit fieldset.select {
  float: left !important;
  width: 35% !important;
  clear: left !important;
  margin: 15px 5% 0 0 !important;
  position: relative;
}
fieldset.New.Visit fieldset.select {
  width: 28% !important;
  clear: none !important;
}
fieldset.Visit label.Week1_Group,
fieldset.Visit label.Week2_Group,
fieldset.Visit label.Week3_Group {
  widtH: 100%;
  padding-left: 0;
  clear: none;
  float: left;
  margin-top: 0px;
}
fieldset.Visit label.Week1_Group select,
fieldset.Visit label.Week2_Group select,
fieldset.Visit label.Week3_Group select {
  margin-top: 1px;
}
fieldset.Old.Visit label.Week1_Leader,
fieldset.Old.Visit label.Week2_Leader,
fieldset.Old.Visit label.Week3_Leader {
  widtH: 60%;
  padding-left: 0;
  margin-right: -10em;
  clear: right;
  float: left;
  margin-top: 15px;
}
fieldset.Visit label.Week1_Group b,
fieldset.Visit label.Week2_Group b,
fieldset.Visit label.Week3_Group b,
fieldset.Old.Visit label.Week1_Leader b,
fieldset.Old.Visit label.Week2_Leader b,
fieldset.Old.Visit label.Week3_Leader b {
  position: absolute;
  left: 0;
  top: -22px;
  margin: 0;
  padding: 0;
  float: none;
  font-weight: normal;
}
fieldset.Visit label b {
  font-weight: normal;
}
#Duplicates {
  font-size: 1em;
  line-height: 1.8em;
}
#Duplicates div.col-percent.span-100 {
  margin-left: -1%;
}
#Duplicates div.col-percent.span-33 {
  background: #333;
  color: #FFF;
  border: 1px solid #CCC;
  margin-bottom: 1em;
  padding: 1%;
  width: 30.3333%;
  margin-right: -2px;
  margin-left: 1%;
}
#Duplicates div.col-percent.span-33 table {
  border: none;
  margin-top: -4px;
  width: 100%;
}
#Duplicates div.col-percent.span-33 th,
#Duplicates div.col-percent.span-33 td {
  background: none;
  border: none;
  padding: 0 1em 0.2em 0;
  color: #FFF;
  border-top: 1px solid #666;
}
#Duplicates div.col-percent.span-33 td a {
  background: #96C251;
  color: #333;
  text-decoration: none;
  float: right;
  display: block;
  padding: 0.1em 0.2em;
  font-weight: bold;
  margin: 0.3em -0.5em 0 0;
  font-size: 0.9em;
  line-height: normal;
}
#Duplicates div.col-percent.span-33 td a:hover {
  background: #FFF;
}
#Duplicates div.col-percent.span-25 tr.noborder td {
  border: none;
  padding-bottom: 0;
}
#Duplicates div.col-percent.span-25.last {
  margin-right: -10em;
}
div.pagination form,
div.pagination form fieldset {
  margin: 0;
  padding: 0;
  display: block;
  text-align: center;
  line-height: 3em;
}
div.pagination form fieldset span,
div.pagination form fieldset a {
  margin: 0;
  padding: 0;
  margin-right: 0.4em;
  border-right: 1px solid #CCC;
  padding-right: 0.6em;
}
div.pagination form fieldset label,
div.pagination form fieldset input {
  display: inline;
  padding: 0;
}
div.pagination form fieldset input.text,
div.pagination form fieldset input.imageSubmit {
  width: auto;
  line-height: 1em;
  display: inline;
  margin-bottom: -3px;
}
table.mceLayout {
  width: 100% !important;
}
fieldset.datetime.EventStarts,
fieldset.datetime.EventEnds {
  width: 300px !important;
}
fieldset.datetime.EventEnds {
  position: absolute;
  left: 300px;
  margin-top: -80px;
}
fieldset.datetime.EventEnds + hr {
  display: none;
}
/*
@font-face {font-family: 'IcoMoon';
	src: url('/css/fonts/icomoon/icomoon.eot');
	src: url('/css/fonts/icomoon/icomoon.eot?#iefix') format('embedded-opentype'),
		url('/css/fonts/icomoon/icomoon.woff') format('woff'),
		url('/css/fonts/icomoon/icomoon.svg#IcoMoon') format('svg'),
		url('/css/fonts/icomoon/icomoon.ttf') format('truetype');
	font-weight: normal;
	font-style: normal;}
*/
[class*="icon-"]:before {
  font-family: 'IcoMoon';
  content: attr(data-icon);
  speak: none;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-text-rendering: optimizeLegibility;
  -moz-text-rendering: optimizeLegibility;
  -ms-text-rendering: optimizeLegibility;
  -o-text-rendering: optimizeLegibility;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-font-smoothing: antialiased;
  -ms-font-smoothing: antialiased;
  -o-font-smoothing: antialiased;
  font-smoothing: antialiased;
  visibility: hidden;
  content: '';
}
.wf-icomoon-n4-inactive [class*="icon-"]:before,
.wf-icomoon-n4-active [class*="icon-"]:before {
  visibility: visible;
}
.no-js [class*="icon-"]:before,
.wf-icomoon-n4-loading [class*="icon-"]:before {
  display: none;
}
[class*="iconafter-"]:after {
  font-family: 'IcoMoon';
  content: attr(data-icon);
  speak: none;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-text-rendering: optimizeLegibility;
  -moz-text-rendering: optimizeLegibility;
  -ms-text-rendering: optimizeLegibility;
  -o-text-rendering: optimizeLegibility;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-font-smoothing: antialiased;
  -ms-font-smoothing: antialiased;
  -o-font-smoothing: antialiased;
  font-smoothing: antialiased;
  visibility: hidden;
  content: '';
}
.wf-icomoon-n4-inactive [class*="iconafter-"]:after,
.wf-icomoon-n4-active [class*="iconafter-"]:after {
  visibility: visible;
}
.no-js [class*="iconafter-"]:after,
.wf-icomoon-n4-loading [class*="iconafter-"]:after {
  display: none;
}
.icon-phone:before {
  content: "\e093";
}
.icon-mail:before {
  content: "\e0a1";
}
.icon-play:before {
  content: "\e26b";
}
.icon-download:before {
  content: "\e2a3";
}
.icon-feed:before {
  content: "\e332";
}
.icon-train:before {
  content: "\e600";
}
.icon-videocam:before {
  content: "\e609";
}
.icon-volume-up:before {
  content: "\e60a";
}
.icon-search:before {
  content: "\e601";
}
.icon-parking:before {
  content: "\e602";
}
.icon-car:before {
  content: "\e603";
}
.icon-calendar:before {
  content: "\e604";
}
.icon-bus:before {
  content: "\e605";
}
.icon-bicycle:before {
  content: "\e606";
}
.icon-document:before {
  content: "\e607";
}
.icon-tag:before {
  content: "\e608";
}
.GoogleMaps > img {
  z-index: 1;
}
.GoogleMaps .map {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2;
}
a.PluginContainer,
div.PluginContainer {
  background: #000;
}
a.PluginContainer {
  position: relative;
  overflow: hidden;
  display: block;
  text-align: center;
  line-height: 300px;
  height: 250px;
  padding-top: 150px;
}
a.PluginContainer span.bgContainer {
  display: block;
  position: relative;
  vertical-align: middle;
  height: 1000px;
  margin-top: -500px;
  width: 100%;
}
a.PluginContainer span.bgContainer span {
  display: table-cell;
  height: 1000px;
  vertical-align: middle;
  width: 700px;
}
a.PluginContainer span.bgContainer span * {
  vertical-align: middle;
}
a.PluginContainer img {
  min-width: 100%;
  border: none;
  /*opacity: 0.6;
	filter: alpha(opacity = 60);*/
  display: inline;
}
a.PluginContainer span.playButton {
  position: absolute;
  left: 50%;
  top: 50%;
  margin-top: -2.2em;
  height: 4.4em;
  margin-left: -4em;
  width: 8em;
  border-radius: 0.5em;
  overflow: hidden;
  background-color: #F90;
  background-image: url(/images_site/icons/play_button.png) !important;
  background-position: center center;
  background-repeat: no-repeat;
  opacity: 0.6;
  display: none;
  text-align: left;
  text-indent: -999999em !important;
  /*filter: alpha(opacity = 60);*/
}
audio,
div.PluginContainer.Audio {
  width: 100%;
  clear: both;
  background: none;
  margin-bottom: 10px;
}
div.PluginContainer.Audio {
  height: 40px;
  margin-bottom: 4px;
}
p + audio,
p + div.PluginContainer.Audio {
  margin-top: -10px;
}
div.PluginContainer.Video {
  height: 36em;
}
a.PluginContainer.Video span.playButton {
  display: block;
}
a.PluginContainer:hover span.playButton {
  opacity: 1;
  /*filter: alpha(opacity = 100);*/
}
img.loading {
  background: #000 url(/images_site/icons/image_loading.gif) center center no-repeat;
}
video,
iframe,
object,
embed {
  border: none;
}
video,
iframe,
object,
embed,
video[width],
iframe[width],
object[width],
embed[width],
video[height],
iframe[height],
object[height],
embed[height],
video[style],
iframe[style],
object[style],
embed[style] {
  width: 100% !important;
  max-width: 100% !important;
  max-height: none !important;
  height: 300px;
  margin: 0 0 2em;
}
.video_wrapper {
  position: absolute;
  top: -999em;
  right: auto;
  bottom: auto;
  left: -999em;
  overflow: hidden;
}
#mediaPlayer {
  position: absolute;
  display: none;
  width: 100%;
  height: 100%;
  /*height: 55%;*/
  left: 0;
  right: 0;
  text-align: center;
  top: 0px;
  z-index: 110;
  position: fixed;
  background: none;
  /*background: url(/images_site/translucent_black.png);*/
}
#mediaPlayer h3 {
  border-bottom: 0;
  padding-bottom: 0.5em;
}
#mediaPlayer .bg {
  display: none;
}
#mediaPlayer .centreContent .bg {
  display: block;
  background-color: #000;
  opacity: 0.8;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  z-index: 100;
  position: fixed;
  text-indent: -999em;
  overflow: hidden;
}
#mediaPlayer .centreContent .bg.icon-loading b {
  display: none;
}
#mediaPlayer p:last-child {
  margin-bottom: 0;
}
#mediaPlayer.loading .centreContent .bg {
  background-image: url(/images_site/icons/image_loading.gif);
  background-position: center center;
  background-repeat: no-repeat;
}
#mediaPlayer.show {
  display: table;
}
#mediaPlayer .centreContent {
  position: relative;
  width: 620px;
  height: auto;
  /*margin-left: -310px;*/
  /*margin-top: -199px;*/
  background: #FFF;
  padding: 0px;
  z-index: 110;
  display: table-cell;
  vertical-align: middle;
  text-align: center;
  background: none;
}
#mediaPlayer .player {
  width: 620px;
  z-index: 120;
  display: inline-block;
  position: relative;
  overflow: visible;
  background: white;
  padding: 30px;
  text-align: left;
}
#mediaPlayer a.audio {
  font-size: 0.8em;
}
#mediaPlayer a.close {
  display: block;
  position: absolute;
  background: #C00;
  color: #FFF;
  font-size: 30px;
  padding: 27px 0px 0px;
  height: 1px;
  width: 29px;
  overflow: hidden;
  line-height: 29px;
  text-align: center;
  border: none;
  right: -10px;
  top: -10px;
  outline: none;
  font-family: Arial, Helvetica, sans-serif;
  z-index: 121;
}
#mediaPlayer a.close b {
  position: absolute;
  top: 0px;
  left: 0px;
  border: none;
  width: 29px;
}
#mediaPlayer a.close:hover {
  text-decoration: none;
  background: #222;
  color: #FFF;
}
#mediaPlayer p {
  padding: 0;
  margin: 0;
}
#mediaPlayer audio {
  margin-top: 1em;
  margin-bottom: 1em;
  width: 100%;
}
#mediaPlayer .video_wrapper {
  width: 100%;
  padding-top: 56.25%;
}
@media only screen and (max-width: 47em) {
  #mediaPlayer .centreContent {
    display: block;
    width: 100%;
  }
  #mediaPlayer .player {
    padding-top: 20px;
    width: 94%;
    padding-left: 3%;
    padding-right: 3%;
    top: 0;
    left: 0;
    right: 0;
    position: fixed;
  }
  #mediaPlayer a.close {
    margin-right: 25px;
    margin-top: 25px;
  }
  #mediaPlayer h3 {
    margin-right: 36px;
  }
}
/* CSS Document */
/* #Base Grid
================================================== */
body {
  padding: 0;
  margin: 0;
  font-size: 62.5%;
  width: 100%;
  overflow: hidden;
  overflow-y: auto;
  background: none;
}
body .page-wrap {
  width: 100%;
  background: none;
  padding: 0;
  margin: 0;
  overflow: hidden;
  background: #FFFFFF;
}
body a,
body input,
body button {
  -ms-touch-action: none !important;
}
.container {
  width: 80em;
  max-width: 94%;
  margin: 0 auto;
  padding: 0;
}
.container .container {
  max-width: none;
  width: 100%;
}
.column {
  display: block;
  margin-left: 0;
  margin-right: 0;
}
.page-wrapper {
  width: 100%;
  background: none;
  padding: 0;
  margin: 0;
  overflow: hidden;
  position: relative;
}
.visually-hidden {
  position: absolute;
  top: -9999em;
  left: -9999em;
}
#dev_grid_overlay {
  position: absolute;
  top: 0;
  right: 0;
  bottom: auto;
  left: 0;
  z-index: 998;
  pointer-events: none;
}
#dev_grid_overlay .column {
  height: 130em;
  background: rgba(255, 0, 255, 0.1);
}
#toggle_dev_grid {
  background: rgba(0, 0, 0, 0.7);
  border: none;
  padding: 0.5em 1em;
  color: white;
  position: fixed;
  bottom: 0.5em;
  right: 0.5em;
  font-weight: bold;
  z-index: 999;
  font-size: 2em;
  text-transform: uppercase;
}
#toggle_dev_grid:hover {
  background: black;
}
.no-js #dev_grid_overlay,
.no-js #toggle_dev_grid {
  display: none;
}
a {
  color: #0085BA;
  text-decoration: none;
  font-weight: bold;
}
a:hover {
  text-decoration: underline;
}
h1,
h2,
h3,
h4,
h5 {
  font-family: "adelle", Georgia, "Times New Roman", Times, serif;
  visibility: hidden;
  font-size: 2em;
  color: #0085BA;
  font-weight: bold;
  padding: 0;
  margin: 0 0 0.5em;
  line-height: 1.1;
}
.no-js h1,
.no-js h2,
.no-js h3,
.no-js h4,
.no-js h5,
.wf-adelle-n3-active h1,
.wf-adelle-n3-active h2,
.wf-adelle-n3-active h3,
.wf-adelle-n3-active h4,
.wf-adelle-n3-active h5,
.wf-adelle-n3-inactive h1,
.wf-adelle-n3-inactive h2,
.wf-adelle-n3-inactive h3,
.wf-adelle-n3-inactive h4,
.wf-adelle-n3-inactive h5 {
  visibility: visible;
}
h1 a,
h2 a,
h3 a,
h4 a,
h5 a {
  color: #0085BA;
}
h1 {
  font-size: 4.8em;
  text-transform: none;
  font-weight: normal;
}
blockquote h1 {
  font-size: 0.47222222em;
}
li h1 {
  font-size: 0.44444444em;
}
h2 {
  font-size: 2.4em;
  color: #434343;
  position: relative;
}
blockquote h2 {
  font-size: 0.70833333em;
}
li h2 {
  font-size: 0.66666667em;
}
blockquote h3 {
  font-size: 0.85em;
}
li h3 {
  font-size: 0.8em;
}
h4 {
  font-size: 1.6em;
  font-family: 'Gotham SSm A', 'Gotham SSm B', Arial, Helvetica, sans-serif;
  font-weight: bold;
  font-style: normal;
  visibility: hidden;
}
.no-js h4,
.wf-gothamssma-n4-active h4,
.wf-gothamssmb-n4-active h4,
.wf-gothamssmb-n4-inactive h4,
.wf-gothamssma-n4-inactive h4 {
  visibility: visible;
}
blockquote h4 {
  font-size: 1.0625em;
}
li h4 {
  font-size: 1em;
}
h5 {
  font-size: 1.6em;
  color: #434343;
  text-transform: uppercase;
}
blockquote h5 {
  font-size: 1.0625em;
}
li h5 {
  font-size: 1em;
}
cite {
  font-style: normal;
}
blockquote {
  color: #0085BA;
  padding: 0;
  margin: 0 3em 1em;
  font-size: 1.7em;
  font-style: italic;
}
blockquote p {
  font-size: 1em;
  color: #0085BA;
  font-style: italic;
}
blockquote p:last-of-type {
  padding-bottom: 0.4em;
}
blockquote cite {
  font-style: normal;
  font-weight: bold;
  font-size: 1em;
}
hr {
  height: 0;
  width: 100%;
  display: block;
  padding: 0;
  border: none;
  margin: 0 0 2em 0;
  border-top: 1px solid #999999;
}
p,
li,
address {
  font-family: 'Gotham SSm A', 'Gotham SSm B', Arial, Helvetica, sans-serif;
  font-weight: 400;
  visibility: hidden;
  font-size: 1.6em;
  line-height: 1.375;
  color: #434343;
  padding: 0 0 1em;
  margin: 0;
  font-style: normal;
}
.no-js p,
.no-js li,
.no-js address,
.wf-gothamssma-n4-active p,
.wf-gothamssma-n4-active li,
.wf-gothamssma-n4-active address,
.wf-gothamssmb-n4-active p,
.wf-gothamssmb-n4-active li,
.wf-gothamssmb-n4-active address,
.wf-gothamssmb-n4-inactive p,
.wf-gothamssmb-n4-inactive li,
.wf-gothamssmb-n4-inactive address,
.wf-gothamssma-n4-inactive p,
.wf-gothamssma-n4-inactive li,
.wf-gothamssma-n4-inactive address {
  visibility: visible;
}
p.small,
li.small,
address.small {
  font-size: 1.2em;
}
p.highlight,
li.highlight,
address.highlight {
  font-size: 2em;
  color: #0085BA;
  line-height: 1.3;
  padding: 0 0 1em;
  font-weight: normal;
  font-family: "adelle", Georgia, "Times New Roman", Times, serif;
  visibility: hidden;
  text-align: center;
}
.no-js p.highlight,
.no-js li.highlight,
.no-js address.highlight,
.wf-adelle-n3-active p.highlight,
.wf-adelle-n3-active li.highlight,
.wf-adelle-n3-active address.highlight,
.wf-adelle-n3-inactive p.highlight,
.wf-adelle-n3-inactive li.highlight,
.wf-adelle-n3-inactive address.highlight {
  visibility: visible;
}
p a[class^="icon"]:before,
li a[class^="icon"]:before,
address a[class^="icon"]:before {
  padding-right: 0.3em;
}
.pge_contact p a[class^="icon"]:before,
.pge_contact li a[class^="icon"]:before,
.pge_contact address a[class^="icon"]:before {
  font-size: 2.4em;
  vertical-align: middle;
}
p li,
li li,
address li,
p p,
li p,
address p {
  font-size: 1em;
}
blockquote {
  color: #0085BA;
  padding: 0;
  margin: 0 0 1em;
  font-size: 1.7em;
}
blockquote p {
  font-size: 1em;
  color: #0085BA;
}
blockquote p:last-of-type {
  padding-bottom: 0.4em;
}
blockquote cite {
  font-style: normal;
  font-weight: bold;
  font-size: 1em;
}
.highlight {
  zoom: 1;
}
.small {
  zoom: 1;
}
ul,
ol {
  padding: 0;
  margin: 0 3em 1.7em;
}
ul ul,
ol ul,
ul ol,
ol ol {
  margin: 0 1em 0.5em;
}
ul li,
ol li {
  padding: 0 0 0.5em;
  margin: 0;
}
ul[class] > li:before,
ol[class] > li:before {
  display: none;
}
table {
  display: block;
  border: none;
  margin-left: 0;
  margin-bottom: 2em;
  font-size: 1.2em;
  border-collapse: collapse;
  font-family: "adelle", Georgia, "Times New Roman", Times, serif;
  visibility: hidden;
}
.no-js table,
.wf-adelle-n3-active table,
.wf-adelle-n3-inactive table {
  visibility: visible;
}
table th {
  background: none;
  border-top: 1px solid #232323;
  border-bottom: 1px solid #232323;
  color: #232323;
  font-size: 1em;
  font-weight: bold;
  padding: 0.5em;
  white-space: nowrap;
  text-align: left;
}
table td {
  font-size: 1em;
  font-weight: normal;
  padding: 0.5em;
  color: #333;
  border-bottom: 1px solid #434343;
  vertical-align: top;
}
.float_right,
.float_left {
  border: none;
}
article img {
  text-align: center;
}
article img,
article img[width],
article img[height],
article img[style] {
  height: auto;
  float: none;
  max-width: 100%;
  margin: 0 auto 2em;
  display: block;
}
article p img,
article p img[width],
article p img[height],
article p img[style] {
  margin-bottom: 0;
}
p.float_right img,
img.float_right,
article p.float_right img,
article img.float_right,
p.float_right img[width],
img.float_right[width],
article p.float_right img[width],
article img.float_right[width],
p.float_right img[height],
img.float_right[height],
article p.float_right img[height],
article img.float_right[height],
p.float_right img[style],
img.float_right[style],
article p.float_right img[style],
article img.float_right[style] {
  float: right;
  margin: 0 0 1em 1em;
  max-width: 50%;
}
p.float_left img,
img.float_left,
article p.float_left img,
article img.float_left,
p.float_left img[width],
img.float_left[width],
article p.float_left img[width],
article img.float_left[width],
p.float_left img[height],
img.float_left[height],
article p.float_left img[height],
article img.float_left[height],
p.float_left img[style],
img.float_left[style],
article p.float_left img[style],
article img.float_left[style] {
  float: left;
  margin: 0 1em 1em 0;
  max-width: 50%;
}
@media only screen and (max-width: 47em) {
  h1 {
    font-size: 3em;
  }
}
#site-header {
  background: none;
  margin: 0;
}
#site-header .container {
  padding-top: 0;
  padding-bottom: 0;
  text-align: left;
  position: relative;
  margin-bottom: 3em;
}
#site-header br {
  display: none;
}
#site-header #logo {
  font-size: 1em;
  width: 10em;
  padding: 0;
  margin: 0;
  text-decoration: none;
  position: relative;
  display: inline-block;
  vertical-align: middle;
  z-index: 110;
  text-align: left;
  background: #FFFFFF;
}
.ie-lte7 #site-header #logo {
  display: inline;
}
#site-header #logo img {
  width: 100%;
  height: auto;
  margin: 0;
  border: none;
  float: left;
  margin-right: 0.8em;
}
#site-header #logo span {
  border: 2px solid red;
  position: absolute;
  top: -999em;
  right: auto;
  bottom: auto;
  left: -999em;
}
#site-header #tag_line {
  position: absolute;
  top: 2em;
  right: 0;
  bottom: 0;
  left: auto;
  display: block;
  text-indent: -999em;
  overflow: hidden;
  width: 3em;
  height: 2.6em;
  background: #0085BA;
}
#site-header .summary {
  color: #999999;
  font-size: 1.2em;
  position: absolute;
  top: auto;
  right: auto;
  bottom: 1em;
  left: 10em;
}
.tpl_sitehome #site-header .summary {
  position: absolute;
  top: -999em;
  right: auto;
  bottom: auto;
  left: -999em;
}
#site-header .summary p {
  font-size: 1em;
  color: #999999;
  padding: 0;
  margin: 0;
}
#site-header .summary a {
  color: #EF8F23;
}
#site-header .summary a:after {
  content: '\00BB';
  padding-left: 0.2em;
}
#beta-notice {
  background-color: #434343;
  font-size: 1.4em;
  color: #FFFFFF;
  font-family: 'Gotham SSm A', 'Gotham SSm B', Arial, Helvetica, sans-serif;
  font-weight: bold;
  font-style: normal;
  visibility: hidden;
  padding: 1em;
  text-align: center;
  display: none;
}
.no-js #beta-notice,
.wf-gothamssma-n4-active #beta-notice,
.wf-gothamssmb-n4-active #beta-notice,
.wf-gothamssmb-n4-inactive #beta-notice,
.wf-gothamssma-n4-inactive #beta-notice {
  visibility: visible;
}
#beta-notice a {
  display: block;
}
.beta #beta-notice {
  display: block;
}
.page_title {
  text-align: center;
  border-top: 1px solid #cccccc;
  border-bottom: 1px solid #cccccc;
  margin-bottom: 4em;
  padding: 2em;
}
.page_title h1,
.page_title h2,
.page_title p {
  padding: 0;
  margin: 0;
}
.page_title p {
  color: #0085BA;
  font-family: "adelle", Georgia, "Times New Roman", Times, serif;
  visibility: hidden;
  font-size: 2em;
  line-height: 1.3;
  padding: 0.5em 0 0;
}
.no-js .page_title p,
.wf-adelle-n3-active .page_title p,
.wf-adelle-n3-inactive .page_title p {
  visibility: visible;
}
#site-footer {
  text-align: center;
}
#site-footer .container {
  margin-top: 0;
  padding: 2em 0 3em;
}
#site-footer p,
#site-footer li,
#site-footer address {
  color: #999999;
  font-size: 1.2em;
  line-height: 1.66666667;
  padding: 0 0 0.5em;
}
#site-footer p b,
#site-footer li b,
#site-footer address b {
  display: inline;
}
#site-footer p a,
#site-footer li a,
#site-footer address a {
  color: #0085BA;
  font-weight: bold;
  /*&:after{
				content:'\00BB';
				color: @blue;
				padding-left: 0.2em;
			}*/
}
#site-footer p.small,
#site-footer li.small,
#site-footer address.small {
  font-size: 1.1em;
  line-height: 1.81818182;
}
#site-footer address {
  font-size: 1.3em;
  line-height: 1.53846154;
  color: #232323;
}
#site-footer address a {
  color: #0085BA;
}
#site-footer address a:after {
  content: '\00BB';
  color: #0085BA;
  padding-left: 0.2em;
}
#main-navigation {
  background: #0085BA;
  margin: 4em 0 0;
  position: static;
  padding: 0.5em 0;
  z-index: 40;
}
#main-navigation .togglenav {
  font-size: 1em;
  background: none;
  height: 0;
  z-index: 100;
  text-align: right;
  position: absolute;
  top: 0;
  right: 0;
  bottom: auto;
  left: 0;
  font-family: 'Gotham SSm A', 'Gotham SSm B', Arial, Helvetica, sans-serif;
  font-weight: 400;
  font-style: normal;
  visibility: hidden;
}
.no-js #main-navigation .togglenav,
.wf-gothamssma-n4-active #main-navigation .togglenav,
.wf-gothamssmb-n4-active #main-navigation .togglenav,
.wf-gothamssmb-n4-inactive #main-navigation .togglenav,
.wf-gothamssma-n4-inactive #main-navigation .togglenav {
  visibility: visible;
}
.beta #main-navigation .togglenav {
  top: 6em;
}
#main-navigation .togglenav.hide {
  display: none;
}
#main-navigation .togglenav b {
  position: relative;
  display: block;
  margin: 0 auto;
  height: 1.75em;
  width: 50em;
  max-width: 94%;
  color: #0085BA;
  text-transform: uppercase;
  top: 1.25em;
  font-size: 1.6em;
  text-align: right;
  line-height: 1.75em;
}
#main-navigation .togglenav b em {
  background: none;
  width: 2.125em;
  height: 0.375em;
  border-top: 0.1875em solid #FFFFFF;
  border-bottom: 0.1875em solid #FFFFFF;
  margin-left: 0.4375em;
  margin-right: -0.125em;
  text-align: left;
  display: inline-block;
  vertical-align: middle;
  text-indent: -999em;
  overflow: hidden;
  margin-top: -0.25em;
}
.ie-lte7 #main-navigation .togglenav b em {
  display: inline;
}
#main-navigation .menuBar {
  list-style: none;
  padding: 0;
  margin: 0;
  overflow: hidden;
  font-family: "adelle", Georgia, "Times New Roman", Times, serif;
  visibility: hidden;
  text-align: center;
}
.no-js #main-navigation .menuBar,
.wf-adelle-n3-active #main-navigation .menuBar,
.wf-adelle-n3-inactive #main-navigation .menuBar {
  visibility: visible;
}
#main-navigation .menuBar li {
  font-size: 1em;
  margin-bottom: -1px;
}
#main-navigation .menuBar li.topLevel {
  padding: 0.6em 0 0.5em;
  border-bottom: 1px solid #00a9ed;
}
#main-navigation .menuBar ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: inline;
}
#main-navigation .menuBar ul li {
  display: inline;
  margin-left: 0.5em;
  margin-right: 0.5em;
  margin-bottom: 0;
}
#main-navigation .menuBar ul li a {
  font-weight: normal;
  font-size: 1.4em;
  line-height: 1.71428571;
}
#main-navigation .menuBar ul li li {
  position: absolute;
  top: -999em;
  right: auto;
  bottom: auto;
  left: -999em;
}
#main-navigation a {
  color: #FFFFFF;
  text-decoration: none;
  font-size: 1.6em;
  line-height: 1.5;
}
#main-navigation a:hover {
  text-decoration: underline;
}
h2.date,
h3.date {
  display: block;
  float: left;
  font-size: 1.6em;
  font-family: 'Gotham SSm A', 'Gotham SSm B', Arial, Helvetica, sans-serif;
  font-weight: bold;
  font-style: normal;
  visibility: hidden;
  text-transform: uppercase;
  background: #FFFFFF;
  width: 3.125em;
  border-radius: 4px;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  text-align: center;
  color: #232323;
  padding: 0.25em 0;
}
.no-js h2.date,
.no-js h3.date,
.wf-gothamssma-n4-active h2.date,
.wf-gothamssma-n4-active h3.date,
.wf-gothamssmb-n4-active h2.date,
.wf-gothamssmb-n4-active h3.date,
.wf-gothamssmb-n4-inactive h2.date,
.wf-gothamssmb-n4-inactive h3.date,
.wf-gothamssma-n4-inactive h2.date,
.wf-gothamssma-n4-inactive h3.date {
  visibility: visible;
}
h2.date b,
h3.date b {
  color: #232323;
  display: block;
  font-weight: normal;
  font-size: 1.75em;
  margin-top: 0;
}
select {
  padding: 0 0.5em;
  height: 2.5em;
  margin: 0;
  color: #FFFFFF;
  background: #BBBBBB;
  text-transform: uppercase;
  font-size: 1.1em;
  font-weight: bold;
  border: none;
}
.gallery {
  width: 100%;
  text-align: center;
  margin: 0 0 2em;
}
.gallery img {
  max-width: 100%;
}
.gallery ul {
  position: absolute;
  top: -999em;
  right: auto;
  bottom: auto;
  left: -999em;
}
#map_container {
  width: 100%;
  background: #F0EDE5;
  margin: 0 0 3em;
  float: left;
  position: relative;
}
#map_container img.map {
  margin: 0 auto;
  display: block;
  float: none;
  width: 80em;
  max-width: 100%;
}
#cookie-notice {
  background-color: #434343;
  color: #FFFFFF;
  text-align: center;
  padding: 1em 5em;
  position: absolute;
  top: auto;
  right: 0;
  bottom: 0;
  left: 0;
  position: fixed;
  z-index: 100;
}
#cookie-notice p {
  color: #FFFFFF;
  padding: 0.3em 0;
}
#cookie-notice .close {
  font-size: 1.6em;
  position: absolute;
  top: 0.5em;
  right: 0.5em;
  bottom: auto;
  left: auto;
  background: #FFFFFF;
  color: #434343;
  display: block;
  height: 1em;
  width: 1em;
  line-height: 1;
  text-align: center;
}
#cookie-notice .close:hover {
  text-decoration: none;
  background-color: #E6514D;
}
.rtTooltip p {
  font-size: 1em;
}
.downloads {
  clear: both;
  padding: 2em;
  margin: 0 0 2em;
  border: 1px solid #BBBBBB;
  background-color: #eeeeee;
}
.downloads h3 {
  color: #0085BA;
}
.downloads ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: block;
}
.downloads ul li a {
  color: #434343;
}
.downloads ul li a em {
  font-style: normal;
  color: #0085BA;
  font-weight: normal;
  font-size: 0.8em;
}
.g-recaptcha-noscript {
  width: 302px;
  height: 482px;
  position: relative;
  margin-bottom: 2em;
}
.g-recaptcha-noscript div.iframe {
  width: 302px;
  height: 422px;
  position: absolute;
}
.g-recaptcha-noscript div.iframe iframe {
  width: 100%;
  height: 100%;
  border-style: none;
}
.g-recaptcha-noscript div.textarea {
  width: 300px;
  height: 60px;
  border-style: none;
  bottom: 0px;
  left: 0px;
  margin: 0px;
  padding: 0px;
  right: 0px;
  background: #f9f9f9;
  border: 1px solid #c1c1c1;
  border-radius: 3px;
  position: absolute;
}
.g-recaptcha-noscript div.textarea textarea {
  width: 250px;
  height: 40px;
  border: 1px solid #c1c1c1;
  margin: 10px 25px;
  padding: 0px;
  resize: none;
}
.listing {
  max-width: 42em;
  margin: 0 auto;
}
.listing a.more-info {
  font-size: 1.4em;
  text-transform: lowercase;
}
.listing a.more-info:after {
  content: '\00BB';
  padding-lefT: 0.2em;
}
.listing ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: block;
  overflow: hidden;
  position: relative;
}
.listing ul li {
  display: block;
  font-size: 1em;
  padding: 0 0 0 6em;
  margin: 0 0 1.5em;
  border-bottom: 1px solid #BBBBBB;
  overflow: hidden;
  position: relative;
  min-height: 8em;
}
.listing ul li img.badge,
.listing ul li h2.date {
  border: none;
  float: left;
  position: absolute;
  top: 0;
  right: auto;
  bottom: auto;
  left: 0;
}
.listing ul li img.badge,
.listing ul li h2.date,
.listing ul li img.badge b,
.listing ul li h2.date b {
  color: #FFFFFF;
}
.listing ul li img.badge {
  width: 5em;
}
.listing ul li h4 {
  font-size: 1.6em;
  margin: 0;
  padding: 0;
  line-height: 1.11111111;
  text-transform: uppercase;
  font-family: 'Gotham SSm A', 'Gotham SSm B', Arial, Helvetica, sans-serif;
  font-weight: normal;
  font-style: normal;
  visibility: hidden;
}
.no-js .listing ul li h4,
.wf-gothamssma-n4-active .listing ul li h4,
.wf-gothamssmb-n4-active .listing ul li h4,
.wf-gothamssmb-n4-inactive .listing ul li h4,
.wf-gothamssma-n4-inactive .listing ul li h4 {
  visibility: visible;
}
.listing ul li h4 i {
  font-style: normal;
  font-size: 0.75em;
}
.listing ul li h3 {
  color: #232323;
  font-family: 'Gotham SSm A', 'Gotham SSm B', Arial, Helvetica, sans-serif;
  font-weight: bold;
  font-style: normal;
  visibility: hidden;
  font-size: 1.6em;
  line-height: 1.25;
  padding: 0;
  margin: 0;
}
.no-js .listing ul li h3,
.wf-gothamssma-n4-active .listing ul li h3,
.wf-gothamssmb-n4-active .listing ul li h3,
.wf-gothamssmb-n4-inactive .listing ul li h3,
.wf-gothamssma-n4-inactive .listing ul li h3 {
  visibility: visible;
}
.listing ul li h3 a {
  color: #232323;
  font-weight: inherit;
}
.listing ul li h5 {
  font-family: 'Gotham SSm A', 'Gotham SSm B', Arial, Helvetica, sans-serif;
  font-style: normal;
  visibility: hidden;
  text-transform: none;
  font-size: 1.4em;
  padding: 0;
  margin: 0;
  color: #434343;
  font-weight: normal;
  font-style: italic;
}
.no-js .listing ul li h5,
.wf-gothamssma-n4-active .listing ul li h5,
.wf-gothamssmb-n4-active .listing ul li h5,
.wf-gothamssmb-n4-inactive .listing ul li h5,
.wf-gothamssma-n4-inactive .listing ul li h5 {
  visibility: visible;
}
.listing ul ul {
  list-style: none;
  margin: 0 0 -1.5em;
  bottom: -1px;
  position: relative;
  padding: 0;
  display: block;
  clear: both;
  overflow: hidden;
}
.listing ul ul li {
  padding: 0 0 1.5em;
  font-size: 1em;
  min-height: 0;
}
.listing ul ul.meta {
  margin: 0;
  padding: 0.5em 0 0;
}
.listing ul ul.meta li {
  padding: 0;
  margin: 0;
  font-size: 1.4em;
  color: #434343;
  border: none;
}
.listing ul ul.meta li a.ref {
  font-size: 0.85714286em;
}
.listing ul ul.meta li a {
  font-weight: normal;
}
.listing ul ul.meta li b {
  text-transform: uppercase;
  font-size: 0.71428571em;
  color: #999999;
}
.listing ul ul.meta li.files {
  padding-top: 0.5em;
  padding-bottom: 0.5em;
}
.listing ul ul.meta li.files a {
  display: block;
  font-size: 1.2em;
}
.listing ul ul.meta li.files a b {
  color: inehrit;
}
.listing ul ul.meta li.files a:hover,
.listing ul ul.meta li.files a:active {
  text-decoration: underline;
  color: #232323;
}
.listing ul ul.meta li.files a:hover:before,
.listing ul ul.meta li.files a:active:before {
  background: #232323;
}
.listing table {
  font-size: 1em;
}
.listing table th {
  background: none;
  font-family: 'Gotham SSm A', 'Gotham SSm B', Arial, Helvetica, sans-serif;
  font-weight: 400;
  font-style: normal;
  visibility: hidden;
  font-weight: bold;
  border-top: none;
  border-bottom: 1px solid #874D89;
  padding: 0.35714286em;
  margin-top: 0.4em;
  font-size: 1.3em;
}
.no-js .listing table th,
.wf-gothamssma-n4-active .listing table th,
.wf-gothamssmb-n4-active .listing table th,
.wf-gothamssmb-n4-inactive .listing table th,
.wf-gothamssma-n4-inactive .listing table th {
  visibility: visible;
}
.listing table th span.year {
  color: #FFFFFF;
  font-size: 1em;
  display: inline-block;
  vertical-align: middle;
  background: #434343;
  text-align: center;
  padding: 0.3em 0;
  border-radius: 0.3em;
  width: 3.84615385em;
}
.ie-lte7 .listing table th span.year {
  display: inline;
}
.listing table td {
  border-bottom: 1px solid #BBBBBB;
  font-size: 1.2em;
  padding: 0.41666667em;
}
.listing table td h2.date {
  font-size: 1.33333333em;
  padding-left: 0;
  padding-right: 0;
  width: 3.125em;
}
.listing table td h4.time {
  font-size: 1em;
  color: #874D89;
  font-size: 1.3em;
}
.listing table td h4.time,
.listing table td h4.time i {
  font-style: normal;
  font-weight: normal;
}
.listing table td h3,
.listing table td h4 {
  font-size: 1em;
  font-weight: normal;
}
.listing table td h3 a,
.listing table td h4 a {
  font-weight: normal;
}
.listing table td h3 {
  font-family: 'Gotham SSm A', 'Gotham SSm B', Arial, Helvetica, sans-serif;
  font-weight: 400;
  font-style: normal;
  visibility: hidden;
  font-weight: bold;
}
.no-js .listing table td h3,
.wf-gothamssma-n4-active .listing table td h3,
.wf-gothamssmb-n4-active .listing table td h3,
.wf-gothamssmb-n4-inactive .listing table td h3,
.wf-gothamssma-n4-inactive .listing table td h3 {
  visibility: visible;
}
.listing table td h3 a {
  color: #434343;
  font-weight: bold;
}
.listing table td a {
  color: #874D89;
}
.listing table td span.refs,
.listing table td span.speakers {
  display: block;
  font-family: 'Gotham SSm A', 'Gotham SSm B', Arial, Helvetica, sans-serif;
  font-weight: 400;
  font-style: normal;
  visibility: hidden;
  font-weight: normal;
}
.no-js .listing table td span.refs,
.no-js .listing table td span.speakers,
.wf-gothamssma-n4-active .listing table td span.refs,
.wf-gothamssma-n4-active .listing table td span.speakers,
.wf-gothamssmb-n4-active .listing table td span.refs,
.wf-gothamssmb-n4-active .listing table td span.speakers,
.wf-gothamssmb-n4-inactive .listing table td span.refs,
.wf-gothamssmb-n4-inactive .listing table td span.speakers,
.wf-gothamssma-n4-inactive .listing table td span.refs,
.wf-gothamssma-n4-inactive .listing table td span.speakers {
  visibility: visible;
}
.listing table td span.refs a,
.listing table td span.speakers a {
  font-weight: normal;
}
.listing table td span.files a {
  font-size: 0.83333333em;
  display: block;
  white-space: nowrap;
  font-family: 'Gotham SSm A', 'Gotham SSm B', Arial, Helvetica, sans-serif;
  font-weight: 400;
  font-style: normal;
  visibility: hidden;
  font-weight: normal;
}
.no-js .listing table td span.files a,
.wf-gothamssma-n4-active .listing table td span.files a,
.wf-gothamssmb-n4-active .listing table td span.files a,
.wf-gothamssmb-n4-inactive .listing table td span.files a,
.wf-gothamssma-n4-inactive .listing table td span.files a {
  visibility: visible;
}
.listing table td span.length {
  font-size: 0.83333333em;
  display: block;
  padding-top: 0.2em;
  white-space: nowrap;
  font-family: 'Gotham SSm A', 'Gotham SSm B', Arial, Helvetica, sans-serif;
  font-weight: 400;
  font-style: normal;
  visibility: hidden;
  font-weight: normal;
}
.no-js .listing table td span.length,
.wf-gothamssma-n4-active .listing table td span.length,
.wf-gothamssmb-n4-active .listing table td span.length,
.wf-gothamssmb-n4-inactive .listing table td span.length,
.wf-gothamssma-n4-inactive .listing table td span.length {
  visibility: visible;
}
.listing-single {
  max-width: 36em;
  margin: 0 auto;
  padding-left: 8em;
}
.listing-single .content p a[class*="icon-"] {
  padding-left: 2em;
  display: block;
  font-weight: normal;
}
.listing-single .content p a[class*="icon-"] em {
  font-weight: bold;
  font-style: normal;
}
.listing-single .content p a[class*="icon-"]:before {
  float: left;
  color: #FFFFFF;
  margin-left: -2.5em;
  margin-top: -0.125em;
  padding: 0.4em;
  font-size: 0.8em;
  border-radius: 50%;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
}
.listing-single h2.date {
  margin-left: -4.6875em;
}
.listing-single h1 {
  margin: 0;
  padding: 0;
  text-transform: none;
}
.listing-single h3 {
  font-family: 'Gotham SSm A', 'Gotham SSm B', Arial, Helvetica, sans-serif;
  font-weight: normal;
  font-style: normal;
  visibility: hidden;
  padding: 0;
  margin: 0;
  color: #232323;
  font-size: 2.2em;
}
.no-js .listing-single h3,
.wf-gothamssma-n4-active .listing-single h3,
.wf-gothamssmb-n4-active .listing-single h3,
.wf-gothamssmb-n4-inactive .listing-single h3,
.wf-gothamssma-n4-inactive .listing-single h3 {
  visibility: visible;
}
.listing-single h3 em,
.listing-single h3 i {
  font-style: normal;
  text-transform: uppercase;
  font-size: 0.7em;
}
.listing-single h5 {
  font-family: 'Gotham SSm A', 'Gotham SSm B', Arial, Helvetica, sans-serif;
  font-style: normal;
  visibility: hidden;
  text-transform: none;
  font-size: 1.6em;
  padding: 0;
  margin: 0;
  color: #434343;
  font-weight: normal;
  font-style: italic;
}
.no-js .listing-single h5,
.wf-gothamssma-n4-active .listing-single h5,
.wf-gothamssmb-n4-active .listing-single h5,
.wf-gothamssmb-n4-inactive .listing-single h5,
.wf-gothamssma-n4-inactive .listing-single h5 {
  visibility: visible;
}
.listing-single .video_wrapper {
  margin: 0 0 2em;
  width: 100%;
  clear: both;
  padding-top: 64.28571429%;
  overflow: hidden;
  float: none;
}
.listing-single ul.meta {
  margin: 0;
  padding: 2em 0;
  list-style: none;
  display: block;
}
.listing-single ul.meta li {
  padding: 0 0 0.2em;
  margin: 0;
  font-size: 1.6em;
  color: #434343;
  border: none;
}
.listing-single ul.meta li a {
  font-weight: normal;
}
.listing-single ul.meta li a br {
  display: none;
}
.listing-single ul.meta li b {
  text-transform: uppercase;
  font-size: 0.71428571em;
  color: #999999;
}
.listing-single ul.meta li.files {
  padding-top: 0.5em;
  padding-bottom: 0.5em;
}
.listing-single ul.meta li.files a {
  display: block;
  font-size: 1.2em;
}
.listing-single ul.meta li.files a b {
  color: inehrit;
}
.listing-single ul.meta li.files a:hover,
.listing-single ul.meta li.files a:active {
  text-decoration: underline;
  color: #232323;
}
.listing-single ul.meta li.files a:hover:before,
.listing-single ul.meta li.files a:active:before {
  background: #232323;
}
.listing-sidebar {
  max-width: 42em;
  margin: 4em auto 0;
  border-top: 1px solid #BBBBBB;
  padding-top: 4em;
}
.listing-sidebar a.clear-search {
  font-size: 1.1em;
  padding: 1em 0 0;
  display: block;
  font-family: 'Gotham SSm A', 'Gotham SSm B', Arial, Helvetica, sans-serif;
  font-weight: 400;
  font-style: normal;
  visibility: hidden;
  color: #874D89;
}
.no-js .listing-sidebar a.clear-search,
.wf-gothamssma-n4-active .listing-sidebar a.clear-search,
.wf-gothamssmb-n4-active .listing-sidebar a.clear-search,
.wf-gothamssmb-n4-inactive .listing-sidebar a.clear-search,
.wf-gothamssma-n4-inactive .listing-sidebar a.clear-search {
  visibility: visible;
}
.listing-sidebar h2 {
  font-size: 2em;
  text-align: center;
  border-bottom: 1px solid #BBBBBB;
  padding-bottom: 0.5em;
  font-weight: normal;
}
.listing-sidebar h2 i {
  font-style: normal;
}
.listing-sidebar h2 * {
  font-weight: normal;
}
.listing-sidebar h2 span {
  color: #999999;
  font-family: "adelle", Georgia, "Times New Roman", Times, serif;
  visibility: hidden;
  font-size: 0.5em;
  text-transform: uppercase;
  display: block;
}
.no-js .listing-sidebar h2 span,
.wf-adelle-n3-active .listing-sidebar h2 span,
.wf-adelle-n3-inactive .listing-sidebar h2 span {
  visibility: visible;
}
.listing-sidebar h2 a:before {
  position: absolute;
  top: -999em;
  right: auto;
  bottom: auto;
  left: -999em;
}
.listing-sidebar h2 a span,
.listing-sidebar h2 a.hide {
  display: none;
}
.listing-sidebar h2 a:hover {
  text-decoration: none;
}
.listing-sidebar form {
  padding: 0 0 2em;
  margin: 0;
  border-bottom: 1px solid #BBBBBB;
}
.listing-sidebar form fieldset {
  padding: 0;
  margin: 0 auto;
  border: none;
  max-width: 42em;
}
.listing-sidebar form fieldset label {
  margin: 0 0 1em;
  padding: 0;
  width: 100%;
}
.listing-sidebar form fieldset label select {
  width: 100%;
  margin: 0;
  margin-right: -5%;
}
.listing-sidebar form fieldset label b,
.listing-sidebar form fieldset h4 {
  font-size: 1.1em;
  text-transform: uppercase;
  font-family: 'Gotham SSm A', 'Gotham SSm B', Arial, Helvetica, sans-serif;
  font-weight: bold;
  font-style: normal;
  visibility: hidden;
  color: #999999;
  display: inline-block;
  vertical-align: top;
  width: 100%;
  padding: 0.5em 0;
  margin: 1px -3px 0 0;
}
.no-js .listing-sidebar form fieldset label b,
.no-js .listing-sidebar form fieldset h4,
.wf-gothamssma-n4-active .listing-sidebar form fieldset label b,
.wf-gothamssma-n4-active .listing-sidebar form fieldset h4,
.wf-gothamssmb-n4-active .listing-sidebar form fieldset label b,
.wf-gothamssmb-n4-active .listing-sidebar form fieldset h4,
.wf-gothamssmb-n4-inactive .listing-sidebar form fieldset label b,
.wf-gothamssmb-n4-inactive .listing-sidebar form fieldset h4,
.wf-gothamssma-n4-inactive .listing-sidebar form fieldset label b,
.wf-gothamssma-n4-inactive .listing-sidebar form fieldset h4 {
  visibility: visible;
}
.ie-lte7 .listing-sidebar form fieldset label b,
.ie-lte7 .listing-sidebar form fieldset h4 {
  display: inline;
}
.listing-sidebar form fieldset h4 {
  margin-top: 0;
}
.listing-sidebar form fieldset fieldset.date label {
  display: inline-block;
  vertical-align: middle;
}
.listing-sidebar form fieldset fieldset.date label.month {
  width: 50%;
  margin-right: 5%;
}
.listing-sidebar form fieldset fieldset.date label.year {
  width: 45%;
  margin-right: -5%;
}
.listing-sidebar form fieldset fieldset.date label select {
  width: 100%;
  margin-right: 0;
}
.ie-lte7 .listing-sidebar form fieldset fieldset.date label {
  display: inline;
}
.listing-sidebar form fieldset fieldset.date label b {
  position: absolute;
  top: -999em;
  right: auto;
  bottom: auto;
  left: -999em;
}
.listing-sidebar form button {
  background: #232323;
  color: #FFFFFF;
  text-transform: uppercase;
  border: none;
  padding: 0.4em 0;
  width: 100%;
  font-size: 1.4em;
  font-weight: bold;
}
.listing-sidebar form button:after {
  content: '\00BB';
  padding-left: 0.2em;
}
.listing-sidebar ul {
  list-style: none;
  display: block;
  padding: 0;
  margin: 1em 0 5em;
  text-align: center;
}
.listing-sidebar ul li {
  font-size: 1.4em;
  margin: 0em;
}
.listing-sidebar ul li:last-child {
  margin-bottom: 0;
}
.listing-sidebar ul li a {
  color: #999999;
  font-weight: normal;
  display: block;
}
.listing-sidebar ul li a:hover {
  text-decoration: underline;
  color: #434343;
}
.listing-sidebar p {
  font-size: 1.2em;
  text-align: center;
}
.listing-sidebar p a {
  font-weight: normal;
  color: #999999;
  display: inline-block;
  vertical-align: top;
  max-width: 40%;
  margin: 0 2%;
}
.ie-lte7 .listing-sidebar p a {
  display: inline;
}
.listing-sidebar p a b {
  display: block;
  font-size: 2em;
}
.listing-sidebar p a:before {
  font-size: 1.66666667em;
  display: block;
  text-align: center;
  margin-bottom: 0.25em;
}
.listing-sidebar .panel {
  margin: 1em 0 4em;
}
.listing-sidebar .mini-calendar.panel {
  min-width: 22em;
  max-width: 100%;
}
.listing-sidebar .mini-calendar h3 {
  font-size: 2em;
  text-align: center;
  border-bottom: 1px solid #BBBBBB;
  padding-bottom: 0.5em;
  font-weight: normal;
  position: relative;
  overflow: hidden;
}
.listing-sidebar .mini-calendar h3 .next,
.listing-sidebar .mini-calendar h3 .prev {
  display: inline-block;
  vertical-align: middle;
  height: 0;
  width: 0;
  border: 0.3em solid transparent;
  position: absolute;
  top: 0.3em;
  right: auto;
  bottom: auto;
  left: auto;
  line-height: 10em;
}
.ie-lte7 .listing-sidebar .mini-calendar h3 .next,
.ie-lte7 .listing-sidebar .mini-calendar h3 .prev {
  display: inline;
}
.listing-sidebar .mini-calendar h3 .next:after,
.listing-sidebar .mini-calendar h3 .prev:after {
  content: '';
  display: block;
  width: auto;
  height: auto;
  background: rgba(255, 0, 255, 0.001);
  position: absolute;
  top: -1.5em;
  right: -1.5em;
  bottom: -1.5em;
  left: -1.5em;
}
.listing-sidebar .mini-calendar h3 .next {
  border-left: 0.4em solid #0085BA;
  right: 0;
}
.listing-sidebar .mini-calendar h3 .prev {
  border-right: 0.4em solid #0085BA;
  left: 0;
}
.listing-sidebar .mini-calendar ul {
  display: block;
  padding: 0;
  margin: 0 0 1em;
  overflow: hidden;
  list-style: none;
}
.listing-sidebar .mini-calendar ul.head {
  margin-bottom: 0;
  font-family: "adelle", Georgia, "Times New Roman", Times, serif;
  visibility: hidden;
}
.no-js .listing-sidebar .mini-calendar ul.head,
.wf-adelle-n3-active .listing-sidebar .mini-calendar ul.head,
.wf-adelle-n3-inactive .listing-sidebar .mini-calendar ul.head {
  visibility: visible;
}
.listing-sidebar .mini-calendar ul.head li {
  color: #434343;
  height: auto;
  line-height: 1;
}
.listing-sidebar .mini-calendar ul li {
  width: 14%;
  float: left;
  padding: 0;
  margin: 0 0 0.125em;
  position: relative;
  font-size: 1.6em;
  text-align: center;
  font-family: "adelle", Georgia, "Times New Roman", Times, serif;
  visibility: hidden;
  font-weight: bold;
}
.no-js .listing-sidebar .mini-calendar ul li,
.wf-adelle-n3-active .listing-sidebar .mini-calendar ul li,
.wf-adelle-n3-inactive .listing-sidebar .mini-calendar ul li {
  visibility: visible;
}
.listing-sidebar .mini-calendar ul li.Mon {
  margin-left: 1%;
}
.listing-sidebar .mini-calendar ul li.Today a {
  font-weight: bold;
  background: #a3bc64;
  color: #FFFFFF !important;
  border-radius: 50%;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
}
.listing-sidebar .mini-calendar ul li.Today span {
  font-weight: bold;
  background: #c0c0c0;
  color: #FFFFFF !important;
  border-radius: 50%;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
}
.listing-sidebar .mini-calendar ul li a,
.listing-sidebar .mini-calendar ul li span {
  /*text-align: center;
					display: block;
					line-height: 2em;
					.abs(0,0,0,0);*/
  display: block;
  height: 0;
  width: 96%;
  padding: 48% 0 50%;
  text-align: center;
  line-height: 0px;
  vertical-align: middle;
  font-weight: bold;
}
.listing-sidebar .mini-calendar ul li a {
  color: #0085BA;
}
.listing-sidebar .mini-calendar ul li span {
  -moz-opacity: 0.3;
  -khtml-opacity: 0.3;
  -webkit-opacity: 0.3;
  opacity: 0.3;
  color: #434343;
}
.listing-sidebar .mini-calendar ul li.Tue.First {
  margin-left: 15%;
}
.listing-sidebar .mini-calendar ul li.Wed.First {
  margin-left: 29%;
}
.listing-sidebar .mini-calendar ul li.Thu.First {
  margin-left: 43%;
}
.listing-sidebar .mini-calendar ul li.Fri.First {
  margin-left: 57%;
}
.listing-sidebar .mini-calendar ul li.Sat.First {
  margin-left: 71%;
}
.listing-sidebar .mini-calendar ul li.Sun.First {
  margin-left: 85%;
}
.sidebar-toggles {
  text-align: center;
  margin: 0 0 5em;
}
.sidebar-toggles a {
  display: inline-block;
  vertical-align: middle;
  border: 1px solid #BBBBBB;
  font-family: 'Gotham SSm A', 'Gotham SSm B', Arial, Helvetica, sans-serif;
  font-weight: 400;
  font-style: normal;
  visibility: hidden;
  padding: 0.7em 1em;
  color: #999999;
  background: #FFFFFF;
  font-size: 1.1em;
  margin: 0 -1px 0 0;
}
.ie-lte7 .sidebar-toggles a {
  display: inline;
}
.no-js .sidebar-toggles a,
.wf-gothamssma-n4-active .sidebar-toggles a,
.wf-gothamssmb-n4-active .sidebar-toggles a,
.wf-gothamssmb-n4-inactive .sidebar-toggles a,
.wf-gothamssma-n4-inactive .sidebar-toggles a {
  visibility: visible;
}
.sidebar-toggles a.selected {
  background: #999999;
  color: #FFFFFF;
}
.pagination {
  display: block;
  text-align: center;
  font-size: 1.6em;
  color: #999999;
  padding: 1em 0;
  margin: 0 0 2em;
  font-family: "adelle", Georgia, "Times New Roman", Times, serif;
  visibility: hidden;
  overflow: hidden;
}
.no-js .pagination,
.wf-adelle-n3-active .pagination,
.wf-adelle-n3-inactive .pagination {
  visibility: visible;
}
.pagination.top {
  border-top: none;
  padding-top: 0;
  padding-bottom: 0.5em;
  border-bottom: 1px solid #BBBBBB;
  margin: 0 0 1em;
}
.pagination.calendar {
  margin: 0;
}
.pagination.calendar.top {
  margin: 0 0 1em;
}
.pagination .pos {
  margin: 0 1.5em;
}
.pagination .pos b {
  color: #232323;
}
.pagination.calendar .pos {
  font-size: 1.25em;
  font-weight: normal;
  font-style: normal;
}
.pagination.calendar .pos * {
  font-size: 1em;
  font-weight: normal;
  color: #0085BA;
  font-style: normal;
}
.pagination .next,
.pagination .prev {
  line-height: 9999em;
  display: inline-block;
  vertical-align: middle;
  height: 0;
  width: 0;
  border: 0.5em solid transparent;
  position: relative;
  z-index: 5;
}
.ie-lte7 .pagination .next,
.ie-lte7 .pagination .prev {
  display: inline;
}
.pagination .next:after,
.pagination .prev:after {
  content: '';
  display: block;
  width: auto;
  height: auto;
  background: rgba(255, 255, 255, 0.001);
  position: absolute;
  top: -1.5em;
  right: -1.5em;
  bottom: -1.5em;
  left: -1.5em;
}
.pagination .prev {
  border-right: 0.8em solid #BBBBBB;
}
.pagination .next {
  border-left: 0.8em solid #BBBBBB;
}
.pagination a.prev {
  border-right-color: #0085BA;
}
.pagination a.prev:hover {
  border-right-color: #232323 !important;
}
.pagination a.next {
  border-left-color: #0085BA;
}
.pagination a.next:hover {
  border-left-color: #232323 !important;
}
.pagination label.select {
  display: inline-block;
  vertical-align: middle;
  padding: 0;
  margin: 0 1.5em 0 -1em;
  font-size: 0.625em;
}
.ie-lte7 .pagination label.select {
  display: inline;
}
.pagination label.select select {
  font-size: 1.2em;
  height: 2em;
  webkit-appearance: none;
}
.pagination button {
  background: #874D89;
  font-family: 'Gotham SSm A', 'Gotham SSm B', Arial, Helvetica, sans-serif;
  font-weight: 400;
  font-style: normal;
  visibility: hidden;
  display: inline-block;
  vertical-align: middle;
  font-weight: bold;
  color: #FFFFFF;
  border-radius: 0em;
  text-transform: uppercase;
  border: none;
  height: 2em;
  font-size: 0.75em;
  margin: 0 1.5em 0 -1em;
}
.no-js .pagination button,
.wf-gothamssma-n4-active .pagination button,
.wf-gothamssmb-n4-active .pagination button,
.wf-gothamssmb-n4-inactive .pagination button,
.wf-gothamssma-n4-inactive .pagination button {
  visibility: visible;
}
.ie-lte7 .pagination button {
  display: inline;
}
.js .pagination button {
  display: none;
}
.pagination button:after {
  content: '\00BB';
}
#sections {
  padding-top: 0;
  width: 80em;
  max-width: 100%;
  margin: 0;
  margin-left: auto;
  margin-right: auto;
  overflow: hidden;
}
#sections .item {
  width: auto;
  display: block;
  padding: 2em 2em 1em;
  float: none;
  margin: 0 0 1em;
  text-align: left;
  min-width: 0;
}
#sections .item.sect_calendar {
  background: #9FB95D;
}
#sections .item.sect_calendar .panel h3.date {
  color: #9FB95D;
}
#sections .item.sect_resources {
  background: #874D89;
}
#sections .item.sect_resources .panel h3.date {
  color: #874D89;
}
#sections .item.sect_contact {
  background: #EF8F23;
}
#sections .item.sect_contact .panel li {
  min-height: 0;
}
#sections .item a {
  color: #FFFFFF;
  font-weight: normal;
}
#sections .item h2 {
  color: #FFFFFF;
  font-size: 3.6em;
  padding: 0 0 0.36111111em;
  margin: 0 auto;
  font-weight: 100;
  text-transform: lowercase;
  width: 11.66666667em;
  max-width: 100%;
}
#sections .item h2 a {
  font-weight: normal;
  text-transform: lowercase;
}
#sections .item h2 a:hover {
  text-decoration: none;
}
#sections .item h2 a:hover em {
  text-decoration: underline;
}
#sections .item h2 em {
  display: block;
  font-size: 0.38888889em;
  font-family: 'Gotham SSm A', 'Gotham SSm B', Arial, Helvetica, sans-serif;
  font-weight: 400;
  font-style: normal;
  visibility: hidden;
  -moz-opacity: 0.5;
  -khtml-opacity: 0.5;
  -webkit-opacity: 0.5;
  opacity: 0.5;
}
.no-js #sections .item h2 em,
.wf-gothamssma-n4-active #sections .item h2 em,
.wf-gothamssmb-n4-active #sections .item h2 em,
.wf-gothamssmb-n4-inactive #sections .item h2 em,
.wf-gothamssma-n4-inactive #sections .item h2 em {
  visibility: visible;
}
#sections .item h2 em:after {
  content: '\00BB';
  padding-left: 0.2em;
}
#sections .item p {
  color: #FFFFFF;
  font-size: 1.3em;
  padding: 0;
}
#sections .item p a.more {
  color: #232323;
  font-weight: bold;
  font-style: normal;
}
#sections .item p a.more:after {
  content: '\00BB';
  padding-left: 0.2em;
}
#sections .item p.refs {
  color: #232323;
  font-weight: bold;
}
#sections .item p.names {
  -moz-opacity: 0.5;
  -khtml-opacity: 0.5;
  -webkit-opacity: 0.5;
  opacity: 0.5;
  font-weight: bold;
}
#sections .item p a.maps {
  padding-left: 0.8em;
  margin-left: 0.5em;
  border-left: 1px solid #FFFFFF;
}
#sections .panel {
  padding: 0;
  margin: 0 auto;
  display: block;
  width: 42em;
  max-width: 100%;
  position: relative;
  padding-top: 8em;
  margin-top: -8.2em;
}
#sections .panel .swiper-slide {
  width: 100%;
  display: inline-block;
  vertical-align: top;
}
.ie-lte7 #sections .panel .swiper-slide {
  display: inline;
}
#sections .panel .swiper-slide.not-first {
  position: absolute;
  left: -9999em;
  top: -9999em;
}
#sections .panel .date {
  font-size: 1.4em;
  position: absolute;
  top: 1.42857143em;
  right: 0;
  bottom: auto;
  left: auto;
}
#sections .panel ul {
  list-style: none;
  display: block;
  padding: 1em 0 0;
  margin: 0;
}
#sections .panel ul.items li {
  padding-left: 6em;
}
#sections .panel li {
  font-size: 1em;
  padding: 0;
  margin: 0 0 1em;
  color: #FFFFFF;
  min-height: 4em;
}
#sections .panel li .time {
  color: #FFFFFF;
  font-size: 2em;
  text-align: left;
  text-transform: uppercase;
  font-family: 'Gotham SSm A', 'Gotham SSm B', Arial, Helvetica, sans-serif;
  font-weight: normal;
  font-style: normal;
  visibility: hidden;
  float: left;
  margin-left: -3em;
  line-height: 1.1;
}
.no-js #sections .panel li .time,
.wf-gothamssma-n4-active #sections .panel li .time,
.wf-gothamssmb-n4-active #sections .panel li .time,
.wf-gothamssmb-n4-inactive #sections .panel li .time,
.wf-gothamssma-n4-inactive #sections .panel li .time {
  visibility: visible;
}
#sections .panel li .time i {
  font-size: 0.7em;
  font-style: normal;
  -moz-opacity: 0.5;
  -khtml-opacity: 0.5;
  -webkit-opacity: 0.5;
  opacity: 0.5;
  display: block;
}
#sections .panel li h3 {
  color: #FFFFFF;
  font-family: 'Gotham SSm A', 'Gotham SSm B', Arial, Helvetica, sans-serif;
  font-weight: bold;
  font-style: normal;
  visibility: hidden;
  font-size: 1.6em;
  padding: 0;
  margin: 0;
  line-height: 1.375;
}
.no-js #sections .panel li h3,
.wf-gothamssma-n4-active #sections .panel li h3,
.wf-gothamssmb-n4-active #sections .panel li h3,
.wf-gothamssmb-n4-inactive #sections .panel li h3,
.wf-gothamssma-n4-inactive #sections .panel li h3 {
  visibility: visible;
}
#sections .panel li.map img {
  margin: 0 0 0.5em;
  max-width: 100%;
}
#sections .panel li.map p a {
  color: #232323;
  font-weight: bold;
}
#sections .panel li.map p a:after {
  content: '\00BB';
  padding-left: 0.2em;
}
/* CSS Document */
#PeopleListing li a.more {
  text-transform: uppercase;
  display: none;
}
#PeopleListing li a.more:after {
  content: '\00BB';
  padding-left: 0.2em;
}
#PeopleListing li h3 {
  font-size: 1.8em;
}
#PeopleListing li h4 {
  font-size: 1.3em;
  text-transform: uppercase;
  color: #434343;
  margin-bottom: 0.5em;
}
#PeopleListing li div.desc p {
  color: #999999;
}
form.AutoForm {
  background: none;
  margin-bottom: 3em;
}
form.AutoForm h3 {
  font-size: 1.6em;
  margin: 0 0 1em;
}
form.AutoForm .message:not(textarea) {
  border: none;
  background: #9FB95D;
  padding: 1em;
  margin: 0 0 2em;
}
form.AutoForm .message:not(textarea).error {
  background: #E6514D;
}
form.AutoForm .message:not(textarea) p {
  font-size: 1.4em;
  padding: 0 0 1em;
  color: #FFFFFF;
  font-family: "adelle", Georgia, "Times New Roman", Times, serif;
  visibility: hidden;
}
.no-js form.AutoForm .message:not(textarea) p,
.wf-adelle-n3-active form.AutoForm .message:not(textarea) p,
.wf-adelle-n3-inactive form.AutoForm .message:not(textarea) p {
  visibility: visible;
}
form.AutoForm .message:not(textarea) p:last-child {
  padding-bottom: 0;
}
form.AutoForm .message:not(textarea) ul {
  font-size: 1em;
  margin-top: -0.8em;
  padding: 0 0 0 0em;
}
form.AutoForm .message:not(textarea) ul li {
  padding: 0;
  font-size: 1.4em;
  font-family: "adelle", Georgia, "Times New Roman", Times, serif;
  visibility: hidden;
}
.no-js form.AutoForm .message:not(textarea) ul li,
.wf-adelle-n3-active form.AutoForm .message:not(textarea) ul li,
.wf-adelle-n3-inactive form.AutoForm .message:not(textarea) ul li {
  visibility: visible;
}
form.AutoForm fieldset {
  border: none;
  padding: 0 ;
}
form.AutoForm fieldset fieldset.select {
  padding: 0 0 1em;
}
form.AutoForm fieldset fieldset.select b.label {
  display: none;
}
form.AutoForm label {
  margin: 0 0 2em;
}
form.AutoForm label a.remove {
  font-family: "adelle", Georgia, "Times New Roman", Times, serif;
  visibility: hidden;
  position: absolute;
  top: auto;
  right: 0.7em;
  bottom: 0.7em;
  left: auto;
  text-transform: uppercase;
  color: #FFFFFF;
  background: #434343;
  font-size: 1.2em;
  padding: 0.1em 0.3em;
  border-radius: 0.2em;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
}
.no-js form.AutoForm label a.remove,
.wf-adelle-n3-active form.AutoForm label a.remove,
.wf-adelle-n3-inactive form.AutoForm label a.remove {
  visibility: visible;
}
form.AutoForm label a.remove:hover {
  background: #232323;
}
form.AutoForm label b,
form.AutoForm h4 {
  padding: 0 0 0.4em;
  margin: 0;
  text-indent: 0;
  display: block;
  font-size: 1.6em;
  color: #0085BA;
  text-transform: lowercase;
  font-family: 'Gotham SSm A', 'Gotham SSm B', Arial, Helvetica, sans-serif;
  font-weight: 400;
  font-style: normal;
  visibility: hidden;
  font-weight: bold;
}
.no-js form.AutoForm label b,
.no-js form.AutoForm h4,
.wf-gothamssma-n4-active form.AutoForm label b,
.wf-gothamssma-n4-active form.AutoForm h4,
.wf-gothamssmb-n4-active form.AutoForm label b,
.wf-gothamssmb-n4-active form.AutoForm h4,
.wf-gothamssmb-n4-inactive form.AutoForm label b,
.wf-gothamssmb-n4-inactive form.AutoForm h4,
.wf-gothamssma-n4-inactive form.AutoForm label b,
.wf-gothamssma-n4-inactive form.AutoForm h4 {
  visibility: visible;
}
.placeholder form.AutoForm label b,
.placeholder form.AutoForm h4 {
  position: absolute;
  top: -9999em;
  right: -9999em;
  bottom: auto;
  left: auto;
}
form.AutoForm .g-recaptcha {
  display: block;
  position: relative;
  margin-bottom: 1em;
  overflow: hidden;
}
form.AutoForm p.small {
  padding: 2em 0 0;
}
form.AutoForm input,
form.AutoForm select,
form.AutoForm textarea {
  font-size: 1.8em;
  line-height: 2.4em;
  height: 2.4em;
  display: block;
  width: 100%;
  padding: 0 2%;
  border: none;
  border: 1px solid #BBBBBB;
  font-family: 'Gotham SSm A', 'Gotham SSm B', Arial, Helvetica, sans-serif;
  font-weight: 400;
  font-style: normal;
  visibility: hidden;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border-radius: 0;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
}
.no-js form.AutoForm input,
.no-js form.AutoForm select,
.no-js form.AutoForm textarea,
.wf-gothamssma-n4-active form.AutoForm input,
.wf-gothamssma-n4-active form.AutoForm select,
.wf-gothamssma-n4-active form.AutoForm textarea,
.wf-gothamssmb-n4-active form.AutoForm input,
.wf-gothamssmb-n4-active form.AutoForm select,
.wf-gothamssmb-n4-active form.AutoForm textarea,
.wf-gothamssmb-n4-inactive form.AutoForm input,
.wf-gothamssmb-n4-inactive form.AutoForm select,
.wf-gothamssmb-n4-inactive form.AutoForm textarea,
.wf-gothamssma-n4-inactive form.AutoForm input,
.wf-gothamssma-n4-inactive form.AutoForm select,
.wf-gothamssma-n4-inactive form.AutoForm textarea {
  visibility: visible;
}
form.AutoForm select {
  padding-right: 0 ;
  border: none;
  outline: none;
}
form.AutoForm textarea {
  height: 10em;
  line-height: 1.4;
  padding-top: 0.5em;
  padding-bottom: 0.5em;
}
form.AutoForm button {
  background: #0085BA;
  z-index: 2;
  display: block;
  border: none;
  color: #FFFFFF;
  text-transform: uppercase;
  font-family: 'Gotham SSm A', 'Gotham SSm B', Arial, Helvetica, sans-serif;
  font-weight: 400;
  font-style: normal;
  visibility: hidden;
  font-weight: bold;
  margin: 0;
  padding: 0.3em 1.4em;
  font-size: 2.2em;
  width: auto;
}
.no-js form.AutoForm button,
.wf-gothamssma-n4-active form.AutoForm button,
.wf-gothamssmb-n4-active form.AutoForm button,
.wf-gothamssmb-n4-inactive form.AutoForm button,
.wf-gothamssma-n4-inactive form.AutoForm button {
  visibility: visible;
}
form.AutoForm label.Message ~ p.small {
  opacity: 0.8;
  padding: 1em 0 2em;
}
.tpl_resources #PeopleListing p a,
.tpl_resources #directions p a {
  color: #874D89;
}
.tpl_resources #PeopleListing p a[class*="icon-"],
.tpl_resources #directions p a[class*="icon-"] {
  display: block;
  padding-left: 1.4em;
  color: #434343;
  font-weight: normal;
}
.tpl_resources #PeopleListing p a[class*="icon-"]:before,
.tpl_resources #directions p a[class*="icon-"]:before {
  color: #874D89;
  float: left;
  margin-top: 0.1em;
  margin-left: -1.4em;
}
.tpl_resources #PeopleListing address b,
.tpl_resources #directions address b {
  color: #874D89;
}
.tpl_resources #PeopleListing p.highlight,
.tpl_resources #directions p.highlight,
.tpl_resources #PeopleListing h3,
.tpl_resources #directions h3,
.tpl_resources #PeopleListing h4,
.tpl_resources #directions h4 {
  color: #874D89;
}
.tpl_resources #PeopleListing ul li h3,
.tpl_resources #directions ul li h3,
.tpl_resources #PeopleListing .listing h3,
.tpl_resources #directions .listing h3 {
  color: #232323;
}
.tpl_resources form.AutoForm h3,
.tpl_resources form.AutoForm label b {
  color: #874D89;
}
.tpl_resources form.AutoForm button {
  background: #874D89;
}
.tpl_resources .page_title {
  background: #874D89;
}
.tpl_resources .page_title * {
  color: #FFFFFF;
}
.tpl_resources h2.date {
  color: #FFFFFF;
  background: #874D89;
}
.tpl_resources h2.date b {
  color: #FFFFFF;
}
.tpl_resources .listing a.more-info,
.tpl_resources .listing .meta a {
  color: #874D89;
}
.tpl_resources .listing a.more-info b,
.tpl_resources .listing .meta a b {
  color: #874D89;
}
.tpl_resources .listing li h4 {
  color: #874D89;
}
.tpl_resources .listing li.files a:before {
  background: #874D89;
}
.tpl_resources .listing-single h1 {
  color: #874D89;
}
.tpl_resources .listing-single h1 a {
  color: #874D89;
}
.tpl_resources .listing-single ul.meta a {
  color: #874D89;
}
.tpl_resources .listing-single .content p a {
  color: #874D89;
}
.tpl_resources .listing-single .content p a:before {
  background: #874D89;
}
.tpl_resources .listing-sidebar h2 a,
.tpl_resources .listing-sidebar h2 b {
  color: #874D89;
}
.tpl_resources .listing-sidebar h3 {
  color: #874D89;
}
.tpl_resources .listing-sidebar h3 .next {
  border-left-color: #874D89;
}
.tpl_resources .listing-sidebar h3 .prev {
  border-right-color: #874D89;
}
.tpl_resources .listing-sidebar form button {
  background: #874D89;
}
.tpl_resources .listing-sidebar p a:before {
  color: #874D89;
}
.no-js .tpl_resources .listing-sidebar aside:target h2 a:before,
.js .tpl_resources .listing-sidebar aside.target h2 a:before {
  color: #874D89;
}
.tpl_resources .listing-sidebar .mini-calendar ul li a {
  color: #874D89;
}
.tpl_resources .sidebar-toggles a.selected {
  background: #874D89;
}
.tpl_resources .pagination .pos b {
  color: #874D89;
}
.tpl_resources .pagination.calendar .pos,
.tpl_resources .pagination.calendar .pos * {
  color: #874D89;
}
.js .tpl_resources .pagination.calendar .next[href],
.js .tpl_resources .pagination.calendar .prev[href] {
  background: #874D89;
}
.tpl_resources .pagination a.prev {
  border-right-color: #874D89;
}
.tpl_resources .pagination a.next {
  border-left-color: #874D89;
}
.tpl_calendar #PeopleListing p a,
.tpl_calendar #directions p a {
  color: #9FB95D;
}
.tpl_calendar #PeopleListing p a[class*="icon-"],
.tpl_calendar #directions p a[class*="icon-"] {
  display: block;
  padding-left: 1.4em;
  color: #434343;
  font-weight: normal;
}
.tpl_calendar #PeopleListing p a[class*="icon-"]:before,
.tpl_calendar #directions p a[class*="icon-"]:before {
  color: #9FB95D;
  float: left;
  margin-top: 0.1em;
  margin-left: -1.4em;
}
.tpl_calendar #PeopleListing address b,
.tpl_calendar #directions address b {
  color: #9FB95D;
}
.tpl_calendar #PeopleListing p.highlight,
.tpl_calendar #directions p.highlight,
.tpl_calendar #PeopleListing h3,
.tpl_calendar #directions h3,
.tpl_calendar #PeopleListing h4,
.tpl_calendar #directions h4 {
  color: #9FB95D;
}
.tpl_calendar #PeopleListing ul li h3,
.tpl_calendar #directions ul li h3,
.tpl_calendar #PeopleListing .listing h3,
.tpl_calendar #directions .listing h3 {
  color: #232323;
}
.tpl_calendar form.AutoForm h3,
.tpl_calendar form.AutoForm label b {
  color: #9FB95D;
}
.tpl_calendar form.AutoForm button {
  background: #9FB95D;
}
.tpl_calendar .page_title {
  background: #9FB95D;
}
.tpl_calendar .page_title * {
  color: #FFFFFF;
}
.tpl_calendar h2.date {
  color: #232323;
  background: #9FB95D;
}
.tpl_calendar h2.date b {
  color: #FFFFFF;
}
.tpl_calendar .listing a.more-info,
.tpl_calendar .listing .meta a {
  color: #9FB95D;
}
.tpl_calendar .listing a.more-info b,
.tpl_calendar .listing .meta a b {
  color: #9FB95D;
}
.tpl_calendar .listing li h4 {
  color: #9FB95D;
}
.tpl_calendar .listing li.files a:before {
  background: #9FB95D;
}
.tpl_calendar .listing-single h1 {
  color: #9FB95D;
}
.tpl_calendar .listing-single h1 a {
  color: #9FB95D;
}
.tpl_calendar .listing-single ul.meta a {
  color: #9FB95D;
}
.tpl_calendar .listing-single .content p a {
  color: #9FB95D;
}
.tpl_calendar .listing-single .content p a:before {
  background: #9FB95D;
}
.tpl_calendar .listing-sidebar h2 a,
.tpl_calendar .listing-sidebar h2 b {
  color: #9FB95D;
}
.tpl_calendar .listing-sidebar h3 {
  color: #9FB95D;
}
.tpl_calendar .listing-sidebar h3 .next {
  border-left-color: #9FB95D;
}
.tpl_calendar .listing-sidebar h3 .prev {
  border-right-color: #9FB95D;
}
.tpl_calendar .listing-sidebar form button {
  background: #9FB95D;
}
.tpl_calendar .listing-sidebar p a:before {
  color: #9FB95D;
}
.no-js .tpl_calendar .listing-sidebar aside:target h2 a:before,
.js .tpl_calendar .listing-sidebar aside.target h2 a:before {
  color: #9FB95D;
}
.tpl_calendar .listing-sidebar .mini-calendar ul li a {
  color: #9FB95D;
}
.tpl_calendar .sidebar-toggles a.selected {
  background: #9FB95D;
}
.tpl_calendar .pagination .pos b {
  color: #9FB95D;
}
.tpl_calendar .pagination.calendar .pos,
.tpl_calendar .pagination.calendar .pos * {
  color: #9FB95D;
}
.js .tpl_calendar .pagination.calendar .next[href],
.js .tpl_calendar .pagination.calendar .prev[href] {
  background: #9FB95D;
}
.tpl_calendar .pagination a.prev {
  border-right-color: #9FB95D;
}
.tpl_calendar .pagination a.next {
  border-left-color: #9FB95D;
}
.tpl_calendar #CalendarSearch h2 {
  position: absolute;
  top: -999em;
  right: auto;
  bottom: auto;
  left: -999em;
}
.tpl_people #PeopleListing p a,
.tpl_contactform #PeopleListing p a,
.tpl_people #directions p a,
.tpl_contactform #directions p a {
  color: #EF8F23;
}
.tpl_people #PeopleListing p a[class*="icon-"],
.tpl_contactform #PeopleListing p a[class*="icon-"],
.tpl_people #directions p a[class*="icon-"],
.tpl_contactform #directions p a[class*="icon-"] {
  display: block;
  padding-left: 1.4em;
  color: #434343;
  font-weight: normal;
}
.tpl_people #PeopleListing p a[class*="icon-"]:before,
.tpl_contactform #PeopleListing p a[class*="icon-"]:before,
.tpl_people #directions p a[class*="icon-"]:before,
.tpl_contactform #directions p a[class*="icon-"]:before {
  color: #EF8F23;
  float: left;
  margin-top: 0.1em;
  margin-left: -1.4em;
}
.tpl_people #PeopleListing address b,
.tpl_contactform #PeopleListing address b,
.tpl_people #directions address b,
.tpl_contactform #directions address b {
  color: #EF8F23;
}
.tpl_people #PeopleListing p.highlight,
.tpl_contactform #PeopleListing p.highlight,
.tpl_people #directions p.highlight,
.tpl_contactform #directions p.highlight,
.tpl_people #PeopleListing h3,
.tpl_contactform #PeopleListing h3,
.tpl_people #directions h3,
.tpl_contactform #directions h3,
.tpl_people #PeopleListing h4,
.tpl_contactform #PeopleListing h4,
.tpl_people #directions h4,
.tpl_contactform #directions h4 {
  color: #EF8F23;
}
.tpl_people #PeopleListing ul li h3,
.tpl_contactform #PeopleListing ul li h3,
.tpl_people #directions ul li h3,
.tpl_contactform #directions ul li h3,
.tpl_people #PeopleListing .listing h3,
.tpl_contactform #PeopleListing .listing h3,
.tpl_people #directions .listing h3,
.tpl_contactform #directions .listing h3 {
  color: #232323;
}
.tpl_people form.AutoForm h3,
.tpl_contactform form.AutoForm h3,
.tpl_people form.AutoForm label b,
.tpl_contactform form.AutoForm label b {
  color: #EF8F23;
}
.tpl_people form.AutoForm button,
.tpl_contactform form.AutoForm button {
  background: #EF8F23;
}
.tpl_people .page_title,
.tpl_contactform .page_title {
  background: #EF8F23;
}
.tpl_people .page_title *,
.tpl_contactform .page_title * {
  color: #FFFFFF;
}
.tpl_people h2.date,
.tpl_contactform h2.date {
  color: #FFFFFF;
  background: #EF8F23;
}
.tpl_people h2.date b,
.tpl_contactform h2.date b {
  color: #FFFFFF;
}
.tpl_people .listing a.more-info,
.tpl_contactform .listing a.more-info,
.tpl_people .listing .meta a,
.tpl_contactform .listing .meta a {
  color: #EF8F23;
}
.tpl_people .listing a.more-info b,
.tpl_contactform .listing a.more-info b,
.tpl_people .listing .meta a b,
.tpl_contactform .listing .meta a b {
  color: #EF8F23;
}
.tpl_people .listing li h4,
.tpl_contactform .listing li h4 {
  color: #EF8F23;
}
.tpl_people .listing li.files a:before,
.tpl_contactform .listing li.files a:before {
  background: #EF8F23;
}
.tpl_people .listing-single h1,
.tpl_contactform .listing-single h1 {
  color: #EF8F23;
}
.tpl_people .listing-single h1 a,
.tpl_contactform .listing-single h1 a {
  color: #EF8F23;
}
.tpl_people .listing-single ul.meta a,
.tpl_contactform .listing-single ul.meta a {
  color: #EF8F23;
}
.tpl_people .listing-single .content p a,
.tpl_contactform .listing-single .content p a {
  color: #EF8F23;
}
.tpl_people .listing-single .content p a:before,
.tpl_contactform .listing-single .content p a:before {
  background: #EF8F23;
}
.tpl_people .listing-sidebar h2 a,
.tpl_contactform .listing-sidebar h2 a,
.tpl_people .listing-sidebar h2 b,
.tpl_contactform .listing-sidebar h2 b {
  color: #EF8F23;
}
.tpl_people .listing-sidebar h3,
.tpl_contactform .listing-sidebar h3 {
  color: #EF8F23;
}
.tpl_people .listing-sidebar h3 .next,
.tpl_contactform .listing-sidebar h3 .next {
  border-left-color: #EF8F23;
}
.tpl_people .listing-sidebar h3 .prev,
.tpl_contactform .listing-sidebar h3 .prev {
  border-right-color: #EF8F23;
}
.tpl_people .listing-sidebar form button,
.tpl_contactform .listing-sidebar form button {
  background: #EF8F23;
}
.tpl_people .listing-sidebar p a:before,
.tpl_contactform .listing-sidebar p a:before {
  color: #EF8F23;
}
.no-js .tpl_people .listing-sidebar aside:target h2 a:before,
.no-js .tpl_contactform .listing-sidebar aside:target h2 a:before,
.js .tpl_people .listing-sidebar aside.target h2 a:before,
.js .tpl_contactform .listing-sidebar aside.target h2 a:before {
  color: #EF8F23;
}
.tpl_people .listing-sidebar .mini-calendar ul li a,
.tpl_contactform .listing-sidebar .mini-calendar ul li a {
  color: #EF8F23;
}
.tpl_people .sidebar-toggles a.selected,
.tpl_contactform .sidebar-toggles a.selected {
  background: #EF8F23;
}
.tpl_people .pagination .pos b,
.tpl_contactform .pagination .pos b {
  color: #EF8F23;
}
.tpl_people .pagination.calendar .pos,
.tpl_contactform .pagination.calendar .pos,
.tpl_people .pagination.calendar .pos *,
.tpl_contactform .pagination.calendar .pos * {
  color: #EF8F23;
}
.js .tpl_people .pagination.calendar .next[href],
.js .tpl_contactform .pagination.calendar .next[href],
.js .tpl_people .pagination.calendar .prev[href],
.js .tpl_contactform .pagination.calendar .prev[href] {
  background: #EF8F23;
}
.tpl_people .pagination a.prev,
.tpl_contactform .pagination a.prev {
  border-right-color: #EF8F23;
}
.tpl_people .pagination a.next,
.tpl_contactform .pagination a.next {
  border-left-color: #EF8F23;
}
.tpl_sitehome .page_title {
  position: absolute;
  top: -999em;
  right: auto;
  bottom: auto;
  left: -999em;
}
#notices {
  background: transparent;
}
#notices .swiper-container {
  background: #0073a1;
  margin: 2em auto;
  width: 80em;
  max-width: 100%;
  font-size: 1em;
}
#notices .swiper-container .swiper-slide {
  display: none;
  width: 42em;
  max-width: 94%;
  font-size: 1em;
  text-align: center;
  padding: 2em 3%;
  margin: 0 auto;
}
#notices .swiper-container .swiper-slide.n_1 {
  display: block;
}
#notices .swiper-container .swiper-slide h2,
#notices .swiper-container .swiper-slide h3,
#notices .swiper-container .swiper-slide dd {
  width: 100%;
  padding-left: 0;
  padding-right: 0;
}
#notices .swiper-container .swiper-slide h2 {
  font-family: "adelle", Georgia, "Times New Roman", Times, serif;
  visibility: hidden;
  text-transform: none;
  color: #FFFFFF;
  font-size: 3em;
  padding-bottom: 0.3333em;
  margin: 0;
}
.no-js #notices .swiper-container .swiper-slide h2,
.wf-adelle-n3-active #notices .swiper-container .swiper-slide h2,
.wf-adelle-n3-inactive #notices .swiper-container .swiper-slide h2 {
  visibility: visible;
}
#notices .swiper-container .swiper-slide h3 {
  color: #9FB95D;
  font-family: 'Gotham SSm A', 'Gotham SSm B', Arial, Helvetica, sans-serif;
  font-weight: normal;
  font-style: normal;
  visibility: hidden;
  font-size: 1.8em;
  padding-bottom: 0.55555556em;
}
.no-js #notices .swiper-container .swiper-slide h3,
.wf-gothamssma-n4-active #notices .swiper-container .swiper-slide h3,
.wf-gothamssmb-n4-active #notices .swiper-container .swiper-slide h3,
.wf-gothamssmb-n4-inactive #notices .swiper-container .swiper-slide h3,
.wf-gothamssma-n4-inactive #notices .swiper-container .swiper-slide h3 {
  visibility: visible;
}
#notices .swiper-container .swiper-slide dd {
  color: #FFFFFF;
  font-size: 1.4em;
  font-family: 'Gotham SSm A', 'Gotham SSm B', Arial, Helvetica, sans-serif;
  font-weight: normal;
  font-style: normal;
  visibility: hidden;
  display: block;
  margin: 0;
}
.no-js #notices .swiper-container .swiper-slide dd,
.wf-gothamssma-n4-active #notices .swiper-container .swiper-slide dd,
.wf-gothamssmb-n4-active #notices .swiper-container .swiper-slide dd,
.wf-gothamssmb-n4-inactive #notices .swiper-container .swiper-slide dd,
.wf-gothamssma-n4-inactive #notices .swiper-container .swiper-slide dd {
  visibility: visible;
}
#notices .swiper-container .swiper-slide dd a {
  color: #9DCBD9;
  font-weight: bold;
}
#scroller {
  width: 80em;
  max-width: 100%;
  overflow: hidden;
  height: auto;
  margin: 0 auto 3em;
  padding: 0;
  position: relative;
}
#scroller .container {
  width: 100%;
  max-width: none;
  padding: 50% 0 14em;
}
#scroller .swiper-container {
  width: 100%;
  max-width: none;
  white-space: nowrap;
  height: auto;
  float: left;
  background: none;
  overflow: hidden;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
#scroller .swiper-wrapper {
  height: auto;
  position: relative;
  width: 100%;
}
#scroller .swiper-slide {
  text-align: center;
  margin: 0 0 10em;
  width: 100%;
  position: relative;
  display: block;
  clear: both;
}
#scroller .swiper-slide#intro-swiper2 .caption .title,
#scroller .swiper-slide#intro-swiper7 .caption .title,
#scroller .swiper-slide#intro-swiper12 .caption .title,
#scroller .swiper-slide#intro-swiper17 .caption .title {
  background: #E6514D;
}
#scroller .swiper-slide#intro-swiper2 .caption .more,
#scroller .swiper-slide#intro-swiper7 .caption .more,
#scroller .swiper-slide#intro-swiper12 .caption .more,
#scroller .swiper-slide#intro-swiper17 .caption .more {
  color: #E6514D;
}
#scroller .swiper-slide#intro-swiper3 .caption .title,
#scroller .swiper-slide#intro-swiper8 .caption .title,
#scroller .swiper-slide#intro-swiper13 .caption .title,
#scroller .swiper-slide#intro-swiper18 .caption .title {
  background: #9FB95D;
}
#scroller .swiper-slide#intro-swiper3 .caption .more,
#scroller .swiper-slide#intro-swiper8 .caption .more,
#scroller .swiper-slide#intro-swiper13 .caption .more,
#scroller .swiper-slide#intro-swiper18 .caption .more {
  color: #9FB95D;
}
#scroller .swiper-slide#intro-swiper4 .caption .title,
#scroller .swiper-slide#intro-swiper9 .caption .title,
#scroller .swiper-slide#intro-swiper14 .caption .title,
#scroller .swiper-slide#intro-swiper19 .caption .title {
  background: #EF8F23;
}
#scroller .swiper-slide#intro-swiper4 .caption .more,
#scroller .swiper-slide#intro-swiper9 .caption .more,
#scroller .swiper-slide#intro-swiper14 .caption .more,
#scroller .swiper-slide#intro-swiper19 .caption .more {
  color: #EF8F23;
}
#scroller .swiper-slide#intro-swiper5 .caption .title,
#scroller .swiper-slide#intro-swiper10 .caption .title,
#scroller .swiper-slide#intro-swiper15 .caption .title,
#scroller .swiper-slide#intro-swiper20 .caption .title {
  background: #874D89;
}
#scroller .swiper-slide#intro-swiper5 .caption .more,
#scroller .swiper-slide#intro-swiper10 .caption .more,
#scroller .swiper-slide#intro-swiper15 .caption .more,
#scroller .swiper-slide#intro-swiper20 .caption .more {
  color: #874D89;
}
#scroller .swiper-slide a {
  display: block;
  position: relative;
  width: 100%;
  height: 0;
  margin: 0 0 0;
  padding-top: 50%;
  padding-bottom: 14em;
}
#scroller .swiper-slide a img {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: auto;
  margin: 0;
  display: block;
  float: left;
  border: none;
  visibility: visible;
}
#scroller .swiper-slide a .caption {
  display: block;
  white-space: normal;
  text-align: left;
  position: absolute;
  background: #FFFFFF;
  width: auto;
  padding: 0 0 0;
  right: 0;
  padding-top: 50%;
  left: 0;
  bottom: 1em;
  margin: 0;
  background: none;
  z-index: 10;
  height: auto;
}
#scroller .swiper-slide a .caption br {
  display: none;
}
#scroller .swiper-slide a .caption .title {
  font-family: "adelle", Georgia, "Times New Roman", Times, serif;
  visibility: hidden;
  text-transform: lowercase;
  color: #FFFFFF;
  background: #0085BA;
  font-size: 3em;
  line-height: 1.33333333em;
  padding: 0 3%;
  display: block;
  font-weight: normal;
  margin: 0;
}
.no-js #scroller .swiper-slide a .caption .title,
.wf-adelle-n3-active #scroller .swiper-slide a .caption .title,
.wf-adelle-n3-inactive #scroller .swiper-slide a .caption .title {
  visibility: visible;
}
#scroller .swiper-slide a .caption .desc {
  display: block;
  padding: 1em 3% 0;
  background: #FFFFFF;
  margin: 0;
  min-height: 8.2em;
}
#scroller .swiper-slide a .caption .desc p {
  font-size: 1.4em;
}
#scroller .swiper-slide a .caption .desc .more {
  display: block;
  padding: 0;
  color: #0085BA;
  background: #FFFFFF;
  margin: 0;
  font-size: 1.4em;
  font-family: 'Gotham SSm A', 'Gotham SSm B', Arial, Helvetica, sans-serif;
  font-weight: bold;
  font-style: normal;
  visibility: hidden;
}
.no-js #scroller .swiper-slide a .caption .desc .more,
.wf-gothamssma-n4-active #scroller .swiper-slide a .caption .desc .more,
.wf-gothamssmb-n4-active #scroller .swiper-slide a .caption .desc .more,
.wf-gothamssmb-n4-inactive #scroller .swiper-slide a .caption .desc .more,
.wf-gothamssma-n4-inactive #scroller .swiper-slide a .caption .desc .more {
  visibility: visible;
}
#scroller .swiper-slide a .caption .desc .more:after {
  content: '\00BB';
  padding-left: 0.2em;
}
#scroller .swiper-slide a.next,
#scroller .swiper-slide a.prev {
  height: 0;
  padding: 25% 0;
  position: absolute;
  top: 0;
  color: #FFFFFF;
  font-size: 1em;
  line-height: 3em;
  width: 5em;
  z-index: 100;
  text-decoration: none;
  text-transform: uppercase;
  font-weight: bold;
}
#scroller .swiper-slide a.next:after,
#scroller .swiper-slide a.prev:after {
  content: '';
}
#scroller .swiper-slide a.next:hover,
#scroller .swiper-slide a.prev:hover {
  text-decoration: none;
}
#scroller .swiper-slide a.next:hover b,
#scroller .swiper-slide a.prev:hover b {
  -webkit-box-shadow: inset 0 0 10em rgba(0, 0, 0, 0.5);
  box-shadow: inset 0 0 10em rgba(0, 0, 0, 0.5);
}
#scroller .swiper-slide a.next b,
#scroller .swiper-slide a.prev b {
  font-size: 1.4em;
  width: 1.57142857em;
  height: 1.71428571em;
  line-height: 1.57142857em;
  margin-top: -0.85714286em;
  font-family: Verdana, Geneva, sans-serif;
  display: block;
  text-align: center;
  background: #434343;
  background: #232323;
  border-radius: 50%;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
}
#scroller .swiper-slide a.prev {
  left: 0;
}
#scroller .swiper-slide a.prev b {
  float: left;
  padding-right: 0.14285714em;
  margin-left: 0.71428571em;
}
#scroller .swiper-slide a.next {
  right: 0;
}
#scroller .swiper-slide a.next b {
  float: right;
  padding-left: 0.14285714em;
  margin-right: 0.71428571em;
}
#scroller .swiper-tabs {
  position: absolute;
  top: -999em;
  right: auto;
  bottom: auto;
  left: -999em;
}
/*
 * Swiper - Mobile Touch Slider CSS
 * http://www.idangero.us/sliders/swiper
 *
 * Vladimir Kharlampidi, The iDangero.us
 * http://www.idangero.us/
 * 
 * Copyright 2012-2013, Vladimir Kharlampidi
 * The iDangero.us
 * http://www.idangero.us
 *
 * Licensed under GPL & MIT
 *
*/
/* ===============================================================
Basic Swiper Styles 
================================================================*/
.swiper-container {
  overflow: hidden;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  /* Fix of Webkit flickering */
  z-index: 1;
}
.swiper-wrapper {
  -webkit-transition-property: -webkit-transform, left, top;
  -webkit-transition-duration: 0s;
  -webkit-transform: translate3d(0px, 0, 0);
  -webkit-transition-timing-function: ease;
  -moz-transition-property: -moz-transform, left, top;
  -moz-transition-duration: 0s;
  -moz-transform: translate3d(0px, 0, 0);
  -moz-transition-timing-function: ease;
  -o-transition-property: -o-transform, left, top;
  -o-transition-duration: 0s;
  -o-transform: translate3d(0px, 0, 0);
  -o-transition-timing-function: ease;
  -o-transform: translate(0px, 0px);
  -ms-transition-property: -ms-transform, left, top;
  -ms-transition-duration: 0s;
  -ms-transform: translate3d(0px, 0, 0);
  -ms-transition-timing-function: ease;
  -webkit-transition-property: left, top, -webkit-transform;
  transition-property: left, top, -webkit-transform;
  -o-transition-property: transform, left, top;
  transition-property: transform, left, top;
  transition-property: transform, left, top, -webkit-transform;
  transition-duration: 0s;
  transform: translate3d(0px, 0, 0);
  transition-timing-function: ease;
}
.swiper-free-mode > .swiper-wrapper {
  -webkit-transition-timing-function: ease-out;
  -o-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
  margin: 0 auto;
}
/* IE10 Windows Phone 8 Fixes */
.swiper-wp8-horizontal {
  -ms-touch-action: pan-y;
}
.swiper-wp8-vertical {
  -ms-touch-action: pan-x;
}
.swiper-slide {
  /* Specify Slides's Size: */
  width: 102%;
}
.swiper-slide a.next,
.swiper-slide a.prev {
  display: none;
}
#scroller {
  position: relative;
  max-width: 100%;
  width: 42em;
  margin-left: auto;
  margin-right: auto;
  /*margin-bottom: 0;
	padding-bottom: 0;
	background: yellow;*/
  /*
	.swiper-nav{	
		
		position: static;
	
		a{
			z-index: 2;
			position: absolute;
			display: block;
			width: 4 * $baseline;
			height: 0;
			padding-top: 4 * $baseline;
			overflow: hidden;
			background: $dkpurple;
			top: 50%;
			margin-top: -2 * $baseline;
			border-radius: 50%;
			
			&:hover{
				background: $mdpurple;
			}
			
			&:before{
				content:'';
				display:block;
				height: 0;
				width: 0;
				position: absolute;
				top: 50%;
				left: 50%;
				margin-top: -$baseline;
				
				border: $baseline solid transparent;
			}
			
			&.prev{ 
				left: $baseline; 
				&:before{
					border-right: (1.4 * $baseline) solid $white;
					border-left: none;
					margin-left: -$baseline/1.2;
				}
			}
			
			&.next{ 
				right: $baseline; 
				&:before{		
					border-right: none;		
					margin-left: -$baseline/2;
					border-left: (1.4 * $baseline) solid $white;
				}
			}		
		}
		
	}*/
}
#scroller,
#scroller * {
  -webkit-user-select: none;
  -moz-user-select: none;
  -o-user-select: none;
  -ms-user-select: none;
      user-select: none;
}
#scroller .swiper-slide {
  display: inline-block;
  margin-right: 0;
  /*.js &{
			float: left;
			display: block;
			margin-right:0;
			
		}*/
}
#scroller .swiper-slide .item {
  background-position: center top;
  background-size: 100% auto;
  background-repeat: no-repeat;
}
#scroller .swiper-slide a.next,
#scroller .swiper-slide a.prev {
  display: none;
}
#scroller .swiper-slide img {
  visibility: hidden;
}
#scroller .swiper-container {
  margin-bottom: 0;
}
#scroller .swiper-container.swipeable white .swiper-slide {
  float: left;
  display: block;
  margin-right: 0;
}
#scroller .swiper-nav {
  width: 100%;
  height: 0;
  background: none;
  position: absolute;
  top: 0;
  right: 0;
  bottom: auto;
  left: 0;
  padding-top: 25%;
}
#scroller .swiper-nav a.next,
#scroller .swiper-nav a.prev {
  font-size: 1.2em;
  width: 2.08333333em;
  height: 2.25em;
  line-height: 2.25em;
  margin-top: -1.08333333em;
  font-family: Verdana, Geneva, sans-serif;
  display: block;
  text-align: center;
  background: #434343;
  color: #FFFFFF;
  background: #232323;
  border-radius: 50%;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  position: relative;
  z-index: 10;
  padding-top: 0 !important;
}
#scroller .swiper-nav a.next:before,
#scroller .swiper-nav a.prev:before {
  content: '';
  display: block;
  position: absolute;
  top: 0.58333333em;
  left: 0;
  height: 0;
  width: 0;
  border: 0.58333333em solid transparent;
}
#scroller .swiper-nav a.next:after,
#scroller .swiper-nav a.prev:after {
  content: '';
  display: block;
  position: absolute;
  top: -2em;
  right: -2em;
  bottom: -2em;
  left: -2em;
  background: rgba(255, 255, 255, 0.0001);
  border-radius: 50%;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
}
#scroller .swiper-nav a.next:hover,
#scroller .swiper-nav a.prev:hover {
  text-decoration: none;
  -webkit-box-shadow: inset 0 0 10em rgba(0, 0, 0, 0.5);
  box-shadow: inset 0 0 10em rgba(0, 0, 0, 0.5);
}
#scroller .swiper-nav a.prev {
  float: left;
  margin-left: 0.41666667em;
  padding-right: 0.16666667em;
}
#scroller .swiper-nav a.prev:before {
  border-right: 0.83333333em solid #FFFFFF;
  left: 0em;
}
#scroller .swiper-nav a.next {
  float: right;
  margin-right: 0.41666667em;
  padding-left: 0.16666667em;
}
#scroller .swiper-nav a.next:before {
  border-left: 0.83333333em solid #FFFFFF;
  left: 0.83333333em;
}
@media only screen and (min-width: 47.0625em) {
  #scroller {
    width: 73.6em;
    max-width: none;
    margin-top: -5em;
    /*
		a{
			
		}
		*/
  }
  #scroller .container {
    padding-top: 26.65em;
    padding-bottom: 0;
    height: auto;
  }
  #scroller .swiper-container {
    right: 1em;
    left: 1em;
    width: auto;
  }
  #scroller .swiper-nav {
    height: 0px;
    padding-top: 0;
    width: 53.3em;
    position: absolute;
    top: 50%;
    right: 1em;
    bottom: auto;
    left: auto;
  }
  #scroller .swiper-nav a.prev {
    margin-left: -0.5em;
  }
  #scroller .swiper-nav a.next {
    margin-right: -0.5em;
  }
  #scroller .swiper-slide .item {
    padding-top: 26.65em;
    padding-bottom: 0;
    height: auto;
    background-size: 53.3em auto;
    background-position: right top;
  }
  #scroller .swiper-slide .item img {
    width: 53.3em;
  }
  #scroller .swiper-slide .item .caption {
    width: 15.9em;
    padding: 0 0 1.6em 0.8em;
    position: absolute;
    top: auto;
    right: auto;
    bottom: 0;
    left: 0;
  }
  #scroller .swiper-slide .item .caption .desc {
    padding-left: 0;
    padding-right: 0;
  }
  #scroller .swiper-slide .item .caption .title {
    background: none;
    color: #0085BA;
    padding-left: 0;
    padding-right: 0;
  }
  #scroller .swiper-slide#intro-swiper2 .caption .title,
  #scroller .swiper-slide#intro-swiper7 .caption .title,
  #scroller .swiper-slide#intro-swiper12 .caption .title,
  #scroller .swiper-slide#intro-swiper17 .caption .title {
    color: #E6514D;
    background: none;
  }
  #scroller .swiper-slide#intro-swiper3 .caption .title,
  #scroller .swiper-slide#intro-swiper8 .caption .title,
  #scroller .swiper-slide#intro-swiper13 .caption .title,
  #scroller .swiper-slide#intro-swiper18 .caption .title {
    color: #9FB95D;
    background: none;
  }
  #scroller .swiper-slide#intro-swiper4 .caption .title,
  #scroller .swiper-slide#intro-swiper9 .caption .title,
  #scroller .swiper-slide#intro-swiper14 .caption .title,
  #scroller .swiper-slide#intro-swiper19 .caption .title {
    color: #EF8F23;
    background: none;
  }
  #scroller .swiper-slide#intro-swiper5 .caption .title,
  #scroller .swiper-slide#intro-swiper10 .caption .title,
  #scroller .swiper-slide#intro-swiper15 .caption .title,
  #scroller .swiper-slide#intro-swiper20 .caption .title {
    color: #874D89;
    background: none;
  }
}
@media only screen and (min-width: 47.0625em) and (max-width: 62em) {
  #scroller .swiper-slide .item .caption .desc p {
    font-size: 1.2em;
  }
}
@media only screen and (min-width: 62.0625em) {
  #scroller {
    width: 96em;
    margin-top: -7em;
  }
  #scroller .container {
    padding-top: 35em;
  }
  #scroller .swiper-nav {
    width: 70em;
  }
  #scroller .swiper-slide .item {
    padding-top: 35em;
    background-size: 70em auto;
  }
  #scroller .swiper-slide .item img {
    width: 70em;
  }
  #scroller .swiper-slide .item .caption {
    width: 21em;
    padding: 0 0 2em 1em;
  }
}
