/* By www.weevers.net */
/* This stylesheet sets basic styling (fonts, colors, background-colors, margins, paddings etcetera). */
/* It will be used by all CSS-capable user agents. */

/* Colors used: 			*/
/* Orange:		#FF9600		*/
/* Light gray: 	#D8D8D8		*/

/* Derived from visual: 	*/
/* Dark green:	#1A3800		*/
/* Yellow:		#FFD400		*/
/* Medium gray:	#898788		*/
/* Dark gray:	#5C5C5C		*/

body {
	font: 75%/1.25 Georgia, Georgia, serif;
	color: #2F368C;
	background-color: #F6E9DC;
}

/* Set margins and paddings for various elements */
/* This will overrule the margins and paddings that are set in the default stylesheet of the user agent. */
address, blockquote, dl, fieldset, form, hr, ol, p, pre{
	margin: 16px 16px 16px 32px;
	padding-top: 0;
	padding-bottom: 0;
}
ul, li{
    margin: 0px;
    margin-left: 8px;
    margin-bottom: 1px;
    margin-top: 1px;
    padding: 0px;
}
p{
    margin-left: 0px;
    padding-left: 0px;
}



/* Headers */
h1, h2, h3, h4, h5, h6 {
	font-weight: bold;
	font-style: italic;
	margin: 0px 16px 16px 0px;
	padding: 0;
	
}

h1 {
	font-size: 150%;
	color: #2F368C;
	padding: 0 .125em;
}

h2 {
	font-size: 100%;
    color: #75363F;
}

h3 {
	font-size: 100%;
}

h4 {
	font-size: 80%;
}

h5 {
	font-size: 70%;
}

h6 {
	font-size: 60%;
}

p.intro {
	font-weight: bold;
	color: #75363F;
}
/* img */

.imageview img {
   border: 1px solid white;
   margin: 8px 5px 8px 16px;
}

