/* v39 */

* {
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

body {
	font-family: "System-Ui, Helvetica Neue", Helvetica, Arial, sans-serif;
	background-color: #fff;
	color: #000;
	-webkit-text-size-adjust: 100%;
	user-select: none;
	-webkit-user-select: none;
}

#header {
	position: fixed;
	top: 0;
	left: 0;
	height: 44px;
	background-color: #f8f8f8;
	border-bottom: 1px solid #b2b2b2;
	border-right: 1px solid #c8c7cc;
	z-index: 2000;
	padding: 7px 10px;
	width: 320px;
	transition: width 0.1s ease-in-out;
}

#note {
	font-style: italic;
	padding-bottom: 3px;
	color: #FF8040;
	border-radius: 6px;
	text-align: center;
}

.search-container {
	background: #d1d1d6;
	border-radius: 6px;
	padding: 1px;
	width: 100%;
}

.search-input {
	width: 100%;
	height: 28px;
	border: none;
	border-radius: 6px;
	padding: 0 8px;
	font-size: 15px;
	outline: none;
	background-color: #fff;
	background-image: url(../img/find.gif);
	background-repeat: no-repeat;
	background-position: 5px 8px;
	text-indent: 14px;
	-webkit-appearance: none;
	touch-action: manipulation;
}

#sidebar {
	position: fixed;
	top: 44px;
	left: 0;
	width: 320px;
	bottom: 0;
	border-right: 1px solid #c8c7cc;
	overflow-y: auto;
	-webkit-overflow-scrolling: touch;
	z-index: 1000;
	overflow-y: auto;
	-webkit-tap-highlight-color: transparent;
	overscroll-behavior: contain;
	background-color: #f8f8f8;
}

.disabled {
	pointer-events: none;
	opacity: 0.3;
	background: #efeff4;
}

.item {
	display: block;
	padding: 14px 15px;
	border-bottom: 1px solid #c8c7cc;
	border-top: 1px solid #fff;
	font-size: 17px;
	color: #000;
	cursor: pointer;
	text-decoration: none;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	touch-action: manipulation;
}

.item.active {
	background-color: #007AFF !important;
	color: #ffffff !important;
}

.item.active .blue {
	color: #fff;
}

#content {
	margin-left: 320px;
	padding: 30px 30px 30px 30px;
	background-color: #ffffff;
	min-height: 100vh;
}

h1 {
	font-size: 22px;
	margin-bottom: 15px;
	font-weight: 400;
}

.sep {
	height: 1px;
	background: #C8C7CC;
	margin: 20px 0;
}

.text-body {
	font-size: 28px;
	line-height: 1.3;
	color: #333;
	text-align: center;
	font-weight: normal;
	font-family: serif;
}

.right {
	float: right;
}

.gray {
	color: #666;
}

.blue {
	color: #007AFF;
}

.hide {
	display: none !important;
}

#loader {
	position: absolute;
	right: 15px;
	top: 13px;
}

video {
	visibility: hidden;
	position: absolute;
	left: -300px;
}

button {
	font-size: 16px;
	padding: 8px 12px;
	background: #efefef;
	color: #000;
	border: solid 1px #ccc;
	border-radius: 5px;
}

button.actions {
	position: fixed;
}

#btnHome {
	bottom: 14px;
	right: 14px;
	border-radius: 100%;
}

h3 {
	color: #666;
	background: #efefef;
	padding: 5px;
	border-radius: 5px;
	text-align: center;
}

h3 span {
	color: #B2B2B2;
}

.sTags {
	text-align: center;
	margin-top: 30px;
}

.sTags a {
	display: inline-block;
	color: #666666;
	background: #EFEFF4;
	padding: 6px;
	text-decoration: none;
	font-size: 1.1em;
	margin: 6px;
	border-radius: 3px;
}

.sTags a span {
	color: #b2b2b2;
}

textarea {
	width: 100%;
	height: 77%;
}

input.largeText, button.largeText {
	margin-bottom: 10px;
	margin-right: 10px;
}

button.largeText {
	margin-top: 10px;
	margin-bottom: 0px;
}

.largeText {
	font-size: 22px;
	font-family: Serif;
	padding: 10px;
}

@media only screen and (min-width: 601px) and (max-width: 1024px) {

	h1 {
		font-size: 18px;
		font-weight: bold;
	}

	#sidebar {
		width: 280px;
	}

	#header {
		width: 280px;
	}

	#content {
		margin-left: 280px;
	}
}

@media only screen and (min-width: 601px) and (max-width: 1024px) and (orientation: landscape) {

	h1 {
		font-size: 20px;
		font-weight: bold;
	}

	#sidebar {
		width: 340px;
	}

	#header {
		width: 340px;
	}

	#content {
		margin-left: 340px;
	}
}

@media only screen and (max-width: 600px) and (orientation: portrait) {

	#sidebar {
		width: 300px;
	}

	#header {
		width: 300px;
	}

	#content {
		margin-left: 0px;
		padding: 20px;
	}

	.hideMobile {
		display: none;
	}

	h1 {
		font-size: 16px;
		font-weight: bold;
	}
	
	.text-body {
		font-size: 24px;
	}
}