/*  Encoding
-----------------------------------------------------------------------------*/
@charset "utf-8";



/* Eric Meyer's CSS Reset */
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 {
    border: 0;
    font-size: 100%;
    font: inherit;
    margin: 0;
    padding: 0;
    vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
    display: block;
}

body {
    line-height: 1;
}

ol, ul {
    list-style: none;
}

blockquote, q {
    quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
    content: '';
    content: none;
}

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

/* End of Eric Meyer's CSS Reset */
html {
    height: 100%;
    overflow-y: scroll;
}

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

body {
    font: 12px/18px Arial, sans-serif;
    height: 100%;
    width: 100%;
}

a {
    text-decoration: none;
}

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

table th, table td {
    border-collapse: collapse;
    padding: 4px 5px;
}

table th {
    vertical-align: middle;
}

table td {
    background: #FAFAFA;
}

table {
    width: 100%;
    margin: 10px 1px;
}

.wrapper {
    width: 100%;
    min-width: 1024px;
    background: #e6e6e6;
    min-height: 100%;
}

/*.wrapper:not(.bg) {
    overflow: hidden;
}*/

.wrapper.bg {
    background: #1a1a1a;
}

.inside {
    margin: 0 auto;
    position: relative;
    width: 1000px;
    min-height: 100%;
}


/* All
-----------------------------------------------------------------------------*/

*:before, *:after {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

[class*=col] {
    box-sizing: border-box;
    float: left;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    padding: 10px;
}

.col   { width: 100%;   }
.col-1 { width: 16.67%; }
.col-2 { width: 33.33%; }
.col-3 { width: 50%;    }
.col-4 { width: 66.67%; }
.col-5 { width: 83.33%; }
.col-6 { width: 25%;    }

.clear:after {
    clear: both;
    content:  ' ';
    display: block;
    height: 0;
    width: 100%;
}

.cube:after,
.animated {
    -webkit-transition: .3s;
    -moz-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
}

.cube:after {
    filter:progid:DXImageTransform.Microsoft.Alpha(opacity=0);
    -moz-opacity: 0;
    -khtml-opacity: 0;
    opacity: 0;
}

.cube:hover:after {
    filter:progid:DXImageTransform.Microsoft.Alpha(opacity=1);
    -moz-opacity: 1;
    -khtml-opacity: 1;
    opacity: 1;
}

/* Header
-----------------------------------------------------------------------------*/
.header {
    background: #1a1a1a;
    height: 200px;
}

.large-logo {
    background: transparent url(../images/large-logo.png) no-repeat;
    display: block;
    height: 160px;
    width: 247px;
    margin-top: 11px;
}

.head-right {
    color: #fff;
    font: 22px/1.2em 'Arial Narrow', Arial, sans-serif;
    font-stretch: ultra-condensed;
    text-align: right;
    text-transform: uppercase;
}

.head-right .txt {
    margin: 48px 0 auto;
}

/* Cube
-----------------------------------------------------------------------------*/
.cube {
    display: block;
    float: left;
    overflow: hidden;
    text-transform: uppercase;
    color: #fff;
    position: relative;
}

.cube:after {
    content: '';
    display: block;
    position: absolute;
    right: 5%;
    top: 5%;
    background-repeat: no-repeat;
}

.cube-large {
    height: 306px;
    margin: 0 22px 22px 0;
    width: 306px;
}

.cube-even {
    margin-right: 0 !important;
}

.cube-medium {
    width: 147px;
    height: 147px;
    margin: 0 8px 8px 0;
}

.cube {
    border: 2px solid transparent;
}

.cube:hover {
    border: 2px solid #1a1a1a;
}

.page .cube:hover {
    border: 2px solid #e6e6e6;
}

.cube-small {
    width: 41px;
    height: 41px;
}

.left-home .cube:nth-child(4),
.cube-medium.section {
    margin-bottom: 22px;
}

@-moz-document url-prefix() {
    .cube-medium.section {
        margin-bottom: 22px;
    }
}

.cube-large:after {
    width: 44px;
    height: 44px;
    background-image: url(../images/arrow-circle-large.png);
}

.cube-medium:after {
    width: 25px;
    height: 25px;
    background-image: url(../images/arrow-circle-medium.png);
}

.cube-large .cube-txt {
    font-size: 20px;
}

.cube-medium .cube-txt {
    font-size: 14px;
}

.cube-txt {
    color: #fff;
    font-family: 'Arial Narrow', Arial, sans-serif;
    font-stretch: ultra-condensed;
    position: absolute;
    left: 5%;
    bottom: 5%;
    text-shadow: 0 -1px 1px rgba(0, 0, 0, .2);
    -webkit-text-shadow: 0 -1px 1px rgba(0, 0, 0, .2);
    -moz-text-shadow: 0 -1px 1px rgba(0, 0, 0, .2);
    -khtml-text-shadow: 0 -1px 1px rgba(0, 0, 0, .2);
}

.cube-center-content {
    display: table;
}

.cube-txt-center {
    vertical-align: middle;
    display: table-cell;
    text-align: center;
    text-shadow: 0 -1px 1px rgba(0, 0, 0, .2);
    -webkit-text-shadow: 0 -1px 1px rgba(0, 0, 0, .2);
    -moz-text-shadow: 0 -1px 1px rgba(0, 0, 0, .2);
    -khtml-text-shadow: 0 -1px 1px rgba(0, 0, 0, .2);
}

.cube-medium .cube-txt-center {
    font-size: 24px;
    font-family: 'Arial Narrow', Arial, sans-serif;
    font-stretch: ultra-condensed;
}

.cube-medium .cube-txt-center span {
    font-weight: bold;
    position: relative;
    top: -0.3em;
    margin-left: 3px;
    letter-spacing: .2em;
}

.cube-image {
    background-position: 50% 50%;
    background-repeat: no-repeat;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    visibility: visible;
    /*transform: scale(.95);
    -webkit-transform: scale(.95);
    -moz-transform: scale(.95);
    -o-transform: scale(.95);*/

}

.cube-image.small {
    background-size: 50%;
}

.cube-image:hover {
    /*transform: scale(1.02);
    -webkit-transform: scale(1.02);
    -moz-transform: scale(1.02);
    -o-transform: scale(1.02);*/
    background-color: rgba(0, 0, 0, .1);
}

/*.cube-active {
    border: 3px solid rgba(0, 0, 0, .5);
}*/

.cube-wrap-page {
    padding: 10px 0;
}

.cube-cadet-blue { background-color: #1ba1e2; }


.title-content {
    /*background: #d8c100;*/
    color: #fff;
    font: 20px/1.2em 'Arial Narrow', Arial, sans-serif;
    font-stretch: ultra-condensed;
    padding: 10px 15px;
}

.page {
    width: 980px;
}

.top-nav {
    margin-bottom: 12px;
    margin-top: 30px;
}

.top-nav .section {
    margin-right: 15px;
    height: 41px;
    float: left;
}

.top-nav a {
    margin-right: 10px;
}

.top-nav a:nth-child(4n) {
    margin-right: 25px !important;
}

.table {
    text-align: center;
    margin: 5px 1px 30px;
}

.table th,
.table td {
    border: 1px solid #a6b3be;
}

.table th {
    background: #537da5;
    color: #fff;
    text-shadow: 0 -1px 1px rgba(0, 0, 0, .2);
    -webkit-text-shadow: 0 -1px 1px rgba(0, 0, 0, .2);
    -moz-text-shadow: 0 -1px 1px rgba(0, 0, 0, .2);
    -khtml-text-shadow: 0 -1px 1px rgba(0, 0, 0, .2);
}

.table tr:first-child th:first-child,
.table tr:last-child th:first-child {
    border-color: #537da5;
    border-right-color: #a6b3be;
}

.table th:last-child {
    border-color: #537da5;
    border-left-color: #a6b3be;
    border-bottom-color: #a6b3be;
}

.table tr:first-child th {
    border-top-color: #537da5;
}

.table tr:last-child th {
    border-bottom-color: #537da5;
}

.table tr.even td {
    background: #f3f2f2;
}

.table td:first-child {
    background: #dfe4e6 !important;
}



h2 {
    text-transform: uppercase;
    font: 18px/1.2em 'Arial Narrow', Arial, sans-serif;
    font-stretch: ultra-condensed;
    padding-bottom: 10px;
}

.page-container {
    width: 98%;
    overflow: hidden;
}


.page-container ul {
    list-style: square outside;
    margin-left: 25px;
}

#page-carousel {
    margin-top: 20px;
}

#page-carousel img:hover {
    border: 2px solid transparent;
    width: 115px;
    height: 75px;
}

.page-carousel-wrap {
    position: relative;
}

.page-carousel-wrap .box {
    height: 79px;
    position: absolute;
    text-align: center;
    top: 0;
    width: 45px;
}

.page-carousel-wrap .box .arrow {
    width: 0;
    height: 3px;
    border: 38px solid transparent;
    position: absolute;
}

.page-carousel-wrap .box-left .arrow {
    border-right: 0;
    right: -38px;
}

.page-carousel-wrap .box-right .arrow {
    border-left: 0;
    left: -38px;
}

.page-carousel-wrap .txt {
    padding-top: 33px;
    background: transparent url(../images/magnifier.png) no-repeat;
    color: #fff;
    font: bold 16px/1.8em 'Arial Narrow', Arial, sans-serif;
    font-stretch: ultra-condensed;
    text-transform: uppercase;
    position: relative;
    top: 43px;
}

.page-carousel-wrap .box-left {
    left: 0;
}

.page-carousel-wrap .box-left .txt {
    left: 10px;
}

.page-carousel-wrap .box-right {
    right: -10px;
}

.page-carousel-wrap .box-right .txt {
    right: 10px;
}

/* Footer
-----------------------------------------------------------------------------*/
.footer,
.corp a {
    color: #1e1e1e;
    font-size: 16px;
    font-family: 'Arial Narrow', Arial, sans-serif;
    font-stretch: ultra-condensed;
}

.bg .footer, .bg .corp a {
    color: #fff;
}

.corp {
    padding: 0 10px 20px;
}

.corp a {
    text-decoration: none;
}

.corp a:hover {
    text-decoration: underline;
}