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

* {
    box-sizing: border-box;
}
html {
    font-family: "Verdana", sans-serif;
	font-size:12px;
	background-color: #FFFFFF;
}
@font-face {
    font-family: SourceSancePro;
    src:url(../font/SourceSansPro-Regular.otf);
}
@font-face {
    font-family: SourceSanceProLight;
    src:url(/font/SourceSansPro-Light.otf);
}
a:link {
	text-decoration: none;
	color: #000;
	padding:0px;
}
a:visited {
	text-decoration: none;
	color: #000;
}
a:hover {
	text-decoration: underline;
	color: #000;
}
a:active {
	text-decoration: underline;
	color: #000;
}
h1 {
	font-family: SourceSancePro;
	font-size:14px;
	font-weight:normal;
	display:inline;
}
h2 {
	font-family: SourceSanceProLight;
	font-size:18px;
	display:inline;
	font-weight:normal;
}
h3 {
	font-family:SourceSanceProLight;
	font-size:14px;
	font-weight:normal;
	text-decoration:underline;
}
h4 {
	
	font-family:SourceSanceProLight;
	font-size:12px;
	font-weight:normal;
}
[class*="col-"] {
    float: left;
    padding: 25px;
}
.header {
	z-index: 10;
	padding: 0px;
}
.menu {
	position:fixed;
	max-width:280px;
	z-index: 10;
    float: left;
	font-family: SourceSanceProLight;
	font-size:14px;
}
.menu ul {
    list-style-type: none;
    margin-top: 10px;
    padding: 0px;
}
.menu li {
    padding: 0px;
	margin-top: px;
    margin-bottom: 5px;
	background-color: rgba(255,255,255,1);
	display:inline;
    color: #000;
}
.menu li:hover {
	cursor: pointer;
}
.next {
	position: fixed;
	z-index: 10;
	right: 25px;
	bottom: 25px;
	margin-bottom: 5px;
	padding: 0px;
	color: #000000;
	text-align: right;
	font-size: 10px;
	font-weight:bold
}
.next ul {
    list-style-type: none;
    margin: 0;
    padding: 0px;
}
.next li {
	padding: 0px;
	margin-top: 5px;
	margin-bottom: 5px;
	color: #000000;
}
.next li:hover {
	cursor: pointer;
}
.footer {
	position: fixed;
	z-index: 10;
	left:25px;
	bottom:25px;
	padding:5px;
    color: #000000;
    text-align: left;
    font-size: 10px;
}
.main {
	font-family: SourceSanceProLight;
	font-size:14px;
	line-height:20px;
	padding:10px;
}
.main gr {
	color: #999999;
}
/* For mobile phones: */
[class*="col-"] {
    width: 100%;
}
@media only screen and (min-width: 0px) and (max-width: 480px) {
	.hide-mobile {
		display:none;
	}
	[class*="col-"] {
        padding: 10px;
        width: auto;
    }
	.menu {
		position:inherit;
		max-width:250px;
	}
	.next {
		position:inherit;
		text-align:right;
	}
	.footer {
		position:inherit;
	}
	.figcaption{
		right:20px;
		padding:0px;
	}
	.leader{
		top:inherit;
		right:10px;
		bottom:100px;
	}
}
@media only screen and (min-width: 480px) and (max-width: 1024px) {
    [class*="col-"] {
        padding: 10px;
        width: auto;
    }
	.show-tablet {
		display:block;
	}
	.menu {
		max-width:250px;
	}
	.next {
		right:10px;
		bottom: 10px;
	}
	.footer {
		left:10px;
		bottom:10px;
	}
	.figcaption{
		right:20px;
		padding:0px;
	}
	.leader{
		top:inherit;
		right:10px;
		bottom:100px;
	}
}
@media only screen and (min-width: 1024px) {
	.hide-desktop {
		display:none;
	}
}
@media only screen and (min-width: 480px) {
    /* For tablets: */
    .col-m-1 {width: 10%;}
    .col-m-2 {width: 20%;}
    .col-m-3 {width: 30%;}
    .col-m-4 {width: 40%;}
    .col-m-5 {width: 50%;}
    .col-m-6 {width: 60%;}
    .col-m-7 {width: 70%;}
    .col-m-8 {width: 80%;}
    .col-m-9 {width: 90%;}
    .col-m-10 {width: 100%;}
}
@media only screen and (min-width: 1024px) {
    /* For desktop: */
    .col-1 {width: 10%;}
    .col-2 {width: 20%;}
    .col-3 {width: 30%;}
    .col-4 {width: 40%;}
    .col-5 {width: 50%;}
    .col-6 {width: 60%;}
    .col-7 {width: 70%;}
    .col-8 {width: 80%;}
    .col-9 {width: 90%;}
    .col-10 {width: 100%;}
}
.row::after {
    content: "";
    clear: both;
    display: block;
}