


/* master contents
------------------------------------------------------------ */

/* content list */
.master-contents h1,
.master-contents h2,
.master-contents h3,
.master-contents h4,
.master-contents h5,
.master-contents h6 {
    color: #000;
    margin-top: 0;
    margin-bottom: 15px;
}
.master-contents h1 { font-size: 28px; line-height: 36px; }
.master-contents h2 { font-size: 24px; line-height: 30px; }
.master-contents h3 { font-size: 22px; line-height: 28px; }
.master-contents h4 { font-size: 20px; line-height: 26px; }
.master-contents h5 { font-size: 18px; line-height: 24px; }
.master-contents h6 { font-size: 16px; line-height: 22px; }

.master-contents blockquote {
    color: #000;
    font-size: 16px;
    line-height: 28px;
    font-style: italic;
    border-left: 4px solid #899d37;
}

/* content block */
.master-contents .content-block:before,
.master-contents .content-block:after {
    content: '';
    display: table;
    width: 100%;
    height: 0;
    clear: both;
}
.master-contents + .master-contents,
.master-contents .content-block + .content-block {
    margin-top: 40px;
}

/* content block title */
.master-contents .content-block.content-title h4 {
    font-size: 24px;
    margin: 0;
}
.master-contents .content-block.content-title + .content-block.content-text{
    margin-top: 10px;
}

/* content block text */
.master-contents .content-block.content-text .content-text-title {
    margin: 20px 0 10px;
    text-transform: none;
}
.master-contents .content-block.content-text .content-text-subtitle {
    margin: 10px 0;
    font-size: 22px;
    line-height: 24px;
    font-weight: 700;
}
.master-contents .content-block.content-text .content-text-button {

}
.master-contents .content-block.content-text img.pull-left {
    max-width: 40%;
    margin: 0 15px 15px 0;
}
.master-contents .content-block.content-text img.pull-right {
    max-width: 40%;
    margin: 0 0 15px 15px;
}

/* content block gallery */
.master-contents .content-gallery {
    padding: 0 50px;
}
.master-contents .content-gallery .content-gallery-main .slick-slide,
.master-contents .content-gallery .content-gallery-nav .slick-slide {
    display: block;
    position: relative;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
}
.master-contents .content-gallery .content-gallery-main .slick-slide:before,
.master-contents .content-gallery .content-gallery-nav .slick-slide:before {
    content: "";
    display: block;
    padding-top: 60%; 	/* initial ratio of 1:1*/
}
.master-contents .content-gallery .content-gallery-nav {
    margin: 30px -10px 0;
}
.master-contents .content-gallery .content-gallery-nav .slick-slide {
    margin: 0 10px;
    -webkit-transition: opacity .6s ease;
    transition: opacity .6s ease;
    cursor: pointer;
}
html.no-touch .master-contents .content-gallery .content-gallery-nav .slick-slide:hover {
    opacity: 0.7;
}
.master-contents .content-gallery .content-gallery-nav .slick-arrow {
    width: 40px;
    height: 40px;
    background: #FFF;
}
.master-contents .content-gallery .content-gallery-nav .slick-arrow:before {
    color: #000;
    font-size: 24px;
}
.master-contents .content-gallery .content-gallery-nav .slick-prev {
    left: -40px;
}
.master-contents .content-gallery .content-gallery-nav .slick-next {
    right: -40px;
}

/* content block attachments */
.master-contents .content-attachments {
}
.master-contents .content-attachments .content-attachments-list {
    padding: 0;
    margin: 0;
    list-style: none;
}
.master-contents .content-attachments .content-attachments-list li {

}
.master-contents .content-attachments .content-attachments-list li + li {
    margin-top: 15px;
}
.master-contents .content-attachments .content-attachments-list li a {
    display: block;
    padding: 10px 15px 10px 50px;
    color: #222;
    background-color: #f5f5f5;
    border: 1px solid #CCC;
    border-radius: 4px;
}
.master-contents .content-attachments .content-attachments-list li a.attachment-type-pdf {
    background-image: url(../images/ico-pdf.png);
    background-position: 11px center;
    background-repeat: no-repeat;
}
.master-contents .content-attachments .content-attachments-list li a i {
    margin-right: 10px;
}
html.no-touch .master-contents .content-attachments .content-attachments-list li a:hover {
    color: #FFF;
    background-color: #931f2a;
}