@import url(http://fonts.googleapis.com/css?family=Mako);
@import url(https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.6.3/css/font-awesome.css);
@import url('https://fonts.googleapis.com/css2?family=Cabin&display=swap');

html, body {
	margin: 0 !important;
	padding: 0 !important;
}
body {
	background-color: #fff;
	color: #555;
	font: normal 16px/150% 'Mako', sans-serif;
	/*font-family: 'Mako', sans-serif;
	font-size: 16px;
	font-weight: normal;*/
	margin: 0;
}


a {
	text-decoration: none;
	color: #7959a3;
	border-bottom: 1px dotted;
}
a:hover {
	border-bottom: 1px solid;
}

h1, h2 {
	margin-bottom: 0;
}

blockquote {
	color: #777;
	display: block;
	padding: 15px 20px;
	width: 80%;
	position: relative;
	border-left: 15px solid #79BFA1;
	border-right: 2px solid #79BFA1;
	-moz-box-shadow: 2px 2px 15px #ccc;
	-webkit-box-shadow: 2px 2px 15px #ccc;
	box-shadow: 2px 2px 15px #ddd;
	margin: 0 auto;
}

.two-col-cell {
	display: table-cell;
	float: left;
	width: calc(100% / 2);
}
.three-col-cell {
	display: table-cell;
	float: left;
	width: calc((100% / 3) - 6px);
}
.sub {
	font-size: 95%;
	padding: 3px 0;
	margin: 0;
}
.clear {
	clear: both;
}
.gallery {
	/* colors optional 
	background-color: #87b;
	color:#fff;
	/* -- */
	text-align: center;
	padding: 10px 0;
	margin: 1px;
}
.gallery img {
	width: 90%;
}

.sidebar-menu {
	width: 200px;
	position: fixed; /*change to 'fixed' for sticky menu */
	top: 140px;
	left: 25%;
	margin: 0;
	padding: 0;
	list-style-type: none;
	text-decoration: none;
	z-index: 1000;
	display:none;
	/*border:5px solid #808;*/
	transform: translateX(250%);
	transition : 0.3s transform ease-in-out;
}
#menu {
	width: 200px;
	position: fixed; /*change to 'fixed' for sticky menu */
	top: 0;
	left: 2%;
	margin: 0;
	padding: 0;
	list-style-type: none;
	z-index: 1000;
	/*border:5px solid #808;*/
}
#menu li {
	border-top: 1px solid #888;
	border-bottom: 1px solid #7C71AD;
}
#menu li a {
	font-size: 85%;
	text-decoration: none;
	color: #ccc;
	padding: 10.5px 11px;
	background-color: #7C71AD;
	display: block;
	border: none !important;
}
#menu li a:hover {
	background-color: #87b;
	color: #fff;
	border: none !important;
}

#menu li a:active {
	font-size: 200%;
	transition: font-size 0.5s ease;
	background-color: #79BFA1;
	color: #fff;
}

#menu li a:focus {
	font-size: 200%;
	transition: font-size 0.5s ease;
	background-color: #79BFA1;
	color: #fff;
}

#menu li a.selected {
	font-size: 160%;
	text-align:center;
	background-color: #79BFA1;
	color: #fff;
}

#banner {
	display: table;
	width: 100%;
	height: 150px;
	background-color: #79BFA1;
	color: #fff;
	margin-top: 18px;
}
#header {
	display: table-cell;
	vertical-align: middle;
	padding-left: calc(200px + 2% + 2%);
}
#content {
	display: table;
	width: calc(100% - (200px + (2% * 2)));
	margin: 0;
	margin-left: calc(200px + 2%);
	margin-bottom: 15px;
}
.pageitem {
	width: 97%;
	margin-left: 2%;
	margin-bottom: 15px;
	float: left;
}
.pageitem p {
	text-align: justify;
}
.pageitem ul li {
	padding: 0;
	margin: 0;
	list-style: none;
}
.pageitem ul li:before {
	content: '\f061';
	font-family: 'FontAwesome';
	float: left;
	margin-left: -1.5em;
	color: #7959a3;
}
.pageitem ol li {
	counter-increment: list;
	list-style: none;
}
.pageitem ol li:before {
	color: #7959a3;
	/*content: counter(list) ".";*/
	text-align: right;
	position: absolute;
	left: calc(200px + 2% + 2%);
	width: 30px;
}
#footer {
	border-top: 2px solid #79BFA1;
	text-align: center;
	padding: 15px;
	font-size: 75%;
	line-height: 70%;
	clear: both;
}
#show-menu {
	display: none;
}
.open, .close {
	background-color: inherit;
	color: #fff;
	text-align: right;
	font-weight: normal;
	font-size: 1.5em;
	padding: 0;
	position: absolute;
	top: 135px;
	left: 4%;
	display: none;
}


/* Responsive styles */
@media screen and (max-width: 1000px) {
	.three-col-cell {
		width: calc((100% / 2) - 6px);
	}
	
	
	
}
@media screen and (max-width: 750px) {
	
.overlay_menu_mobile {
    position:fixed;
    top:0;
    left:0;
    width:100vw;
    height:100vh;
    background-color:rgba(0,0,0,0.5);
    display:none;
}

.overlay_menu_mobile.open {
    display:block;
}
	
.hamburger-menu {
    width: 50px;
    height: 30px;
    display:block;
    cursor:pointer;
    border: none;
    padding: 0;
    margin: 20px;
    background:linear-gradient(
      to bottom, 
      #7C71AD, #7C71AD 20%,
      #79BFA1 20%, #79BFA1 40%, 
      #7C71AD 40%, #7C71AD 60%,
      #79BFA1 60%, #79BFA1 80%, 
      #7C71AD 80%, #7C71AD 100%
    );
}

.sidebar-menu {
	width: 200px;
	position: fixed; /*change to 'fixed' for sticky menu */
	top: 140px;
	left: 25%;
	margin: 0;
	padding: 0;
	list-style-type: none;
	text-decoration: none;
	z-index: 1000;
	display:none;
	/*border:5px solid #808;*/
	transform: translateX(250%);
	transition : 0.3s transform ease-in-out;
}

.sidebar-menu.open {
    transform: initial;
    display:block;
}

.sidebar-menu ul {
	
	list-style-type: none;
	
}

.sidebar-menu li {
	border-top: 1px solid #888;
	border-bottom: 1px solid #7C71AD;
}
.sidebar-menu li a {
	font-size: 65%;
	text-decoration: none;
	color: #ccc;
	padding: 5.5px 11px;
	background-color: #7C71AD;
	display: block;
	border: none !important;
}
.sidebar-menu li a:hover {
	background-color: #87b;
	color: #fff;
	border: none !important;
}

.sidebar-menu li a.selected {
	font-size: 120%;
	text-align:center;
	background-color: #79BFA1;
	color: #fff;
}

	#content {
		margin-left: auto !important;
		margin-right: auto !important;
		width: calc(100% - (2% * 2));
	}
	#header {
		padding-left: 4%;
	}
	.pageitem ol li:before {
		left: calc(2% + 2%);
	}
	/* menu */
	#menu {
		display: none;
	}
	.hide, .open {
		display: block;
	}
	#show-menu:checked ~ .open {
		display: none;
	}
	#show-menu:checked ~ .close {
		font-size: 1.6em;
		display: block;
	}
	#show-menu:checked ~ ul#menu {
		display: initial;
		width: 100%;
		text-align:center;
		position: absolute;
		top: calc(18px + 150px);
		right: 0;
		left: auto;
		opacity: 0.95;
    filter: alpha(opacity=95); /* For IE8 and earlier */
	}
}
@media screen and (max-width: 650px) {
	.three-col-cell {
		width: calc(100% / 1);
	}
	.two-col-cell {
		width: calc(100% / 1);
	}
	.gallery img {
		width: 70%;
	}
	#footer {
		text-align: center;
	}
}
