/* styles for notes */

@font-face {
    font-family: 'Ubuntu Mono';
    src: url(fonts/UbuntuMono-R.ttf);
    font-weight:400;
}
@font-face {
    font-family: 'Segoe UI';
    src: url(fonts/segoeui.ttf);
    font-weight:400;
}

body {
	font-family: 'Segoe UI';
	font-size: 90%;
	background-color: #bbb;
	line-height: 130%;
}

#wrapper {
	width: 650px;
	margin: 0 auto; 
	box-shadow: 0px 0px 6px 2px #666;
	padding: 25px;
	background-color: #fff;
	text-align: justify;
}

table {
	border: 1px solid #666;
	border-collapse: collapse;
	width: 99%;
	margin: 0 auto;
}

table, th, td {
	background-color: #FFF;
	border: 1px solid #666;
	padding: 3px;
}

.head {
	color: #325489;
	font-weight: 400;
	margin: 17px 0 4px 0;
}

h1 {
	font-size: 165%;
}

h2 {
	font-size: 150%;
}

h3 {
	font-size: 135%;
}

h4 {
	font-size: 120%;
}

h5 {
	font-size: 110%;
}

h6 {
	font-size: 100%;
}

.h_anchor {
	text-decoration: none !important;
	color: #900 !important;
	font-weight: 400;
	padding-left: 10px;
	display: none;
}

.images img {
	display: block;
	border: 3px solid #bbb;
	margin: 10px;
	max-width: 95%;
	max-height: 300px;
}

.img_title {
	font-size: 80%;
	font-weight: 600;
	text-align: left;
	margin: -10px 0 0 7px;
	padding: 3px;
}

.title {
	font-size: 160%;
	line-height: 140%;
	text-align: center;
	font-weight: 600;
	background: #bbb;
	color: #293F70;
}

.date {
	font-weight: 400;
	text-align: center;
	background: #ccc;
	border-top: 1px solid #666;
	margin: 15px 0 5px 0;
	padding: 2px;
}

a:link, a:active, a:visited {
	color: #293F70;
	text-decoration: underline;
}

a:hover {
	color: #9D302D;
}

ul {
	margin: 0 0 10px 0;
	list-style-type: square;
	padding-left: 20px;
}

ul ul, ol ol {
	padding-left: 30px;
}

ol {
	margin: 0 0 10px 0;
	list-style-type: decimal;
	padding-left: 20px;
}

pre {
	font-family: 'Ubuntu Mono';
	border: 1px solid #888;

	background-color: #eee;
	padding: 2px 5px 2px 5px;
	margin: 4px
}

code {
	font-family: 'Ubuntu Mono';
	background-color: #eee;
	border: 1px solid #aaa;
	border-radius: 2px;
}

.note {
	color: #343434;
	border-left: 3px solid #999;
	padding-left: 10px;
	margin-left: 5px;
	font-size: 80%;
}

.short_line {
	display: block;
	width: 200px;
	height: 0px;
	border-bottom: 1px solid #666;
	margin: -4px 0 -14px 0;
}

/*Controls for document*/

#settings {
	display: none;
	padding: 5px;
	position: fixed;
	left: 10px;
	top: -1px;
	z-index: 999;
	background-color: rgba(128,128,128,0.8);
	border: 1px solid #555;
	box-shadow: 0px 0px 8px 2px #777;	
	border-bottom-left-radius: 4px;
	border-bottom-right-radius: 4px;
}

.txt {
	border: 1px solid #666;
	font-size: 13px;
	color: #333;
	background-color: #bbb;
	width: 30px;
	height: 30px;
	border-radius: 3px;
	cursor: pointer;
	float: left;
	text-align: center;
	margin: 0 2px 4px 0;
	padding: 0 0 1px 0;
	line-height: 30px;
}

.txt:hover {
	background-color: #ccc;
	box-shadow: 0 0 3px #eee;
	border: 1px solid #999;
}

.txt.stl {
	width: 100px;
}

.txt#huge {
	font-size: 18px;
}

.txt#bigger {
	font-size: 15px;
}

.txt#normal {
	font-size: 13px;
}

.txt#smaller {
	font-size: 11px;
}

.txt#smallest {
	font-size: 9px;
}