/*
    ColorBox Core Style:
    The following CSS is consistent between example themes and should not be altered.
*/
#colorbox,
#cboxOverlay,
#cboxWrapper {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 9999;
  overflow: hidden;
}
#cboxOverlay {
  position: fixed;
  width: 100%;
  height: 100%;
}
#cboxMiddleLeft,
#cboxBottomLeft {
  clear: left;
}
#cboxContent {
  position: relative;
}
#cboxLoadedContent {
  overflow: auto;
}
#cboxTitle {
  margin: 0;
}
#cboxLoadingOverlay,
#cboxLoadingGraphic {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
#cboxPrevious,
#cboxNext,
#cboxClose,
#cboxSlideshow {
  cursor: pointer;
}
.cboxPhoto {
  float: left;
  margin: auto;
  border: 0;
  display: block;
}
.cboxIframe {
  width: 100%;
  height: 100%;
  display: block;
  border: 0;
}
/* 
    User Style:
    Change the following styles to modify the appearance of ColorBox.  They are
    ordered & tabbed in a way that represents the nesting of the generated HTML.
*/
#cboxOverlay {
  background: url(../images/layout/lightbox-overlay-background.png);
}
#cboxContent {
  margin-top: 20px;
}
.cboxIframe {
  background: #fff;
}
#cboxError {
  padding: 50px;
  border: 1px solid #ccc;
}
#cboxLoadedContent {
  background: #fff;
}
#cboxTitle {
  position: absolute;
  top: -20px;
  left: 0;
  color: #ccc;
}
#cboxCurrent {
  position: absolute;
  top: -20px;
  right: 0px;
  color: #ccc;
}
#cboxSlideshow {
  position: absolute;
  top: -20px;
  right: 90px;
  color: #fff;
}
#cboxPrevious {
  position: absolute;
  top: 50%;
  left: 5px;
  margin-top: -32px;
  background: url(../images/colorbox/controls.png) no-repeat top left;
  width: 28px;
  height: 65px;
  text-indent: -9999px;
}
#cboxPrevious:hover {
  background-position: bottom left;
}
#cboxNext {
  position: absolute;
  top: 50%;
  right: 5px;
  margin-top: -32px;
  background: url(../images/colorbox/controls.png) no-repeat top right;
  width: 28px;
  height: 65px;
  text-indent: -9999px;
}
#cboxNext:hover {
  background-position: bottom right;
}
#cboxLoadingOverlay {
  background: #000;
}
#cboxLoadingGraphic {
  background: url(../images/colorbox/loading.gif) no-repeat center center;
}
#cboxClose {
  position: absolute;
  top: -21px;
  right: 1px;
  display: block;
  background: url(../images/layout/lightbox-close-button.png) no-repeat;
  width: 36px;
  height: 20px;
  text-indent: -9999px;
}
#cboxClose:hover {
  background-position: 0 1px;
}
/*! normalize.css 2011-11-04T15:38 UTC - http://github.com/necolas/normalize.css */
/* =============================================================================
       HTML5 display definitions
       ========================================================================== */
/*
     * Corrects block display not defined in IE6/7/8/9 & FF3
     */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
nav,
section {
  display: block;
}
/*
     * Corrects inline-block display not defined in IE6/7/8/9 & FF3
     */
audio,
canvas,
video {
  display: inline-block;
  *display: inline;
  *zoom: 1;
}
/*
     * Prevents modern browsers from displaying 'audio' without controls
     */
audio:not([controls]) {
  display: none;
}
/*
     * Addresses styling for 'hidden' attribute not present in IE7/8/9, FF3, S4
     * Known issue: no IE6 support
     */
[hidden] {
  display: none;
}
/* =============================================================================
       Base
       ========================================================================== */
/*
     * 1. Corrects text resizing oddly in IE6/7 when body font-size is set using em units
     *    http://clagnut.com/blog/348/#c790
     * 2. Keeps page centred in all browsers regardless of content height
     * 3. Prevents iOS text size adjust after orientation change, without disabling user zoom
     *    www.456bereastreet.com/archive/201012/controlling_text_size_in_safari_for_ios_without_disabling_user_zoom/
     */
html {
  font-size: 100%;
  /* 1 */

  overflow-y: scroll;
  /* 2 */

  -webkit-text-size-adjust: 100%;
  /* 3 */

  -ms-text-size-adjust: 100%;
  /* 3 */

}
/*
     * Addresses margins handled incorrectly in IE6/7
     */

/* 
     * Addresses font-family inconsistency between 'textarea' and other form elements.
     */

/* =============================================================================
       Links
       ========================================================================== */
/*
     * Addresses outline displayed oddly in Chrome
     */
a:focus {
  outline: thin dotted;
}
/*
     * Improves readability when focused and also mouse hovered in all browsers
     * people.opera.com/patrickl/experiments/keyboard/test
     */
a:hover,
a:active {
  outline: 0;
}
/* =============================================================================
       Typography
       ========================================================================== */
/*
     * Neutralise smaller font-size in 'section' and 'article' in FF4+, Chrome, S5
     */

/*
     * Addresses styling not present in IE7/8/9, S5, Chrome
     */
abbr[title] {
  border-bottom: 1px dotted;
}
/*
     * Addresses style set to 'bolder' in FF3+, S4/5, Chrome
    */
b,
strong {
  font-weight: bold;
}
blockquote {
  margin: 1em 40px;
}
/*
     * Addresses styling not present in S5, Chrome
     */
dfn {
  font-style: italic;
}
/*
     * Addresses styling not present in IE6/7/8/9
     */
mark {
  background: #ff0;
  color: #000;
}
/*
     * Corrects font family set oddly in IE6, S4/5, Chrome
     * en.wikipedia.org/wiki/User:Davidgothberg/Test59
     */
pre,
code,
kbd,
samp {
  font-family: monospace, serif;
  _font-family: 'courier new', monospace;
  font-size: 1em;
}
/*
     * Improves readability of pre-formatted text in all browsers
     */
pre {
  white-space: pre;
  white-space: pre-wrap;
  word-wrap: break-word;
}
/*
     * 1. Addresses CSS quotes not supported in IE6/7
     * 2. Addresses quote property not supported in S4
     */
/* 1 */
q {
  quotes: none;
}
/* 2 */
q:before,
q:after {
  content: '';
  content: none;
}
small {
  font-size: 75%;
}
/*
     * Prevents sub and sup affecting line-height in all browsers
     * gist.github.com/413930
     */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}
sup {
  top: -0.5em;
}
sub {
  bottom: -0.25em;
}
/* =============================================================================
       Lists
       ========================================================================== */
ul,
ol {
  margin: 18px 0 18px 0;
  padding: 0 0 0 20px;
}
dd {
  margin: 0 0 0 40px;
}
nav ul,
nav ol {
  list-style: none;
  list-style-image: none;
}
/* =============================================================================
       Embedded content
       ========================================================================== */
/*
     * 1. Removes border when inside 'a' element in IE6/7/8/9, FF3
     * 2. Improves image quality when scaled in IE7
     *    code.flickr.com/blog/2008/11/12/on-ui-quality-the-little-things-client-side-image-resizing/
     */
img {
  border: 0;
  /* 1 */

  -ms-interpolation-mode: bicubic;
  /* 2 */

}
/*
     * Corrects overflow displayed oddly in IE9 
     */
svg:not(:root) {
  overflow: hidden;
}
/* =============================================================================
       Figures
       ========================================================================== */
/*
     * Addresses margin not present in IE6/7/8/9, S5, O11
     */
figure {
  margin: 0;
}
/* =============================================================================
       Forms
       ========================================================================== */
/*
     * Corrects margin displayed oddly in IE6/7
     */
form {
  margin: 0;
}
/*
     * Define consistent border, margin, and padding
     */
fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em;
}
/*
     * 1. Corrects color not being inherited in IE6/7/8/9
     * 2. Corrects alignment displayed oddly in IE6/7
     */
legend {
  border: 0;
  /* 1 */

  *margin-left: -7px;
  /* 2 */

}
/*
     * 1. Corrects font size not being inherited in all browsers
     * 2. Addresses margins set differently in IE6/7, FF3+, S5, Chrome
     * 3. Improves appearance and consistency in all browsers
     */
button,
input,
select,
textarea {
  font-size: 100%;
  /* 1 */

  margin: 0;
  /* 2 */

  vertical-align: baseline;
  /* 3 */

  *vertical-align: middle;
  /* 3 */

}
/*
     * Addresses FF3/4 setting line-height on 'input' using !important in the UA stylesheet
     */
button,
input {
  line-height: normal;
  /* 1 */

}
/*
     * 1. Improves usability and consistency of cursor style between image-type 'input' and others
     * 2. Corrects inability to style clickable 'input' types in iOS
     * 3. Removes inner spacing in IE7 without affecting normal text inputs
     *    Known issue: inner spacing remains in IE6
     */
button,
input[type="button"],
input[type="reset"],
input[type="submit"] {
  cursor: pointer;
  /* 1 */

  -webkit-appearance: button;
  /* 2 */

  *overflow: visible;
  /* 3 */

}
/*
     * 1. Addresses box sizing set to content-box in IE8/9
     * 2. Removes excess padding in IE8/9
     */
input[type="checkbox"],
input[type="radio"] {
  box-sizing: border-box;
  /* 1 */

  padding: 0;
  /* 2 */

}
/*
     * 1. Addresses appearance set to searchfield in S5, Chrome
     * 2. Addresses box-sizing set to border-box in S5, Chrome (include -moz to future-proof)
     */
input[type="search"] {
  -webkit-appearance: textfield;
  /* 1 */

  -moz-box-sizing: content-box;
  -webkit-box-sizing: content-box;
  /* 2 */

  box-sizing: content-box;
}
/*
     * Removes inner padding that is displayed in S5, Chrome on OS X
     */
input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}
/*
     * Removes inner padding and border in FF3+
     * www.sitepen.com/blog/2008/05/14/the-devils-in-the-details-fixing-dojos-toolbar-buttons/
     */
button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0;
}
/*
     * 1. Removes default vertical scrollbar in IE6/7/8/9
     * 2. Improves readability and alignment in all browsers
     */
textarea {
  overflow: auto;
  /* 1 */

  vertical-align: top;
  /* 2 */

}
/* =============================================================================
       Tables
       ========================================================================== */
/* 
     * Remove most spacing between table cells
     */
table {
  border-collapse: collapse;
  border-spacing: 0;
}
a,
a:focus,
a:active,
object,
embed {
  outline: 0;
}
html {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
}

a {
  color: #000000;
  text-decoration: none;
}

nav ol,
footer ol,
nav ul,
footer ul {
  display: block;
  margin: 0;
  padding: 0;
  text-indent: 0;
  list-style: none;
}

header .main-menu-container {
  position: relative;
  margin: 0 auto;
}
header .main-menu-container,
header .main-menu-titles,
header .main-menu-shadows,
header nav {
  width: 1000px;
  height: 128px;
}
header .main-menu-titles,
header .main-menu-shadows,
header nav,
header .main-menu-logo,
header .main-menu-blue-title,
header .main-menu-red-title {
  position: absolute;
}
header .main-menu-titles {
  background: url(../images/layout/main-menu-titles.png) no-repeat;
}
header .main-menu-shadows {
  background: url(../images/layout/main-menu-shadows.png) no-repeat;
}
header .main-menu-logo {
  left: 429px;
  width: 142px;
  height: 128px;
  background: url(../images/layout/main-menu-logo.png) no-repeat;
}
header .main-menu-logo a {
  display: block;
  width: 142px;
  height: 128px;
  overflow: hidden;
  text-indent: -9999px;
  text-align: left;
}
header .main-menu-blue-title,
header .main-menu-red-title {
  width: 270px;
  height: 26px;
  top: 88px;
  font-family: "myriad-pro-n7", "myriad-pro", Arial, Helvetica, sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: 15px;
  text-align: center;
  line-height: 25px;
}
header .main-menu-blue-title {
  left: 108px;
  color: #003e7e;
}
header .main-menu-red-title {
  right: 108px;
  color: #d31145;
}
header nav {
  top: 17px;
}
header nav .main-menu {
  zoom: 1;
  width: 972px;
  margin: 0 auto;
}
header nav .main-menu:before,
header nav .main-menu:after {
  content: "";
  display: table;
}
header nav .main-menu:after {
  clear: both;
}
header nav .main-menu li {
  display: block;
  float: left;
  width: 150px;
  height: 71px;
  background: url(../images/layout/sprites/nav.png) no-repeat;
}
header nav .main-menu li.main-menu-blue-first-item {
  background-position: 0 0;
}
header nav .main-menu li.main-menu-blue-first-item a {
  padding: 0 0 0 20px;
}
header nav .main-menu li.main-menu-blue-first-item:hover,
header nav .main-menu li.main-menu-blue-first-item.current-menu-item,
header nav .main-menu li.main-menu-blue-first-item.current-page-ancestor {
  background-position: 0 -71px;
}
header nav .main-menu li.main-menu-blue-middle-item {
  background-position: -150px 0;
}
header nav .main-menu li.main-menu-blue-middle-item:hover,
header nav .main-menu li.main-menu-blue-middle-item.current-menu-item,
header nav .main-menu li.main-menu-blue-middle-item.current-page-ancestor {
  background-position: -150px -71px;
}
header nav .main-menu li.main-menu-blue-last-item {
  width: 186px;
  background-position: -300px 0;
}
header nav .main-menu li.main-menu-blue-last-item a {
  padding: 0 36px 0 0;
}
header nav .main-menu li.main-menu-blue-last-item:hover,
header nav .main-menu li.main-menu-blue-last-item.current-menu-item,
header nav .main-menu li.main-menu-blue-last-item.current-page-ancestor {
  background-position: -300px -71px;
}
header nav .main-menu li.main-menu-red-first-item {
  width: 186px;
  background-position: -486px 0;
}
header nav .main-menu li.main-menu-red-first-item a {
  padding: 0 0 0 36px;
}
header nav .main-menu li.main-menu-red-first-item:hover,
header nav .main-menu li.main-menu-red-first-item.current-menu-item,
header nav .main-menu li.main-menu-red-first-item.current-page-ancestor {
  background-position: -486px -71px;
}
header nav .main-menu li.main-menu-red-middle-item {
  background-position: -672px 0;
}
header nav .main-menu li.main-menu-red-middle-item:hover,
header nav .main-menu li.main-menu-red-middle-item.current-menu-item,
header nav .main-menu li.main-menu-red-middle-item.current-page-ancestor {
  background-position: -672px -71px;
}
header nav .main-menu li.main-menu-red-last-item {
  background-position: -822px 0;
}
header nav .main-menu li.main-menu-red-last-item a {
  padding: 0 20px 0 0;
}
header nav .main-menu li.main-menu-red-last-item:hover,
header nav .main-menu li.main-menu-red-last-item.current-menu-item,
header nav .main-menu li.main-menu-red-last-item.current-page-ancestor {
  background-position: -822px -71px;
}
header nav .main-menu li a {
  display: block;
  height: 71px;
  font-family: "myriad-pro-n7", "myriad-pro", Arial, Helvetica, sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: 14px;
  line-height: 15px;
  text-transform: uppercase;
  text-decoration: none;
  text-shadow: 0px 1px 1px rgba(0, 0, 0, 0.35);
}
header nav .main-menu li a .outer-container {
  display: table;
  margin: 0 auto;
  height: 71px;
  text-align: center;
}
header nav .main-menu li a .outer-container .inner-container {
  display: table-cell;
  vertical-align: middle;
  padding: 7px 0 0 0;
}
header .ticker-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 26px;
}
header .ticker-inner {
  background: url(../images/layout/sprites/ticker.png) repeat-x;
  background-position: 0 0;
  height: 26px;
  position: relative;
  font-family: "myriad-pro-n7", "myriad-pro", Arial, Helvetica, sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: 11px;
  line-height: 25px;
  text-transform: uppercase;
}
header .ticker-inner .overlay {
  position: absolute;
  top: 0;
  height: 25px;
  width: 40px;
}
header .ticker-inner .overlay.left {
  left: 0;
  background: url(../images/layout/sprites/ticker.png) repeat-x;
  background-position: 0 -26px;
}
header .ticker-inner .overlay.right {
  right: 0;
  background: url(../images/layout/sprites/ticker.png) repeat-x;
  background-position: 0 -52px;
}
header .ticker-inner .news-container {
  position: relative;
  overflow: hidden;
  height: 25px;
}
header .ticker-inner ul {
  display: block;
  margin: 0;
  padding: 0;
  white-space: nowrap;
}
header .ticker-inner li {
  display: inline-block;
  margin: 0 8px 0 0;
  color: #fff;
}
header .ticker-inner a {
  color: #fff;
  text-decoration: none;
  padding-left: 2px;
}
header .ticker-inner a:hover,
header .ticker-inner a:focus {
  text-decoration: underline;
}
footer {
  background: url(../images/layout/footer-background.png) repeat;
}
footer .footer-line {
  height: 5px;
  background: url(../images/layout/footer-line.png) repeat-x;
}
footer .sitemap-container {
  zoom: 1;
  background: url(../images/layout/sitemap-separator.png) repeat-y;
  width: 960px;
  margin: 35px auto;
}
footer .sitemap-container:before,
footer .sitemap-container:after {
  content: "";
  display: table;
}
footer .sitemap-container:after {
  clear: both;
}
footer .sitemap-container .sitemap-column {
  float: left;
  width: 240px;
  margin-bottom: -22px;
  line-height: 16px;
}
footer .sitemap-container .sitemap-column a {
  font-size: 12px;
}
footer .sitemap-container .sitemap-column a:hover {
  text-decoration: underline;
}
footer .sitemap-container .sitemap-column > li {
  margin: 0 0 22px 0;
}
footer .sitemap-container .sitemap-column > li > a {
  text-transform: uppercase;
  font-weight: bold;
}
footer .footer-container {
  zoom: 1;
  height: 60px;
  width: 960px;
  margin: 0 auto;
}
footer .footer-container:before,
footer .footer-container:after {
  content: "";
  display: table;
}
footer .footer-container:after {
  clear: both;
}
footer .footer-container .footer-sharing {
  float: left;
  height: 60px;
  width: 106px;
  zoom: 1;
}
footer .footer-container .footer-sharing:before,
footer .footer-container .footer-sharing:after {
  content: "";
  display: table;
}
footer .footer-container .footer-sharing:after {
  clear: both;
}
footer .footer-container .footer-sharing a {
  display: block;
  height: 30px;
  width: 30px;
  opacity: 0.9;
  float: left;
  margin: 15px 0 0 8px;
  background: url(../images/layout/sprites/share.png) no-repeat;
  overflow: hidden;
  text-indent: -9999px;
  text-align: left;
}
footer .footer-container .footer-sharing a:hover {
  opacity: 1;
}
footer .footer-container .footer-sharing a:first-child {
  margin: 15px 0 0 0;
}
footer .footer-container .footer-sharing a.footer-sharing-facebook {
  background-position: 0 0;
}
footer .footer-container .footer-sharing a.footer-sharing-twitter {
  background-position: 0 -30px;
}
footer .footer-container .footer-sharing a.footer-sharing-email {
  background-position: 0 -60px;
}
footer .footer-container .footer-azw-link {
  float: left;
  height: 60px;
  line-height: 60px;
}
footer .footer-container .footer-azw-link a {
  font-family: "myriad-pro-n7", "myriad-pro", Arial, Helvetica, sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: 14px;
  padding: 0 10px;
  background: url(../images/layout/arrow.png) no-repeat center right;
}
footer .footer-container .footer-links {
  float: right;
  text-transform: uppercase;
  font-family: "myriad-pro-n7", "myriad-pro", Arial, Helvetica, sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: 10px;
  color: #fff;
  line-height: 60px;
}
footer .footer-container .footer-links ul li {
  display: inline;
}
.page-home {
  overflow: hidden;
}
.page-home #page-home-slider {
  overflow: visible !important;
  overflow-x: visible !important;
  overflow-y: visible !important;
}
.page-home .page-home-slider {
  position: relative;
  left: 50%;
  margin-left: -1819px;
  top: 0;
  width: 3638px;
  height: 690px;
}
.page-home .page-home-slider .page-home-slider-controls {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 500;
  width: 940px;
  height: 42px;
  margin: -21px 0 0 -470px;
}
.page-home .page-home-slider .page-home-slider-controls a {
  display: block;
  height: 42px;
  width: 42px;
  outline: 0;
  background: url(../images/anything-slider/arrows.png) no-repeat;
  position: absolute;
  top: 0;
}
.page-home .page-home-slider .page-home-slider-controls a.page-home-slider-left-arrow {
  left: 0;
  background-position: left top;
}
.page-home .page-home-slider .page-home-slider-controls a.page-home-slider-left-arrow:hover {
  background-position: left -42px;
}
.page-home .page-home-slider .page-home-slider-controls a.page-home-slider-right-arrow {
  right: 0;
  background-position: right top;
}
.page-home .page-home-slider .page-home-slider-controls a.page-home-slider-right-arrow:hover {
  background-position: right -42px;
}
.page-home .page-home-slider .page-home-slider-pager-container {
  position: absolute;
  z-index: 500;
  left: 50%;
  margin-left: -500px;
  bottom: 40px;
  width: 1000px;
  height: 34px;
  background: url(../images/anything-slider/controls-background.png) repeat;
}
.page-home .page-home-slider .page-home-slider-pager-container .page-home-slider-pager {
  zoom: 1;
  padding: 0;
  display: table;
  margin: 7px auto 0;
}
.page-home .page-home-slider .page-home-slider-pager-container .page-home-slider-pager:before,
.page-home .page-home-slider .page-home-slider-pager-container .page-home-slider-pager:after {
  content: "";
  display: table;
}
.page-home .page-home-slider .page-home-slider-pager-container .page-home-slider-pager:after {
  clear: both;
}
.page-home .page-home-slider .page-home-slider-pager-container .page-home-slider-pager a {
  display: block;
  height: 12px;
  width: 12px;
  margin: 4px;
  padding: 0;
  outline: 0;
  float: left;
  background: #ffffff;
  -webkit-background-clip: padding-box;
  -webkit-border-radius: 6px;
  -moz-background-clip: padding;
  -moz-border-radius: 6px;
  border-radius: 6px;
  background-clip: padding-box;
}
.page-home .page-home-slider .page-home-slider-pager-container .page-home-slider-pager a.page-home-slider-pager-active {
  background: #313131;
}
.page-home .page-home-slider ul {
  position: relative;
  display: block;
  height: 690px;
  margin: 0;
  padding: 0;
  white-space: nowrap;
}
.page-home .page-home-slider ul li {
  display: inline-block;
  width: 1196px;
  height: 690px;
  padding: 0 10px;
  background: url(../images/layout/home-slider-shadow.png) no-repeat center bottom;
}
.page-home .page-home-slider .page-home-slider-slogan {
  position: absolute;
  top: 460px;
  left: 0;
  z-index: 500;
  width: 100%;
}
.page-home .page-home-slider .page-home-slider-slogan .page-home-slider-slogan-inner {
  width: 593px;
  height: 130px;
  margin: 0 auto;
  text-indent: -9999px;
  overflow: hidden;
  background: url(../images/layout/home-slider-slogan.png);
}
.page-home .page-home-feature-bar {
  position: relative;
  top: -42px;
  z-index: 500;
  background: url(../images/layout/home-feature-bar-background.png) no-repeat;
  width: 1080px;
  height: 240px;
  margin: 0 auto;
}
.page-home .page-home-feature-bar .page-home-feature-bar-inner {
  width: 1000px;
  height: 215px;
  overflow: hidden;
  margin: 0 auto;
  zoom: 1;
}
.page-home .page-home-feature-bar .page-home-feature-bar-inner:before,
.page-home .page-home-feature-bar .page-home-feature-bar-inner:after {
  content: "";
  display: table;
}
.page-home .page-home-feature-bar .page-home-feature-bar-inner:after {
  clear: both;
}
.page-home .page-home-feature-bar h2 {
  font-family: "myriad-pro-i7", "myriad-pro", Arial, Helvetica, sans-serif;
  font-style: italic;
  font-weight: 700;
  color: #003e7e;
  font-size: 16px;
  text-shadow: 0px 1px 1px rgba(255, 255, 255, 0.7);
  padding: 0 0 20px 0;
  margin: 0;
}
.page-home .page-home-feature-bar .page-home-feature-column {
  float: left;
}
.page-home .page-home-feature-bar .page-home-feature-column .page-home-feature-column-inner {
  padding: 22px 22px 0 22px;
  overflow: hidden;
}
.page-home .page-home-feature-bar .page-home-club-members {
  width: 254px;
}
.page-home .page-home-feature-bar .page-home-club-members .page-home-feature-column-inner {
  padding: 22px 0 0 22px;
}
.page-home .page-home-feature-bar .page-home-club-members .listing {
  position: absolute;
  overflow: hidden;
  width: 230px;
  height: 114px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 11px;
  color: #3a3a3a;
  font-style: italic;
  white-space: nowrap;
  font-weight: bold;
}
.page-home .page-home-feature-bar .page-home-club-members .listing > .inner {
  width: 230px;
  height: 114px;
}
.page-home .page-home-feature-bar .page-home-club-members .listing ul {
  position: absolute;
  left: 0;
  top: 0;
  display: block;
  list-style: none;
  margin: 0;
  padding: 0;
}
.page-home .page-home-feature-bar .page-home-club-members .listing li {
  display: block;
  margin-bottom: 12px;
}
.page-home .page-home-feature-bar .page-home-get-involved {
  width: 272px;
}
.page-home .page-home-feature-bar .page-home-get-involved .action-button,
.page-home .page-home-feature-bar .page-home-get-involved .action-button-big {
  display: block;
  margin: 0 0 15px 0;
  padding: 0 20px;
  font-family: "myriad-pro-n7", "myriad-pro", Arial, Helvetica, sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: 16px;
  text-shadow: 0px 1px 2px rgba(0, 0, 0, 0.75);
  -webkit-background-clip: padding-box;
  -webkit-border-radius: 4px;
  -moz-background-clip: padding;
  -moz-border-radius: 4px;
  border-radius: 4px;
  background-clip: padding-box;
}
.page-home .page-home-feature-bar .page-home-get-involved .action-button span,
.page-home .page-home-feature-bar .page-home-get-involved .action-button-big span {
  display: block;
  background: url(../images/layout/arrow-shadowed.png) no-repeat center right;
}
.page-home .page-home-feature-bar .page-home-featured-vids {
  width: 473px;
}
.page-home .page-home-feature-bar .page-home-featured-vids .page-home-feature-column-inner {
  padding: 22px 12px 0 12px;
}
.page-home .page-home-feature-bar .page-home-featured-vids ul {
  zoom: 1;
  padding: 0;
  margin: 0;
}
.page-home .page-home-feature-bar .page-home-featured-vids ul:before,
.page-home .page-home-feature-bar .page-home-featured-vids ul:after {
  content: "";
  display: table;
}
.page-home .page-home-feature-bar .page-home-featured-vids ul:after {
  clear: both;
}
.page-home .page-home-feature-bar .page-home-featured-vids ul li {
  display: block;
  float: left;
  margin: 0 9px 10px 0;
}
.page-home .page-home-feature-bar .page-home-featured-vids ul li .page-home-featured-vids-thumb {
  display: block;
  position: relative;
  width: 135px;
  height: 88px;
  overflow: hidden;
}
.page-home .page-home-feature-bar .page-home-featured-vids ul li .page-home-featured-vids-thumb .page-home-featured-vids-play-arrow {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 26px;
  height: 26px;
  background: url(../images/layout/video-play-arrow.png) no-repeat;
}
.page-home .page-home-feature-bar .page-home-featured-vids ul li .page-home-featured-vids-title,
.page-home .page-home-feature-bar .page-home-featured-vids ul li .page-home-featured-vids-link {
  font-family: "myriad-pro-n7", "myriad-pro", Arial, Helvetica, sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: 10px;
  text-transform: uppercase;
}
.page-home .page-home-feature-bar .page-home-featured-vids ul li .page-home-featured-vids-title {
  margin: 10px 0 0 0;
  width: 140px;
}
.page-home .page-home-feature-bar .page-home-featured-vids ul li .page-home-featured-vids-link a {
  color: #c10c31;
}
.page-club-members .heading {
  overflow: hidden;
  text-indent: -9999px;
  text-align: left;
  position: absolute;
  left: 540px;
  top: 24px;
  width: 184px;
  height: 13px;
  background: url(../images/layout/home-wildcat-club-members-text.png) no-repeat;
}
.page-container {
  width: 912px;
  margin: 190px auto;
  position: relative;
  background-color: #fff;
  -webkit-box-shadow: 0 1px 16px rgba(0, 0, 0, 0.25);
  -moz-box-shadow: 0 1px 16px rgba(0, 0, 0, 0.25);
  box-shadow: 0 1px 16px rgba(0, 0, 0, 0.25);
}
.page-container .page-tabs {
  height: 40px;
  visibility: hidden;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 12px;
  font-weight: bold;
  text-transform: uppercase;
  text-align: center;
}
.page-container .page-tabs li {
  display: block;
  float: left;
  height: 40px;
  line-height: 40px;
}
.page-container .page-tabs li:first-child {
  background-image: none !important;
}
.page-container .page-tabs li.current_page_item {
  height: 44px;
  line-height: 44px;
  margin-top: -4px;
  background: #ffffff url(../images/layout/page-active-tab-background.png) repeat-x !important;
  border-top: 1px solid #fff !important;
}
.page-container .page-tabs li.current_page_item + li {
  background-image: none !important;
}
.page-container .page-tabs li a {
  display: block;
  padding: 0 10px;
}
.page-container .no-js .page-tabs {
  visibility: visible;
}
.page-container.page-red-style {
  border: 1px solid #414141;
}
.page-container.page-red-style .page-tabs {
  background-color: #d31145;
}
.page-container.page-red-style .page-tabs li {
  border-top: 1px solid #f11953;
  background: url(../images/layout/page-red-tab-separator.png) no-repeat;
}
.page-container.page-red-style .page-tabs li.current_page_item a {
  color: #d31145;
}
.page-container.page-red-style .page-content h1,
.page-container.page-red-style .page-content a {
  color: #d31145;
}
.page-container.page-blue-style {
  border: 1px solid #414141;
}
.page-container.page-blue-style .page-tabs {
  background-color: #0150a2;
}
.page-container.page-blue-style .page-tabs li {
  border-top: 1px solid #015bb7;
  background: url(../images/layout/page-blue-tab-separator.png) no-repeat;
}
.page-container.page-blue-style .page-tabs li.current_page_item a {
  color: #0150a2;
}
.page-container.page-blue-style .page-content h1,
.page-container.page-blue-style .page-content a {
  color: #014790;
}
.page-container .page-content-header-image {
  width: 904px;
  height: 162px;
  overflow: hidden;
  margin: 4px auto 0;
}
.page-container .page-content {
  zoom: 1;
  color: #3b3b3b;
  font-size: 12px;
  padding: 35px 25px 35px 35px;
  width: 600px;
  min-height: 610px;
}
.page-container .page-content:before,
.page-container .page-content:after {
  content: "";
  display: table;
}
.page-container .page-content:after {
  clear: both;
}
.page-container .page-content h1 {
  font-size: 35px;
}
.page-container .page-content h2 {
  font-size: 18px;
}
.page-container .page-content p,
.page-container .page-content ul {
  line-height: 18px;
}
.page-container .page-content .photo-container {
  width: 50%;
  float: left;
}
.page-container .page-content .photo-container + * {
  clear: left;
}
.page-container .page-content .form fieldset {
  padding: 0 1.4em 1.4em 1.4em;
  margin: 0 0 1.5em 0;
  border: 1px solid #ccc;
}
.page-container .page-content .form legend {
  font-weight: bold;
  font-size: 1.2em;
  margin-top: -0.2em;
  margin-bottom: 1em;
}
.page-container .page-content .form fieldset,
.page-container .page-content .form #IE8#HACK {
  padding-top: 1.4em;
}
.page-container .page-content .form legend,
.page-container .page-content .form #IE8#HACK {
  margin-top: 0;
  margin-bottom: 0;
}
.page-container .page-content .form input[type=text],
.page-container .page-content .form input[type=password],
.page-container .page-content .form input.text,
.page-container .page-content .form input.title,
.page-container .page-content .form textarea {
  background-color: #fff;
  border: 1px solid #bbb;
}
.page-container .page-content .form input[type=text]:focus,
.page-container .page-content .form input[type=password]:focus,
.page-container .page-content .form input.text:focus,
.page-container .page-content .form input.title:focus,
.page-container .page-content .form textarea:focus {
  border-color: #666;
}
.page-container .page-content .form select {
  background-color: #fff;
  border-width: 1px;
  border-style: solid;
}
.page-container .page-content .form input[type=text],
.page-container .page-content .form input[type=password],
.page-container .page-content .form input.text,
.page-container .page-content .form input.title,
.page-container .page-content .form textarea,
.page-container .page-content .form select {
  margin: 0.5em 0;
}
.page-container .page-content .form input.text,
.page-container .page-content .form input.title {
  width: 300px;
  padding: 5px;
}
.page-container .page-content .form input.title {
  font-size: 1.5em;
}
.page-container .page-content .form textarea {
  width: 390px;
  height: 250px;
  padding: 5px;
}
.page-container .page-content .form form.inline {
  line-height: 3;
}
.page-container .page-content .form form.inline p {
  margin-bottom: 0;
}
.page-container .page-content .form .error,
.page-container .page-content .form .alert,
.page-container .page-content .form .notice,
.page-container .page-content .form .success,
.page-container .page-content .form .info {
  padding: 0.8em;
  margin-bottom: 1em;
  border: 2px solid #ddd;
}
.page-container .page-content .form .error,
.page-container .page-content .form .alert {
  background: #fbe3e4;
  color: #8a1f11;
  border-color: #fbc2c4;
}
.page-container .page-content .form .notice {
  background: #fff6bf;
  color: #514721;
  border-color: #ffd324;
}
.page-container .page-content .form .success {
  background: #e6efc2;
  color: #264409;
  border-color: #c6d880;
}
.page-container .page-content .form .info {
  background: #d5edf8;
  color: #205791;
  border-color: #92cae4;
}
.page-container .page-content .form .error a,
.page-container .page-content .form .alert a {
  color: #8a1f11;
}
.page-container .page-content .form .notice a {
  color: #514721;
}
.page-container .page-content .form .success a {
  color: #264409;
}
.page-container .page-content .form .info a {
  color: #205791;
}
.page-container .page-content .form label {
  font-weight: bold;
}
.page-container .page-content .form .side-by-side {
  zoom: 1;
  margin-bottom: 10px;
}
.page-container .page-content .form .side-by-side:before,
.page-container .page-content .form .side-by-side:after {
  content: "";
  display: table;
}
.page-container .page-content .form .side-by-side:after {
  clear: both;
}
.page-container .page-content .form .side-by-side .left {
  float: left;
  width: 260px;
  margin-right: 30px;
}
.page-container .page-content .form .side-by-side .left input {
  width: 100%;
  width: 250px;
  padding: 5px;
}
.page-container .page-content .form .side-by-side .right {
  float: left;
  width: 260px;
}
.page-container .page-content .form .side-by-side .right input {
  width: 100%;
  width: 250px;
  padding: 5px;
}
.page-container .page-content .form .checkbox-list {
  zoom: 1;
  width: 580px;
  margin-bottom: 10px;
  line-height: 1.4em;
}
.page-container .page-content .form .checkbox-list:before,
.page-container .page-content .form .checkbox-list:after {
  content: "";
  display: table;
}
.page-container .page-content .form .checkbox-list:after {
  clear: both;
}
.page-container .page-content .form .checkbox-list .item {
  float: left;
  margin-right: 15px;
  margin-bottom: 3px;
}
.page-container .page-content .form .checkbox-list .item input[type="checkbox"] {
  margin-right: 3px;
}
.page-container .page-content .form .line {
  width: 600px;
  height: 1px;
  background: #c1c1c1;
  margin-top: 15px;
  margin-bottom: 15px;
}
.page-container .page-content .form .textarea {
  margin-bottom: 10px;
}
.page-container .page-content .form .textarea label {
  display: block;
}
.page-container .page-content .form .textarea textarea {
  width: 580px;
  padding: 10px;
}
.page-container .page-side-panel {
  position: absolute;
  top: 240px;
  right: -10px;
  width: 240px;
  background-color: #fff;
  padding: 5px;
  -webkit-box-shadow: 0 0 2px rgba(0, 0, 0, 0.15);
  -moz-box-shadow: 0 0 2px rgba(0, 0, 0, 0.15);
  box-shadow: 0 0 2px rgba(0, 0, 0, 0.15);
}
.page-container .page-side-panel .page-side-panel-content {
  background-color: #f0f0f0;
  padding: 0 22px;
}
.page-container .page-side-panel .page-side-panel-content h2 {
  font-size: 15px;
  margin: 0 0 10px 0;
  font-weight: bold;
}
.page-container .page-side-panel .page-side-panel-content .page-side-panel-item {
  padding: 30px 0;
  border-top: 1px solid #c1c1c1;
}
.page-container .page-side-panel .page-side-panel-content .page-side-panel-item:first-child {
  border-top: 0;
}
.action-button {
  background: url(../images/layout/sprites/action-button.png) repeat-x;
  border: 1px solid #a9032e;
  display: inline-block;
  height: 30px;
  line-height: 30px;
  font-family: "myriad-pro-n7", "myriad-pro", Arial, Helvetica, sans-serif;
  font-style: normal;
  font-weight: 700;
  color: #eaeaea !important;
  font-size: 12px;
  text-decoration: none;
  -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.25);
  -moz-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.25);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.25);
  padding: 0 24px;
}
.action-button:hover {
  background-position: 0 -30px;
  color: #fff !important;
}
.action-button-big {
  background: url(../images/layout/sprites/action-button-big.png) repeat-x;
  border: 1px solid #a9032e;
  display: inline-block;
  height: 40px;
  line-height: 40px;
  font-family: "myriad-pro-n7", "myriad-pro", Arial, Helvetica, sans-serif;
  font-style: normal;
  font-weight: 700;
  color: #eaeaea !important;
  font-size: 14px;
  text-decoration: none;
  -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.25);
  -moz-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.25);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.25);
  padding: 0 24px;
}
.action-button-big:hover {
  background-position: 0 -40px;
  color: #fff !important;
}
.page-wildcat-club-staff {
  margin: 0 0 62px 28px;
}
.page-wildcat-club-staff ul {
  zoom: 1;
  padding: 0;
  margin: 0;
}
.page-wildcat-club-staff ul:before,
.page-wildcat-club-staff ul:after {
  content: "";
  display: table;
}
.page-wildcat-club-staff ul:after {
  clear: both;
}
.page-wildcat-club-staff ul li {
  display: block;
  float: left;
  margin: 0 10px 10px 0;
  background-color: #fff;
  padding: 5px;
  border: 1px solid #d9d9d9;
  -webkit-box-shadow: 0 0 2px rgba(0, 0, 0, 0.15);
  -moz-box-shadow: 0 0 2px rgba(0, 0, 0, 0.15);
  box-shadow: 0 0 2px rgba(0, 0, 0, 0.15);
}
.page-wildcat-club-staff ul li .page-wildcat-club-staff-item {
  zoom: 1;
  background-color: #f0f0f0;
}
.page-wildcat-club-staff ul li .page-wildcat-club-staff-item:before,
.page-wildcat-club-staff ul li .page-wildcat-club-staff-item:after {
  content: "";
  display: table;
}
.page-wildcat-club-staff ul li .page-wildcat-club-staff-item:after {
  clear: both;
}
.page-wildcat-club-staff ul li .page-wildcat-club-staff-item .page-wildcat-club-staff-photo {
  float: left;
  width: 102px;
  height: 150px;
  overflow: hidden;
}
.page-wildcat-club-staff ul li .page-wildcat-club-staff-item .page-wildcat-club-staff-desc {
  float: left;
  width: 200px;
  height: 220px;
  overflow: hidden;
  padding: 0 0 0 15px;
}
.page-wildcat-club-staff ul li .page-wildcat-club-staff-item .page-wildcat-club-staff-desc .page-wildcat-club-staff-name {
  padding: 12px 0 0 0;
  font-weight: bold;
  font-size: 15px;
  color: #3a3a3a;
  text-transform: uppercase;
}
.page-wildcat-club-staff ul li .page-wildcat-club-staff-item .page-wildcat-club-staff-desc .page-wildcat-club-staff-name a {
  color: #3a3a3a;
  text-decoration: none;
}
.page-wildcat-club-staff ul li .page-wildcat-club-staff-item .page-wildcat-club-staff-desc .page-wildcat-club-staff-name a:hover,
.page-wildcat-club-staff ul li .page-wildcat-club-staff-item .page-wildcat-club-staff-desc .page-wildcat-club-staff-name a:focus {
  text-decoration: underline;
}
.page-wildcat-club-staff ul li .page-wildcat-club-staff-item .page-wildcat-club-staff-desc .page-wildcat-club-staff-title,
.page-wildcat-club-staff ul li .page-wildcat-club-staff-item .page-wildcat-club-staff-desc .page-wildcat-club-staff-phone,
.page-wildcat-club-staff ul li .page-wildcat-club-staff-item .page-wildcat-club-staff-desc .page-wildcat-club-staff-fax {
  font-size: 11px;
  color: #797979;
  text-transform: uppercase;
}
.page-wildcat-club-staff ul li .page-wildcat-club-staff-item .page-wildcat-club-staff-desc .page-wildcat-club-staff-email {
  padding: 12px 0;
}
.page-wildcat-club-staff ul li .page-wildcat-club-staff-item .page-wildcat-club-staff-desc .page-wildcat-club-staff-email a {
  font-size: 11px;
  color: #d31145;
}
.page-wildcat-club-staff ul li .page-wildcat-club-staff-item .page-wildcat-club-staff-desc .page-wildcat-club-staff-phone,
.page-wildcat-club-staff ul li .page-wildcat-club-staff-item .page-wildcat-club-staff-desc .page-wildcat-club-staff-fax {
  zoom: 1;
}
.page-wildcat-club-staff ul li .page-wildcat-club-staff-item .page-wildcat-club-staff-desc .page-wildcat-club-staff-phone:before,
.page-wildcat-club-staff ul li .page-wildcat-club-staff-item .page-wildcat-club-staff-desc .page-wildcat-club-staff-fax:before,
.page-wildcat-club-staff ul li .page-wildcat-club-staff-item .page-wildcat-club-staff-desc .page-wildcat-club-staff-phone:after,
.page-wildcat-club-staff ul li .page-wildcat-club-staff-item .page-wildcat-club-staff-desc .page-wildcat-club-staff-fax:after {
  content: "";
  display: table;
}
.page-wildcat-club-staff ul li .page-wildcat-club-staff-item .page-wildcat-club-staff-desc .page-wildcat-club-staff-phone:after,
.page-wildcat-club-staff ul li .page-wildcat-club-staff-item .page-wildcat-club-staff-desc .page-wildcat-club-staff-fax:after {
  clear: both;
}
.page-wildcat-club-staff ul li .page-wildcat-club-staff-item .page-wildcat-club-staff-desc .page-wildcat-club-staff-phone span,
.page-wildcat-club-staff ul li .page-wildcat-club-staff-item .page-wildcat-club-staff-desc .page-wildcat-club-staff-fax span {
  float: left;
  display: block;
}
.page-wildcat-club-staff ul li .page-wildcat-club-staff-item .page-wildcat-club-staff-desc .page-wildcat-club-staff-phone .page-wildcat-club-staff-phone-label,
.page-wildcat-club-staff ul li .page-wildcat-club-staff-item .page-wildcat-club-staff-desc .page-wildcat-club-staff-fax .page-wildcat-club-staff-phone-label,
.page-wildcat-club-staff ul li .page-wildcat-club-staff-item .page-wildcat-club-staff-desc .page-wildcat-club-staff-phone .page-wildcat-club-staff-fax-label,
.page-wildcat-club-staff ul li .page-wildcat-club-staff-item .page-wildcat-club-staff-desc .page-wildcat-club-staff-fax .page-wildcat-club-staff-fax-label {
  width: 90px;
}








.page-wildcat-club-recognition {
  margin: 0;
}
.page-wildcat-club-recognition ul {
  zoom: 1;
  padding: 0;
  margin: 0;
}
.page-wildcat-club-recognition ul:before,
.page-wildcat-club-recognition ul:after {
  content: "";
  display: table;
}
.page-wildcat-club-recognition ul:after {
  clear: both;
}
.page-wildcat-club-recognition ul li {
  display: block;
  float: left;
  margin: 0 10px 10px 0;
  background-color: #fff;
  padding: 5px;
  border: 1px solid #d9d9d9;
  -webkit-box-shadow: 0 0 2px rgba(0, 0, 0, 0.15);
  -moz-box-shadow: 0 0 2px rgba(0, 0, 0, 0.15);
  box-shadow: 0 0 2px rgba(0, 0, 0, 0.15);
}
.page-wildcat-club-recognition ul li .page-wildcat-club-recognition-item {
  zoom: 1;
  background-color: #f0f0f0;
}
.page-wildcat-club-recognition ul li .page-wildcat-club-recognition-item:before,
.page-wildcat-club-recognition ul li .page-wildcat-club-recognition-item:after {
  content: "";
  display: table;
}
.page-wildcat-club-recognition ul li .page-wildcat-club-recognition-item:after {
  clear: both;
}
.page-wildcat-club-recognition ul li .page-wildcat-club-recognition-item .page-wildcat-club-recognition-photo {
  float: left;
  width: 102px;
  height: 150px;
  overflow: hidden;
}
.page-wildcat-club-recognition ul li .page-wildcat-club-recognition-item .page-wildcat-club-recognition-photo-vertical {
  width: 165px;
  height: 200px;
  overflow: hidden;
  display: table;
}
.page-wildcat-club-recognition ul li .page-wildcat-club-recognition-item .page-wildcat-club-recognition-photo-vertical-wrapper {
  vertical-align: middle;
  display: table-cell;
}
.page-wildcat-club-recognition ul li .page-wildcat-club-recognition-item .page-wildcat-club-recognition-photo-vertical-inner {
  max-height: 200px;
  overflow: hidden;
}
.page-wildcat-club-recognition ul li .page-wildcat-club-recognition-item .page-wildcat-club-recognition-photo-vertical-inner img {
  width: 165px; 
  height: auto;
}
.page-wildcat-club-recognition ul li .page-wildcat-club-recognition-item .page-wildcat-club-recognition-desc {
  float: left;
  width: 150px;
  height: 150px;
  overflow: hidden;
  padding: 0 0 0 15px;
}
.page-wildcat-club-recognition ul li .page-wildcat-club-recognition-item .page-wildcat-club-recognition-desc .page-wildcat-club-recognition-name {
  padding: 12px 0 0 0;
  font-weight: bold;
  font-size: 15px;
  color: #3a3a3a;
  text-transform: uppercase;
}
.page-wildcat-club-recognition ul li .page-wildcat-club-recognition-item .page-wildcat-club-recognition-desc .page-wildcat-club-recognition-name a {
  color: #3a3a3a;
  text-decoration: none;
}
.page-wildcat-club-recognition ul li .page-wildcat-club-recognition-item .page-wildcat-club-recognition-desc .page-wildcat-club-recognition-name a:hover,
.page-wildcat-club-recognition ul li .page-wildcat-club-recognition-item .page-wildcat-club-recognition-desc .page-wildcat-club-recognition-name a:focus {
  text-decoration: underline;
}
.page-wildcat-club-recognition ul li .page-wildcat-club-recognition-item .page-wildcat-club-recognition-desc .page-wildcat-club-recognition-details {
  font-size: 11px;
  color: #797979;
  text-transform: uppercase;
}


.page-faqs .page-faqs-list {
  display: block;
  margin: 0;
  padding: 0;
  text-indent: 0;
  list-style: none;
}
.page-faqs .page-faqs-list .page-faqs-item {
  margin: 0 0 25px 0;
}
.page-faqs .page-faqs-list .page-faqs-item .page-faqs-title {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 18px;
  color: #D31145;
  margin: 0 0 15px 0;
  cursor: pointer;
}
.page-faqs .page-faqs-list .page-faqs-item .page-faqs-desc {
  background-color: #F0F0F0;
  display: none;
  padding: 15px;
}
.page-wildcat-staff .page-content {
  min-height: 0;
}
.page-home-video-button {
  overflow: hidden;
  text-indent: -9999px;
  text-align: left;
  position: absolute;
  left: 50%;
  margin-left: -46px;
  top: 128px;
  z-index: 1000;
  display: block;
  background: url(../images/layout/video-play-button.png) no-repeat;
  width: 92px;
  height: 16px;
}
.page-lightbox-video {
  width: 800px;
  height: 450px;
  background: black;
  overflow: hidden;
}
#page-membership-benefits-overlay {
  zoom: 1;
  padding: 20px;
  background-color: #fff;
}
#page-membership-benefits-overlay:before,
#page-membership-benefits-overlay:after {
  content: "";
  display: table;
}
#page-membership-benefits-overlay:after {
  clear: both;
}
#page-membership-benefits-overlay img {
  display: block;
  margin: 0 0 15px 0;
}
#page-membership-benefits-overlay .action-button {
  float: right;
}
.lt-ie8 header .ticker-inner li {
  display: inline;
}
.lt-ie8 nav .main-menu li a .outer-container {
  padding-top: 17px;
  cursor: pointer;
}
.lt-ie8 .page-container {
  top: 190px;
  margin: 0 auto 380px;
}
