/* 
 * style-desktop.css: contains specific styling for the desktop version of the website.
 * Author: Wouter van Toll
 */
 
html
{
	background: #333333;
	margin: 0;
}

/* full website is vertically centered, with a fixed width. Switch to mobile version when this width cannot be achieved. */
body
{	
	width: 920px;
	margin: 20px auto;
	padding: 0;
}

/* header aligns with right side of content div */
#header
{
	width: 100%;
	height: 80px;
	margin: 0 0 20px 0;
	text-align: right;
}

/* navigation menu on the left */
#nav
{
	float: left;
	width: 150px;
	
	text-align: right;
	margin: 0px;
	padding: 17px 20px 10px 10px;
	
	font-size: 18pt;
}

/* navigation items are listed vertically (default behavior for p elements) */
#nav p
{
	padding: 8px 0 12px 0;
	margin: 0;
}

/* content part on the right */
#center
{
	float: left;
	width: 700px;
	background: #FFFFFF url('p/bg_content.gif') no-repeat right top;
	
	margin: 0 0 10px 0;
	padding: 5px 20px 0px 20px;
	
	min-height: 300px;
}

/* footer on the bottom-right */
#footer
{
	text-align: right;
}

/* 
 * ============================================================
 * ============================================================
 * ============================================================
 */

/* section headers: larger than on mobile */
.title
{
	margin: 10px 10px 14px -20px;
	font-size: 18pt; 
}

/* more vertical space between publications */
.publication
{
	margin-bottom: 20px;
}

/* publication descriptions to the right of the thumbnail */
.publication_description
{
	float: left;
	margin: 4px 0 0 0;
	min-height: 130px;
	width: 500px;
}

