/* ==========================================================================
   BOILERPLATE STYLES V 4.1.0
   ========================================================================== */
/* =Notes
--------------------------------------------------------------
This stylesheet uses rem values with a pixel fallback. The rem
values (and line heights) are calculated using two variables:

$rembase:     14;
$line-height: 24;

---------- Examples

* Use a pixel value with a rem fallback for font-size, padding, margins, etc.
	padding: 5px 0;
	padding: 0.357142857rem 0; (5 / $rembase)

* Set a font-size and then set a line-height based on the font-size
	font-size: 16px
	font-size: 1.142857143rem; (16 / $rembase)
	line-height: 1.5; ($line-height / 16)

---------- Vertical spacing

Vertical spacing between most elements should use 24px or 48px
to maintain vertical rhythm:

.my-new-div {
	margin: 24px 0;
	margin: 1.714285714rem 0; ( 24 / $rembase )
}

---------- Further reading

http://snook.ca/archives/html_and_css/font-size-with-rem
http://blog.typekit.com/2011/11/09/type-study-sizing-the-legible-letter/


/* =Reset
-------------------------------------------------------------- */
/*
 * HTML5 Boilerplate
 *
 * What follows is the result of much research on cross-browser styling.
 * Credit left inline and big thanks to Nicolas Gallagher, Jonathan Neal,
 * Kroc Camen, and the H5BP dev community and team.
 */
/* ==========================================================================
   Base styles: opinionated defaults
   ========================================================================== */
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  vertical-align: baseline; }

body {
  line-height: 1; }

ol,
ul {
  list-style: none; }

blockquote,
q {
  quotes: none; }

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: '';
  content: none; }

table {
  border-collapse: collapse;
  border-spacing: 0; }

caption,
th,
td {
  font-weight: normal;
  text-align: left; }

h1,
h2,
h3,
h4,
h5,
h6 {
  clear: both; }

html {
  overflow-y: scroll;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%; }

a:focus {
  outline: thin dotted; }

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
nav,
section {
  display: block; }

audio,
canvas,
video {
  display: inline-block; }

audio:not([controls]) {
  display: none; }

del {
  color: #333; }

ins {
  background: #fff9c0;
  text-decoration: none; }

hr {
  background-color: #ccc;
  border: 0;
  height: 1px;
  margin: 24px;
  margin-bottom: 1.714285714rem; }

sub,
sup {
  line-height: 0;
  position: relative;
  vertical-align: baseline; }

sup {
  top: -0.5em; }

sub {
  bottom: -0.25em; }

small {
  font-size: smaller; }

img {
  border: 0;
  -ms-interpolation-mode: bicubic; }

/* Clearing floats */
.clear:after,
.wrapper:after,
.format-status .entry-header:after {
  clear: both; }

.clear:before,
.clear:after,
.wrapper:before,
.wrapper:after,
.format-status .entry-header:before,
.format-status .entry-header:after {
  display: table;
  content: ""; }

/*
 * Remove text-shadow in selection highlight: h5bp.com/i
 * These selection declarations have to be separate.
 * Customize the background color to match your design.
 */
::-moz-selection {
  background: #b3d4fc;
  text-shadow: none; }

::selection {
  background: #b3d4fc;
  text-shadow: none; }

/*
 * A better looking default horizontal rule
 */
hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #cccccc;
  margin: 1em 0;
  padding: 0; }

/*
 * Remove the gap between images and the bottom of their containers: h5bp.com/i/440
 */
img {
  vertical-align: middle; }

/*
 * Remove default fieldset styles.
 */
fieldset {
  border: 0;
  margin: 0;
  padding: 0; }

/*
 * Allow only vertical resizing of textareas.
 */
textarea {
  resize: vertical; }

/* ==========================================================================
   Helper classes
   ========================================================================== */
/*
 * Image replacement
 */
.ir {
  background-color: transparent;
  border: 0;
  overflow: hidden;
  /* IE 6/7 fallback */
  *text-indent: -9999px; }

.ir:before {
  content: "";
  display: block;
  width: 0;
  height: 150%; }

/*
 * Hide from both screenreaders and browsers: h5bp.com/u
 */
.hidden {
  display: none !important;
  visibility: hidden; }

/*
 * Hide only visually, but have it available for screenreaders: h5bp.com/v
 */
.visuallyhidden {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px; }

/*
 * Extends the .visuallyhidden class to allow the element to be focusable
 * when navigated to via the keyboard: h5bp.com/p
 */
.visuallyhidden.focusable:active,
.visuallyhidden.focusable:focus {
  clip: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  position: static;
  width: auto; }

/*
 * Hide visually and from screenreaders, but maintain layout
 */
.invisible {
  visibility: hidden; }

/* ==========================================================================
   Chrome Frame prompt
   ========================================================================== */
.chromeframe {
  margin: 0.2em 0;
  background: #ccc;
  color: #000;
  padding: 0.2em 0; }

/* ==========================================================================
   FORMS & BUTTONS
   ========================================================================== */
/* Form fields, general styles first */
button,
input,
textarea {
  border: 1px solid #cccccc;
  border-radius: 3px;
  font-family: inherit;
  padding: 6px;
  padding: 0.428571429rem; }

button,
input {
  line-height: normal; }

textarea {
  overflow: auto;
  vertical-align: top; }

/* Reset non-text input types */
input[type="checkbox"],
input[type="radio"],
input[type="file"],
input[type="hidden"],
input[type="image"],
input[type="color"] {
  border: 0;
  border-radius: 0;
  padding: 0; }

/* Buttons */
.menu-toggle,
input[type="submit"],
input[type="button"],
input[type="reset"],
article.post-password-required input[type=submit],
li.bypostauthor cite span {
  padding: 6px 10px;
  padding: 0.42857rem 0.71429rem;
  font-size: 11px;
  font-size: 0.785714286rem;
  line-height: 1.428571429;
  font-weight: normal;
  color: #7c7c7c;
  background-color: #e6e6e6;
  background-repeat: repeat-x;
  background-image: -moz-linear-gradient(top, #f4f4f4, #e6e6e6);
  background-image: -ms-linear-gradient(top, #f4f4f4, #e6e6e6);
  background-image: -webkit-linear-gradient(top, #f4f4f4, #e6e6e6);
  background-image: -o-linear-gradient(top, #f4f4f4, #e6e6e6);
  background-image: linear-gradient(top, #f4f4f4, #e6e6e6);
  border: 1px solid #d2d2d2;
  border-radius: 3px;
  box-shadow: 0 1px 2px rgba(64, 64, 64, 0.1); }

.menu-toggle,
button,
input[type="submit"],
input[type="button"],
input[type="reset"] {
  cursor: pointer; }

button[disabled],
input[disabled] {
  cursor: default; }

.menu-toggle:hover,
button:hover,
input[type="submit"]:hover,
input[type="button"]:hover,
input[type="reset"]:hover,
article.post-password-required input[type=submit]:hover {
  color: #5e5e5e;
  background-color: #ebebeb;
  background-repeat: repeat-x;
  background-image: -moz-linear-gradient(top, #f9f9f9, #ebebeb);
  background-image: -ms-linear-gradient(top, #f9f9f9, #ebebeb);
  background-image: -webkit-linear-gradient(top, #f9f9f9, #ebebeb);
  background-image: -o-linear-gradient(top, #f9f9f9, #ebebeb);
  background-image: linear-gradient(top, #f9f9f9, #ebebeb); }

.menu-toggle:active,
.menu-toggle.toggled-on,
button:active,
input[type="submit"]:active,
input[type="button"]:active,
input[type="reset"]:active {
  color: #757575;
  background-color: #e1e1e1;
  background-repeat: repeat-x;
  background-image: -moz-linear-gradient(top, #ebebeb, #e1e1e1);
  background-image: -ms-linear-gradient(top, #ebebeb, #e1e1e1);
  background-image: -webkit-linear-gradient(top, #ebebeb, #e1e1e1);
  background-image: -o-linear-gradient(top, #ebebeb, #e1e1e1);
  background-image: linear-gradient(top, #ebebeb, #e1e1e1);
  box-shadow: inset 0 0 8px 2px #c6c6c6, 0 1px 0 0 #f4f4f4;
  border: none; }

/*
 * Clearfix: contain floats
 *
 * For modern browsers
 * 1. The space content is one way to avoid an Opera bug when the
 *    `contenteditable` attribute is included anywhere else in the document.
 *    Otherwise it causes space to appear at the top and bottom of elements
 *    that receive the `clearfix` class.
 * 2. The use of `table` rather than `block` is only necessary if using
 *    `:before` to contain the top-margins of child elements.
 */
.clearfix:before,
.clearfix:after {
  content: " ";
  /* 1 */
  display: table;
  /* 2 */ }

.clearfix:after {
  clear: both; }

/*
 * For IE 6/7 only
 * Include this rule to trigger hasLayout and contain floats.
 */
.clearfix {
  *zoom: 1; }

/* ==========================================================================
   WEBSITE FONTS
   ========================================================================== */
@font-face {
  font-family: 'allerregular';
  src: url("fonts/aller_rg-webfont.eot");
  src: url("fonts/aller_rg-webfont.eot?#iefix") format("embedded-opentype"), url("fonts/aller_rg-webfont.woff") format("woff"), url("fonts/aller_rg-webfont.ttf") format("truetype"), url("fonts/aller_rg-webfont.svg#allerregular") format("svg");
  font-weight: normal;
  font-style: normal; }

@font-face {
  font-family: 'allerbold';
  src: url("fonts/aller_bd-webfont.eot");
  src: url("fonts/aller_bd-webfont.eot?#iefix") format("embedded-opentype"), url("fonts/aller_bd-webfont.woff") format("woff"), url("fonts/aller_bd-webfont.ttf") format("truetype"), url("fonts/aller_bd-webfont.svg#aller_bd") format("svg");
  font-weight: normal;
  font-style: normal; }

@font-face {
  font-family: 'garagegothic';
  src: url("fonts/garagegothic-bold-webfont.eot");
  src: url("fonts/garagegothic-bold-webfont.eot?#iefix") format("embedded-opentype"), url("fonts/garagegothic-bold-webfont.woff") format("woff"), url("fonts/garagegothic-bold-webfont.ttf") format("truetype"), url("fonts/garagegothic-bold-webfont.svg#garagegothic") format("svg");
  font-weight: normal;
  font-style: normal; }

@font-face {
  font-family: 'jennasue';
  src: url("fonts/jennasue-webfont.eot");
  src: url("fonts/jennasue-webfont.eot?#iefix") format("embedded-opentype"), url("fonts/jennasue-webfont.woff") format("woff"), url("fonts/jennasue-webfont.ttf") format("truetype"), url("fonts/jennasue-webfont.svg#jennasue") format("svg");
  font-weight: normal;
  font-style: normal; }

/*
Theme Name: SWESA
Author: Dynacor Media
Author URI: http://www.dynacormedia.com
Version: 1.0
*/
/* ==========================================================================
   WEBSITE STYLES
   ========================================================================== */
/** WEBSITE VARIABLES **/
/** CONSTANT **/
/** SITE SPECIFIC **/
/** FONTS **/
/** COLORS **/
/** OTHER **/
/** HTML / BODY STYLES **/
html, body {
  height: 100%; }

html {
  overflow: auto;
  overflow-x: hidden;
  font-size: 62.5%; }

body {
  background: #fff;
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 1.2;
  font-family: arial,sans-serif; }

* {
  margin: 0; }

/** BROWSER SPECIFIC **/
.ie9 * {
  filter: none !important; }

.ie7 #main .site-content #content hr,
.ie8 #main .site-content #content hr {
  border-top: 1px solid #be1e2d;
  height: 1px; }

/** HEADER **/
.site-header {
  position: relative;
  width: 982px;
  height: 506px;
  margin: 0 auto;
  z-index: 20;
  /** NAVIGATION **/ }
  .site-header .navbar-bg-left {
    height: 40px;
    background: #111111;
    position: absolute;
    top: 0;
    left: -9999px;
    width: 9999px;
    z-index: 1; }
  .site-header .navbar-bg-right {
    height: 40px;
    background: #111111;
    position: absolute;
    top: 0;
    left: 242px;
    width: 9999px;
    z-index: 1; }
  .site-header .logo {
    display: block;
    width: 242px;
    height: 175px;
    float: left;
    background-color: transparent;
    background-color: rgba(255, 255, 255, 0.8);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#CCFFFFFF,endColorstr=#CCFFFFFF);
    zoom: 1; }
    .site-header .logo img {
      width: 213px;
      height: 128px;
      margin: 25px 0 0 15px; }
  .site-header .nav-container {
    float: left;
    z-index: 2;
    position: relative;
    width: 740px; }
    .site-header .nav-container nav#header-navigation a,
    .site-header .nav-container nav#main-navigation a {
      font-family: allerregular,arial,sans-serif;
      font-size: 14px;
      font-size: 1.4rem;
      line-height: 1.2;
      text-decoration: none;
      color: #FFF; }
      .site-header .nav-container nav#header-navigation a:hover,
      .site-header .nav-container nav#main-navigation a:hover {
        text-decoration: underline; }
    .site-header .nav-container nav#header-navigation .current_page_item,
    .site-header .nav-container nav#main-navigation .current_page_item {
      text-decoration: underline; }
    .site-header .nav-container nav#header-navigation {
      padding: 12px 0 0 0;
      float: right;
      height: 28px; }
      .site-header .nav-container nav#header-navigation ul li {
        display: block;
        float: left;
        padding: 0 20px; }
    .site-header .nav-container nav#main-navigation {
      clear: both;
      background-color: transparent;
      background-color: rgba(190, 30, 45, 0.8);
      filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#CCBE1E2D,endColorstr=#CCBE1E2D);
      zoom: 1;
      width: 9999px;
      height: 122px;
      overflow: hidden; }
      .site-header .nav-container nav#main-navigation #menu-mainmenu > li {
        float: left;
        padding: 12px 15px;
        height: 400px;
        border-right: 1px solid #c34a54; }
      .site-header .nav-container nav#main-navigation #menu-mainmenu > li > a {
        display: block;
        cursor: default;
        text-transform: uppercase;
        color: #000;
        text-decoration: none !important;
        margin: 0 0 7px 0;
        font-size: 13px;
        font-size: 1.3rem;
        line-height: 1.2;
        font-family: allerbold,arial,sans-serif; }
      .site-header .nav-container nav#main-navigation #menu-mainmenu .sub-menu li {
        padding: 0 0 3px 0; }
      .site-header .nav-container nav#main-navigation #menu-mainmenu #menu-item-75 {
        border-right: 0; }
  .site-header .font-increase {
    display: block;
    float: left;
    background: #343434;
    color: #b5b5b5;
    padding: 3px 7px;
    margin: 7px 0 0 13px;
    font-family: allerregular,arial,sans-serif;
    text-decoration: none; }
    .site-header .font-increase .large {
      font-size: 16px;
      font-size: 1.6rem;
      line-height: 1.2; }
    .site-header .font-increase .small {
      font-size: 14px;
      font-size: 1.4rem;
      line-height: 1.2; }
  .site-header .tagline {
    position: absolute;
    bottom: 0;
    left: 242px;
    width: 9999px;
    background: -moz-linear-gradient(top, rgba(0, 0, 0, 0.5) 0%, black 100%);
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, rgba(0, 0, 0, 0.5)), color-stop(100%, black));
    background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0.5) 0%, black 100%);
    background: -o-linear-gradient(top, rgba(0, 0, 0, 0.5) 0%, black 100%);
    background: -ms-linear-gradient(top, rgba(0, 0, 0, 0.5) 0%, black 100%);
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.5) 0%, black 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#80000000}', endColorstr='{$ie-end}}',GradientType=0 ); }
    .site-header .tagline h2 {
      font-family: jennasue,arial,sans-serif;
      font-size: 46px;
      font-size: 4.6rem;
      line-height: 1.2;
      color: #fff;
      padding: 10px 0 0 25px; }

#banner {
  position: absolute;
  width: 100%;
  height: 506px;
  top: 0;
  left: 0;
  z-index: 10;
  overflow: hidden;
  background: #dddddd; }
  #banner .header_image {
    position: absolute;
    top: 0;
    left: 0; }
  #banner .banner_home {
    background: url(images/banners/home.jpg) no-repeat;
    position: absolute;
    width: 100%;
    height: 506px;
    top: 0;
    left: 0; }
  #banner .banner_home_1 {
    background-position: 0 0; }
  #banner .banner_home_2 {
    background-position: 0 -507px; }
  #banner .banner_home_3 {
    background-position: 0 -1014px; }
  #banner .banner_home_4 {
    background-position: 0 -1521px; }

#searchform {
  float: right; }

#searchform #s {
  color: #000;
  background: #e2e2e2;
  font-family: arial, sans-serif;
  padding: 6px 23px 6px 6px;
  width: 100px;
  border-radius: 0; }

#searchform #search_btn {
  margin: 0 0 0 -23px; }

/** CONTENT **/
#page {
  min-height: 100%;
  height: auto !important;
  height: 100%;
  margin: 0 auto -50px;
  /* the bottom margin is the negative value of the footer's height */ }

#main {
  width: 982px;
  margin: 0 auto;
  min-height: 500px;
  position: relative;
  z-index: 20; }
  #main .site-content {
    /** SIDEBAR **/
    /** CONTENT **/ }
    #main .site-content #sidefiller {
      position: absolute;
      top: 0;
      left: 0;
      width: 242px;
      background-color: #fff;
      -webkit-box-shadow: 1px 1px 6px #666666;
      -moz-box-shadow: 1px 1px 6px #666666;
      box-shadow: 1px 1px 6px #666666;
      height: 100%; }
    #main .site-content #sidebar {
      width: 214px;
      padding: 14px;
      float: left;
      min-height: 660px;
      margin-top: -158px;
      background-color: transparent;
      background-color: rgba(255, 255, 255, 0.8);
      filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#CCFFFFFF,endColorstr=#CCFFFFFF);
      zoom: 1;
      position: relative;
      /** UPCOMING EVENTS LIST **/
      /** SPONSOR STYLES **/ }
      #main .site-content #sidebar .promobox {
        width: 214px;
        -webkit-box-shadow: 1px 1px 6px #666666;
        -moz-box-shadow: 1px 1px 6px #666666;
        box-shadow: 1px 1px 6px #666666; }
        #main .site-content #sidebar .promobox h2 {
          font-family: allerbold,arial,sans-serif;
          font-size: 14px;
          font-size: 1.4rem;
          line-height: 1.2;
          text-transform: uppercase;
          color: #fff;
          background: #be1e2d url("images/pointer_white.png") no-repeat left center;
          width: 198px;
          padding: 7px 0 10px 16px; }
        #main .site-content #sidebar .promobox .promobox-button {
          background: #be1e2d;
          font-family: arial,sans-serif;
          color: #fff;
          background: #be1e2d url("images/pointer_white.png") no-repeat 4px center;
          background-size: 9px 9px;
          padding: 7px 7px 7px 16px;
          font-size: 12px;
          font-size: 1.2rem;
          line-height: 1.2;
          text-decoration: none;
          margin: 2px 7px 7px 0;
          float: right;
          -webkit-box-shadow: 1px 1px 6px #666666;
          -moz-box-shadow: 1px 1px 6px #666666;
          box-shadow: 1px 1px 6px #666666; }
      #main .site-content #sidebar #eventlist {
        background: #fff;
        overflow: hidden; }
        #main .site-content #sidebar #eventlist li {
          list-style-type: none; }
        #main .site-content #sidebar #eventlist .dig-in a {
          background: #be1e2d;
          font-family: arial,sans-serif;
          color: #fff;
          background: #be1e2d url("images/pointer_white.png") no-repeat 4px center;
          background-size: 9px 9px;
          padding: 7px 7px 7px 16px;
          font-size: 12px;
          font-size: 1.2rem;
          line-height: 1.2;
          text-decoration: none;
          margin: 2px 7px 7px 0;
          float: right;
          -webkit-box-shadow: 1px 1px 6px #666666;
          -moz-box-shadow: 1px 1px 6px #666666;
          box-shadow: 1px 1px 6px #666666; }
      #main .site-content #sidebar #sponsorlist {
        margin-top: 24px; }
        #main .site-content #sidebar #sponsorlist ul li {
          border-bottom: 1px solid #dddbda; }
        #main .site-content #sidebar #sponsorlist h3 {
          font-family: allerbold,arial,sans-serif;
          font-size: 16px;
          font-size: 1.6rem;
          line-height: 1.2;
          padding: 7px; }
        #main .site-content #sidebar #sponsorlist .sponsor-container {
          border: 1px solid #dddbda;
          overflow: hidden;
          background: #fff;
          height: 180px;
          position: relative; }
          #main .site-content #sidebar #sponsorlist .sponsor-container .promobox-button {
            position: absolute;
            bottom: 0;
            right: 0; }
        #main .site-content #sidebar #sponsorlist .sponsorlogos a {
          display: none;
          width: 202px;
          height: 131px;
          position: absolute;
          top: 5px;
          left: 5px; }
    #main .site-content #content {
      float: left;
      width: 740px;
      /** FORMS **/
      /** EVENT STYLES **/ }
      #main .site-content #content a {
        color: #be1e2d; }
      #main .site-content #content h1 {
        font-family: garagegothic,arial,sans-serif;
        font-size: 46px;
        font-size: 4.6rem;
        line-height: 1.2;
        color: #be1e2d;
        border-bottom: 1px solid #be1e2d;
        padding: 0 0 6px 0;
        margin: 0 0 10px 0; }
      #main .site-content #content h4 {
        color: #be1e2d;
        font-size: 18px;
        font-size: 1.8rem;
        line-height: 1.2;
        border-bottom: 1px solid #be1e2d;
        padding: 0 0 4px 0;
        margin: 30px 0 8px 0;
        display: block;
        width: 100%; }
      #main .site-content #content h4.platinum {
        color: #c8c7c7;
        border-bottom: 1px solid #c8c7c7; }
      #main .site-content #content h4.gold {
        color: #d4ad5b;
        border-bottom: 1px solid #d4ad5b; }
      #main .site-content #content h4.silver {
        color: #b2b3b3;
        border-bottom: 1px solid #b2b3b3; }
      #main .site-content #content p {
        font-size: 15px;
        font-size: 1.5rem;
        line-height: 1.2;
        padding: 6px 0; }
      #main .site-content #content ul {
        margin: 5px 0 15px 18px; }
      #main .site-content #content ul li {
        font-size: 15px;
        font-size: 1.5rem;
        line-height: 1.2;
        list-style-type: none;
        background: url("images/bullet.jpg") no-repeat left 7px;
        padding: 3px 0 3px 13px; }
        #main .site-content #content ul li ul {
          margin: 0 0 0 5px;
          padding: 0; }
          #main .site-content #content ul li ul li {
            list-style-type: none;
            background: url("images/bullet_circle.jpg") no-repeat left 8px;
            padding: 3px 0 3px 10px; }
      #main .site-content #content .highlight {
        color: #be1e2d; }
      #main .site-content #content hr {
        height: 49px;
        width: 100%;
        position: relative;
        background: none;
        border-top: 0; }
      #main .site-content #content hr:before {
        content: "";
        width: 100%;
        height: 1px;
        position: absolute;
        top: 24px;
        border-top: 1px solid #be1e2d; }
      #main .site-content #content hr:after {
        content: "";
        display: block;
        position: absolute;
        width: 100%;
        height: 49px;
        background: url("images/logo_icon.png") no-repeat center top; }
      #main .site-content #content .print_text {
        display: none; }
      #main .site-content #content #content-main {
        width: 688px;
        padding: 26px 26px 100px 26px; }
      #main .site-content #content #content-left {
        float: left;
        width: 446px;
        padding: 26px; }
      #main .site-content #content #content-right {
        float: right;
        width: 240px;
        padding: 25px 0 0 0; }
      #main .site-content #content .swesa_map_large img {
        -webkit-box-shadow: 1px 1px 6px #666666;
        -moz-box-shadow: 1px 1px 6px #666666;
        box-shadow: 1px 1px 6px #666666;
        border: 1px solid #999999;
        margin: 1px 0 8px 0; }
      #main .site-content #content .button {
        background: #be1e2d;
        font-family: arial,sans-serif;
        color: #fff;
        background: #be1e2d url("images/pointer_white.png") no-repeat 4px center;
        background-size: 9px 9px;
        padding: 7px 7px 7px 16px;
        font-size: 12px;
        font-size: 1.2rem;
        line-height: 1.2;
        text-decoration: none;
        margin: 2px 7px 7px 0;
        float: right;
        -webkit-box-shadow: 1px 1px 6px #666666;
        -moz-box-shadow: 1px 1px 6px #666666;
        box-shadow: 1px 1px 6px #666666; }
      #main .site-content #content input[type=submit].button:active {
        margin: 4px 7px 7px 0; }
      #main .site-content #content .plat_sponsor {
        display: block;
        float: left;
        margin: 10px 12px 10px 12px; }
      #main .site-content #content .error {
        color: #ff0000;
        font-size: 15px;
        font-size: 1.5rem;
        line-height: 1.2; }
      #main .site-content #content form label {
        font-size: 15px;
        font-size: 1.5rem;
        line-height: 1.2; }
      #main .site-content #content form input[type=checkbox] {
        display: block;
        margin: 2px 6px 2px 0; }
      #main .site-content #content form input[type=text] {
        background: #efefef;
        padding: 5px;
        -webkit-box-shadow: inset 1px 1px 3px #999999;
        -moz-box-shadow: inset 1px 1px 3px #999999;
        box-shadow: inset 1px 1px 3px #999999; }
      #main .site-content #content form table td {
        padding: 0 20px 0 0; }
      #main .site-content #content form table label {
        font-weight: bold;
        display: inline-block;
        margin: 15px 0 4px 0; }
      #main .site-content #content form table input[type=text] {
        width: 100%; }
      #main .site-content #content form .required {
        font-weight: bold;
        font-size: 18px;
        font-size: 1.8rem;
        line-height: 1.2;
        color: #be1e2d; }
      #main .site-content #content .tribe-events-tooltip {
        padding: 0;
        border: 1px solid #666666; }
        #main .site-content #content .tribe-events-tooltip h4 {
          box-sizing: border-box;
          margin: 0;
          padding: 10px;
          width: 100%;
          background-color: #666666;
          color: #fff;
          border-width: 0;
          font-size: 14px;
          font-weight: normal; }
        #main .site-content #content .tribe-events-tooltip .tribe-events-event-body {
          box-sizing: border-box;
          padding: 10px;
          color: #666666; }
        #main .site-content #content .tribe-events-tooltip .entry-summary {
          font-size: 13px; }
      #main .site-content #content #tribe-events-bar {
        height: 10px;
        margin: 0; }
      #main .site-content #content #tribe-bar-form {
        background: transparent; }
        #main .site-content #content #tribe-bar-form .tribe-bar-filters-inner {
          display: none !important; }
        #main .site-content #content #tribe-bar-form #tribe-bar-views {
          left: 0px;
          width: 100%;
          height: 10px; }
        #main .site-content #content #tribe-bar-form .tribe-bar-views-inner {
          padding: 0;
          margin-bottom: 0;
          height: 10px;
          background: transparent; }
          #main .site-content #content #tribe-bar-form .tribe-bar-views-inner label {
            display: none; }
          #main .site-content #content #tribe-bar-form .tribe-bar-views-inner .tribe-bar-views-list {
            list-style-type: none;
            width: 200px;
            position: relative;
            float: right; }
            #main .site-content #content #tribe-bar-form .tribe-bar-views-inner .tribe-bar-views-list .tribe-bar-views-option a {
              background-color: #e0e0e0; }
            #main .site-content #content #tribe-bar-form .tribe-bar-views-inner .tribe-bar-views-list li {
              background-image: none;
              background-color: #e0e0e0;
              display: block;
              text-align: left;
              padding: 3px;
              width: 95px; }
              #main .site-content #content #tribe-bar-form .tribe-bar-views-inner .tribe-bar-views-list li a {
                width: 100%; }
              #main .site-content #content #tribe-bar-form .tribe-bar-views-inner .tribe-bar-views-list li a:hover {
                background-color: #f0f0f0; }
            #main .site-content #content #tribe-bar-form .tribe-bar-views-inner .tribe-bar-views-list li[data-view="upcoming"] {
              float: left; }
            #main .site-content #content #tribe-bar-form .tribe-bar-views-inner .tribe-bar-views-list li[data-view="list"] {
              float: left; }
            #main .site-content #content #tribe-bar-form .tribe-bar-views-inner .tribe-bar-views-list li[data-view="month"] {
              float: right; }
            #main .site-content #content #tribe-bar-form .tribe-bar-views-inner .tribe-bar-views-list li.tribe-bar-active {
              background-color: #f0f0f0; }
              #main .site-content #content #tribe-bar-form .tribe-bar-views-inner .tribe-bar-views-list li.tribe-bar-active a {
                background-color: #f0f0f0; }
      #main .site-content #content h2.tribe-events-page-title {
        font-size: 18px;
        padding: 0;
        margin: 0;
        text-align: left; }
      #main .site-content #content .tribe-events-sub-nav {
        list-style-type: none;
        padding: 0;
        margin: 0; }
        #main .site-content #content .tribe-events-sub-nav li {
          padding: 3px;
          background-image: none; }
      #main .site-content #content .tribe-events-event-entry {
        width: 55%; }
      #main .site-content #content .tribe-events-event-list-meta {
        font-size: 14px;
        font-size: 1.4rem;
        line-height: 1.2;
        width: 35%; }
      #main .site-content #content #tribe-events-event-meta {
        font-size: 14px;
        font-size: 1.4rem;
        line-height: 1.2; }
        #main .site-content #content #tribe-events-event-meta .column {
          width: 38%; }
  #main .logo_bg {
    width: 430px;
    height: 548px;
    position: absolute;
    top: -35px;
    left: -438px;
    background: url("images/logo_bg.png") no-repeat; }

.tribe-events-adv-list-widget .duration {
  display: block;
  background: #ababab;
  color: #fff;
  padding: 9px 5px 9px 16px;
  font-size: 13px; }

.tribe-events-adv-list-widget .entry-title a {
  text-decoration: none;
  margin: 10px 5px 10px 16px;
  display: block;
  color: #000;
  font-size: 14px; }

.tribe-events-adv-list-widget .tribe-events-widget-link a {
  background: #be1e2d;
  font-family: arial,sans-serif;
  color: #fff;
  background: #be1e2d url("images/pointer_white.png") no-repeat 4px center;
  background-size: 9px 9px;
  padding: 7px 7px 7px 16px;
  font-size: 12px;
  font-size: 1.2rem;
  line-height: 1.2;
  text-decoration: none;
  margin: 2px 7px 7px 0;
  float: right;
  -webkit-box-shadow: 1px 1px 6px #666666;
  -moz-box-shadow: 1px 1px 6px #666666;
  box-shadow: 1px 1px 6px #666666; }

/** FOOTER **/
footer, .push {
  height: 50px;
  /* .push must be the same height as .footer */ }

footer {
  width: 100%;
  background: #be1e2d;
  z-index: 1; }
  footer .footer-content {
    width: 980px;
    margin: 0 auto;
    position: relative; }
  footer .copyright {
    clear: both;
    padding: 20px 0 0 15px;
    color: #c0a4a4;
    font-size: 12px;
    font-size: 1.2rem;
    line-height: 1.2; }
    footer .copyright a {
      text-decoration: none;
      color: #c0a4a4; }
    footer .copyright img {
      margin: -5px 0 0 0; }
  footer .content-mask {
    background: #dddddd;
    width: 9999px;
    height: 9999px;
    position: absolute;
    top: -9999px;
    left: -9999px; }

/** CALENDAR STYLES **/
.eventsListWidget li {
  margin: 0 !important; }
.eventsListWidget .when {
  font-family: arial,sans-serif;
  background-color: transparent;
  background-color: #99938f;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#FF99938F,endColorstr=#FF99938F);
  zoom: 1;
  padding: 10px 7px 10px 16px;
  font-weight: bold;
  font-size: 13px;
  font-size: 1.3rem;
  line-height: 1.2;
  color: #fff; }
.eventsListWidget .event a {
  display: block;
  padding: 10px 7px 10px 16px;
  text-decoration: none;
  background-color: transparent;
  background-color: white;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#FFFFFFFF,endColorstr=#FFFFFFFF);
  zoom: 1;
  font-family: arial,sans-serif;
  font-weight: bold;
  font-size: 13px;
  font-size: 1.3rem;
  line-height: 1.2;
  color: #000;
  transition: color 0.25s;
  -moz-transition: color 0.25s;
  /* Firefox 4 */
  -webkit-transition: color 0.25s;
  /* Safari and Chrome */
  -o-transition: color 0.25s;
  /* Opera */ }
  .eventsListWidget .event a:hover {
    color: #be1e2d; }

/** MINI CALENDAR STYLES **/
.calendar-promobox {
  width: 222px;
  border: 1px solid gainsboro;
  padding: 0 8px 8px 8px;
  overflow: hidden;
  -webkit-box-shadow: 1px 1px 6px #666666;
  -moz-box-shadow: 1px 1px 6px #666666;
  box-shadow: 1px 1px 6px #666666; }
  .calendar-promobox li{
    list-style-type: none;
  }
  .calendar-promobox h2 {
    font-family: allerbold,arial,sans-serif;
    text-transform: uppercase;
    font-size: 14px;
    font-size: 1.4rem;
    line-height: 1.2;
    color: #be1e2d;
    background: url("images/pointer_red.png") no-repeat left center;
    padding: 7px 0 10px 16px; }
  .calendar-promobox h3 {
    font-family: allerbold,arial,sans-serif;
    text-transform: uppercase;
    font-size: 14px;
    font-size: 1.4rem;
    line-height: 1.2;
    color: #be1e2d; }
  .calendar-promobox .tribe-view-all-events {
    background: #be1e2d;
    font-family: arial,sans-serif;
    color: white !important;
    background: #be1e2d url("images/pointer_white.png") no-repeat 4px center;
    background-size: 9px 9px;
    padding: 7px 7px 7px 16px;
    font-size: 12px;
    font-size: 1.2rem;
    line-height: 1.2;
    text-decoration: none;
    float: right;
    -webkit-box-shadow: 1px 1px 6px #666666;
    -moz-box-shadow: 1px 1px 6px #666666;
    box-shadow: 1px 1px 6px #666666; }
  .calendar-promobox .tribe-events-calendar {
    margin: 0 0 10px 0 !important; }
    .calendar-promobox .tribe-events-calendar #tribe-events-s {
      color: black !important; }
    .calendar-promobox .tribe-events-calendar .tribe-events-mini-has-event {
      color: #be1e2d !important; }
  .calendar-promobox .tribe-events-calendar-widget th {
    background: #be1e2d;
    color: #fff;
    font-size: 14px;
    font-size: 1.4rem;
    line-height: 1.2;
    font-weight: bold; }

/** FONT ENLARGE STYLES **/
body.enlarge-text .site-header .nav-container nav#main-navigation {
  height: 130px; }
body.enlarge-text .site-header .nav-container nav#header-navigation a,
body.enlarge-text .site-header .nav-container nav#main-navigation a {
  font-size: 15px;
  font-size: 1.5rem;
  line-height: 1.2; }
body.enlarge-text #main .site-content #sidebar .promobox .promobox-button {
  font-size: 13px;
  font-size: 1.3rem;
  line-height: 1.2; }
body.enlarge-text #main #content .error {
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 1.2; }
body.enlarge-text #main #content h4 {
  font-size: 20px;
  font-size: 2rem;
  line-height: 1.2; }
body.enlarge-text #main #content ul li {
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 1.2; }
body.enlarge-text #main #content p {
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 1.2; }
body.enlarge-text #main #content .calendar-promobox .tribe-view-all-events {
  font-size: 13px;
  font-size: 1.3rem;
  line-height: 1.2; }
body.enlarge-text #main #content .tribe-events-calendar-widget .daynum {
  font-size: 12px; }
body.enlarge-text #main #content .tribe-events-event-list-meta, body.enlarge-text #main #content #tribe-events-event-meta {
  font-size: 15px;
  font-size: 1.5rem;
  line-height: 1.2; }
body.enlarge-text #main #content .button {
  font-size: 13px;
  font-size: 1.3rem;
  line-height: 1.2; }
body.enlarge-text #main #content form label {
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 1.2; }
body.enlarge-text footer .copyright {
  font-size: 13px;
  font-size: 1.3rem;
  line-height: 1.2; }

/* ==========================================================================
   WORDPRESS STYLES
   ========================================================================== */
.alignleft {
  float: left;
  margin: 0 5px 5px 0; }

.alignright {
  float: right;
  margin: 0 0 5px 5px; }

.aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto; }

.wp-caption {
  text-align: center;
  background: #fafafa;
  border: 1px solid #eeeeee; }

.wp-caption-text {
  text-align: center; }

.entry-content img,
.comment-content img,
.widget img,
img.header-image,
.author-avatar img,
img.wp-post-image {
  /* Add fancy borders to all WordPress-added images but not things like badges and icons and the like */
  border-radius: 3px;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.2); }

.wp-caption {
  max-width: 100%;
  /* Keep wide captions from overflowing their container. */
  padding: 4px; }

.wp-caption .wp-caption-text,
.gallery-caption,
.entry-caption {
  font-style: italic;
  font-size: 12px;
  font-size: 0.857142857rem;
  line-height: 2;
  color: #757575; }

img.wp-smiley,
.rsswidget img {
  border: 0;
  border-radius: 0;
  box-shadow: none;
  margin-bottom: 0;
  margin-top: 0;
  padding: 0; }

.entry-content dl.gallery-item {
  margin: 0; }

.gallery-item a,
.gallery-caption {
  width: 90%; }

.gallery-item a {
  display: block; }

.gallery-caption a {
  display: inline; }

.gallery-columns-1 .gallery-item a {
  max-width: 100%;
  width: auto; }

.gallery .gallery-icon img {
  height: auto;
  max-width: 90%;
  padding: 5%; }

.gallery-columns-1 .gallery-icon img {
  padding: 3%; }

/* ==========================================================================
   PRINT STYLES
   ========================================================================== */
@media print {
  * {
    background: transparent !important;
    color: black !important;
    /* Black prints faster: h5bp.com/s */
    box-shadow: none !important;
    text-shadow: none !important; }

  a,
  a:visited {
    text-decoration: underline; }

  abbr[title]:after {
    content: " (" attr(title) ")"; }

  /*
   * Don't show links for images, or javascript/internal links
   */
  .ir a:after,
  a[href^="javascript:"]:after,
  a[href^="#"]:after {
    content: ""; }

  pre,
  blockquote {
    border: 1px solid #999999;
    page-break-inside: avoid; }

  thead {
    display: table-header-group;
    /* h5bp.com/t */ }

  tr,
  img {
    page-break-inside: avoid; }

  img {
    max-width: 100% !important; }

  @page {
    margin: 0.5cm; }

  p,
  h2,
  h3 {
    orphans: 3;
    widows: 3; }

  h2,
  h3 {
    page-break-after: avoid; }

  #banner, #sidebar, #sidefiller, nav, .font-increase, header, footer, .button {
    display: none; }

  .print_text {
    display: block !important; }

  .tagline {
    position: relative;
    left: 0; } }
