/**
 *
 * base.css
 *
 * Defines the basic style of the Skwod Syte.
 * Mainly sets the style for the wrapper and innerwrapper and other basic things
 * like the font style to use for headings, etc.
 *
 **/

/*
 * CSS Reset
 */
html, body, div, span, applet, object, iframe, 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, summary, time, mark, audio, video {
	top:0;
	margin: 0;
	padding: 0;
	border: 0;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
	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;
}
/*
 * End of CSS Reset
 */

html, body{
	background-color:white;
	min-height:100%;
	max-height:100%;
	height:100%;
}

code{
	font-family:monospace;
}

img{
	max-width:100%;
	width:auto;
	max-height:100%;
	height:auto;
}

h1, h2, h3{
	font-family: cloister-black, Arial, Sans-serif;
}

.centertext{
	text-align:center;
}

ul{
	list-style-type:upper-roman;
}

a{
	font-family: Georgia;
}

div.wrapper{
	width:80%;
	min-height:100%;
	height:auto;

	margin-left:auto;
	margin-right:auto;
	padding-top:25px;

	box-shadow: 0 0 20px 0 grey;
	background-color:lightgrey;
}

div.innerwrapper{
	width:80%;
	
	margin-left:auto;
	margin-right:auto;
	padding-bottom:1.5em;
}

div.para{
	margin-top:2em;
	margin-bottom:1em;
}

div.innerwrapper div.section{
	padding-top:1.5em;
	padding-left:1em;
}

div.section ul{
	padding-left:2.5em;
}

div.section ul li{
	margin-top:0.75em;
}

footer{
	text-align:center;
	padding-top:2em;
	padding-bottom:1em;
}

em, strong{
	font-weight:bold;
}
