@charset "utf-8";
@import url(reset.css);



/*
========================
Global
========================
*/

#container {
    background: #005cb8;
    padding-top: 0;
}

.wrapper {}

.inner {
    width: 90%;
    max-width: 1150px;
    margin: auto;
    position: relative;
}

* {
    box-sizing: border-box;
}

a {
    text-decoration: none;
    color: inherit;
}

strong {
    font-weight: bold;
}

em {
    font-style: italic;
}

table {
    width: 100%;
    border-left: 1px solid #ccc;
    border-top: 1px solid #ccc;
}

table th,
table td {
    padding: 8px;
    border-right: 1px solid #ccc;
    border-bottom: 1px solid #ccc;
}

caption {
    text-align: left;
    margin-bottom: 10px;
    font-size: 1.2em;
}

.fr-view {
    line-height: 1.5em;
}

.fr-view ul {
    list-style: none;
    padding-left: .8em;
    padding-left: .8em;
    list-style: none;
    text-align: left;
}

.fr-view ul li:before {
    content: "- ";
    margin-left: -.8em;
}

.fr-view ol {
    list-style: decimal;
    padding-left: 15px;
}

.fr-view ol li {
    text-align: left;
}

.fr-view img {
    cursor: default !important;
}

.fr-view a>img {
    cursor: pointer !important;
}

.clear {
    clear: both;
}

.mobile-element {
    display: none;
}

.nicescroll-rails {
    background: rgb(221, 221, 221);
}


/*
========================
Font
========================
*/

html,
body {
    font-family: "Heiti TC", "微軟正黑體", "Microsoft JhengHei", "新細明體", "Microsoft YaHei", "Helvetica Neue", Helvetica, "Arial", sans-serif;
    font-size: 15px;
}



/*
========================
Header
========================
*/

#header-wrapper {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    padding-top: 40px;
    pointer-events: none;
    z-index: 101;
}

#header-inner {
    pointer-events: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #fff;
    height: 100px;
    padding: 0 40px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 69, 137, .12);
}

#header-inner h1 {
    width: 88px;
    height: 55px;
    flex-shrink: 0;
}

#header-inner h1 a {
    display: block;
    width: 100%;
    height: 100%;
    background: url(../image/logo-2024.svg) no-repeat 50% 50%;
    background-size: contain;
    text-indent: -300px;
    overflow: hidden;
}

#header-inner nav ul {
    display: flex;
    align-items: center;
}

#header-inner nav li {
    position: relative;
    margin-left: 44px;
}

#header-inner nav a {
    display: block;
    padding: 6px 0;
    color: #3e3a39;
    font-size: 1.1em;
    font-weight: 600;
    letter-spacing: .08em;
    white-space: nowrap;
    transition: color .2s;
}

#header-inner nav a:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background: #005cb8;
    transition: width .25s;
}

#header-inner nav li:hover a,
#header-inner nav li.active a {
    color: #005cb8;
}

#header-inner nav li:hover a:after,
#header-inner nav li.active a:after {
    width: 100%;
}

#menu-button {
    cursor: pointer;
    padding: 6px 0;
}

#menu-button .bar {
    display: block;
    width: 25px;
    height: 2px;
    background: #005cb8;
    margin: 5px auto;
}


/*
========================
Footer
========================
*/

#footer-wrapper {
    background: #3e3a39;
    color: #b2b2b2;
}

#footer-inner {
    padding: 70px 0 50px 0;
}

#footer-brand {
    margin-bottom: 46px;
}

#footer-brand .footer-logo {
    display: block;
    width: 110px;
    height: 69px;
    background: url(../image/logo-2024.svg) no-repeat 0 50%;
    background-size: contain;
    text-indent: -999px;
    overflow: hidden;
}

#footer-columns {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
}

.footer-col {
    width: 26%;
    padding-right: 20px;
}

.footer-col .col-title {
    color: #fff;
    font-size: 1.25em;
    font-weight: 700;
    letter-spacing: .04em;
    margin-bottom: 26px;
}

.footer-col li {
    margin-bottom: 20px;
    font-size: 1.05em;
    line-height: 1.5em;
}

.footer-col li:last-child {
    margin-bottom: 0;
}

.footer-col a:hover {
    color: #fff;
}

.footer-col .label {
    display: inline-block;
    width: 44px;
}

.footer-col address {
    font-style: normal;
    line-height: 1.5em;
}

.col-contact {
    width: 38%;
    padding-right: 0;
}

#footer-inner .social-links {
    margin-top: 56px;
}

#footer-inner .social-links a {
    display: inline-block;
    width: 38px;
    height: 38px;
    margin-right: 10px;
    opacity: .85;
    transition: opacity .2s;
}

#footer-inner .social-links a:hover {
    opacity: 1;
}

#footer-inner .social-links img {
    width: 100%;
    display: block;
}

#footer-bottom {
    background: #332f2e;
    color: #8c8785;
    font-size: 1em;
    letter-spacing: .03em;
}

#footer-bottom .inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

#footer-bottom .copyright .sep {
    margin: 0 8px;
}

#footer-bottom .credit a:hover {
    color: #fff;
}

#go-top {
    position: fixed;
    right: 36px;
    bottom: 36px;
    z-index: 100;
    width: 46px;
    height: 46px;
    border-radius: 8px;
    background: #005cb8;
    color: #fff;
    cursor: pointer;
    text-align: center;
    line-height: 46px;
    font-size: 1.1em;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all .3s;
}

#go-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

#go-top:hover {
    background: #004589;
}

/*
========================
Main
========================
*/

#main-wrapper {
    background: #fff;
    counter-reset: paragraph-counter;
}


.theme {
    position: relative;
    width: 100%;
    height: 640px;
    overflow: hidden;
    background: #005cb8;
    border-top:5px solid #4398dd;
    border-bottom:5px solid #4398dd;
}

.theme:first-child {
    border-top:none;
}

.theme .layer {
    position: absolute;
    left: 50%;
    top: 50%;
}

.theme img.title {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    height: 90px;
}
    

.section {
}

.section .inner {
    padding: 60px 0;
}

.section-col {
    clear: left;
    margin-bottom: 50px;
}

.section-col.bottom-zero {
    margin-bottom: 0;
}

.section-col.lt {
    float: left;
    width: 45%;
}

.section-col.rt {
    width: 45%;
    margin-left: 55%;
    clear: none;
}

.section-col.single {
    width: 64%;
}

.section-col h2 {
    font-size: 1.24em;
    color: #004589;
    border-left: 1px solid #ddd;
    letter-spacing: .15em;
    font-weight: bold;
    padding-top: 50px;
    padding-left: 10px;
    padding-bottom: 2px;
    position: relative;
    margin-left: -10px;
    margin-bottom: 30px;
}

.section-col h2:before {
    counter-increment: paragraph-counter;
    position: absolute;
    left: 10px;
    top: 2px;
    color: #004589;
    transform: scale(.6, .6);
    transform-origin: 0 0;
    letter-spacing: normal;
    font-weight: normal;
}

.section-col h2.empty {
    visibility: hidden;
}

#firm .section-col h2:before {
    content: "01 - "counter(paragraph-counter, decimal);
}

#services .section-col h2:before {
    content: "02 - "counter(paragraph-counter, decimal);
}

#works .section-col h2:before {
    content: "03 - "counter(paragraph-counter, decimal);
}

#joinus .section-col h2:before {
    content: "04 - "counter(paragraph-counter, decimal);
}

.section-col .desc {
    color: #666;
    line-height: 2em;
    font-size: 1.02em;
    text-align: justify;
}


.section-col .desc a {
    text-decoration: underline;
}

.section-col blockquote {
    color: #005cb8;
    border-left:6px solid #005cb8;
    background: #efefef;
    padding:1em 1.2em;
    font-size: 1.04em;
    line-height: 1.6em;
    font-weight: bold;
    text-align: left;
    letter-spacing: normal;
}

.paragraph {
    margin:4% 0  6% 0;
    overflow: hidden;
    zoom:1;
}

.paragraph-content h3 {
    font-size: 1.18em;
    font-weight: bold;
    color: #004589;
    margin-bottom: 1em;
}

.paragraph-content {
    width: 40%;
    float: left;
}

.paragraph-aside {
    margin-left: 48%;
    position: relative;
}

.paragraph:nth-child(odd) .paragraph-content{
    float: right;
}

.paragraph:nth-child(odd) .paragraph-aside{
    margin-left: 0;
    width: 52%;
}

.paragraph-aside img {
    width: 100%;
    display: block;
}

.paragraph-aside .play-button {
    display: block;
    position: absolute;
    left:0;
    top: 0;
    right: 0;
    bottom:0;
    background: rgba(0,0,0,.3);
    transition: all .5s;
}

.paragraph-aside .play-button i {
    color: #fff;
    font-size: 5em;
    position: absolute;
    left:50%;
    top:50%;
    transform: translate(-50%, -50%);
    opacity: .8;
    transition: all .5s;
}

.paragraph-aside .play-button:hover {
    background: rgba(0,0,0,.6);
}

.paragraph-aside .play-button:hover i {
    opacity: .95;
}

.paragraph-aside table {
    border: none;
}

.paragraph-aside th {
    background: #005cb8;
    color: #fff;
    padding: 12px;
    border: none;
    text-align: left;
}

.paragraph-aside td {
    border: none;
    border-bottom: 1px solid #005cb8;
    color: #005cb8;
    padding: 12px;
}

.paragraph-aside th:nth-child(1),
.paragraph-aside td:nth-child(1) {
    width: 40px;
}

.text-list {
    overflow: hidden;
    zoom: 1;
}

.text-list > li {
    width: 28%;
    margin-right: 8%;
    margin-top: 2.5%;
    margin-bottom: 2.5%;
    float: left;
}

.text-list > li:nth-child(3n) {
    margin-right: 0;
}

.text-list .title {
    color: #004589;
    margin-bottom: 15px;
    font-weight: bold;
    font-size: 1.15em;
}

.text-list .note {
    line-height: 1.8em;
    color: #666;
}

.text-list .note ul {
    border-bottom:1px dotted #005cb8;
    padding-top:10px;
}

.text-list .note li {
    border-top:1px dotted #005cb8;
    padding:8px 0;
    line-height: 1.5em;
}



.text-list.block > li {
    width: 31.33333333333333%;
    margin-right: 2%;
    margin-top: 1%;
    margin-bottom: 1%;
    background: #c8e1ed;
    padding: 40px 30px 60px 30px;
    border-radius:2px;
}

.text-list.block > li .title {
    color: #005cb8;
    font-size: 1.2em;
}

.text-list.block .note {
    color: #005cb8;
}


    

/*
========================
index.php
========================
*/
#index #theme-1 .inner {
    height: 100%;
}

#index #theme-1 .title {
    top:48%;
}
#index #theme-1 .summary {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    margin-top: 48px;
    transform: translateX(-50%);
    text-align: center;
    line-height: 1.8em;
    font-size: 1.15em;
    color: #c1e2f4;
}

#index #theme-1 .scroll-down {
    position: absolute;
    left:50%;
    bottom:7%;
    transform: translate(-50%, -20px);
    cursor: pointer;
    opacity: 0;
    transition: all .5s;
}

#index #theme-1 .scroll-down.show {
    transform: translate(-50%, 0);
    opacity: .75;
}

#index #theme-1 .scroll-down.show:hover {
    opacity: 1;
}

#index #theme-2 .summary {
    width: 100%;
    max-width: 420px;
    margin-top: 80px;
    line-height: 1.8em;
    font-size: 1.05em;
    color: #fff;
    margin-bottom: 30px;
}

#index #theme-2 .more {
    font-size: 1.05em;
    letter-spacing: .1em;
    color: #92d3ff;
}

#index #theme-2 i {
    margin-left: .5em;
}

#features {
    overflow: hidden;
    zoom: 1;
    padding: 0 0 30px 0;
}

#features .item {
    float: left;
    width: 30%;
    margin-right: 5%;
}

#features .item:nth-child(3n) {
    margin-right: 0;
}

#features img {
    margin-bottom: 30px;
}

#features h2 {
    color: #004589;
    font-size: 1.2em;
    letter-spacing: .1em;
    margin-bottom: 15px;
    font-weight: bold;
}

#features .desc {
    color: #666;
    line-height: 1.8em;
    margin-bottom: 30px;
    font-size: 1.05em;
    text-align: justify;
}

#features .more {
    color: #fff;
    font-size: 1em;
    font-weight: bold;
    letter-spacing: .1em;
}

#features .more a {
    background: #005cb8;
    padding:.5em .8em .5em 1.2em;
    border-radius: 20px;
    transition: background .2s;
}

#features .more a:hover {
    background: #004589;
}

#features .more i {
    margin-left: .5em;
}

#spec {
    text-align: center;
    margin-bottom: 20px;
}

#spec h2 {
    color: #004589;
    font-size: 1.33em;
    letter-spacing: .1em;
    margin-bottom: 20px;
    font-weight: bold;
}

#spec .summary {
    margin:auto;
    margin-bottom: 40px;
    max-width: 680px;
    color: #666;
    line-height: 1.8em;
    font-size: 1.05em;
}

#spec .icon-list {
    overflow: hidden;
    zoom:1;
}

#spec .icon-list li {
    width: 23.5%;
    margin-right: 2%;
    margin-bottom: 2%;
    float: left;
    background: #005cb8;
    color: #fff;
    padding: 25px 15px 0 15px;
    height: 140px;
    text-align: center;
}

#spec .icon-list li:nth-child(4n) {
    margin-right: 0;
}

#spec .icon-list .title {
    line-height: 1.25em;
}

#spec .icon-list img {
    width: 42px;
    height: 42px;
    margin-bottom: 16px;
}


/*
========================
firm.php
========================
*/
#history .cell {
    width: 290px;
    min-height: 350px;
    background: #c8e1ed;
    padding: 32px 20px;
    margin-right: 10px;
    border-radius: 4px;
}

#history .year {
    font-family: "Times New Roman", Times, serif;
    font-size: 2em;
    font-weight: bold;
    color: #005cb8;
    padding: 0 8px;
    padding-bottom: .4em;
    margin-bottom: .8em;
    border-bottom:1px dotted #005cb8;
}

#history .note {
    color: #005cb8;
    line-height: 1.6em;
    font-size: 1.06em;
    padding: 0 5px;
}

#history .note li {
    border-bottom:1px dotted #005cb8;
    padding:8px 0;
}

#history .note li:first-child {
    padding-top:0;
}

#history .flickity-prev-next-button {
    border: 1px solid #fff;
    background: #005cb8;
    transition: opacity .5s;
}

#history .flickity-button-icon {
    fill: white;
}

#history .flickity-button:disabled {
    opacity: 0;
}

#history .flickity-prev-next-button.previous {
    display: none !important;
}

#history .flickity-prev-next-button.next {
    right: 3%;
}

/*
========================
Recruitment call to action
========================
*/

/* The theme height is set from script.js and clips, so this one grows with its content instead */
#joinus #theme-3 {
    height: auto !important;
    min-height: 360px;
    display: flex;
    align-items: center;
}

#joinus #theme-3 .inner {
    z-index: 2;
    padding: 56px 0;
}

#recruit-cta h2 {
    color: #fff;
    font-size: 1.5em;
    font-weight: bold;
    letter-spacing: .15em;
    margin-bottom: 22px;
}

#recruit-cta .summary {
    max-width: 620px;
    margin-bottom: 32px;
    color: #d7ecfb;
    font-size: 1.05em;
    line-height: 1.9em;
}

/* Same pairing as the .text-list.block cards further up the page */
#recruit-cta .links a {
    display: inline-block;
    margin: 0 14px 12px 0;
    padding: 14px 24px;
    border-radius: 2px;
    background: #c8e1ed;
    color: #005cb8;
    font-size: 1.02em;
    font-weight: bold;
    letter-spacing: .08em;
    transition: background .2s;
}

#recruit-cta .links a:hover {
    background: #fff;
}

#recruit-cta .links i {
    margin-left: 2.2em;
}


/*
========================
Organization chart
========================
*/

#org-chart {
    --org-line: #b9cee4;
    --org-gap: 26px;
    padding: 30px 0 10px 0;
    text-align: center;
}

#org-chart .org-box {
    display: inline-block;
    min-width: 116px;
    padding: 11px 18px;
    border: 2px solid transparent;
    border-radius: 4px;
    background: #005cb8;
    color: #fff;
    font-size: 1.05em;
    font-weight: 600;
    letter-spacing: .06em;
    line-height: 1.3em;
    white-space: nowrap;
}

#org-chart .is-chief {
    background: #003a70;
    min-width: 150px;
    font-size: 1.15em;
}

#org-chart .is-staff {
    background: #6b8fb8;
}

#org-chart .is-dept {
    background: #5b9bd5;
    min-width: 104px;
    font-weight: 400;
}

#org-chart .is-plain {
    background: #fff;
    border-color: #005cb8;
    color: #005cb8;
}

/* 財務處 and 管理處 hang off the spine that drops from 董事長 */
#org-chart .org-staff {
    display: flex;
    align-items: center;
    justify-content: center;
}

#org-chart .org-spine {
    width: 2px;
    height: 108px;
    background: var(--org-line);
    flex-shrink: 0;
}

#org-chart .org-staff .org-node {
    position: relative;
}

#org-chart .org-staff .org-node:first-child {
    margin-right: 56px;
}

#org-chart .org-staff .org-node:last-child {
    margin-left: 56px;
}

#org-chart .org-staff .org-node:first-child:after,
#org-chart .org-staff .org-node:last-child:after {
    content: '';
    position: absolute;
    top: 50%;
    width: 56px;
    height: 2px;
    background: var(--org-line);
}

#org-chart .org-staff .org-node:first-child:after {
    left: 100%;
}

#org-chart .org-staff .org-node:last-child:after {
    right: 100%;
}

/* A row of siblings : each drops a stem, together they carry one spanner */
#org-chart .org-row {
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

#org-chart .org-row > * {
    position: relative;
    padding: var(--org-gap) 14px 0 14px;
}

#org-chart .org-row > *:before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    width: 2px;
    height: var(--org-gap);
    margin-left: -1px;
    background: var(--org-line);
}

#org-chart .org-row > *:after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    height: 2px;
    background: var(--org-line);
}

#org-chart .org-row > *:first-child:after {
    left: 50%;
}

#org-chart .org-row > *:last-child:after {
    right: 50%;
}

#org-chart .org-row > *:only-child:after {
    display: none;
}

#org-chart .org-units > * {
    padding-left: 24px;
    padding-right: 24px;
}

#org-chart .org-drop {
    width: 2px;
    height: var(--org-gap);
    margin: 0 auto;
    background: var(--org-line);
}

#people-list {
    padding-top: 15px;
    overflow: hidden;
    zoom: 1;
}

#people-list li {
    width: 23.5%;
    margin-right: 2%;
    margin-bottom: 3%;
    float: left;
}

#people-list li:nth-child(4n) {
    margin-right: 0;
}

#people-list .thumb {
    background: #ccc;
    height: 0;
    padding-top: 120%;
    position: relative;
    margin-bottom: 15px;
}

#people-list .thumb img {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    display: block;
    opacity: .9;
}

#people-list .position {
    color: #004589;
    margin-bottom: 6px;
    font-weight: bold;
}

#people-list .name {
    color: #666;
}

#partner-list {
    margin-bottom:0;
}

#partner-list ul {
    margin-top: 40px;
}
#partner-list ul li {
    display: inline-block;
    width: 20.5%;
    margin-right: 6%;
    margin-bottom: 5%;
    height: 0;
    padding-top:6.5%;
    text-align: center;
    vertical-align: top;
    position: relative;
}

#partner-list ul li:nth-child(4n) {
    margin-right: 0;
}

#partner-list ul li img {
    max-width: 100%;
    max-height: 100%;
    position: absolute;
    left:0;
    right: 0;
    top: 0;
    bottom:0;
    width: auto;
    height: auto;
    margin:auto;
    display: block;
    opacity: .6;
}

/*
========================
works.php
========================
*/
#work-tabs {
    overflow: hidden;
    zoom:1;
}
#work-tabs .tab {
    float: left;
    width:33.33333333333333%;
    max-width: 280px;
    padding:.9em 20px;
    color:#777;
    font-weight: bold;
    font-size: 1.14em;
    background: #eee;
    border-left: 2px solid #fff;
    cursor: pointer;
    border-radius: 6px 6px 0 0;
    transition: all .2s;
    white-space: nowrap;
    overflow: hidden;
}
#work-tabs .tab:hover {
    background: #c8e1ed;
    color: #005cb8;
}

#work-tabs .tab:first-child {
    border-left: none;
}
#work-tabs .tab:hover {
}

#work-tabs .tab.active {
    color:#fff;
    cursor: default;
    background: #005cb8;
}

#work-tabs .count {
    font-weight: normal;
    margin-left: 5px;
    font-size: .8em;
}

#filters {
    height: 85px;
    padding:25px 20px;
    background: #005cb8;
}

#filters .set {
    width: 33%;
    max-width: 280px;
    float: left;
    padding-right: 10px;
}

#filters .set-label {
    color: #005cb8;
    margin-bottom: .8em;
    letter-spacing: .05em;
    display: none;
}

#filters option:disabled,
#filters .selectric-items .disabled {
    display: none;
}

#work-list {
    border-bottom: 1px solid #005cb8;
}

#work-list .item {
    border-top: 1px solid #005cb8;
}

#work-list .header {
    overflow: hidden;
    zoom: 1;
    color: #005cb8;
    position: relative;
    cursor: pointer;
    transition: all .6s;
}

#work-list .header:hover {
    background: #f7f7f7;
}

#work-list .cell {
    float: left;
    padding: 1em 20px;
}

#work-list .year {
    width: 15%;
    font-family: "Times New Roman", Times, serif ;
    font-weight: bold;
}

#work-list .title {
    width: 60%;
    font-weight: bold;
}

#work-list .location {
    width: 15%;
}

#work-list .header i {
    position: absolute;
    right: 15px;
    top: 50%;
    margin-top: -.5em;
    transition: transform .2s;
    font-weight: bold;
}

#work-list .content {
    display: none;
    overflow: hidden;
    zoom: 1;
    padding: 30px 0;
    background: #f7f7f7;
}

#work-list .data {
    margin-left: 15%;
    padding: 0 1em;
    width: 85%;
    max-width: 700px;
}

#work-list .data p {
    line-height: 1.33em;
    margin-bottom: 10px;
    font-size: 1.02em;
    overflow: hidden;
    zoom:1;
    padding-bottom:1px;
}

#work-list .data p .label {
    display: block;
    width: 90px;
    float: left;
    font-weight: bold;
}

#work-list .data p .value {
    display: block;
    margin-left: 100px;
    width: auto;
}

#work-list .note {
    color: #808080;
    line-height: 1.5em;
    font-size: .98em;
    margin-top: 20px;
}

#work-list .content.has-image .data {
    width: 54%;
    float: left;
}

#work-list .thumb {
    float: right;
    text-align: right;
    width: 22%;
    margin-right: 4%;
}

#work-list .thumb img {
    max-width: 100%;
    max-height: 200px;
    height: auto;
}
#work-list .active {    
    border-top: 1px solid #fff;
}
#work-list .active .header {
    background: #005cb8;
    color: #fff;
}

#work-list .active .header i {
    transform: rotate(-45deg);
}

#work-list .active .content {
    /*display: block;*/
}


/*
========================
joinus.php
========================
*/

#jobs {
    position: relative;
}

#jobs .title {
    width: 240px;
    border-bottom: 1px solid #005cb8;
    color: #005cb8;
    letter-spacing: .05em;
    padding: 1.2em 1em;
    cursor: pointer;
}

#jobs .cell:first-child .title {
    border-top: 1px solid #005cb8;
}

#jobs .content {
    display: none;
    position: absolute;
    top: 0;
    left: 300px;
    right: 0;
}

#jobs .content .desc {
    position: absolute;
    left: 0;
    top: 30px;
    width: 100%;
    padding:20px 0;
    display: none;
}

#jobs .content h3 {
    font-weight: bold;
    font-size: 1.1em;
    display: inline-block;
    margin-right: 40px;
    margin-bottom:1em;
    color: #999;
    cursor: pointer;
}

#jobs .content h3 i {
    font-size: 10px;
    color:#999;
    margin-left: 8px;
    position: relative;
    top: -2px;
    visibility: hidden;
}

#jobs .content .desc {
    margin-bottom: 40px;
    display: none;
}

#jobs .cell.active .title {
    background: #005cb8;
    color: #fff;
}

#jobs .cell.active .content {
    display: block;
}

#jobs .content h3.show {
    color: #005cb8;
}

#jobs .content h3.show i {
    visibility: visible;
}

#jobs .content .desc.show {
    display: block;
}