@charset "utf-8";

/*
 * structural elements
 */
html {
	background: #dfdfdf;
	height: 100%;
	font-family: sans-serif;
}

body {
	position: relative;
	min-height: 100%;
	width: 900px;
	margin: 0 auto;
	padding: 0;
	background: #ffffff;
	border: 0px;
	border-right: 1px solid #bfbfbf;
	border-left: 1px solid #bfbfbf;
}

div.title {
	position: relative;
	top: 50px;
	height: 100px;
	width: 900px;
	text-align: center;
}

div.side_menu {
	position: absolute;
	top: 150px;
	padding: 25px;
	width: 150px;
	border-right: 1px solid #dfdfdf;
	text-align: right;
}

div.content {
	position: relative;
	top: 50px;
	left: 200px;
	width: 650px;
	padding: 25px;
	text-align: left;
	line-height: 130%;
}

div.footer {
	/*position: relative;
	bottom: 50px;*/
	padding: 15px;
	text-align: center;
}

img.right_float {
	float: right;
	margin-right: 0px;
	margin-top: 0px;
	margin-bottom: 32px;
	margin-left: 32px; 
}

hr {
	border: 0px;
	background-color: #dfdfdf;
	color: #dfdfdf;
	width: 60%;
	height: 1px;
	margin-top: 50px;
	margin-bottom: 50px;
}

/*
 * Text elements
 */
h1 {
	color: #9f0000;
}

h2 {
	color: #7f0000;
	font-weight: 400;
	font-size: 150%;
}

h3 {
	color: #5f0000;
	font-weight: 300;
	font-size: 125%;
}

h1.title {
	font-style: normal;
	font-weight: 100;
	font-size: 250%;
	margin: 0px;
}

p {
	text-align: justify;
}

p.active_menu_item {
	text-align: right;
	font-weight: 600;
	color: #9f0000;
}

p.inactive_menu_item {
	text-align: right;
	font-style: normal;
}

a {
	text-decoration: none;
	color: #00009f;
}

p.footer {
	text-align: center;
	font-size: 70%;
}

/*
 * Bibliography items numbered with squared brackets
 */

ol.biblist {
	counter-reset: biblist;
}

ol.biblist > li {
	list-style: none;
	position: relative;
}

ol.biblist > li:before {
	counter-increment: biblist;
	content: "[" counter(biblist, decimal) "]";
	position: absolute;
	right: 617px;
}

