/*------------------------------------*
$CONTENTS
 *------------------------------------*/
/**
 * CONTENTS............You’re reading it!
 * BASE................Base
 * FONT-FACE...........Import brand font files
 * LAYOUT..............Layout specific
 * ICON................
 * HELPERS.............Useful helper classes
 * MEDIA...............Breakpoints for different sizes
 * PRINT...............Print that shit
 */

/*------------------------------------*
  $BASE
 *------------------------------------*/
*,
*:before,
*:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}

html,
button,
input,
select,
textarea {
  color: #222;
}

html {
  font-size: 1em;
  height: 100%;
  line-height: 1.4;
}

/*
 * Remove text-shadow in selection highlight:  h5bp.com/i
 * These selection rule sets have to be separate.
 * Customize the background color to match your design.
 */
::-moz-selection {
  background: #b3d4fc;
  text-shadow: none;
}

::selection {
  background: #b3d4fc;
  text-shadow: none;
}

/*
 * Remove the gap between images, videos, audio and canvas and the bottom of
 * their containers:  h5bp.com/i/440
 */
audio,
canvas,
img,
video {
  vertical-align: middle;
}

/*
 * Remove default fieldset styles.
 */
fieldset {
  border: 0;
  margin: 0;
  padding: 0;
}

/*
 * Allow only vertical resizing of textareas.
 */
textarea {
  -webkit-resize: vertical;
  -moz-resize: vertical;
  resize: vertical;
}

body {
  height: 100%;
}

img {
  height: auto;
  max-width: 100%;
}

a {
  color: #00ADEE;
  text-decoration: none;
}

/*------------------------------------*
  $FONT-FACE
 *------------------------------------*/
@font-face {
    font-family: 'Eurostile';
    src: url('fonts/eurostile_bold_extended_2-webfont.eot');
    src: url('fonts/eurostile_bold_extended_2-webfont.eot?#iefix') format('embedded-opentype'),
         url('fonts/eurostile_bold_extended_2-webfont.woff') format('woff'),
         url('fonts/eurostile_bold_extended_2-webfont.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
}
@font-face {
    font-family: 'Eurostile';
    src: url('fonts/eurostile_extended_2-webfont.eot');
    src: url('fonts/eurostile_extended_2-webfont.eot?#iefix') format('embedded-opentype'),
         url('fonts/eurostile_extended_2-webfont.woff') format('woff'),
         url('fonts/eurostile_extended_2-webfont.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}
@font-face {
  font-family: "sl-icons-font01";
  src:url("fonts/sl-icons-font01.eot");
  src:url("fonts/sl-icons-font01.eot?#iefix") format("embedded-opentype"),
    url("fonts/sl-icons-font01.woff") format("woff"),
    url("fonts/sl-icons-font01.ttf") format("truetype"),
    url("fonts/sl-icons-font01.svg#sl-icons-font01") format("svg");
  font-weight: normal;
  font-style: normal;
}




/*------------------------------------*
  $LAYOUT
 *------------------------------------*/
.l-inline > * {
    display: inline-block;
}

.l-fixed-left,
.l-fixed-top,
.l-fixed-right {
    position: absolute;
    -webkit-transition: -webkit-transform 300ms ease-in-out;
    transition: transform 300ms ease-in-out;
    z-index: 999;
}
.l-fixed-left {
    bottom: 0;
    left: 0;
    top: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    -moz-transform: translate3d(-100%, 0, 0);
    -o-transform: translate3d(-100%, 0, 0);
    -ms-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
}
.l-fixed-top {
    bottom: auto;
    left: 0;
    right: 0;
    top: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    -moz-transform: translate3d(0, -100%, 0);
    -o-transform: translate3d(0, -100%, 0);
    -ms-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
}
.page--profile .l-fixed-top {
  right: 50%;
}
.l-fixed-right {
    bottom: 0;
    right: 0;
    top: 0;
}
.l-fixed-right.offcanvas {
  -webkit-transform: translate3d(100%, 0, 0);
  -moz-transform: translate3d(100%, 0, 0);
  -o-transform: translate3d(100%, 0, 0);
  -ms-transform: translate3d(100%, 0, 0);
  transform: translate3d(100%, 0, 0);
}

.l-frame {
    bottom: 0;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
}
.l-frame {
  overflow: hidden;
}
.l-frame__inner {
  height: 100%;
  position: relative;
  -webkit-transition: transform 300ms ease-in-out;
  -moz-transition: transform 300ms ease-in-out;
  -ms-transition: transform 300ms ease-in-out;
  -o-transition: transform 300ms ease-in-out;
  transition: transform 300ms ease-in-out;
}

.js--offcanvas-left .l-frame__inner {
    -webkit-transform: translate3d(250px, 0, 0);
    -moz-transform: translate3d(250px, 0, 0);
    -o-transform: translate3d(250px, 0, 0);
    -ms-transform: translate3d(250px, 0, 0);
    transform: translate3d(250px, 0, 0);
}

.js--offcanvas-top .l-frame__inner {
    -webkit-transform: translate3d(0, 45px, 0);
    -moz-transform: translate3d(0, 45px, 0);
    -o-transform: translate3d(0, 45px, 0);
    -ms-transform: translate3d(0, 45px, 0);
    transform: translate3d(0, 45px, 0);
}
.js--offcanvas-right .l-frame__inner {
    -webkit-transform: translate3d(-40px, 0, 0);
    -moz-transform: translate3d(-40px, 0, 0);
    -o-transform: translate3d(-40px, 0, 0);
    -ms-transform: translate3d(-40px, 0, 0);
    transform: translate3d(-40px, 0, 0);
}

[class*='js--offcanvas-'] .offcanvas__close {
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 1000;
}

.profile .l-column {
    bottom: 0;
    position: absolute;
    top: 0;
}

.page--index .l-column {
  float: left;
  padding: 0 10px 0 0;
  width: 50%;
}
.page--index .l-column.l--right {
  padding: 0 0 0 10px;
}
.page--index .l-scrolling,
.page--calendar .l-scrolling {
  bottom: 0;
  overflow: auto;
  padding: 0 40px 45px 0;
  position: absolute;
  top: 46px;
  width: 100%;
}
.page--calendar .l-scrolling {
  padding-right: 0;
}

.l-center {
  display: inline-block;
}
.l-right {
  float: right;
}
.l-left {
  float: left;
}

.l-vertical-center {
  position: relative;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  top: 50%;
}

.l-flag {
  display: table;
  /*width: 100%;*/
}
.l-flag__image,
.l-flag__body {
  display: table-cell;
  vertical-align: middle;
}
.l-flag__image {
  padding-right: 10px;
  width: .1%;
}
.l-flag__image img {
  display: block;
  max-width: none;
}
.l-flag__image .l-flag--rev & {
  padding-right: 0;
  padding-left: 10px;
}
.l-flag__body {
  /*width: 100%;*/
}

.l-media__image {
  float: left;
  margin-right: 10px;
}
.l-media__body {
  display: table-cell;
  vertical-align: top;
  width: 10000px !important;
}

/*------------------------------------*
  $ICONS
 *------------------------------------*/
.icon {
  display: inline-block;
  text-align: center;
  vertical-align: middle;
}
.icon--secondary {
  background: #fff;
  border: 2px solid #33bdf5;
  border-radius: 50px;
  color: #33bdf5;
}
.icon--square {
  background: #fff;
  border: 1px solid #000;
  color: #000 !important;
  height: 26px;
  width: 26px;
}
.icon--small {
  color: #353436;
  font-size: 14px;
  height: 25px;
  line-height: 25px;
  width: 25px;
}
.icon--medium {
  background-size: 35px 35px;
  font-size: 1em;
  height: 35px;
  line-height: 35px;
  width: 35px;
}
.icon--large {
  color: #414042;
  font-size: 20px;
  height: 33px;
  line-height: 33px;
  width: 33px;
}
.icon--xlarge {
  font-size: 23px;
  height: 38px;
  line-height: 35px;
  width: 38px;
}
.icon--rounded {
  border: 1px solid #414042;
  border-radius: 10px;
}
.icon--circle {
  background: rgba(255, 255, 255, .6);
  border-radius: 100px;
}
.icon--dark {
  background: rgba(0, 0, 0, .5);
  color: #fff;
}
.is-active .icon--dark {
  background: rgba(0, 172, 243, .6);
}
[class^="icon-"]:before,
[class*=" icon-"]:before {
  display: block;
  font-family: "sl-icons-font01" !important;
  font-style: normal !important;
  font-weight: normal !important;
  font-variant: normal !important;
  text-transform: none !important;
  speak: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-align: center;
}
.icon--pro-small {
  background-image: url(../img/icons/icon--pro-small@2x.png);
  background-size: 25px;
}
.icon--silver {
  background-image: url(../img/icons/icon--silver@2x.png);
  background-size: 38px;
}
.icon--gold {
  background-image: url(../img/icons/icon--gold@2x.png);
  background-size: 38px;
}
.icon--facebook {
  background-image: url(../img/icons/sl_network_facebook_114.png);
}
.icon--instagram {
  background-image: url(../img/icons/sl_network_instagram_114.png);
}
.icon--twitter {
  background-image: url(../img/icons/sl_network_twitter_114.png);
}
.icon--shredlynx {
  background-image: url(../img/icons/sl_network_shredlynx_114.png);
}
.icon-sl-icon-wrench:before {
  content: "b";
}
.icon-sl-icon-delete:before {
  content: "c";
}
.icon-sl-icon-folder:before {
  content: "d";
}
.icon-sl-icon-additional:before {
  content: "e";
}
.icon-sl-icon-diamond:before {
  content: "f";
}
.icon-sl-icon-forward:before {
  content: "g";
}
.icon-sl-icon-headphones:before {
  content: "h";
}
.icon-sl-icon-health:before {
  content: "i";
}
.icon-sl-icon-map:before {
  content: "k";
}
.icon-sl-icon-photo:before {
  content: "l";
}
.icon-sl-icon-pencil:before {
  content: "m";
}
.icon-sl-icon-sponsor-current:before {
  content: "n";
}
.icon-sl-icon-sponsor-invite:before {
  content: "o";
}
.icon-sl-icon-triangle:before {
  content: "p";
}
.icon-sl-icon-tv:before {
  content: "q";
}
.icon-sl-icon-artwork:before {
  content: "r";
}
.icon-sl-icon-atomic:before {
  content: "s";
}
.icon-sl-icon-binocs:before {
  content: "t";
}
.icon-sl-icon-book:before {
  content: "u";
}
.icon-sl-icon-bookmark:before {
  content: "v";
}
.icon-sl-icon-brush:before {
  content: "w";
}
.icon-sl-icon-cart:before {
  content: "y";
}
.icon-sl-icon-check:before {
  content: "z";
}
.icon-sl-icon-city:before {
  content: "A";
}
.icon-sl-icon-comments:before {
  content: "B";
}
.icon-sl-icon-flow:before {
  content: "C";
}
.icon-sl-icon-fitness:before {
  content: "D";
}
.icon-sl-icon-flag:before {
  content: "E";
}
.icon-sl-icon-film:before {
  content: "F";
}
.icon-sl-icon-feeds:before {
  content: "G";
}
.icon-sl-icon-fashion:before {
  content: "H";
}
.icon-sl-icon-eye:before {
  content: "I";
}
.icon-sl-icon-expand:before {
  content: "J";
}
.icon-sl-icon-empireparks:before {
  content: "K";
}
.icon-sl-icon-dvd:before {
  content: "L";
}
.icon-sl-icon-dollar:before {
  content: "M";
}
.icon-sl-icon-friend:before {
  content: "N";
}
.icon-sl-icon-friend-add:before {
  content: "O";
}
.icon-sl-icon-game:before {
  content: "P";
}
.icon-sl-icon-gear:before {
  content: "Q";
}
.icon-sl-icon-globe:before {
  content: "R";
}
.icon-sl-icon-graph:before {
  content: "S";
}
.icon-sl-icon-group:before {
  content: "T";
}
.icon-sl-icon-group-adduser:before {
  content: "U";
}
.icon-sl-icon-group-join:before {
  content: "V";
}
.icon-sl-icon-group-settings:before {
  content: "W";
}
.icon-sl-icon-hand:before {
  content: "X";
}
.icon-sl-icon-location:before {
  content: "Z";
}
.icon-sl-icon-list:before {
  content: "0";
}
.icon-sl-icon-lightning:before {
  content: "1";
}
.icon-sl-icon-leaf:before {
  content: "2";
}
.icon-sl-icon-info:before {
  content: "3";
}
.icon-sl-icon-inbox:before {
  content: "4";
}
.icon-sl-icon-icon:before {
  content: "5";
}
.icon-sl-icon-home:before {
  content: "6";
}
.icon-sl-icon-hide-show:before {
  content: "7";
}
.icon-sl-icon-hexagon:before {
  content: "7";
}
.icon-sl-icon-hide-show:before {
  content: "8";
}
.icon-sl-icon-menu:before {
  content: "9";
}
.icon-sl-icon-message:before {
  content: "!";
}
.icon-sl-icon-message-new:before {
  content: "\"";
}
.icon-sl-icon-mountain:before {
  content: "$";
}
.icon-sl-icon-motox:before {
  content: "%";
}
.icon-sl-icon-network:before {
  content: "&";
}
.icon-sl-icon-news:before {
  content: "'";
}
.icon-sl-icon-note:before {
  content: "(";
}
.icon-sl-icon-paintbucket:before {
  content: ")";
}
.icon-sl-icon-pause:before {
  content: "*";
}
.icon-sl-icon-snow:before {
  content: "+";
}
.icon-sl-icon-skate:before {
  content: ",";
}
.icon-sl-icon-shredempire:before {
  content: "-";
}
.icon-sl-icon-share:before {
  content: ".";
}
.icon-sl-icon-search:before {
  content: "/";
}
.icon-sl-icon-scales:before {
  content: ":";
}
.icon-sl-icon-ribbon:before {
  content: ";";
}
.icon-sl-icon-register:before {
  content: "<";
}
.icon-sl-icon-pro:before {
  content: "=";
}
.icon-sl-icon-play:before {
  content: ">";
}
.icon-sl-icon-plane:before {
  content: "?";
}
.icon-sl-icon-sponsor-www:before {
  content: "@";
}
.icon-sl-icon-star:before {
  content: "[";
}
.icon-sl-icon-stoked:before {
  content: "]";
}
.icon-sl-icon-stream:before {
  content: "^";
}
.icon-sl-icon-sun:before {
  content: "_";
}
.icon-sl-icon-surf:before {
  content: "`";
}
.icon-sl-icon-thumbnail:before {
  content: "{";
}
.icon-sl-icon-thumbsdown:before {
  content: "|";
}
.icon-sl-icon-thumbsup:before {
  content: "}";
}
.icon-sl-icon-tmt:before {
  content: "~";
}
.icon-sl-icon-tree:before {
  content: "\";
}
.icon-sl-icon-wreath:before {
  content: "\e000";
}
.icon-sl-icon-wellness:before {
  content: "\e001";
}
.icon-sl-icon-webcam:before {
  content: "\e002";
}
.icon-sl-icon-web:before {
  content: "\e003";
}
.icon-sl-icon-warning:before {
  content: "\e004";
}
.icon-sl-icon-video:before {
  content: "\e005";
}
.icon-sl-icon-user:before {
  content: "\e006";
}
.icon-sl-icon-upload:before {
  content: "\e007";
}
.icon-sl-icon-calendar:before {
  content: "x";
}
.icon-sl-icon-moneybag:before {
  content: "Y";
}
.icon-sl-icon-3d:before {
  content: "a";
}
.icon-sl-icon-event:before {
  content: "\e008";
}
.icon-sl-icon-help:before {
  content: "\e009";
}
.icon-sl-icon-print:before {
  content: "\e00a";
}
.icon-sl-icon-schedule:before {
  content: "\e00b";
}
.icon-sl-icon-lynx:before {
  content: "j";
}
.icon-sl-icon-magazine:before {
  content: "#";
}
/* " */





/*------------------------------------*
  $BADGE
 *------------------------------------*/
.badge {
  display: inline-block;
  vertical-align: middle;
}
.badge--pro {
  background: transparent url(../img/badges/badge-pro.png) no-repeat 0 0;
  background-size: 58px;
  height: 58px;
  width: 58px;
}





/*------------------------------------*
    $BRAND
 *------------------------------------*/
.brand {
  background-color: #fff;
  color: #000;
  display: inline-block;
  height: 50px;
  line-height: 1;
  position: relative;
  text-decoration: none;
  width: 50px;
}
.brand--border {
  border: 1px solid #A6A8AC;
}
.brand__label,
.brand__caption {
  color: #000000;
  font-size: 10px;
  font-weight: bold;
  left: 50%;
  position: absolute;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  white-space: nowrap;
}
.brand__caption {
  top: 111%;
}
.brand__label {
  bottom: 104%;
}





/*------------------------------------*
    $BUTTON
 *------------------------------------*/
.button {
  display: inline-block;
}

.button--naked {
  background: none;
  border: none;
}

.button--home {
  float: left;
}




/*------------------------------------*
  $LIST
 *------------------------------------*/
.list--flat {
  list-style: none;
  margin: 0;
  padding: 0;
}





/*------------------------------------*
  $NAVIGATION
 *------------------------------------*/
.nav--main {
  background: #fff;
  width: 250px;
}
.menu--main li {
  border-bottom: 1px solid #414042;
}
.menu--main a {
  background: #fff;
  color: #414042;
  font-size: 14px;
  display: block;
  min-height: 46px;
  padding: 8px 6px 4px;
  text-decoration: none;
}
.menu--main .icon {
  margin: 0 5px 0 0;
  position: relative;
  top: -2px;
}
.menu--profile li {
  margin: 0 0 0 7px;
}

.nav--top {
  padding: 10px;
}
.nav--top li {
  margin: 0 0 0 7px;
}
.nav--top a {
  color: #404041;
}

.menu--filter {
  font-family: 'Eurostile', Arial, sans-serif;
  font-size: 12px;
  text-transform: uppercase;
}
.menu--filter > .menu__item {
  margin: 0 25px;
  position: relative;
}
.menu--filter > .menu__item > a {
  color: #414042;
  text-decoration: none;
}
.menu--filter a:hover,
.menu--filter a.is-active {
  color: #00ADEE;
}
.menu--filter .bubble {
  bottom: auto;
  z-index: 100;
  top: 50px;
}

.menu--bubble {
  font-family: Arial, sans-serif;
  font-size: 16px;
  text-align: left;
  text-transform: none;
}
.menu--bubble .menu__item {
  border-top: 1px solid #000;
  padding: 5px;
}
.menu--bubble .menu__item:first-child {
  border-top: none;
}
.menu--bubble a {
  color: #000;
  display: block;
  text-decoration: none;
}

.menu--icon {
  margin: 0 0 0 -5px;
}
.menu--icon li {
  margin: 0 0 0 5px;
}

.has-dropdown {
  position: relative;
}
.dropdown {
  display: none;
}
.has-dropdown:hover .dropdown {
  display: block;
}

/*------------------------------------*
  $MEDIA
 *------------------------------------*/
.media {
  height: 100%;
  position: relative;
  text-align: center;
}
.media:before,
.media:after {
  content: "";
  height: 90px;
  left: 0;
  position: absolute;
  width: 100%;
  z-index: 10;
}
.media:before {
  background: -webkit-linear-gradient(to bottom, rgba(0,0,0,.6) 0%,rgba(0,0,0,0) 100%);
  background: -moz-linear-gradient(to bottom, rgba(0,0,0,.6) 0%,rgba(0,0,0,0) 100%);
  background: -o-linear-gradient(to bottom, rgba(0,0,0,.6) 0%,rgba(0,0,0,0) 100%);
  background: -ms-linear-gradient(to bottom, rgba(0,0,0,.6) 0%,rgba(0,0,0,0) 100%);
  background: linear-gradient(to bottom, rgba(0,0,0,.6) 0%,rgba(0,0,0,0) 100%);
}
.media:after {
  background: -webkit-linear-gradient(to top, rgba(0,0,0,.6) 0%,rgba(0,0,0,0) 100%);
  background: -moz-linear-gradient(to top, rgba(0,0,0,.6) 0%,rgba(0,0,0,0) 100%);
  background: -o-linear-gradient(to top, rgba(0,0,0,.6) 0%,rgba(0,0,0,0) 100%);
  background: -ms-linear-gradient(to top, rgba(0,0,0,.6) 0%,rgba(0,0,0,0) 100%);
  background: linear-gradient(to top, rgba(0,0,0,.6) 0%,rgba(0,0,0,0) 100%);
  bottom: 0;
}
.media__foot {
  bottom: 0;
  padding: 10px;
  position: absolute;
  text-align: left;
  width: 100%;
  z-index: 100;
}
.media-viewer--full .media__foot{
  bottom: -20px;
}
.media__foot .l-left {
  width: 50%;
}
.media__caption {
  color: #fff;
  font-size: 14px;
  text-shadow: 1px 1px 0 #000;
}
.media__info > li {
  margin: 0 0 0 10px;
}

.media-viewer {
  background: #404041;
  position: relative;
}
.media-viewer--full {
  height: 100%;
}
.media-viewer--full .media__item {
  position: relative;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  top: 50%;
}
.media-viewer__head {
  padding: 10px;
  position: absolute;
  width: 100%;
  z-index: 100;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}
.media-viewer .stat-list {
  color: #fff;
  text-shadow: 1px 1px 0 #000;
}

/*------------------------------------*
  $PROFILE
 *------------------------------------*/
.profile {
  height: 100%;
}
.profile .l-column {
  overflow-y: auto;
  padding: 0 0 40px;
  width: 50%;
}
.profile .l-column--right {
  padding: 0 0 0 30px;
  right: 0;
}
.profile__item {
  position: relative;
}
.profile__edit {
  color: #000;
  position: absolute;
  right: 10px;
  top: 5px;
}
.profile__info {
  width: 100%;
}
.profile__info .l-flag__image {
  text-align: center;
  width: 25%;
}
.profile__name {
  color: #fff;
  float: left;
  font-family: 'Eurostile', Arial, sans-serif;
  font-size: 18px;
  font-weight: normal;
  line-height: 27px;
  margin: 0 0 0 10px;
  text-transform: uppercase;
}
.profile__content {
  padding: 15px 20px;
}
.profile__details {
  /*bottom: 0;
  position: absolute;*/
}

.media-viewer .profile__sponsor {
  height: 30px;
  width: 30px;
  position: relative;
  top: 3px;
}
.media-viewer .brand {
  height: 30px;
  width: 30px;
}
.media-viewer--full .profile__sponsor {
  height: 50px;
  position: relative;
  top: -15px;
  width: 50px;
}
.media-viewer--full .brand {
  height: 50px;
  width: 50px;
}
.profile__vote {
  float: left;
  margin: 5px 10px 0 0;
}
.profile__vote .icon {
  background: #009444;
  color: #fff;
  opacity: .7;
}
.profile__status--bio {
  display: block;
  text-align: center;
}
.profile__status-label {
  display: block;
  text-transform: uppercase;
}

.profile__stat {
  color: #fff;
  font-size: 14px;
  text-shadow: 1px 1px 0 #000;
}
.profile__stoked {
  color: #009444;
}
.profile__title {
  border-bottom: 1px solid #414042;
  font-family: 'Eurostile', Arial, sans-serif;
  font-size: 12px;
  font-weight: normal;
  margin: 0;
  padding: 7px 20px;
  text-transform: uppercase;
}
.profile__locations > li {
  margin: 0 0 0 20px;
}
.profile__locations > li:first-child {
  margin: 0;
}

.network-list li {
  margin: 0 0 0 30px;
}
.network-list li:first-child {
  margin: 0;
}
.network-list a {
  color: #000;
  display: block;
  text-align: center;
  text-decoration: none;
}
.network__count {
  display: block;
  font-size: 18px;
  margin: 5px 0 0;
}

.stream {
  font-size: 12px;
}
.stream li {
  margin: 0 0 1em;
}
.stream a {
  color: #00ADEE;
  text-decoration: none;
}

.timeline {
  padding: 10px 5px;
}
.timeline__day {
  float: left;
  padding: 0 5px;
  width: 33.3333%;
}
.timeline__head {
  font-size: 12px;
  margin: 0 0 10px;
  padding: 0 15px;
}
.timeline__link {
  color: #000;
  float: right;
}

.event-teaser {
  background: #fff;
  border: 1px solid #000;
  min-height: 147px;
  padding: 10px;
}
.event-teaser__title {
  margin: 0;
}
.event-teaser__meta {
  margin: 1em 0;
}
.event-teaser__content p {
  margin: 0;
}
.event-teaser__content p + p {
  margin-top: 1em;
}

.event-teaser--stacked {
  border-radius: 10px;
  color: #fff;
  font-weight: bold;
  margin-top: 5px;
  padding: 5px 10px 4px;
}

.calendar--sidebar {
  background: #d7d9da; /* Old browsers */
  /* IE9 SVG, needs conditional override of 'filter' to 'none' */
  background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIxMDAlIiB5Mj0iMCUiPgogICAgPHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iI2Q3ZDlkYSIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiNmZWZlZmUiIHN0b3Atb3BhY2l0eT0iMSIvPgogIDwvbGluZWFyR3JhZGllbnQ+CiAgPHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEiIGhlaWdodD0iMSIgZmlsbD0idXJsKCNncmFkLXVjZ2ctZ2VuZXJhdGVkKSIgLz4KPC9zdmc+);
  background: -moz-linear-gradient(left,  #d7d9da 0%, #fff 100%); /* FF3.6+ */
  background: -webkit-gradient(linear, left top, right top, color-stop(0%,#d7d9da), color-stop(100%,#fff)); /* Chrome,Safari4+ */
  background: -webkit-linear-gradient(left,  #d7d9da 0%,#fff 100%); /* Chrome10+,Safari5.1+ */
  background: -o-linear-gradient(left,  #d7d9da 0%,#fff 100%); /* Opera 11.10+ */
  background: -ms-linear-gradient(left,  #d7d9da 0%,#fff 100%); /* IE10+ */
  background: linear-gradient(to right,  #d7d9da 0%,#fff 100%); /* W3C */
  margin: 47px 0 0;
  width: 40px;
}

.calendar--sidebar .calendar__list {
  text-align: right;
}
.calendar--sidebar .calendar__item {
  border-bottom: 2px solid #a6a8ab;
  position: relative;
  padding: 15px 0 10px;
  text-align: center;
}
.calendar__item.zoom {
  padding: 10px 0 5px;
}
.calendar--sidebar .calendar__date {
  font-size: 10px;
}
.zoom .calendar__date {
  margin-left: -15px;
  line-height: 1;
  font-size: 14px;
}
.calendar--sidebar .event-thumb {
  border: 1px solid #000;
}
.zoom .event-thumb {
  height: 45px;
  margin-left: -15px;
  max-width: none;
  width: 45px;
}
.calendar--timeline {
  margin: 0 20px;
  overflow-x: hidden;
  padding: 230px 0;
}
.calendar--timeline .calendar__list {
  background: rgb(181,181,183); /* Old browsers */
  background: -moz-linear-gradient(top,  rgba(181,181,183,1) 0%, rgba(255,255,255,1) 100%); /* FF3.6+ */
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(181,181,183,1)), color-stop(100%,rgba(255,255,255,1))); /* Chrome,Safari4+ */
  background: -webkit-linear-gradient(top,  rgba(181,181,183,1) 0%,rgba(255,255,255,1) 100%); /* Chrome10+,Safari5.1+ */
  background: -o-linear-gradient(top,  rgba(181,181,183,1) 0%,rgba(255,255,255,1) 100%); /* Opera 11.10+ */
  background: -ms-linear-gradient(top,  rgba(181,181,183,1) 0%,rgba(255,255,255,1) 100%); /* IE10+ */
  background: linear-gradient(to bottom,  rgba(181,181,183,1) 0%,rgba(255,255,255,1) 100%); /* W3C */
  height: 50px;
  white-space: nowrap;
}
.calendar--timeline .calendar__item {
  padding: 0 3px;
  position: relative;
  vertical-align: top;
  width: 60px;
}
.calendar--timeline .calendar__item:before {
  border-left: 2px solid #000;
  content: "";
  height: 34px;
  left: -1px;
  position: absolute;
  top: 0;
}
.calendar--timeline .calendar__item--month:before {
  height: 50px;
}
.calendar--timeline .calendar__month {
  display: block;
  font-size: 17px;
  margin: -5px 0 0;
}
.calendar--timeline .calendar__day {
  font-size: 24px;
}
.calendar--timeline .event__bar {
  background: rgba(0, 173, 238, .5);
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, .5);
  height: 16px;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}
.calendar--timeline .event__bar.event__bar--3 {
  width: 300%;
}
.calendar--timeline .event__bar.event__bar--6 {
  width: 600%;
}
.calendar--timeline .event__bar.event__bar--9 {
  width: 900%;
}
.calendar--timeline .event__bubble {
  display: block;
  position: relative;
}
.calendar--timeline .event__thumb img {
  border: 1px solid #000;
  height: 40px;
  left: 50%;
  margin: 0 0 0 -20px;
  max-width: 40px;
  position: absolute;
  top: 2px;
  width: 40px;
  z-index: 10;
}
.calendar--timeline .event__icons {
  left: 50%;
  margin: 0 0 0 -19px;
  position: absolute;
  top: 36px;
  z-index: 15;
  width: 38px;
  white-space: normal;
}
.calendar--timeline .event__icons--top {
  bottom: 5px;
  top: auto;
}
.calendar--timeline .event--profile {
  height: 32px;
  left: 50%;
  margin: 0 0 0 -16px;
  position: absolute;
  top: 7px;
  width: 32px;
}
.calendar--compact {
  height: 60px;
  margin: 0 20px;
  padding: 30px 0 0;
}
.calendar--compact .calendar__list {
  border-top: 2px solid #a6a8ab;
  display: table;
  table-layout: fixed;
  width: 100%;
}
.calendar--compact .calendar__item {
  display: table-cell;
  text-align: center;
}
.calendar--compact .calendar__month {
  color: #808184;
  font-size: 16px;
  text-transform: uppercase;
}

.event__teaser {
  background: #fff;
  border: 1px solid #000;
  padding: 10px;
}
.event__teaser .l-media__body {
  color: #414042;
  font-size: 20px;
  font-weight: bold;
  line-height: 1.2;
}
.event__teaser p {
  font-size: 16px;
  margin: 5px 0 0;
}
.event__teaser a {
  color: #000;
  text-decoration: none;
}

.bubble {
  background: #66cef5;
  border-radius: 20px;
  padding: 15px;
}
/*------------------------------------*
  COVER FLOW
 *------------------------------------*/

.coverflow {
  padding: 0 0px;
}
.coverflow .profile__title {
  padding-left: 10px;
}
.coverflow__items {
  height: 100px;
  margin: 0 auto;
  perspective: 400px;
  position: relative;
  width: 300px;
}
.coverflow__item {
  background: #fff;
  border: 1px solid #000;
  height: 100px;
  position: relative;
  width: 300px;
}
.coverflow__item--first {
   transform: translateX(-50%) translateZ(0px) rotateY(40deg) scale(0.1);
}
.coverflow__item--prev {
   transform: translateX(-30%) translateZ(0px) rotateY(40deg) scale(0.1);
}
.coverflow__item--current {
  z-index: 3;
}
.coverflow__item--next {
   transform: translateX(30%) translateZ(0px) rotateY(-40deg) scale(0.1);
   z-index: 2;
}
.coverflow__item--last {
   transform: translateX(50%) translateZ(0px) rotateY(-40deg) scale(0.1);
}
/*------------------------------------*
  COVER FLOW MENU
 *------------------------------------*/

.coverflow2 {
  padding: 0 0px;
}
.coverflow2 .profile__title {
  padding-left: 10px;
}
.coverflow2__items {
  height: 363px;
  margin: 0 auto;
  perspective: 600px;
  position: relative;
  width: 544px;
}
.coverflow2__item {
  background: #fff;
  border: 1px solid #000;
  height: 363px;
  position: relative;
  width: 544px;
}
.coverflow2__item--first {
   transform: translateX(-50%) translateZ(0px) rotateY(40deg) scale(0.2);
}
.coverflow2__item--prev {
   transform: translateX(-30%) translateZ(0px) rotateY(40deg) scale(0.2);
}
.coverflow2__item--current {
  z-index: 3;
}
.coverflow2__item--next {
   transform: translateX(30%) translateZ(0px) rotateY(-40deg) scale(0.2);
   z-index: 2;
}
.coverflow2__item--last {
   transform: translateX(50%) translateZ(0px) rotateY(-40deg) scale(0.2);
}



/*------------------------------------*
  $FOOTER
 *------------------------------------*/
.app__foot {
  background: rgba(255, 255, 255, .9);
  bottom: 0;
  height: 40px;
  line-height: 40px;
  padding: 0 10px;
  position: fixed;
  width: 100%;
}

.page--index .app__foot {
  padding-right: 50px;
}
.menu--foot > li {
  margin: 0 5px 0 0;
}
.menu--shop > li {
  margin: 0 0 0 5px;
}




/*------------------------------------*
  $HEADER
 *------------------------------------*/
.site__head {
  border-bottom: 1px solid #000;
  padding: 10px;
  position: relative;
  text-align: center;
  z-index: 999;
}
.site__head--unbordered {
  border: none;
}




/*------------------------------------*
  $THUMBNAILS
 *------------------------------------*/
.thumbnail__container {
  overflow: hidden;
}
.thumbnail__list {
  white-space: nowrap;
}
.thumbnail__item {
  margin: 0 10px 0 0;
  vertical-align: top;
}
.thumbnail__text {
  color: #000000;
  display: block;
  font-size: 10px;
  font-weight: bold;
  position: relative;
}
.thumbnail__caption {
  left: 10px;
  position: absolute;
  text-decoration: none;
}
.thumbnail__caption--top {
  top: 6px;
}
.thumbnail__caption--bottom {
  bottom: 6px;
}

.thumbnail {
  display: block;
  padding: 15px 0;
}
.thumbnail--caption {
  position: relative;
}
.thumbnail--caption .thumbnail__caption {
  color: #000;
  font-size: 10px;
  font-weight: bold;
  left: 0;
  text-align: center;
  width: 100%;
}
.thumbnail--caption .thumbnail__caption--top {
  top: 0;
}
.thumbnail--caption .thumbnail__caption--bottom {
  bottom: -2px;
}
.thumbnail img {
  border: 1px solid #cdced0;
}

.page__title {
  font-family: 'Eurostile', Arial, sans-serif;
  font-size: 18px;
  font-weight: normal;
  line-height: 1;
  margin: 6px auto 0;
  text-transform: uppercase;
}




/*------------------------------------*
  EXCERPT
 *------------------------------------*/
.excerpt {
  font-size: 12px;
  margin-bottom: 20px;
}
.excerpt__content {
  margin: 0;
}




/*------------------------------------*
  SEARCH FORM
 *------------------------------------*/
.search-form {
  margin-left: 5px;
  position: relative;
}
.search-form .form__text {
  background: #fff;
  border: 1px solid #000;
  border-radius: 5px;
  font-size: 16px;
  height: 26px;
  line-height: normal;
  padding: 4px 5px 4px 25px;
}
.search-form .form__control {
  left: 0;
  position: absolute;
  top: 2px;
}
.search-form .icon {
  color: #808184;
}



/*------------------------------------*
  ENTRY TITLE
 *------------------------------------*/
.entry {
  padding: 20px 50px;
}
.entry__title {
  font-family: 'Eurostile',Arial,sans-serif;
  font-size: 24px;
  font-weight: normal;
  line-height: 1.1;
  margin: 0;
  text-transform: uppercase;
}

.entry__meta {
  font-size: 14px;
}
.entry__content {
  max-width: 700px;
}

.stat-list {
  font-size: 12px;
  margin-left: -10px;
}
.stat {
  margin-left: 10px;
}


/*------------------------------------*
    FLIPSTER PLUGIN
 *------------------------------------*/
/* @group Base Flipster Styles */
.flipster {
  display: block;
  margin: 0 auto;
  width: 100%;
  position: relative;
}
.flip-items,
.flip-item {
  display: block;
  margin: 0 auto;
  padding: 0;
  list-style-type: none;
}
.flip-items {
  width: 100%;
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  -webkit-transform-origin: 50% 50%;
  -moz-transform-origin: 50% 50%;
  -o-transform-origin: 50% 50%;
  -ms-transform-origin: 50% 50%;
  transform-origin: 50% 50%;
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-box-sizing: content-box;
  -moz-box-sizing: content-box;
  box-sizing: content-box;
}
.flip-item {
  position: absolute;
  opacity: 0.99;

}
.flip-past,
.flip-future,
.flip-next,
.flip-prev {
  cursor: pointer;
}
.flip-item img {
  display: block;
  width: 100%;
}
/* @end */
/* @group Coverflow Style */
.flipster-coverflow .flip-items {
  -webkit-transition: all 350ms ease-in-out;
  -moz-transition: all 350ms ease-in-out;
  -o-transition: all 350ms ease-in-out;
  -ms-transition: all 350ms ease-in-out;
  transition: all 350ms ease-in-out;
  overflow-x: hidden;
  position: relative;
  padding-top: 3.1592521%;
  padding-bottom: 5.1579626%;
}
.flipster-coverflow .flip-item {
  display: block;
  -webkit-transition: all 175ms ease-in-out;
  -moz-transition: all 175ms ease-in-out;
  -o-transition: all 175ms ease-in-out;
  -ms-transition: all 175ms ease-in-out;
  transition: all 175ms ease-in-out;
  /*-webkit-transform-origin: 50% 50%;
  -moz-transform-origin: 50% 50%;
  -o-transform-origin: 50% 50%;
  -ms-transform-origin: 50% 50%;
  transform-origin: 50% 50%;*/
  -webkit-perspective: 2000px;
  -moz-perspective: 2000px;
  perspective: 2000px;
  position: absolute;
  width: 40%;
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  backface-visibility: hidden;
}
.flipster-coverflow .flip-content {
  -webkit-transition: all 350ms ease-in-out;
  -moz-transition: all 350ms ease-in-out;
  -o-transition: all 350ms ease-in-out;
  -ms-transition: all 350ms ease-in-out;
  transition: all 350ms ease-in-out;
}
.flipster-coverflow .flip-content img {
  -webkit-box-reflect: below 0 -webkit-gradient(linear, left bottom, left top, color-stop(0.05, rgba(255, 255, 255, 0.12)), color-stop(0.1, transparent));
}
.flipster-coverflow .flip-past .flip-content {
  -webkit-transform: rotateY(55deg) scale(0.9);
  -moz-transform: rotateY(55deg) scale(0.9);
  -o-transform: rotateY(55deg) scale(0.9);
  -ms-transform: rotateY(55deg) scale(0.9);
  transform: rotateY(55deg) scale(0.9);
  -webkit-transform-origin: left 50%;
  -moz-transform-origin: left 50%;
  -ms-transform-origin: left 50%;
  -o-transform-origin: left 50%;
  transform-origin: left 50%;
}
.flipster-coverflow .flip-future .flip-content {
  -webkit-transform: rotateY(-55deg) scale(0.9);
  -moz-transform: rotateY(-55deg) scale(0.9);
  -o-transform: rotateY(-55deg) scale(0.9);
  -ms-transform: rotateY(-55deg) scale(0.9);
  transform: rotateY(-55deg) scale(0.9);
  -webkit-transform-origin: right 50%;
  -moz-transform-origin: right 50%;
  -ms-transform-origin: right 50%;
  -o-transform-origin: right 50%;
  transform-origin: right 50%;
}

.flipster-coverflow.no-rotate .flip-past .flip-content {
  -webkit-transform: scale(0.75);
  -moz-transform: scale(0.75);
  -o-transform:scale(0.75);
  -ms-transform:scale(0.75);
  transform: scale(0.75);
}
.flipster-coverflow.no-rotate .flip-future .flip-content {
  -webkit-transform: scale(0.75);
  -moz-transform: scale(0.75);
  -o-transform: scale(0.75);
  -ms-transform: scale(0.75);
  transform: scale(0.75);
}


.flipster-coverflow .flip-current .flip-content {
  -webkit-transform: rotateY(0deg);
  -moz-transform: rotateY(0deg);
  -o-transform: rotateY(0deg);
  -ms-transform: rotateY(0deg);
  transform: rotateY(0deg);
}
.flipster-coverflow .flip-hidden {
  visibility: hidden;
  -webkit-opacity: 0;
  -moz-opacity: 0;
  opacity: 0;
}
/* @end */
/* @group Flip Items */
.flipster-carousel .flip-items {
  -webkit-perspective: 2000px;
  -moz-perspective: 2000px;
  perspective: 2000px;
}
.flipster-carousel .flip-item {
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  -webkit-transition: all 350ms ease-out;
  -moz-transition: all 350ms ease-out;
  -o-transition: all 350ms ease-out;
  -ms-transition: all 350ms ease-out;
  transition: all 350ms ease-out;
}
.no-csstransforms .flipster-carousel .flip-item {
  -webkit-transition: none;
  -moz-transition: none;
  -o-transition: none;
  -ms-transition: none;
  transition: none;
}
.flipster-carousel .flip-items img {
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
  -moz-box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}
.flipster-carousel .flip-past {
  -webkit-transform: translateX(-80%) translateZ(0) rotateY(80deg) scale(0.65);
  -moz-transform: translateX(-80%) translateZ(0) rotateY(80deg) scale(0.65);
  -o-transform: translateX(-80%) translateZ(0) rotateY(80deg) scale(0.65);
  -ms-transform: translateX(-80%) translateZ(0) rotateY(80deg) scale(0.65);
  transform: translateX(-80%) translateZ(0) rotateY(80deg) scale(0.65);
}
.flipster-carousel.no-rotate .flip-past {
  -webkit-transform: translateX(-80%) translateZ(0)  scale(0.65);
  -moz-transform: translateX(-80%) translateZ(0)  scale(0.65);
  -o-transform: translateX(-80%) translateZ(0)  scale(0.65);
  -ms-transform: translateX(-80%) translateZ(0) scale(0.65);
  transform: translateX(-80%) translateZ(0) scale(0.65);
}
.no-csstransforms3d .flipster-carousel .flip-past {
  -webkit-transform: translateX(-56%) scale(0.5);
  -moz-transform: translateX(-56%) scale(0.5);
  -o-transform: translateX(-56%) scale(0.5);
  -ms-transform: translateX(-56%) scale(0.5);
  transform: translateX(-56%) scale(0.5);
}
.no-csstransforms .flipster-carousel .flip-past {
  left: -20%;
  top: 40%;
  width: 50%;
  height: 50%;
}
.flipster-carousel .flip-future {
  -webkit-transform: translateX(80%) translateZ(0) rotateY(-80deg) scale(0.65);
  -moz-transform: translateX(80%) translateZ(0) rotateY(-80deg) scale(0.65);
  -o-transform: translateX(80%) translateZ(0) rotateY(-80deg) scale(0.65);
  -ms-transform: translateX(80%) translateZ(0) rotateY(-80deg) scale(0.65);
  transform: translateX(80%) translateZ(0) rotateY(-80deg) scale(0.65);
}

.flipster-carousel.no-rotate .flip-future {
  -webkit-transform: translateX(80%) translateZ(0) scale(0.65);
  -moz-transform: translateX(80%) translateZ(0) scale(0.65);
  -o-transform: translateX(80%) translateZ(0) scale(0.65);
  -ms-transform: translateX(80%) translateZ(0) scale(0.65);
  transform: translateX(80%) translateZ(0) scale(0.65);
}

.no-csstransforms3d .flipster-carousel .flip-future {
  -webkit-transform: translateX(56%) scale(0.5);
  -moz-transform: translateX(56%) scale(0.5);
  -o-transform: translateX(56%) scale(0.5);
  -ms-transform: translateX(56%) scale(0.5);
  transform: translateX(56%) scale(0.5);
}
.no-csstransforms .flipster-carousel .flip-future {
  left: 88%;
  top: 40%;
  width: 50%;
  height: 50%;
}
.flipster-carousel .flip-prev {
  -webkit-transform: translateX(-60%) translateZ(0) rotateY(80deg) scale(0.8);
  -moz-transform: translateX(-60%) translateZ(0) rotateY(80deg) scale(0.8);
  -o-transform: translateX(-60%) translateZ(0) rotateY(80deg) scale(0.8);
  -ms-transform: translateX(-60%) translateZ(0) rotateY(80deg) scale(0.8);
  transform: translateX(-60%) translateZ(0) rotateY(80deg) scale(0.8);
}
.flipster-carousel.no-rotate .flip-prev {
  -webkit-transform: translateX(-60%) translateZ(0) scale(0.8);
  -moz-transform: translateX(-60%) translateZ(0) scale(0.8);
  -o-transform: translateX(-60%) translateZ(0) scale(0.8);
  -ms-transform: translateX(-60%) translateZ(0) scale(0.8);
  transform: translateX(-60%) translateZ(0) scale(0.8);
}
.no-csstransforms3d .flipster-carousel .flip-prev {
  -webkit-transform: translateX(-24%) scale(0.75);
  -moz-transform: translateX(-24%) scale(0.75);
  -o-transform: translateX(-24%) scale(0.75);
  -ms-transform: translateX(-24%) scale(0.75);
  transform: translateX(-24%) scale(0.75);
}
.no-csstransforms .flipster-carousel .flip-prev {
  left: -9%;
  top: 20%;
  width: 75%;
  height: 75%;
}
.flipster-carousel .flip-next {
  -webkit-transform: translateX(60%) translateZ(0) rotateY(-80deg) scale(0.8);
  -moz-transform: translateX(60%) translateZ(0) rotateY(-80deg) scale(0.8);
  -o-transform: translateX(60%) translateZ(0) rotateY(-80deg) scale(0.8);
  -ms-transform: translateX(60%) translateZ(0) rotateY(-80deg) scale(0.8);
  transform: translateX(60%) translateZ(0) rotateY(-80deg) scale(0.8);
}
.flipster-carousel.no-rotate .flip-next {
  -webkit-transform: translateX(60%) translateZ(0)  scale(0.8);
  -moz-transform: translateX(60%) translateZ(0) scale(0.8);
  -o-transform: translateX(60%) translateZ(0) scale(0.8);
  -ms-transform: translateX(60%) translateZ(0) scale(0.8);
  transform: translateX(60%) translateZ(0) scale(0.8);
}

.no-csstransforms3d .flipster-carousel .flip-next {
  -webkit-transform: translateX(24%) scale(0.75);
  -moz-transform: translateX(24%) scale(0.75);
  -o-transform: translateX(24%) scale(0.75);
  -ms-transform: translateX(24%) scale(0.75);
  transform: translateX(24%) scale(0.75);
}
.no-csstransforms .flipster-carousel .flip-next {
  left: 39%;
  top: 20%;
  width: 75%;
  height: 75%;
}
.flipster-carousel .flip-past,
.flipster-carousel .flip-future {
  z-index: 1;
  -webkit-transition-delay: 87.5ms;
  -moz-transition-delay: 87.5ms;
  -o-transition-delay: 87.5ms;
  transition-delay: 87.5ms;
}
.flipster-carousel .flip-prev,
.flipster-carousel .flip-next {
  -webkit-opacity: 0.8;
  -moz-opacity: 0.8;
  opacity: 0.8;
  z-index: 2;
  -webkit-transition-delay: 58.333333333333336ms;
  -moz-transition-delay: 58.333333333333336ms;
  -o-transition-delay: 58.333333333333336ms;
  transition-delay: 58.333333333333336ms;
}
.flipster-carousel .flip-current {
  z-index: 999;
  -webkit-transform: rotateY(0deg);
  -moz-transform: rotateY(0deg);
  -o-transform: rotateY(0deg);
  -ms-transform: rotateY(0deg);
  transform: rotateY(0deg);
  -webkit-transition-delay: 58.333333333333336ms;
  -moz-transition-delay: 58.333333333333336ms;
  -o-transition-delay: 58.333333333333336ms;
  transition-delay: 58.333333333333336ms;
}
.flipster-carousel .flip-hidden {
  visibility: hidden;
  -webkit-opacity: 0;
  -moz-opacity: 0;
  opacity: 0;
  -webkit-transform: rotateY(0deg) translateX(0) scale(0.5);
  -moz-transform: rotateY(0deg) translateX(0) scale(0.5);
  -o-transform: rotateY(0deg) translateX(0) scale(0.5);
  -ms-transform: rotateY(0deg) translateX(0) scale(0.5);
  transform: rotateY(0deg) translateX(0) scale(0.5);
  -webkit-transition-delay: 116.66666666666667ms;
  -moz-transition-delay: 116.66666666666667ms;
  -o-transition-delay: 116.66666666666667ms;
  transition-delay: 116.66666666666667ms;
}
/* @end */
.no-transition {
  -webkit-transition-duration: 0ms !important;
  -moz-transition-duration: 0ms !important;
  -o-transition-duration: 0ms !important;
  transition-duration: 0ms !important;
}
/* @end */


/*------------------------------------*
    JQUERY UI PLUGIN
 *------------------------------------*/
/*! jQuery UI - v1.10.4 - 2014-01-22
* http://jqueryui.com
* Includes: jquery.ui.core.css, jquery.ui.tabs.css
* Copyright 2014 jQuery Foundation and other contributors; Licensed MIT */

/* Layout helpers
----------------------------------*/
.ui-helper-hidden {
    display: none;
}
.ui-helper-hidden-accessible {
    border: 0;
    clip: rect(0 0 0 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
}
.ui-helper-reset {
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
    line-height: 1.3;
    text-decoration: none;
    font-size: 100%;
    list-style: none;
}
.ui-helper-clearfix:before,
.ui-helper-clearfix:after {
    content: "";
    display: table;
    border-collapse: collapse;
}
.ui-helper-clearfix:after {
    clear: both;
}
.ui-helper-clearfix {
    min-height: 0; /* support: IE7 */
}
.ui-helper-zfix {
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    position: absolute;
    opacity: 0;
    filter:Alpha(Opacity=0);
}

.ui-front {
    z-index: 100;
}


/* Interaction Cues
----------------------------------*/
.ui-state-disabled {
    cursor: default !important;
}


/* Icons
----------------------------------*/

/* states and images */
.ui-icon {
    display: block;
    text-indent: -99999px;
    overflow: hidden;
    background-repeat: no-repeat;
}


/* Misc visuals
----------------------------------*/

/* Overlays */
.ui-widget-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.ui-tabs {
    position: relative;/* position: relative prevents IE scroll bug (element with position: relative inside container with overflow: auto appear as "fixed") */
}
.ui-tabs .ui-tabs-nav {
    border-bottom: 1px solid #414042;
    margin: 0;
}
.ui-tabs .ui-tabs-nav li {
    list-style: none;
    float: left;
    font-family: 'Eurostile', Arial, sans-serif;
    font-size: 12px;
    font-weight: normal;
    margin: 0;
    padding: 10px 20px;
    text-transform: uppercase;
    position: relative;
    top: 0;
    border-bottom-width: 0;
    white-space: nowrap;
}
.ui-tabs .ui-tabs-nav .ui-tabs-anchor {
    color: #000;
    float: left;
    text-decoration: none;
}
.ui-tabs .ui-tabs-nav li.ui-tabs-active {
}
.ui-tabs .ui-tabs-nav li.ui-tabs-active .ui-tabs-anchor,
.ui-tabs .ui-tabs-nav li.ui-state-disabled .ui-tabs-anchor,
.ui-tabs .ui-tabs-nav li.ui-tabs-loading .ui-tabs-anchor {
  color: #00ADEE;
  cursor: text;
}
.ui-tabs-collapsible .ui-tabs-nav li.ui-tabs-active .ui-tabs-anchor {
  cursor: pointer;
}
.ui-tabs .ui-tabs-panel {
    display: block;
    border-width: 0;
    background: none;
}





/*------------------------------------*
    $FLEXSLIDER
 *------------------------------------*/
/*
 * jQuery FlexSlider v2.2.0
 * http://www.woothemes.com/flexslider/
 *
 * Copyright 2012 WooThemes
 * Free to use under the GPLv2 license.
 * http://www.gnu.org/licenses/gpl-2.0.html
 *
 * Contributing author: Tyler Smith (@mbmufffin)
 */

/* FlexSlider Necessary Styles
*********************************/
.flexslider .slides > li {
    display: none;
    -webkit-backface-visibility: hidden;
} /* Hide the slides before the JS is loaded. Avoids image jumping */
/*.flexslider .slides img {
    width: 100%;
    display: block;
}*/

/* No JavaScript Fallback */
/* If you are not using another script, such as Modernizr, make sure you
 * include js that eliminates this class on page load */
.no-js .slides > li:first-child {
    display: block;
}

/* FlexSlider Default Theme
*********************************/
.flexslider {
    position: relative;
    zoom: 1;
    height: 100%;
}
.flex-viewport {
    max-height: 2000px;
    -webkit-transition: all 1s ease;
    -moz-transition: all 1s ease;
    -o-transition: all 1s ease;
    transition: all 1s ease;
    height: 100%;
}
.loading .flex-viewport {
    max-height: 300px;
}
.flexslider .slides {
    zoom: 1;
    height: 100%;
}
.flexslider .slides > li {
  height: 100%;
}
.flexslider .slides > li:first-child {
  display: block;
}





/*
 * Swiper - Mobile Touch Slider CSS
 * http://www.idangero.us/sliders/swiper
 *
 * Vladimir Kharlampidi, The iDangero.us
 * http://www.idangero.us/
 *
 * Copyright 2012-2013, Vladimir Kharlampidi
 * The iDangero.us
 * http://www.idangero.us
 *
 * Licensed under GPL & MIT
 *
*/

/* ===============================================================
Basic Swiper Styles
================================================================*/
/*.swiper-container {
    margin:0 auto;
    position:relative;
    overflow:hidden;
    -webkit-backface-visibility:hidden;
    -moz-backface-visibility:hidden;
    -ms-backface-visibility:hidden;
    -o-backface-visibility:hidden;
    backface-visibility:hidden;

    z-index:1;
}
.swiper-wrapper {
    height: 100% !important;
    position:relative;
    width:100%;
    -webkit-transition-property:-webkit-transform, left, top;
    -webkit-transition-duration:0s;
    -webkit-transform:translate3d(0px,0,0);
    -webkit-transition-timing-function:ease;

    -moz-transition-property:-moz-transform, left, top;
    -moz-transition-duration:0s;
    -moz-transform:translate3d(0px,0,0);
    -moz-transition-timing-function:ease;

    -o-transition-property:-o-transform, left, top;
    -o-transition-duration:0s;
    -o-transform:translate3d(0px,0,0);
    -o-transition-timing-function:ease;
    -o-transform:translate(0px,0px);

    -ms-transition-property:-ms-transform, left, top;
    -ms-transition-duration:0s;
    -ms-transform:translate3d(0px,0,0);
    -ms-transition-timing-function:ease;

    transition-property:transform, left, top;
    transition-duration:0s;
    transform:translate3d(0px,0,0);
    transition-timing-function:ease;

}
.swiper-free-mode > .swiper-wrapper {
    -webkit-transition-timing-function: ease-out;
    -moz-transition-timing-function: ease-out;
    -ms-transition-timing-function: ease-out;
    -o-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
    margin: 0 auto;
}
.swiper-slide {
    float: left;
}
.swiper-wp8-horizontal {
    -ms-touch-action: pan-y;
}
.swiper-wp8-vertical {
    -ms-touch-action: pan-x;
}*/

/* ===============================================================
Your custom styles, here you need to specify container's and slide's
sizes, pagination, etc.
================================================================*/
/*.swiper-container {

    height: 100%;
    width: 100%;
}
.swiper-slide {

    width: 100%;
    height: 100% !important;
}*/



/*------------------------------------*
HELPER
 *------------------------------------*/
/*
 * Image replacement
 */
.ir {
  background-color: transparent;
  border: 0;
  overflow: hidden; /* IE 6/7 fallback */
  *text-indent: -9999px;
}

.ir:before {
  content: "";
  display: block;
  width: 0;
  height: 150%;
}

/*
 * Hide from both screenreaders and browsers:  h5bp.com/u
 */
.hidden {
  display: none !important;
  visibility: hidden;
}

/*
 * Hide only visually, but have it available for screenreaders:  h5bp.com/v
 */
.visuallyhidden {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}

/*
 * Extends the .visuallyhidden class to allow the element to be focusable
 * when navigated to via the keyboard:  h5bp.com/p
 */
.visuallyhidden.focusable:active,.visuallyhidden.focusable:focus {
  clip: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  position: static;
  width: auto;
}

/*
 * Hide visually and from screenreaders, but maintain layout
 */
.invisible {
  visibility: hidden;
}

/*
 * Clearfix:  contain floats
 *
 * For modern browsers
 * 1. The space content is one way to avoid an Opera bug when the
 *    `contenteditable` attribute is included anywhere else in the document.
 *    Otherwise it causes space to appear at the top and bottom of elements
 *    that receive the `clearfix` class.
 * 2. The use of `table` rather than `block` is only necessary if using
 *    `: before` to contain the top-margins of child elements.
 */
.clearfix:before,.clearfix:after {
  content: " "; /* 1 */
  display: table; /* 2 */
}

.clearfix:after {
  clear: both;
}

/*
 * For IE 6/7 only
 * Include this rule to trigger hasLayout and contain floats.
 */
.clearfix {
  *zoom: 1;
}

/*------------------------------------*
$MEDIA
 *------------------------------------*/
@media only screen and (max-width: 30em) {
    .profile {
        overflow-y: auto;
    }
    .profile .l__column {
        position: static;
        width: 100%;
    }
    .profile .l__column--right {
        padding: 0;
    }
    .profile__details {
        bottom: 6px;
    }
    .profile__sponsor,
    .profile__sponsor .brand {
        height: 30px;
        top: 0;
        width: 30px;
    }
    .profile__vote {
        margin-top: 3px;
    }
    .media__caption,
    .profile__stat {
        font-size: 12px;
    }
    .profile__info {
        font-size: 14px;
    }
    .profile__avatar {
        display: block;
        height: 60px;
        width: 60px;
    }
    .profile__avatar img {
        display: block;
        max-width: 100%;
    }
    .profile__locations {
        text-align: center;
        white-space: nowrap;
    }
    .profile__locations li {
        width: 32px;
    }
    .profile__title,
    .ui-tabs .ui-tabs-nav li {
        font-family: Arial, sans-serif;
    }
    .badge--pro {
        background-size: 35px 35px;
        height: 35px;
        width: 35px;
    }
    .network-list {
        text-align: center;
    }
    .network__count {
        font-size: 14px;
        font-weight: normal;
    }
}

@media print,(-o-min-device-pixel-ratio: 5/4),(-webkit-min-device-pixel-ratio: 1.25),(min-resolution: 120dpi) {
    /* Style adjustments for high resolution devices */
}

/*------------------------------------*
$PRINT
 *------------------------------------*/
@media print {
    * {
    background: transparent !important;
    color: #000 !important; /* Black prints faster:  h5bp.com/s */

-webkit-box-shadow: none !important;
    box-shadow: none !important;
    text-shadow: none !important;
}

a,a:visited {
    text-decoration: underline;
}

a[href]:after {
    content: " (" attr(href) ")";
}

abbr[title]:after {
    content: " (" attr(title) ")";
}

/*
     * Don't show links for images, or javascript/internal links
     */
.ir a:after,a[href^="javascript:"]:after,a[href^="#"]:after {
    content: "";
}

pre,blockquote {
    border: 1px solid #999;
    page-break-inside: avoid;
}

thead {
    display: table-header-group; /* h5bp.com/t */
}

tr,img {
    page-break-inside: avoid;
}

img {
    max-width: 100% !important;
}

@page {
    margin: 0.5cm;
}

p,h2,h3 {
    orphans: 3;
    widows: 3;
}

h2,h3 {
    page-break-after: avoid;
}

}
