/*---------------------------------------------------
    LESS Elements 0.9
  ---------------------------------------------------
    A set of useful LESS mixins
    More info at: http://lesselements.com
  ---------------------------------------------------*/
html,
body,
div,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: top;
  line-height: normal;
}
/*! normalize.css v3.0.1 | MIT License | git.io/normalize */
/**
 * 1. Set default font family to sans-serif.
 * 2. Prevent iOS text size adjust after orientation change, without disabling
 *    user zoom.
 */
html {
  font-family: sans-serif;
  /* 1 */
  -ms-text-size-adjust: 100%;
  /* 2 */
  -webkit-text-size-adjust: 100%;
  /* 2 */
}
/**
 * Remove default margin.
 */
/* HTML5 display definitions
   ========================================================================== */
/**
 * Correct `block` display not defined for any HTML5 element in IE 8/9.
 * Correct `block` display not defined for `details` or `summary` in IE 10/11 and Firefox.
 * Correct `block` display not defined for `main` in IE 11.
 */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
nav,
section,
summary {
  display: block;
}
/**
 * 1. Correct `inline-block` display not defined in IE 8/9.
 * 2. Normalize vertical alignment of `progress` in Chrome, Firefox, and Opera.
 */
audio,
canvas,
progress,
video {
  display: inline-block;
  /* 1 */
  vertical-align: baseline;
  /* 2 */
}
/**
 * Prevent modern browsers from displaying `audio` without controls.
 * Remove excess height in iOS 5 devices.
 */
audio:not([controls]) {
  display: none;
  height: 0;
}
/**
 * Address `[hidden]` styling not present in IE 8/9/10.
 * Hide the `template` element in IE 8/9/11, Safari, and Firefox < 22.
 */
[hidden],
template {
  display: none;
}
/* Links
   ========================================================================== */
/**
 * Remove the gray background color from active links in IE 10.
 */
a {
  background: transparent;
}
/**
 * Improve readability when focused and also mouse hovered in all browsers.
 */
a:active,
a:hover {
  outline: 0;
}
/* Text-level semantics
   ========================================================================== */
/**
 * Address styling not present in IE 8/9/10/11, Safari, and Chrome.
 */
abbr[title] {
  border-bottom: 1px dotted;
}
/**
 * Address style set to `bolder` in Firefox 4+, Safari, and Chrome.
 */
b,
strong {
  font-weight: bold;
}
/**
 * Address styling not present in Safari and Chrome.
 */
dfn {
  font-style: italic;
}
/**
 * Address variable `h1` font-size and margin within `section` and `article`
 * contexts in Firefox 4+, Safari, and Chrome.
 */
/**
 * Address styling not present in IE 8/9.
 */
mark {
  background: #ff0;
  color: #000;
}
/**
 * Address inconsistent and variable font size in all browsers.
 */
small {
  font-size: 80%;
}
/**
 * Prevent `sub` and `sup` affecting `line-height` in all browsers.
 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}
sup {
  top: -0.5em;
}
sub {
  bottom: -0.25em;
}
/* Embedded content
   ========================================================================== */
/**
 * Remove border when inside `a` element in IE 8/9/10.
 */
img {
  border: 0;
}
/**
 * Correct overflow not hidden in IE 9/10/11.
 */
svg:not(:root) {
  overflow: hidden;
}
/* Grouping content
   ========================================================================== */
/**
 * Address margin not present in IE 8/9 and Safari.
 */
figure {
  margin: 1em 40px;
}
/**
 * Address differences between Firefox and other browsers.
 */
hr {
  -moz-box-sizing: content-box;
  box-sizing: content-box;
  height: 0;
}
/**
 * Contain overflow in all browsers.
 */
pre {
  overflow: auto;
}
/**
 * Address odd `em`-unit font size rendering in all browsers.
 */
code,
kbd,
pre,
samp {
  font-family: monospace, monospace;
  font-size: 1em;
}
/* Forms
   ========================================================================== */
/**
 * Known limitation: by default, Chrome and Safari on OS X allow very limited
 * styling of `select`, unless a `border` property is set.
 */
/**
 * 1. Correct color not being inherited.
 *    Known issue: affects color of disabled elements.
 * 2. Correct font properties not being inherited.
 * 3. Address margins set differently in Firefox 4+, Safari, and Chrome.
 */
button,
input,
optgroup,
select,
textarea {
  color: inherit;
  /* 1 */
  font: inherit;
  /* 2 */
  margin: 0;
  /* 3 */
}
/**
 * Address `overflow` set to `hidden` in IE 8/9/10/11.
 */
button {
  overflow: visible;
}
/**
 * Address inconsistent `text-transform` inheritance for `button` and `select`.
 * All other form control elements do not inherit `text-transform` values.
 * Correct `button` style inheritance in Firefox, IE 8/9/10/11, and Opera.
 * Correct `select` style inheritance in Firefox.
 */
button,
select {
  text-transform: none;
}
/**
 * 1. Avoid the WebKit bug in Android 4.0.* where (2) destroys native `audio`
 *    and `video` controls.
 * 2. Correct inability to style clickable `input` types in iOS.
 * 3. Improve usability and consistency of cursor style between image-type
 *    `input` and others.
 */
button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
  -webkit-appearance: button;
  /* 2 */
  cursor: pointer;
  /* 3 */
}
/**
 * Re-set default cursor for disabled elements.
 */
button[disabled],
html input[disabled] {
  cursor: default;
}
/**
 * Remove inner padding and border in Firefox 4+.
 */
button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0;
}
/**
 * Address Firefox 4+ setting `line-height` on `input` using `!important` in
 * the UA stylesheet.
 */
input {
  line-height: normal;
}
/**
 * It's recommended that you don't attempt to style these elements.
 * Firefox's implementation doesn't respect box-sizing, padding, or width.
 *
 * 1. Address box sizing set to `content-box` in IE 8/9/10.
 * 2. Remove excess padding in IE 8/9/10.
 */
input[type="checkbox"],
input[type="radio"] {
  box-sizing: border-box;
  /* 1 */
  padding: 0;
  /* 2 */
}
/**
 * Fix the cursor style for Chrome's increment/decrement buttons. For certain
 * `font-size` values of the `input`, it causes the cursor style of the
 * decrement button to change from `default` to `text`.
 */
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  height: auto;
}
/**
 * 1. Address `appearance` set to `searchfield` in Safari and Chrome.
 * 2. Address `box-sizing` set to `border-box` in Safari and Chrome
 *    (include `-moz` to future-proof).
 */
input[type="search"] {
  -webkit-appearance: textfield;
  /* 1 */
  -moz-box-sizing: content-box;
  -webkit-box-sizing: content-box;
  /* 2 */
  box-sizing: content-box;
}
/**
 * Remove inner padding and search cancel button in Safari and Chrome on OS X.
 * Safari (but not Chrome) clips the cancel button when the search input has
 * padding (and `textfield` appearance).
 */
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}
/**
 * Define consistent border, margin, and padding.
 */
fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em;
}
/**
 * 1. Correct `color` not being inherited in IE 8/9/10/11.
 * 2. Remove padding so people aren't caught out if they zero out fieldsets.
 */
legend {
  border: 0;
  /* 1 */
  padding: 0;
  /* 2 */
}
/**
 * Remove default vertical scrollbar in IE 8/9/10/11.
 */
textarea {
  overflow: auto;
}
/**
 * Don't inherit the `font-weight` (applied by a rule above).
 * NOTE: the default cannot safely be changed in Chrome and Safari on OS X.
 */
optgroup {
  font-weight: bold;
}
/* Tables
   ========================================================================== */
/**
 * Remove most spacing between table cells.
 */
table {
  border-collapse: collapse;
  border-spacing: 0;
}
td,
th {
  padding: 0;
}
/* --------------------------------- */
/* -------- mass-use styles -------- */
/* --------------------------------- */
/* self-generated less mixins */
/* NOTE: most "mass-use styles" use the same abbreviations as Emmet see: http://docs.emmet.io/ */
/* show/hide and positioning */
.hide,
.dn {
  display: none;
}
.show.db,
.db {
  display: block;
}
.show.dib,
.dib {
  display: inline-block;
}
.dt {
  display: table;
}
.dtr {
  display: table-row;
}
.dtcl {
  display: table-column;
}
.dtc {
  display: table-cell;
}
.posr {
  position: relative;
}
.posa {
  position: absolute;
}
.posf {
  position: fixed;
}
.t0 {
  top: 0;
}
.r0 {
  right: 0;
}
.b0 {
  bottom: 0;
}
.l0 {
  left: 0;
}
.fl {
  float: left !important;
}
.fr {
  float: right !important;
}
.centeredContainer,
.centeredcontainer,
.ctrCnt,
.ctrcnt,
.m0-a {
  margin: 0 auto;
}
.mrl-auto,
.mrl-a,
.mrla {
  margin-right: auto;
  margin-left: auto;
}
/* new 'clearfix' hack */
.group:before,
.group:after {
  content: "";
  display: table;
}
.group:after {
  clear: both;
}
.group {
  zoom: 1;
  /* For IE 6/7 (trigger hasLayout) */
}
.flexwrapper {
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6 */
  display: -moz-box;
  /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  display: -webkit-flex;
  /* NEW - Chrome */
  display: flex;
  /* NEW, Spec - Opera 12.1, Firefox 20+ */
}
/* sizing */
.w10p {
  width: 10%;
}
.w20p {
  width: 20%;
}
.w30p {
  width: 30%;
}
.w40p {
  width: 40%;
}
.w50p {
  width: 50%;
}
.w60p {
  width: 60%;
}
.w70p {
  width: 70%;
}
.w80p {
  width: 80%;
}
.w90p {
  width: 90%;
}
.fullWidth,
.fw,
.w100p {
  width: 100%;
}
.full,
.hw100p {
  width: 100%;
  height: 100%;
}
/* offsetting */
.offset-10p,
.offset10p,
.ofs10p {
  margin-left: 10%;
}
.offset-20p,
.offset20p,
.ofs20p {
  margin-left: 20%;
}
.offset-30p,
.offset30p,
.ofs30p {
  margin-left: 30%;
}
.offset-40p,
.offset40p,
.ofs40p {
  margin-left: 40%;
}
.offset-50p,
.offset50p,
.ofs50p {
  margin-left: 50%;
}
.offset-60p,
.offset60p,
.ofs60p {
  margin-left: 60%;
}
.offset-70p,
.offset70p,
.ofs70p {
  margin-left: 70%;
}
.offset-80p,
.offset80p,
.ofs80p {
  margin-left: 80%;
}
.offset-90p,
.offset90p,
.ofs90p {
  margin-left: 90%;
}
.fz-1_5x {
  font-size: 1.5em;
}
.fz-2x {
  font-size: 2em;
}
.fz-3x {
  font-size: 3em;
}
.fz-4x {
  font-size: 4em;
}
.fz-5x {
  font-size: 5em;
}
.fz-6x {
  font-size: 6em;
}
/* overflow */
.oh {
  overflow: hidden;
}
.oxh {
  overflow-x: hidden;
}
.oyh {
  overflow-y: hidden;
}
.ovs {
  overflow: scroll;
}
.oxs {
  overflow-x: scroll;
}
.oys {
  overflow-y: scroll;
}
/* border-radius */
.bdrs5 {
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
}
.bdrs10 {
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  border-radius: 10px;
}
.bdrs15 {
  -webkit-border-radius: 15px;
  -moz-border-radius: 15px;
  border-radius: 15px;
}
/* padding */
.p0 {
  padding: 0 !important;
}
.p10 {
  padding: 10px !important;
}
.pt0 {
  padding-top: 0 !important;
}
.pr0 {
  padding-right: 0 !important;
}
.pb0 {
  padding-bottom: 0 !important;
}
.p5 {
  padding: 5px !important;
}
.pt5 {
  padding-top: 5px !important;
}
.pr5 {
  padding-right: 5px !important;
}
.pb5 {
  padding-bottom: 5px !important;
}
.pl5 {
  padding-left: 5px !important;
}
.p10 {
  padding: 10px !important;
}
.pt10 {
  padding-top: 10px !important;
}
.pr10 {
  padding-right: 10px !important;
}
.pb10 {
  padding-bottom: 10px !important;
}
.pl10 {
  padding-left: 10px !important;
}
.p15 {
  padding: 15px !important;
}
.pt15 {
  padding-top: 15px !important;
}
.pr15 {
  padding-right: 15px !important;
}
.pb15 {
  padding-bottom: 15px !important;
}
.pl15 {
  padding-left: 15px !important;
}
.p20 {
  padding: 20px !important;
}
.pt20 {
  padding-top: 20px !important;
}
.pr20 {
  padding-right: 20px !important;
}
.pb20 {
  padding-bottom: 20px !important;
}
.pl20 {
  padding-left: 20px !important;
}
.plr0 {
  padding-right: 0 !important;
  padding-left: 0 !important;
}
.plr5 {
  padding-right: 5px !important;
  padding-left: 5px !important;
}
.plr10 {
  padding-right: 10px !important;
  padding-left: 10px !important;
}
.plr15 {
  padding-right: 15px !important;
  padding-left: 15px !important;
}
.plr20 {
  padding-right: 20px !important;
  padding-left: 20px !important;
}
.ptb0 {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}
.ptb5 {
  padding-top: 5px !important;
  padding-bottom: 5px !important;
}
.ptb10 {
  padding-top: 10px !important;
  padding-bottom: 10px !important;
}
.ptb15 {
  padding-top: 15px !important;
  padding-bottom: 15px !important;
}
.ptb20 {
  padding-top: 20px !important;
  padding-bottom: 20px !important;
}
/* margin */
.m0 {
  margin: 0 !important;
}
.mt0 {
  margin-top: 0 !important;
}
.mr0 {
  margin-right: 0 !important;
}
.mb0 {
  margin-bottom: 0 !important;
}
.ml0 {
  margin-left: 0 !important;
}
.m1p {
  margin: 1% !important;
}
.mt1p {
  margin-top: 1% !important;
}
.mr1p {
  margin-right: 1% !important;
}
.mb1p {
  margin-bottom: 1% !important;
}
.ml1p {
  margin-left: 1% !important;
}
.m1-5p {
  margin: 1.5% !important;
}
.mt1-5p {
  margin-top: 1.5% !important;
}
.mr1-5p {
  margin-right: 1.5% !important;
}
.mb1-5p {
  margin-bottom: 1.5% !important;
}
.ml1-5p {
  margin-left: 1.5% !important;
}
.m2p {
  margin: 2% !important;
}
.mt2p {
  margin-top: 2% !important;
}
.mr2p {
  margin-right: 2% !important;
}
.mb2p {
  margin-bottom: 2% !important;
}
.ml2p {
  margin-left: 2% !important;
}
.m5 {
  margin: 5px !important;
}
.mt5 {
  margin-top: 5px !important;
}
.mr5 {
  margin-right: 5px !important;
}
.mb5 {
  margin-bottom: 5px !important;
}
.ml5 {
  margin-left: 5px !important;
}
.m10 {
  margin: 10px !important;
}
.mt10 {
  margin-top: 10px !important;
}
.mr10 {
  margin-right: 10px !important;
}
.mb10 {
  margin-bottom: 10px !important;
}
.ml10 {
  margin-left: 10px !important;
}
.m15 {
  margin: 15px !important;
}
.mt15 {
  margin-top: 15px !important;
}
.mr15 {
  margin-right: 15px !important;
}
.mb15 {
  margin-bottom: 15px !important;
}
.ml15 {
  margin-left: 15px !important;
}
.m20 {
  margin: 20px !important;
}
.mt20 {
  margin-top: 20px !important;
}
.mr20 {
  margin-right: 20px !important;
}
.mb20 {
  margin-bottom: 20px !important;
}
.ml20 {
  margin-left: 20px !important;
}
.mlr0 {
  margin-right: 0 !important;
  margin-left: 0 !important;
}
.mlr5 {
  margin-right: 5px !important;
  margin-left: 5px !important;
}
.mlr10 {
  margin-right: 10px !important;
  margin-left: 10px !important;
}
.mlr15 {
  margin-right: 15px !important;
  margin-left: 15px !important;
}
.mlr20 {
  margin-right: 20px !important;
  margin-left: 20px !important;
}
.mtb0 {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}
.mtb5 {
  margin-top: 5px !important;
  margin-bottom: 5px !important;
}
.mtb10 {
  margin-top: 10px !important;
  margin-bottom: 10px !important;
}
.mtb15 {
  margin-top: 15px !important;
  margin-bottom: 15px !important;
}
.mtb20 {
  margin-top: 20px !important;
  margin-bottom: 20px !important;
}
/* text/font styling */
.tac {
  text-align: center !important;
}
.tar {
  text-align: right !important;
}
.tal {
  text-align: left !important;
}
.taj {
  text-align: justify !important;
}
.uppercase,
.ttu {
  text-transform: uppercase !important;
}
.lowercase,
.ttl {
  text-transform: lowercase !important;
}
.capitalize,
.ttc {
  text-transform: capitalize !important;
}
.underline,
.tdu {
  text-decoration: underline !important;
}
.line-through,
.tdl,
.tdlt {
  text-decoration: line-through;
}
.tdn {
  text-decoration: none !important;
}
.italic,
.fsi {
  font-style: italic !important;
}
.fsn {
  font-style: normal !important;
}
.bold,
.bold *,
.fwb,
.fwb * {
  font-weight: bold !important;
}
.plain,
.plainText,
.normal,
.normalText,
.plntxt,
.nrmltxt {
  font-weight: normal;
  font-variant: normal;
  font-style: normal;
}
.fwn,
.fwn * {
  font-weight: normal !important;
}
.fvsc {
  font-variant: small-caps !important;
}
/* styling lists both ol and ul */
ul[type=check] {
  list-style: none;
  margin-left: 0;
  padding-left: 1em;
  text-indent: -1em;
}
ul[type=check] li:before {
  content: '\2713';
}
ul[type=none] {
  list-style: none;
}
ol[type="lower-latin"],
ol[type="lower-alpha"] {
  list-style: lower-alpha outside none;
}
ol[type="lower-roman"] {
  list-style: lower-roman outside none;
}
ol[type="upper-latin"],
ol[type="upper-alpha"] {
  list-style: upper-alpha outside none;
}
ol[type="upper-roman"] {
  list-style: upper-roman outside none;
}
.lspi {
  list-style-position: inside;
}
.lspo {
  list-style-position: outside;
}
/* styling links */
a.tdu {
  text-decoration: underline !important;
}
a.tdu:hover {
  text-decoration: none !important;
}
/* text-shadow */
.tshw,
.tshfff {
  text-shadow: 0 0 0.3em #ffffff;
}
.tshb,
.tsh000 {
  text-shadow: 0 0 0.3em #000000;
}
/* colors */
.color_white,
.color_white *,
.c-w,
.c-w *,
.c-fff,
.c-fff * {
  color: #ffffff;
}
.color_black,
.color_black *,
.c-b,
.c-b *,
.c-000,
.c-000 * {
  color: #000000;
}
/* background colors */
.bgc-t,
.bgct {
  background-color: transparent;
}
.bgc-white,
.bgc-fff {
  background-color: #ffffff;
}
.bgc-black,
.bgc-000 {
  background-color: #000000;
}
/* background colors with less opacity (RGBA) -- won't work on lteIE8 */
.bgc-fffo9 {
  background-color: #fff;
  background-color: rgba(255, 255, 255, 0.9);
}
.bgc-fffo8 {
  background-color: #fff;
  background-color: rgba(255, 255, 255, 0.8);
}
.bgc-fffo7 {
  background-color: #fff;
  background-color: rgba(255, 255, 255, 0.7);
}
.bgc-fffo6 {
  background-color: #fff;
  background-color: rgba(255, 255, 255, 0.6);
}
.bgc-fffo5 {
  background-color: #fff;
  background-color: rgba(255, 255, 255, 0.5);
}
.bgc-fffo4 {
  background-color: #fff;
  background-color: rgba(255, 255, 255, 0.4);
}
.bgc-fffo3 {
  background-color: #fff;
  background-color: rgba(255, 255, 255, 0.3);
}
.bgc-fffo2 {
  background-color: #fff;
  background-color: rgba(255, 255, 255, 0.2);
}
.bgc-fffo1 {
  background-color: #fff;
  background-color: rgba(255, 255, 255, 0.1);
}
.bgc-000o9 {
  background-color: #000;
  background-color: rgba(0, 0, 0, 0.9);
}
.bgc-000o8 {
  background-color: #000;
  background-color: rgba(0, 0, 0, 0.8);
}
.bgc-000o7 {
  background-color: #000;
  background-color: rgba(0, 0, 0, 0.7);
}
.bgc-000o6 {
  background-color: #000;
  background-color: rgba(0, 0, 0, 0.6);
}
.bgc-000o5 {
  background-color: #000;
  background-color: rgba(0, 0, 0, 0.5);
}
.bgc-000o4 {
  background-color: #000;
  background-color: rgba(0, 0, 0, 0.4);
}
.bgc-000o3 {
  background-color: #000;
  background-color: rgba(0, 0, 0, 0.3);
}
.bgc-000o2 {
  background-color: #000;
  background-color: rgba(0, 0, 0, 0.2);
}
.bgc-000o1 {
  background-color: #000;
  background-color: rgba(0, 0, 0, 0.1);
}
/* borders */
.bdn,
.bd0 {
  border: none;
  border: 0;
}
.bd-fff {
  border: 1px solid #ffffff;
}
.bd-000 {
  border: 1px solid #000000;
}
.bdt0 {
  border-top: 0 !important;
}
.bdr0 {
  border-right: 0 !important;
}
.bdb0 {
  border-bottom: 0 !important;
}
.bdl0 {
  border-left: 0 !important;
}
/* opacity */
.o1 {
  opacity: 1;
}
.o-9 {
  opacity: 0.9;
}
.o-8 {
  opacity: 0.8;
}
.o-7 {
  opacity: 0.7;
}
.o-6 {
  opacity: 0.6;
}
.o-5 {
  opacity: 0.5;
}
.o-4 {
  opacity: 0.4;
}
.o-3 {
  opacity: 0.3;
}
.o-2 {
  opacity: 0.2;
}
.o-1 {
  opacity: 0.1;
}
/* misc */
.bzbdb,
.bzbb {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
button,
[onclick] {
  cursor: pointer;
}
.o0 {
  opacity: 0;
}
.o1 {
  opacity: 1;
}
.vat {
  vertical-align: top !important;
}
.vab {
  vertical-align: bottom !important;
}
.vam {
  vertical-align: middle !important;
}
.vabl {
  vertical-align: baseline !important;
}
.cb {
  clear: both;
}
.cl {
  clear: left;
}
.cr {
  clear: right;
}
.ww-bw {
  -ms-word-wrap: break-word;
  word-wrap: break-word;
}
.lhi {
  line-height: inherit !important;
}
.clearfix {
  clear: both;
}
.tnt {
  target-name: new;
  target-new: tab;
}
.tnw {
  target-name: new;
  target-new: window;
}
.cur-p {
  cursor: pointer !important;
}
.cur-d {
  cursor: default !important;
}
.cur-t {
  cursor: text !important;
}
/* bootstrap provoked masStyles */
@media (max-width: 767px) {
  .xs-tac {
    text-align: center !important;
  }
  .xs-tar {
    text-align: right !important;
  }
  .xs-tal {
    text-align: left !important;
  }
  .xs-fr {
    float: right !important;
  }
}
@media (min-width: 768px) {
  .gt-xs-tac {
    text-align: center !important;
  }
  .gt-xs-tar {
    text-align: right !important;
  }
  .gt-xs-tal {
    text-align: left !important;
  }
}
@media (max-width: 991px) {
  .lte-sm-tac {
    text-align: center !important;
  }
  .lte-sm-tar {
    text-align: right !important;
  }
  .lte-sm-tal {
    text-align: left !important;
  }
  .lte-sm-hidden {
    display: none;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .sm-tac {
    text-align: center !important;
  }
  .sm-tar {
    text-align: right !important;
  }
  .sm-tal {
    text-align: left !important;
  }
}
@media (min-width: 992px) {
  .gt-sm-tac {
    text-align: center !important;
  }
  .gt-sm-tar {
    text-align: right !important;
  }
  .gt-sm-tal {
    text-align: left !important;
  }
}
/* --------------------------------- */
/* ------------- reset ------------- */
/* --------------------------------- */
::selection {
  background-color: #ffcc00;
  color: #fff;
}
::-moz-selection {
  background-color: #ffcc00;
  color: #fff;
}
input,
textarea,
select {
  outline: none;
}
input:focus,
textarea:focus,
select:focus {
  outline: #5cb85c solid 1px;
}
a:focus {
  outline: none;
}
/* --------------------------------- */
/* -- site specific massUseStyles -- */
/* --------------------------------- */
a.bttn {
  text-decoration: none;
}
a.bttn:hover {
  text-decoration: none;
  opacity: 0.7;
}
.c-graydarker {
  color: #222222;
}
.c-graydark {
  color: #333333;
}
.c-gray {
  color: #555555;
}
.c-graylight {
  color: #777777;
}
.c-graylighter {
  color: #eeeeee;
}
.bgc-graydarker {
  background-color: #222222;
}
.bgc-graydark {
  background-color: #333333;
}
.bgc-gray {
  background-color: #555555;
}
.bgc-graylight {
  background-color: #777777;
}
.bgc-graylighter {
  background-color: #eeeeee;
}
.c-req,
.c-required,
.required,
.req {
  color: #f0ad4e;
}
.c-primary {
  color: #ffcc00;
}
.c-success {
  color: #5cb85c;
}
.c-info {
  color: #5bc0de;
}
.c-warning {
  color: #f0ad4e;
}
.c-danger {
  color: #df0014;
}
.bgc-primary {
  background-color: #ffcc00;
}
.bgc-success {
  background-color: #5cb85c;
}
.bgc-info {
  background-color: #5bc0de;
}
.bgc-warning {
  background-color: #f0ad4e;
}
.bgc-danger {
  background-color: #df0014;
}
.fz-small {
  font-size: 11px;
}
.fz-large {
  font-size: 15px;
}
/* --------------------------------- */
/* ------------ general ------------ */
/* --------------------------------- */
body {
  position: relative;
  font-family: Verdana, Verdana, Geneva, sans-serif;
  font-size: 12px;
  line-height: 17px;
  color: #000000;
  -ms-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  background: #ffffff;
}
html {
  font-size: 100%;
  /* 1 */
  -webkit-text-size-adjust: 100%;
  /* 2 */
  -ms-text-size-adjust: 100%;
  /* 2 */
}
* {
  -ms-box-sizing: inherit;
  -moz-box-sizing: inherit;
  -webkit-box-sizing: inherit;
  box-sizing: inherit;
}
h1,
.h1,
h2,
.h2,
h3,
.h3,
h4,
.h4,
h5,
.h5,
h6,
.h6 {
  font-family: inherit;
  line-height: 1.1;
  color: #062758;
  font-weight: 500;
}
h1,
.h1 {
  font-size: 22px;
  line-height: 50px;
}
h2,
.h2 {
  font-size: 19px;
  line-height: 30px;
}
h3,
.h3 {
  font-size: 15px;
  line-height: 25px;
}
h4,
.h4 {
  font-size: 14px;
}
h5,
.h5 {
  font-size: 12px;
}
h6,
.h6 {
  font-size: 11px;
}
p {
  line-height: 20px;
  margin-bottom: 10px;
}
a {
  line-height: inherit;
}
a:hover {
  text-decoration: none;
  color: #062758;
}
hr {
  border-color: #ddd;
  border-top-width: 3px;
  border-left-width: 2px;
  border-right-width: 2px;
  margin-top: 1em;
  margin-bottom: 1em;
}
/* --------------------------------- */
/* ------------ content  ----------- */
/* --------------------------------- */
body > .container-fluid {
  max-width: 1000px;
  padding: 0;
}
body > .container-fluid .row {
  margin: 0;
}
header.main nav.main {
  background-color: transparent;
  padding-bottom: 4px;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
  border-width: 0;
  border-bottom: 10px solid #8f8f8f;
}
header.main nav.main .navbar-header {
  margin: 0;
}
header.main nav.main .nav a {
  font-size: 12px;
  white-space: nowrap;
}
header.main nav.main .nav > li > a {
  background: #ffcc00;
  padding: 15px 0;
}
header.main nav.main .nav > li > a:hover {
  background: #062758;
  color: #ffffff;
}
header.main nav.main .nav > li + li {
  border-left: 1px solid #ffffff;
}
header.main nav.main .nav > li.active a {
  background: #062758;
  color: #ffffff;
}
header.main nav.main .nav .dropdown-menu {
  padding-top: 0;
  padding-bottom: 0;
  margin: 0;
  border-width: 0;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
  border-top: 5px solid #062758;
}
header.main nav.main .nav .dropdown-menu > li {
  background: url("../../images/bg-li-header.png");
  border-bottom: 1px solid #8f8f8f;
}
header.main nav.main .nav .dropdown-menu > li a {
  color: #ffffff;
}
header.main nav.main .nav .dropdown-menu > li a:hover {
  background: url("../../images/bg-li-header.png");
  color: #ffcc00;
}
@media (max-width: 767px) {
  header.main nav.main .nav .dropdown-menu {
    position: relative;
    float: none;
    background: none;
  }
}
header.main nav.main .navbar-toggle {
  border-color: #062758;
}
header.main nav.main .navbar-toggle .icon-bar {
  background: #062758;
}
header.main nav.main .navbar-collapse {
  margin: 0;
  padding: 0;
}
header.main nav.main .container-fluid {
  padding: 0;
}
header.main .banner-carousel {
  display: block;
  position: relative;
  padding-bottom: 20px;
}
header.main .banner-carousel .overlay {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  background: #fdfcf8;
  background: -webkit-linear-gradient(left, rgba(253, 252, 248, 0.95) 30%, rgba(253, 252, 248, 0));
  /* For Safari 5.1 to 6.0 */
  background: -o-linear-gradient(right, rgba(253, 252, 248, 0.95) 30%, rgba(253, 252, 248, 0));
  /* For Opera 11.1 to 12.0 */
  background: -moz-linear-gradient(right, rgba(253, 252, 248, 0.95) 30%, rgba(253, 252, 248, 0));
  /* For Firefox 3.6 to 15 */
  background: linear-gradient(to right, rgba(253, 252, 248, 0.95) 30%, rgba(253, 252, 248, 0));
  /* Standard syntax */
  padding: 5px 30% 0 5px;
}
header.main .banner-carousel .overlay .sns {
  padding: 20px 0 0 .75em;
}
header.main .banner-carousel .overlay .sns .icons {
  display: inline-block;
  padding-right: 10px;
}
header.main .banner-carousel .overlay .sns .icons .fa {
  color: #062758;
}
header.main .banner-carousel .overlay .sns .icons .fa:hover {
  color: #ffcc00;
}
@media (max-width: 767px) {
  header.main .banner-carousel .overlay {
    margin-top: -80px;
    height: calc(134%);
  }
}
@media (max-width: 545px) {
  header.main .banner-carousel .overlay {
    margin-top: -80px;
    height: calc(134%);
    background-image: none;
    padding: 0;
  }
  header.main .banner-carousel .overlay .logo {
    display: inline-block;
  }
  header.main .banner-carousel .overlay .logo img {
    width: 80px;
  }
  header.main .banner-carousel .overlay .sns {
    display: inline-block;
    padding-top: 0;
  }
  header.main .banner-carousel .overlay .sns .title {
    display: inline-block;
    padding: 5px 10px 0 0;
  }
}
@media (max-width: 430px) {
  header.main .banner-carousel .overlay .sns {
    display: none;
  }
}
footer.main {
  border-top: 20px solid #8f8f8f;
}
footer.main .row .thumbnail {
  margin: 0;
  background: none;
  border: none;
}
footer.main .news {
  border-bottom: 3px solid #ddd;
  margin-bottom: .75em;
  background: -webkit-linear-gradient(#dddddd, rgba(221, 221, 221, 0));
  /* For Safari 5.1 to 6.0 */
  background: -o-linear-gradient(#dddddd, rgba(221, 221, 221, 0));
  /* For Opera 11.1 to 12.0 */
  background: -moz-linear-gradient(#dddddd, rgba(221, 221, 221, 0));
  /* For Firefox 3.6 to 15 */
  background: linear-gradient(#dddddd, rgba(221, 221, 221, 0));
  /* Standard syntax */
  text-align: center;
}
footer.main .news .form-group {
  padding: .75em .5em;
}
section.main h1,
section.main h2,
section.main h3 {
  text-align: center;
  font-weight: bold;
}
section.main h1 {
  text-transform: uppercase;
}
section.main h2 {
  padding-bottom: .5em;
}
section.main h4 {
  color: #8f8f8f;
  padding-top: 20px;
}
section.main a {
  text-decoration: underline;
}
section.main a:hover {
  text-decoration: none;
}
@media (max-width: 767px) {
  section.main h1 {
    font-size: 18px;
    line-height: 25px;
  }
  section.main h2 {
    font-size: 14px;
    line-height: 20px;
  }
}
section.main .btn {
  margin-top: 10px;
  font-size: 12px;
  color: #ffffff;
  background: #062758;
  border: none;
}
section.main .btn:hover {
  color: #ffcc00;
}
section.main ul > li {
  background: url(../../images/bg-li.png) 0px 4px no-repeat;
  padding-left: 24px;
  list-style: none;
  line-height: 22px;
}
section.main ul > li:hover {
  background: url(../../images/bg-li-yellow.png) 0px 4px no-repeat;
  padding-left: 24px;
}
section.main .yellow {
  background: url(../../images/bg-li-yellow.png) 0px 11px no-repeat;
}
section.main.innertext {
  padding: 0 10px 20px;
}
/* --------------- section.main middle with new newsletter and icons---------------- */
.mainmid {
  padding-bottom: 20px;
}
.mainmid .logo {
  padding-top: 20px;
}
.mainmid .logo img {
  width: 100%;
}
@media (max-width: 767px) {
  .mainmid .logo img {
    max-width: 110px;
    margin: 0 auto;
  }
}
.mainmid .news-sns {
  background: url("../../images/bg-main-left.png") repeat-x;
  padding-right: 0.75em;
  padding-left: 0.75em;
}
.mainmid .news-sns hr {
  margin-top: 5px;
  margin-bottom: 10px;
}
.mainmid .news-sns .sns {
  text-align: right;
}
.mainmid .news-sns .sns .icons {
  display: inline-block;
  padding-right: 10px;
}
.mainmid .news-sns .sns .icons .fa {
  color: #062758;
}
.mainmid .news-sns .sns .icons .fa:hover {
  color: #ffcc00;
}
.mainmid .news-sns input:hover {
  border: 1px solid #ffcc00;
}
.mainmid .introduction article {
  padding: 20px 20px 0 20px;
}
.mainmid .introduction h1 {
  font-size: 20px;
  line-height: 1.3;
  padding-bottom: 5px;
}
.mainmid .introduction h2 {
  font-size: 18px;
  line-height: 1.3;
  padding-bottom: 5px;
}
/* -------------- content main information ---------------- ---------------- */
.maininformation > div.row {
  padding-top: 20px;
  padding-bottom: 20px;
}
.maininformation article {
  padding: 0 10px;
}
@media (max-width: 991px) {
  .maininformation article {
    padding-bottom: 20px;
  }
}
.maininformation article > div {
  border: 1px solid #ffcc00;
  padding: 4px;
}
.maininformation article > div img {
  margin: 0 auto 1em;
}
