html, body {
	margin: 0;
	padding: 0;
}
h1{
	margin-top: 0;
	padding-top: 0;
	font-weight: 400;
	font-size: 34px;
}
h2{
	margin-top: 0;
	padding-top: 0;
}
p {
	word-wrap: break-word;
}
body {
	background-color: #fafaff; 
	position: relative;
	min-height: 100vh;
	display: flex;
	flex-direction: column;
	font-family: "Helvetica", "Arial", "FreeSans", sans-serif;

}
textarea{
	resize: vertical;
	margin-bottom: 15px;
}
small{
	font-size: small !important;
}
::-webkit-scrollbar {
	background-color: #F5F5F5;
	width: 6px;
} 
::-webkit-scrollbar-thumb {
    background-color: #b3b3b3;
} 
::-webkit-scrollbar-track {
    box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
    background-color: #F5F5F5;
}  
#wrapper{
	display: flex;
}
a{
	color: blue;
}
a:visited{
	color: blue;
}
/*	Side Wrapper	*/
#side-wrapper{
	float: left;
	width: 260px;
	height: 100vh;
	position: fixed;
	background: #42444e;
	overflow-y: auto;
}

/*	Side Menu	*/
.side-menu{
	color: #2fb1ed;
}
.side-menu label{
	font-size: 22px;
	font-weight: 400;
}
.side-menu li{
	list-style-type: none;
	font-size: 16px;
	width: 100%;
}
.side-menu li a {
	text-decoration: none;
	color: #ffffff;
}
.side-menu li a:visited{
	color: #ffffff;
}
.side-menu li a:hover {
	color: #db7373;
}
@media (max-width: 800px) {
	#side-wrapper-toggle {
		display: block;
		position: fixed;
		bottom: 10px;
		right:0;
		text-align: center;
		font-size: 28px;
		font-weight: 400;
		background: #9b59b6;
		padding: 2px 13px 2px 15px;
		cursor: pointer;
		transition: all 0.15s ease;
		color: #95a5a6;
		opacity: 0.5;
		z-index: 999;
	}
	#side-wrapper-toggle.active {
		opacity: 1;
		color: #34495e;
		right: 260px;
		box-shadow: -5px 0 15px 0 rgba(0, 0, 0, 0.5);
	}
	#side-wrapper-toggle [class^="icon-"]:before, #side-wrapper-toggle [class*=" icon-"]:before {
		line-height: 40px;
		text-align: center;
		color: #fff;
	}
	.side-wrapper {
		width: 260px;
		height: 100%;
		position: fixed;
		right: -260px;
		top: 0;
		overflow-y: auto;
		z-index: 99999;
		background: #caccce;
		transition: all 0.15s ease;
		box-shadow: 0 0 0 0 transparent;
	}
	.side-wrapper.open {
		right: 0 !important;
		transition: all 0.15s ease;
		box-shadow: -5px 0 15px 0 rgba(0, 0, 0, 0.5);
	}

}
/*	End Side Menu	*/
/*	End Side Wrapper	*/

/*	Body Wrapper	*/
#body-wrapper{
	float: right;
	margin-left: 260px;
	width: 100%;
	padding: 16px;
}
@media (max-width: 800px) {
	#body-wrapper{
		margin-left: 0px;
	}
}
.ad{
	margin-top: 25px;
}
.inputBox{
	border: 1px solid #e5e5e5;
	background: #f7f7f7;
	clear: both;
	padding-left: 5px;
}
#body-wrapper p {
	font-size: larger;
	color: #080707;
}
#body-wrapper input[type=text] {
	margin-bottom: 5px;
	padding-left: 5px;
	font-size: 18px;
}
#body-wrapper input[type=button] {
	font-size: 22px;
	background: #ffffff;
	border:1px solid #cccccc;
	margin-bottom: 5px;
}
#body-wrapper select {
	font-size: 20px;
	background: #ffffff;
	border:1px solid #cccccc;
	margin-bottom: 5px;
}
#body-wrapper label{
	font-size: larger;
	color: #080707;
}
#body-wrapper .divCheckbox{
	margin-bottom: 5px;
}
#body-wrapper .result{
	font-size: xx-large;
	color: #20394D;
	margin-top: 5px;
	word-wrap: break-word;
	word-break: break-all;
}
#body-wrapper .mini-result{
	font-size: medium;
	margin-top: 5px;
	margin-bottom: 5px;
	word-wrap: break-word;
	word-break: break-all;
}


.side-label{
	margin-left:5px;
}
#body-wrapper textarea {
	width: 100%;
	height: 200px;
	border:1px solid #cccccc;
	padding: 5px 0px 0px 5px;
}
#ad {
	margin-top: 50px;
}
.adUnit {
	margin-bottom: 5px;
}
/*	End Body Wrapper	*/
.icon-right-open-big:before { content: '\2039'; }
.icon-left-open-big:before { content: '\203A'; }
