body {
	font-family: verdana, arial, sans-serif;
	font-size: small;	
	background: #fff url(/img/bg.gif) repeat-y;
	color: #000;
}

/* definitions applying to the logo */
.logo {
	position: absolute;

	top: 20px;
	left: 20px;
}

.menu {
	position: absolute;

	top: 175px;
	left: 30px;
	width: 110px;

	/* use a lighter text color (grey) and a smaller font */
	color: #777;
	font-size: small;	
}

/*
	Definitions for headers in the menu (.menu h2), page titles (h1) 
	and dateheads (.contents h2):
	- page titles are centered (within the .contents div)
	- menu headers (h2) use a small font
	- dateheads use a large font and are in a box
*/

.head {font-family: Helvetica, Arial, sans-serif; font-size: 22pt; font-weight: bold; display: inline;}

.btop {text-decoration: none; color: black;}

.unter {font-family: Arial Narrow, Helvetica, sans-serif; font-size: 12pt; font-weight: bold; font-style: italic; color: black;}

#menu a {font-family: Arial Narrow, Helvetica, sans-serif; font-size: 10pt; font-weight: bold; line-height: 14pt; text-decoration: none; color: darkblue;}


hr {height: 1px; background-color: lightgrey; color: lightgrey; }


.thl {font-family: Arial Narrow, Helvetica, sans-serif; font-size: 10pt; font-weight: bold; line-height: 14pt; text-decoration: none; color: darkblue;}

.contents h2 {
	background-color: whitesmoke;
	border: 1px solid #ccc;

	padding: 5px; 
	
	font-size: large;

	margin-bottom: 5px;
}

/* 
	Definitions for the item listings like they are done on the main page and in archives
	- h3.item is the title of an item (<h3 class="item">)
	- .itembody is the item contents
	- .iteminfo contains the time of posting and the name of the author, and the amount of comments
	
	anchors in the iteminfo (.iteminfo a) are not underlined and bold
*/

/* item title */
h3.item {
	font-size: medium;
	margin: 0px;
	margin-top: 10px;
}

.itembody {	
	margin-top: 5px;	
	margin-bottom: 5px;
	line-height: 160%;
}

.iteminfo {	
	font-size: x-small;
	color: gray;
}

.iteminfo a {
	font-weight: bolder;
	color: #555;
	text-decoration: none;
}

/*
	Definitions of how comments listings look like on item pages
	- h3.comment contains the name of the comment author
	- .commentbody contains the text from the comment
	- .commentinfo contains the time of commenting
*/

/* comment title */
h3.comment {
	font-size: medium;
	margin-bottom: 10px;
}

.commentbody {
	text-align: justify;
}

.commentinfo {	
	font-size: x-small;
	color: gray;
}


/*
	Some rules that apply to contents generated using the markup buttons 
	"add left box" and "add right box"
	
	both boxes have slightly larger text, and take a maximum of 20% of 
	the width of the contents.
*/

.leftbox, .rightbox {
	margin: 3px;
	padding: 3px;
	font-size: larger;
	width: 20%;
}
.leftbox {
	float: left;
	border-right: 2px solid #ccc;	
}
.rightbox {
	float: right;
	border-left: 2px solid #ccc;	
}


/*
	Some general rules:
	- images never have a border (even when they are inside a hyperlink)
	- elements having class="skip" are not shown
	- item lists using <ul class="nobullets"> have no list-item bullets
	- highlighted text (in search results) have a yellow background
*/


.skip {
	display: none;
}

ul.nobullets {
	list-style: none;
	margin-left: 0px;
	padding-left: 0px;
}

.highlight {
	background-color: yellow;
}

.error {
    color: red;
	font-size: larger;
}


