/*! UIkit 2.21.0 | http://www.getuikit.com | (c) 2014 YOOtheme | MIT License */

/* HTML5 elements
 ========================================================================== */
/*
 * Corrects `block` display not defined in IE 8/9.
 */
article,
aside,
details,
figcaption,
figure,
footer,
header,
main,
nav,
section,
summary {
  display: block;
}

/* Fix viewport for IE10 snap mode
 ========================================================================== */
@media only screen and (max-width: 400px) {
  @-ms-viewport {
    width: device-width;
  }
}
/* ========================================================================
   Component: Grid
 ========================================================================== */
/*
 * 1. Makes grid more robust so that it can be used with other block elements like lists
 */
.uk-grid {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -ms-flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  /* 1 */
  margin: 0;
  padding: 0;
  list-style: none;
}
/*
 * DEPRECATED
 * Micro clearfix
 * Can't use `table` because it creates a 1px gap when it becomes a flex item, only in Webkit
 */
.uk-grid:before,
.uk-grid:after {
  content: "";
  display: block;
  overflow: hidden;
}
.uk-grid:after {
  clear: both;
}
/*
 * Grid cell
 * 1. Space is allocated solely based on content dimensions
 * 2. Makes grid more robust so that it can be used with other block elements
 * 3. DEPRECATED Using `float` to support IE9
 */
.uk-grid > * {
  /* 1 */
  -ms-flex: none;
  -webkit-flex: none;
  flex: none;
  /* 2 */
  margin: 0;
  /* 3 */
  float: left;
}
/*
 * Remove margin from the last-child
 */
.uk-grid > * > :last-child {
  margin-bottom: 0;
}
/* Grid gutter
 ========================================================================== */
/*
 * Default gutter
 */
/* Horizontal */
.uk-grid {
  margin-left: -25px;
}
.uk-grid > * {
  padding-left: 25px;
}
/* Vertical */
.uk-grid + .uk-grid,
.uk-grid-margin,
.uk-grid > * > .uk-panel + .uk-panel {
  margin-top: 25px;
}
/* Large screen and bigger */
@media only screen and (min-width: 1220px) {
  /* Horizontal */
  .uk-grid {
    margin-left: -35px;
  }
  .uk-grid > * {
    padding-left: 35px;
  }
  /* Vertical */
  .uk-grid + .uk-grid,
  .uk-grid-margin,
  .uk-grid > * > .uk-panel + .uk-panel {
    margin-top: 35px;
  }
}
/*
 * Collapse gutter
 */
/* Horizontal */
.uk-grid-collapse {
  margin-left: 0;
}
.uk-grid-collapse > * {
  padding-left: 0;
}
/* Vertical */
.uk-grid-collapse + .uk-grid-collapse,
.uk-grid-collapse > .uk-grid-margin,
.uk-grid-collapse > * > .uk-panel + .uk-panel {
  margin-top: 0;
}
/*
 * Small gutter
 */
/* Horizontal */
.uk-grid-small {
  margin-left: -10px;
}
.uk-grid-small > * {
  padding-left: 10px;
}
/* Vertical */
.uk-grid-small + .uk-grid-small,
.uk-grid-small > .uk-grid-margin,
.uk-grid-small > * > .uk-panel + .uk-panel {
  margin-top: 10px;
}
/*
 * Medium gutter
 */
/* Horizontal */
.uk-grid-medium {
  margin-left: -25px;
}
.uk-grid-medium > * {
  padding-left: 25px;
}
/* Vertical */
.uk-grid-medium + .uk-grid-medium,
.uk-grid-medium > .uk-grid-margin,
.uk-grid-medium > * > .uk-panel + .uk-panel {
  margin-top: 25px;
}
/* Modifier: `uk-grid-divider`
 ========================================================================== */
/*
 * Horizontal divider
 * Only works with the default gutter. Does not work with gutter collapse, small or large.
 * Does not work with `uk-push-*`, `uk-pull-*` and not if the columns float into the next row.
 */
.uk-grid-divider:not(:empty) {
  margin-left: -25px;
  margin-right: -25px;
}
.uk-grid-divider > * {
  padding-left: 25px;
  padding-right: 25px;
}
.uk-grid-divider > [class*='uk-width-1-']:not(.uk-width-1-1):nth-child(n+2),
.uk-grid-divider > [class*='uk-width-2-']:nth-child(n+2),
.uk-grid-divider > [class*='uk-width-3-']:nth-child(n+2),
.uk-grid-divider > [class*='uk-width-4-']:nth-child(n+2),
.uk-grid-divider > [class*='uk-width-5-']:nth-child(n+2),
.uk-grid-divider > [class*='uk-width-6-']:nth-child(n+2),
.uk-grid-divider > [class*='uk-width-7-']:nth-child(n+2),
.uk-grid-divider > [class*='uk-width-8-']:nth-child(n+2),
.uk-grid-divider > [class*='uk-width-9-']:nth-child(n+2) {
  border-left: 1px solid #dddddd;
}
/* Tablet and bigger */
@media only screen and (min-width: 768px) {
  .uk-grid-divider > [class*='uk-width-medium-']:not(.uk-width-medium-1-1):nth-child(n+2) {
    border-left: 1px solid #dddddd;
  }
}
/* Desktop and bigger */
@media only screen and (min-width: 960px) {
  .uk-grid-divider > [class*='uk-width-large-']:not(.uk-width-large-1-1):nth-child(n+2) {
    border-left: 1px solid #dddddd;
  }
}
/* Large screen and bigger */
@media only screen and (min-width: 1220px) {
  /*
     * Large gutter
     */
  .uk-grid-divider:not(:empty) {
    margin-left: -35px;
    margin-right: -35px;
  }
  .uk-grid-divider > * {
    padding-left: 35px;
    padding-right: 35px;
  }
  .uk-grid-divider:empty {
    margin-top: 35px;
    margin-bottom: 35px;
  }
}
/*
 * Vertical divider
 */
.uk-grid-divider:empty {
  margin-top: 25px;
  margin-bottom: 25px;
  border-top: 1px solid #dddddd;
}
/* Match panels in grids
 ========================================================================== */
.uk-grid-match > * {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
}
/*
 * 1. Behave like a block element
 */
.uk-grid-match > * > * {
  /* 1 */
  -ms-flex: none;
  -webkit-flex: none;
  flex: none;
  -ms-flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  width: 100%;
}
/* Even grid cell widths
 ========================================================================== */
[class*='uk-grid-width'] > * {
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  width: 100%;
}
.uk-grid-width-1-2 > * {
  width: 50%;
}
.uk-grid-width-1-3 > * {
  width: 33.333%;
}
.uk-grid-width-1-4 > * {
  width: 25%;
}
.uk-grid-width-1-5 > * {
  width: 20%;
}
.uk-grid-width-1-6 > * {
  width: 16.666%;
}
.uk-grid-width-1-10 > * {
  width: 10%;
}
/* Phone landscape and bigger */
@media only screen and (min-width: 480px) {
  .uk-grid-width-small-1-2 > * {
    width: 50%;
  }
  .uk-grid-width-small-1-3 > * {
    width: 33.333%;
  }
  .uk-grid-width-small-1-4 > * {
    width: 25%;
  }
  .uk-grid-width-small-1-5 > * {
    width: 20%;
  }
  .uk-grid-width-small-1-6 > * {
    width: 16.666%;
  }
  .uk-grid-width-small-1-10 > * {
    width: 10%;
  }
}
/* Tablet and bigger */
@media only screen and (min-width: 768px) {
  .uk-grid-width-medium-1-2 > * {
    width: 50%;
  }
  .uk-grid-width-medium-1-3 > * {
    width: 33.333%;
  }
  .uk-grid-width-medium-1-4 > * {
    width: 25%;
  }
  .uk-grid-width-medium-1-5 > * {
    width: 20%;
  }
  .uk-grid-width-medium-1-6 > * {
    width: 16.666%;
  }
  .uk-grid-width-medium-1-10 > * {
    width: 10%;
  }
}
/* Desktop and bigger */
@media only screen and (min-width: 960px) {
  .uk-grid-width-large-1-2 > * {
    width: 50%;
  }
  .uk-grid-width-large-1-3 > * {
    width: 33.333%;
  }
  .uk-grid-width-large-1-4 > * {
    width: 25%;
  }
  .uk-grid-width-large-1-5 > * {
    width: 20%;
  }
  .uk-grid-width-large-1-6 > * {
    width: 16.666%;
  }
  .uk-grid-width-large-1-10 > * {
    width: 10%;
  }
}
/* Large screen and bigger */
@media only screen and (min-width: 1220px) {
  .uk-grid-width-xlarge-1-2 > * {
    width: 50%;
  }
  .uk-grid-width-xlarge-1-3 > * {
    width: 33.333%;
  }
  .uk-grid-width-xlarge-1-4 > * {
    width: 25%;
  }
  .uk-grid-width-xlarge-1-5 > * {
    width: 20%;
  }
  .uk-grid-width-xlarge-1-6 > * {
    width: 16.666%;
  }
  .uk-grid-width-xlarge-1-10 > * {
    width: 10%;
  }
}
/* Sub-objects: `uk-width-*`
 ========================================================================== */
[class*='uk-width'] {
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  width: 100%;
}
/*
 * Widths
 */
/* Whole */
.uk-width-1-1 {
  width: 100%;
}
/* Halves */
.uk-width-1-2,
.uk-width-2-4,
.uk-width-3-6,
.uk-width-5-10 {
  width: 50%;
}
/* Thirds */
.uk-width-1-3,
.uk-width-2-6 {
  width: 33.333%;
}
.uk-width-2-3,
.uk-width-4-6 {
  width: 66.666%;
}
/* Quarters */
.uk-width-1-4 {
  width: 25%;
}
.uk-width-3-4 {
  width: 75%;
}
/* Fifths */
.uk-width-1-5,
.uk-width-2-10 {
  width: 20%;
}
.uk-width-2-5,
.uk-width-4-10 {
  width: 40%;
}
.uk-width-3-5,
.uk-width-6-10 {
  width: 60%;
}
.uk-width-4-5,
.uk-width-8-10 {
  width: 80%;
}
/* Sixths */
.uk-width-1-6 {
  width: 16.666%;
}
.uk-width-5-6 {
  width: 83.333%;
}
/* Tenths */
.uk-width-1-10 {
  width: 10%;
}
.uk-width-3-10 {
  width: 30%;
}
.uk-width-7-10 {
  width: 70%;
}
.uk-width-9-10 {
  width: 90%;
}
/* Phone landscape and bigger */
@media only screen and (min-width: 480px) {
  /* Whole */
  .uk-width-small-1-1 {
    width: 100%;
  }
  /* Halves */
  .uk-width-small-1-2,
  .uk-width-small-2-4,
  .uk-width-small-3-6,
  .uk-width-small-5-10 {
    width: 50%;
  }
  /* Thirds */
  .uk-width-small-1-3,
  .uk-width-small-2-6 {
    width: 33.333%;
  }
  .uk-width-small-2-3,
  .uk-width-small-4-6 {
    width: 66.666%;
  }
  /* Quarters */
  .uk-width-small-1-4 {
    width: 25%;
  }
  .uk-width-small-3-4 {
    width: 75%;
  }
  /* Fifths */
  .uk-width-small-1-5,
  .uk-width-small-2-10 {
    width: 20%;
  }
  .uk-width-small-2-5,
  .uk-width-small-4-10 {
    width: 40%;
  }
  .uk-width-small-3-5,
  .uk-width-small-6-10 {
    width: 60%;
  }
  .uk-width-small-4-5,
  .uk-width-small-8-10 {
    width: 80%;
  }
  /* Sixths */
  .uk-width-small-1-6 {
    width: 16.666%;
  }
  .uk-width-small-5-6 {
    width: 83.333%;
  }
  /* Tenths */
  .uk-width-small-1-10 {
    width: 10%;
  }
  .uk-width-small-3-10 {
    width: 30%;
  }
  .uk-width-small-7-10 {
    width: 70%;
  }
  .uk-width-small-9-10 {
    width: 90%;
  }
}
/* Tablet and bigger */
@media only screen and (min-width: 768px) {
  /* Whole */
  .uk-width-medium-1-1 {
    width: 100%;
  }
  /* Halves */
  .uk-width-medium-1-2,
  .uk-width-medium-2-4,
  .uk-width-medium-3-6,
  .uk-width-medium-5-10 {
    width: 50%;
  }
  /* Thirds */
  .uk-width-medium-1-3,
  .uk-width-medium-2-6 {
    width: 33.333%;
  }
  .uk-width-medium-2-3,
  .uk-width-medium-4-6 {
    width: 66.666%;
  }
  /* Quarters */
  .uk-width-medium-1-4 {
    width: 25%;
  }
  .uk-width-medium-3-4 {
    width: 75%;
  }
  /* Fifths */
  .uk-width-medium-1-5,
  .uk-width-medium-2-10 {
    width: 20%;
  }
  .uk-width-medium-2-5,
  .uk-width-medium-4-10 {
    width: 40%;
  }
  .uk-width-medium-3-5,
  .uk-width-medium-6-10 {
    width: 60%;
  }
  .uk-width-medium-4-5,
  .uk-width-medium-8-10 {
    width: 80%;
  }
  /* Sixths */
  .uk-width-medium-1-6 {
    width: 16.666%;
  }
  .uk-width-medium-5-6 {
    width: 83.333%;
  }
  /* Tenths */
  .uk-width-medium-1-10 {
    width: 10%;
  }
  .uk-width-medium-3-10 {
    width: 30%;
  }
  .uk-width-medium-7-10 {
    width: 70%;
  }
  .uk-width-medium-9-10 {
    width: 90%;
  }
}
/* Desktop and bigger */
@media only screen and (min-width: 960px) {
  /* Whole */
  .uk-width-large-1-1 {
    width: 100%;
  }
  /* Halves */
  .uk-width-large-1-2,
  .uk-width-large-2-4,
  .uk-width-large-3-6,
  .uk-width-large-5-10 {
    width: 50%;
  }
  /* Thirds */
  .uk-width-large-1-3,
  .uk-width-large-2-6 {
    width: 33.333%;
  }
  .uk-width-large-2-3,
  .uk-width-large-4-6 {
    width: 66.666%;
  }
  /* Quarters */
  .uk-width-large-1-4 {
    width: 25%;
  }
  .uk-width-large-3-4 {
    width: 75%;
  }
  /* Fifths */
  .uk-width-large-1-5,
  .uk-width-large-2-10 {
    width: 20%;
  }
  .uk-width-large-2-5,
  .uk-width-large-4-10 {
    width: 40%;
  }
  .uk-width-large-3-5,
  .uk-width-large-6-10 {
    width: 60%;
  }
  .uk-width-large-4-5,
  .uk-width-large-8-10 {
    width: 80%;
  }
  /* Sixths */
  .uk-width-large-1-6 {
    width: 16.666%;
  }
  .uk-width-large-5-6 {
    width: 83.333%;
  }
  /* Tenths */
  .uk-width-large-1-10 {
    width: 10%;
  }
  .uk-width-large-3-10 {
    width: 30%;
  }
  .uk-width-large-7-10 {
    width: 70%;
  }
  .uk-width-large-9-10 {
    width: 90%;
  }
}
/* Sub-object: `uk-push-*` and `uk-pull-*`
 ========================================================================== */
/*
 * Source ordering
 * Works only with `uk-width-medium-*`
 */
/* Tablet and bigger */
@media only screen and (min-width: 768px) {
  [class*='uk-push-'],
  [class*='uk-pull-'] {
    position: relative;
  }
  /*
     * Push
     */
  /* Halves */
  .uk-push-1-2,
  .uk-push-2-4,
  .uk-push-3-6,
  .uk-push-5-10 {
    left: 50%;
  }
  /* Thirds */
  .uk-push-1-3,
  .uk-push-2-6 {
    left: 33.333%;
  }
  .uk-push-2-3,
  .uk-push-4-6 {
    left: 66.666%;
  }
  /* Quarters */
  .uk-push-1-4 {
    left: 25%;
  }
  .uk-push-3-4 {
    left: 75%;
  }
  /* Fifths */
  .uk-push-1-5,
  .uk-push-2-10 {
    left: 20%;
  }
  .uk-push-2-5,
  .uk-push-4-10 {
    left: 40%;
  }
  .uk-push-3-5,
  .uk-push-6-10 {
    left: 60%;
  }
  .uk-push-4-5,
  .uk-push-8-10 {
    left: 80%;
  }
  /* Sixths */
  .uk-push-1-6 {
    left: 16.666%;
  }
  .uk-push-5-6 {
    left: 83.333%;
  }
  /* Tenths */
  .uk-push-1-10 {
    left: 10%;
  }
  .uk-push-3-10 {
    left: 30%;
  }
  .uk-push-7-10 {
    left: 70%;
  }
  .uk-push-9-10 {
    left: 90%;
  }
  /*
     * Pull
     */
  /* Halves */
  .uk-pull-1-2,
  .uk-pull-2-4,
  .uk-pull-3-6,
  .uk-pull-5-10 {
    left: -50%;
  }
  /* Thirds */
  .uk-pull-1-3,
  .uk-pull-2-6 {
    left: -33.333%;
  }
  .uk-pull-2-3,
  .uk-pull-4-6 {
    left: -66.666%;
  }
  /* Quarters */
  .uk-pull-1-4 {
    left: -25%;
  }
  .uk-pull-3-4 {
    left: -75%;
  }
  /* Fifths */
  .uk-pull-1-5,
  .uk-pull-2-10 {
    left: -20%;
  }
  .uk-pull-2-5,
  .uk-pull-4-10 {
    left: -40%;
  }
  .uk-pull-3-5,
  .uk-pull-6-10 {
    left: -60%;
  }
  .uk-pull-4-5,
  .uk-pull-8-10 {
    left: -80%;
  }
  /* Sixths */
  .uk-pull-1-6 {
    left: -16.666%;
  }
  .uk-pull-5-6 {
    left: -83.333%;
  }
  /* Tenths */
  .uk-pull-1-10 {
    left: -10%;
  }
  .uk-pull-3-10 {
    left: -30%;
  }
  .uk-pull-7-10 {
    left: -70%;
  }
  .uk-pull-9-10 {
    left: -90%;
  }
}
/* ========================================================================
   Component: Panel
 ========================================================================== */
/*
 * 1. Needed for `a` elements
 * 2. Create position context for badges
 */
.uk-panel {
  /* 1 */
  display: block;
  /* 2 */
  position: relative;
}
/*
 * Allow panels to be anchors
 */
.uk-panel,
.uk-panel:hover {
  text-decoration: none;
}
/*
 * Micro clearfix to make panels more robust
 */
.uk-panel:before,
.uk-panel:after {
  content: "";
  display: table;
}
.uk-panel:after {
  clear: both;
}
/*
 * Remove margin from the last-child if not `uk-widget-title`
 */
.uk-panel > :not(.uk-panel-title):last-child {
  margin-bottom: 0;
}
/* Sub-object: `uk-panel-title`
 ========================================================================== */
.uk-panel-title {
  margin-top: 0;
  margin-bottom: 15px;
  font-size: 18px;
  line-height: 24px;
  font-weight: normal;
  text-transform: none;
  color: #444444;
}
/* Sub-object: `uk-panel-badge`
 ========================================================================== */
.uk-panel-badge {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 1;
}
/* Sub-object: `uk-panel-teaser`
 ========================================================================== */
.uk-panel-teaser {
  margin-bottom: 15px;
}
/* Modifier: `uk-panel-box`
 ========================================================================== */
.uk-panel-box {
  padding: 15px;
  background: #fafafa;
  color: #444444;
  border: 1px solid #dddddd;
  border-radius: 4px;
}
.uk-panel-box-hover:hover {
  color: #444444;
}
.uk-panel-box .uk-panel-title {
  color: #444444;
}
.uk-panel-box .uk-panel-badge {
  top: 10px;
  right: 10px;
}
.uk-panel-box .uk-panel-teaser {
  margin-top: -16px;
  margin-left: -16px;
  margin-right: -16px;
}
/*
 * Nav in panel
 */
.uk-panel-box > .uk-nav-side {
  margin: 0 -15px;
}
/*
 * Sub-modifier: `uk-panel-box-primary`
 */
.uk-panel-box-primary {
  background-color: #ebf7fd;
  color: #2d7091;
  border-color: rgba(45, 112, 145, 0.3);
}
.uk-panel-box-primary-hover:hover {
  color: #2d7091;
}
.uk-panel-box-primary .uk-panel-title {
  color: #2d7091;
}
/*
 * Sub-modifier: `uk-panel-box-secondary`
 */
.uk-panel-box-secondary {
  background-color: #ffffff;
  color: #444444;
}
.uk-panel-box-secondary-hover:hover {
  color: #444444;
}
.uk-panel-box-secondary .uk-panel-title {
  color: #444444;
}
/* Modifier: `uk-panel-hover`
 ========================================================================== */
.uk-panel-hover {
  padding: 15px;
  color: #444444;
  border: 1px solid transparent;
  border-radius: 4px;
}
.uk-panel-hover:hover {
  background: #fafafa;
  color: #444444;
  border-color: #dddddd;
}
.uk-panel-hover .uk-panel-badge {
  top: 10px;
  right: 10px;
}
.uk-panel-hover .uk-panel-teaser {
  margin-top: -16px;
  margin-left: -16px;
  margin-right: -16px;
}
/* Modifier: `uk-panel-header`
 ========================================================================== */
.uk-panel-header .uk-panel-title {
  padding-bottom: 10px;
  border-bottom: 1px solid #dddddd;
  color: #444444;
}
/* Modifier: `uk-panel-space`
 ========================================================================== */
.uk-panel-space {
  padding: 30px;
}
.uk-panel-space .uk-panel-badge {
  top: 30px;
  right: 30px;
}
/* Modifier: `uk-panel-divider`
 ========================================================================== */
.uk-panel + .uk-panel-divider {
  margin-top: 50px !important;
}
.uk-panel + .uk-panel-divider:before {
  content: "";
  display: block;
  position: absolute;
  top: -25px;
  left: 0;
  right: 0;
  border-top: 1px solid #dddddd;
}
/* Large screen and bigger */
@media only screen and (min-width: 1220px) {
  .uk-panel + .uk-panel-divider {
    margin-top: 70px !important;
  }
  .uk-panel + .uk-panel-divider:before {
    top: -35px;
  }
}
.uk-panel-box .uk-panel-teaser {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
  overflow: hidden;
  -webkit-transform: translateZ(0);
}
/* ========================================================================
   Component: Block
 ========================================================================== */
.uk-block {
  position: relative;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  padding-top: 20px;
  padding-bottom: 20px;
}
/* Phone landscape and bigger */
@media only screen and (min-width: 768px) {
  .uk-block {
    padding-top: 50px;
    padding-bottom: 50px;
  }
}
/*
 * Micro clearfix to make blocks more robust
 */
.uk-block:before,
.uk-block:after {
  content: "";
  display: table;
}
.uk-block:after {
  clear: both;
}
/*
 * Remove margin from the last-child
 */
.uk-block > :last-child {
  margin-bottom: 0;
}
/* Padding Modifier
 ========================================================================== */
/*
 * Large padding
 */
.uk-block-large {
  padding-top: 20px;
  padding-bottom: 20px;
}
/* Tablets and bigger */
@media only screen and (min-width: 768px) {
  .uk-block-large {
    padding-top: 50px;
    padding-bottom: 50px;
  }
}
/* Desktop and bigger */
@media only screen and (min-width: 960px) {
  .uk-block-large {
    padding-top: 100px;
    padding-bottom: 100px;
  }
}
/* Color Modifier
 ========================================================================== */
/*
 * Default
 */
.uk-block-default {
  background: #ffffff;
}
/*
 * Muted
 */
.uk-block-muted {
  background: #f9f9f9;
}
/*
 * Primary
 */
.uk-block-primary {
  background: #00a8e6;
}
/*
 * Secondary
 */
.uk-block-secondary {
  background: #222222;
}
/*
 * Adjust padding between equal colored blocks
 */
.uk-block-default + .uk-block-default,
.uk-block-muted + .uk-block-muted,
.uk-block-primary + .uk-block-primary,
.uk-block-secondary + .uk-block-secondary {
  padding-top: 0;
}

/* ========================================================================
   Component: List
 ========================================================================== */
.uk-list {
  padding: 0;
  list-style: none;
}
/*
 * Micro clearfix to make list more robust
 */
.uk-list > li:before,
.uk-list > li:after {
  content: "";
  display: table;
}
.uk-list > li:after {
  clear: both;
}
/*
 * Remove margin from the last-child
 */
.uk-list > li > :last-child {
  margin-bottom: 0;
}
/*
 * Nested lists
 */
.uk-list ul {
  margin: 0;
  padding-left: 20px;
  list-style: none;
}
/* Modifier: `uk-list-line`
 ========================================================================== */
.uk-list-line > li:nth-child(n+2) {
  margin-top: 5px;
  padding-top: 5px;
  border-top: 1px solid #dddddd;
}
/* Modifier: `uk-list-striped`
 ========================================================================== */
.uk-list-striped > li {
  padding: 5px 5px;
  border-bottom: 1px solid #dddddd;
}
.uk-list-striped > li:nth-of-type(odd) {
  background: #fafafa;
}
/* Modifier: `uk-list-space`
 ========================================================================== */
.uk-list-space > li:nth-child(n+2) {
  margin-top: 10px;
}
.uk-list-striped > li:first-child {
  border-top: 1px solid #dddddd;
}
/* ========================================================================
   Component: Description list
 ========================================================================== */
/* Modifier: `uk-description-list-horizontal`
 ========================================================================== */
/* Tablet and bigger */
@media only screen and (min-width: 768px) {
  .uk-description-list-horizontal {
    overflow: hidden;
  }
  .uk-description-list-horizontal > dt {
    width: 160px;
    float: left;
    clear: both;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
  .uk-description-list-horizontal > dd {
    margin-left: 180px;
  }
}
/* Modifier: `uk-description-list-line`
 ========================================================================== */
.uk-description-list-line > dt {
  font-weight: normal;
}
.uk-description-list-line > dt:nth-child(n+2) {
  margin-top: 5px;
  padding-top: 5px;
  border-top: 1px solid #dddddd;
}
.uk-description-list-line > dd {
  color: #999999;
}

/* ========================================================================
   Component: Button
 ========================================================================== */
/*
 * Removes inner padding and border in Firefox 4+.
 */
.uk-button::-moz-focus-inner {
  border: 0;
  padding: 0;
}
/*
 * 1. Correct inability to style clickable `input` types in iOS.
 * 2. Remove margins in Chrome, Safari and Opera.
 * 3. Remove borders for `button`.
 * 4. Address `overflow` set to `hidden` in IE 8/9/10/11.
 * 5. Correct `font` properties and `color` not being inherited for `button`.
 * 6. Address inconsistent `text-transform` inheritance which is only inherit in Firefox and IE
 * 7. Style
 * 8. `line-height` is used to create a height
 * 9. `min-height` is necessary for `input` elements in Firefox and Opera because `line-height` is not working.
 * 10. Reset button group whitespace hack
 * 11. Required for `a`.
 */
.uk-button {
  /* 1 */
  -webkit-appearance: none;
  /* 2 */
  margin: 0;
  /* 3 */
  border: none;
  /* 4 */
  overflow: visible;
  /* 5 */
  font: inherit;
  color: #444444;
  /* 6 */
  text-transform: none;
  /* 7 */
  display: inline-block;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  padding: 0 12px;
  background: #f5f5f5;
  vertical-align: middle;
  /* 8 */
  line-height: 28px;
  /* 9 */
  min-height: 30px;
  /* 10 */
  font-size: 1rem;
  /* 11 */
  text-decoration: none;
  text-align: center;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 4px;
  text-shadow: 0 1px 0 #ffffff;
}
.uk-button:not(:disabled) {
  cursor: pointer;
}
/*
 * Hover
 * 1. Apply hover style also to focus state
 * 2. Remove default focus style
 * 3. Required for `a` elements
 */
.uk-button:hover,
.uk-button:focus {
  background-color: #fafafa;
  color: #444444;
  /* 2 */
  outline: none;
  /* 3 */
  text-decoration: none;
  border-color: rgba(0, 0, 0, 0.16);
}
/* Active */
.uk-button:active,
.uk-button.uk-active {
  background-color: #eeeeee;
  color: #444444;
}
/* Color modifiers
 ========================================================================== */
/*
 * Modifier: `uk-button-primary`
 */
.uk-button-primary {
  background-color: #00a8e6;
  color: #ffffff;
}
/* Hover */
.uk-button-primary:hover,
.uk-button-primary:focus {
  background-color: #35b3ee;
  color: #ffffff;
}
/* Active */
.uk-button-primary:active,
.uk-button-primary.uk-active {
  background-color: #0091ca;
  color: #ffffff;
}
/*
 * Modifier: `uk-button-success`
 */
.uk-button-success {
  background-color: #8cc14c;
  color: #ffffff;
}
/* Hover */
.uk-button-success:hover,
.uk-button-success:focus {
  background-color: #8ec73b;
  color: #ffffff;
}
/* Active */
.uk-button-success:active,
.uk-button-success.uk-active {
  background-color: #72ae41;
  color: #ffffff;
}
/*
 * Modifier: `uk-button-danger`
 */
.uk-button-danger {
  background-color: #da314b;
  color: #ffffff;
}
/* Hover */
.uk-button-danger:hover,
.uk-button-danger:focus {
  background-color: #e4354f;
  color: #ffffff;
}
/* Active */
.uk-button-danger:active,
.uk-button-danger.uk-active {
  background-color: #c91032;
  color: #ffffff;
}
/* Disabled state
 * Overrides also the color modifiers
 ========================================================================== */
/* Equal for all button types */
.uk-button:disabled {
  background-color: #fafafa;
  color: #999999;
  border-color: rgba(0, 0, 0, 0.06);
  box-shadow: none;
  text-shadow: 0 1px 0 #ffffff;
}
/* Modifier: `uk-button-link`
 ========================================================================== */
/* Reset */
.uk-button-link,
.uk-button-link:hover,
.uk-button-link:focus,
.uk-button-link:active,
.uk-button-link.uk-active,
.uk-button-link:disabled {
  border-color: transparent;
  background: none;
  box-shadow: none;
  text-shadow: none;
}
/* Color */
.uk-button-link {
  color: #0077dd;
}
.uk-button-link:hover,
.uk-button-link:focus,
.uk-button-link:active,
.uk-button-link.uk-active {
  color: #005599;
  text-decoration: underline;
}
.uk-button-link:disabled {
  color: #999999;
}
/* Focus */
.uk-button-link:focus {
  outline: 1px dotted;
}
/* Size modifiers
 ========================================================================== */
.uk-button-mini {
  min-height: 20px;
  padding: 0 6px;
  line-height: 18px;
  font-size: 11px;
}
.uk-button-small {
  min-height: 25px;
  padding: 0 10px;
  line-height: 23px;
  font-size: 12px;
}
.uk-button-large {
  min-height: 40px;
  padding: 0 15px;
  line-height: 38px;
  font-size: 16px;
  border-radius: 5px;
}
/* Sub-object `uk-button-group`
 ========================================================================== */
/*
 * 1. Behave like buttons
 * 2. Create position context for dropdowns
 * 3. Remove whitespace between child elements when using `inline-block`
 * 4. Prevent buttons from wrapping
 * 5. Remove whitespace between child elements when using `inline-block`
 */
.uk-button-group {
  /* 1 */
  display: inline-block;
  vertical-align: middle;
  /* 2 */
  position: relative;
  /* 3 */
  font-size: 0.001px;
  /* 4 */
  white-space: nowrap;
}
.uk-button-group > * {
  display: inline-block;
}
/* 5 */
.uk-button-group .uk-button {
  vertical-align: top;
}
/* Sub-object: `uk-button-dropdown`
 ========================================================================== */
/*
 * 1. Behave like buttons
 * 2. Create position context for dropdowns
 */
.uk-button-dropdown {
  /* 1 */
  display: inline-block;
  vertical-align: middle;
  /* 2 */
  position: relative;
}
/* Color modifiers
     ========================================================================== */
.uk-button-primary,
.uk-button-success,
.uk-button-danger {
  box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.05);
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.1);
}
.uk-button-primary:hover,
.uk-button-primary:focus,
.uk-button-success:hover,
.uk-button-success:focus,
.uk-button-danger:hover,
.uk-button-danger:focus {
  border-color: rgba(0, 0, 0, 0.21);
}
/* Sub-object `uk-button-group`
     ========================================================================== */
/*
     * Reset border-radius
     */
.uk-button-group > .uk-button:not(:first-child):not(:last-child),
.uk-button-group > div:not(:first-child):not(:last-child) .uk-button {
  border-left-color: rgba(0, 0, 0, 0.1);
  border-right-color: rgba(0, 0, 0, 0.1);
  border-radius: 0;
}
.uk-button-group > .uk-button:first-child,
.uk-button-group > div:first-child .uk-button {
  border-right-color: rgba(0, 0, 0, 0.1);
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.uk-button-group > .uk-button:last-child,
.uk-button-group > div:last-child .uk-button {
  border-left-color: rgba(0, 0, 0, 0.1);
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}
/*
     * Collapse border
     */
.uk-button-group > .uk-button:nth-child(n+2),
.uk-button-group > div:nth-child(n+2) .uk-button {
  margin-left: -1px;
}
/*
     * Create position context to superimpose the successor elements border
     * Known issue: If you use an `a` element as button and an icon inside,
     * the active state will not work if you click the icon inside the button
     * Workaround: Just use a `button` or `input` element as button
     */
.uk-button-group .uk-button:hover,
.uk-button-group .uk-button:active {
  position: relative;
}

/* ========================================================================
   Component: Close
 ========================================================================== */
/*
 * Removes inner padding and border in Firefox 4+.
 */
.uk-close::-moz-focus-inner {
  border: 0;
  padding: 0;
}
/*
 * 1. Correct inability to style clickable `input` types in iOS.
 * 2. Remove margins in Chrome, Safari and Opera.
 * 3. Remove borders for `button`.
 * 4. Address `overflow` set to `hidden` in IE 8/9/10/11.
 * 5. Correct `font` properties and `color` not being inherited for `button`.
 * 6. Address inconsistent `text-transform` inheritance which is only inherit in Firefox and IE
 * 7. Remove default `button` padding and background color
 * 8. Style
 */
.uk-close {
  /* 1 */
  -webkit-appearance: none;
  /* 2 */
  margin: 0;
  /* 3 */
  border: none;
  /* 4 */
  overflow: visible;
  /* 5 */
  font: inherit;
  color: inherit;
  /* 6 */
  text-transform: none;
  /* 7. */
  padding: 0;
  background: transparent;
  /* 8 */
  display: inline-block;
  -moz-box-sizing: content-box;
  box-sizing: content-box;
  width: 20px;
  line-height: 20px;
  text-align: center;
  vertical-align: middle;
  opacity: 0.3;
}
/* Icon */
.uk-close:after {
  display: block;
  content: "\f00d";
  font-family: FontAwesome;
}
/*
 * Hover
 * 1. Apply hover style also to focus state
 * 2. Remove default focus style
 * 3. Required for `a` elements
 */
.uk-close:hover,
.uk-close:focus {
  opacity: 0.5;
  /* 2 */
  outline: none;
  /* 3 */
  color: inherit;
  text-decoration: none;
  cursor: pointer;
}
/* Modifier
 ========================================================================== */
.uk-close-alt {
  padding: 2px;
  border-radius: 50%;
  background: #ffffff;
  opacity: 1;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.1), 0 0 6px rgba(0, 0, 0, 0.3);
}
/* Hover */
.uk-close-alt:hover,
.uk-close-alt:focus {
  opacity: 1;
}
/* Icon */
.uk-close-alt:after {
  opacity: 0.5;
}
.uk-close-alt:hover:after,
.uk-close-alt:focus:after {
  opacity: 0.8;
}
/* ========================================================================
   Component: Badge
 ========================================================================== */
.uk-badge {
  display: inline-block;
  padding: 0 5px;
  background: #00a8e6;
  font-size: 10px;
  font-weight: bold;
  line-height: 14px;
  color: #ffffff;
  text-align: center;
  vertical-align: middle;
  text-transform: none;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 2px;
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.1);
}
/*
 * Keep color when badge is a link
 */
a.uk-badge:hover {
  color: #ffffff;
}
/* Modifier: `uk-badge-notification`;
 ========================================================================== */
.uk-badge-notification {
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  min-width: 18px;
  border-radius: 500px;
  font-size: 12px;
  line-height: 18px;
}
/* Color modifier
 ========================================================================== */
/*
 * Modifier: `uk-badge-success`
 */
.uk-badge-success {
  background-color: #8cc14c;
}
/*
 * Modifier: `uk-badge-warning`
 */
.uk-badge-warning {
  background-color: #faa732;
}
/*
 * Modifier: `uk-badge-danger`
 */
.uk-badge-danger {
  background-color: #da314b;
}
/* ========================================================================
   Component: Alert
 ========================================================================== */
.uk-alert {
  margin-bottom: 15px;
  padding: 10px;
  background: #ebf7fd;
  color: #2d7091;
  border: 1px solid rgba(45, 112, 145, 0.3);
  border-radius: 4px;
  text-shadow: 0 1px 0 #ffffff;
}
/*
 * Add margin if adjacent element
 */
* + .uk-alert {
  margin-top: 15px;
}
/*
 * Remove margin from the last-child
 */
.uk-alert > :last-child {
  margin-bottom: 0;
}
/*
 * Keep color for headings if the default heading color is changed
 */
.uk-alert h1,
.uk-alert h2,
.uk-alert h3,
.uk-alert h4,
.uk-alert h5,
.uk-alert h6 {
  color: inherit;
}
/* Close in alert
 ========================================================================== */
.uk-alert > .uk-close:first-child {
  float: right;
}
/*
 * Remove margin from adjacent element
 */
.uk-alert > .uk-close:first-child + * {
  margin-top: 0;
}
/* Modifier: `uk-alert-success`
 ========================================================================== */
.uk-alert-success {
  background: #f2fae3;
  color: #659f13;
  border-color: rgba(101, 159, 19, 0.3);
}
/* Modifier: `uk-alert-warning`
 ========================================================================== */
.uk-alert-warning {
  background: #fffceb;
  color: #e28327;
  border-color: rgba(226, 131, 39, 0.3);
}
/* Modifier: `uk-alert-danger`
 ========================================================================== */
.uk-alert-danger {
  background: #fff1f0;
  color: #d85030;
  border-color: rgba(216, 80, 48, 0.3);
}
/* Modifier: `uk-alert-large`
 ========================================================================== */
.uk-alert-large {
  padding: 20px;
}
.uk-alert-large > .uk-close:first-child {
  margin: -10px -10px 0 0;
}

/*
 * Visibility
 * Avoids setting display to `block` so it works also with `inline-block` and `table`
 */
/* Desktop and bigger */
@media only screen and (min-width: 960px) {
  .uk-visible-small {
    display: none !important;
  }
  .uk-visible-medium {
    display: none !important;
  }
  .uk-hidden-large {
    display: none !important;
  }
}
/* Tablets portrait */
@media only screen and (min-width: 768px) and (max-width: 959px) {
  .uk-visible-small {
    display: none !important;
  }
  .uk-visible-large {
    display: none !important ;
  }
  .uk-hidden-medium {
    display: none !important;
  }
}
/* Phone landscape and smaller*/
@media only screen and (max-width: 767px) {
  .uk-visible-medium {
    display: none !important;
  }
  .uk-visible-large {
    display: none !important;
  }
  .uk-hidden-small {
    display: none !important;
  }
}
/* Remove from the flow and screen readers on any device */
.uk-hidden {
  display: none !important;
  visibility: hidden !important;
}
/* It's hidden, but still affects layout */
.uk-invisible {
  visibility: hidden !important;
}
/* Show on hover */
.uk-visible-hover:hover .uk-hidden,
.uk-visible-hover:hover .uk-invisible {
  display: block !important;
  visibility: visible !important;
}
.uk-visible-hover-inline:hover .uk-hidden,
.uk-visible-hover-inline:hover .uk-invisible {
  display: inline-block !important;
  visibility: visible !important;
}
/* Hide on touch */
.uk-touch .uk-hidden-touch,
.uk-notouch .uk-hidden-notouch {
  display: none !important;
}
/* ========================================================================
   DESIGNCSS
 ========================================================================== */
.fl-left {
  float: left
}
.fl-right {
  float: right
}
a.hov img:hover{
  opacity: 0.8;
}
img.fl-left {
  margin: 0 20px 10px 0
}
img.fl-right {
  margin: 0 0 10px 20px
}
.txt-l {
  text-align: left
}
.txt-c {
  text-align: center;
  text-align: -webkit-center;
  text-align: -moz-center
}
.txt-c-i {
  text-align: center !important
}
.txt-r {
  text-align: right
}
.txt-j {
  text-align: justify
}
.txt-vb {
  vertical-align: bottom
}
.txt-vt {
  vertical-align: top
}
.txt-vc {
  vertical-align: middle
}
.txt-vc-i {
  vertical-align: middle !important
}
.lh-10 {
  line-height: 1.0
}
.lh-12 {
  line-height: 1.2
}
.lh-14 {
  line-height: 1.4
}
.lh-16 {
  line-height: 1.6
}
.lh-18 {
  line-height: 1.8
}
.lh-20 {
  line-height: 2.0
}
.lh-22 {
  line-height: 2.2
}
.lh-25 {
  line-height: 2.5
}
.lh-30 {
  line-height: 3.0
}
.lh-35 {
  line-height: 3.5
}

.z1 {
  z-index: 1 !important
}
.z2 {
  z-index: 2 !important
}
.z3 {
  z-index: 3 !important
}
.z4 {
  z-index: 4 !important
}
.z5 {
  z-index: 5 !important
}
.border-zero {
  border: 0px !important
}
ul.none {
  list-style-type: none
}
ul.indent li {
  text-indent: -1em
}
.underline {
  text-decoration: underline !important
}
.del {
  text-decoration: line-through
}
.noborder {
  border: 0
}
.clear {
  clear: both
}
.clearfix {
  overflow: hidden;
*zoom:1
}
.hide-text {
  text-indent: -119988px;
  overflow: hidden;
  text-align: left;
  text-transform: capitalize
}
a.img {
  display: inline-block;
  vertical-align: middle;
*vertical-align:auto;
*zoom:1;
*display:inline;
  width: auto
}
img.auto, .auto-img img {
  width: 100%;
  height: auto
}
img.re-img {
  width: auto;
  height: inherit
}
.d_inline {
  display: inline
}
.d_block {
  display: block
}
.d_table {
  display: table
}
.d_t_cel {
  display: table-cell
}
.d_none {
  display: none
}
.d_in_b {
  display: inline-block;
  vertical-align: middle;
*vertical-align:auto;
*zoom:1;
*display:inline
}
.maru {
  -moz-border-radius: 200px;
  -webkit-border-radius: 200px;
  border-radius: 200px
}

.fs-b {
  font-weight: bold
}
.fs-i {
  font-style: italic
}
.fs-u {
  text-decoration: underline
}
.fs-d {
  text-decoration: line-through
}
.fs-cl {
  text-decoration: none
}
.fs-n {
  font-weight: normal
}
.f65 {
  font-size: 65%
}
.f75 {
  font-size: 75%
}
.f90 {
  font-size: 90%
}
.f115 {
  font-size: 115%
}
.f125 {
  font-size: 125%
}
.f150 {
  font-size: 150%
}
.f175 {
  font-size: 175%
}
.f200 {
  font-size: 200%
}
.f-sss {
  font-size: xx-small
}
.f-ss {
  font-size: x-small
}
.f-s {
  font-size: small
}
.f-m {
  font-size: medium
}
.f-l {
  font-size: large
}
.f-ll {
  font-size: x-large
}
.f-lll {
  font-size: xx-large
}
.f08em {
  font-size: 0.8em
}
.f09em {
  font-size: 0.9em
}
.f10em {
  font-size: 1.0em
}
.f11em {
  font-size: 1.1em
}
.f12em {
  font-size: 1.2em
}
.f13em {
  font-size: 1.3em
}
.f14em {
  font-size: 1.4em
}
.f15em {
  font-size: 1.5em
}
.f16em {
  font-size: 1.6em
}
.f17em {
  font-size: 1.7em
}
.f18em {
  font-size: 1.8em
}
.f19em {
  font-size: 1.9em
}
.f20em {
  font-size: 2.0em
}
.f21em {
  font-size: 2.1em
}
.f22em {
  font-size: 2.2em
}
.f23em {
  font-size: 2.3em
}
.f24em {
  font-size: 2.4em
}
.f8pt {
  font-size: 8.5pt !important
}
.f9pt {
  font-size: 9pt !important
}
.f10pt {
  font-size: 10pt !important
}
.f11pt {
  font-size: 11pt !important
}
.f12pt {
  font-size: 12pt !important
}
.f13pt {
  font-size: 13pt !important
}
.f14pt {
  font-size: 14pt !important
}
.f15pt {
  font-size: 15pt !important
}
.f16pt {
  font-size: 16pt !important
}
.f17pt {
  font-size: 17pt !important
}
.f18pt {
  font-size: 18pt !important
}
.f19pt {
  font-size: 19pt !important
}
.f20pt {
  font-size: 20pt !important
}
.f21pt {
  font-size: 21pt !important
}
.f22pt {
  font-size: 22pt !important
}
.f23pt {
  font-size: 23pt !important
}
.f24pt {
  font-size: 24pt !important
}
.m-auto {
  margin-left: auto;
  margin-right: auto
}
.m0 {
  margin: 0 !important
}
.m0-t {
  margin-top: 0 !important
}
.m0-r {
  margin-right: 0 !important
}
.m0-b {
  margin-bottom: 0 !important
}
.m0-l {
  margin-left: 0 !important
}
.m2 {
  margin: 2px !important
}
.m2-t {
  margin-top: 2px !important
}
.m2-r {
  margin-right: 2px !important
}
.m2-b {
  margin-bottom: 2px !important
}
.m2-l {
  margin-left: 2px !important
}
.m3 {
  margin: 3px !important
}
.m3-t {
  margin-top: 3px !important
}
.m3-r {
  margin-right: 3px !important
}
.m3-b {
  margin-bottom: 3px !important
}
.m3-l {
  margin-left: 3px !important
}
.m5 {
  margin: 5px !important
}
.m5-t {
  margin-top: 5px !important
}
.m5-r {
  margin-right: 5px !important
}
.m5-b {
  margin-bottom: 5px !important
}
.m5-l {
  margin-left: 5px !important
}
.m8 {
  margin: 8px !important
}
.m8-t {
  margin-top: 8px !important
}
.m8-r {
  margin-right: 8px !important
}
.m8-b {
  margin-bottom: 8px !important
}
.m8-l {
  margin-left: 8px !important
}
.m10 {
  margin: 10px !important
}
.m10-t {
  margin-top: 10px !important
}
.m10-r {
  margin-right: 10px !important
}
.m10-b {
  margin-bottom: 10px !important
}
.m10-l {
  margin-left: 10px !important
}
.m12 {
  margin: 12px !important
}
.m12-t {
  margin-top: 12px !important
}
.m12-r {
  margin-right: 12px !important
}
.m12-b {
  margin-bottom: 12px !important
}
.m12-l {
  margin-left: 12px !important
}
.m15 {
  margin: 15px !important
}
.m15-t {
  margin-top: 15px !important
}
.m15-r {
  margin-right: 15px !important
}
.m15-b {
  margin-bottom: 15px !important
}
.m15-l {
  margin-left: 15px !important
}
.m20 {
  margin: 20px !important
}
.m20-t {
  margin-top: 20px !important
}
.m20-r {
  margin-right: 20px !important
}
.m20-b {
  margin-bottom: 20px !important
}
.m20-l {
  margin-left: 20px !important
}
.m25 {
  margin: 25px !important
}
.m25-t {
  margin-top: 25px !important
}
.m25-r {
  margin-right: 25px !important
}
.m25-b {
  margin-bottom: 25px !important
}
.m25-l {
  margin-left: 25px !important
}
.m30 {
  margin: 30px !important
}
.m30-t {
  margin-top: 30px !important
}
.m30-r {
  margin-right: 30px !important
}
.m30-b {
  margin-bottom: 30px !important
}
.m30-l {
  margin-left: 30px !important
}
.m40 {
  margin: 40px !important
}
.m40-t {
  margin-top: 40px !important
}
.m40-r {
  margin-right: 40px !important
}
.m40-b {
  margin-bottom: 40px !important
}
.m40-l {
  margin-left: 40px !important
}
.m50 {
  margin: 50px !important
}
.m50-t {
  margin-top: 50px !important
}
.m50-r {
  margin-right: 50px !important
}
.m50-b {
  margin-bottom: 50px !important
}
.m50-l {
  margin-left: 50px !important
}
.m60 {
  margin: 60px !important
}
.m60-t {
  margin-top: 60px !important
}
.m60-r {
  margin-right: 60px !important
}
.m60-b {
  margin-bottom: 60px !important
}
.m60-l {
  margin-left: 60px !important
}
.m70 {
  margin: 70px !important
}
.m70-t {
  margin-top: 70px !important
}
.m70-r {
  margin-right: 70px !important
}
.m70-b {
  margin-bottom: 70px !important
}
.m70-l {
  margin-left: 70px !important
}
.m80 {
  margin: 80px !important
}
.m80-t {
  margin-top: 80px !important
}
.m80-r {
  margin-right: 80px !important
}
.m80-b {
  margin-bottom: 80px !important
}
.m80-l {
  margin-left: 80px !important
}
.m90 {
  margin: 90px !important
}
.m90-t {
  margin-top: 90px !important
}
.m90-r {
  margin-right: 90px !important
}
.m90-b {
  margin-bottom: 90px !important
}
.m90-l {
  margin-left: 90px !important
}
.m100 {
  margin: 100px !important
}
.m100-t {
  margin-top: 100px !important
}
.m100-r {
  margin-right: 100px !important
}
.m100-b {
  margin-bottom: 100px !important
}
.m100-l {
  margin-left: 100px !important
}
.m200 {
  margin: 200px !important
}
.m200-t {
  margin-top: 200px !important
}
.m200-r {
  margin-right: 200px !important
}
.m200-b {
  margin-bottom: 200px !important
}
.m200-l {
  margin-left: 200px !important
}
.p0 {
  padding: 0 !important
}
.p0-t {
  padding-top: 0 !important
}
.p0-r {
  padding-right: 0 !important
}
.p0-b {
  padding-bottom: 0 !important
}
.p0-l {
  padding-left: 0 !important
}
.p2 {
  padding: 2 !important
}
.p2-t {
  padding-top: 2 !important
}
.p2-r {
  padding-right: 2 !important
}
.p2-b {
  padding-bottom: 2 !important
}
.p2-l {
  padding-left: 2 !important
}
.p3 {
  padding: 3 !important
}
.p3-t {
  padding-top: 3 !important
}
.p3-r {
  padding-right: 3 !important
}
.p3-b {
  padding-bottom: 3 !important
}
.p3-l {
  padding-left: 3 !important
}
.p5 {
  padding: 5px !important
}
.p5-t {
  padding-top: 5px !important
}
.p5-r {
  padding-right: 5px !important
}
.p5-b {
  padding-bottom: 5px !important
}
.p5-l {
  padding-left: 5px !important
}
.p8 {
  padding: 8px !important
}
.p8-t {
  padding-top: 8px !important
}
.p8-r {
  padding-right: 8px !important
}
.p8-b {
  padding-bottom: 8px !important
}
.p8-l {
  padding-left: 8px !important
}
.p10 {
  padding: 10px !important
}
.p10-t {
  padding-top: 10px !important
}
.p10-r {
  padding-right: 10px !important
}
.p10-b {
  padding-bottom: 10px !important
}
.p10-l {
  padding-left: 10px !important
}
.p12 {
  padding: 12px !important
}
.p12-t {
  padding-top: 12px !important
}
.p12-r {
  padding-right: 12px !important
}
.p12-b {
  padding-bottom: 12px !important
}
.p12-l {
  padding-left: 12px !important
}
.p15 {
  padding: 15px !important
}
.p15-t {
  padding-top: 15px !important
}
.p15-r {
  padding-right: 15px !important
}
.p15-b {
  padding-bottom: 15px !important
}
.p15-l {
  padding-left: 15px !important
}
.p20 {
  padding: 20px !important
}
.p20-t {
  padding-top: 20px !important
}
.p20-r {
  padding-right: 20px !important
}
.p20-b {
  padding-bottom: 20px !important
}
.p20-l {
  padding-left: 20px !important
}
.p25 {
  padding: 25px !important
}
.p25-t {
  padding-top: 25px !important
}
.p25-r {
  padding-right: 25px !important
}
.p25-b {
  padding-bottom: 25px !important
}
.p25-l {
  padding-left: 25px !important
}
.p30 {
  padding: 30px !important
}
.p30-t {
  padding-top: 30px !important
}
.p30-r {
  padding-right: 30px !important
}
.p30-b {
  padding-bottom: 30px !important
}
.p30-l {
  padding-left: 30px !important
}
.p40 {
  padding: 40px !important
}
.p40-t {
  padding-top: 40px !important
}
.p40-r {
  padding-right: 40px !important
}
.p40-b {
  padding-bottom: 40px !important
}
.p40-l {
  padding-left: 40px !important
}
.p50 {
  padding: 50px !important
}
.p50-t {
  padding-top: 50px !important
}
.p50-r {
  padding-right: 50px !important
}
.p50-b {
  padding-bottom: 50px !important
}
.p50-l {
  padding-left: 50px !important
}
.p60 {
  padding: 60px !important
}
.p60-t {
  padding-top: 60px !important
}
.p60-r {
  padding-right: 60px !important
}
.p60-b {
  padding-bottom: 60px !important
}
.p60-l {
  padding-left: 60px !important
}
.p70 {
  padding: 70px !important
}
.p70-t {
  padding-top: 70px !important
}
.p70-r {
  padding-right: 70px !important
}
.p70-b {
  padding-bottom: 70px !important
}
.p70-l {
  padding-left: 70px !important
}
.p80 {
  padding: 80px !important
}
.p80-t {
  padding-top: 80px !important
}
.p80-r {
  padding-right: 80px !important
}
.p80-b {
  padding-bottom: 80px !important
}
.p80-l {
  padding-left: 80px !important
}
.p90 {
  padding: 90px !important
}
.p90-t {
  padding-top: 90px !important
}
.p90-r {
  padding-right: 90px !important
}
.p90-b {
  padding-bottom: 90px !important
}
.p90-l {
  padding-left: 90px !important
}
.p100 {
  padding: 100px !important
}
.p100-t {
  padding-top: 100px !important
}
.p100-r {
  padding-right: 100px !important
}
.p100-b {
  padding-bottom: 100px !important
}
.p100-l {
  padding-left: 100px !important
}
.p200 {
  padding: 200px !important
}
.p200-t {
  padding-top: 200px !important
}
.p200-r {
  padding-right: 200px !important
}
.p200-b {
  padding-bottom: 200px !important
}
.p200-l {
  padding-left: 200px !important
}

@media screen and (max-width: 767px) {
.f08em-medium {
  font-size: 0.8em
}
.f09em-medium {
  font-size: 0.9em
}
.f10em-medium {
  font-size: 1.0em
}
.f11em-medium {
  font-size: 1.1em
}
.f12em-medium {
  font-size: 1.2em
}
.f13em-medium {
  font-size: 1.3em
}
.f14em-medium {
  font-size: 1.4em
}
.f15em-medium {
  font-size: 1.5em
}
.f16em-medium {
  font-size: 1.6em
}
.f17em-medium {
  font-size: 1.7em
}
.f18em-medium {
  font-size: 1.8em
}
.f19em-medium {
  font-size: 1.9em
}
.f20em-medium {
  font-size: 2.0em
}
.f21em-medium {
  font-size: 2.1em
}
.f22em-medium {
  font-size: 2.2em
}
.f23em-medium {
  font-size: 2.3em
}
.f24em-medium {
  font-size: 2.4em
}
.f8pt-medium {
  font-size: 8.5pt !important
}
.f9pt-medium {
  font-size: 9pt !important
}
.f10pt-medium {
  font-size: 10pt !important
}
.f11pt-medium {
  font-size: 11pt !important
}
.f12pt-medium {
  font-size: 12pt !important
}
.f13pt-medium {
  font-size: 13pt !important
}
.f14pt-medium {
  font-size: 14pt !important
}
.f15pt-medium {
  font-size: 15pt !important
}
.f16pt-medium {
  font-size: 16pt !important
}
.f17pt-medium {
  font-size: 17pt !important
}
.f18pt-medium {
  font-size: 18pt !important
}
.f19pt-medium {
  font-size: 19pt !important
}
.f20pt-medium {
  font-size: 20pt !important
}
.f21pt-medium {
  font-size: 21pt !important
}
.f22pt-medium {
  font-size: 22pt !important
}
.f23pt-medium {
  font-size: 23pt !important
}
.f24pt-medium {
  font-size: 24pt !important
}
.m-auto-medium {
  margin-left: auto;
  margin-right: auto
}
.m0-medium {
  margin: 0 !important
}
.m0-t-medium {
  margin-top: 0 !important
}
.m0-r-medium {
  margin-right: 0 !important
}
.m0-b-medium {
  margin-bottom: 0 !important
}
.m0-l-medium {
  margin-left: 0 !important
}
.m2-medium {
  margin: 2px !important
}
.m2-t-medium {
  margin-top: 2px !important
}
.m2-r-medium {
  margin-right: 2px !important
}
.m2-b-medium {
  margin-bottom: 2px !important
}
.m2-l-medium {
  margin-left: 2px !important
}
.m3-medium {
  margin: 3px !important
}
.m3-t-medium {
  margin-top: 3px !important
}
.m3-r-medium {
  margin-right: 3px !important
}
.m3-b-medium {
  margin-bottom: 3px !important
}
.m3-l-medium {
  margin-left: 3px !important
}
.m5-medium {
  margin: 5px !important
}
.m5-t-medium {
  margin-top: 5px !important
}
.m5-r-medium {
  margin-right: 5px !important
}
.m5-b-medium {
  margin-bottom: 5px !important
}
.m5-l-medium {
  margin-left: 5px !important
}
.m8-medium {
  margin: 8px !important
}
.m8-t-medium {
  margin-top: 8px !important
}
.m8-r-medium {
  margin-right: 8px !important
}
.m8-b-medium {
  margin-bottom: 8px !important
}
.m8-l-medium {
  margin-left: 8px !important
}
.m10-medium {
  margin: 10px !important
}
.m10-t-medium {
  margin-top: 10px !important
}
.m10-r-medium {
  margin-right: 10px !important
}
.m10-b-medium {
  margin-bottom: 10px !important
}
.m10-l-medium {
  margin-left: 10px !important
}
.m12-medium {
  margin: 12px !important
}
.m12-t-medium {
  margin-top: 12px !important
}
.m12-r-medium {
  margin-right: 12px !important
}
.m12-b-medium {
  margin-bottom: 12px !important
}
.m12-l-medium {
  margin-left: 12px !important
}
.m15-medium {
  margin: 15px !important
}
.m15-t-medium {
  margin-top: 15px !important
}
.m15-r-medium {
  margin-right: 15px !important
}
.m15-b-medium {
  margin-bottom: 15px !important
}
.m15-l-medium {
  margin-left: 15px !important
}
.m20-medium {
  margin: 20px !important
}
.m20-t-medium {
  margin-top: 20px !important
}
.m20-r-medium {
  margin-right: 20px !important
}
.m20-b-medium {
  margin-bottom: 20px !important
}
.m20-l-medium {
  margin-left: 20px !important
}
.m25-medium {
  margin: 25px !important
}
.m25-t-medium {
  margin-top: 25px !important
}
.m25-r-medium {
  margin-right: 25px !important
}
.m25-b-medium {
  margin-bottom: 25px !important
}
.m25-l-medium {
  margin-left: 25px !important
}
.m30-medium {
  margin: 30px !important
}
.m30-t-medium {
  margin-top: 30px !important
}
.m30-r-medium {
  margin-right: 30px !important
}
.m30-b-medium {
  margin-bottom: 30px !important
}
.m30-l-medium {
  margin-left: 30px !important
}
.m40-medium {
  margin: 40px !important
}
.m40-t-medium {
  margin-top: 40px !important
}
.m40-r-medium {
  margin-right: 40px !important
}
.m40-b-medium {
  margin-bottom: 40px !important
}
.m40-l-medium {
  margin-left: 40px !important
}
.m50-medium {
  margin: 50px !important
}
.m50-t-medium {
  margin-top: 50px !important
}
.m50-r-medium {
  margin-right: 50px !important
}
.m50-b-medium {
  margin-bottom: 50px !important
}
.m50-l-medium {
  margin-left: 50px !important
}
.m60-medium {
  margin: 60px !important
}
.m60-t-medium {
  margin-top: 60px !important
}
.m60-r-medium {
  margin-right: 60px !important
}
.m60-b-medium {
  margin-bottom: 60px !important
}
.m60-l-medium {
  margin-left: 60px !important
}
.m70-medium {
  margin: 70px !important
}
.m70-t-medium {
  margin-top: 70px !important
}
.m70-r-medium {
  margin-right: 70px !important
}
.m70-b-medium {
  margin-bottom: 70px !important
}
.m70-l-medium {
  margin-left: 70px !important
}
.m80-medium {
  margin: 80px !important
}
.m80-t-medium {
  margin-top: 80px !important
}
.m80-r-medium {
  margin-right: 80px !important
}
.m80-b-medium {
  margin-bottom: 80px !important
}
.m80-l-medium {
  margin-left: 80px !important
}
.m90-medium {
  margin: 90px !important
}
.m90-t-medium {
  margin-top: 90px !important
}
.m90-r-medium {
  margin-right: 90px !important
}
.m90-b-medium {
  margin-bottom: 90px !important
}
.m90-l-medium {
  margin-left: 90px !important
}
.m100-medium {
  margin: 100px !important
}
.m100-t-medium {
  margin-top: 100px !important
}
.m100-r-medium {
  margin-right: 100px !important
}
.m100-b-medium {
  margin-bottom: 100px !important
}
.m100-l-medium {
  margin-left: 100px !important
}
.m200-medium {
  margin: 200px !important
}
.m200-t-medium {
  margin-top: 200px !important
}
.m200-r-medium {
  margin-right: 200px !important
}
.m200-b-medium {
  margin-bottom: 200px !important
}
.m200-l-medium {
  margin-left: 200px !important
}
.p0-medium {
  padding: 0 !important
}
.p0-t-medium {
  padding-top: 0 !important
}
.p0-r-medium {
  padding-right: 0 !important
}
.p0-b-medium {
  padding-bottom: 0 !important
}
.p0-l-medium {
  padding-left: 0 !important
}
.p2-medium {
  padding: 2 !important
}
.p2-t-medium {
  padding-top: 2 !important
}
.p2-r-medium {
  padding-right: 2 !important
}
.p2-b-medium {
  padding-bottom: 2 !important
}
.p2-l-medium {
  padding-left: 2 !important
}
.p3-medium {
  padding: 3 !important
}
.p3-t-medium {
  padding-top: 3 !important
}
.p3-r-medium {
  padding-right: 3 !important
}
.p3-b-medium {
  padding-bottom: 3 !important
}
.p3-l-medium {
  padding-left: 3 !important
}
.p5-medium {
  padding: 5px !important
}
.p5-t-medium {
  padding-top: 5px !important
}
.p5-r-medium {
  padding-right: 5px !important
}
.p5-b-medium {
  padding-bottom: 5px !important
}
.p5-l-medium {
  padding-left: 5px !important
}
.p8-medium {
  padding: 8px !important
}
.p8-t-medium {
  padding-top: 8px !important
}
.p8-r-medium {
  padding-right: 8px !important
}
.p8-b-medium {
  padding-bottom: 8px !important
}
.p8-l-medium {
  padding-left: 8px !important
}
.p10-medium {
  padding: 10px !important
}
.p10-t-medium {
  padding-top: 10px !important
}
.p10-r-medium {
  padding-right: 10px !important
}
.p10-b-medium {
  padding-bottom: 10px !important
}
.p10-l-medium {
  padding-left: 10px !important
}
.p12-medium {
  padding: 12px !important
}
.p12-t-medium {
  padding-top: 12px !important
}
.p12-r-medium {
  padding-right: 12px !important
}
.p12-b-medium {
  padding-bottom: 12px !important
}
.p12-l-medium {
  padding-left: 12px !important
}
.p15-medium {
  padding: 15px !important
}
.p15-t-medium {
  padding-top: 15px !important
}
.p15-r-medium {
  padding-right: 15px !important
}
.p15-b-medium {
  padding-bottom: 15px !important
}
.p15-l-medium {
  padding-left: 15px !important
}
.p20-medium {
  padding: 20px !important
}
.p20-t-medium {
  padding-top: 20px !important
}
.p20-r-medium {
  padding-right: 20px !important
}
.p20-b-medium {
  padding-bottom: 20px !important
}
.p20-l-medium {
  padding-left: 20px !important
}
.p25-medium {
  padding: 25px !important
}
.p25-t-medium {
  padding-top: 25px !important
}
.p25-r-medium {
  padding-right: 25px !important
}
.p25-b-medium {
  padding-bottom: 25px !important
}
.p25-l-medium {
  padding-left: 25px !important
}
.p30-medium {
  padding: 30px !important
}
.p30-t-medium {
  padding-top: 30px !important
}
.p30-r-medium {
  padding-right: 30px !important
}
.p30-b-medium {
  padding-bottom: 30px !important
}
.p30-l-medium {
  padding-left: 30px !important
}
.p40-medium {
  padding: 40px !important
}
.p40-t-medium {
  padding-top: 40px !important
}
.p40-r-medium {
  padding-right: 40px !important
}
.p40-b-medium {
  padding-bottom: 40px !important
}
.p40-l-medium {
  padding-left: 40px !important
}
.p50-medium {
  padding: 50px !important
}
.p50-t-medium {
  padding-top: 50px !important
}
.p50-r-medium {
  padding-right: 50px !important
}
.p50-b-medium {
  padding-bottom: 50px !important
}
.p50-l-medium {
  padding-left: 50px !important
}
.p60-medium {
  padding: 60px !important
}
.p60-t-medium {
  padding-top: 60px !important
}
.p60-r-medium {
  padding-right: 60px !important
}
.p60-b-medium {
  padding-bottom: 60px !important
}
.p60-l-medium {
  padding-left: 60px !important
}
.p70-medium {
  padding: 70px !important
}
.p70-t-medium {
  padding-top: 70px !important
}
.p70-r-medium {
  padding-right: 70px !important
}
.p70-b-medium {
  padding-bottom: 70px !important
}
.p70-l-medium {
  padding-left: 70px !important
}
.p80-medium {
  padding: 80px !important
}
.p80-t-medium {
  padding-top: 80px !important
}
.p80-r-medium {
  padding-right: 80px !important
}
.p80-b-medium {
  padding-bottom: 80px !important
}
.p80-l-medium {
  padding-left: 80px !important
}
.p90-medium {
  padding: 90px !important
}
.p90-t-medium {
  padding-top: 90px !important
}
.p90-r-medium {
  padding-right: 90px !important
}
.p90-b-medium {
  padding-bottom: 90px !important
}
.p90-l-medium {
  padding-left: 90px !important
}
.p100-medium {
  padding: 100px !important
}
.p100-t-medium {
  padding-top: 100px !important
}
.p100-r-medium {
  padding-right: 100px !important
}
.p100-b-medium {
  padding-bottom: 100px !important
}
.p100-l-medium {
  padding-left: 100px !important
}
.p200-medium {
  padding: 200px !important
}
.p200-t-medium {
  padding-top: 200px !important
}
.p200-r-medium {
  padding-right: 200px !important
}
.p200-b-medium {
  padding-bottom: 200px !important
}
.p200-l-medium {
  padding-left: 200px !important
}
}

@media screen and (max-width: 480px) {
.f08em-small {
  font-size: 0.8em
}
.f09em-small {
  font-size: 0.9em
}
.f10em-small {
  font-size: 1.0em
}
.f11em-small {
  font-size: 1.1em
}
.f12em-small {
  font-size: 1.2em
}
.f13em-small {
  font-size: 1.3em
}
.f14em-small {
  font-size: 1.4em
}
.f15em-small {
  font-size: 1.5em
}
.f16em-small {
  font-size: 1.6em
}
.f17em-small {
  font-size: 1.7em
}
.f18em-small {
  font-size: 1.8em
}
.f19em-small {
  font-size: 1.9em
}
.f20em-small {
  font-size: 2.0em
}
.f21em-small {
  font-size: 2.1em
}
.f22em-small {
  font-size: 2.2em
}
.f23em-small {
  font-size: 2.3em
}
.f24em-small {
  font-size: 2.4em
}
.f8pt-small {
  font-size: 8.5pt !important
}
.f9pt-small {
  font-size: 9pt !important
}
.f10pt-small {
  font-size: 10pt !important
}
.f11pt-small {
  font-size: 11pt !important
}
.f12pt-small {
  font-size: 12pt !important
}
.f13pt-small {
  font-size: 13pt !important
}
.f14pt-small {
  font-size: 14pt !important
}
.f15pt-small {
  font-size: 15pt !important
}
.f16pt-small {
  font-size: 16pt !important
}
.f17pt-small {
  font-size: 17pt !important
}
.f18pt-small {
  font-size: 18pt !important
}
.f19pt-small {
  font-size: 19pt !important
}
.f20pt-small {
  font-size: 20pt !important
}
.f21pt-small {
  font-size: 21pt !important
}
.f22pt-small {
  font-size: 22pt !important
}
.f23pt-small {
  font-size: 23pt !important
}
.f24pt-small {
  font-size: 24pt !important
}
.m-auto-small {
  margin-left: auto;
  margin-right: auto
}
.m0-small {
  margin: 0 !important
}
.m0-t-small {
  margin-top: 0 !important
}
.m0-r-small {
  margin-right: 0 !important
}
.m0-b-small {
  margin-bottom: 0 !important
}
.m0-l-small {
  margin-left: 0 !important
}
.m2-small {
  margin: 2px !important
}
.m2-t-small {
  margin-top: 2px !important
}
.m2-r-small {
  margin-right: 2px !important
}
.m2-b-small {
  margin-bottom: 2px !important
}
.m2-l-small {
  margin-left: 2px !important
}
.m3-small {
  margin: 3px !important
}
.m3-t-small {
  margin-top: 3px !important
}
.m3-r-small {
  margin-right: 3px !important
}
.m3-b-small {
  margin-bottom: 3px !important
}
.m3-l-small {
  margin-left: 3px !important
}
.m5-small {
  margin: 5px !important
}
.m5-t-small {
  margin-top: 5px !important
}
.m5-r-small {
  margin-right: 5px !important
}
.m5-b-small {
  margin-bottom: 5px !important
}
.m5-l-small {
  margin-left: 5px !important
}
.m8-small {
  margin: 8px !important
}
.m8-t-small {
  margin-top: 8px !important
}
.m8-r-small {
  margin-right: 8px !important
}
.m8-b-small {
  margin-bottom: 8px !important
}
.m8-l-small {
  margin-left: 8px !important
}
.m10-small {
  margin: 10px !important
}
.m10-t-small {
  margin-top: 10px !important
}
.m10-r-small {
  margin-right: 10px !important
}
.m10-b-small {
  margin-bottom: 10px !important
}
.m10-l-small {
  margin-left: 10px !important
}
.m12-small {
  margin: 12px !important
}
.m12-t-small {
  margin-top: 12px !important
}
.m12-r-small {
  margin-right: 12px !important
}
.m12-b-small {
  margin-bottom: 12px !important
}
.m12-l-small {
  margin-left: 12px !important
}
.m15-small {
  margin: 15px !important
}
.m15-t-small {
  margin-top: 15px !important
}
.m15-r-small {
  margin-right: 15px !important
}
.m15-b-small {
  margin-bottom: 15px !important
}
.m15-l-small {
  margin-left: 15px !important
}
.m20-small {
  margin: 20px !important
}
.m20-t-small {
  margin-top: 20px !important
}
.m20-r-small {
  margin-right: 20px !important
}
.m20-b-small {
  margin-bottom: 20px !important
}
.m20-l-small {
  margin-left: 20px !important
}
.m25-small {
  margin: 25px !important
}
.m25-t-small {
  margin-top: 25px !important
}
.m25-r-small {
  margin-right: 25px !important
}
.m25-b-small {
  margin-bottom: 25px !important
}
.m25-l-small {
  margin-left: 25px !important
}
.m30-small {
  margin: 30px !important
}
.m30-t-small {
  margin-top: 30px !important
}
.m30-r-small {
  margin-right: 30px !important
}
.m30-b-small {
  margin-bottom: 30px !important
}
.m30-l-small {
  margin-left: 30px !important
}
.m40-small {
  margin: 40px !important
}
.m40-t-small {
  margin-top: 40px !important
}
.m40-r-small {
  margin-right: 40px !important
}
.m40-b-small {
  margin-bottom: 40px !important
}
.m40-l-small {
  margin-left: 40px !important
}
.m50-small {
  margin: 50px !important
}
.m50-t-small {
  margin-top: 50px !important
}
.m50-r-small {
  margin-right: 50px !important
}
.m50-b-small {
  margin-bottom: 50px !important
}
.m50-l-small {
  margin-left: 50px !important
}
.m60-small {
  margin: 60px !important
}
.m60-t-small {
  margin-top: 60px !important
}
.m60-r-small {
  margin-right: 60px !important
}
.m60-b-small {
  margin-bottom: 60px !important
}
.m60-l-small {
  margin-left: 60px !important
}
.m70-small {
  margin: 70px !important
}
.m70-t-small {
  margin-top: 70px !important
}
.m70-r-small {
  margin-right: 70px !important
}
.m70-b-small {
  margin-bottom: 70px !important
}
.m70-l-small {
  margin-left: 70px !important
}
.m80-small {
  margin: 80px !important
}
.m80-t-small {
  margin-top: 80px !important
}
.m80-r-small {
  margin-right: 80px !important
}
.m80-b-small {
  margin-bottom: 80px !important
}
.m80-l-small {
  margin-left: 80px !important
}
.m90-small {
  margin: 90px !important
}
.m90-t-small {
  margin-top: 90px !important
}
.m90-r-small {
  margin-right: 90px !important
}
.m90-b-small {
  margin-bottom: 90px !important
}
.m90-l-small {
  margin-left: 90px !important
}
.m100-small {
  margin: 100px !important
}
.m100-t-small {
  margin-top: 100px !important
}
.m100-r-small {
  margin-right: 100px !important
}
.m100-b-small {
  margin-bottom: 100px !important
}
.m100-l-small {
  margin-left: 100px !important
}
.m200-small {
  margin: 200px !important
}
.m200-t-small {
  margin-top: 200px !important
}
.m200-r-small {
  margin-right: 200px !important
}
.m200-b-small {
  margin-bottom: 200px !important
}
.m200-l-small {
  margin-left: 200px !important
}
.p0-small {
  padding: 0 !important
}
.p0-t-small {
  padding-top: 0 !important
}
.p0-r-small {
  padding-right: 0 !important
}
.p0-b-small {
  padding-bottom: 0 !important
}
.p0-l-small {
  padding-left: 0 !important
}
.p2-small {
  padding: 2 !important
}
.p2-t-small {
  padding-top: 2 !important
}
.p2-r-small {
  padding-right: 2 !important
}
.p2-b-small {
  padding-bottom: 2 !important
}
.p2-l-small {
  padding-left: 2 !important
}
.p3-small {
  padding: 3 !important
}
.p3-t-small {
  padding-top: 3 !important
}
.p3-r-small {
  padding-right: 3 !important
}
.p3-b-small {
  padding-bottom: 3 !important
}
.p3-l-small {
  padding-left: 3 !important
}
.p5-small {
  padding: 5px !important
}
.p5-t-small {
  padding-top: 5px !important
}
.p5-r-small {
  padding-right: 5px !important
}
.p5-b-small {
  padding-bottom: 5px !important
}
.p5-l-small {
  padding-left: 5px !important
}
.p8-small {
  padding: 8px !important
}
.p8-t-small {
  padding-top: 8px !important
}
.p8-r-small {
  padding-right: 8px !important
}
.p8-b-small {
  padding-bottom: 8px !important
}
.p8-l-small {
  padding-left: 8px !important
}
.p10-small {
  padding: 10px !important
}
.p10-t-small {
  padding-top: 10px !important
}
.p10-r-small {
  padding-right: 10px !important
}
.p10-b-small {
  padding-bottom: 10px !important
}
.p10-l-small {
  padding-left: 10px !important
}
.p12-small {
  padding: 12px !important
}
.p12-t-small {
  padding-top: 12px !important
}
.p12-r-small {
  padding-right: 12px !important
}
.p12-b-small {
  padding-bottom: 12px !important
}
.p12-l-small {
  padding-left: 12px !important
}
.p15-small {
  padding: 15px !important
}
.p15-t-small {
  padding-top: 15px !important
}
.p15-r-small {
  padding-right: 15px !important
}
.p15-b-small {
  padding-bottom: 15px !important
}
.p15-l-small {
  padding-left: 15px !important
}
.p20-small {
  padding: 20px !important
}
.p20-t-small {
  padding-top: 20px !important
}
.p20-r-small {
  padding-right: 20px !important
}
.p20-b-small {
  padding-bottom: 20px !important
}
.p20-l-small {
  padding-left: 20px !important
}
.p25-small {
  padding: 25px !important
}
.p25-t-small {
  padding-top: 25px !important
}
.p25-r-small {
  padding-right: 25px !important
}
.p25-b-small {
  padding-bottom: 25px !important
}
.p25-l-small {
  padding-left: 25px !important
}
.p30-small {
  padding: 30px !important
}
.p30-t-small {
  padding-top: 30px !important
}
.p30-r-small {
  padding-right: 30px !important
}
.p30-b-small {
  padding-bottom: 30px !important
}
.p30-l-small {
  padding-left: 30px !important
}
.p40-small {
  padding: 40px !important
}
.p40-t-small {
  padding-top: 40px !important
}
.p40-r-small {
  padding-right: 40px !important
}
.p40-b-small {
  padding-bottom: 40px !important
}
.p40-l-small {
  padding-left: 40px !important
}
.p50-small {
  padding: 50px !important
}
.p50-t-small {
  padding-top: 50px !important
}
.p50-r-small {
  padding-right: 50px !important
}
.p50-b-small {
  padding-bottom: 50px !important
}
.p50-l-small {
  padding-left: 50px !important
}
.p60-small {
  padding: 60px !important
}
.p60-t-small {
  padding-top: 60px !important
}
.p60-r-small {
  padding-right: 60px !important
}
.p60-b-small {
  padding-bottom: 60px !important
}
.p60-l-small {
  padding-left: 60px !important
}
.p70-small {
  padding: 70px !important
}
.p70-t-small {
  padding-top: 70px !important
}
.p70-r-small {
  padding-right: 70px !important
}
.p70-b-small {
  padding-bottom: 70px !important
}
.p70-l-small {
  padding-left: 70px !important
}
.p80-small {
  padding: 80px !important
}
.p80-t-small {
  padding-top: 80px !important
}
.p80-r-small {
  padding-right: 80px !important
}
.p80-b-small {
  padding-bottom: 80px !important
}
.p80-l-small {
  padding-left: 80px !important
}
.p90-small {
  padding: 90px !important
}
.p90-t-small {
  padding-top: 90px !important
}
.p90-r-small {
  padding-right: 90px !important
}
.p90-b-small {
  padding-bottom: 90px !important
}
.p90-l-small {
  padding-left: 90px !important
}
.p100-small {
  padding: 100px !important
}
.p100-t-small {
  padding-top: 100px !important
}
.p100-r-small {
  padding-right: 100px !important
}
.p100-b-small {
  padding-bottom: 100px !important
}
.p100-l-small {
  padding-left: 100px !important
}
.p200-small {
  padding: 200px !important
}
.p200-t-small {
  padding-top: 200px !important
}
.p200-r-small {
  padding-right: 200px !important
}
.p200-b-small {
  padding-bottom: 200px !important
}
.p200-l-small {
  padding-left: 200px !important
}
}


/* ========================================================================
   CONTENT CSS
 ========================================================================== */

html {
  min-height: 100%;
  position: relative;
}

body {
  position: static;
  margin-bottom: 152px;
}

/* footer {
  width: 100%;
  bottom: 0;
  height: 152px;
  position: absolute;
} */

/* HEADER
 ========================================================================== */
#part_logo{
  width:100% !important;
  position: relative !important;
  padding:0 !important;
}
.header__logo{
  margin: 0px 0 0 0;
  text-align:right;
}
.header__name{
  margin: 15px 0 0 0;
}
.header__mobile-nav{
  display: none;
  position: absolute;
  width: 50px;
  right: 0;
  top: 0px;
}

#breadcrumb{
  margin: 10px 0;
  font-size: 11px;
  text-align: left;
}
/* 3つの
 ========================================================================== */
.content{
  position: relative;
  margin: 0px 0 20px 0;
  /*margin: 0px 0 164px 0;*/
  padding:0 40px;
  /*top:164px;*/
  width: inherit;
}
.content__text{
  padding:0 20px;
}

.h1{
  font-size: 21px;
  font-weight: normal;
  color:#004373;
  line-height: 1.2;
  margin: 40px 0 30px;
  padding:5px 5px 5px 18px;
  border-left: 8px solid #cce0ee;
}
.h1 span{
  color:#004373;
}
.h2{
  margin: 40px 0 20px;
  font-size: 18px;
  font-weight: normal;
  color:#004373;
  line-height: 1.2;
  padding-bottom: 8px;
  border-bottom: 2px solid #ccc;
}

hr {
  -moz-box-sizing: content-box;
  box-sizing: content-box;
  height: 0;
  margin: 15px 0;
  border: 0;
  border-top: 1px solid #dddddd
}
.sub_nav{
  margin: 0;
  padding: 0;
}
.sub_nav li{
  margin: 5px 0;
  padding:5px 0 5px 26px;
  line-height: 1.2;
  background: url('../images/icon_arrow_s.png') no-repeat 0 0;
}
.sub_nav a{

}
.list-disc{
  list-style-type: disc;
  margin: 0 0 0 2em;
  padding: 0;
}
.list-num{
  list-style-type: decimal
  margin: 0 0 0 2em;
  padding: 0;
}
.list-disc li, .list-num li{
  padding: 4px 0;
  line-height: 1.4;
}

.h-col{
  margin: 10px 0 10px;
  font-weight:bold;
  color:#ff6513
}
.col-box{
  padding:20px;
  background:#fcf5e8;
}
.col-box .h-col:first-child{
  margin-top:0; 
}
.col-box hr{
  margin: 20px 0;
  border-top: 1px dotted #ccc;
}
.page-header{
  /*position: fixed;*/
  position: relative;
  width: 950px;
  background: #fff;
  min-height: 164px;
  top: 0;
  z-index: 5;
}
.page-header__wrap{
  width: 666px;
  margin:10px auto;
  left:0;
  right:0;
}
.page-header__title{
  margin: 0 0 5px 0;
  text-align: center;
}
.page-header__nav ul{
  list-style: none;
  text-align: center;
}
.page-header__nav li{
  width: 32%;
  margin: 0 0.5%;
  float: left;
}
.page-header__nav li:hover{
  opacity: 0.7;
}
.page-header__nav li a{
  display: inline-block;
  width: 100%;
  height: 100%;
}
.page-header__nav li img{
  margin: 0 5px;
}
.content__main-image{
  margin: 40px 0 20px;
}
/*FLOW*/
.step_flow{
  border:3px solid #ff6513;
  padding:14px;
  background: #fcf5e8;
}
.step__number{
  width: 80%;
  height: auto;
}
/*OSUSUME*/
.osusume{
  margin: 20px 0 0 0;

}
.osusume__block{
  padding:20px;
  background: #e6eff7;
  
}
.osusume__title{
  padding:12px 15px 10px;
  line-height: 1.2;
  background:#5A9ECF;
  color:#fff;
  border-radius: 6px 6px 0 0;
}
.osusume__title h2{
  color:#fff;
}

/*BOTTOM*/
.content__bottom-mitsumori, .content__bottom-manga{
  float: left;
  margin: 40px 0 20px 0;
  text-align:center;
}
.content__bottom-mitsumori img:hover, .content__bottom-manga img:hover{
  opacity: 0.85;
}
.content__bottom-manga{
  margin-left: 16px;
}

/*LOGIN*/
.content__login{
  position: static;
}
.login__wrap{
  min-height: 383px;
}
.login{
  width:484px;
  height: 383px;
  margin: auto;
  top: -60px;
  left: 0;
  right: 0;
  bottom: 0;
  position: absolute;
}
.login__title{
  margin: 24px 0 38px;
}
.login__block{
  width:95%;
  margin: 0 auto;
}
.login__user-id{
  margin: 10px 0 0 0;
}
.login__user-id input{
  display: block;
  width: 100%;
  padding: 3%;
  box-sizing: border-box;
  border: 1px solid #ccc;
  font-size: 16px;
  line-height: 1.2;
}
.login__submit{
  margin: 5px 0 0 0;
}
.login__submit input{
  width:100%;
  padding: 0;
}
.login__submit input:hover{
  opacity: 0.85;
}
.login__non-user{
  margin: 0 0 40px;
}
.login__non-user a{
  display: inline-block;
  margin: 5px 0;
  padding:5px 0 5px 26px;
  line-height: 1.2;
  background: url('../images/icon_arrow_s.png') no-repeat 0 0;
}

/************************************************************************************
smaller than 960
*************************************************************************************/
@media screen and (max-width: 960px) {
  #part_header{
    width: 95% !important;
    margin: 0 auto;
  }
  /*NAV*/
  #part_nav{
    width: 95% !important;
    margin: 0 auto;
  }
  #part_nav li{
    width:20% !important;
  }
  #part_nav li a{
    width:100% !important;
  }


  #topmain2{
    width: 95%;
    height: auto !important;
  }
#part_infooter,ul#part_fnav{
  width:100% !important;
}
  /* ========================================================================== */
  .page-header{
    width:95%;
    margin: 0 auto;
    min-height: initial;
  }
  .page-header img{
    width: 100%;
    height:auto;
  }
  .page-header__title{
    width:80%;
    margin: 0 auto 5px;
  }
  img.auto-large{
    width: 100%;
    height:auto;
  }
  /*.content img{
    width: 100%;
    height:auto;
  }*/
  .content__main-image{
    width:60%;
    margin: 0 auto;
  }
  .step__number{
    width: 50%;
    height: auto;
  }

  /*BOTTOM*/
  .content__bottom-mitsumori, .content__bottom-manga{
    float: none;
    text-align:center;
  }
  .content__bottom-mitsumori{
    width:70%;
    margin: 0 auto 20px;
  }
  .content__bottom-manga{
    width:30%;
    margin: 15px auto  20px;
  }
}/*END*/
/************************************************************************************
smaller than 768
*************************************************************************************/
@media only screen and (max-width: 767px) {
  body{
    background: none !important;
  }
  #part_header{
    height: auto !important;
  }
  
  /*NAV*/
  #part_nav{
    display: none;
  }
  #part_nav li{
    width:100% !important;
    float:none !important;
    margin-bottom: 1px;
  }

  /* ========================================================================== */
  #part_logo{
    text-align: center;
  }
  .header__logo{
    margin-bottom:15px; 
  }

  #headerArea{
    margin-bottom: 30px;
    border-bottom: 4px solid #004373;;
  }

  /*SECTION page-header*/
  .page-header__wrap{
    width: 100%;
  }
  .step__number{
    width: 30%;
    height: auto;
  }
  img.auto-medium{
    width: 100%;
    height:auto;
  }
  

}/*END*/

/************************************************************************************
smaller than 480
*************************************************************************************/
@media only screen and (max-width: 480px) {
  #part_header{
    height: auto !important;
  }
  #part_logo img{
    width:95%;
    height: auto;
    margin: 0 auto;
  }
  body{
    margin-bottom: 0px;
  }
  footer{
    height: auto !important;
  position: relative;
  }
  /* ========================================================================== */
  .h1{
    font-size: 18px;
    margin: 30px 0 20px;
    padding: 5px 5px 5px 12px;
  }
  .h2{
    font-size: 15px;
  }
  .content{
    padding:0 10px;
  }
  .content__text{
    padding:0 10px;
  }
  .content__main-image{
    width:80%;
    margin: 0 auto;
  }
  .step__number{
    width: 40%;
    height: auto;
  }
  img.auto-small{
    width: 100%;
    height:auto;
  }

  /*BOTTOM*/
  .content__bottom-mitsumori{
    width:100%;
  }
  .content__bottom-manga{
    width:50%;
  }
  /*LOGIN*/
  .login{
    width:100%;
  }
  .login__logo img{
    width:95%;
    height: auto;
  }

}

@media only screen and (max-width: 345px) {
    .w345{
        width: 260px;
        height:153px;
    }
}/*END*/
