@charset "UTF-8";



/*

	templates.css *

		3	| Basic Classes
		4	| Header
		5	| Main Tags
		6	| Parts
		7	| Footer
		8	| templates.css Media Query

*/



/*
	3
	-
	Basic Classes
*/

p a,
dl a {
    font-weight: 500;
    color: #000;
    border-bottom: 2px solid #000;	
}

p a:hover,
dl a:hover {
    color: #666;
    border-bottom: 2px solid #666;
}

.blank,
.mq-blank {
    margin-right: 0.5rem;
}

.blank-l {
    margin-left: 0.5rem;
}

.mq-delete-label {
    display: inline-block;
}

.current {
    position: relative;
    display: block;
    color: #999;
}

.current:after {
    position: absolute;
    display: block;
    content: "";
    bottom: -0.25rem;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #999;
}

.gmap {
    width: 100%;
    height: calc( 100vh - 9rem );
}

.margin-top-s {
    margin-top: 1rem !important;
}

.mq-margin-top-m {
    margin-top: 2rem !important;
}


/*
	3
	-
	Header
*/

header {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
    width: 100%;
    color: #fff;
    background-color: #191919;
}

header div.h-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: row;
    width: 100%;
    height: 5rem;
    margin: 0 auto;
    padding: 1rem 2rem;
}

header a.h-title {
    flex-grow: 0;
    display: flex;
    align-items: center;
    min-height: 3rem;
    margin-right: 2rem;
}

header a.h-title img {
    width: 142px;
    height: 16px;
}

header #h-toggle {
    visibility: hidden;
    display: none;
}

header #h-open {
    display: none;
    position: relative;
    z-index: 9998;
    width: 3rem;
    height: 3rem;
    cursor: pointer;
    font-size: 1rem;
    padding: 1rem;
    color: #999;
    transition: all 350ms;
}

header #h-open:hover {
    color: #fff;
    transition: all 100ms;
}

header #h-toggle:checked ~ div.h-navigation {
    display: flex;
}

header div.h-navigation {
    flex-grow: 1;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-direction: row;
}

header #h-search {
    flex-grow: 1;
}

header #h-form {
    position: relative;
    height: 3rem;
    margin: 0;
    padding: 0 6rem 0 1.5rem;
    background-color: #444;
    border: none;
    border-radius: 1.5rem;
}

header #h-input {
    width: 100%;
    height: 3rem;
    margin: 0;
    padding: 0;
    font-size: 1rem;
    color: #fff;
    border: none;
    background-color: transparent;
}

header #h-button {
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
    width: 2rem;
    height: 2rem;
    font-size: 0.875rem;
    color: #999;
    border: none;
    border-radius: 50%;
    background-color: #191919;
    transition: all 350ms;
}

header #h-button:hover {
    cursor: pointer;
    color: #333;
    background-color: #fff;
    transition: all 100ms;
}

header nav {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: nowrap;
    margin-left: 1rem;
    margin-right: -1rem;		
}

header nav > ul {
    display: flex;
    justify-content: center;
    align-items: center;
}

header nav > ul:nth-child(1) li:nth-child(1),
header nav > ul:nth-child(1) li:nth-child(3) {
    padding-right: 1rem;
    border-right: 1px solid #444;
}

header nav > ul:nth-child(1) li:nth-child(2) {
    padding-left: 1rem;
}

header nav > ul:nth-child(2) li:nth-child(1) {
    padding-left: 1rem;
}

header nav a {
    display: block;
    padding: 1rem;
    color: #999;
}

header nav a:hover {
    color: #fff;
}



/*
	4
	-
	Main Tags
*/

main {
    margin-top: 5rem;
}

article {
    padding: 0 4rem 4rem;
}

aside {
    width: 100%;
    padding: 6rem 4rem 7.5rem;
    background-color: #f3f3f3;
}

aside.faceted {
    padding: 3rem 4rem 4.5rem;
    border-top: 1px solid #eee;
    background-color: #fff;
}


/*
	5
	-
	Parts
*/

section.mq-infobar {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    width: 100%;
    padding: 3rem 0;
}

.underline {
    border-bottom: 1px solid #eee;
}

section.mq-infobar > h1 {
    align-self: center;
    margin-right: 2.5rem;
}

section.mq-infobar > div {
    margin-left: auto;
}

ul.mq-infobar-list {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    margin: 0 -1rem;
}

ul.mq-infobar-button {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    margin: 0 -0.5rem;
}

ul.mq-infobar-list li {
    margin: 1rem;
}

ul.mq-infobar-button li {
    margin: 0.5rem;
}

ul.mq-infobar-list a {
    position: relative;
    display: block;
    color: #333;
}

ul.mq-infobar-list a:after {
    position: absolute;
    display: block;
    content: "";
    bottom: -0.25rem;
    left: 0;
    width: 100%;
    height: 2px;
    transition: all 350ms;
    background-color: rgba(0,0,0,0);	
}

ul.mq-infobar-list a:hover {
    color: #000;
}

ul.mq-infobar-list a:hover:after {
    transition: all 100ms;
    background-color: rgba(0,0,0,1);
}

.infobar-id {
    font-size: 0.875rem;
    color: #333;
    padding: 0.875rem;
    border: 2px solid #eee;
    border-radius: 4px;
}

.wrapper {
    width: 100%;
    max-width: 980px;
    margin: 0 auto;
}

.content {
    margin-top: 6rem;	
}

.content > * {
    margin-top: 3rem;
}

.content > *:first-child {
    margin-top: 0;
}

.content > *:last-child {
    margin-bottom: 2rem !important;
}

.large-p {
    font-size: 1.5rem;
    line-height: 1.75;	
}

.caption {
    display: block;
    color: #999;
    font-size: 0.875rem;
    line-height: 2.0;
}

dl.dl {
    display: flex;
    flex-direction: column;
    width: 100%;
    border-top: 1px solid #eee;
}

dl.dl dt {
    padding-top: 1.5rem;
    margin-bottom: 0.5rem;
    color: #999;
    font-size: 0.875rem;
}

dl.dl dd {
    line-height: 2.0;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #eee;
}

a.bt-large,
div.bt-medium a,
a.bt-small {
    display: block;
    font-weight: normal !important;
    border-bottom: none !important;
    background-color: #f7f7f7;
}

a.bt-large {
    text-align: center;
    font-size: 1.5rem;
    line-height: 1.5;
    padding: 1.5rem 2rem;
    border-radius: 4.5rem;
}

div.bt-medium {
    font-size: 1rem;
    text-align: center;
}

div.bt-medium a {
    display: inline-block !important;
    padding: 1.5rem 2rem;
    border-radius: 3.5rem;
}

a.bt-small {
    display: inline-block !important;
    font-size: 0.875rem;
    padding: 1rem 1.5rem;
    border-radius: 0.25rem;
}

ul.bt-small-list {
    display: flex;
    justify-content: center;
    align-items: center;
}

ul.bt-small-list li {
    margin: 0 0.75rem 0.75rem;	
}

a.bt-large:hover,
div.bt-medium a:hover,
a.bt-small:hover {
    color: #fff !important;
    background-color: #333;
}

table {
    width: 100%;
    border: none;
    line-height: 1.25;
    border-collapse: collapse;
    white-space: normal;
}

table.table-layout-equality {
    table-layout: fixed;
}

tr {
    border-bottom: 1px solid #eee;
}

td {
    padding: 2rem;
    vertical-align: top;
}

td.table-cell-fixed {
    width: 1px;
    white-space: nowrap !important;
}

.table span {
    display: block;
    margin: 0.5rem 0 1rem 0.5rem;
    color: #999;
    font-size: 0.875rem;
}

.table hr {
    display: inline-block;
    border: none;
    width: 4rem;
    height: 0.5rem;
    padding: 0;
    margin: 0 0 0 1rem;
}

.table div {
    display: inline-block;
    padding: 0.5rem;
    background-color: transparent;
}

.table a {
    display: inline-block;
    color: #333;
    font-weight: 500;
    padding: 0.5rem;
    border-radius: 4px;
    background-color: #fff;
}

.table a:hover {
    background-color: #eee;
}

.tag-list {
    display: flex;
    flex-wrap: wrap;
}

.tag-list li {
    margin: 0 0.5rem 0.5rem 0;
}

.tag-list span {
    color: #999;
    font-size: 0.75rem;
    margin-left: 0 !important;
    margin-bottom: 0 !important;
    margin-top: 0.5rem;
}

.tag-list span em {
    display: inline-block;
    margin-left: 0.25rem;
    color: #333;
}

.box {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin: 0 -0.5rem -0.5rem 0;
}

.thumbnail {
    display: block;
    width: 200px;
    padding: 0.5rem;
    margin: 0 0.5rem 0.5rem 0;
    color: #333;
    border-radius: 4px;
    background-color: #fff;
}

.thumbnail h3 {
    margin-top: 0.75rem;
    line-height: 1.5;
    text-align: left !important;
}

.thumbnail ul {
    display: flex;
    flex-wrap: wrap;
    font-size: 0.75rem;
    font-weight: normal;
    line-height: 1.25;
    margin: 1rem -1rem 0 0;
}

.thumbnail ul li {
    margin: 0 1rem 0.5rem 0;
}

.thumbnail ul li > span {
    color: #999;
    margin-right: 0.5rem;
}

.thumbnail:hover {
    background-color: #eee;
}

.empty {
    height: 0;
    padding-top: 0;
    padding-bottom: 0;
    margin-top: 0;
    margin-bottom: 0;
}

aside h2 {
    flex-basis: 100%;
    flex-shrink: 0;
    margin: 0 auto 2rem;
    text-align: center;
    font-size: 1.5rem;
}

blockquote {
    position: relative;
    color: #666;
    font-style: italic;
    padding: 1rem 0 0 4rem;
}

blockquote:before {
    display: inline-block;
    position: absolute;
    top: 0;
    left: 0;
    vertical-align: middle;
    content: "\201C";
    /*	font-family: "Helveica Neue", Arial, sans-serif;*/
    color: #ccc;
    font-size: 6rem;
}

.bq-ref {
    padding-top: 0.5rem;
    font-size: 0.875rem;
    font-style: normal;
    color: #999;
}

.bq-ref a {
    margin-right: 0.5rem;
}


/*
	6
	-
	Footer
*/

footer {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    width: 100%;
    padding: 6rem 4rem;
    background-color: #111;
}

footer img {
    width: 82px;
    height: 64px;
    margin-bottom: 3rem;
}

footer a {
    color: #999;
}

footer a:hover {
    color: #fff;
}

footer > div {
    width: 100%;
    max-width: 17.5rem;
}

footer > div ul {
    color: #fff;
    font-size: 0.875rem;
    line-height: 2.0;
}

footer > div ul li {
    display: inline;
    word-break: break-all;
}

footer > div ul li:after {
    display: inline-block;
    margin: 0 0.25rem 0 0.5rem;
    content: "/";
    color: #999;
}

footer > div ul li:last-child:after {
    margin: 0 0 0 0.25rem;
    content: "";
}

footer .f-copyright {
    margin-top: 3rem;
    color: #666;
    font-size: 0.75rem;
    line-height: 1.25;
    text-transform: uppercase;
}

footer .f-copyright span {
    display: block;
}



@media only screen and (-webkit-min-device-pixel-ratio: 2), (min-resolution: 2dppx) {

    html {
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
    }

}

@media screen and (max-width:1024px) {

    main {
	margin-top: 3rem;
    }

    article,
    aside {
	padding: 0 2rem 4rem;		
    }

    aside.faceted {
	padding: 3rem 2rem 4.5rem;
    }
    
    header div.h-container {
	padding: 1rem 0 1rem 1rem;
	height: 3rem;
    }

    header div.h-navigation {
	display: none;
	flex-direction: column;
	position: absolute;
	top: 3rem;
	left: 0;
	width: 100%;
	background-color: rgba(0,0,0,0.9);
    }

    header #h-search {
	width: 100%;
	padding: 1rem;
	border-top: 1px solid #444;
	border-bottom: 1px solid #444;
    }

    header nav {
	width: 100%;
	margin-left: 0;
	margin-right: 0;
	border-bottom: 1px solid #444;
    }

    header nav > ul {
	padding: 1rem 0;
    }

    header nav > ul:nth-child(1) li:nth-child(3)
    {
	padding-right: 0;
	border-right: none;
    }

    header nav > ul:nth-child(2) li:nth-child(1) {
	padding-left: 0;
    }

    header #h-open {
	display: block;
    }

}

@media screen and (max-width:767px) {

    .mq-blank {
	margin-right: 0;
    }

    .mq-margin-top-m {
	margin-top: 1rem !important;
    }

    .mq-delete-label {
	display: none;
    }

    td {
	display: block;
	padding: 2rem 0 0;
    }

    td:last-child {
	padding: 2rem 0;
    }

    article {
	padding: 0 1.5rem 4rem;		
    }

    aside {
	padding: 6rem 1.5rem;		
    }

    aside.faceted {
	padding: 3rem 1.5rem 4.5rem;
    }

    header nav {
	flex-direction: column;
	border-bottom: none;
    }

    header nav > ul {
	width: 100%;
	border-bottom: 1px solid #444;
    }
    
    section.mq-infobar {
	flex-direction: column;
	justify-content: center;
	align-items: center;
    }

    section.mq-infobar > h1 {
	width: 100%;
	text-align: center;
	margin-right: 0;
	margin-bottom: 2rem;
    }

    section.mq-infobar > div {
	margin-left: 0;
    }

    ul.mq-infobar-list {
	justify-content: center;
	flex-wrap: nowrap;
	flex-direction: column;
	margin: 0;
    }

    ul.mq-infobar-button {
	justify-content: center;
    }

    .thumbnail {
	width: 44%;
    }	

    footer {
	flex-direction: column;
	justify-content: center;
	align-items: center;
	padding: 4rem 1rem;
    }

}
