/*Colour scheme inspired by cure53.de*/
/*
Instructions to change the colour scheme:
	1. Find the relevant object you'd like to change the colour of (e.g., hyperlinks)
	2. Change the "color: #000000" or "background-color: #000000" field to your taste, e.g., "color: #f0f8ff" (the colour system used is the hex system).
*/
/*Main body*/
body{
	font-family: Verdana,Tahoma,Sans-Serif,Helvetica,Arial,Trebuchet MS; 
	font-size: 14pt; 
	color: white; 
	background-color: #333; 
	line-height: 1.5em
}
/*Hyperlinks*/
a{ 
	color: #dfe099;
	text-decoration: none; 
	cursor:pointer 
}
/*Hyperlinks when hovered over*/
a:hover{ 
	color: blue; 
	text-decoration: none; 
	cursor:hand;
}
/*Unordered list*/
ul{ 
	list-style-type: square
}
/*Headings, size 1*/
h1{ 
	font-size: 18pt; 
	font-weight: bold 
}
/*Headings, size 2*/
h2{ 
	font-size: 14pt; 
	font-weight: bold; 
}

/*Outer box*/
#borderbox{
	margin: 5% 20%;
	border: 2px solid; 
}

/*Inner box*/
#marginbox{
	padding: 50px; 
	background-color: #94938F 
}

/*Style for classes 'publication', 'talk', 'blogentry' and 'etc'*/
.publication{	
}

.talk{	
}

.blogentry{	
}

.etc{
}

.synopsis{
	display: none;
}

/* Style the div content */
.div_content{
	display: none;
	padding: 10px 30px;
}

:target { display:block; }