/* Zoning */

html
{
	background-color: whitesmoke;
}

body
{
	background-color: whitesmoke;
	width: 910px;
	/* pour center la page */
	background-position: center center;
	margin-left: auto;
	margin-right: auto;
	font-family: sans-serif;
}

#header
{
	width: 910px;
	height: 300px;
	background-color: white;
}

#navigation
{
	width: 440px;
	height: 30px;
	float: left;

	background-color: white;
	padding-left: 35px;
	padding-right: 35px;

	display: flex;
	justify-content: space-between;
}

#content
{
	width: 910px;
	float: left;
	background-color: white;
	padding-top: 25px;
	padding-bottom: 25px;
}

#footer
{
	width: 910px;
	float: left;
	background-color: whitesmoke;
	/* background-color: white; */
	padding-top: 25px;
	margin-bottom: 25px;
}


/* Navigation */

nav
{
	/* font: normal 16px verdana;	*/
	font-weight: bold;
	width: 775px;
}

nav ul
{
	margin: 0;
	padding: 0;
	list-style: none;
	width: 100%; /* Width of Menu Items */
	border-bottom: 0px solid #ccc;
}

nav ul li
{
	position: relative;
	float: left;
	width: 125px; /* Width of nav block */
	height: 30px;

	margin-left: 1px;
	margin-right: 1px;
}

nav li ul
{
	position: absolute;
	display: none;
}

/* Styles for Menu Items */
nav ul li a
{
	display: block;
	text-decoration: none;
	color: #777;
	background: #fff; /* IE6 Bug */
	padding-top: 8px;
	padding-bottom: 8px;
	border: 0 px solid #ccc;
	border-bottom: 0px solid #ccc;
	text-align: center;
}

nav ul li a:hover { color: crimson; background: #f9f9f9; }
nav li ul li a
{
	padding: 5px 5px;
	text-align: left;
}
nav li:hover ul, li.over ul { display: block; }

/* Specialisation */

#author_image
{
	float: right;
	width: 400px;
	height: 300px;
}

#author_info
{
	float: right;
	width: 400px;
	height: 195px;
	margin-left: 35px;
	margin-right: 35px;
	margin-top: 35px;
	margin-bottom: 35px;
	text-align: right;
}

#author_info a { text-decoration: none; color: #2A6EBB; }
#author_info a:visited { color: #2A6EBB;}
#author_info a:hover {text-decoration: underline;}

#content a { text-decoration: none; color: #2A6EBB; }
#content a:visited { color: #2A6EBB;}
#content a:hover {text-decoration: underline;}

#author_name
{
	color: black;
	font-size: 18px;
	font-weight: bold;
	margin-bottom: 5px;
}

.section_title
{
	font-weight: bold;
	padding-left: 5px;
	padding-bottom: 10px;
}

.bio_section
{
	width: 800px;
	float: left;
	padding-left: 35px;
	text-align: justify;
	line-height: 150%;
}

.paper_title
{
	font-weight: bold;
}
