﻿@charset "IBM437";
/* --------------------------------------------------------------------------------------
+
+   AUTHOR: 
+
-------------------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------------------
+
+ BASIC STYLES
+
-------------------------------------------------------------------------------------- */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, 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: inherit;
  font-size: 100%;
  vertical-align: baseline;
}

html {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

caption, th, td {
  text-align: left;
  font-weight: normal;
  vertical-align: middle;
}

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

a img {
  border: none;
}

article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section, summary {
  display: block;
}

/* --------------------------------------------------------------------------------------
+
+ VARIABLES
+
-------------------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------------------
+
+ MIXINS
+
-------------------------------------------------------------------------------------- */
/* Borders */
/* hover opacity */
/* hover color */
/* TRIANGLES */
/* LINE-HIGH */
/* BOX SIZING */
/* HIDE TEXT*/
             /* SPRITES
$icon-spacing: 10px;
$icon-layout: horizontal; //vertical is default, smart(third option)
@import "icon/*.png";
@include all-icon-sprites(true);
 */
@-webkit-viewport {
  width: device-width;
}

@-moz-viewport {
  width: device-width;
}

@-o-viewport {
  width: device-width;
}

@-ms-viewport {
  width: device-width;
}

@viewport {
  width: device-width;
}

html {
  background-color: #fff;
  color: #112235;
  font-family: "Nexa Light";
  font-size: 1em;
  line-height: 1.5;
  min-width: 960px;
}

body {
  -webkit-font-smoothing: antialiased;
}
body #preloader {
  position: fixed;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  z-index: 9999999999;
  background: url("../images/ajax_loader_gray_64.gif") 50% 50% no-repeat white;
}
body * {
  -webkit-backface-visibility: hidden;
  /* Chrome and Safari */
}
body > textarea {
  visibility: hidden;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
  opacity: 0;
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
  /* hack for ie8 */
  opacity: 1\9;
  visibility: visible\9;
  display: none\9;
  position: absolute;
  max-width: 99% !important;
}
body > iframe {
  display: none !important;
}
body #dp_swf_engine {
  display: none;
}

a {
  outline: none;
  /* removing outline in Mozilla */
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
  text-decoration: none;
  color: #112235;
}
a:active {
  background-color: transparent;
}
a:hover {
  color: #ffd100;
}

*,
*:before,
*:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  /* http://paulirish.com/2012/box-sizing-border-box-ftw/ */
}

p {
  margin-bottom: 20px;
  clear: both;
  color: #63696f;
}

img {
  vertical-align: top;
}

table {
  width: 100%;
}

strong {
  font-weight: bold;
}

.clearfix {
  *zoom: 1;
}
.clearfix:after {
  content: "";
  display: table;
  clear: both;
}

::-moz-selection {
  background: black;
  color: white;
  text-shadow: none;
}

::selection {
  background: black;
  color: white;
  text-shadow: none;
}

.hide {
  display: none !important;
}

button:hover,
input[type="submit"]:hover,
label {
  cursor: pointer;
}

textarea {
  margin: 0;
  /* removing margin in Mozilla */
  overflow: auto;
  /* for IE and older browsers */
}

/* align checkboxes, radios, text inputs with their label */
input[type="radio"] {
  vertical-align: text-bottom;
}

input[type="checkbox"] {
  vertical-align: bottom;
  *vertical-align: baseline;
}

input:focus,
textarea:focus,
button:focus {
  outline: none;
}

button::-moz-focus-inner,
input[type="submit"]::-moz-focus-inner {
  border: 0;
  padding: 0;
}

/**
 * Add/remove margins
 */
.push {
  margin: 20px !important;
}

.push--top {
  margin-top: 165px !important;
}

.push--right {
  margin-right: 30px !important;
}

.push--bottom {
  margin-bottom: 130px !important;
}

.push--left {
  margin-left: 20px !important;
}

.push--ends {
  margin-top: 20px !important;
  margin-bottom: 20px !important;
}

.push--sides {
  margin-right: 20px !important;
  margin-left: 20px !important;
}

.push-half {
  margin: 10px !important;
}

.push-half--top {
  margin-top: 10px !important;
}

.push-half--right {
  margin-right: 10px !important;
}

.push-half--bottom {
  margin-bottom: 10px !important;
}

.push-half--left {
  margin-left: 10px !important;
}

.push-half--ends {
  margin-top: 10px !important;
  margin-bottom: 10px !important;
}

.push-half--sides {
  margin-right: 10px !important;
  margin-left: 10px !important;
}

.push-double {
  margin: 40px !important;
}

.push-double--top {
  margin-top: 40px !important;
}

.push-double--right {
  margin-right: 40px !important;
}

.push-double--bottom {
  margin-bottom: 40px !important;
}

.push-double--left {
  margin-left: 40px !important;
}

.push-double--ends {
  margin-top: 40px !important;
  margin-bottom: 40px !important;
}

.push-double--sides {
  margin-right: 40px !important;
  margin-left: 40px !important;
}

.push-triple {
  margin: 60px !important;
}

.push-triple--top {
  margin-top: 60px !important;
}

.push-triple--right {
  margin-right: 60px !important;
}

.push-triple--bottom {
  margin-bottom: 60px !important;
}

.push-triple--left {
  margin-left: 60px !important;
}

.push-triple--ends {
  margin-top: 60px !important;
  margin-bottom: 60px !important;
}

.push-triple--sides {
  margin-right: 60px !important;
  margin-left: 60px !important;
}

.push-quadruple {
  margin: 80px !important;
}

.push-quadruple--top {
  margin-top: 80px !important;
}

.push-quadruple--right {
  margin-right: 80px !important;
}

.push-quadruple--bottom {
  margin-bottom: 80px !important;
}

.push-quadruple--left {
  margin-left: 80px !important;
}

.push-quadruple--ends {
  margin-top: 80px !important;
  margin-bottom: 80px !important;
}

.push-quadruple--sides {
  margin-right: 80px !important;
  margin-left: 80px !important;
}

.push-fivefold {
  margin: 100px !important;
}

.push-fivefold--top {
  margin-top: 100px !important;
}

.push-fivefold--right {
  margin-right: 100px !important;
}

.push-fivefold--bottom {
  margin-bottom: 100px !important;
}

.push-fivefold--left {
  margin-left: 100px !important;
}

.push-fivefold--ends {
  margin-top: 100px !important;
  margin-bottom: 100px !important;
}

.push-fivefold--sides {
  margin-right: 100px !important;
  margin-left: 100px !important;
}

.flush {
  margin: 0 !important;
}

.flush--top {
  margin-top: 0 !important;
}

.flush--right {
  margin-right: 0 !important;
}

.flush--bottom {
  margin-bottom: 0 !important;
}

.flush--left {
  margin-left: 0 !important;
}

.flush--ends {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}

.flush--sides {
  margin-right: 0 !important;
  margin-left: 0 !important;
}

/* --------------------------------------------------------------------------------------
+
+ STARTERIZED GRID INDEX
+
-------------------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------------------
+
+ GRID VARIABLES (tweaked version of http://csswizardry.com/2013/02/introducing-csswizardry-grids/)
+
-------------------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------------------
+
+ GRID MIXINS (tweaked version of http://csswizardry.com/2013/02/introducing-csswizardry-grids/)
+
-------------------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------------------
+
+ GRID BASE (tweaked version of http://csswizardry.com/2013/02/introducing-csswizardry-grids/)
+
-------------------------------------------------------------------------------------- */
.grid {
  font-size: 0;
  list-style: none;
  /* Allow the grid system to be used on lists */
  margin: 0;
  margin-left: -20px;
  /* Apply a negative `margin-left` to negate the columnsâ€™ gutters */
  padding: 0;
}
.grid .grid:last-child {
  margin-bottom: -20px;
  /* remove bottom space for nested grid */
}
.grid.grid--flush--bottom {
  margin-bottom: -20px !important;
}

.grid__item {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  /* Required to combine fluid widths and fixed gutters */
  display: inline-block;
  font-size: 16px;
  font-size: px-rem(16px);
  margin-bottom: 20px;
  padding-left: 20px;
  vertical-align: top;
}

.grid--narrowest {
  margin-left: -7px;
  /* Apply a negative 'margin-left' to negate the columns' gutters */
}
.grid .grid--narrowest:last-child {
  margin-bottom: -7px;
  /* remove bottom space for nested grid */
}
.grid--narrowest > .grid__item {
  margin-bottom: 7px;
  padding-left: 7px;
}
.grid--narrowest.grid--flush--bottom {
  margin-bottom: -7px !important;
}

.grid--narrow {
  margin-left: -10px;
  /* Apply a negative 'margin-left' to negate the columns' gutters */
}
.grid .grid--narrow:last-child {
  margin-bottom: -10px;
  /* remove bottom space for nested grid */
}
.grid--narrow > .grid__item {
  margin-bottom: 10px;
  padding-left: 10px;
}
.grid--narrow.grid--flush--bottom {
  margin-bottom: -10px !important;
}

.grid--wide {
  margin-left: -30px;
  /* Apply a negative 'margin-left' to negate the columns' gutters */
}
.grid .grid--wide:last-child {
  margin-bottom: -30px;
  /* remove bottom space for nested grid */
}
.grid--wide > .grid__item {
  margin-bottom: 30px;
  padding-left: 30px;
}
.grid--wide.grid--flush--bottom {
  margin-bottom: -30px !important;
}

.grid--widest {
  margin-left: -60px;
  /* Apply a negative 'margin-left' to negate the columns' gutters */
}
.grid .grid--widest:last-child {
  margin-bottom: -60px;
  /* remove bottom space for nested grid */
}
.grid--widest > .grid__item {
  margin-bottom: 60px;
  padding-left: 60px;
}
.grid--widest.grid--flush--bottom {
  margin-bottom: -60px !important;
}

.grid--nowrap {
  white-space: nowrap;
}
.grid--nowrap > .grid__item {
  white-space: normal;
}

.grid--reversed {
  direction: rtl;
  text-align: left;
}
.grid--reversed > .grid__item {
  direction: ltr;
  text-align: left;
}

.grid--gutterless {
  margin-left: 0;
  margin-bottom: 20px;
  /* since there's no gutter on .grid__items we have to compensate with margin bottom on .grid--gutterless */
}
.grid--gutterless > .grid__item {
  margin-bottom: 0;
  padding-left: 0;
}
.grid .grid--gutterless:last-child {
  margin-bottom: 0;
  /* when nested .grid--gutterless:last-child should have no bottom margin */
}
.grid--gutterless.grid--flush--bottom {
  margin-bottom: 0 !important;
}

.grid--center {
  text-align: center;
}
.grid--center > .grid__item {
  text-align: left;
}

.grid--right {
  text-align: right;
}
.grid--right > .grid__item {
  text-align: left;
}

.grid--middle > .grid__item {
  vertical-align: middle;
}

.grid--bottom > .grid__item {
  vertical-align: bottom;
}

/* --------------------------------------------------------------------------------------
+
+ GRID GENERATOR (tweaked version of http://csswizardry.com/2013/02/introducing-csswizardry-grids/)
+
-------------------------------------------------------------------------------------- */
.one-whole {
  width: 100%;
}

.one-half, .two-quarters, .three-sixths, .four-eighths, .five-tenths, .six-twelfths {
  width: 50%;
}

.one-third, .two-sixths, .four-twelfths {
  width: 33.333%;
}

.two-thirds, .four-sixths, .eight-twelfths {
  width: 66.666%;
}

.one-quarter, .two-eighths, .three-twelfths {
  width: 25%;
}

.three-quarters, .six-eighths, .nine-twelfths {
  width: 75%;
}

.one-fifth, .two-tenths {
  width: 20%;
}

.two-fifths, .four-tenths {
  width: 40%;
}

.three-fifths, .six-tenths {
  width: 60%;
}

.four-fifths, .eight-tenths {
  width: 80%;
}

.one-sixth, .two-twelfths {
  width: 16.666%;
}

.five-sixths, .ten-twelfths {
  width: 83.333%;
}

.one-eighth {
  width: 12.5%;
}

.three-eighths {
  width: 37.5%;
}

.five-eighths {
  width: 62.5%;
}

.seven-eighths {
  width: 87.5%;
}

.one-tenth {
  width: 10%;
}

.three-tenths {
  width: 30%;
}

.seven-tenths {
  width: 70%;
}

.nine-tenths {
  width: 90%;
}

.one-twelfth {
  width: 8.333%;
}

.five-twelfths {
  width: 41.666%;
}

.seven-twelfths {
  width: 58.333%;
}

.eleven-twelfths {
  width: 91.666%;
}

/*
@include screen($grid-medium-start, $grid-medium-end) {
    @include viewport-type("M--");
}


@include min-screen($grid-large-start) {
    @include viewport-type("L--");
}
*/
/* --------------------------------------------------------------------------------------
+
+ INDEX FOR COMMON
+
-------------------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------------------
+
+ TYPE
+
-------------------------------------------------------------------------------------- */
@font-face {
  font-family: "Nexa Light";
  src: url('../fonts/../fonts/nexa_light-webfont.woff') format('woff'), url('../fonts/../fonts/nexa_light-webfont.ttf') format('truetype'), url('../fonts/../fonts/nexa_light-webfont.svg') format('svg'), url('../fonts/../fonts/nexa_light-webfont.eot') format('embedded-opentype');
}

@font-face {
  font-family: "Nexa Bold";
  src: url('../fonts/../fonts/nexa_bold-webfont.woff') format('woff'), url('../fonts/../fonts/nexa_bold-webfont.ttf') format('truetype'), url('../fonts/../fonts/nexa_bold-webfont.svg') format('svg'), url('../fonts/../fonts/nexa_bold-webfont.eot') format('embedded-opentype');
}

.type--light {
  font-weight: 300 !important;
}

.type--normal {
  font-weight: 400 !important;
}

.type--semibold {
  font-weight: 600 !important;
}

.type--bold {
  font-weight: 700 !important;
}

.type--extrabold {
  font-weight: 800 !important;
}

.type--uppercase {
  text-transform: uppercase !important;
}

.type--lowercase {
  text-transform: lowercase !important;
}

.type--capitalize {
  text-transform: capitalize !important;
}

.type--no-transfrom {
  text-transform: none !important;
}

.type--color-mute {
  color: white;
}

.type--color-white > * {
  color: white;
}

.text--20 {
  font-size: 20px;
  font-size: px-rem(20px);
}

/* --------------------------------------------------------------------------------------
+
+ ICONS FONT
+
-------------------------------------------------------------------------------------- */
@font-face {
  font-family: 'icomoon';
  src: url("../fonts/icomoon.eot");
  src: url("../fonts/icomoon.eot?#iefix") format("embedded-opentype"), url("../fonts/icomoon.woff") format("woff"), url("../fonts/icomoon.ttf") format("truetype"), url("../fonts/icomoon.svg#icomoon") format("svg");
  font-weight: normal;
  font-style: normal;
}

.icon {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  display: inline-block;
  font-family: 'icomoon';
  font-size: 16px !important;
  font-style: normal !important;
  font-variant: normal !important;
  font-weight: normal !important;
  /* make sure font weight is ok if it's in .btn parent */
  line-height: 1 !important;
  speak: none;
  text-transform: none !important;
  vertical-align: middle;
}
.icon:hover {
  text-decoration: none;
}

.icon--small {
  font-size: 12px !important;
}

.icon--medium {
  font-size: 22px !important;
}

.icon--large {
  font-size: 32px !important;
}

.icon--huge {
  font-size: 36px !important;
}

.icon-doc:before {
  content: "\e604";
  font-size: 40px !important;
}

.icon-Strelice:before {
  content: "\e600";
}

.icon-strelica:before {
  content: "\e601";
}

.icon-Strelicalanding:before {
  content: "\e602";
}

.icon-Sijalica:before {
  content: "\e603";
}

.icon-Pismo:before {
  content: "\e605";
}

.icon-Meta:before {
  content: "\e607";
}

.icon-Logo:before {
  content: "\e608";
}

.icon-knjiga:before {
  content: "\e609";
}

.icon-Brod:before {
  content: "\e60b";
}

.icon-bedz:before {
  content: "\e60c";
}

.icon-arrow-left:before {
  content: "\e610";
}

.icon-arrow-right:before {
  content: "\e611";
}

.icon-twitter:before {
  content: "\e60f";
}

.icon-facebook:before {
  content: "\e60d";
}

.icon-linkedin:before {
  content: "\e612";
}

/* --------------------------------------------------------------------------------------
+
+ HEADINGS
+
-------------------------------------------------------------------------------------- */
h1,
h2,
h3,
h4,
h5,
h6,
.heading {
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 20px;
  font-family: "Nexa Bold";
  color: white;
}
h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a,
.heading a {
  color: inherit;
}
h1.heading--uppercase,
h2.heading--uppercase,
h3.heading--uppercase,
h4.heading--uppercase,
h5.heading--uppercase,
h6.heading--uppercase,
.heading.heading--uppercase {
  text-transform: uppercase;
}

h1,
.heading--alpha {
  font-size: 36px;
  font-size: px-rem(36px);
  text-transform: uppercase;
}

h2,
.heading--beta {
  font-size: 28px;
  font-size: px-rem(28px);
}

h3,
.heading--gamma {
  font-size: 26px;
  font-size: px-rem(26px);
}

h4,
.heading--delta {
  font-size: 22px;
  font-size: px-rem(22px);
}

h5,
.heading--epsilon {
  font-size: 18px;
  font-size: px-rem(18px);
  color: #112235;
  font-weight: bold;
  text-transform: uppercase;
}

h6,
.heading--zeta {
  font-size: 16px;
  font-size: px-rem(16px);
  line-height: 1.6;
}

/* --------------------------------------------------------------------------------------
+
+ BUTTONS
+
-------------------------------------------------------------------------------------- */
.btn {
  font-family: "Nexa Light";
  font-size: 16px;
  -moz-user-select: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -o-user-select: none;
  user-select: none;
  text-decoration: none !important;
  text-shadow: none !important;
  vertical-align: middle !important;
  white-space: nowrap !important;
  display: inline-block;
  text-align: center;
  behavior: url("../PIE.htc");
  position: relative;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  -o-border-radius: 3px;
  border-radius: 3px;
  height: 25px;
  line-height: 25px;
  padding: 0 10px;
  margin: 0;
  /* remove margin for some browsers */
  color: white;
  background: white;
  border: none;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.btn:hover {
  cursor: pointer !important;
  text-decoration: none !important;
  background: white;
}
.btn.btn--block {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  display: block !important;
  width: 100% !important;
  /* force 100% width for <button> */
}

.btn--primary {
  border: 2px solid #fff !important;
  color: #fff !important;
  font-size: 14px !important;
  padding: .9em 1.5em !important;
}

.btn--secondary {
  -webkit-background-clip: padding;
  -moz-background-clip: padding;
  background-clip: padding-box;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -ms-border-radius: 20px;
  -o-border-radius: 20px;
  border-radius: 20px;
  background-color: white !important;
  color: #fff !important;
  font-size: 14px !important;
  padding: .5em 20px !important;
  min-width: 120px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.btn--secondary:hover {
  background-color: white !important;
}

.btn--cold {
  background-color: white !important;
  border-color: white !important;
}
.btn--cold:hover {
  background-color: white !important;
  border-color: white !important;
}

.btn--warm {
  background-color: white !important;
  border-color: white !important;
}
.btn--warm:hover {
  background-color: white !important;
  border-color: white !important;
}

.btn--alert {
  background-color: white !important;
  border-color: white !important;
}
.btn--alert:hover {
  background-color: white !important;
  border-color: white !important;
}

.btn--success {
  background-color: white !important;
  border-color: white !important;
}
.btn--success:hover {
  background-color: white !important;
  border-color: white !important;
}

.btn--plain {
  border-color: #dee0e4 !important;
  color: white !important;
  background-color: transparent;
}
.btn--plain:hover {
  background-color: rgba(216, 221, 225, 0.2) !important;
}

.btn--dark {
  border-color: #252c41 !important;
}
.btn--dark:hover {
  background-color: rgba(37, 44, 65, 0.4) !important;
}

.btn--transparent {
  border-color: #fff !important;
  /* fallback for IE */
  border-color: rgba(255, 255, 255, 0.3) !important;
}
.btn--transparent:hover {
  background-color: rgba(255, 255, 255, 0.1) !important;
}

.btn--medium {
  padding-left: 40px !important;
  padding-right: 40px !important;
}

.btn--blog {
  display: none !important;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.blog .btn--blog {
  display: inline-block !important;
}
.btn--blog a {
  background-image: url("../images/blog/btn-blog.png") !important;
  background-repeat: no-repeat !important;
  background-position: 50% 50% !important;
  width: 42px;
  height: 42px;
  display: block;
  border: 2px solid #555f7f !important;
  border: 2px solid rgba(241, 245, 247, 0.15) !important;
}

/* --------------------------------------------------------------------------------------
+
+ JUSTIFIZE
+
-------------------------------------------------------------------------------------- */
/*
    http://www.css-101.org/articles/responsive-boxes/magic-boxes.php

    <div class="justifize">
      <div class="justifize__box">
        justifize box content
      </div>
      <div class="justifize__box">
        justifize box content
      </div>
      <div class="justifize__box">
        justifize box content
      </div>
    </div>
*/
.justifize {
  font-size: 1px;
  /* IE 9, 10, 11 FIX */
  text-align: justify;
}
.justifize:after {
  content: "";
  display: inline-block;
  width: 100%;
}

.justifize__box {
  font-size: 16px;
  font-size: px-rem(16px);
  display: inline-block;
  text-align: left;
  vertical-align: middle;
}
.justifize--top
.justifize__box {
  vertical-align: top;
}
.justifize--bottom
.justifize__box {
  vertical-align: bottom;
}

/* --------------------------------------------------------------------------------------
+
+ VERTICALIZE
+
-------------------------------------------------------------------------------------- */
/*
    <div class="verticalize">
      <div class="verticalize__box">
        Content that needs to be vertically and horizontally centered
      </div>
    </div>
*/
.verticalize {
  text-align: center;
}
.verticalize:before {
  content: "";
  display: inline-block;
  height: 100%;
  margin-right: -0.25em;
  /* Adjusts for spacing */
  vertical-align: middle;
}

.verticalize--full {
  height: 100%;
}

.verticalize__box {
  display: inline-block;
  max-width: 99%;
  /* Prevent verticalize box to go to next line and break layout if window is too narrow */
  text-align: center;
  vertical-align: middle;
}

/* --------------------------------------------------------------------------------------
+
+ TABLEIZE
+
-------------------------------------------------------------------------------------- */
/*
    The .tableize__content serves as container for cell content. If you need width or padding set on a cell, make sure you set it to .tableize__content since that is what makes the whole thing work.

    <div class="tableize">
      <div class="tableize__cell">
        <div class="tableize__content">
          cell content
        </div>
      </div>
      <div class="tableize__cell">
        <div class="tableize__content">
          cell content
        </div>
      </div>
    </div>
*/
.tableize {
  display: table;
  width: 100%;
}

.tableize--full {
  height: 100%;
}
.tableize--full .tableize__cell,
.tableize--full .tableize__content {
  height: inherit;
}

.tabeleize--720-width {
  width: 720px;
  margin: 0 auto;
}

.tableize__cell {
  display: table-cell;
  vertical-align: top;
}
.tableize--middle .tableize__cell {
  vertical-align: middle;
}
.tableize--bottom .tableize__cell {
  vertical-align: bottom;
}

.tableize__cell--filler {
  width: 100%;
  /* fills the rest of the row when one or more cells have fixed width */
}

/*
    Tableize row and tableize row flexible are needed only for sticky header/footer combination.
*/
.tableize__row {
  display: table-row;
  height: 1px;
}

.tableize__row--flexible {
  height: auto;
}

/* --------------------------------------------------------------------------------------
+
+ FLAG
+
-------------------------------------------------------------------------------------- */
/*
    http://csswizardry.com/2013/05/the-flag-object/

    <div class="flag">
      <div class="flag__img">
        <img> or some other element here
      </div>
      <div class="flag__body">
        flag content
      </div>
    </div>
*/
.flag {
  display: table;
  width: 100%;
}

.flag__img,
.flag__body {
  display: table-cell;
  vertical-align: middle;
}
.flag--top .flag__img, .flag--top
.flag__body {
  vertical-align: top;
}
.flag--bottom .flag__img, .flag--bottom
.flag__body {
  vertical-align: bottom;
}

.flag__img {
  padding-left: 20px;
}
.flag__img > img {
  display: block;
}
.flag--reversed .flag__img {
  padding-right: 0;
  padding-right: 20px;
}
.flag--gutterless .flag__img {
  padding: 0;
}

.flag__body {
  width: 100%;
}

.flag--prominent .flag__img {
  padding-left: 80px;
}

/* --------------------------------------------------------------------------------------
+
+ LAYOUT
+
-------------------------------------------------------------------------------------- */
html, body {
  height: 100%;
}

.layout {
  clear: both;
  min-height: 100%;
  height: auto !important;
  height: 100%;
  margin-bottom: -105px;
}
.layout .layout_footer {
  height: 105px;
}

footer {
  clear: both;
  position: relative;
  height: 105px;
}

main {
  display: block;
  background-color: #ecf2f7;
  /* this is important for some browsers (opera, ...) who recognize <main> as inline element */
}

.container, .inner-container, .sec1 {
  margin: 0 auto;
  width: 960px;
  min-width: 960px;
}

.inner-container, .sec1, .inner-container-right {
  width: 810px;
  min-width: 810px;
}

.inner-container-right {
  float: right;
  padding-bottom: 90px;
}
.inner-container-right *:last-child {
  margin-bottom: 0;
}

.left {
  float: left;
}

.right {
  float: right;
}

/* --------------------------------------------------------------------------------------
+
+ FORMS
+
-------------------------------------------------------------------------------------- */
input[type="text"], textarea {
  vertical-align: middle;
  background-color: white;
  font-family: "Nexa Light";
  font-size: 16px;
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
  behavior: url("../PIE.htc");
  position: relative;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  -o-border-radius: 3px;
  border-radius: 3px;
  -webkit-appearance: none;
  box-shadow: none;
  width: 100%;
  padding: 0 10px;
  border: none;
  color: white;
  height: 30px;
  line-height: 30px;
}
input[type="text"]:hover, input[type="text"]:focus, textarea:hover, textarea:focus {
  background-color: #fff;
}
input[type="text"]:invalid, textarea:invalid {
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
  /* fixes mozilla red outline (shadow) */
}

textarea {
  padding: 5px 10px;
  line-height: 1.5;
  resize: none;
  min-height: 150px;
}

[placeholder]:focus::-webkit-input-placeholder {
  color: transparent;
}

/* --------------------------------------------------------------------------------------
+
+ HEADER
+
-------------------------------------------------------------------------------------- */
header {
  background-color: #fff;
  position: relative;
  width: 100%;
}
.home header {
  margin-top: -100px;
}
.home header.active {
  margin-top: 0;
}
header .top {
  height: 100px;
  line-height: 100px;
  background-color: #fff;
  border-bottom: 1px solid #c1c6ca;
  z-index: 100;
  width: 100%;
  position: relative;
}
header .logo {
  width: 159px;
  height: 39px;
  float: left;
  margin-top: 30px;
}
header nav {
  float: right;
}
header nav ul {
  float: left;
  margin-left: 40px;
  margin-top: 30px;
}
header nav ul li {
  float: left;
}
header nav ul li:before {
  display: none;
}
header nav a {
  cursor: pointer;
  padding: 0 10px;
  height: 38px;
  line-height: 38px;
  display: block;
  color: #112235;
}
header nav a:hover {
  background-color: #ffd100;
  color: white !important;
}
header nav .active a {
  background-color: #ffd100;
}

.main-nav li + li {
  margin-left: 10px;
}

.stuck {
  top: 0;
  z-index: 100;
}

/* --------------------------------------------------------------------------------------
+
+ FOOTER
+
-------------------------------------------------------------------------------------- */
.footer-main {
  background-color: #112235;
  position: relative;
  z-index: 10;
}
.footer-main .container, .footer-main .inner-container, .footer-main .sec1 {
  padding-top: 30px;
}
.footer-main .left img {
  float: left;
}
.footer-main small {
  float: left;
  clear: left;
  font-size: 14px;
  color: #28405a;
}
.footer-main .soc {
  float: right;
}
.footer-main .soc li {
  float: left;
  margin-left: 10px;
}
.footer-main .soc li:before {
  display: none;
}
.footer-main .soc a {
  width: 26px;
  height: 26px;
  display: block;
  border-top: 1px solid #28405a;
  border-bottom: 1px solid #28405a;
  background-color: #385473;
}
.footer-main .soc a:hover {
  background-color: #ffd100;
  color: #112235;
  border-color: #a08b15;
}
.footer-main .soc a:before {
  height: 26px;
  line-height: 26px;
  padding-left: 5px;
}

/* --------------------------------------------------------------------------------------
+
+ MAIN CONTENT
+
-------------------------------------------------------------------------------------- */
/*---------------- Index
-------------------------------------*/
.intro-home {
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  position: relative;
  background: #fff;
  width: 100%;
  top: 0;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  padding-top: 142px;
}
.intro-home img {
  margin-bottom: 30px;
}
.intro-home .intro-home-content {
  width: 500px;
  margin: 0 auto;
  text-align: center;
}
.intro-home .intro-home-content h1 span {
  color: #ffd100;
}
.intro-home .intro-home-content p {
  color: white;
  font-size: 24px;
  margin-bottom: 50px;
}
.intro-home .intro-home-content a {
  background-color: #112235;
  color: #ffd100;
  display: inline-block;
  margin: 0 auto;
  position: relative;
  width: 195px;
  height: 75px;
  text-transform: uppercase;
  padding-left: 80px;
  padding-top: 13.5px;
  font-family: "Nexa Bold";
}
.intro-home .intro-home-content a i:before {
  display: block;
  position: absolute;
  height: 75px;
  width: 75px;
  left: 0;
  top: 0;
  padding-top: 19.5px;
  background-color: #ffd100;
  color: #112235;
  -webkit-transition: all 0.6s ease;
  -moz-transition: all 0.6s ease;
  -o-transition: all 0.6s ease;
  transition: all 0.6s ease;
}
.intro-home .intro-home-content a:hover {
  -webkit-transform: translate(0, 10px);
  -moz-transform: translate(0, 10px);
  -ms-transform: translate(0, 10px);
  -o-transform: translate(0, 10px);
  transform: translate(0, 10px);
}
.intro-home .intro-home-content a:hover i:before {
  color: white;
}

.icon-holder {
  display: block;
  width: 75px;
  height: 75px;
  position: absolute;
  top: 0;
  left: 0;
  background-color: #112235;
  text-align: center;
}
.icon-holder i {
  -webkit-transition: all 0.6s ease;
  -moz-transition: all 0.6s ease;
  -o-transition: all 0.6s ease;
  transition: all 0.6s ease;
  padding-top: 21.5px;
  color: #ffd100;
}

.block1, .block2, .block3, .slider-holder {
  margin-bottom: 30px;
}
.block1:hover .icon-holder i, .block2:hover .icon-holder i, .block3:hover .icon-holder i, .slider-holder:hover .icon-holder i {
  color: white;
}

.block1 {
  padding: 105px 30px 50px 30px;
  background: url("../images/content/block1.jpg") no-repeat center center;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  position: relative;
}
.block1 p {
  color: white;
}
.block1 .icon-holder {
  background-color: #ffd100;
}
.block1 .icon-holder i {
  color: #112235;
}

.block2, .block3 {
  min-height: 320px;
  position: relative;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  padding-left: 30px;
  padding-right: 30px;
}

.block2 {
  float: left;
  width: 250px;
  background-color: #ffd100;
  position: relative;
}
.block2 a {
  display: block;
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
}
.block2 a h5 {
  position: absolute;
  bottom: 30px;
  left: 30px;
  width: 130px;
}

.block3 {
  padding-top: 60px;
  padding-bottom: 30px;
  width: 532px;
  background-color: white;
  float: right;
}
.block3 h5 {
  padding-left: 75px;
}

.clock-holder {
  clear: both;
  background: url("../images/content/1.jpg") no-repeat center center;
  padding: 40px 30px 25px 30px;
  margin-bottom: 30px;
}
.clock-holder ul li {
  margin-right: 35px;
  display: block;
  float: left;
}
.clock-holder ul li:before {
  display: none;
}
.clock-holder ul li:last-child {
  margin-right: 0;
}
.clock-holder ul li .clock_container {
  width: 95px;
  position: relative;
}
.clock-holder ul li .clock_container .lbl {
  color: white;
  line-height: 22px;
  text-align: center;
  height: 27px;
  width: 108px;
  margin: 0 auto;
}
.clock-holder ul li .clockHolder {
  width: 95px;
  margin-bottom: 50px;
  position: relative;
}
.clock-holder ul li .clock {
  margin-left: 5px;
}
.clock-holder ul li .sec {
  display: block;
  position: absolute;
}
.clock-holder ul li .min {
  display: block;
  position: absolute;
}
.clock-holder ul li .hour {
  display: block;
  position: absolute;
}
.clock-holder ul li .rotatingWrapper {
  position: absolute;
  width: 95px;
  height: 95px;
  left: 5px;
}
.clock-holder ul li .digital {
  font-weight: bold;
  font-size: 14px;
  color: #444444;
  text-align: center;
}

.slider-holder {
  background-image: url("../images/content/2.jpg");
  background-repeat: no-repeat;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  padding: 60px 105px;
  position: relative;
}

.slider-content {
  z-index: 99;
}
.slider-content h6, .slider-content h5, .slider-content .date, .slider-content a {
  color: white;
}
.slider-content h5 {
  width: 500px;
}
.slider-content .date {
  margin-bottom: 18px;
}
.slider-content a:hover {
  color: #ffd100;
}

/*--------------------- About 
-----------------------------------------*/
.about, .services {
  height: 300px;
  position: relative;
}

.about {
  background: url("../images/content/3.jpg") no-repeat center top;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
}

.services {
  background: url("../images/content/4.jpg") no-repeat center center;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
}

.work {
  background: url("../images/content/4.jpg") no-repeat center center;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
}

.info-box {
  background: url('../images/rgbapng/ffd100cc-5.png?1396615263');
  background: rgba(255, 209, 0, 0.8);
  width: 150px;
  height: 150px;
  text-align: center;
  position: absolute;
  bottom: 0;
}
.info-box h5 {
  margin-bottom: 0;
}

.info-block, .comments, article {
  background-color: white;
  margin-bottom: 30px;
}
.info-block ul, .comments ul, article ul {
  margin-left: 22px;
}

.info-block, .comments {
  padding: 50px 30px;
  position: relative;
}
.info-block img, .comments img {
  width: 810px;
  margin: -50px -30px 50px -30px !important;
}
.info-block span, .comments span {
  /* color: #112235; */
}

article {
  position: relative;
  padding: 60px 30px 50px 30px;
}
article ul {
  margin-left: 22px;
}
article ul:last-child {
  margin-bottom: 0;
}
article ul li {
  margin-bottom: 35px;
}
article h5 {
  padding-left: 75px;
}

/*---------------------- Feed
----------------------------------------*/
.small-nav {
  float: right;
  margin-top: 90px;
}
.small-nav ul li {
  float: right;
  margin-left: 30px;
}
.small-nav ul li:before {
  display: none;
}
.small-nav ul li a {
  color: #63696f;
}
.small-nav ul li a:hover {
  color: #112235;
}

.pagination-holder {
  width: 100%;
  text-align: center;
}
.pagination-holder .pagination {
  font-family: "Nexa Bold";
}
.pagination-holder .pagination li {
  display: inline-block;
}
.pagination-holder .pagination li:before {
  display: none;
}
.pagination-holder .pagination li a {
  margin: 0 3px;
  color: #63696f;
}
.pagination-holder .pagination li a:hover {
  color: #112235;
}

.date-holder {
  width: 75px;
  height: 75px;
  background-color: #112235;
  position: absolute;
  top: -75px;
  left: -75px;
  text-align: center;
  padding-top: 10px;
}
.date-holder img {
  height: 40px;
  width: 32px;
  margin-top: 7px !important;
}
.date-holder h2 {
  font-weight: bold;
  color: #ffd100;
  margin-bottom: 0;
}
.date-holder h5 {
  color: #ffd100;
}
.date-holder .month {
  color: white;
  text-transform: uppercase;
  font-size: 14px;
}

/*------------ Feed Inner
-------------------------------*/
.posted {
  float: right;
  margin-top: 90px;
}
.posted p {
  display: inline-block;
  margin-left: 30px;
  color: #112235;
}
.posted p span {
  color: #bec6cb;
}

.inner-soc {
  margin-left: 0 !important;
}
.inner-soc li {
  display: inline-block;
  margin-right: 10px;
}
.inner-soc li:before {
  display: none;
}
.inner-soc li a {
  display: block;
  height: 30px;
  width: 30px;
  background-color: #bec6cb;
  color: white;
  text-align: center;
}
.inner-soc li a:before {
  line-height: 30px;
}
.inner-soc li a:hover {
  background-color: #ffd100;
  color: #112235;
}

.form-holder input, .form-holder textarea {
  border: 1px solid #ced0d1;
  margin-bottom: 30px;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  -o-border-radius: 0;
  border-radius: 0;
  color: #63696f;
}
.form-holder input:hover, .form-holder textarea:hover {
  border-color: #ffd100;
}
.form-holder input[type='text'] {
  width: 358px;
  height: 45px;
  display: block;
}
.form-holder textarea {
  width: 600px;
  height: 134px;
}
.form-holder input[type='button'] {
  display: block;
  height: 43px;
  line-height: 43px;
  padding: 0 21px;
  background-color: #112235;
  color: #ffd100;
  font-size: 18px;
  -webkit-transition: all 0.6s ease;
  -moz-transition: all 0.6s ease;
  -o-transition: all 0.6s ease;
  transition: all 0.6s ease;
  cursor: pointer;
  border: none !important;
  margin-bottom: 90px;
}
.form-holder input[type='button']:hover {
  color: white !important;
}

.comments .replay {
  position: absolute;
  right: 30px;
  bottom: 50px;
  cursor: pointer;
}

/*---------------- Contact us 
-----------------------------------*/
#map {
  height: 400px;
}

.contact-info {
  position: relative;
  padding: 50px;
  background-color: #112235;
  text-align: center;
  margin-bottom: 30px;
}
.contact-info h5 {
  color: white;
}
.contact-info p {
  width: 70px;
  margin-left: auto;
  margin-right: auto;
}
.contact-info h6 span {
  color: #ffd100;
}
.contact-info .info-box {
  top: -150px;
  left: -150px;
}

.mail-info {
  padding: 18px 18px 18px 105px;
  height: 75px;
  line-height: 10px;
}
.mail-info ul li {
  display: inline-block;
  padding-left: 40px;
  padding-right: 50px;
  border-left: 1px solid #ced0d1;
}
.mail-info ul li:first-child {
  padding-left: 0 !important;
  border-left: none;
}
.mail-info ul li:last-child {
  padding-right: 0 !important;
}
.mail-info ul li:before {
  display: none;
}
.mail-info ul li h6 {
  color: #112235;
  margin-bottom: 0;
}

.contact-form-holder {
  padding: 30px 30px 45px 30px;
  margin-top: -50px;
  background-color: white;
}
.contact-form-holder input[type="text"], .contact-form-holder textarea {
  margin-bottom: 30px;
  height: 45px;
  line-height: 45px;
  width: 358px;
  border: 1px solid #ced0d1;
  margin-bottom: 30px;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  -o-border-radius: 0;
  border-radius: 0;
  color: #63696f;
}
.contact-form-holder input[type="text"]:hover, .contact-form-holder textarea:hover {
  border-color: #ffd100;
}
.contact-form-holder input[type="text"].subject, .contact-form-holder textarea.subject {
  width: 752px;
}
.contact-form-holder input[placeholder='Nam'] {
  float: left;
}
.contact-form-holder input[placeholder='Address'] {
  float: right;
}
.contact-form-holder textarea {
  width: 752px;
}
.contact-form-holder input[type="button"] {
  display: block;
  height: 43px;
  line-height: 43px;
  padding: 0 21px;
  background-color: #112235;
  color: #ffd100;
  font-size: 18px;
  -webkit-transition: all 0.6s ease;
  -moz-transition: all 0.6s ease;
  -o-transition: all 0.6s ease;
  transition: all 0.6s ease;
  cursor: pointer;
  border: none !important;
  margin-left: auto;
  margin-right: auto;
}
.contact-form-holder input[type="button"]:hover {
  color: white !important;
}

.bgr-blue {
  background-color: #3a79ab;
}

.menu-activ {
  background-color: #ffd100;
}

.sec1 {
  padding: 90px 0;
}

.date {
  display: block;
  font-family: "Source Sans Pro" !important;
  font-size: 12px !important;
}

.pagination-active {
  color: #112235 !important;
}

.bg-clr {
  background-color: #ecf2f7;
}

.pad-left {
  padding-left: 75px;
}

.line {
  border-bottom: 1px solid #385473;
}

ul {
  margin-bottom: 20px;
}
ul li {
  position: relative;
}
ul li:before {
  content: '';
  width: 8px;
  height: 8px;
  display: block;
  position: absolute;
  left: -20px;
  top: 10px;
  background-color: #ffd100;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  border-radius: 50%;
}

/*
 * jQuery FlexSlider v2.2.0
 * http://www.woothemes.com/flexslider/
 *
 * Copyright 2012 WooThemes
 * Free to use under the GPLv2 license.
 * http://www.gnu.org/licenses/gpl-2.0.html
 *
 * Contributing author: Tyler Smith (@mbmufffin)
 */
/* Browser Resets
*********************************/
.flex-container a:active,
.flexslider a:active,
.flex-container a:focus,
.flexslider a:focus {
  outline: none;
}

.slides,
.flex-control-nav,
.flex-direction-nav {
  margin: 0;
  padding: 0;
  list-style: none;
}

/* Icon Fonts
*********************************/
/* Font-face Icons */
@font-face {
  font-family: 'flexslider-icon';
  src: url("fonts/flexslider-icon.eot");
  src: url("fonts/flexslider-icon.eot?#iefix") format("embedded-opentype"), url("fonts/flexslider-icon.woff") format("woff"), url("fonts/flexslider-icon.ttf") format("truetype"), url("fonts/flexslider-icon.svg#flexslider-icon") format("svg");
  font-weight: normal;
  font-style: normal;
}

/* FlexSlider Necessary Styles
*********************************/
.flexslider {
  margin: 0;
  padding: 0;
}

.flexslider .slides > li {
  display: none;
  -webkit-backface-visibility: hidden;
}

/* Hide the slides before the JS is loaded. Avoids image jumping */
.flexslider .slides img {
  width: 100%;
  display: block;
}

.flex-pauseplay span {
  text-transform: capitalize;
}

/* Clearfix for the .slides element */
.slides:after {
  content: "\0020";
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0;
}

html[xmlns] .slides {
  display: block;
}

* html .slides {
  height: 1%;
}

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

/* FlexSlider Default Theme
*********************************/
.flexslider {
  margin: 0;
  position: relative;
  zoom: 1;
}

.flexslider li {
  position: relative;
}
.flexslider li:before {
  display: none;
}

.flex-viewport {
  max-height: 200px;
  -webkit-transition: all 1s ease;
  -moz-transition: all 1s ease;
  -o-transition: all 1s ease;
  transition: all 1s ease;
}

.loading .flex-viewport {
  max-height: 300px;
}

.flexslider .slides {
  zoom: 1;
}

.flexslider .slides img {
  width: 100%;
}

.carousel li {
  margin-right: 5px;
  position: relative;
}

/* Direction Nav */
.flex-direction-nav {
  *height: 0;
}

.flex-direction-nav a {
  display: block;
  width: 33px;
  height: 33px;
  position: absolute;
  z-index: 10;
  overflow: hidden;
  opacity: 1;
  cursor: pointer;
  color: rgba(0, 0, 0, 0.8);
  background-color: #ffd100;
  right: 50%;
  top: 50%;
  margin-top: -70px;
}

.flex-direction-nav .flex-prev, .flex-direction-nav .flex-next {
  font-family: "icomoon";
  font-size: 30px;
}
.flex-direction-nav .flex-prev:hover:before, .flex-direction-nav .flex-next:hover:before {
  color: white !important;
}

.flex-direction-nav .flex-prev {
  margin-right: -303px;
}

.flex-direction-nav .flex-next {
  margin-right: -346px;
}

.flex-direction-nav .flex-prev:before, .flex-direction-nav .flex-next:before {
  position: absolute;
  top: -6px;
  color: #112235;
}

.flex-direction-nav .flex-prev:before {
  content: "\e610";
}

.flex-direction-nav .flex-next:before {
  content: "\e611";
}

/* Pause/Play */
.flex-pauseplay a {
  display: block;
  width: 20px;
  height: 20px;
  position: absolute;
  bottom: 5px;
  left: 10px;
  opacity: 0.8;
  z-index: 10;
  overflow: hidden;
  cursor: pointer;
  color: #000;
}

.flex-pauseplay a:before {
  font-family: "flexslider-icon";
  font-size: 20px;
  display: inline-block;
  content: '\f004';
}

.flex-pauseplay a:hover {
  opacity: 1;
}

.flex-pauseplay a.flex-play:before {
  content: '\f003';
}

/* Control Nav */
.flex-control-nav {
  display: none;
  width: 100%;
  position: absolute;
  bottom: -40px;
  text-align: center;
}

.flex-control-nav li {
  margin: 0 6px;
  display: inline-block;
  zoom: 1;
  *display: inline;
}

.flex-control-paging li a {
  width: 11px;
  height: 11px;
  display: block;
  background: #666;
  background: rgba(0, 0, 0, 0.5);
  cursor: pointer;
  text-indent: -9999px;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -o-border-radius: 20px;
  border-radius: 20px;
  -webkit-box-shadow: inset 0 0 3px rgba(0, 0, 0, 0.3);
  -moz-box-shadow: inset 0 0 3px rgba(0, 0, 0, 0.3);
  -o-box-shadow: inset 0 0 3px rgba(0, 0, 0, 0.3);
  box-shadow: inset 0 0 3px rgba(0, 0, 0, 0.3);
}

.flex-control-paging li a:hover {
  background: #333;
  background: rgba(0, 0, 0, 0.7);
}

.flex-control-paging li a.flex-active {
  background: #000;
  background: rgba(0, 0, 0, 0.9);
  cursor: default;
}

.flex-control-thumbs {
  margin: 5px 0 0;
  position: static;
  overflow: hidden;
}

.flex-control-thumbs li {
  width: 25%;
  float: left;
  margin: 0;
}

.flex-control-thumbs img {
  width: 100%;
  display: block;
  opacity: .7;
  cursor: pointer;
}

.flex-control-thumbs img:hover {
  opacity: 1;
}

.flex-control-thumbs .flex-active {
  opacity: 1;
  cursor: default;
}

/* Update */
  .news-section .news{
	  width: 260px;
	    display: inline-block;
	    background: #fff;
	    margin-left:7px;
	    min-height:380px;
	    position: relative;
  }  
 .news-section{
 	margin:10px auto;
 }
 
 .news .new-content {
    top: 100px;
    position: absolute;
    padding: 0 10px;
}
.news p{
	margin-top:10px;
}
.news-section .news:first-child {
    margin-left: 0;
}
.news-section .news a{
    line-height: 1.3em;
}
/* Market */
.wpfd-content-table span.ext.jpg {
    position: absolute;
    left: 10px;
    top: 15px;
}

.colstyle .mediaTableMenu ul li {
    padding: 0 10px;
}
.colstyle .mediaTableMenu ul li label {
    margin-left: 5px;
}
.wpfd-content-table .table th, .wpfd-content-table .table td {
    text-align: center;
}
.mediaTableWrapper .mediaTable .col-download {
    text-align: center;
}
.wpfd-content-table span.ext.pdf {
    margin-left: 0;
    margin-right: 20px;
    position: absolute;
    left: 10px;
	top: 15px;
}

.wpfd-content-table .table th {
    font-weight: bold;
    background-color: #183867 !important;
    color: #fff !important;
}
.table-bordered>tbody>tr>td, .table-bordered>tbody>tr>th, .table-bordered>tfoot>tr>td, .table-bordered>tfoot>tr>th, .table-bordered>thead>tr>td, .table-bordered>thead>tr>th {
    border: 0;
    border-bottom: 1px solid #ddd;
}
.wpfd-content i.wpfd-preview, .wpfd-content i.wpfd-download {
    float: left;
}

 .wpfd-content-table .table-bordered caption + thead tr:first-child th,
  .wpfd-content-table .table-bordered caption + tbody tr:first-child th,
   .wpfd-content-table .table-bordered caption + tbody tr:first-child td,
    .wpfd-content-table .table-bordered colgroup + thead tr:first-child th, .wpfd-content-table .table-bordered colgroup + tbody tr:first-child th,  .wpfd-content-table .table-bordered colgroup + tbody tr:first-child td, .wpfd-content-table .table-bordered thead:first-child tr:first-child th, .wpfd-content-table .table-bordered tbody:first-child tr:first-child th, .wpfd-content-table .table-bordered tbody:first-child tr:first-child td {
    text-align: center !important;
}
 .wpfd-content-table .table td:first-child{
	width:40%;
	text-align:left;
		    position: relative;

}

.wpfd-content-table .extcol {
    text-align: left !important;
    margin-left: 50px;
    display: block;
}
.wpfd-content-table a.wpfd_downloadlink {
    font-family: inherit !important;
}
.file-icon {background-color: transparent !important;}
.activeMediaTable th.optional, .activeMediaTable td.optional, .mediaTableWrapper .mediaTable .col-download  {text-align: center;}

.wpfd-content .breadcrumbs {
    margin: 5px 25px 0 !important;
        background: unset !important;
}
.wpfd-content-table .table-bordered thead th,.wpfd-content-table .table-bordered tbody td{
	    border-left: 1px solid #ccc;
}
ul.jaofiletree li:before {
content : unset;
}


/* */
article#mainStory {
    background-color: unset;
    margin-bottom: 0;
    padding:0;
}

