/* ----------------------------------- */
/*	CSS Reset
	http://meyerweb.com/eric/tools/css/reset/ 
	v2.0 | 20110126
	License: none (public domain)
	+++ Added support for 'main' element.
*/
/* ----------------------------------- */

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, main, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section, main {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}

/* Meyerweb Reset Ends */

/* ----------------------------------- */
/* Additional Defaults
/* Colin Foster 
   v1.3 2014-05-30
/* ----------------------------------- */

html, body{
	line-height: 1.3em;
}

table td{
	vertical-align: top;
}

table td.numeric{
	text-align: right;
}

table thead td,
table tbody td.heading{
	font-weight: bold;
}

ol li{
	margin-left: 1em;
	list-style-type: decimal;
	list-style-position: outside;
}

ul li{
	margin-left: 1.5em;
	list-style-type: disc;
	list-style-position: outside;
	line-height: 1em;
}

blockquote{
	margin-left: 15px;
	margin-right: 15px;
}

h1,h2,h3,h4,h5{ font-weight: bold; }
h1{ font-size: 18px; }
h2{ font-size: 16px; }
h3{ font-size: 14px; }
h4{	font-size: 13px; }
h5{	font-size: 12px; }
h6{	font-size: 12px; font-weight: normal; }

h1,h2,h3,h4,h5,h6,
p, ul, ol, blockquote{ margin-bottom: 0.8em; }


em{ font-style: italic; }
img{ border: 0; }
sup{ vertical-align: super; }
sub{ vertical-align: text-bottom; }
strong{ font-weight: bold; }
fieldset{
	border: 1px solid black;
}

fieldset legend{
	padding: 0 10px 0 10px;
	margin-left: 10px;
}

label{ cursor: pointer; }

input, textarea, select{
	margin: 0;
	padding: 2px;
	color: inherit;
	font-family: inherit;
	font-size: inherit;
	font-weight: normal;
	font-style: normal;
	font-variant: normal;
}

abbr, acronym{
	border-bottom: 1px dotted black;
	cursor: help;
} 

/* ----------------------------------- */
/* Commonly used classes               */
/* ----------------------------------- */

/* For use with inline images */
img.left{
	float: left;
	display: inline;
	margin: 5px 10px 5px 0;
}

img.right{
	float: right;
	display: inline;
	margin: 5px 0 5px 10px;
}

.clearfix:after{
  content: "";
  display: table;
  clear: both;
}

div.brace{
	height: 0;
	line-height: 0px;
	font-size: 0px;
	float: none;
	clear: both;
}

#js_error,
#js_console{
	width: 48%;
	max-height: 300px;
	position: fixed;
	left: 0;
	bottom: 0;
	padding: 8px 1% 0 1%;
	border-top: 2px solid black;
	border-right: 2px solid black;
	font-size: 12px;
	font-family: Consolas, monospace;
	white-space: pre;
	overflow-y: scroll;
	background: white;
	color: black;
	z-index: 10000;
}

#js_error a,
#js_console a{
	width: 20px;
	height: 20px;
	display: block;
	position: absolute;
	right: 5px;
	bottom: 5px;
	background: rgba(0,0,0,0.2);
}

#js_console{
	left: auto;
	right: 0;
	border-right: none;
	border-left: 2px solid black;
}

#js_error.collapsed,
#js_console.collapsed{
	width: 2px;
	height: 20px;
	overflow: hidden;
	border: 1px solid #eeeeee;
}
