/******************************************************************
 Stylesheet for the employee page of Yves Bussard.
 ******************************************************************/
 
/* Define global settings */
html,body,table#mainTable {
	height: 100%;
}


body {
	color: #000000;
	background-color: #F5E9DB;
	margin: 0px;
	padding: 0px;
	font-family: Lucida, Gill Sans, Helvetica, Arial, Verdana, sans-serif;
	font-size: 16px;
}

/* Define the background image in the header cell of the main table. 
 * Additionally we have to set the top and bottom padding to 0 otherwise
 * the image will be displayed 1px to high. 
 */
td#header {
	height: 100px;
	max-height: 100px;
	padding-left: 150px;
	padding-right: 20px;
	padding-top: 0px;
	padding-bottom: 0px;
	margin: 0px;
	color: #F5E9DB;
	vertical-align: bottom;
	background-color: #751e00;
	background-image: url('headerbg.jpg');
	background-repeat: no-repeat;
}


/* The table cells containing the shadow background images */
td.shadow {
	height: 22px;
	max-height: 22px;
	background-color: #666666;
 	background-image: url('shadowHeader.jpg');
	background-repeat: repeat-x;
	background-position: bottom;
}

/* The shadow cell on the navigation bar side */
td#navShadow {
	border-right: solid 1px #000000;
}

span#headerName {
	font-size: 50px;
	font-weight: bold;
	position: relative;
	bottom: 20px;
}

/* This is my education title. Position it relative to align it with the
 * main text in the image. Also, the font is a little bit larger than the 
 * the rest.
 */
span#headerTitle {
	font-size:18px;
	margin-left: 50px;
	position: relative;
	bottom: 20px;
}

/* The cell with the navigation links has a different background image and 
 * a minimum width. For some reason we have to set the font-size again.
 */
td#navigation {
	width: 80px;
	vertical-align: top;
	padding: 10px;
	font-size: 16px;
	border-right: solid 1px #000000;
	background-color: #F5E9DB;
}

/* The active link has a different color than the other links. */
td#navigation a.active {
	color: #751e00;
}

/* All links have the following properties. */
td#navigation a {
	display: block;	
	margin-left: 5px;
	margin-right: 10px;
	color: #0000FF;
}

/* This is the style for the cells declared as a header for the row.
 * Usually this is the first cell in the row.
 */
td.rowHeader {
	font-weight: bold;
	padding-right: 10px;
}

/* The cell containing the actual page content. Everything besides the
 * fix part of the pages like the header and navigation bar. 
 */
td#content { 
	height: 100%;
	background-color: #F5E9DB;
}


 
