/* 
Herbers
=============
CSS-Layout 
(W) 2002 Ulf Herbers
*/

/* ----------------------------------------------------------- */
/* the basics */

html, body {
  background-color : white; 
  color : black;
  font-weight : normal;
  font-family : Verdana, Arial, Sans-Serif;
}

/* ----------------------------------------------------------- */
/* MAIN LAYOUT */

div.logo {
	margin-left: auto;
	margin-right: 0;
	margin-bottom: 20px;
	padding: 2px;
	text-align: left;
}


div.columns {
	position: relative;
}

div.main {
	border: none;
	position: absolute;
	left: 200px;
	min-width: 400px;
	padding-bottom: 30px;
	top: 1px;
	width: auto;
}

div.left {
    position: absolute;
    left:0;
    border:none;
    width: 50%;
    text-align:center;
}

div.right {
    position:absolute;
    right:0;
    border:none;
    width: 50%;
    text-align:center;
}

div.copyright {
    font-size:8pt;
    font-style:italic;
    text-align:center;
    border-top:1px solid red;
    padding-top:20px;
    margin-top:200px;
    margin-bottom:10px;
    bottom:10px;
}
    
/* ----------------------------------------------------------- */
/* MENU */

div.menu {
	width: 150px;
}

div.menu div {
	padding: 5px;
	font-size: 120%;
	line-height: 120%;

	margin-top: 5px;
	margin-bottom: 5px;
	margin-left: auto;
	margin-right: auto;
	text-align: center;
	
	border-style: solid;
	border-width: 1px;
	border-color: black;
}

div.menu :link, div.menu :visited {
	text-decoration: none;
	color: black;
}

div.menu div.normal {
	background-color: #eec;
}

div.menu div.normal:hover {
	background-color: #ffe;
}

div.menu div.selected, div.menu div.active {
	background-color: #aa7;
	color: #fff;
	font-weight: bold;
}


/* ----------------------------------------------------------- */
/* the pseudo codes */

A:link {
    text-decoration : underline;
    color : #0000FF;
    font-weight : normal;
    font-family : Verdana, Arial, Sans-Serif;
    cursor:crosshair;
}
A:link.navtext {
    text-decoration : underline;
    color : yellow;
    font-weight : normal;
    font-family : Verdana, Arial, Sans-Serif;
    cursor:crosshair;
}
A:link.big {
    text-decoration : underline;
    color : #0000FF;
    font-weight : bold;
    font-family : Verdana, Arial, Sans-Serif;
    cursor:crosshair;
}
                   
A:visited {
    text-decoration : underline;
    color : #0000FF;
    font-weight : normal;
    font-family : Verdana, Arial, Sans-Serif;
    cursor:crosshair;
}
A:visited.navtext {
    text-decoration : underline;
    color : yellow;
    font-weight : normal;
    font-family : Verdana, Arial, Sans-Serif;
    cursor:crosshair;
}                   
A:visited.big {
    text-decoration : underline;
    color : #0000FF;
    font-weight : bold;
    font-family : Verdana, Arial, Sans-Serif;
    cursor:crosshair;
}

A:active {
    text-decoration : underline;
    color : #B80000;
    font-weight : normal;
    font-family : Verdana, Arial, Sans-Serif;
    cursor:crosshair;
}
A:active.big {
    text-decoration : underline;
    color : #B80000;
    font-weight : bold;
    font-family : Verdana, Arial, Sans-Serif;
    cursor:crosshair;
}

A:hover {
    text-decoration: overline underline;
    color : #B80000;
    /* background-color : silver; */
    font-weight : normal;
    font-family : Verdana, Arial, Sans-Serif;
    cursor:crosshair;
}
A:hover.big {
    text-decoration: overline underline;
    color : #B80000;
    /* background-color : silver; */
    font-weight : bold;
    font-family : Verdana, Arial, Sans-Serif;
    cursor:crosshair;
}

/* ----------------------------------------------------------- */
/* the paragraph codes */

p.important {
    padding: 5px;
    margin: 5px;
    margin-left: 2em;
    margin-right: 2em;
    font-weight: bold;
    text-align: center;
}

span.small {
    font-size:8pt;
}

/* ----------------------------------------------------------- */
/* the other codes */                    

img {
    border-width:0;
    border-style: none;
}

/* ----------------------------------------------------------- */                    