@charset "utf-8";
/* CSS Document */

html {
	-webkit-text-size-adjust: none;
}
@import url('https://fonts.googleapis.com/css?family=Hind:300,400,500');
button {
	font-family: 'Hind', sans-serif;
	font-size: 22px;
	cursor: pointer;
	border: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	-webkit-border-radius: 0;
	-moz-border-radius: 0;
	border-radius: 0;
	-webkit-box-shadow: none;
	-moz-box-shadow: none;
	box-shadow: none;
	line-height: 22px;
}
.mask {
	position: fixed;
	top: 0;
	left: 0;
	z-index: 15;
	width: 100%;
	height: 100%;
	background-color: rgba(0,0,0,0.5);
}
/* ------------------------------------------------------------ *\
|* ------------------------------------------------------------ *|
|* Toggle Buttons
|* ------------------------------------------------------------ *|
\* ------------------------------------------------------------ */
.buttons {
	margin-bottom: 10px;
	height: 20px;
	width: auto;
	padding-top: 10px;
	padding-right: 10px;
	padding-bottom: 0px;
	padding-left: 0px;
	float: left;
}
/* other */
@media only screen and (min-width : 801px) {
.buttons {
	display: none;
	
}}
.buttons button {
	color: #fff;
	background-color: #000000;
	margin-top: 0;
	margin-right: 0;
	margin-bottom: 0px;
	margin-left: 0;
	font-size: 26px;
	line-height: 30px;
	display: inline-block;
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 10px;
}
.buttons button:hover,
.buttons button.active {
	background-color: #000000
}
.buttons button:focus {
    outline: none
}
/* ------------------------------------------------------------ *\
|* ------------------------------------------------------------ *|
|* Menus
|* ------------------------------------------------------------ *|
\* ------------------------------------------------------------ */
/* general style for all menus */
nav.menu {
	position: fixed;
	z-index: 20;
	background-color: #333333;
	overflow: scroll;
	-webkit-transition: all 0.3s;
	-moz-transition: all 0.3s;
	-ms-transition: all 0.3s;
	-o-transition: all 0.3s;
	transition: all 0.3s;
}
nav.menu ul {
	margin: 0;
	padding: 0;
}

nav.menu a {
    font-weight: 300;
    color: #fff;
}
button.close-menu {
    background-color: #3184a1;
    color: #fff;
}
button.close-menu:focus {
    outline: none
}
/* slide menu left and right, push menu left and right */
nav.slide-menu-left{
	top: 0;
	width: 350px;
	height: 100%;
}
nav.slide-menu-left li {
	display: block;
	text-align: left;
	list-style-type: disc;
	list-style-position: outside;
	border-top-width: 1px;
	border-bottom-width: 1px;
	border-top-style: none;
	border-bottom-style: dotted;
	border-top-color: #FFFFFF;
	border-bottom-color: #999999;
}

nav.slide-menu-left li:first-child  {
    border-top: none
}
nav.slide-menu-left li:last-child  {
    border-bottom: none
}
nav.slide-menu-left a  {
	display: block;
	font-size: 22px;
	padding-top: 12px;
	padding-right: 3px;
	padding-bottom: 8px;
	padding-left: 28px;
	list-style-position: inside;
}
nav.slide-menu-left button.close-menu  {
    margin: 10px 0;
    padding: 10px 30px;
    background-color: #3184a1;
    color: #fff;
}
nav.slide-menu-left  {
	left: -350px
}
body.sml-open nav.slide-menu-left  {
    left: 0
}
body.pml-open #wrapper {
	left: 350px
}

.text {
	color: #999;
	font-size: 22px;
	padding-right: 3px;
	padding-bottom: 8px;
	padding-left: 12px;
	line-height: 38px;
	padding-top: 12px;
}
