* {
	/*box-sizing: border-box;*/
	padding: 0px;
	margin: 0px;
}



/* MAIN */
body {
	background: url("images/background.png") no-repeat center top;
	margin: 0px 0px 30px 0px;
}
div#menu_main {
	position: absolute;
	top: 0px;
	left: 0px;
	padding: 5px;
	width: 225px;
}
div#main {
	margin: 0px 0px 15px 235px;
}
div#bottom {
	margin: 0px;
	text-align: center;
	font-size: 10px;
}
div.level { margin: 0px 0px 30px 15px; }
div.level > div.level:last-child { margin-bottom: 0px; }
p { margin: 5px 0px 0px 0px; }



.m-top { margin-top: 15px; }
.m-left { margin-left: 15px; }



/* HEADERS & OBJECTS */
h1 {
	margin: 0px;
	min-height: 140px;
	color: #0050A0;
	text-align: center;
	font-size: 50px;
	font-weight: bold;
}
h2 {
	margin: 0px 0px 15px 0px;
	color: #0050A0;
	font-size: 25px;
	font-weight: bold;
}
h3 {
	margin: 0px;
	font-size: 20px;
	font-weight: bold;
}
ul {
	margin: 0px;
	padding: 0px;
}
li {
	margin-left: 30px;
}



/* MAIN MENU */
#menu_main > ul {
	/*margin: 0px 0px 0px 15px;*/
	/*padding: 0px;*/
	list-style-type: none;
}
#menu_main > ul > li {
	margin: 0px;
	padding-top: 5px;
}



/* FIELDSET */
fieldset { border: 4px dotted #0050A0; }
fieldset legend {
	color: #0050A0;
	font-size: 35px;
	font-weight: bold;
}



/* TABLES */
table.plain { border-collapse: collapse; }
table.plain, table.plain td { border: 1px solid #000000; }
table.plain thead {
	background-color: rgba(175,175,175,0.25);
	font-weight: bold;
}
table.plain td { padding: 5px; }



/*  */
img#logo {
	display: block;
	border-width: 0;
	margin: 0px 0px 15px 0px;

}
div#bottom a img { 
	border: 0;
	vertical-align: middle;
}
.bold { font-weight: bold; }
.red { color: #FF0000; }



/* LINKS */
a {
	color: #0050A0;
	text-decoration: none;
}
a:hover {
	color: #00A050;
	text-decoration: none;
}
a.ext {
	color: #A00050;
	text-decoration: none;
}
a.ext:hover {
	color: #00A050;
	text-decoration: none;
}




/* EXPANDABLE LISTING */
.exp > .exp1 > span {
	display: inline-block;
	margin-right: 10px;
	font-size: 70%;
	transition: all 0.25s;
}
.exp.closed > .exp1 > span:first-of-type {
	transform: rotate(0deg);
}
.exp.open > .exp1 > span:first-of-type {
	transform: rotate(90deg);
}
.exp1 {
	display: inline-block;
	cursor: pointer;
	text-decoration: underline;
}
.exp2 {
	display: inline-block;
	padding-right: 15px;
	overflow: hidden;
	overflow-y: scroll;
	transition: all 0.25s;
}
.exp.closed > .exp2 {
	max-height: 0px;
}
.exp.open > .exp2 {
	max-height: 250px;
}
