@charset "UTF-8";
/*
	General sitewide css
	To be included on every page
*/
/* Stylesheet for Better Autocomplete jQuery plugin by Didrik Nordström */
/**
 * Do NOT edit this file! Instead, include another stylesheet with your custom
 * overrides and extensions. Copy the selectors you need to edit and place them
 * in your CSS file. And remember to include that file AFTER this file.
 */
/* Reset styles for lists */
.better-autocomplete,
.better-autocomplete > .result {
  list-style: none;
  padding: 0;
  margin: 0;
  background: none; }

.better-autocomplete {
  text-align: left;
  font-family: 'Lucida Grande', Helvetica, Arial, Verdana, sans-serif;
  overflow: auto;
  cursor: default;
  background: white;
  border-bottom: 1px solid #bfbfbf; }

/* Groups */
.better-autocomplete > .group {
  position: relative;
  padding: 3px;
  text-align: center;
  background: #e7e7e7;
  border-color: #bfbfbf;
  border-width: 1px 1px 0 1px;
  border-style: solid; }

.better-autocomplete > .group > h3 {
  font-size: 11px;
  color: #555;
  padding: 0;
  margin: 0; }

/* Results */
.better-autocomplete > .result {
  position: relative;
  padding: 5px 7px;
  background: white;
  border-color: #bfbfbf;
  border-width: 1px 1px 0 1px;
  border-style: solid; }

.better-autocomplete > .result > h4 {
  font-size: 12px;
  color: #3c3c3c;
  padding: 0;
  margin: 0 0 2px 0; }

.better-autocomplete > .result > p {
  font-size: 11px;
  line-height: 1.3;
  color: #6f6f6f;
  padding: 0;
  margin: 0; }

/* Highlighting */
.better-autocomplete > .result.highlight {
  background: #0075ba;
  border-top-color: #1f4a64; }

.better-autocomplete > .result.highlight > h4,
.better-autocomplete > .result.highlight > p {
  color: white; }

/* jqModal base Styling courtesy of;
	Brice Burgess <bhb@iceburg.net> */
/* The Window's CSS z-index value is respected (takes priority). If none is supplied,
	the Window's z-index value will be set to 3000 by default (via jqModal.js). */
.jqmWindow {
  display: none;
  position: fixed;
  top: 17%;
  left: 50%;
  margin-left: -300px;
  width: 600px;
  background-color: #EEE;
  color: #333;
  border: 1px solid black;
  padding: 12px; }

.jqmOverlay {
  background-color: #000; }

/* Background iframe styling for IE6. Prevents ActiveX bleed-through (<select> form elements, etc.) */
* iframe.jqm {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  width: expression(this.parentNode.offsetWidth+'px');
  height: expression(this.parentNode.offsetHeight+'px'); }

/* Fixed posistioning emulation for IE6
     Star selector used to hide definition from browsers other than IE6
     For valid CSS, use a conditional include instead */
* html .jqmWindow {
  position: absolute;
  top: expression((document.documentElement.scrollTop || document.body.scrollTop) + Math.round(17 * (document.documentElement.offsetHeight || document.body.clientHeight) / 100) + 'px'); }

@-webkit-keyframes spin {
  to {
    -webkit-transform: rotate(1turn);
            transform: rotate(1turn); } }

@keyframes spin {
  to {
    -webkit-transform: rotate(1turn);
            transform: rotate(1turn); } }

/**
* mixin for setting a grid-based width
*/
/* 
	Reset browser styles 
*/
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, font, 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 {
  background: transparent;
  border: 0;
  margin: 0;
  padding: 0;
  vertical-align: baseline; }

body {
  line-height: 1; }

h1, h2, h3, h4, h5, h6 {
  clear: both;
  font-weight: normal; }

ol, ul {
  list-style: none; }

blockquote {
  quotes: none; }

blockquote:before, blockquote:after {
  content: "";
  content: none; }

del {
  text-decoration: line-through; }

/* tables still need 'cellspacing="0"' in the markup */
table {
  border-collapse: collapse;
  border-spacing: 0; }

a img {
  border: none; }

/*
    Base global styles
*/
/**
* mixin for setting a grid-based width
*/
body {
  background: #FFF;
  text-rendering: optimizeLegibility;
  font-family: BentonSansRE, Verdana, sans-serif;
  color: black;
  font-size: 14px;
  line-height: 1.6em; }

input {
  font-family: BentonSansRE, Verdana, sans-serif;
  color: black;
  font-size: 14px;
  line-height: 1.6em; }

h1, h2, h3, h4, h5, h6 {
  font-family: RelayCond, Arial, serif;
  font-style: normal;
  font-weight: bold;
  line-height: 1em; }

h1 {
  font-size: 48px;
  margin-bottom: .2em; }

h2 {
  font-size: 36px; }

h3 {
  font-size: 30px;
  margin-bottom: 10px; }

p + h3 {
  margin-top: 30px; }

h4 {
  font-size: 24px; }

h5 {
  font-size: 18px;
  font-weight: normal; }

h6 {
  font-size: 12px; }

p {
  margin: 0 0 1.2em 0; }

ul {
  list-style: square;
  margin: 0 0 18px 1.5em; }

ol {
  list-style: decimal;
  margin: 0 0 18px 1.5em; }

blockquote {
  margin-left: 1em;
  color: #444; }

a:link, a:visited {
  color: #000;
  text-decoration: underline;
  -webkit-text-decoration-color: #999;
          text-decoration-color: #999; }

a:active, a:hover {
  color: #ff4b33;
  text-decoration: underline; }

noscript {
  background-color: #ff4b33;
  color: white;
  text-align: center;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 5px; }

::-webkit-input-placeholder {
  color: #ddd; }

::-moz-placeholder {
  color: #ddd; }

:-ms-input-placeholder {
  color: #ddd; }

::placeholder {
  color: #ddd; }

.fiu-announcement {
  text-align: center;
  background: #f0f0f0;
  border-bottom: solid 1px #ddd;
  width: 100%;
  line-height: 30px; }

.fiu-bordered-image {
  outline: #ddd solid 1px;
  outline-offset: -1px; }

.fiu-entity-use-link {
  white-space: nowrap;
  cursor: pointer;
  text-decoration: none !important; }
  .fiu-entity-use-link__label {
    text-decoration: underline; }
  .fiu-entity-use-link__use-count {
    color: #999;
    text-decoration: none; }
  .fiu-entity-use-link--secondary a {
    color: #999; }

.fiu-loading--wysiwyg:before {
  content: ' ';
  position: absolute;
  left: -15px;
  box-sizing: border-box;
  width: 10px;
  height: 10px;
  top: 50%;
  margin-top: -5px;
  display: inline-block;
  -webkit-animation: spin 400ms infinite linear;
          animation: spin 400ms infinite linear;
  border-radius: 50%;
  border: 2px solid #cccccc;
  border-right-color: #333333; }

.fiu-tooltip {
  background: white;
  border: solid 1px #ddd;
  padding: 10px;
  font-size: 10px;
  max-width: 300px;
  line-height: 1.4em;
  box-shadow: 3px 3px 10px 3px rgba(0, 0, 0, 0.2);
  z-index: 3004; }

.fiu-gridded {
  background-image: url(/images/grid.png); }

.fiu-clearfix:before, .fiu-clearfix:after {
  content: "";
  display: table; }

.fiu-clearfix:after {
  clear: both; }

.fiu-hidden {
  display: none; }

.fiu-flash-notice {
  font-size: 10px; }

/**
* mixin for setting a grid-based width
*/
.fiu-header {
  position: relative;
  width: 940px;
  margin-left: 10px;
  margin-right: 10px;
  height: 143px; }
  .fiu-header:before, .fiu-header:after {
    content: "";
    display: table; }
  .fiu-header:after {
    clear: both; }
  .fiu-header__right {
    float: left;
    width: 700px;
    height: 118px; }
  .fiu-header__right-upper:before, .fiu-header__right-upper:after, .fiu-header__right-lower:before, .fiu-header__right-lower:after {
    content: "";
    display: table; }
  .fiu-header__right-upper:after, .fiu-header__right-lower:after {
    clear: both; }
  .fiu-header__right-lower {
    position: absolute;
    top: 88px; }

.fiu-branding {
  float: left;
  width: 220px;
  padding-right: 20px;
  line-height: 0; }

.fiu-sponsor__wrapper {
  float: left;
  width: 460px;
  padding-right: 20px; }

.fiu-hey-user {
  font-size: 10px;
  float: left;
  line-height: 15px;
  color: #999; }

.fiu-site-container {
  margin: 30px auto;
  padding: 0;
  width: 960px;
  clear: both; }

.fiu-main {
  margin-left: 10px;
  margin-right: 10px;
  margin-top: 30px;
  margin-bottom: 30px; }
  .fiu-main:before, .fiu-main:after {
    content: "";
    display: table; }
  .fiu-main:after {
    clear: both; }

.fiu-main-menu {
  float: left; }

.fiu-page__header {
  margin-bottom: 35px; }
  .fiu-page__header--just-headline {
    margin-bottom: 15px; }

.fiu-content {
  width: 700px; }
  .fiu-content--standard {
    float: left;
    margin-bottom: 50px; }
  .fiu-content__right {
    float: left;
    padding-left: 20px;
    width: 220px; }
    .fiu-content__right:before, .fiu-content__right:after {
      content: "";
      display: table; }
    .fiu-content__right:after {
      clear: both; }

/**
* mixin for setting a grid-based width
*/
/*

@mixin deviceIs($screenMax) {
	@if $screenMax == lessThanFourDevice {
		@media only screen and (max-width: 1120px) { @content; }
	} 
	@else if $screenMax == lessThanThreeDevice {
		@media only screen and (max-width: 960px) { @content; }
	}
	@else if $screenMax == lessThanTwoDevice {
		@media only screen and (max-width: 720px) { @content; }
	}	
	@else if $screenMax == oneColumnDevice {
		@media only screen and (max-width: 480px) { @content; }
	}
	@else if $screenMax == twoColumnDevice {
		@media only screen and (min-width: 480px) and (max-width: 720px) { @content; }
	}
	@else if $screenMax == threeColumnDevice {
		@media only screen and (min-width: 720px) and (max-width: 960px) { @content; }
	}
	@else if $screenMax == fourColumnDevice {
		@media only screen and (min-width: 960px) { @content; }
	}
}

.responsive {

    .fiu {
        &-header {
            @include deviceIs(oneColumnDevice) { width: 220px;}
            @include deviceIs(twoColumnDevice) { width: 460px; }
            @include deviceIs(threeColumnDevice) { width: 700px; }
            @include deviceIs(fourColumnDevice) { width: 940px; }
        }
        &-sponsor {
            &__wrapper {
		        @include deviceIs(lessThanThreeDevice) {
                    @include grid-width(2);
	    	    }
            }
        }
        &-hey-user {
            @include deviceIs(lessThanThreeDevice) {
                @include grid-width(2, true);
            }
            @include deviceIs(lessThanTwoDevice) {
                display: none;
            }
        }
        &-footer {
            @include deviceIs(lessThanTwoDevice) {
                li {

                }
                li#footer-copyright {
                    float: none;
                }
                li#footer-rss {
                    display: none;
                }
            }
        }
        &-site-container {
            @include deviceIs(oneColumnDevice) { width: 240px;}
            @include deviceIs(twoColumnDevice) { width: 480px; }
            @include deviceIs(threeColumnDevice) { width: 720px; }
            @include deviceIs(fourColumnDevice) { width: 960px; }
        }
    }

	#user-menu {
		@include deviceIs(fourColumnDevice) { width: 940px; }	
		@include deviceIs(threeColumnDevice) { 
			width: 700px;
			font-size: $small; 
		}
	}
	
	#user-menu-wrapper {
		@include deviceIs(lessThanTwoDevice) { 
			display: none;
		}
	}
	
	
	#more {
		@include deviceIs(lessThanTwoDevice) { 
			display: none;
		}	
	}
	
	.navigation-lists {
		@include deviceIs(lessThanThreeDevice) { 
			.categories-1, .categories-2 {
				display: none;
			}
			.typeface-list {
				margin-left: 0px;
			}	
		}
		@include deviceIs(lessThanTwoDevice) { 
			.typeface-list {
				display: none;
			}	
			div + div {
				margin-left: 0;
			}
		}	
	}
	
	#content {
		@include deviceIs(oneColumnDevice) { width: 240px;}
		@include deviceIs(twoColumnDevice) { width: 480px; }
		@include deviceIs(threeColumnDevice) { width: 720px; }
		@include deviceIs(lessThanTwoDevice) {
			img {
				max-width: 100%;
			} 
		}
	
	}
	
	#respond {
		@include deviceIs(lessThanTwoDevice) {
			padding-left: 0px !important; 
		}
		@include deviceIs(oneColumnDevice) { width: 240px !important;}
		@include deviceIs(twoColumnDevice) { width: 480px !important; }
		@include deviceIs(threeColumnDevice) { width: 720px !important; }	
	}

	#main {
		@include deviceIs(lessThanFourDevice) {
			margin-top: 5px;
		}
	
	}
	
	
	// wp captions 
	div.wp-caption[style] {
		@include deviceIs(lessThanThreeDevice) {
			width: auto !important;
			float: none;
		}
	}
	.alignright {
		@include deviceIs(lessThanThreeDevice) {
			margin-left: 0px;
		}
	}
	
	// comments 
	.commentlist {
		@include deviceIs(lessThanTwoDevice) {
			li.comment {
				div.comment-body {
					float: none;
					width: auto;
				}
			}
		}
	}
	
	// right-column 
	#right, #entry-utility {
		float: none;
		padding-left: 0px;
	}

}


*/
/**
* mixin for setting a grid-based width
*/
.fiu-footer {
  margin-left: 10px;
  margin-right: 10px;
  border-top: 5px solid #000;
  padding-top: 10px;
  font-size: 14px;
  clear: both; }
  .fiu-footer li {
    display: inline-block;
    margin-right: 20px;
    vertical-align: top; }
    .fiu-footer li ul {
      display: inline-block;
      margin: 0;
      width: 100%; }
      .fiu-footer li ul li {
        margin-right: 0;
        display: block; }
  .fiu-footer__copyright {
    float: right;
    margin-right: 0; }
  .fiu-footer__font-preloader {
    font-family: RelayCond, Arial, serif;
    font-style: italic;
    color: white; }

/**
* mixin for setting a grid-based width
*/
.fiu-quick-lists {
  margin: 10px 0px 10px 0px;
  width: 940px; }
  .fiu-quick-lists__wrapper {
    position: relative;
    border-bottom: 1px solid #ccc;
    border-top: 3px solid black;
    font-family: BentonSansRE, Verdana, sans-serif;
    margin-left: 10px;
    margin-right: 10px;
    box-shadow: inset 0px 8px 8px -5px rgba(0, 0, 0, 0.3); }
  .fiu-quick-lists__header {
    cursor: pointer;
    font-size: 16px;
    font-weight: bold;
    font-family: BentonSansRE, Verdana, sans-serif; }
    .fiu-quick-lists__header span {
      padding-left: 5px;
      font-size: 10px; }
  .fiu-quick-lists__list {
    width: 180px; }
    .fiu-quick-lists__list .fiu-entity-use-link {
      font-weight: normal; }
      .fiu-quick-lists__list .fiu-entity-use-link__label {
        text-decoration: none; }
    .fiu-quick-lists__list ul {
      display: none;
      list-style-type: none;
      font-size: 10px;
      overflow: hidden;
      line-height: 1em;
      margin: 0;
      padding-top: 15px; }
      .fiu-quick-lists__list ul li {
        padding-right: 0px;
        display: block;
        margin-bottom: 5px; }
        .fiu-quick-lists__list ul li li {
          margin-left: 1em; }
  .fiu-quick-lists__list--typefaces {
    width: 580px; }
    .fiu-quick-lists__list--typefaces ul {
      float: left;
      width: 100px; }
    .fiu-quick-lists__list--typefaces ul + ul {
      margin-left: 20px; }
  .fiu-quick-lists__more-typefaces {
    line-height: 1.6em;
    width: 80px; }
    .fiu-quick-lists__more-typefaces a {
      font-weight: bold; }

.fiu-sponsor {
  font-size: 12px;
  line-height: 1.5em;
  visibility: hidden;
  position: relative;
  top: 1px; }
  .fiu-sponsor__link {
    position: relative;
    padding-right: 120px; }
    .fiu-sponsor__link img {
      z-index: -10;
      padding-left: 5px;
      position: absolute; }
  .fiu-sponsor a.fiu-sponsor__link {
    text-decoration: none; }

/**
* mixin for setting a grid-based width
*/
.fiu-search-box {
  position: relative;
  top: -10px;
  width: 220px;
  display: inline;
  float: left; }
  .fiu-search-box__input {
    font-size: 13px;
    border: solid #ddd 1px;
    padding: 5px;
    height: 16px;
    box-shadow: inset 1px 1px 3px 1px rgba(0, 0, 0, 0.05);
    width: 95%; }
  .fiu-search-box__advanced {
    position: absolute;
    top: 30px;
    left: 7px;
    font-size: 9px; }

.better-autocomplete {
  overflow: hidden;
  z-index: 10;
  max-height: 800px;
  width: 340px !important;
  left: auto !important;
  right: 0 !important;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.5); }
  .better-autocomplete .result {
    border-color: #e7e7e7; }
  .better-autocomplete .result.highlight {
    background-color: white;
    border-top-color: #e7e7e7; }
    .better-autocomplete .result.highlight span {
      color: #ff4b33; }
  .better-autocomplete-aria {
    display: none; }

.better-autocomplete > .result > table td {
  vertical-align: top;
  text-align: left;
  line-height: 1em; }

.better-autocomplete > .result > table td.label {
  width: 100%; }

.better-autocomplete > .result > table td.thumb {
  width: 30px;
  padding: 0 5px 0 5px; }

.better-autocomplete > .result > table span {
  font-family: BentonSansRE, Verdana, sans-serif;
  font-size: 10px;
  color: #000;
  padding: 0;
  margin: 0 0 2px 0; }

.better-autocomplete > .result > table span.meta {
  color: #ccc; }

.better-autocomplete > .result > table h3 {
  font-family: BentonSansRE, Verdana, sans-serif;
  font-size: 10px;
  font-weight: bold; }

.better-autocomplete > .group > h3 {
  font-family: BentonSansRE, Verdana, sans-serif;
  padding: 3px !important; }

/**
* mixin for setting a grid-based width
*/
.fiu-main-menu {
  font-family: RelayCond, Arial, serif;
  margin: 0;
  font-size: 36px;
  padding-top: 8px;
  width: 480px; }
  .fiu-main-menu li {
    display: inline;
    float: left;
    width: 220px;
    padding-right: 20px; }
  .fiu-main-menu a {
    text-decoration: none; }
  .fiu-main-menu li a {
    font-weight: normal;
    color: #999; }
    .fiu-main-menu li a:hover {
      color: black; }
  .fiu-main-menu li.current a {
    color: black;
    font-weight: bold; }

/**
* mixin for setting a grid-based width
*/
.fiu-dropdown-menu {
  line-height: 15px;
  font-size: 10px;
  float: left;
  width: 220px;
  display: inline;
  list-style: none;
  margin: 0; }
  .fiu-dropdown-menu span {
    font-size: 9px;
    padding-left: 5px; }
  .fiu-dropdown-menu b {
    text-decoration: none; }
  .fiu-dropdown-menu ul {
    margin: 0;
    padding: 0;
    list-style: none; }
  .fiu-dropdown-menu a {
    font-weight: bold;
    text-decoration: none; }
    .fiu-dropdown-menu a:hover {
      color: #999; }
  .fiu-dropdown-menu .current > a {
    font-weight: bold; }
  .fiu-dropdown-menu li {
    width: auto;
    /* width needed or else Opera goes nuts */
    background-color: white; }
    .fiu-dropdown-menu li ul {
      display: none;
      position: relative;
      width: 120px;
      left: 75px;
      z-index: 9;
      border-top: solid 4px white;
      border-bottom: solid 6px white;
      box-shadow: 3px 3px 6px 3px rgba(0, 0, 0, 0.3); }
      .fiu-dropdown-menu li ul li {
        padding-top: 3px;
        padding-bottom: 3px;
        position: relative; }
        .fiu-dropdown-menu li ul li ul.menu_level_1 {
          display: none;
          position: absolute;
          top: 0;
          left: -120px; }
        .fiu-dropdown-menu li ul li:hover ul.menu_level_1 {
          display: block; }
      .fiu-dropdown-menu li ul a {
        display: block;
        border-right: solid 20px white;
        border-left: solid 10px white;
        width: 120px;
        border-right: 0;
        font-weight: normal;
        text-decoration: underline; }
    .fiu-dropdown-menu li:hover ul {
      display: block; }

/**
* mixin for setting a grid-based width
*/
#fiu-modaldialog {
  display: none;
  position: fixed;
  margin: auto;
  overflow: visible;
  box-shadow: 3px 3px 10px 3px rgba(0, 0, 0, 0.2);
  width: 300px;
  height: 200px;
  top: 50%;
  left: 50%;
  margin-left: -150px;
  margin-top: -100px;
  text-align: center;
  background: #fff;
  z-index: 3001; }
  #fiu-modaldialog .fiu-modal-close {
    position: absolute;
    top: -10px;
    right: -10px; }
  #fiu-modaldialog table {
    width: 100%;
    height: 100%;
    border: solid #ccc 1px; }
    #fiu-modaldialog table td {
      padding: 10px;
      width: 100%;
      height: 100%;
      vertical-align: middle; }

#fiu-modal {
  display: none;
  position: fixed;
  margin: auto;
  overflow: visible;
  box-shadow: 3px 3px 10px 3px rgba(0, 0, 0, 0.2);
  position: absolute;
  top: 5%;
  left: 50%;
  margin-left: -500px;
  min-height: 90%;
  width: 1000px;
  height: auto;
  background: #fff; }
  #fiu-modal .fiu-modal-close {
    position: absolute;
    top: -10px;
    right: -10px; }

#fiu-modal-content {
  min-width: 900px;
  width: 100%;
  height: 100%;
  display: block;
  clear: both;
  margin: 20px; }

#fiu-modal-loader {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background-image: url("/images/ajax-loader.gif");
  background-position: 50% 50%;
  background-repeat: no-repeat; }

/**
* mixin for setting a grid-based width
*/
.fiu-pagination a {
  background-image: none;
  background-color: #999;
  color: #fff;
  padding: 8px 12px;
  font-size: 14px;
  border: 0;
  text-decoration: none;
  cursor: pointer;
  padding: 4px 6px; }
  .fiu-pagination a:hover {
    background-color: #666;
    color: #fff; }

/**
* mixin for setting a grid-based width
*/
.fiu-link__ext:after {
  content: '\a0 →'; }

.fiu-link__ext[href=''] {
  opacity: 0.25; }
  .fiu-link__ext[href='']:focus, .fiu-link__ext[href='']:hover {
    opacity: 1; }

.fiu-link--to-admin {
  background-color: #ddd;
  font-family: BentonSansRE, Verdana, sans-serif;
  font-size: 10px;
  line-height: 1.2;
  font-weight: normal;
  vertical-align: middle;
  text-decoration: none !important;
  color: white !important;
  padding: 3px 5px;
  position: absolute;
  top: 3px;
  right: 0;
  display: inline; }
  .fiu-link--to-admin:after {
    content: '➚'; }
  .fiu-link--to-admin:hover {
    background-color: #666; }

/**
* mixin for setting a grid-based width
*/
.fiu-button {
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  background-image: none;
  background-color: #999;
  color: #fff;
  padding: 8px 12px;
  font-size: 14px;
  border: 0;
  text-decoration: none;
  cursor: pointer;
  color: white !important;
  padding: 4px 6px;
  font-size: 12px;
  cursor: pointer;
  box-sizing: border-box;
  position: relative;
  text-decoration: none !important; }
  .fiu-button:hover {
    background-color: #666;
    color: #fff; }
  .fiu-button--tiny {
    background-image: none;
    background-color: #999;
    color: #fff;
    padding: 8px 12px;
    font-size: 14px;
    border: 0;
    text-decoration: none;
    cursor: pointer;
    padding: 3px 5px;
    font-size: 10px; }
    .fiu-button--tiny:hover {
      background-color: #666;
      color: #fff; }
  .fiu-button--big {
    font-size: 12px;
    padding: 8px 16px; }
  .fiu-button--bigger {
    font-size: 14px;
    padding: 8px 12px; }
  .fiu-button--iconed {
    display: inline-block;
    font: normal normal normal 14px/1 FontAwesome;
    font-size: inherit;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    padding: 4px 8px 5px 8px; }
  .fiu-button--active {
    background-color: black; }
    .fiu-button--active:before {
      display: inline-block;
      font: normal normal normal 14px/1 FontAwesome;
      font-size: inherit;
      text-rendering: auto;
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
      padding-right: 3px;
      content: ""; }
  .fiu-button--add:before {
    display: inline-block;
    font: normal normal normal 14px/1 FontAwesome;
    font-size: inherit;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    padding-right: 3px;
    content: ""; }
  .fiu-button--disabled {
    color: #ccc;
    cursor: default; }
  .fiu-button--highlight1 {
    background-color: #ff4b33; }
  .fiu-button--highlight2 {
    color: black !important;
    background-color: #fff380; }
  .fiu-button--facebook {
    background-color: #3b5998; }
  .fiu-button--loading:before {
    display: inline-block;
    font: normal normal normal 14px/1 FontAwesome;
    font-size: inherit;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    content: "";
    padding: 0;
    margin-right: 5px;
    -webkit-animation: spin 400ms infinite linear;
            animation: spin 400ms infinite linear; }
  .fiu-button--appendix {
    position: absolute;
    top: 0;
    right: 0;
    border-left: solid 1px white; }
  .fiu-button__suffix {
    background-color: #ddd;
    color: #999;
    padding: 4px 6px;
    font-size: 12px;
    position: relative;
    left: 6px; }

.fiu-button-row__cell {
  display: inline; }
  .fiu-button-row__cell + .fiu-button-row__cell {
    margin-left: 2px; }

.fiu-double-button__child {
  display: inline-block; }

.fiu-double-button__child1 {
  width: 80%; }

.fiu-double-button__child2 {
  width: 20%; }

.fiu-button-menu {
  display: none;
  z-index: 10;
  list-style: none;
  margin: 0;
  position: absolute;
  left: 0;
  line-height: 0;
  font-family: BentonSansRE, Verdana, sans-serif; }
  .fiu-button-menu__cell {
    display: inline-block;
    border-top: 1px solid white;
    width: 100px; }
  .fiu-button-menu__item {
    display: inline-block;
    min-width: 100px;
    width: 100%;
    line-height: 1.2; }
  .fiu-button-menu__opener {
    position: relative;
    z-index: 11; }
    .fiu-button-menu__opener--icon {
      color: #ccc; }
      .fiu-button-menu__opener--icon:before {
        content: "";
        display: inline-block;
        font: normal normal normal 14px/1 FontAwesome;
        font-size: inherit;
        text-rendering: auto;
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
        float: right;
        color: inherit;
        font-size: 12px;
        cursor: pointer; }
      .fiu-button-menu__opener--icon:after {
        content: '';
        z-index: -1;
        position: absolute;
        display: inline-block;
        width: 25px;
        height: 20px;
        background-color: rgba(255, 255, 255, 0); }
      .fiu-button-menu__opener--icon:hover {
        color: #666; }
        .fiu-button-menu__opener--icon:hover:before {
          content: ""; }
  .fiu-button-menu__opener:hover .fiu-button-menu {
    display: inline-block; }
  .fiu-button-menu--from-button {
    top: 23px; }
  .fiu-button-menu--from-icon {
    top: -5px;
    left: 15px; }

/**
* mixin for setting a grid-based width
*/
.fiu-bookmarklet-button {
  background-image: none;
  background-color: #999;
  color: #fff;
  padding: 8px 12px;
  font-size: 14px;
  border: 0;
  text-decoration: none;
  cursor: pointer;
  cursor: move;
  color: white !important;
  text-decoration: none !important; }
  .fiu-bookmarklet-button:hover {
    background-color: #666;
    color: #fff; }
  .fiu-bookmarklet-button__arrow-wrapper {
    position: relative; }
  .fiu-bookmarklet-button__arrow {
    display: none;
    position: absolute;
    background-image: url("/images/bookmarklet-arrow.png");
    background-repeat: none;
    width: 101px;
    height: 310px;
    top: -336px;
    left: 110px; }

/**
* mixin for setting a grid-based width
*/
.fiu-progress-bar {
  width: 100%;
  height: 5px;
  display: none;
  position: absolute;
  z-index: 10;
  left: 0;
  bottom: 0;
  background-color: #f0f0f0; }
  .fiu-progress-bar__core {
    position: absolute;
    -webkit-transition: width 0.1s;
    transition: width 0.1s;
    top: 0;
    left: 0;
    background-color: #393;
    height: 100%;
    width: 0; }
  .fiu-progress-bar--main {
    position: fixed;
    bottom: 0;
    left: 0;
    height: 10px; }
  .fiu-progress-bar__label {
    color: white;
    position: relative;
    font-size: 11px;
    display: inline-block;
    width: 100%;
    text-align: center; }

/**
* mixin for setting a grid-based width
*/
.fiu-close {
  color: #666;
  cursor: pointer; }
  .fiu-close:before {
    display: inline-block;
    font: normal normal normal 14px/1 FontAwesome;
    font-size: inherit;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    padding-right: 3px;
    content: ""; }
  .fiu-close--small {
    position: absolute;
    top: 2px;
    right: 2px; }

/**
* mixin for setting a grid-based width
*/
.fiu-help {
  position: relative;
  margin-left: 7px;
  vertical-align: top;
  text-decoration: none;
  background-color: #ddd;
  color: #999;
  padding: 3px 5px;
  font-size: 10px;
  cursor: pointer; }
  .fiu-help--tiny {
    font-size: 9px;
    color: white;
    background-color: #ccc;
    font-weight: normal;
    padding: 2px 4px;
    margin-left: 3px; }

/**
* mixin for setting a grid-based width
*/
body.stop-scrolling {
  height: 100%;
  overflow: hidden; }

.sweet-overlay {
  background-color: black;
  /* IE8 */
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=40)";
  /* IE8 */
  background-color: rgba(0, 0, 0, 0.4);
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  display: none;
  z-index: 10000; }

.sweet-alert {
  background-color: white;
  font-family: 'Open Sans', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  width: 478px;
  padding: 17px;
  border-radius: 5px;
  text-align: center;
  position: fixed;
  left: 50%;
  top: 50%;
  margin-left: -256px;
  margin-top: -200px;
  overflow: hidden;
  display: none;
  z-index: 99999; }

@media all and (max-width: 540px) {
  .sweet-alert {
    width: auto;
    margin-left: 0;
    margin-right: 0;
    left: 15px;
    right: 15px; } }

.sweet-alert h2 {
  color: #575757;
  font-size: 30px;
  text-align: center;
  font-weight: 600;
  text-transform: none;
  position: relative;
  margin: 25px 0;
  padding: 0;
  line-height: 40px;
  display: block; }

.sweet-alert p {
  color: #797979;
  font-size: 16px;
  text-align: center;
  font-weight: 300;
  position: relative;
  text-align: inherit;
  float: none;
  margin: 0;
  padding: 0;
  line-height: normal; }

.sweet-alert fieldset {
  border: none;
  position: relative; }

.sweet-alert .sa-error-container {
  background-color: #f1f1f1;
  margin-left: -17px;
  margin-right: -17px;
  overflow: hidden;
  padding: 0 10px;
  max-height: 0;
  webkit-transition: padding 0.15s, max-height 0.15s;
  -webkit-transition: padding 0.15s, max-height 0.15s;
  transition: padding 0.15s, max-height 0.15s; }

.sweet-alert .sa-error-container.show {
  padding: 10px 0;
  max-height: 100px;
  webkit-transition: padding 0.2s, max-height 0.2s;
  -webkit-transition: padding 0.25s, max-height 0.25s;
  transition: padding 0.25s, max-height 0.25s; }

.sweet-alert .sa-error-container .icon {
  display: inline-block;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background-color: #ea7d7d;
  color: white;
  line-height: 24px;
  text-align: center;
  margin-right: 3px; }

.sweet-alert .sa-error-container p {
  display: inline-block; }

.sweet-alert .sa-input-error {
  position: absolute;
  top: 29px;
  right: 26px;
  width: 20px;
  height: 20px;
  opacity: 0;
  -webkit-transform: scale(0.5);
  transform: scale(0.5);
  -webkit-transform-origin: 50% 50%;
  transform-origin: 50% 50%;
  -webkit-transition: all 0.1s;
  transition: all 0.1s; }

.sweet-alert .sa-input-error::before, .sweet-alert .sa-input-error::after {
  content: "";
  width: 20px;
  height: 6px;
  background-color: #f06e57;
  border-radius: 3px;
  position: absolute;
  top: 50%;
  margin-top: -4px;
  left: 50%;
  margin-left: -9px; }

.sweet-alert .sa-input-error::before {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg); }

.sweet-alert .sa-input-error::after {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg); }

.sweet-alert .sa-input-error.show {
  opacity: 1;
  -webkit-transform: scale(1);
  transform: scale(1); }

.sweet-alert input {
  width: 100%;
  box-sizing: border-box;
  border-radius: 3px;
  border: 1px solid #d7d7d7;
  height: 43px;
  margin-top: 10px;
  margin-bottom: 17px;
  font-size: 18px;
  box-shadow: inset 0px 1px 1px rgba(0, 0, 0, 0.06);
  padding: 0 12px;
  display: none;
  -webkit-transition: all 0.3s;
  transition: all 0.3s; }

.sweet-alert input:focus {
  outline: none;
  box-shadow: 0px 0px 3px #c4e6f5;
  border: 1px solid #b4dbed; }

.sweet-alert input:focus::-moz-placeholder {
  -webkit-transition: opacity 0.3s 0.03s ease;
  transition: opacity 0.3s 0.03s ease;
  opacity: 0.5; }

.sweet-alert input:focus:-ms-input-placeholder {
  -webkit-transition: opacity 0.3s 0.03s ease;
  transition: opacity 0.3s 0.03s ease;
  opacity: 0.5; }

.sweet-alert input:focus::-webkit-input-placeholder {
  -webkit-transition: opacity 0.3s 0.03s ease;
  transition: opacity 0.3s 0.03s ease;
  opacity: 0.5; }

.sweet-alert input::-moz-placeholder {
  color: #bdbdbd; }

.sweet-alert input:-ms-input-placeholder {
  color: #bdbdbd; }

.sweet-alert input::-webkit-input-placeholder {
  color: #bdbdbd; }

.sweet-alert.show-input input {
  display: block; }

.sweet-alert .sa-confirm-button-container {
  display: inline-block;
  position: relative; }

.sweet-alert .la-ball-fall {
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -27px;
  margin-top: 4px;
  opacity: 0;
  visibility: hidden; }

.sweet-alert button {
  background-color: #8CD4F5;
  color: white;
  border: none;
  box-shadow: none;
  font-size: 17px;
  font-weight: 500;
  border-radius: 5px;
  padding: 10px 32px;
  margin: 26px 5px 0 5px;
  cursor: pointer; }

.sweet-alert button:focus {
  outline: none;
  box-shadow: 0 0 2px rgba(128, 179, 235, 0.5), inset 0 0 0 1px rgba(0, 0, 0, 0.05); }

.sweet-alert button:hover {
  background-color: #7ecff4; }

.sweet-alert button:active {
  background-color: #5dc2f1; }

.sweet-alert button.cancel {
  background-color: #C1C1C1; }

.sweet-alert button.cancel:hover {
  background-color: #b9b9b9; }

.sweet-alert button.cancel:active {
  background-color: #a8a8a8; }

.sweet-alert button.cancel:focus {
  box-shadow: rgba(197, 205, 211, 0.8) 0px 0px 2px, rgba(0, 0, 0, 0.0470588) 0px 0px 0px 1px inset !important; }

.sweet-alert button[disabled] {
  opacity: .6;
  cursor: default; }

.sweet-alert button.confirm[disabled] {
  color: transparent; }

.sweet-alert button.confirm[disabled] ~ .la-ball-fall {
  opacity: 1;
  visibility: visible;
  -webkit-transition-delay: 0s;
          transition-delay: 0s; }

.sweet-alert button::-moz-focus-inner {
  border: 0; }

.sweet-alert[data-has-cancel-button=false] button {
  box-shadow: none !important; }

.sweet-alert[data-has-confirm-button=false][data-has-cancel-button=false] {
  padding-bottom: 40px; }

.sweet-alert .sa-icon {
  width: 80px;
  height: 80px;
  border: 4px solid gray;
  border-radius: 40px;
  border-radius: 50%;
  margin: 20px auto;
  padding: 0;
  position: relative;
  box-sizing: content-box; }

.sweet-alert .sa-icon.sa-error {
  border-color: #F27474; }

.sweet-alert .sa-icon.sa-error .sa-x-mark {
  position: relative;
  display: block; }

.sweet-alert .sa-icon.sa-error .sa-line {
  position: absolute;
  height: 5px;
  width: 47px;
  background-color: #F27474;
  display: block;
  top: 37px;
  border-radius: 2px; }

.sweet-alert .sa-icon.sa-error .sa-line.sa-left {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  left: 17px; }

.sweet-alert .sa-icon.sa-error .sa-line.sa-right {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  right: 16px; }

.sweet-alert .sa-icon.sa-warning {
  border-color: #F8BB86; }

.sweet-alert .sa-icon.sa-warning .sa-body {
  position: absolute;
  width: 5px;
  height: 47px;
  left: 50%;
  top: 10px;
  border-radius: 2px;
  margin-left: -2px;
  background-color: #F8BB86; }

.sweet-alert .sa-icon.sa-warning .sa-dot {
  position: absolute;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  margin-left: -3px;
  left: 50%;
  bottom: 10px;
  background-color: #F8BB86; }

.sweet-alert .sa-icon.sa-info {
  border-color: #C9DAE1; }

.sweet-alert .sa-icon.sa-info::before {
  content: "";
  position: absolute;
  width: 5px;
  height: 29px;
  left: 50%;
  bottom: 17px;
  border-radius: 2px;
  margin-left: -2px;
  background-color: #C9DAE1; }

.sweet-alert .sa-icon.sa-info::after {
  content: "";
  position: absolute;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  margin-left: -3px;
  top: 19px;
  background-color: #C9DAE1; }

.sweet-alert .sa-icon.sa-success {
  border-color: #A5DC86; }

.sweet-alert .sa-icon.sa-success::before, .sweet-alert .sa-icon.sa-success::after {
  content: '';
  border-radius: 40px;
  border-radius: 50%;
  position: absolute;
  width: 60px;
  height: 120px;
  background: white;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg); }

.sweet-alert .sa-icon.sa-success::before {
  border-radius: 120px 0 0 120px;
  top: -7px;
  left: -33px;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  -webkit-transform-origin: 60px 60px;
  transform-origin: 60px 60px; }

.sweet-alert .sa-icon.sa-success::after {
  border-radius: 0 120px 120px 0;
  top: -11px;
  left: 30px;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  -webkit-transform-origin: 0px 60px;
  transform-origin: 0px 60px; }

.sweet-alert .sa-icon.sa-success .sa-placeholder {
  width: 80px;
  height: 80px;
  border: 4px solid rgba(165, 220, 134, 0.2);
  border-radius: 40px;
  border-radius: 50%;
  box-sizing: content-box;
  position: absolute;
  left: -4px;
  top: -4px;
  z-index: 2; }

.sweet-alert .sa-icon.sa-success .sa-fix {
  width: 5px;
  height: 90px;
  background-color: white;
  position: absolute;
  left: 28px;
  top: 8px;
  z-index: 1;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg); }

.sweet-alert .sa-icon.sa-success .sa-line {
  height: 5px;
  background-color: #A5DC86;
  display: block;
  border-radius: 2px;
  position: absolute;
  z-index: 2; }

.sweet-alert .sa-icon.sa-success .sa-line.sa-tip {
  width: 25px;
  left: 14px;
  top: 46px;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg); }

.sweet-alert .sa-icon.sa-success .sa-line.sa-long {
  width: 47px;
  right: 8px;
  top: 38px;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg); }

.sweet-alert .sa-icon.sa-custom {
  background-size: contain;
  border-radius: 0;
  border: none;
  background-position: center center;
  background-repeat: no-repeat; }

/*
 * Animations
 */
@-webkit-keyframes showSweetAlert {
  0% {
    transform: scale(0.7);
    -webkit-transform: scale(0.7); }
  45% {
    transform: scale(1.05);
    -webkit-transform: scale(1.05); }
  80% {
    transform: scale(0.95);
    -webkit-transform: scale(0.95); }
  100% {
    transform: scale(1);
    -webkit-transform: scale(1); } }

@keyframes showSweetAlert {
  0% {
    transform: scale(0.7);
    -webkit-transform: scale(0.7); }
  45% {
    transform: scale(1.05);
    -webkit-transform: scale(1.05); }
  80% {
    transform: scale(0.95);
    -webkit-transform: scale(0.95); }
  100% {
    transform: scale(1);
    -webkit-transform: scale(1); } }

@-webkit-keyframes hideSweetAlert {
  0% {
    transform: scale(1);
    -webkit-transform: scale(1); }
  100% {
    transform: scale(0.5);
    -webkit-transform: scale(0.5); } }

@keyframes hideSweetAlert {
  0% {
    transform: scale(1);
    -webkit-transform: scale(1); }
  100% {
    transform: scale(0.5);
    -webkit-transform: scale(0.5); } }

@-webkit-keyframes slideFromTop {
  0% {
    top: 0%; }
  100% {
    top: 50%; } }

@keyframes slideFromTop {
  0% {
    top: 0%; }
  100% {
    top: 50%; } }

@-webkit-keyframes slideToTop {
  0% {
    top: 50%; }
  100% {
    top: 0%; } }

@keyframes slideToTop {
  0% {
    top: 50%; }
  100% {
    top: 0%; } }

@-webkit-keyframes slideFromBottom {
  0% {
    top: 70%; }
  100% {
    top: 50%; } }

@keyframes slideFromBottom {
  0% {
    top: 70%; }
  100% {
    top: 50%; } }

@-webkit-keyframes slideToBottom {
  0% {
    top: 50%; }
  100% {
    top: 70%; } }

@keyframes slideToBottom {
  0% {
    top: 50%; }
  100% {
    top: 70%; } }

.showSweetAlert[data-animation=pop] {
  -webkit-animation: showSweetAlert 0.3s;
  animation: showSweetAlert 0.3s; }

.showSweetAlert[data-animation=none] {
  -webkit-animation: none;
  animation: none; }

.showSweetAlert[data-animation=slide-from-top] {
  -webkit-animation: slideFromTop 0.3s;
  animation: slideFromTop 0.3s; }

.showSweetAlert[data-animation=slide-from-bottom] {
  -webkit-animation: slideFromBottom 0.3s;
  animation: slideFromBottom 0.3s; }

.hideSweetAlert[data-animation=pop] {
  -webkit-animation: hideSweetAlert 0.2s;
  animation: hideSweetAlert 0.2s; }

.hideSweetAlert[data-animation=none] {
  -webkit-animation: none;
  animation: none; }

.hideSweetAlert[data-animation=slide-from-top] {
  -webkit-animation: slideToTop 0.4s;
  animation: slideToTop 0.4s; }

.hideSweetAlert[data-animation=slide-from-bottom] {
  -webkit-animation: slideToBottom 0.3s;
  animation: slideToBottom 0.3s; }

@-webkit-keyframes animateSuccessTip {
  0% {
    width: 0;
    left: 1px;
    top: 19px; }
  54% {
    width: 0;
    left: 1px;
    top: 19px; }
  70% {
    width: 50px;
    left: -8px;
    top: 37px; }
  84% {
    width: 17px;
    left: 21px;
    top: 48px; }
  100% {
    width: 25px;
    left: 14px;
    top: 45px; } }

@keyframes animateSuccessTip {
  0% {
    width: 0;
    left: 1px;
    top: 19px; }
  54% {
    width: 0;
    left: 1px;
    top: 19px; }
  70% {
    width: 50px;
    left: -8px;
    top: 37px; }
  84% {
    width: 17px;
    left: 21px;
    top: 48px; }
  100% {
    width: 25px;
    left: 14px;
    top: 45px; } }

@-webkit-keyframes animateSuccessLong {
  0% {
    width: 0;
    right: 46px;
    top: 54px; }
  65% {
    width: 0;
    right: 46px;
    top: 54px; }
  84% {
    width: 55px;
    right: 0px;
    top: 35px; }
  100% {
    width: 47px;
    right: 8px;
    top: 38px; } }

@keyframes animateSuccessLong {
  0% {
    width: 0;
    right: 46px;
    top: 54px; }
  65% {
    width: 0;
    right: 46px;
    top: 54px; }
  84% {
    width: 55px;
    right: 0px;
    top: 35px; }
  100% {
    width: 47px;
    right: 8px;
    top: 38px; } }

@-webkit-keyframes rotatePlaceholder {
  0% {
    transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg); }
  5% {
    transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg); }
  12% {
    transform: rotate(-405deg);
    -webkit-transform: rotate(-405deg); }
  100% {
    transform: rotate(-405deg);
    -webkit-transform: rotate(-405deg); } }

@keyframes rotatePlaceholder {
  0% {
    transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg); }
  5% {
    transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg); }
  12% {
    transform: rotate(-405deg);
    -webkit-transform: rotate(-405deg); }
  100% {
    transform: rotate(-405deg);
    -webkit-transform: rotate(-405deg); } }

.animateSuccessTip {
  -webkit-animation: animateSuccessTip 0.75s;
  animation: animateSuccessTip 0.75s; }

.animateSuccessLong {
  -webkit-animation: animateSuccessLong 0.75s;
  animation: animateSuccessLong 0.75s; }

.sa-icon.sa-success.animate::after {
  -webkit-animation: rotatePlaceholder 4.25s ease-in;
  animation: rotatePlaceholder 4.25s ease-in; }

@-webkit-keyframes animateErrorIcon {
  0% {
    transform: rotateX(100deg);
    -webkit-transform: rotateX(100deg);
    opacity: 0; }
  100% {
    transform: rotateX(0deg);
    -webkit-transform: rotateX(0deg);
    opacity: 1; } }

@keyframes animateErrorIcon {
  0% {
    transform: rotateX(100deg);
    -webkit-transform: rotateX(100deg);
    opacity: 0; }
  100% {
    transform: rotateX(0deg);
    -webkit-transform: rotateX(0deg);
    opacity: 1; } }

.animateErrorIcon {
  -webkit-animation: animateErrorIcon 0.5s;
  animation: animateErrorIcon 0.5s; }

@-webkit-keyframes animateXMark {
  0% {
    transform: scale(0.4);
    -webkit-transform: scale(0.4);
    margin-top: 26px;
    opacity: 0; }
  50% {
    transform: scale(0.4);
    -webkit-transform: scale(0.4);
    margin-top: 26px;
    opacity: 0; }
  80% {
    transform: scale(1.15);
    -webkit-transform: scale(1.15);
    margin-top: -6px; }
  100% {
    transform: scale(1);
    -webkit-transform: scale(1);
    margin-top: 0;
    opacity: 1; } }

@keyframes animateXMark {
  0% {
    transform: scale(0.4);
    -webkit-transform: scale(0.4);
    margin-top: 26px;
    opacity: 0; }
  50% {
    transform: scale(0.4);
    -webkit-transform: scale(0.4);
    margin-top: 26px;
    opacity: 0; }
  80% {
    transform: scale(1.15);
    -webkit-transform: scale(1.15);
    margin-top: -6px; }
  100% {
    transform: scale(1);
    -webkit-transform: scale(1);
    margin-top: 0;
    opacity: 1; } }

.animateXMark {
  -webkit-animation: animateXMark 0.5s;
  animation: animateXMark 0.5s; }

@-webkit-keyframes pulseWarning {
  0% {
    border-color: #F8D486; }
  100% {
    border-color: #F8BB86; } }

@keyframes pulseWarning {
  0% {
    border-color: #F8D486; }
  100% {
    border-color: #F8BB86; } }

.pulseWarning {
  -webkit-animation: pulseWarning 0.75s infinite alternate;
  animation: pulseWarning 0.75s infinite alternate; }

@-webkit-keyframes pulseWarningIns {
  0% {
    background-color: #F8D486; }
  100% {
    background-color: #F8BB86; } }

@keyframes pulseWarningIns {
  0% {
    background-color: #F8D486; }
  100% {
    background-color: #F8BB86; } }

.pulseWarningIns {
  -webkit-animation: pulseWarningIns 0.75s infinite alternate;
  animation: pulseWarningIns 0.75s infinite alternate; }

@-webkit-keyframes rotate-loading {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg); }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg); } }

@keyframes rotate-loading {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg); }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg); } }

/* Internet Explorer 9 has some special quirks that are fixed here */
/* The icons are not animated. */
/* This file is automatically merged into sweet-alert.min.js through Gulp */
/* Error icon */
.sweet-alert .sa-icon.sa-error .sa-line.sa-left {
  -ms-transform: rotate(45deg) \9; }

.sweet-alert .sa-icon.sa-error .sa-line.sa-right {
  -ms-transform: rotate(-45deg) \9; }

/* Success icon */
.sweet-alert .sa-icon.sa-success {
  border-color: transparent\9; }

.sweet-alert .sa-icon.sa-success .sa-line.sa-tip {
  -ms-transform: rotate(45deg) \9; }

.sweet-alert .sa-icon.sa-success .sa-line.sa-long {
  -ms-transform: rotate(-45deg) \9; }

/*!
 * Load Awesome v1.1.0 (http://github.danielcardoso.net/load-awesome/)
 * Copyright 2015 Daniel Cardoso <@DanielCardoso>
 * Licensed under MIT
 */
.la-ball-fall,
.la-ball-fall > div {
  position: relative;
  box-sizing: border-box; }

.la-ball-fall {
  display: block;
  font-size: 0;
  color: #fff; }

.la-ball-fall.la-dark {
  color: #333; }

.la-ball-fall > div {
  display: inline-block;
  float: none;
  background-color: currentColor;
  border: 0 solid currentColor; }

.la-ball-fall {
  width: 54px;
  height: 18px; }

.la-ball-fall > div {
  width: 10px;
  height: 10px;
  margin: 4px;
  border-radius: 100%;
  opacity: 0;
  -webkit-animation: ball-fall 1s ease-in-out infinite;
  animation: ball-fall 1s ease-in-out infinite; }

.la-ball-fall > div:nth-child(1) {
  -webkit-animation-delay: -200ms;
  animation-delay: -200ms; }

.la-ball-fall > div:nth-child(2) {
  -webkit-animation-delay: -100ms;
  animation-delay: -100ms; }

.la-ball-fall > div:nth-child(3) {
  -webkit-animation-delay: 0ms;
  animation-delay: 0ms; }

.la-ball-fall.la-sm {
  width: 26px;
  height: 8px; }

.la-ball-fall.la-sm > div {
  width: 4px;
  height: 4px;
  margin: 2px; }

.la-ball-fall.la-2x {
  width: 108px;
  height: 36px; }

.la-ball-fall.la-2x > div {
  width: 20px;
  height: 20px;
  margin: 8px; }

.la-ball-fall.la-3x {
  width: 162px;
  height: 54px; }

.la-ball-fall.la-3x > div {
  width: 30px;
  height: 30px;
  margin: 12px; }

/*
 * Animation
 */
@-webkit-keyframes ball-fall {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-145%);
    transform: translateY(-145%); }
  10% {
    opacity: .5; }
  20% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0); }
  80% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0); }
  90% {
    opacity: .5; }
  100% {
    opacity: 0;
    -webkit-transform: translateY(145%);
    transform: translateY(145%); } }

@keyframes ball-fall {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-145%);
    transform: translateY(-145%); }
  10% {
    opacity: .5; }
  20% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0); }
  80% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0); }
  90% {
    opacity: .5; }
  100% {
    opacity: 0;
    -webkit-transform: translateY(145%);
    transform: translateY(145%); } }

.sweet-alert {
  border-radius: 0;
  box-sizing: content-box; }
  .sweet-alert button {
    border-radius: 0;
    font-size: 14px;
    font-weight: normal;
    background-image: none;
    background-color: #999;
    color: #fff;
    padding: 8px 12px;
    font-size: 14px;
    border: 0;
    text-decoration: none;
    cursor: pointer;
    color: white !important;
    padding: 4px 6px;
    font-size: 12px; }
    .sweet-alert button:hover {
      background-color: #666;
      color: #fff; }

.fiu-modal__text-entry {
  min-width: 300px;
  min-height: 200px; }

/**
* mixin for setting a grid-based width
*/
.fiu-two-columns:before, .fiu-two-columns:after {
  content: "";
  display: table; }

.fiu-two-columns:after {
  clear: both; }

.fiu-two-columns__left {
  float: left;
  width: 480px; }

.fiu-two-columns__right {
  float: left;
  width: 460px; }

/**
* mixin for setting a grid-based width
*/
.fiu-link-list--large__title {
  font-size: 24px;
  font-family: RelayCond, Arial, serif;
  font-style: normal;
  font-weight: bold;
  line-height: 1em;
  border-bottom: 3px solid #CCC;
  padding-bottom: 0.4em;
  margin-bottom: 0.4em; }

.fiu-link-list--large__items {
  margin: 0;
  list-style: none; }

.fiu-link-list--large__item {
  list-style: none; }

.fiu-link-list--large__wrapper {
  width: 100%; }

.fiu-link-list--large--wrapping {
  vertical-align: top;
  box-sizing: border-box;
  overflow: hidden;
  width: 240px;
  padding-right: 20px;
  padding-bottom: 20px;
  display: inline-block; }

.fiu-link-list--expandable .fiu-link-list__close, .fiu-link-list--expandable .fiu-link-list__open {
  font-size: 10px;
  color: #666;
  text-decoration: underline;
  cursor: pointer; }

.fiu-link-list--expandable .fiu-link-list__close {
  display: none; }

.fiu-link-list--expandable .fiu-link-list__item--extra {
  display: none; }

.fiu-link-list--inline {
  display: inline; }
  .fiu-link-list--inline .fiu-link-list__item {
    display: inline; }
    .fiu-link-list--inline .fiu-link-list__item--extra {
      display: none; }

.fiu-link-list--expandable.fiu-link-list--inline .fiu-link-list__open {
  display: inline; }

.fiu-link-list--expandable.fiu-link-list--inline .fiu-link-list__open, .fiu-link-list--expandable.fiu-link-list--inline .fiu-link-list__close {
  padding-left: 5px; }

/**
* mixin for setting a grid-based width
*/
.fiu-wysiwyg[contenteditable]:focus {
  outline: 1px solid #ddd; }

.fiu-wysiwyg__wrapper {
  position: relative; }

.fiu-wysiwyg__controls {
  box-sizing: border-box;
  position: absolute;
  text-align: right;
  display: none; }
  .fiu-wysiwyg__controls button {
    background-image: none;
    background-color: #999;
    color: #fff;
    padding: 8px 12px;
    font-size: 14px;
    border: 0;
    text-decoration: none;
    cursor: pointer;
    padding: 3px 5px;
    font-size: 10px;
    background-color: #ccc;
    margin-left: 3px; }
    .fiu-wysiwyg__controls button:hover {
      background-color: #666;
      color: #fff; }

/**
* mixin for setting a grid-based width
*/
.fiu-badge {
  line-height: 1.6em;
  width: 90px;
  font-size: 24px;
  z-index: 3;
  color: #fff;
  position: absolute;
  top: 5px;
  right: -20px;
  margin: 0;
  text-align: center;
  font-family: RelayCond, Arial, serif;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg); }
  .fiu-badge__triangle {
    position: absolute;
    top: 0;
    right: 0;
    width: 0;
    height: 0;
    border-left: 75px solid transparent;
    border-top: 75px solid black;
    z-index: 3; }
  .fiu-badge--staff_pick {
    font-size: 18px;
    top: 14px;
    right: -17px; }
  .fiu-badge--awaiting_approval {
    width: 75px;
    font-size: 14px;
    line-height: 1em;
    top: 10px;
    right: -10px; }

.fiu-gallery--embedded__wrapper:before, .fiu-gallery--embedded__wrapper:after {
  content: "";
  display: table; }

.fiu-gallery--embedded__wrapper:after {
  clear: both; }

.fiu-gallery--embedded .fiu-gallery-item {
  height: auto; }

/**
* mixin for setting a grid-based width
*/
.fiu-gallery-item {
  width: 220px;
  height: 380px;
  margin: 0 10px 10px 10px;
  float: left;
  position: relative;
  overflow: hidden; }
  .fiu-gallery-item h4 {
    font-weight: normal; }
  .fiu-gallery-item__date {
    font-size: 16px;
    padding-left: 7px;
    letter-spacing: 0.5px; }
  .fiu-gallery-item__img-wrapper {
    position: relative;
    width: 220px;
    height: 220px;
    line-height: 0;
    background-color: #e7e7e7;
    overflow: hidden;
    cursor: pointer; }
    .fiu-gallery-item__img-wrapper:hover * > .fiu-gallery-item__details {
      display: block;
      z-index: 4; }
    .fiu-gallery-item__img-wrapper:hover .fiu-gallery-item__controls {
      display: block !important;
      z-index: 10; }
    .fiu-gallery-item__img-wrapper:hover * > .fiu-badge__triangle {
      display: none; }
    .fiu-gallery-item__img-wrapper:hover * > .fiu-badge {
      display: none; }
    .fiu-gallery-item__img-wrapper a {
      text-decoration: none; }
  .fiu-gallery-item__details {
    display: inherit;
    color: #FFF;
    background: rgba(0, 0, 0, 0.8);
    z-index: 2;
    cursor: pointer;
    line-height: 1.6em;
    display: none;
    position: absolute;
    top: 0;
    width: 200px;
    height: 200px;
    padding: 10px;
    color: #FFF;
    z-index: 2; }
    .fiu-gallery-item__details h4 {
      margin-bottom: 5px;
      padding-bottom: 5px; }
    .fiu-gallery-item__details a {
      color: #FFF;
      text-decoration: none; }
  .fiu-gallery-item__designers {
    list-style: none;
    margin: 0 0 7px 0; }
  .fiu-gallery-item__contributor {
    font-size: 10px;
    line-height: 1em; }
  .fiu-gallery-item__controls {
    margin: 0;
    position: absolute;
    display: none;
    line-height: 1.6em;
    right: 10px;
    bottom: 10px;
    z-index: 4; }
    .fiu-gallery-item__controls li {
      display: inline-block;
      background: #999;
      font-size: 10px;
      padding: 0 6px;
      margin-left: 5px; }
      .fiu-gallery-item__controls li:hover {
        background: #666; }
      .fiu-gallery-item__controls li a {
        cursor: pointer;
        text-decoration: none;
        color: white; }
  .fiu-gallery-item--no-thumbnail .fiu-gallery-item__img-wrapper {
    display: inherit;
    color: #FFF;
    background: rgba(0, 0, 0, 0.8);
    z-index: 2; }
  .fiu-gallery-item--no-samples {
    height: 230px; }

/**
* mixin for setting a grid-based width
*/
.fiu-expanding-text--expanded {
  display: none; }

.fiu-expanding-text__show {
  font-size: 10px;
  color: #666; }
