
 /* Excuse me for css looking a bit messy at times */
 /* It all works out in the end for Firefox, IE, Opera, Safari and others */


/* color scheme red, light grey, lighter grey, white, charcoal:
ce0000, c6cfd6, e7e7ef, ffffff, 003031 
see http://www.colorcombos.com/color-scheme-143.html */


 /* General things
-----------------------------------------------------------*/
* {	margin: 0px;
	padding: 0px;
	}

body {  background: #fff;
  /*background-image: url(http://xray.bmc.uu.se/~michiel/images/t03.jpg);*/
  color: #474747;
  text-align: center; 
  font-size: 90%;
/*  font-family:"Trebuchet MS",arial,sans-serif;
  font-family: "Garamond", "Arial";*/
  font-family: "Lucida Sans Unicode";
/*  letter-spacing: 1px;*/
  border: 0px solid; 
  }
/* html>body { font-size: 14px; } /* for modern browsers that can resize px */

a:link {color:#474747;}
a:visited {color: #474747;}
a:hover {color: #808080;}
a:active {color:#8c8c8c;}


/*The blocks: banner,center and right
-----------------------------------------------------------*/
#main {
  width: 970px;
  position: relative;
  margin-left: auto;
  margin-right: auto;
  margin-top: 10px;
        }

#banner {
  float: left;
  top: 0px;
  font-size: small;
  background-image: url(http://xray.bmc.uu.se/~michiel/images/DSCF7215banner970x350px.jpg);
  background-repeat: no-repeat;
  background-color: #fff;
  width: 970px;
  /* this is an IE bugfix, see also http://glish.com/css/7.asp */
  voice-family: "\"}\"";
  voice-family: inherit;
  height:350px;
  border-radius:10px;
  -moz-border-radius:10px;
  -webkit-border-radius: 10px;
  -khtml-border-radius: 10px;

	}
  html>body #banner {
	height:350px;
	}


#bannerbox {
  position: relative;
  width: 970px;
}

#menucontent {
  width:970px;
  position:relative;
  float:left;
  background:transparent;
  margin-top:10px;
  margin-bottom:20px;
  padding-top:10px;
  padding-bottom:0px;
  border-bottom: 1px solid #474747;
  border-top: 1px solid #474747;
}

#menubox {
  height:30px;
}


#centercontent {
  background: #fff;
  top: 0px;
  padding: 0px 0px 0px 0px; /* top right bottom left*/
  position: relative;
  float: left;
 /* this is an IE bugfix see also http://glish.com/css/7.asp */
  voice-family: "\"}\"";
  voice-family: inherit;
  width: 680px;
  border: 0px solid;
 }
  html>body #centercontent {
  width: 680px;
}

#centerbox {
  width:600px;
  margin: 5px 40px; /* top+bottom right+left*/
  padding: 1px 15px; /* top+bottom right+left*/
  float:left;
  text-align: left;
}

#rightcontent {
  width:250px;
  float: left;
  font-size: small;
  border: 0px solid; 
  background: #fff;
}

#rightbox {
  width: 240px;
  position:relative;
  float:left;
  /*normal 12px/20px*/
  text-align: left;
  padding: 4px;
}


/*Main Menu  bar
-----------------------------------------------------------*/

#navcontainer {
  position: relative;
  float: left;
  top: 0px;
  width: 970px;
  height: 30px;
  padding: 0px;
}

/* the following "expanding menu" is adapted from 
http://solardreamstudios.com/learn/css/cssmenus/  
who, in their turn, got it from 
http://www.alistapart.com/articles/dropdowns/ 
it requires the javascript bugfix for making it work in IE in file dhtml.js */

/* Root = Horizontal, Secondary = Vertical */
ul#navmenu {
  margin-left: auto;
  margin-right: auto;
  border: 0 none;
  padding: 0;
  width: 900px; /* should be 500px For KHTML*/
  list-style: none;
  height: 20px;
}

ul#navmenu li {
  margin: 0;
  width: 200px;
  float: left;
  display: inline;
  list-style: none;
  position: relative;
  height: 24px;
}

ul#navmenu ul {
  margin: 0;
  padding: 0;
  width: 300px;
  list-style: none;
  display: none;
  position: absolute;
  top: 24px;
  left: 0;
}

ul#navmenu ul:after /*From IE 7 lack of compliance*/{
  clear: both;
  display: block;
  font: 1px/0px serif;
  content: ".";
  height: 0;
  visibility: hidden;
}

ul#navmenu ul li {
  width: 200px;
  float: left; /*For IE 7 lack of compliance*/
  display: block !important;
  display: inline; /*For IE*/
}

/* Root Menu */
ul#navmenu a {
  border: 0px solid #fff; /*FFF;*/
  border-right-color: #c6cfd6; /*CCC;*/
  border-bottom-color: #c6cfd6; /*CCC;*/
  padding: 0px;
  float: none !important; /*For Opera*/
  float: left; /*For IE*/
  display: block;
  background: transparent;
  color: #003031;
  font: 14px Comic Sans MS, sans-serif;
  text-decoration: none;
  height: auto !important;
  height: 1%; /*For IE*/
  width: 200px; /* this is to fit to my web layout */
  border-radius: 5px;  
  -moz-border-radius:5px;
  -webkit-border-radius: 5px;
  -khtml-border-radius: 5px;
}

/* Root Menu Hover Persistence */
ul#navmenu a:hover,
ul#navmenu li:hover a,
ul#navmenu li.iehover a {
  background: #fff;
  color: #cc0000;
}

/* 2nd Menu */
ul#navmenu li:hover li a,
ul#navmenu li.iehover li a {
  float: none;
  background: #EEE;
  color: #003031;
width: 100%; /* sub menus may be as long as possible */
}

/* 2nd Menu Hover Persistence */
ul#navmenu li:hover li a:hover,
ul#navmenu li:hover li:hover a,
ul#navmenu li.iehover li a:hover,
ul#navmenu li.iehover li.iehover a {
  background: #CCC;
  color: #FFF;
width: 100%;
}

/* 3rd Menu */
ul#navmenu li:hover li:hover li a,
ul#navmenu li.iehover li.iehover li a {
  background: #EEE;
  color: #003031;
}

/* 3rd Menu Hover Persistence */
ul#navmenu li:hover li:hover li a:hover,
ul#navmenu li:hover li:hover li:hover a,
ul#navmenu li.iehover li.iehover li a:hover,
ul#navmenu li.iehover li.iehover li.iehover a {
  background: #CCC;
  color: #FFF;
}

/* 4th Menu */
ul#navmenu li:hover li:hover li:hover li a,
ul#navmenu li.iehover li.iehover li.iehover li a {
  background: #EEE;
  color: #003031;
}

/* 4th Menu Hover */
ul#navmenu li:hover li:hover li:hover li a:hover,
ul#navmenu li.iehover li.iehover li.iehover li a:hover {
  background: #CCC;
  color: #FFF;
}

ul#navmenu ul ul,
ul#navmenu ul ul ul {
  display: none;
  position: absolute;
  top 0;
  left: 160px;
}

/* Do Not Move - Must Come Before display:block for Gecko */
ul#navmenu li:hover ul ul,
ul#navmenu li:hover ul ul ul,
ul#navmenu li.iehover ul ul,
ul#navmenu li.iehover ul ul ul {
  display: none;
}

ul#navmenu li:hover ul,
ul#navmenu ul li:hover ul,
ul#navmenu ul ul li:hover ul,
ul#navmenu li.iehover ul,
ul#navmenu ul li.iehover ul,
ul#navmenu ul ul li.iehover ul {
  display: block;
}


/*images (Safari and Konqueror having problems here)
-----------------------------------------------------------*/
img {
  border:0px solid;
  background-color:#fff;
  background:#fff;
  }

/*#rightbox img {
  margin: 0px;
  float: left;
  }*/

/* img definitions are not inherited to the id('#')-contents, therefore for each body and most image sizes there is a 'copied' definition*/
/* img.bigsize occurs only in 'centercontent'*/

#centercontent img.bigsize {
  width:600px; 
  height: auto;
  /* this *should* give IE the min-width of image, but do we care about IE?*/
  width:expression(document.body.clientWidth < 420? "420px": "auto" );

  /* rounded corners for modern browsers only. The rest has to do with squares... */
  border-radius:8px;
  -moz-border-radius:8px;
  -webkit-border-radius: 8px;
  -khtml-border-radius: 8px;
  }

#centercontent img.thumbsize {
  margin: 20px;
  height: 200px;
  width:auto;
  /* another hack based on an IE bug to make IE use correct width: IE doesn't read min-width, but knows width. It also (incorrectly) extends box size if content is too big, instead of keeping the width. http://wellstyled.com/css-underscore-hack.html */
  height: expression(document.body.clientWidth > 200? "200px": "auto" );
  float: left;
  /* rounded corners for modern browsers only. The rest has to do with squares... */
  border-radius:5px;
  -moz-border-radius:5px;
  -webkit-border-radius: 5px;
  -khtml-border-radius: 5px;
}

#rightcontent img.thumbsize {
  border:0px solid #003031;
  margin:0px;
  width: 220px;
  height:auto;
  /* another hack based on an IE bug to make IE use correct width: IE doesn't read min-width, but knows width. It also (incorrectly) extends box size if content is too big, instead of keeping the width. http://wellstyled.com/css-underscore-hack.html */
  width: expression(document.body.clientWidth > 200? "200px": "auto" );
  float: left;
  /* rounded corners for modern browsers only. The rest has to do with squares... */
  border-radius:5px;
  -moz-border-radius:5px;
  -webkit-border-radius: 5px;
  -khtml-border-radius: 5px;
}


/* text and lines
-----------------------------------------------------------*/
p {
  font-size:medium;
  display: block;
 /* width:670px;*/
  margin:0px 20px 0px 20px; /* top right bottom left*/
  padding:0px 10px 10px 10px; /* top right bottom left*/

}

hr	{
	width: 99%; 
	height: 2px;
	float: left;
	}
h1 {
  font-size:125%;
  display: block;
  color: #cc0000; /*sign orange #CE0000; #8B5A00;*/
	}
		
h2 {
	color: #cc0000; /*sign orange #CE0000; orange #ffa500;*/
	font: "Trebuchet MS";
	letter-spacing:-1px;
	font-size: 24pt; 
	}

h3 {
	height:30px; 
	font-size: 10pt; 
	color: #cc0000; /*sign orange #CE0000; orange #ffa500;*/
	margin-top:15px;
	padding-top: 10px;
	margin-bottom: 0px;
	}
h4 {
	height:100%; 
	font-size: 10pt; 
	font: "Trebuchet MS";
	padding-top: 2px;
	font-weight: 400;
	}

h6 {
      	font-size: x-small; 
	font-style: italic;
	font-weight: 400;
}

li {
	font-size:12px;
	}
span
{
float:left;
width:0.7em;
font-size:550%;
font-family:"Trebuchet MS",arial,sans-serif;
line-height:80%;
}


#shadowtext {
 font-family:Verdana,Sans-Serif;
font-family:"Trebuchet MS",arial,sans-serif;
 margin: 50px 150px 150px 550px; /* top right bottom left*/
 font-size: 40px;
 display: block;
 height: 10px;
 color: #003031; /* shadow color */
 background-color: transparent;
 white-space: nowrap; /* wrapping breaks the effect */
}

#shadowtext:before,
#shadowtext:after {
 content: "Michiel van Lun"; /* generated text */
 display: block;
}

#shadowtext:before {
 margin-bottom: -31px;
 margin-left: -1px;
 color: #9cc8fe; /*kind of blue #3993ff shadow color */  
 background: transparent;
}

#shadowtext:after {
 margin-top: -33px;
 margin-left: -1px;
 color: #ce0000; /* #cc6600;  #ce0000;  text color */
 background: transparent; 
}

