/* main.css by Kaylyn Garnett - Feb 2 2013
	original "reset margins" provided by: Bill Weinman http://bw.org/contact
*/

/* reset margins */
html, body, div, span, h1, h2, h3, h4, h5, h6, p, ol, ul, li,
blockquote, pre, form, label, legend, table, caption, tbody, tfoot, thead,
tr, th, td, article, aside, canvas, details, embed, figure, figcaption,
footer, header, hgroup, menu, nav, output, section, summary, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}

/* setup body */
body, p {
    line-height: 1.1;
    font-family: Georgia, serif;
    font-size: 14pt;
}

/* reasonable starting margins */
p, h1, h2, h3, h4, h5, h6, ol, ul, li { margin: 8px; }
li { margin-left: 0; }

/* set lists to be visible within margins */
ol, ul { list-style-position: inside }

/* setup headings */
h1, h2, h3, h4, h5, h6 {
    line-height: 1;
    font-family: Tahoma, Verdana, sans-serif;
    font-weight: bold;
	margin-top: 25px;
	margin-bottom: 15px;
}

h1 { font-size: 200%; }
h2 { font-size: 180%; }
h3 { font-size: 160%; }
h4 { font-size: 140%; }
h5 { font-size: 120%; }
h6 { font-size: 100%; }

/* setup pre */
pre { font-family: consolas, monospace; }

html, body {
	height: auto;
	background-color: #222222;
}

/* Add further "main" css */
/* Main for: Elements */

/* Class/Id Group: Basic/Reusable */

section {
	margin: 10px;
}

.center {
	display:block;
	float:none;
	margin-left: auto;
	margin-right: auto;
}

.odd {
	background-color: #f0f0f0;
}

.even {
	background-color: #e0e0e0;
}

.text-link {
	text-decoration: none;
	font-style: italic;
	font-weight: bold;
	color: grey;
	cursor: pointer;
	-webkit-touch-callout: none;
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

.text-link:hover {
	font-weight: bolder; 
}

div.indent-container {
	width:100%;
	padding-left: 15px;
}

p.list-section-title{
	line-height: 130%;
	font-size: 90%;
	font-weight: bolder;
	font-style: italic;
	text-align: left;
}

table.basic {
	margin: 10px;
	border-collapse: collapse;
	text-align: left;
}

table.basic th {
	padding: 5px;
	text-align: left;
	font-weight: bold;
	background-color: #d0d0d0;
}

table.basic td {
	padding: 5px;
	margin: 0;
}

table caption {
	caption-side: bottom;
	padding: 5px;
	font-size: 80%;
	font-style: italic;
}

td.auto-width {
	width: auto;
	white-space: nowrap;
}

.sample-code {
	margin: 10px;
	padding: 5px;
	background-color: #D8D8D8;
	border: solid 1px #989898;
	font: consolas;
}

/* End Group: Basic/Reusable */



/* Class/Id Group: Main Content */

/* Defines the main screen background and acts as a contained for the main-content id
	Must use this container and not 'body' to enable main-content's margin settings */
div#main-container {
	width: 100%;
	height: 100%;
	-webkit-box-sizing: border-box; /* Safari/Chrome, other WebKit */
	-moz-box-sizing: border-box;    /* Firefox, other Gecko */
	box-sizing: border-box;         /* Opera/IE 8+ */
}

/* The main 'cylinder' of displayed information of the entire web page */
section#main-content {
	margin-left: 150px;
	margin-right: 150px;
	margin-top: 0px;
	margin-bottom: 0px;
	padding: 0;
	padding-bottom: 150px;
	min-width: 400px;
	height: 100%;
	background-color: white;
	border-left: solid black 3px;
	border-right: solid black 3px;
}

/* Title-quote: refers to the main heading of the web page and it's 'flavour text' as a breif summary, or related quote/sentence to complement the section */

hgroup.page-title {
	margin: 5px;
}

h1.title {
	display: inline;
	font-size: 300%;
	margin-top: 20px;
	margin-bottom: 5px;
}

h2.quote {
	margin-top: 5px;
	margin-bottom: 5px;
	font-size: 100%;
	font-style: italic;
	font-weight: lighter;
}

.anchor-links {
	margin-top: 5px;
	margin-bottom: 5px;
	font-size: 70%;
}

header#header-image {
	width: 100%;
	margin: 0;
	padding: 0;
}

header#header-image img{
	max-width: 100%;
	height: auto;
	margin: 0;
	padding: 0;
}

/* End Group: Main Content */

div.block-list {
	display: block;
	width: 80%;
	height: 100px;
	margin-left: auto;
	margin-right: auto;
	text-align: center;
}

div.block-list ul {
	list-style-type: none;
	display: block;
	height: 100%;
	float: left;
	margin-left: auto;
	margin-right: auto;
	font-size: 80%;
}

div.block-list ul li {
	display: block;
	float: left;
	width: 30%;
	height: 100%;
	padding: 10px;
}

div.small-block-list {
	display: block;
	width: 80%;
	margin-left: auto;
	margin-right: auto;
	text-align: center;
}

div.small-block-list ul {
	list-style-type: none;
	display: block;
	height: 50px;
	float: left;
	margin-left: auto;
	margin-right: auto;
	font-size: 80%;
}

div.small-block-list ul li {
	display: block;
	float: left;
	width: 30%;
	height: 100%;
	padding: 10px;
}
