/* ============================================================

Wirefy by Chris Da Sie
Version: 2.0.7
URL: https://github.com/cjdsie/wirefy
Apache License: v2.0. https://www.apache.org/licenses/LICENSE-2.0


/* Import Base partial **Important Do Not Delete**
==================================================*/
/* ============================================================
Wirefy 
Author: Chris Da Sie [https://chrisdasie.com]
Version: 2.1.2
URL:https://github.com/cjdsie/wirefy
Apache License:v2.0. https://www.apache.org/licenses/LICENSE-2.0
/* Table of Content
==================================================
#Reset & Basics
#Basic Styles
#Site Styles
	#Grid
	#Typography
	#Font Awesome
	#Links
	#Lists
	#Images
	#Buttons
	#Tabs
	#Tables
	#Forms
	#Gallery
	#Misc
#Media Queries 
*/
/* #Reset
================================================== */
/*
* Consistency fixes
* adopted from https://necolas.github.com/normalize.css/
*/
html {
  height: 100%;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%; }

body {
  min-height: 100%;
  font-size: 100%; }

article, aside, details, figcaption, figure, footer, header, hgroup, nav, section, audio, canvas, video {
  display: block; }

sub {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline; }

sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
  top: -0.5em; }

sub {
  bottom: -0.25em; }

pre {
  white-space: pre;
  white-space: pre-wrap;
  word-wrap: break-word; }

b, strong {
  font-weight: bold; }

abbr[title] {
  border-bottom: 1px dotted; }

input, textarea, button, select {
  margin: 0;
  font-size: 100%;
  line-height: normal;
  vertical-align: baseline; }

button, html input[type="button"] {
  cursor: pointer;
  -webkit-appearance: button; }

input[type="reset"], input[type="submit"] {
  cursor: pointer;
  -webkit-appearance: button; }
input[type="checkbox"], input[type="radio"] {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box; }

textarea {
  overflow: auto; }

table {
  border-collapse: collapse;
  border-spacing: 0; }

/*
*
* Simple fluid media
*
*/
figure {
  position: relative; }
  figure img, figure object, figure embed, figure video {
    max-width: 100%;
    display: block; }

img {
  max-width: 100%;
  height: auto;
  border: 0;
  -ms-interpolation-mode: bicubic; }

object, embed, video, iframe, picture {
  max-width: 100%;
  height: auto;
  display: block; }

/* Variables 
=================================================== */
/* Mixins 
=================================================== */
.clearfix {
  *zoom: 1; }
  .clearfix:before {
    display: table;
    content: ""; }
  .clearfix:after {
    display: table;
    content: "";
    clear: both; }

.visuallyhidden.focusable:active, .visuallyhidden.focusable:focus {
  position: static;
  clip: auto;
  height: auto;
  width: auto;
  margin: 0;
  overflow: visible; }

* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box; }
  *:first-child + html .row, *:first-child + html .clearfix {
    zoom: 1; }
  *:after, *:before {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box; }

/* Mixins and Variables
======================== */
/* IE7 */
/* #Basic Styles
================================================== */
/* apply a natural box layout model to all elements */
html {
  /*background: #FFF7FF;*/
  /*background: #ee7878;*/
  background:#fff6f6;
  margin: 0;
  padding: 0;
  height: 100%;
  font-size: 100%;
  -webkit-overflow-scrolling: touch;
  -webkit-tap-highlight-color: #f3f5f6;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%; }

body {

  margin: 0;
  padding: 0;
  font-family: "HelveticaNeue","Helvetica Neue",Helvetica,Arial,sans-serif;
  font-size: 1em;
  line-height: 1.5;
  color: #444;
  -webkit-font-smoothing: antialiased;
  /* Fix for webkit rendering */
  -webkit-text-size-adjust: 100%; }

/* #CSS Animation
================================================= */
@-webkit-keyframes fade-in {
  0% {
    opacity: 0;
    filter: alpha(opacity=0); }

  100% {
    opacity: 1;
    filter: alpha(opacity=100); } }

@-moz-keyframes fade-in {
  0% {
    opacity: 0;
    filter: alpha(opacity=0); }

  100% {
    opacity: 1;
    filter: alpha(opacity=100); } }

@keyframes fade-in {
  0% {
    opacity: 0;
    filter: alpha(opacity=0); }

  100% {
    opacity: 1;
    filter: alpha(opacity=100); } }

@-webkit-keyframes fade-out {
  0% {
    opacity: 1;
    filter: alpha(opacity=100); }

  100% {
    opacity: 0;
    filter: alpha(opacity=0); } }

@-moz-keyframes fade-out {
  0% {
    opacity: 1;
    filter: alpha(opacity=100); }

  100% {
    opacity: 0;
    filter: alpha(opacity=0); } }

@keyframes fade-out {
  0% {
    opacity: 1;
    filter: alpha(opacity=100); }

  100% {
    opacity: 0;
    filter: alpha(opacity=0); } }

@-webkit-keyframes fly-up-hold {
  0% {
    -webkit-transform: translatey(75px); }

  100% {
    -webkit-transform: translatey(0px); } }

@-moz-keyframes fly-up-hold {
  0% {
    -moz-transform: translatey(50px); }

  100% {
    -moz-transform: translatey(0px); } }

@keyframes fly-up-hold {
  0% {
    transform: translatey(50px); }

  100% {
    transform: translatey(0px); } }

@-webkit-keyframes fly-up-out {
  0% {
    visibility: visible;
    -webkit-transform: translatey(0px); }

  100% {
    -webkit-transform: translatey(-300px); } }

@-moz-keyframes fly-up-out {
  0% {
    visibility: visible;
    -moz-transform: translatey(0px); }

  100% {
    -moz-transform: translatey(-300px); } }

@keyframes fly-up-out {
  0% {
    visibility: visible;
    transform: translatey(0px); }

  100% {
    transform: translatey(-300px); } }

@-webkit-keyframes fly-down-in {
  0% {
    -webkit-transform: translatey(-350px); }

  100% {
    -webkit-transform: translatey(0px); } }

@-moz-keyframes fly-down-in {
  0% {
    -moz-transform: translatey(-350px); }

  100% {
    -moz-transform: translatey(0px); } }

@keyframes fly-down-in {
  0% {
    transform: translatey(-350px); }

  100% {
    transform: translatey(0px); } }

@-webkit-keyframes fly-down-out {
  0% {
    -webkit-transform: translatey(0px); }

  100% {
    -webkit-transform: translatey(350px); } }

@-moz-keyframes fly-down-out {
  0% {
    -moz-transform: translatey(0px); }

  100% {
    -moz-transform: translatey(350px); } }

@keyframes fly-down-out {
  0% {
    transform: translatey(0px); }

  100% {
    transform: translatey(350px); } }

@-webkit-keyframes fly-up-down-in-out {
  0% {
    -webkit-transform: translatey(-350px); }

  15% {
    -webkit-transform: translatey(0px); }

  85% {
    opacity: 1;
    filter: alpha(opacity=100);
    -webkit-transform: translatey(0px); }

  95% {
    opacity: 0;
    filter: alpha(opacity=0); }

  100% {
    -webkit-transform: translatey(350px); } }

@-moz-keyframes fly-up-down-in-out {
  0% {
    -moz-transform: translatey(-350px); }

  15% {
    -moz-transform: translatey(0px); }

  85% {
    opacity: 1;
    filter: alpha(opacity=100);
    -moz-transform: translatey(0px); }

  95% {
    opacity: 0;
    filter: alpha(opacity=0); }

  100% {
    -moz-transform: translatey(350px); } }

@keyframes fly-up-down-in-out {
  0% {
    transform: translatey(-350px); }

  15% {
    transform: translatey(0px); }

  85% {
    opacity: 1;
    filter: alpha(opacity=100);
    transform: translatey(0px); }

  95% {
    opacity: 0;
    filter: alpha(opacity=0); }

  100% {
    transform: translatey(350px); } }

@-webkit-keyframes float-horizontal-left {
  0% {
    left: 40%; }

  50% {
    opacity: 1;
    filter: alpha(opacity=100); }

  100% {
    left: 55%;
    opacity: 0;
    filter: alpha(opacity=0); } }

@-moz-keyframes float-horizontal-left {
  0% {
    left: 40%; }

  50% {
    opacity: 1;
    filter: alpha(opacity=100); }

  100% {
    left: 55%;
    opacity: 0;
    filter: alpha(opacity=0); } }

@keyframes float-horizontal-left {
  0% {
    left: 40%; }

  50% {
    opacity: 1;
    filter: alpha(opacity=100); }

  100% {
    left: 55%;
    opacity: 0;
    filter: alpha(opacity=0); } }

@-webkit-keyframes float-horizontal-right {
  0% {
    right: 40%; }

  50% {
    opacity: 1;
    filter: alpha(opacity=100); }

  100% {
    right: 55%;
    opacity: 0;
    filter: alpha(opacity=0); } }

@-moz-keyframes float-horizontal-right {
  0% {
    right: 40%; }

  50% {
    opacity: 1;
    filter: alpha(opacity=100); }

  100% {
    right: 55%;
    opacity: 0;
    filter: alpha(opacity=0); } }

@keyframes float-horizontal-right {
  0% {
    right: 40%; }

  50% {
    opacity: 1;
    filter: alpha(opacity=100); }

  100% {
    right: 55%;
    opacity: 0;
    filter: alpha(opacity=0); } }

@-webkit-keyframes hidden {
  0% {
    opacity: 0;
    -webkit-opacity: 0;
    -webkit-transform: translatey(-500px); }

  100% {
    opacity: 0;
    -webkit-opacity: 0;
    -webkit-transform: translatey(-500px); } }

@-webkit-keyframes drop-fade-in {
  0% {
    opacity: 0;
    -webkit-opacity: 0;
    -webkit-transform: translatey(-500px); }

  38% {
    opacity: 1;
    -webkit-opacity: 1; }

  40% {
    -webkit-transform: translatey(30px); }

  50% {
    -webkit-transform: translatey(-30px); }

  65% {
    -webkit-transform: translatey(15px); }

  80% {
    -webkit-transform: translatey(-15px); }

  100% {
    -webkit-transform: translatey(0); } }

@-moz-keyframes drop-fade-in {
  0% {
    opacity: 0;
    -moz-opacity: 0;
    -moz-transform: translatey(-500px); }

  38% {
    opacity: 1;
    -moz-opacity: 1; }

  40% {
    -moz-transform: translatey(30px); }

  50% {
    -moz-transform: translatey(-30px); }

  65% {
    -moz-transform: translatey(15px); }

  80% {
    -moz-transform: translatey(-15px); }

  100% {
    -moz-transform: translatey(0); } }

@keyframes drop-fade-in {
  0% {
    opacity: 0;
    filter: alpha(opacity=0);
    transform: translatey(-500px); }

  38% {
    opacity: 1;
    filter: alpha(opacity=100); }

  40% {
    transform: translatey(30px); }

  50% {
    transform: translatey(-30px); }

  65% {
    transform: translatey(15px); }

  80% {
    transform: translatey(-15px); }

  100% {
    transform: translatey(0); } }

@-webkit-keyframes zoom-in {
  0% {
    -webkit-transform: scale(0); }

  100% {
    -webkit-transform: scale(1); } }

@-moz-keyframes zoom-in {
  0% {
    -moz-transform: scale(0); }

  100% {
    -moz-transform: scale(1); } }

@keyframes zoom-in {
  0% {
    transform: scale(0); }

  100% {
    transform: scale(1); } }

@-webkit-keyframes pulse-in {
  0% {
    opacity: 0;
    z-index: 1;
    -webkit-transform: scale(1); }

  79% {
    opacity: 0;
    -webkit-transform: scale(1); }

  80% {
    opacity: 1; }

  100% {
    opacity: 0;
    -webkit-transform: scale(5); } }

.fadeout-slideup:not(.end) {
  opacity: 1; }

.fadeout-slideup.end {
  position: relative;
  top: -100px;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out; }

.fadein-slideup:not(.end) {
  visibility: hidden;
  opacity: 0;
  margin-top: 200px;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out; }

.fadein-slideup.end {
  position: relative;
  top: -150px;
  opacity: 1;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out; }

@-webkit-keyframes animate-bg {
  0% {
    background-position: 0 0; }

  100% {
    background-position: 300px -300px; } }

@-moz-keyframes animate-bg {
  0% {
    background-position: 0 0; }

  100% {
    background-position: 300px -300px; } }

@keyframes animate-bg {
  0% {
    background-position: 0 0; }

  100% {
    background-position: 300 -300px; } }

/* #Grid
================================================== */
.row {
  width: 100%;
  margin-bottom: 0.07813em;
  zoom: 1; }
  .row:after {
    /* Or @extend clearfix */
    content: "";
    display: table;
    clear: both; }
  .row .column, .row .columns {
    margin-bottom: 2%; }

.alpha {
  margin-left: 0; }

.omega {
  margin-right: 0; }

.one, .two, .three, .four, .five, .six, .seven, .eight, .nine, .ten, .eleven, .twelve, .thirteen, .fourteen, .fifteen, .sixteen {
  width: 100%; }

/* #Typography
================================================== */
h1, h2, h3, h4, h5, h6 {
  margin: 0;
  color: #181818;
  font-family: "Georgia","Times New Roman",serif;
  font-weight: bold;
  text-rendering: optimizelegibility;
  line-height: 1.5; }

h1 a, h2 a, h3 a, h4 a, h5 a, h6 a {
  font-weight: inherit; }

h1 {
  font-size: 6.875em;
  margin-bottom: 0.19091em; }

h2 {
  font-size: 2.625em;
  margin-bottom: 0.40476em; }

h3 {
  font-size: 1.625em;
  margin-bottom: 0.73077em; }

h4 {
  font-size: 1em;
  margin-bottom: 1.5em; }

h5 {
  font-size: 0.875em;
  margin-bottom: 1.42857em; }

h6 {
  font-size: 0.75em;
  margin-bottom: 1.66667em;
  text-transform: uppercase; }

.subheader {
  color: #777; }

p, ol, ul, dl, address {
  margin-bottom: 1.5em;
  font-size: 1em;
  line-height: 1.5; }

small {
  font-size: 0.625em; }

q {
  quotes: none; }

blockquote:before, blockquote:after {
  content: '';
  content: none; }

q:before, q:after {
  content: '';
  content: none; }

cite {
  font-style: normal; }

dl, dd {
  margin-bottom: 1.5em; }

dt {
  font-weight: bold; }

.dl-horizontal dt {
  float: left;
  clear: left;
  width: 20.25%;
  text-align: right; }
.dl-horizontal dd {
  margin-left: 22.78%; }

abbr[title] {
  border-bottom: 1px dotted #c7ced6;
  cursor: help; }

b, strong {
  font-weight: bold; }

dfn {
  font-style: italic; }

ins {
  background-color: #f3f5f6;
  color: #000000;
  text-decoration: none; }

mark {
  background-color: #f3f5f6;
  color: #000000;
  font-style: italic;
  font-weight: bold;
  padding: 0 .25em; }

pre, code, kbd, samp {
  font-family: Monaco,Courier New,monospace;
  font-size: 0.875em;
  line-height: 1.5; }

pre {
  white-space: pre;
  white-space: pre-wrap;
  word-wrap: break-word; }

sub {
  position: relative;
  font-size: 0.75em;
  line-height: 0;
  vertical-align: baselineheight; }

sup {
  position: relative;
  font-size: 0.75em;
  line-height: 0;
  vertical-align: baselineheight;
  top: -0.5em; }

sub {
  bottom: -0.25em; }

p {
  hyphenate: auto;
  hyphenate-lines: 3; }
  p img {
    margin-bottom: 0.375em; }
  p.lead {
    font-size: 1.3125em;
    line-height: 0.10547em;
    color: #777; }
  p + p.no-indent {
    text-indent: 0; }

em {
  font-style: italic; }

strong {
  font-weight: bold;
  color: #333; }

del {
  text-decoration: line-through; }

/* Blockquotes */
blockquote {
  font-size: 1em;
  line-height: 1.5;
  color: #777;
  font-style: italic;
  margin: 0 0 1.25em;
  padding: .5625em 1.25em 0 1.1875em;
  border-left: 1px solid #ddd; }
  blockquote p {
    font-size: 1em;
    line-height: 1.5;
    color: #777;
    font-style: italic; }
  blockquote cite {
    display: block;
    font-size: 0.75em;
    color: #555; }
    blockquote cite:before {
      content: "\2014 \0020"; }
    blockquote cite a {
      color: #555; }
      blockquote cite a:visited {
        color: #555; }

hr {
  border: solid #ddd;
  border-width: 1px 0 0;
  clear: both;
  margin: .625em 0 1.875em;
  height: 0; }

/* #Font Awesome
================================================== */
/* Font Awesome by Dave Gandy - https://fortawesome.github.com/Font-Awesome
*  Contact
*  -------------------------------------------------------
*  Email: dave@davegandy.com
*  Twitter: https://twitter.com/fortaweso_me
*  Work: Lead Product Designer @ https://kyruus.com
*/
@font-face {
  font-family: 'FontAwesome';
  src: url("../fonts//fontawesome-webfont.eot?v=3.0.1");
  src: url("../fonts//fontawesome-webfont.eot?#iefix&v=3.0.1") format("embedded-opentype"), url("../fonts//fontawesome-webfont.woff?v=3.0.1") format("woff"), url("../fonts//fontawesome-webfont.ttf?v=3.0.1") format("truetype");
  font-weight: normal;
  font-style: normal; }

/*  Font Awesome styles
    ------------------------------------------------------- */
[class^="icon-"], [class*=" icon-"] {
  font-family: FontAwesome;
  font-weight: normal;
  font-style: normal;
  text-decoration: inherit;
  -webkit-font-smoothing: antialiased;
  *margin-right: .3em; }

[class^="icon-"]:before, [class*=" icon-"]:before {
  text-decoration: inherit;
  display: inline-block;
  speak: none; }

/* makes the font 33% larger relative to the icon container */
.icon-large:before {
  vertical-align: -10%;
  font-size: 1.3333333333333333em; }

/* makes sure icons active on rollover in links */
a [class^="icon-"], a [class*=" icon-"], a [class^="icon-"]:before, a [class*=" icon-"]:before {
  display: inline; }

/* increased font size for icon-large */
[class^="icon-"].icon-fixed-width, [class*=" icon-"].icon-fixed-width {
  display: inline-block;
  width: 1.2857142857142858em;
  text-align: center; }

[class^="icon-"].icon-fixed-width.icon-large, [class*=" icon-"].icon-fixed-width.icon-large {
  width: 1.5714285714285714em; }

ul.icons-ul {
  list-style-type: none;
  text-indent: -0.71429em;
  margin-left: 2.142857142857143em; }
  ul.icons-ul > li .icon-li {
    width: 0.7142857142857143em;
    display: inline-block;
    text-align: center; }

[class^="icon-"].hide, [class*=" icon-"].hide {
  display: none; }

.icon-muted {
  color: #eeeeee; }

.icon-light {
  color: #ffffff; }

.icon-dark {
  color: #333333; }

.icon-border {
  border: solid 1px #eeeeee;
  padding: .2em .25em .15em;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px; }

.icon-2x {
  font-size: 2em; }
  .icon-2x.icon-border {
    border-width: 2px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px; }

.icon-3x {
  font-size: 3em; }
  .icon-3x.icon-border {
    border-width: 3px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px; }

.icon-4x {
  font-size: 4em; }
  .icon-4x.icon-border {
    border-width: 4px;
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    border-radius: 6px; }

.icon-5x {
  font-size: 5em; }
  .icon-5x.icon-border {
    border-width: 5px;
    -webkit-border-radius: 7px;
    -moz-border-radius: 7px;
    border-radius: 7px; }

.pull-right {
  float: right; }

.pull-left {
  float: left; }

[class^="icon-"].pull-left, [class*=" icon-"].pull-left {
  margin-right: .3em; }

[class^="icon-"].pull-right, [class*=" icon-"].pull-right {
  margin-left: .3em; }

/* BOOTSTRAP SPECIFIC CLASSES
 * -------------------------- */
/* Bootstrap 2.0 sprites.less reset */
[class^="icon-"], [class*=" icon-"] {
  display: inline;
  width: auto;
  height: auto;
  line-height: normal;
  vertical-align: baseline;
  /* background-image: none; */
  background-position: 0% 0%;
  background-repeat: repeat;
  margin-top: 0; }

/* more sprites.less reset */
.icon-white {
  /* background-image: none; */ }

.nav-pills > .active > a > [class^="icon-"], .nav-pills > .active > a > [class*=" icon-"] {
  /* background-image: none; */ }

.nav-list > .active > a > [class^="icon-"], .nav-list > .active > a > [class*=" icon-"] {
  /* background-image: none; */ }

.navbar-inverse .nav > .active > a > [class^="icon-"], .navbar-inverse .nav > .active > a > [class*=" icon-"] {
  /* background-image: none; */ }

.dropdown-menu > li > a:hover > [class^="icon-"], .dropdown-menu > li > a:hover > [class*=" icon-"] {
  /* background-image: none; */ }
.dropdown-menu > .active > a > [class^="icon-"], .dropdown-menu > .active > a > [class*=" icon-"] {
  /* background-image: none; */ }

.dropdown-submenu:hover > a > [class^="icon-"], .dropdown-submenu:hover > a > [class*=" icon-"] {
  /* background-image: none; */ }

/* keeps Bootstrap styles with and without icons the same */
.btn [class^="icon-"].icon-large, .nav [class^="icon-"].icon-large, .btn [class*=" icon-"].icon-large, .nav [class*=" icon-"].icon-large {
  line-height: .9em; }

.btn [class^="icon-"].icon-spin, .nav [class^="icon-"].icon-spin, .btn [class*=" icon-"].icon-spin, .nav [class*=" icon-"].icon-spin {
  display: inline-block; }

.nav-tabs [class^="icon-"], .nav-pills [class^="icon-"], .nav-tabs [class*=" icon-"], .nav-pills [class*=" icon-"], .nav-tabs [class^="icon-"].icon-large, .nav-pills [class^="icon-"].icon-large, .nav-tabs [class*=" icon-"].icon-large, .nav-pills [class*=" icon-"].icon-large {
  line-height: .9em; }

.btn [class^="icon-"].pull-left.icon-2x, .btn [class*=" icon-"].pull-left.icon-2x, .btn [class^="icon-"].pull-right.icon-2x, .btn [class*=" icon-"].pull-right.icon-2x {
  margin-top: .18em; }
.btn [class^="icon-"].icon-spin.icon-large, .btn [class*=" icon-"].icon-spin.icon-large {
  line-height: .8em; }
.btn.btn-small [class^="icon-"].pull-left.icon-2x, .btn.btn-small [class*=" icon-"].pull-left.icon-2x, .btn.btn-small [class^="icon-"].pull-right.icon-2x, .btn.btn-small [class*=" icon-"].pull-right.icon-2x {
  margin-top: .25em; }
.btn.btn-large [class^="icon-"], .btn.btn-large [class*=" icon-"] {
  margin-top: 0; }
.btn.btn-large [class^="icon-"].pull-left.icon-2x, .btn.btn-large [class*=" icon-"].pull-left.icon-2x, .btn.btn-large [class^="icon-"].pull-right.icon-2x, .btn.btn-large [class*=" icon-"].pull-right.icon-2x {
  margin-top: .05em; }
.btn.btn-large [class^="icon-"].pull-left.icon-2x, .btn.btn-large [class*=" icon-"].pull-left.icon-2x {
  margin-right: .2em; }
.btn.btn-large [class^="icon-"].pull-right.icon-2x, .btn.btn-large [class*=" icon-"].pull-right.icon-2x {
  margin-left: .2em; }

/* EXTRAS
 * -------------------------- */
/* Stacked and layered icon */
.icon-stack {
  position: relative;
  display: inline-block;
  width: 2em;
  height: 2em;
  line-height: 2em;
  vertical-align: -35%; }
  .icon-stack [class^="icon-"], .icon-stack [class*=" icon-"] {
    display: block;
    text-align: center;
    position: absolute;
    width: 100%;
    height: 100%;
    font-size: 1em;
    line-height: inherit;
    *line-height: 2em; }
  .icon-stack .icon-stack-base {
    font-size: 2em;
    *line-height: 1em; }

/* Animated rotating icon */
.icon-spin {
  display: inline-block;
  -moz-animation: spin 2s infinite linear;
  -o-animation: spin 2s infinite linear;
  -webkit-animation: spin 2s infinite linear;
  animation: spin 2s infinite linear; }

@-moz-keyframes spin {
  0% {
    -moz-transform: rotate(0deg); }

  100% {
    -moz-transform: rotate(359deg); } }

@-webkit-keyframes spin {
  0% {
    -webkit-transform: rotate(0deg); }

  100% {
    -webkit-transform: rotate(359deg); } }

@-o-keyframes spin {
  0% {
    -o-transform: rotate(0deg); }

  100% {
    -o-transform: rotate(359deg); } }

@-ms-keyframes spin {
  0% {
    -ms-transform: rotate(0deg); }

  100% {
    -ms-transform: rotate(359deg); } }

@keyframes spin {
  0% {
    transform: rotate(0deg); }

  100% {
    transform: rotate(359deg); } }

/* Icon rotations and mirroring */
.icon-rotate-90:before {
  -webkit-transform: rotate(90deg);
  -moz-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  -o-transform: rotate(90deg);
  transform: rotate(90deg);
  filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=1); }

.icon-rotate-180:before {
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -o-transform: rotate(180deg);
  transform: rotate(180deg);
  filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=2); }

.icon-rotate-270:before {
  -webkit-transform: rotate(270deg);
  -moz-transform: rotate(270deg);
  -ms-transform: rotate(270deg);
  -o-transform: rotate(270deg);
  transform: rotate(270deg);
  filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=3); }

.icon-flip-horizontal:before {
  -webkit-transform: scale(-1, 1);
  -moz-transform: scale(-1, 1);
  -ms-transform: scale(-1, 1);
  -o-transform: scale(-1, 1);
  transform: scale(-1, 1); }

.icon-flip-vertical:before {
  -webkit-transform: scale(1, -1);
  -moz-transform: scale(1, -1);
  -ms-transform: scale(1, -1);
  -o-transform: scale(1, -1);
  transform: scale(1, -1); }

/* Font Awesome uses the Unicode Private Use Area (PUA) to ensure screen
   readers do not read off random characters that represent icons */
.icon-glass:before {
  content: "\f000"; }

.icon-music:before {
  content: "\f001"; }

.icon-search:before {
  content: "\f002"; }

.icon-envelope:before {
  content: "\f003"; }

.icon-heart:before {
  content: "\f004"; }

.icon-star:before {
  content: "\f005"; }

.icon-star-empty:before {
  content: "\f006"; }

.icon-user:before {
  content: "\f007"; }

.icon-film:before {
  content: "\f008"; }

.icon-th-large:before {
  content: "\f009"; }

.icon-th:before {
  content: "\f00a"; }

.icon-th-list:before {
  content: "\f00b"; }

.icon-ok:before {
  content: "\f00c"; }

.icon-remove:before {
  content: "\f00d"; }

.icon-zoom-in:before {
  content: "\f00e"; }

.icon-zoom-out:before {
  content: "\f010"; }

.icon-off:before {
  content: "\f011"; }

.icon-signal:before {
  content: "\f012"; }

.icon-cog:before {
  content: "\f013"; }

.icon-trash:before {
  content: "\f014"; }

.icon-home:before {
  content: "\f015"; }

.icon-file:before {
  content: "\f016"; }

.icon-time:before {
  content: "\f017"; }

.icon-road:before {
  content: "\f018"; }

.icon-download-alt:before {
  content: "\f019"; }

.icon-download:before {
  content: "\f01a"; }

.icon-upload:before {
  content: "\f01b"; }

.icon-inbox:before {
  content: "\f01c"; }

.icon-play-circle:before {
  content: "\f01d"; }

.icon-repeat:before, .icon-rotate-right:before {
  content: "\f01e"; }

/* F020 doesn't work in Safari. all shifted one down */
.icon-refresh:before {
  content: "\f021"; }

.icon-list-alt:before {
  content: "\f022"; }

.icon-lock:before {
  content: "\f023"; }

.icon-flag:before {
  content: "\f024"; }

.icon-headphones:before {
  content: "\f025"; }

.icon-volume-off:before {
  content: "\f026"; }

.icon-volume-down:before {
  content: "\f027"; }

.icon-volume-up:before {
  content: "\f028"; }

.icon-qrcode:before {
  content: "\f029"; }

.icon-barcode:before {
  content: "\f02a"; }

.icon-tag:before {
  content: "\f02b"; }

.icon-tags:before {
  content: "\f02c"; }

.icon-book:before {
  content: "\f02d"; }

.icon-bookmark:before {
  content: "\f02e"; }

.icon-print:before {
  content: "\f02f"; }

.icon-camera:before {
  content: "\f030"; }

.icon-font:before {
  content: "\f031"; }

.icon-bold:before {
  content: "\f032"; }

.icon-italic:before {
  content: "\f033"; }

.icon-text-height:before {
  content: "\f034"; }

.icon-text-width:before {
  content: "\f035"; }

.icon-align-left:before {
  content: "\f036"; }

.icon-align-center:before {
  content: "\f037"; }

.icon-align-right:before {
  content: "\f038"; }

.icon-align-justify:before {
  content: "\f039"; }

.icon-list:before {
  content: "\f03a"; }

.icon-indent-left:before {
  content: "\f03b"; }

.icon-indent-right:before {
  content: "\f03c"; }

.icon-facetime-video:before {
  content: "\f03d"; }

.icon-picture:before {
  content: "\f03e"; }

.icon-pencil:before {
  content: "\f040"; }

.icon-map-marker:before {
  content: "\f041"; }

.icon-adjust:before {
  content: "\f042"; }

.icon-tint:before {
  content: "\f043"; }

.icon-edit:before {
  content: "\f044"; }

.icon-share:before {
  content: "\f045"; }

.icon-check:before {
  content: "\f046"; }

.icon-move:before {
  content: "\f047"; }

.icon-step-backward:before {
  content: "\f048"; }

.icon-fast-backward:before {
  content: "\f049"; }

.icon-backward:before {
  content: "\f04a"; }

.icon-play:before {
  content: "\f04b"; }

.icon-pause:before {
  content: "\f04c"; }

.icon-stop:before {
  content: "\f04d"; }

.icon-forward:before {
  content: "\f04e"; }

.icon-fast-forward:before {
  content: "\f050"; }

.icon-step-forward:before {
  content: "\f051"; }

.icon-eject:before {
  content: "\f052"; }

.icon-chevron-left:before {
  content: "\f053"; }

.icon-chevron-right:before {
  content: "\f054"; }

.icon-plus-sign:before {
  content: "\f055"; }

.icon-minus-sign:before {
  content: "\f056"; }

.icon-remove-sign:before {
  content: "\f057"; }

.icon-ok-sign:before {
  content: "\f058"; }

.icon-question-sign:before {
  content: "\f059"; }

.icon-info-sign:before {
  content: "\f05a"; }

.icon-screenshot:before {
  content: "\f05b"; }

.icon-remove-circle:before {
  content: "\f05c"; }

.icon-ok-circle:before {
  content: "\f05d"; }

.icon-ban-circle:before {
  content: "\f05e"; }

.icon-arrow-left:before {
  content: "\f060"; }

.icon-arrow-right:before {
  content: "\f061"; }

.icon-arrow-up:before {
  content: "\f062"; }

.icon-arrow-down:before {
  content: "\f063"; }

.icon-share-alt:before, .icon-mail-forward:before {
  content: "\f064"; }

.icon-resize-full:before {
  content: "\f065"; }

.icon-resize-small:before {
  content: "\f066"; }

.icon-plus:before {
  content: "\f067"; }

.icon-minus:before {
  content: "\f068"; }

.icon-asterisk:before {
  content: "\f069"; }

.icon-exclamation-sign:before {
  content: "\f06a"; }

.icon-gift:before {
  content: "\f06b"; }

.icon-leaf:before {
  content: "\f06c"; }

.icon-fire:before {
  content: "\f06d"; }

.icon-eye-open:before {
  content: "\f06e"; }

.icon-eye-close:before {
  content: "\f070"; }

.icon-warning-sign:before {
  content: "\f071"; }

.icon-plane:before {
  content: "\f072"; }

.icon-calendar:before {
  content: "\f073"; }

.icon-random:before {
  content: "\f074"; }

.icon-comment:before {
  content: "\f075"; }

.icon-magnet:before {
  content: "\f076"; }

.icon-chevron-up:before {
  content: "\f077"; }

.icon-chevron-down:before {
  content: "\f078"; }

.icon-retweet:before {
  content: "\f079"; }

.icon-shopping-cart:before {
  content: "\f07a"; }

.icon-folder-close:before {
  content: "\f07b"; }

.icon-folder-open:before {
  content: "\f07c"; }

.icon-resize-vertical:before {
  content: "\f07d"; }

.icon-resize-horizontal:before {
  content: "\f07e"; }

.icon-bar-chart:before {
  content: "\f080"; }

.icon-twitter-sign:before {
  content: "\f081"; }

.icon-facebook-sign:before {
  content: "\f082"; }

.icon-camera-retro:before {
  content: "\f083"; }

.icon-key:before {
  content: "\f084"; }

.icon-cogs:before {
  content: "\f085"; }

.icon-comments:before {
  content: "\f086"; }

.icon-thumbs-up:before {
  content: "\f087"; }

.icon-thumbs-down:before {
  content: "\f088"; }

.icon-star-half:before {
  content: "\f089"; }

.icon-heart-empty:before {
  content: "\f08a"; }

.icon-signout:before {
  content: "\f08b"; }

.icon-linkedin-sign:before {
  content: "\f08c"; }

.icon-pushpin:before {
  content: "\f08d"; }

.icon-external-link:before {
  content: "\f08e"; }

.icon-signin:before {
  content: "\f090"; }

.icon-trophy:before {
  content: "\f091"; }

.icon-github-sign:before {
  content: "\f092"; }

.icon-upload-alt:before {
  content: "\f093"; }

.icon-lemon:before {
  content: "\f094"; }

.icon-phone:before {
  content: "\f095"; }

.icon-check-empty:before {
  content: "\f096"; }

.icon-bookmark-empty:before {
  content: "\f097"; }

.icon-phone-sign:before {
  content: "\f098"; }

.icon-twitter:before {
  content: "\f099"; }

.icon-facebook:before {
  content: "\f09a"; }

.icon-github:before {
  content: "\f09b"; }

.icon-unlock:before {
  content: "\f09c"; }

.icon-credit-card:before {
  content: "\f09d"; }

.icon-rss:before {
  content: "\f09e"; }

.icon-hdd:before {
  content: "\f0a0"; }

.icon-bullhorn:before {
  content: "\f0a1"; }

.icon-bell:before {
  content: "\f0a2"; }

.icon-certificate:before {
  content: "\f0a3"; }

.icon-hand-right:before {
  content: "\f0a4"; }

.icon-hand-left:before {
  content: "\f0a5"; }

.icon-hand-up:before {
  content: "\f0a6"; }

.icon-hand-down:before {
  content: "\f0a7"; }

.icon-circle-arrow-left:before {
  content: "\f0a8"; }

.icon-circle-arrow-right:before {
  content: "\f0a9"; }

.icon-circle-arrow-up:before {
  content: "\f0aa"; }

.icon-circle-arrow-down:before {
  content: "\f0ab"; }

.icon-globe:before {
  content: "\f0ac"; }

.icon-wrench:before {
  content: "\f0ad"; }

.icon-tasks:before {
  content: "\f0ae"; }

.icon-filter:before {
  content: "\f0b0"; }

.icon-briefcase:before {
  content: "\f0b1"; }

.icon-fullscreen:before {
  content: "\f0b2"; }

.icon-group:before {
  content: "\f0c0"; }

.icon-link:before {
  content: "\f0c1"; }

.icon-cloud:before {
  content: "\f0c2"; }

.icon-beaker:before {
  content: "\f0c3"; }

.icon-cut:before {
  content: "\f0c4"; }

.icon-copy:before {
  content: "\f0c5"; }

.icon-paper-clip:before {
  content: "\f0c6"; }

.icon-save:before {
  content: "\f0c7"; }

.icon-sign-blank:before {
  content: "\f0c8"; }

.icon-reorder:before {
  content: "\f0c9"; }

.icon-list-ul:before {
  content: "\f0ca"; }

.icon-list-ol:before {
  content: "\f0cb"; }

.icon-strikethrough:before {
  content: "\f0cc"; }

.icon-underline:before {
  content: "\f0cd"; }

.icon-table:before {
  content: "\f0ce"; }

.icon-magic:before {
  content: "\f0d0"; }

.icon-truck:before {
  content: "\f0d1"; }

.icon-pinterest:before {
  content: "\f0d2"; }

.icon-pinterest-sign:before {
  content: "\f0d3"; }

.icon-google-plus-sign:before {
  content: "\f0d4"; }

.icon-google-plus:before {
  content: "\f0d5"; }

.icon-money:before {
  content: "\f0d6"; }

.icon-caret-down:before {
  content: "\f0d7"; }

.icon-caret-up:before {
  content: "\f0d8"; }

.icon-caret-left:before {
  content: "\f0d9"; }

.icon-caret-right:before {
  content: "\f0da"; }

.icon-columns:before {
  content: "\f0db"; }

.icon-sort:before {
  content: "\f0dc"; }

.icon-sort-down:before {
  content: "\f0dd"; }

.icon-sort-up:before {
  content: "\f0de"; }

.icon-envelope-alt:before {
  content: "\f0e0"; }

.icon-linkedin:before {
  content: "\f0e1"; }

.icon-undo:before, .icon-rotate-left:before {
  content: "\f0e2"; }

.icon-legal:before {
  content: "\f0e3"; }

.icon-dashboard:before {
  content: "\f0e4"; }

.icon-comment-alt:before {
  content: "\f0e5"; }

.icon-comments-alt:before {
  content: "\f0e6"; }

.icon-bolt:before {
  content: "\f0e7"; }

.icon-sitemap:before {
  content: "\f0e8"; }

.icon-umbrella:before {
  content: "\f0e9"; }

.icon-paste:before {
  content: "\f0ea"; }

.icon-lightbulb:before {
  content: "\f0eb"; }

.icon-exchange:before {
  content: "\f0ec"; }

.icon-cloud-download:before {
  content: "\f0ed"; }

.icon-cloud-upload:before {
  content: "\f0ee"; }

.icon-user-md:before {
  content: "\f0f0"; }

.icon-stethoscope:before {
  content: "\f0f1"; }

.icon-suitcase:before {
  content: "\f0f2"; }

.icon-bell-alt:before {
  content: "\f0f3"; }

.icon-coffee:before {
  content: "\f0f4"; }

.icon-food:before {
  content: "\f0f5"; }

.icon-file-alt:before {
  content: "\f0f6"; }

.icon-building:before {
  content: "\f0f7"; }

.icon-hospital:before {
  content: "\f0f8"; }

.icon-ambulance:before {
  content: "\f0f9"; }

.icon-medkit:before {
  content: "\f0fa"; }

.icon-fighter-jet:before {
  content: "\f0fb"; }

.icon-beer:before {
  content: "\f0fc"; }

.icon-h-sign:before {
  content: "\f0fd"; }

.icon-plus-sign-alt:before {
  content: "\f0fe"; }

.icon-double-angle-left:before {
  content: "\f100"; }

.icon-double-angle-right:before {
  content: "\f101"; }

.icon-double-angle-up:before {
  content: "\f102"; }

.icon-double-angle-down:before {
  content: "\f103"; }

.icon-angle-left:before {
  content: "\f104"; }

.icon-angle-right:before {
  content: "\f105"; }

.icon-angle-up:before {
  content: "\f106"; }

.icon-angle-down:before {
  content: "\f107"; }

.icon-desktop:before {
  content: "\f108"; }

.icon-laptop:before {
  content: "\f109"; }

.icon-tablet:before {
  content: "\f10a"; }

.icon-mobile-phone:before {
  content: "\f10b"; }

.icon-circle-blank:before {
  content: "\f10c"; }

.icon-quote-left:before {
  content: "\f10d"; }

.icon-quote-right:before {
  content: "\f10e"; }

.icon-spinner:before {
  content: "\f110"; }

.icon-circle:before {
  content: "\f111"; }

.icon-reply:before, .icon-mail-reply:before {
  content: "\f112"; }

.icon-folder-close-alt:before {
  content: "\f114"; }

.icon-folder-open-alt:before {
  content: "\f115"; }

.icon-expand-alt:before {
  content: "\f116"; }

.icon-collapse-alt:before {
  content: "\f117"; }

.icon-smile:before {
  content: "\f118"; }

.icon-frown:before {
  content: "\f119"; }

.icon-meh:before {
  content: "\f11a"; }

.icon-gamepad:before {
  content: "\f11b"; }

.icon-keyboard:before {
  content: "\f11c"; }

.icon-flag-alt:before {
  content: "\f11d"; }

.icon-flag-checkered:before {
  content: "\f11e"; }

.icon-terminal:before {
  content: "\f120"; }

.icon-code:before {
  content: "\f121"; }

.icon-reply-all:before, .icon-mail-reply-all:before {
  content: "\f122"; }

.icon-star-half-full:before, .icon-star-half-empty:before {
  content: "\f123"; }

.icon-location-arrow:before {
  content: "\f124"; }

.icon-crop:before {
  content: "\f125"; }

.icon-code-fork:before {
  content: "\f126"; }

.icon-unlink:before {
  content: "\f127"; }

.icon-question:before {
  content: "\f128"; }

.icon-info:before {
  content: "\f129"; }

.icon-exclamation:before {
  content: "\f12a"; }

.icon-superscript:before {
  content: "\f12b"; }

.icon-subscript:before {
  content: "\f12c"; }

.icon-eraser:before {
  content: "\f12d"; }

.icon-puzzle-piece:before {
  content: "\f12e"; }

.icon-microphone:before {
  content: "\f130"; }

.icon-microphone-off:before {
  content: "\f131"; }

.icon-shield:before {
  content: "\f132"; }

.icon-calendar-empty:before {
  content: "\f133"; }

.icon-fire-extinguisher:before {
  content: "\f134"; }

.icon-rocket:before {
  content: "\f135"; }

.icon-maxcdn:before {
  content: "\f136"; }

.icon-chevron-sign-left:before {
  content: "\f137"; }

.icon-chevron-sign-right:before {
  content: "\f138"; }

.icon-chevron-sign-up:before {
  content: "\f139"; }

.icon-chevron-sign-down:before {
  content: "\f13a"; }

.icon-html5:before {
  content: "\f13b"; }

.icon-css3:before {
  content: "\f13c"; }

.icon-anchor:before {
  content: "\f13d"; }

.icon-unlock-alt:before {
  content: "\f13e"; }

.icon-bullseye:before {
  content: "\f140"; }

.icon-ellipsis-horizontal:before {
  content: "\f141"; }

.icon-ellipsis-vertical:before {
  content: "\f142"; }

.icon-rss-sign:before {
  content: "\f143"; }

.icon-play-sign:before {
  content: "\f144"; }

.icon-ticket:before {
  content: "\f145"; }

.icon-minus-sign-alt:before {
  content: "\f146"; }

.icon-check-minus:before {
  content: "\f147"; }

.icon-level-up:before {
  content: "\f148"; }

.icon-level-down:before {
  content: "\f149"; }

.icon-check-sign:before {
  content: "\f14a"; }

.icon-edit-sign:before {
  content: "\f14b"; }

.icon-external-link-sign:before {
  content: "\f14c"; }

.icon-share-sign:before {
  content: "\f14d"; }

/* #Links
================================================== */
a {
  color: red;
  text-decoration: underline;
  outline: 0; }
  a:visited {
    color: blue;
    text-decoration: underline;
    outline: 0; }
  a:hover, a:focus {
    color: black; }

p a {
  line-height: inherit; }
  p a:visited {
    line-height: inherit; }

/* #Lists
================================================== */
ul, ol {
  margin: 0;
  padding: 0;
  margin-bottom: 1.25em; }

ul {
  list-style: none outside; }

ol {
  list-style: decimal;
  margin-left: 1.875em; }

ul.square, ul.circle, ul.disc {
  margin-left: 1.875em; }
ul.square {
  list-style: square outside; }
ul.circle {
  list-style: circle outside; }
ul.disc {
  list-style: disc outside; }
ul ul, ul ol {
  margin: .25em 0 .3125em 1.875em;
  font-size: 90%; }

ol ol, ol ul {
  margin: .25em 0 .3125em 1.875em;
  font-size: 90%; }

ul ul li, ul ol li {
  margin-bottom: .375em; }

ol ol li, ol ul li {
  margin-bottom: .375em; }

li {
  line-height: 1.125em;
  margin-bottom: .75em; }

ul.large li, li p {
  line-height: 1.3125em; }

/* #Images
================================================== */
img {
  max-width: 100%;
  border-width: 0;
  vertical-align: middle;
  -ms-interpolation-mode: bicubic; }

svg:not(:root) {
  overflow: hidden; }

/* #Figures
================================================== */
figure {
  margin-bottom: 1.5em; }
  figure img {
    margin-bottom: 0.375em; }
  figure figcaption {
    display: block;
    font-weight: normal;
    font-size: 0.875em;
    color: #808080; }

.list-bordered {
  list-style-type: none;
  margin: 0 0 1.5em 0;
  padding: 0; }
  .list-bordered li {
    margin-bottom: 0.375em;
    padding-bottom: 0.375em;
    border-bottom: 1px dashed #c7ced6; }
    .list-bordered li:last-child {
      margin-bottom: 0;
      padding-bottom: 0;
      border-bottom-width: 0; }

/* #Slideshow
================================================== */
/* Modified from https://responsiveslides.com v1.32 by @viljamis */
.rslides {
  position: relative;
  list-style: none;
  overflow: hidden;
  width: 100%;
  padding: 0;
  margin: 0; }
  .rslides li {
    position: absolute;
    display: none;
    width: 100%;
    margin: 0;
    left: 0;
    top: 0; }
    .rslides li:first-child {
      position: relative;
      display: block;
      float: left; }
  .rslides img {
    display: block;
    height: auto;
    float: left;
    width: 100%;
    border: 0; }

.rslides_container {
  margin-bottom: 1.125em;
  position: relative;
  float: middle;
  margin-left:12%;
  width: 75%; }
  .rslides_container .slides {
    margin: 0; }

.centered-btns_nav {
  position: absolute;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  top: 50%;
  left: 0;
  opacity: 0.7;
  text-indent: -9999px;
  overflow: hidden;
  text-decoration: none;
  height: 3.8125em;
  width: 2.375em;
  background: transparent url("../img/themes.gif") no-repeat left top;
  margin-top: -3.4em; }
  .centered-btns_nav:active {
    opacity: 1.0; }
  .centered-btns_nav.next {
    left: auto;
    background-position: right top;
    right: 0; }

.transparent-btns_nav {
  position: absolute;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  top: 0;
  left: 0;
  display: block;
  background: #fff;
  /* Fix for IE6-9 */
  opacity: 0;
  filter: alpha(opacity=1);
  width: 48%;
  text-indent: -9999px;
  overflow: hidden;
  height: 91%; }
  .transparent-btns_nav.next {
    left: auto;
    right: 0; }

.large-btns_nav {
  position: absolute;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  opacity: 0.6;
  text-indent: -9999px;
  overflow: hidden;
  top: 0;
  bottom: 0;
  left: 0;
  background: black url("../img/themes.gif") no-repeat left 50%;
  width: 2.375em; }
  .large-btns_nav:active {
    opacity: 1.0; }
  .large-btns_nav.next {
    left: auto;
    background-position: right 50%;
    right: 0; }

.centered-btns_nav:focus, .transparent-btns_nav:focus, .large-btns_nav:focus {
  outline: none; }

.centered-btns_tabs, .transparent-btns_tabs, .large-btns_tabs {
  margin-top: .625em;
  padding: 0;
  text-align: center; }

.centered-btns_tabs li, .transparent-btns_tabs li, .large-btns_tabs li {
  display: inline;
  float: none;
  _float: left;
  *float: left;
  margin-right: .3125em; }

.centered-btns_tabs a, .transparent-btns_tabs a, .large-btns_tabs a {
  text-indent: -9999px;
  overflow: hidden;
  -webkit-border-radius: .9375em;
  -moz-border-radius: .9375em;
  border-radius: .9375em;
  background: #ccc;
  background: rgba(0, 0, 0, 0.2);
  display: inline-block;
  _display: block;
  *display: block;
  -webkit-box-shadow: inset 0 0 2px 0 rgba(0, 0, 0, 0.3);
  -moz-box-shadow: inset 0 0 2px 0 rgba(0, 0, 0, 0.3);
  box-shadow: inset 0 0 2px 0 rgba(0, 0, 0, 0.3);
  width: .5625em;
  height: .5625em; }

.centered-btns_here a, .transparent-btns_here a, .large-btns_here a {
  background: #222;
  background: rgba(0, 0, 0, 0.8); }

.large-btns3_on {
  margin-bottom: 0; }

/* #Videos and Other Media
================================================== */
video {
  width: 100%; }

.vendor {
  padding: 2%;
  background: #d1eed1;
  margin-bottom: 2em; }

.unsupported {
  background: #fddfde; }

/* #Menus
================================================== */
.collapse {
  float: left;
  width: 100%; }
  .collapse ul {
    width: 100%; }
  .collapse li {
    float: left;
    margin: 2.5%; }
    .collapse li:first-of-type > li + li {
      margin-left: 0; }
    .collapse li:hover > a {
      color: #ccc; }

.stacked {
  width: 100%;
  float: left;
  margin-bottom: 1em; }
  .stacked ul {
    clear: left;
    display: block;
    margin: 0;
    border: 1px solid #e6e6e6; }
  .stacked li {
    border-bottom: 1px solid #eee;
    margin: 0;
    padding: .8em 1em; }
    .stacked li:last-of-type {
      border-bottom: 0; }
    .stacked li a {
      display: block;
      text-decoration: none;
      color: #333; }
    .stacked li:hover {
      background-color: #f8f8f8; }
      .stacked li:hover > a {
        color: #ccc; }
  .stacked .nav-current {
    font-weight: bold; }

a.skip {
  position: absolute;
  left: -999em; }

.toggle {
  margin: 0 auto;
  width: 100%;
  background-color: #333; }

.flexNav-touch .toggle, .flexNav-no-touch .toggle {
  display: none; }

.menu-button {
  display: block;
  padding: 1em;
  background: #fff;
  color: #222;
  background-image: url("../img/menu/nav-icon.png");
  background-repeat: no-repeat;
  background-position: 93% 10px;
  cursor: pointer; }

.toggle:after {
  /* clearfix */
  visibility: hidden;
  display: block;
  font-size: 0;
  content: " ";
  clear: both;
  height: 0; }
.toggle li {
  position: relative;
  list-style: none;
  display: block;
  background-color: #333;
  width: 100%; }
  .toggle li.item-with-ul {
    background-color: #222; }
  .toggle li a {
    margin-right: 20%;
    display: block;
    color: #ddd;
    border-bottom: 1px solid #111; }
    .toggle li a.link-with-ul {
      border-right: 1px solid #222; }
.toggle .top-level a {
  position: relative;
  display: block;
  background-color: #333;
  padding: 1em;
  z-index: 2; }
.toggle li ul {
  width: 100%;
  position: relative;
  border-top: 1px solid #333;
  border-bottom: 1px solid #333;
  margin: 0 0 .3125em 1.1875em; }
  .toggle li ul li {
    float: none;
    width: 100%;
    margin: 0; }
    .toggle li ul li a {
      display: block;
      background-color: #333; }
.toggle .item-with-ul {
  background-image: url("../img/menu/arrow-down.png");
  background-repeat: no-repeat;
  background-position: 93% 18px; }

.sub-menu {
  display: none; }
  .sub-menu.open {
    display: block; }

/* #Breadcrumb
================================================== */
.breadcrumb {
  padding: .4375em .875em;
  margin: 0 0 1.125em;
  list-style: none; }
  .breadcrumb li {
    display: inline-block; }
  .breadcrumb .divider {
    padding: 0 5px;
    color: #999; }

/* #Pagination
================================================== */
.pagination {
  height: 2.25em;
  margin: 1.125em 0; }
  .pagination ul {
    display: inline-block;
    padding: 0;
    margin-bottom: 0;
    margin-left: 0;
    -webkit-border-radius: .1875em;
    -moz-border-radius: .1875em;
    border-radius: .1875em;
    -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
    -moz-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05); }
  .pagination li {
    display: inline; }
  .pagination a {
    float: left;
    padding: 0 .625em;
    line-height: 1.75em;
    text-decoration: none;
    border: 1px solid #DDD;
    border-left-width: 0; }
    .pagination a:hover {
      background-color: #f5f5f5; }
  .pagination .active a {
    background-color: #f5f5f5;
    color: #999999;
    cursor: default; }
  .pagination .disabled span {
    color: #999999;
    cursor: default;
    background-color: transparent; }
  .pagination .disabled a {
    color: #999999;
    cursor: default;
    background-color: transparent; }
    .pagination .disabled a:hover {
      color: #999999;
      cursor: default;
      background-color: transparent; }
  .pagination li:first-child a {
    border-left-width: 1px;
    -webkit-border-radius: .1875em 0 0 .1875em;
    -moz-border-radius: .1875em 0 0 .1875em;
    border-radius: .1875em 0 0 .1875em; }
  .pagination li:last-child a {
    -webkit-border-radius: 0 .1875em .1875em 0;
    -moz-border-radius: 0 .1875em .1875em 0;
    border-radius: 0 .1875em .1875em 0; }

.pagination-centered {
  text-align: center; }

.pagination-right {
  text-align: right; }

/* #Pager
================================================== */
.pager {
  padding: 0;
  margin-bottom: 1.125em;
  margin-left: 0;
  text-align: center;
  list-style: none;
  *zoom: 1; }
  .pager:before {
    display: table;
    content: ""; }
  .pager:after {
    display: table;
    content: "";
    clear: both; }
  .pager li {
    display: inline; }
  .pager a {
    display: inline-block;
    padding: 5px 14px;
    background-color: #fff;
    border: 1px solid #ddd;
    -webkit-border-radius: .9375em;
    -moz-border-radius: .9375em;
    border-radius: .9375em; }
    .pager a:hover {
      text-decoration: none;
      background-color: #f5f5f5; }
  .pager .next a {
    float: right; }
  .pager .previous a {
    float: left; }
  .pager .disabled a {
    color: #999999;
    cursor: default;
    background-color: #fff; }
    .pager .disabled a:hover {
      color: #999999;
      cursor: default;
      background-color: #fff; }

/* #Buttons
================================================== */
input, select, button {
  cursor: pointer; }

.button {
  background: #eee;
  /* Old browsers */
  background: #eeeeee -moz-linear-gradient(top, rgba(255, 255, 255, 0.2) 0%, rgba(0, 0, 0, 0.2) 100%);
  /* FF3.6+ */
  background: #eeeeee -webkit-gradient(linear, left top, left bottom, color-stop(0%, rgba(255, 255, 255, 0.2)), color-stop(100%, rgba(0, 0, 0, 0.2)));
  /* Chrome,Safari4+ */
  background: #eeeeee -webkit-linear-gradient(top, rgba(255, 255, 255, 0.2) 0%, rgba(0, 0, 0, 0.2) 100%);
  /* Chrome10+,Safari5.1+ */
  background: #eeeeee -o-linear-gradient(top, rgba(255, 255, 255, 0.2) 0%, rgba(0, 0, 0, 0.2) 100%);
  /* Opera11.10+ */
  background: #eeeeee -ms-linear-gradient(top, rgba(255, 255, 255, 0.2) 0%, rgba(0, 0, 0, 0.2) 100%);
  /* IE10+ */
  background: #eeeeee linear-gradient(top, rgba(255, 255, 255, 0.2) 0%, rgba(0, 0, 0, 0.2) 100%);
  /* W3C */
  border: 1px solid #aaa;
  border-top: 1px solid #ccc;
  border-left: 1px solid #ccc;
  -moz-border-radius: .1875em;
  -webkit-border-radius: .1875em;
  border-radius: .1875em;
  color: #444;
  display: inline-block;
  font-size: 0.75em;
  font-weight: bold;
  text-decoration: none;
  text-shadow: 0 1px rgba(255, 255, 255, 0.75);
  cursor: pointer;
  margin-bottom: 1.25em;
  line-height: normal;
  padding: .5em .625em;
  font-family: "HelveticaNeue","Helvetica Neue",Helvetica,Arial,sans-serif; }

button {
  background: #fff4f1;
  /* Old browsers */
  background: #fff4f1 -moz-linear-gradient(top, rgba(255, 255, 255, 0.2) 0%, rgba(255, 200, 255, 0.2) 100%);
  /* FF3.6+ */
  background: #fff4f1 -webkit-gradient(linear, left top, left bottom, color-stop(0%, rgba(255, 200, 255, 0.2)), color-stop(100%, rgba(0, 0, 0, 0.2)));
  /* Chrome,Safari4+ */
  background: #fff4f1 -webkit-linear-gradient(top, rgba(255, 255, 255, 0.2) 0%, rgba(255, 200, 255, 0.2) 100%);
  /* Chrome10+,Safari5.1+ */
  background: #fff4f1 -o-linear-gradient(top, rgba(255, 255, 255, 0.2) 0%, rgba(255, 200, 255, 0.2) 100%);
  /* Opera11.10+ */
  background: #fff4f1 -ms-linear-gradient(top, rgba(255, 255, 255, 0.2) 0%, rgba(255, 200, 255, 0.2) 100%);
  /* IE10+ */
  background: #fff4f1 linear-gradient(top, rgba(255, 255, 255, 0.2) 0%, rgba(255, 200, 255, 0.2) 100%);
  /* W3C */
  border: 1px solid #fff4f1;

  -moz-border-radius: .1875em;
  -webkit-border-radius: .1875em;
  border-radius: .1875em;
  color: #444;
  display: inline-block;
  font-size: 0.75em;
  font-weight: bold;
  text-decoration: none;
  text-shadow: 0 1px rgba(255, 255, 255, 0.75);
  cursor: pointer;
  margin-bottom: 1.25em;
  line-height: normal;
  padding: .5em .625em;
  font-family: "HelveticaNeue","Helvetica Neue",Helvetica,Arial,sans-serif; }

input[type="submit"], input[type="reset"], input[type="button"] {
  background: #eee;
  /* Old browsers */
  background: #eeeeee -moz-linear-gradient(top, rgba(255, 255, 255, 0.2) 0%, rgba(0, 0, 0, 0.2) 100%);
  /* FF3.6+ */
  background: #eeeeee -webkit-gradient(linear, left top, left bottom, color-stop(0%, rgba(255, 255, 255, 0.2)), color-stop(100%, rgba(0, 0, 0, 0.2)));
  /* Chrome,Safari4+ */
  background: #eeeeee -webkit-linear-gradient(top, rgba(255, 255, 255, 0.2) 0%, rgba(0, 0, 0, 0.2) 100%);
  /* Chrome10+,Safari5.1+ */
  background: #eeeeee -o-linear-gradient(top, rgba(255, 255, 255, 0.2) 0%, rgba(0, 0, 0, 0.2) 100%);
  /* Opera11.10+ */
  background: #eeeeee -ms-linear-gradient(top, rgba(255, 255, 255, 0.2) 0%, rgba(0, 0, 0, 0.2) 100%);
  /* IE10+ */
  background: #eeeeee linear-gradient(top, rgba(255, 255, 255, 0.2) 0%, rgba(0, 0, 0, 0.2) 100%);
  /* W3C */
  border: 1px solid #aaa;
  border-top: 1px solid #ccc;
  border-left: 1px solid #ccc;
  -moz-border-radius: .1875em;
  -webkit-border-radius: .1875em;
  border-radius: .1875em;
  color: #444;
  display: inline-block;
  font-size: 0.75em;
  font-weight: bold;
  text-decoration: none;
  text-shadow: 0 1px rgba(255, 255, 255, 0.75);
  cursor: pointer;
  margin-bottom: 1.25em;
  line-height: normal;
  padding: .5em .625em;
  font-family: "HelveticaNeue","Helvetica Neue",Helvetica,Arial,sans-serif; }

.button:hover, button:hover {
  color: #222;
  background: #ffcdcd;
  /* Old browsers */
  background: #ffcdcd -moz-linear-gradient(top, rgba(255, 255, 255, 0.3) 0%, rgba(255, 200, 255, 0.2) 100%);
  /* FF3.6+ */
  background: #ffcdcd -webkit-gradient(linear, left top, left bottom, color-stop(0%, rgba(255, 255, 255, 0.3)), color-stop(100%, rgba(255, 200, 255, 0.2)));
  /* Chrome,Safari4+ */
  background: #ffcdcd -webkit-linear-gradient(top, rgba(255, 255, 255, 0.3) 0%, rgba255, 200, 255, 0.2) 100%);
  /* Chrome10+,Safari5.1+ */
  background: #ffcdcd -o-linear-gradient(top, rgba(255, 255, 255, 0.3) 0%, rgba(255, 200, 255, 0.2) 100%);
  /* Opera11.10+ */
  background: #ffcdcd -ms-linear-gradient(top, rgba(255, 255, 255, 0.3) 0%, rgba(255, 200, 255, 0.2) 100%);
  /* IE10+ */
  background: #ffcdcd linear-gradient(top, rgba(255, 255, 255, 0.3) 0%, rgba(255, 200, 255, 0.2) 100%);
  /* W3C */
  border: 1px solid #ffcdcd;
}

input[type="submit"]:hover, input[type="reset"]:hover, input[type="button"]:hover {
  color: #222;
  background: #ddd;
  /* Old browsers */
  background: #dddddd -moz-linear-gradient(top, rgba(255, 255, 255, 0.3) 0%, rgba(0, 0, 0, 0.3) 100%);
  /* FF3.6+ */
  background: #dddddd -webkit-gradient(linear, left top, left bottom, color-stop(0%, rgba(255, 255, 255, 0.3)), color-stop(100%, rgba(0, 0, 0, 0.3)));
  /* Chrome,Safari4+ */
  background: #dddddd -webkit-linear-gradient(top, rgba(255, 255, 255, 0.3) 0%, rgba(0, 0, 0, 0.3) 100%);
  /* Chrome10+,Safari5.1+ */
  background: #dddddd -o-linear-gradient(top, rgba(255, 255, 255, 0.3) 0%, rgba(0, 0, 0, 0.3) 100%);
  /* Opera11.10+ */
  background: #dddddd -ms-linear-gradient(top, rgba(255, 255, 255, 0.3) 0%, rgba(0, 0, 0, 0.3) 100%);
  /* IE10+ */
  background: #dddddd linear-gradient(top, rgba(255, 255, 255, 0.3) 0%, rgba(0, 0, 0, 0.3) 100%);
  /* W3C */
  border: 1px solid #888;
  border-top: 1px solid #aaa;
  border-left: 1px solid #aaa; }

.button:active, button:active {
  border: 1px solid #fff68e;
  background: #fff68e;
  /* Old browsers */
  background: #fff68e -moz-linear-gradient(top, rgba(255, 255, 255, 0.35) 0%, rgb(0, 0, 0, 0.3) 100%);
  /* FF3.6+ */
  background: #fff68e -webkit-gradient(linear, left top, left bottom, color-stop(0%, rgba(255, 255, 255, 0.35)), color-stop(100%, rgba(0, 0, 0, 0.3)));
  /* Chrome,Safari4+ */
  background: #fff68e -webkit-linear-gradient(top, rgba(255, 255, 255, 0.35) 0%, rgba(0, 0, 0, 0.3) 100%);
  /* Chrome10+,Safari5.1+ */
  background: #fff68e -o-linear-gradient(top, rgba(255, 255, 255, 0.35) 0%, rgba(0, 0, 0, 0.3) 100%);
  /* Opera11.10+ */
  background: #fff68e -ms-linear-gradient(top, rgba(255, 255, 255, 0.35) 0%, rgba(0, 0, 0, 0.3) 100%);
  /* IE10+ */
  background: #fff68e linear-gradient(top, rgba(255, 255, 255, 0.35) 0%, rgb(0, 0, 0, 0.3) 100%);
  /* W3C */ }

input[type="submit"]:active, input[type="reset"]:active, input[type="button"]:active {
  border: 1px solid #666;
  background: #ccc;
  /* Old browsers */
  background: #cccccc -moz-linear-gradient(top, rgba(255, 255, 255, 0.35) 0%, rgba(10, 10, 10, 0.4) 100%);
  /* FF3.6+ */
  background: #cccccc -webkit-gradient(linear, left top, left bottom, color-stop(0%, rgba(255, 255, 255, 0.35)), color-stop(100%, rgba(10, 10, 10, 0.4)));
  /* Chrome,Safari4+ */
  background: #cccccc -webkit-linear-gradient(top, rgba(255, 255, 255, 0.35) 0%, rgba(10, 10, 10, 0.4) 100%);
  /* Chrome10+,Safari5.1+ */
  background: #cccccc -o-linear-gradient(top, rgba(255, 255, 255, 0.35) 0%, rgba(10, 10, 10, 0.4) 100%);
  /* Opera11.10+ */
  background: #cccccc -ms-linear-gradient(top, rgba(255, 255, 255, 0.35) 0%, rgba(10, 10, 10, 0.4) 100%);
  /* IE10+ */
  background: #cccccc linear-gradient(top, rgba(255, 255, 255, 0.35) 0%, rgba(10, 10, 10, 0.4) 100%);
  /* W3C */ }

.button.full-width, button.full-width {
  width: 100%;
  padding-left: 0 !important;
  padding-right: 0 !important;
  text-align: center; }

input[type="submit"].full-width, input[type="reset"].full-width, input[type="button"].full-width {
  width: 100%;
  padding-left: 0 !important;
  padding-right: 0 !important;
  text-align: center; }

/* Fix for odd Mozilla border & padding issues */
button::-moz-focus-inner, input::-moz-focus-inner {
  border: 0;
  padding: 0; }

/* #Tabs (activate in tabs.js)
================================================== */
ul.tabs {
  display: block;
  margin: 0 0 1.25em 0;
  padding: 0;
  border-bottom: solid 1px #ddd; }
  ul.tabs li {
    display: block;
    width: auto;
    height: auto;
    padding: 0;
    float: left;
    margin-bottom: 0; }
    ul.tabs li a {
      display: block;
      text-decoration: none;
      width: auto;
      height: 1.8125em;
      padding: 0px 1.25em;
      line-height: 1.815em;
      border: solid 1px #ddd;
      border-width: 1px 1px 0 0;
      margin: 0;
      background: #f5f5f5;
      font-size: 0.875em; }
      ul.tabs li a.active {
        background: #fff;
        height: 1.8125em;
        position: relative;
        top: -4px;
        padding-top: 4px;
        border-left-width: 1px;
        margin: 0 0 0 -1px;
        color: #111;
        -moz-border-radius-topleft: 2px;
        -webkit-border-top-left-radius: 2px;
        border-top-left-radius: 2px;
        -moz-border-radius-topright: 2px;
        -webkit-border-top-right-radius: 2px;
        border-top-right-radius: 2px; }
    ul.tabs li:first-child a {
      border-width: 1px 1px 0 1px;
      -moz-border-radius-topleft: 2px;
      -webkit-border-top-left-radius: 2px;
      border-top-left-radius: 2px; }
      ul.tabs li:first-child a.active {
        margin-left: 0; }
    ul.tabs li:last-child a {
      -moz-border-radius-topright: 2px;
      -webkit-border-top-right-radius: 2px;
      border-top-right-radius: 2px; }
ul.tabs-content {
  margin: 0;
  display: block; }
  ul.tabs-content > li {
    display: none; }
    ul.tabs-content > li.active {
      display: block; }
ul.tabs {
  zoom: 1; }
  ul.tabs:before {
    content: '\0020';
    display: block;
    overflow: hidden;
    visibility: hidden;
    width: 0;
    height: 0; }
  ul.tabs:after {
    content: '\0020';
    display: block;
    overflow: hidden;
    visibility: hidden;
    width: 0;
    height: 0;
    clear: both; }

/* Clearfixing tabs for beautiful stacking */
/* Tables 
================================================== */
table {
  width: 75%;
  max-width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
  background-color: transparent; }
  table th, table td {
    padding: .5em;
    vertical-align: top;
    border-top: 0px solid #ee7878;
    font-size: 0.875em;
    line-height: 1.5;
    text-align: left; }
  table th {
    font-weight: bold; }
  table thead th {
    vertical-align: bottom; }
  table colgroup + thead tr:first-child th, table colgroup + thead tr:first-child td {
    border-top: 0; }
  table thead:first-child tr:first-child th, table thead:first-child tr:first-child td {
    border-top: 0; }
  table tbody + tbody {
    border-top: 2px solid #ee7878; }
  table tbody tr td, table tbody tr th {
    -webkit-transition: background-color 0.25s 0 linear;
    -moz-transition: background-color 0.25s 0 linear;
    -ms-transition: background-color 0.25s 0 linear;
    -o-transition: background-color 0.25s 0 linear;
    transition: background-color 0.25s 0 linear; }
  table tbody tr:hover td, table tbody tr:hover th {
    background-color: #ffffff; }

.table-condensed th, .table-condensed td {
  padding: .25em .3125em; }

.table-bordered {
  /*border: 1px solid #ee7878;*/
  
  border: 1px solid #ee7878;
  border-left: 0;
  border-collapse: separate;
  *border-collapse: collapsed; }
  .table-bordered th, .table-bordered td {
    border-left: 1px solid #ee7878; }
  .table-bordered thead:first-child tr:first-child th {
    border-top: 0; }
  .table-bordered tbody:first-child tr:first-child th, .table-bordered tbody:first-child tr:first-child td {
    border-top: 0; }

.table-striped tbody tr:nth-child(odd) td, .table-striped tbody tr:nth-child(odd) th {
  background-color: #c7ced6; }

/* #Forms
================================================== */
form {
  margin: 0 0 1.25em; }

fieldset {
  padding: 0;
  margin: 0;
  border: 0; }

legend {
  display: block;
  width: 100%;
  padding: 0;
  margin-bottom: 1.25em;
  font-size: 1.3125em;
  line-height: 2.5;
  color: #333;
  border: 0;
  border-bottom: 1px solid #e5e5e5; }
  legend small {
    font-size: 0.875em;
    color: #999; }

label, input, button, select, textarea {
  font-size: 0.875em;
  font-weight: normal;
  line-height: 1.25;
  font-family: "Helvetica Neue",Helvetica,Arial,sans-serif; }

label {
  display: block;
  margin-bottom: .3125em; }

select, textarea {
  display: inline-block;
  height: auto;
  padding: .5em .375em;
  margin-bottom: .5625em;
  font-size: 0.875em;
  line-height: 1.25;
  color: #555;
  -webkit-border-radius: .1875em;
  -moz-border-radius: .1875em;
  border-radius: .1875em; }

input[type="text"], input[type="password"], input[type="datetime"], input[type="datetime-local"], input[type="date"], input[type="month"], input[type="time"], input[type="week"], input[type="number"], input[type="email"], input[type="url"], input[type="search"], input[type="tel"], input[type="color"] {
  display: inline-block;
  height: auto;
  padding: .5em .375em;
  margin-bottom: .5625em;
  font-size: 0.875em;
  line-height: 1.25;
  color: #555;
  -webkit-border-radius: .1875em;
  -moz-border-radius: .1875em;
  border-radius: .1875em; }

.uneditable-input {
  display: inline-block;
  height: auto;
  padding: .5em .375em;
  margin-bottom: .5625em;
  font-size: 0.875em;
  line-height: 1.25em;
  color: #555;
  -webkit-border-radius: .1875em;
  -moz-border-radius: .1875em;
  border-radius: .1875em; }

input, textarea, .uneditable-input {
  width: auto; }

textarea {
  width: 100%;
  height: auto;
  background-color: #fff;
  border: 1px solid #ccc;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  -moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  -webkit-transition: border linear 0.2s,box-shadow linear 0.2s;
  -moz-transition: border linear 0.2s,box-shadow linear 0.2s;
  -o-transition: border linear 0.2s,box-shadow linear 0.2s;
  transition: border linear 0.2s,box-shadow linear 0.2s; }

input[type="text"], input[type="password"], input[type="datetime"], input[type="datetime-local"], input[type="date"], input[type="month"], input[type="time"], input[type="week"], input[type="number"], input[type="email"], input[type="url"], input[type="search"], input[type="tel"], input[type="color"] {
  background-color: #fff;
  border: 1px solid #ccc;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  -moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  -webkit-transition: border linear 0.2s,box-shadow linear 0.2s;
  -moz-transition: border linear 0.2s,box-shadow linear 0.2s;
  -o-transition: border linear 0.2s,box-shadow linear 0.2s;
  transition: border linear 0.2s,box-shadow linear 0.2s; }

.uneditable-input {
  background-color: #fff;
  border: 1px solid #ccc;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  -moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  -webkit-transition: border linear 0.2s,box-shadow linear 0.2s;
  -moz-transition: border linear 0.2s,box-shadow linear 0.2s;
  -o-transition: border linear 0.2s,box-shadow linear 0.2s;
  transition: border linear 0.2s,box-shadow linear 0.2s; }

textarea:focus {
  border-color: rgba(82, 168, 236, 0.8);
  outline: 0;
  outline: thin dotted \9;
  /* IE6-9 */
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(82, 168, 236, 0.6);
  -moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(82, 168, 236, 0.6);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(82, 168, 236, 0.6); }

input[type="text"]:focus, input[type="password"]:focus, input[type="datetime"]:focus, input[type="datetime-local"]:focus, input[type="date"]:focus, input[type="month"]:focus, input[type="time"]:focus, input[type="week"]:focus, input[type="number"]:focus, input[type="email"]:focus, input[type="url"]:focus, input[type="search"]:focus, input[type="tel"]:focus, input[type="color"]:focus {
  border-color: rgba(82, 168, 236, 0.8);
  outline: 0;
  outline: thin dotted \9;
  /* IE6-9 */
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(82, 168, 236, 0.6);
  -moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(82, 168, 236, 0.6);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(82, 168, 236, 0.6); }

.uneditable-input:focus {
  border-color: rgba(82, 168, 236, 0.8);
  outline: 0;
  outline: thin dotted \9;
  /* IE6-9 */
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(82, 168, 236, 0.6);
  -moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(82, 168, 236, 0.6);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(82, 168, 236, 0.6); }

input[type="radio"], input[type="checkbox"] {
  margin: .25em 0 0;
  margin-top: 1px \9;
  *margin-top: 0;
  line-height: normal;
  cursor: pointer; }
input[type="file"], input[type="image"], input[type="submit"], input[type="reset"], input[type="button"], input[type="radio"], input[type="checkbox"] {
  width: auto; }

select, input[type="file"] {
  height: 1.875em;
  /* In IE7,the height of the select element cannot be changed by height,only font-size */
  *margin-top: .25em;
  /* For IE7,add top margin to align select with labels */
  line-height: 1.875em; }

select {
  width: 13.75em;
  background-color: #fff;
  border: 1px solid #ccc; }
  select[multiple], select[size] {
    height: auto; }
  select:focus {
    outline: thin dotted #333;
    outline: 5px auto -webkit-focus-ring-color;
    outline-offset: -2px; }

input[type="file"]:focus, input[type="radio"]:focus, input[type="checkbox"]:focus {
  outline: thin dotted #333;
  outline: 5px auto -webkit-focus-ring-color;
  outline-offset: -2px; }

.uneditable-input, .uneditable-textarea {
  color: #999;
  cursor: not-allowed;
  background-color: #fcfcfc;
  border-color: #ccc;
  -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.025);
  -moz-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.025);
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.025); }

.uneditable-input {
  overflow: hidden;
  white-space: nowrap; }

.uneditable-textarea {
  width: auto;
  height: auto; }

input:-moz-placeholder, textarea:-moz-placeholder, input:-ms-input-placeholder, textarea:-ms-input-placeholder, input::-webkit-input-placeholder, textarea::-webkit-input-placeholder {
  color: #999; }

.radio, .checkbox {
  min-height: 1.125em;
  padding-left: 1.125em; }

.radio input[type="radio"], .checkbox input[type="checkbox"] {
  float: left;
  margin-left: -1.125em; }

.controls > .radio:first-child, .controls > .checkbox:first-child {
  padding-top: .3125em; }

.radio.inline, .checkbox.inline {
  display: inline-block;
  padding-top: .3125em;
  margin-bottom: 0;
  vertical-align: middle; }

.radio.inline + .radio.inline, .checkbox.inline + .checkbox.inline {
  margin-left: .625em; }

.input-mini, .input-small, .input-medium, .input-large, .input-xlarge, .input-xxlarge {
  width: 100%; }

input[class*="span"], select[class*="span"], textarea[class*="span"], .uneditable-input[class*="span"] {
  float: none;
  margin-left: 0; }

.row-fluid input[class*="span"], .row-fluid select[class*="span"], .row-fluid textarea[class*="span"], .row-fluid .uneditable-input[class*="span"] {
  float: none;
  margin-left: 0; }

.input-append input[class*="span"], .input-append .uneditable-input[class*="span"] {
  display: inline-block; }

.input-prepend input[class*="span"], .input-prepend .uneditable-input[class*="span"] {
  display: inline-block; }

.row-fluid input[class*="span"], .row-fluid select[class*="span"], .row-fluid textarea[class*="span"], .row-fluid .uneditable-input[class*="span"], .row-fluid .input-prepend [class*="span"], .row-fluid .input-append [class*="span"] {
  display: inline-block; }

input, textarea, .uneditable-input {
  margin-left: 0; }

.controls-row {
  *zoom: 1; }
  .controls-row [class*="span"] + [class*="span"] {
    margin-left: 1.25em; }
  .controls-row:before {
    display: table;
    line-height: 0;
    content: ""; }
  .controls-row:after {
    display: table;
    line-height: 0;
    content: "";
    clear: both; }
  .controls-row [class*="span"] {
    float: left; }

input[disabled], select[disabled], textarea[disabled], input[readonly], select[readonly], textarea[readonly] {
  cursor: not-allowed;
  background-color: #eee; }

input[type="radio"][disabled], input[type="checkbox"][disabled], input[type="radio"][readonly], input[type="checkbox"][readonly] {
  background-color: transparent; }

.control-group.warning > label, .control-group.warning .help-block, .control-group.warning .help-inline, .control-group.warning .checkbox, .control-group.warning .radio, .control-group.warning input, .control-group.warning select, .control-group.warning textarea {
  color: #c09853; }
.control-group.warning input, .control-group.warning select, .control-group.warning textarea {
  border-color: #c09853;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  -moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075); }
.control-group.warning input:focus, .control-group.warning select:focus, .control-group.warning textarea:focus {
  border-color: #a47e3c;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #dbc59e;
  -moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #dbc59e;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #dbc59e; }
.control-group.warning .input-prepend .add-on, .control-group.warning .input-append .add-on {
  color: #c09853;
  background-color: #fcf8e3;
  border-color: #c09853; }
.control-group.error > label, .control-group.error .help-block, .control-group.error .help-inline, .control-group.error .checkbox, .control-group.error .radio, .control-group.error input, .control-group.error select, .control-group.error textarea {
  color: #b94a48; }
.control-group.error input, .control-group.error select, .control-group.error textarea {
  border-color: #b94a48;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  -moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075); }
.control-group.error input:focus, .control-group.error select:focus, .control-group.error textarea:focus {
  border-color: #953b39;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #d59392;
  -moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #d59392;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #d59392; }
.control-group.error .input-prepend .add-on, .control-group.error .input-append .add-on {
  color: #b94a48;
  background-color: #f2dede;
  border-color: #b94a48; }
.control-group.success > label, .control-group.success .help-block, .control-group.success .help-inline, .control-group.success .checkbox, .control-group.success .radio, .control-group.success input, .control-group.success select, .control-group.success textarea {
  color: #468847; }
.control-group.success input, .control-group.success select, .control-group.success textarea {
  border-color: #468847;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  -moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075); }
.control-group.success input:focus, .control-group.success select:focus, .control-group.success textarea:focus {
  border-color: #356635;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #7aba7b;
  -moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #7aba7b;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #7aba7b; }
.control-group.success .input-prepend .add-on, .control-group.success .input-append .add-on {
  color: #468847;
  background-color: #dff0d8;
  border-color: #468847; }
.control-group.info > label, .control-group.info .help-block, .control-group.info .help-inline, .control-group.info .checkbox, .control-group.info .radio, .control-group.info input, .control-group.info select, .control-group.info textarea {
  color: #3a87ad; }
.control-group.info input, .control-group.info select, .control-group.info textarea {
  border-color: #3a87ad;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  -moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075); }
.control-group.info input:focus, .control-group.info select:focus, .control-group.info textarea:focus {
  border-color: #2d6987;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #7ab5d3;
  -moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #7ab5d3;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #7ab5d3; }
.control-group.info .input-prepend .add-on, .control-group.info .input-append .add-on {
  color: #3a87ad;
  background-color: #d9edf7;
  border-color: #3a87ad; }

input:focus:required:invalid, textarea:focus:required:invalid, select:focus:required:invalid {
  color: #b94a48;
  border-color: #ee5f5b; }

input:focus:required:invalid:focus, textarea:focus:required:invalid:focus, select:focus:required:invalid:focus {
  border-color: #e9322d;
  -webkit-box-shadow: 0 0 6px #f8b9b7;
  -moz-box-shadow: 0 0 6px #f8b9b7;
  box-shadow: 0 0 6px #f8b9b7; }

.form-actions {
  padding: 1.1875em 1.25em 1.25em;
  margin: 1.125em 0;
  background-color: #f5f5f5;
  border-top: 1px solid #e5e5e5;
  *zoom: 1; }
  .form-actions:before {
    display: table;
    line-height: 0;
    content: ""; }
  .form-actions:after {
    display: table;
    line-height: 0;
    content: "";
    clear: both; }

.help-block, .help-inline {
  color: #595959; }

.help-block {
  display: block;
  margin-bottom: .625em; }

.help-inline {
  display: inline-block;
  *display: inline;
  padding-left: .3125em;
  vertical-align: middle;
  *zoom: 1; }

.input-append, .input-prepend {
  margin-bottom: .3125em;
  font-size: 0;
  white-space: nowrap; }

.input-append input, .input-prepend input, .input-append select, .input-prepend select, .input-append .uneditable-input, .input-prepend .uneditable-input {
  position: relative;
  margin-bottom: 0;
  *margin-left: 0;
  font-size: 0.875em;
  vertical-align: top;
  -webkit-border-radius: 0 3px 3px 0;
  -moz-border-radius: 0 3px 3px 0;
  border-radius: 0 3px 3px 0; }

.input-append input:focus, .input-prepend input:focus, .input-append select:focus, .input-prepend select:focus, .input-append .uneditable-input:focus, .input-prepend .uneditable-input:focus {
  z-index: 2; }

.input-append .add-on, .input-prepend .add-on {
  display: inline-block;
  width: auto;
  height: auto;
  min-width: 1em;
  padding: .5em .3125em;
  font-size: 0.875em;
  font-weight: normal;
  line-height: 1.25em;
  text-align: center;
  text-shadow: 0 1px 0 #fff;
  background-color: #eee;
  border: 1px solid #ccc; }

.input-append .add-on, .input-prepend .add-on, .input-append .btn, .input-prepend .btn {
  vertical-align: middle;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0; }

.input-append .active {
  background-color: #a9dba9;
  border-color: #46a546; }

.input-prepend .active {
  background-color: #a9dba9;
  border-color: #46a546; }
.input-prepend .add-on, .input-prepend .btn {
  margin-right: -0.0625em; }
.input-prepend .add-on:first-child, .input-prepend .btn:first-child {
  -webkit-border-radius: 3px 0 0 3px;
  -moz-border-radius: 3px 0 0 3px;
  border-radius: 3px 0 0 3px; }

.input-append input, .input-append select, .input-append .uneditable-input {
  -webkit-border-radius: 3px 0 0 3px;
  -moz-border-radius: 3px 0 0 3px;
  border-radius: 3px 0 0 3px; }
.input-append .add-on, .input-append .btn {
  margin-left: -0.0625em; }
.input-append .add-on:last-child, .input-append .btn:last-child {
  -webkit-border-radius: 0 3px 3px 0;
  -moz-border-radius: 0 3px 3px 0;
  border-radius: 0 3px 3px 0; }

.input-prepend.input-append input, .input-prepend.input-append select, .input-prepend.input-append .uneditable-input {
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0; }
.input-prepend.input-append .add-on:first-child, .input-prepend.input-append .btn:first-child {
  margin-right: -1px;
  -webkit-border-radius: 3px 0 0 3px;
  -moz-border-radius: 3px 0 0 3px;
  border-radius: 3px 0 0 3px; }
.input-prepend.input-append .add-on:last-child, .input-prepend.input-append .btn:last-child {
  margin-left: -0.0625em;
  -webkit-border-radius: 0 3px 3px 0;
  -moz-border-radius: 0 3px 3px 0;
  border-radius: 0 3px 3px 0; }

input.search-query {
  padding-right: .875em;
  padding-right: .25em \9;
  padding-left: .875em;
  padding-left: .25em \9;
  /* IE7-8 doesn't have border-radius,so don't indent the padding */
  margin-bottom: 0;
  -webkit-border-radius: 1em;
  -moz-border-radius: 1em;
  border-radius: 1em; }

/* Allow for input prepend/append in search forms */
.form-search .input-append .search-query, .form-search .input-prepend .search-query {
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0; }
.form-search .input-append .search-query {
  -webkit-border-radius: .875em 0 0 .875em;
  -moz-border-radius: .875em 0 0 .875em;
  border-radius: .875em 0 0 .875em; }
.form-search .input-append .btn {
  -webkit-border-radius: 0 .875em .875em 0;
  -moz-border-radius: 0 .875em .875em 0;
  border-radius: 0 .875em .875em 0; }
.form-search .input-prepend .search-query {
  -webkit-border-radius: 0 .875em .875em 0;
  -moz-border-radius: 0 .875em .875em 0;
  border-radius: 0 .875em .875em 0; }
.form-search .input-prepend .btn {
  -webkit-border-radius: .875em 0 0 .875em;
  -moz-border-radius: .875em 0 0 .875em;
  border-radius: .875em 0 0 .875em;
  height: auto; }
.form-search input {
  display: inline-block;
  *display: inline;
  margin-bottom: 0;
  vertical-align: top;
  *zoom: 1; }

.form-inline input, .form-horizontal input, .form-search textarea, .form-inline textarea, .form-horizontal textarea, .form-search select, .form-inline select, .form-horizontal select, .form-search .help-inline, .form-inline .help-inline, .form-horizontal .help-inline, .form-search .uneditable-input, .form-inline .uneditable-input, .form-horizontal .uneditable-input, .form-search .input-prepend, .form-inline .input-prepend, .form-horizontal .input-prepend, .form-search .input-append, .form-inline .input-append, .form-horizontal .input-append {
  display: inline-block;
  *display: inline;
  margin-bottom: 0;
  vertical-align: top;
  *zoom: 1; }

.form-search .hide, .form-inline .hide, .form-horizontal .hide {
  display: none; }

.form-search label, .form-inline label, .form-search .btn-group, .form-inline .btn-group {
  display: inline-block; }

.form-search .input-append, .form-inline .input-append, .form-search .input-prepend, .form-inline .input-prepend {
  margin-bottom: 0; }

.form-search .radio, .form-search .checkbox {
  padding-left: 0;
  margin-bottom: 0;
  vertical-align: middle; }

.form-inline .radio, .form-inline .checkbox {
  padding-left: 0;
  margin-bottom: 0;
  vertical-align: middle; }

.form-search .radio input[type="radio"], .form-search .checkbox input[type="checkbox"] {
  float: left;
  margin-right: .1875em;
  margin-left: 0; }

.form-inline .radio input[type="radio"], .form-inline .checkbox input[type="checkbox"] {
  float: left;
  margin-right: .1875em;
  margin-left: 0; }

.control-group {
  margin-bottom: .625em; }

legend + .control-group {
  margin-top: 1.25em;
  -webkit-margin-top-collapse: separate; }

.form-horizontal {
  width: 90%; }
  .form-horizontal .control-group {
    margin-bottom: 1.25em;
    *zoom: 1; }
    .form-horizontal .control-group:before {
      display: table;
      line-height: 0;
      content: ""; }
    .form-horizontal .control-group:after {
      display: table;
      line-height: 0;
      content: "";
      clear: both; }
  .form-horizontal .control-label {
    float: left;
    width: auto;
    padding-top: .7125em;
    text-align: left;
    margin-right: 4%; }
  .form-horizontal .controls {
    *display: inline-block;
    *padding-left: 1.25em;
    *margin-left: 0; }
    .form-horizontal .controls:first-child {
      *padding-left: 11.25em; }
  .form-horizontal .help-block {
    margin-bottom: 0; }
  .form-horizontal input + .help-block, .form-horizontal select + .help-block, .form-horizontal textarea + .help-block {
    margin-top: .625em; }
  .form-horizontal .form-actions {
    padding-left: 11.25em; }

/* #Gallery
================================================ */
.gallery .one:nth-child(16n+1) {
  margin-left: 0; }
.gallery .two:nth-child(8n+1) {
  margin-left: 0; }
.gallery .three:nth-child(5n+1) {
  margin-left: 0; }
.gallery .four:nth-child(4n+1) {
  margin-left: 0; }
.gallery .five:nth-child(3n+1) {
  margin-left: 0; }
.gallery .six:nth-child(2n+1), .gallery .seven:nth-child(2n+1), .gallery .eight:nth-child(2n+1) {
  margin-left: 0; }
.gallery .nine:nth-child(n+1), .gallery .ten:nth-child(n+1), .gallery .eleven:nth-child(n+1), .gallery .twelve:nth-child(n+1), .gallery .thirteen:nth-child(n+1), .gallery .fourteen:nth-child(n+1), .gallery .fifteen:nth-child(n+1), .gallery .sixteen:nth-child(n+1) {
  margin-left: 0; }

/* #Misc
================================================== */
.callout {
  background: #ddd;
  padding: 3%;
  width: 100%; }

.link-list {
  width: 100%; }
  .link-list li {
    width: auto;
    float: left;
    margin: 0 10% 0 0; }
    .link-list li:last-child {
      margin: 0; }

.large {
  padding: 14px 24px;
  font-size: 1.125em;
  text-align: center; }

.remove-bottom {
  margin-bottom: 0 !important; }

.half-bottom {
  margin-bottom: .625em !important; }

.add-bottom {
  margin-bottom: 1.25em !important; }

/* #Media Queries
================================================== */
/* @media screen and (min-width:480px) */
@media screen and (min-width: 30em) {
  .toggle {
    float: left; } }
/* @media screen and (min-width:640px) */
/* @media screen and (min-width:720px) */
/* @media screen and (min-width:888px) */
@media screen and (min-width: 55.5em) {
  .alignleft {
    float: left;
    margin: 0% 2% 2% 0; }

  .alignright {
    float: right;
    margin: 0% 0 2% 2%; }

  .column, .columns {
    float: left;
    margin-left: 2%; }

  .column:first-child, .columns:first-child {
    margin-left: 0; }

  .alt-spacing {
    margin-left: 4.5%; }

  /* all browsers except IE6 and lower */
  .one {
    width: 4.375%; }

  .two {
    width: 10.75%; }

  .three {
    width: 17.125%; }

  .four {
    width: 23.5%; }

  .five {
    width: 29.875%; }

  .six {
    width: 36.25%; }

  .seven {
    width: 42.625%; }

  .eight {
    width: 49.0%; }

  .nine {
    width: 55.375%; }

  .ten {
    width: 61.75%; }

  .eleven {
    width: 68.125%; }

  .twelve {
    width: 74.5%; }

  .thirteen {
    width: 80.875%; }

  .fourteen {
    width: 87.25%; }

  .fifteen {
    width: 93.625%; }

  .sixteen {
    width: 100%; }

  .stacked {
    float: left; }
    .stacked li:first-child {
      margin-left: 0; }
    .stacked ul {
      float: left; }
    .stacked li {
      float: left;
      border-bottom: 0; }

  .input-mini {
    width: 10%; }

  .input-small {
    width: 20%; }

  .input-medium {
    width: 40%; }

  .input-large {
    width: 60%; }

  .input-xlarge {
    width: 80%; }

  .input-xxlarge {
    width: 100%; } }
/* @media screen and (min-width:984px) */
@media screen and (min-width: 61.5em) {
  .flexNav-touch .toggle, .flexNav-no-touch .toggle {
    display: block;
    float: right; }

  .menu-button {
    display: none; }

  .toggle ul {
    display: block; }

  .toggle li {
    position: relative;
    list-style: none;
    float: left;
    display: block;
    background-color: #333;
    width: 20%;
    margin-bottom: 0; }

  .flexNav-no-touch .item-with-ul:hover > ul {
    opacity: 1;
    top: 3.1em;
    position: absolute; }

  .toggle li a {
    border-left: 1px solid #000;
    border-bottom: none; }

  .flexNav-no-touch .toggle li ul {
    position: absolute;
    top: auto;
    left: 0;
    opacity: 0;
    visibility: hidden;
    height: 1px;
    z-index: 1; }

  .toggle li ul li a {
    border-bottom: none; }

  .flexNav-touch .toggle li ul.sub-menu {
    position: absolute;
    top: auto;
    left: 0;
    display: none;
    z-index: 1; }

  .flexNav-no-touch .item-with-ul:hover > ul {
    visibility: visible;
    opacity: 1;
    height: auto;
    display: block;
    border-right: 1px solid #000;
    border-bottom: 1px solid #000; } }
/* @media screen and (min-width:1200px) */
@media screen and (min-width: 75em) {
  .stacked {
    float: right;
    clear: none; } }
/* @media screen and (min-width:1392px) */
@media only screen and (-webkit-min-device-pixel-ratio: 1.5), only screen and (min-device-pixel-ratio: 1.5) {
  /* Styles */ }
/* Table of Content
==================================================
	#Site Styles
	#Page Styles
	#Media Queries
	*/
/* #Site Styles
================================================== */
.container {
  margin: 0 auto;
  padding: 0;
  max-width: 100%;
  width: 80%;
  padding-top: 2%; }

.content {
  position: relative;
  width: 100%;
  margin-top: 2%;

 }

/* #Page Styles
================================================== */
/* Header 
--------------------------------------------------*/
header[role="banner"] {
  width: 100%;
  position: relative; }

.logo {
  position: relative;
  width: auto;
  margin: 0 auto; }

.menu-button {
  width: 100%; }

/* #Media Queries
================================================== */
@media only screen and (min-width: 30em) {
  /* 480 =================================================== */ }
@media only screen and (min-width: 40em) {
  /* 640 =================================================== */
  .logo {
    width: auto; }
    .logo h1 {
      text-align: left; } }
@media only screen and (min-width: 45em) {
  /* 720 =================================================== */ }
@media screen and (min-width: 55.5em) {
  /* 888 =================================================== */ }
@media only screen and (min-width: 61.5em) {
  /* 984 =================================================== */
  .logo {
    float: left; }

  nav {
    float: right; } }
@media only screen and (min-width: 75em) {
  /* 1200 =================================================== */ }
@media only screen and (min-width: 87em) {
  /* 1392 =================================================== */ }
@media only screen and (-webkit-min-device-pixel-ratio: 1.5), only screen and (min--moz-device-pixel-ratio: 1.5), only screen and (min-device-pixel-ratio: 1.5) {
  /* 2x =================================================== */ }


/*’Ç‰Á*/
.m75 {
	margin-left:12%;
	margin-right:12%;
}

.m65 {
	margin-left:15.8%;
	margin-right:16.8%;
}

.m5 {
	margin-left:5%;
	margin-right:5%;
}

.mt10 {
	margin-top:1%;
	background: #ffffff;
}

.mt2 {
	margin-top:2%;
}

.mt5 {
	margin-top:5%;
}

.mu3 {
	margin-bottom:3%;
}


.ml5 {
	margin-left:5%;
}

.mr5 {
	margin-right:5%;
}

.mb0 {
	margin-bottom:0px;
}

.block {
	padding:10px;
	background:#fff4f1;
}

.ft {
	background-image:url(../img/line.png);
	background-position:left top;
	background-repeat:repeat-x;
	padding:35px 0 5px 0;
	text-align: right;
	height:75px;
}

.r {
	text-align:right;
}

button {
	width:130px;
	height:70px;
}


.button_b button {
	width:200px;
	height:50px;
	font-size:16px;
}
