@import url("reset.css");
@import url("responsive.gs.12col.css");

@font-face {
    font-family: 'TrajanProRegular';
    src: url('../fonts/TrajanPro-Regular.eot'),
         url('../fonts/TrajanPro-Regular.svg'),
         url('../fonts/TrajanPro-Regular.ttf'),
         url('../fonts/TrajanPro-Regular.woff');
    font-weight: normal;
}

@font-face {
    font-family: 'TrajanProBold';
    src: url('../fonts/TrajanPro-Bold.eot'),
         url('../fonts/TrajanPro-Bold.svg'),
         url('../fonts/TrajanPro-Bold.ttf'),
         url('../fonts/TrajanPro-Bold.woff');
    font-weight: normal;
}

html {
    height: 100%;
    width: 100%;
}

body {
	font-family: TrajanProRegular, serif;
	color: #000;
    height: 100%;
    width: 100%;
}

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

a:hover {
    color: #ddd;
}

p {
    font-size: 9px;
}

@media (min-width:768px) {
    p {
        font-size: 11px;
    }
}

.header-wrapper {
    position: fixed;
    width: 100%;
    height: auto;
    z-index: 1002;
    top: 0;
    left: 0;
}
@media (min-width:768px) {
    .header-wrapper {
        position: fixed;
    }
}

.header {
	line-height: 35px;
    height: 35px;
	text-align: center;
	background: #fff;
    color: #d6a96f;
    width: 100%;
}
.header a.logo {
    text-decoration: none;
    text-indent: -9999px;
    color: #d6a96f;
    display: block;
    margin: 0 auto;
    width: 156px;
    height: 17px;
    position: relative;
    top: 8px;
    background: #fff url('../img/jl-small.png') no-repeat center center;
    background: #fff url('../img/jl.svg') no-repeat center center;
    background-size: 100%;
}
.lang-select {
    top:-5px;
    right:10px;
    position:absolute;
    z-index:10000;
    font-size:50%;
}
.lang-select a.active {
    font-weight: bolder;
    text-decoration: underline;
}

@media (min-width:768px) {
    .header {
        line-height: 70px;
        height: 70px;
    }
    .header a.logo {
        background: #fff url('../img/jl.png') no-repeat center center;
        background: #fff url('../img/jl.svg') no-repeat center center;
        width: 261px;
        height: 27px;
        top: 20px;
    }
    .lang-select {
        top: -20px;
        font-size:60%;
    }
}

.menu-toggle {
    display: block;
    width: 35px;
    height: 35px;
    background: #d6a96f;
    border: 0;
    position: absolute;
    left: 0;
    top: 0;
    outline: none;
    cursor: pointer;
}
.menu-toggle span {
    display: block;
    background: #fff;
    height: 2px;
    width: 75%;
    margin: 2px auto;
    border-radius: 1px;
}
@media (min-width:768px) {
    .menu-toggle {
        width: 70px;
        height: 70px;
    }
    .menu-toggle span {
        height: 4px;
        width: 50%;
        margin: 5px auto;
        border-radius: 2px;
    }
}

.menu {
    display: none;
    background: #d6a96f;
    padding: 20px 70px;
    text-transform: uppercase;
    width: 100%;
    position: absolute;
    top: 35px;
}
.menu ul li {
    margin: 30px 0px;
    color: #fff;
}
.menu ul li a {
    color: #fff;
    text-decoration: none;
    letter-spacing: 3px;
    font-size: 12px;
    letter-spacing: 5px;
}
.menu ul li a:hover {
    color: #ddd;
}
@media (min-width:768px) {
    .menu {
        max-width: 300px;
        top: 70px;
    }
    .menu ul li a {
        font-size: 12px;
    }
}
@media (min-width:1100px) {
    .menu {
        max-width: 300px;
    }
}

#content {
    margin-top: 35px;
}
@media (min-width:768px) {
    #content {
        margin-top: 70px;
    }
}

.grid { background: #fff; width: 100%; padding: 0; margin: 0; position: relative; z-index: 1; }
.grid-sizer,
.grid-item {
    width: 25.0%;
    height: auto !important;
    background: #fff;
    padding: 0;
    margin: 0;
}
.grid-item img {
    width: 100%;
    display: block;
    max-width: 100%;
    padding: 0;
    margin: 0;
    position: relative;
}
.grid-item.w2 { width: 50.0%; }
.grid-item.w3 { width: 75.0%; }
.grid-item.w4 { width: 100.0%; }
.grid-overlay {
    width: 100%;
    height: 100%;
    display: none;
    position: absolute;
	background: #d6a96f;
    z-index: 1000;
    cursor: pointer;
    top: 0;
    left: 0;
    
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=40)";
    filter: alpha(opacity=40);
    -moz-opacity: 0.4;
    -khtml-opacity: 0.4;
    opacity: 0.4;
}
.grid-overlay span {
    display: block;
    color: #fff;
    position: absolute;
    left: 0 !important;
    width: 100%;
    letter-spacing: 2px;
    text-align: center;
    font-size: 0.5em;
    text-indent: -9999px;
}
@media (min-width:768px) {
    .grid-overlay span {
        font-size: 100%;
    }
}

.overlay, .loader {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    bottom: 0;
    left: 0;
    padding: 0;
    margin: 0;
    display: none;
    background-color: #000; 
    background-repeat: no-repeat;
    background-position: center top;
    background-size: cover;
    z-index: 1001;
    overflow: hidden;
    margin-left: 0;
}
.loader {
    display: none;
    background: #fff url('../img/loader.gif') no-repeat center center;
    background-size: auto;
}
.overlay {
    top: 35px;
}
@media (min-width:768px) {
    .overlay {
        top: 70px;
    }
}
.overlay .overlay-desc {
    width: 100%;
    height: 100%;
    max-height: none;
    position: absolute;
    background-color: #d6a96f;
    opacity: 0.8;
    color: #fff;
}
.about .overlay-desc {
    background-color: #b6894f;
}
.contact .overlay {
    background-position: center top;
}
.contact .overlay-desc {
    background-color: #fff;
    color: #d6a96f;
}
@media (min-width:768px) {
    .overlay .overlay-desc {
        max-width: 450px;
    }
}
@media (min-width:1100px) {
    .overlay .overlay-desc {
        max-width: 550px;
    }
}
.overlay .overlay-desc p {
    padding: 20px 70px;
    height: 100%;
    overflow: auto;
    text-align: left;
    line-height: 1.5;
}
.overlay .overlay-desc p .heading {
    font-family: TrajanProRegular, serif;
    display: block;
    padding: 20px 0px;
    font-size: 20px;
    margin: 0;
    letter-spacing: 10px;
}
.overlay .overlay-close {
    width: 35px;
    height: 35px;
    position: absolute;
    right: 20px;
    top: 20px;
    border: none;
    font-size: 14px;
    background-color: #d6a96f;
    border: 1px solid #fff;
    color: #fff;
    cursor: pointer;
    z-index: 1004;
}
@media (min-width:768px) {
    .overlay .overlay-desc p .heading {
        font-size: 34px;
    }
    .overlay .overlay-close {
        width: 50px;
        height: 50px;
        font-size: 24px;
    }
}

.overlay-data {
    display: none;
}

.journal-left {
    padding: 20px 70px;
    color: #d6a96f;
}
.journal-left p {
    height: 100%;
    overflow: auto;
    text-align: left;
    line-height: 1.5;
    overflow: auto;
    overflow-x: hidden;
    overflow-y: auto;
}
.journal-left p .heading {
    font-family: TrajanProRegular, serif;
    display: block;
    font-size: 20px;
    padding: 20px 0px;
    margin: 0;
    letter-spacing: 10px;
}
@media (max-width:767px) {
    .journal-left p .heading {
        font-size: 20px;
    }
}
@media (min-width:768px) {
    .journal-left p .heading {
        font-size: 34px;
    }
}
.journal-left .journal-filter {
    padding: 0;
    margin-top: 20px;
}
.journal-left .journal-filter li {
    float: left;
    margin-right: 20px;
}
.journal-left .journal-recents {
    padding: 0;
    margin-top: 20px;
}
.journal-left .journal-recents li {
    display: block;
    margin: 5px 0px;
    border-bottom: 1px dotted #d6a96f;
    padding: 5px 0px;
    font-size: 14px;
}
.journal-left .journal-recents li.outside {
    font-size: 12px;
    padding: 30px 0px;
    border-bottom: none;
}
.journal-right {
    padding: 40px 70px;
}
.journal-right .journal-content {
    color: #d6a96f
}
.journal-right .journal-content h2 {
    font-family: TrajanProRegular, serif;
    font-size: 34px;
    text-align: center;
    padding: 10px 0px;
    text-transform: uppercase;
    letter-spacing: 5px;
}
.journal-right .journal-content img {
    margin: 10px 0px 30px 0px;
}
.journal-right .journal-content p {
    margin-bottom: 10px;
}
.journal-right .journal-content p.post-date {
    font-size: 11px;
    margin: 30px 0px;
}
.journal-items { background: #fff; width: 100%; padding: 0; margin: 0; }
.journal-item {
    width: 100.0%;
    height: auto !important;
    background: #fff;
    padding: 0;
    margin: 0;
}
@media (min-width:951px) {
    .journal-item {
        width: 48.0%;
        height: auto !important;
        background: #fff;
        padding: 0;
        margin: 0;
    }
}
.journal-item p {
    text-align: center;
    color: #d6a96f;
    line-height: 1.5;
    margin-top: 5px;
}
.journal-item p .heading {
    font-size: 14px;
}
.journal-item p a {
    color: #d6a96f;
    text-decoration: none;
}
.journal-item img {
    width: 100%;
    display: block;
    max-width: 100%;
    padding: 0;
    margin: 0;
    position: relative;
}

.footer {
    background: #fff;
    padding: 10px 0px;
    color: #d6a96f;
    font-size: 10px;
}
.footer p {
    text-align: center;
    letter-spacing: 2px;
}