@charset "utf-8";

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Roboto', sans-serif;
}
a, a:visited {
    text-decoration: none;
    cursor: pointer;
}a:hover {
    
}
hr {
    height: 0;
    border: none;
    border-bottom: #ddd solid 1px;
    margin-top: 1.5em;
}
p, h1, h2, h3, h4, h5 {
    /*
	hyphens: auto;
	hyphenate-limit-chars: auto 5;
	hyphenate-limit-lines: 2;
	-webkit-hyphens: auto;
	-webkit-hyphenate-limit-chars: auto 3;
	-webkit-hyphenate-limit-lines: 4;
	-ms-hyphens: auto;
	-ms-hyphenate-limit-chars: auto 3;
	-ms-hyphenate-limit-lines: 4;
	*/
    max-width: 800px;
}
p+p {
    padding-top: 1.0em;
}p+h2 {
    padding-top: 1.5em;
}p+h3 {
    padding-top: 1.5em;
}
h2+p{
    padding-top: 1.0em;}
.clear {
    clear: both;
}
/*DEMO*/
.item {
    position: relative;
    border: transparent solid 10px;
    transition: all 0.5s ease-out;
    -webkit-transition: all 0.5s ease-out;
    margin-bottom: 0px;
}
strong {
    font-weight: bold;
}
img {
    max-width: 100%;
}
.center {
    position: relative;
    width: 100%;
    max-width: 1200px;
    margin: auto;
    padding: 50px 50px;
}

.cols-1 {
}
.cols-1 .item {
    border: none;
}
.cols-2 {
}
.cols-2 .item {
    width: 50%;
    float: left;
}
.cols-2 .item:nth-child(2n) {
    margin-right: 0;
}
.cols-2 .item:nth-child(2n+1) {
    clear: both;
}
.cols-3 {
}
.cols-3 .item {
    width: 33.333%;
    float: left;
}
.cols-3 .item:nth-child(3n) {
    border-right: none;
    border-left: transparent solid 20px;
}
.cols-3 .item:nth-child(3n+1) {
    clear: both;
    border-left: none;
    border-right: transparent solid 20px;
}
.cols-3 .item:first-child {
    border-left: none;
    border-right: transparent solid 20px;
}
.cols-3 h2 {
    font-size: 15pt;
}
.list.cols-3 h2 + p {
    margin-top: 0.5em;
}
.cols-4 {
}
.cols-4 .item {
    width: 25%;
    float: left;
}
.cols-4 .item:nth-child(4n) {
    margin-right: 0;
	/*	border-right: none;
    border-left: transparent solid 20px;*/
}
.cols-4 .item:nth-child(4n+1) {
    clear: both;
	/*border-left: none;
    border-right: transparent solid 20px;*/
}
.cols-5 {
}
.cols-5 .item {
    width: 20%;
    float: left;
}
.cols-5 .item:nth-child(5n) {
    margin-right: 0;
}
.cols-5 .item:nth-child(5n+1) {
    clear: both;
}

