

/* Body 100% needed for % reference at CSS sheet. It is needed for unified padding&margin at .html */	
body {	
	height: 100%; 
	width: 100%;
	margin: 0px;
	padding: 0px;

} 
/* 	Ids for undistorted full background picture 
 	width=120% nojavascript fallback must be in the instantiation, not here, else random confusion in javascript */
img#rbBackground {
	position:fixed; /* Fixed is must to enable overflow:hidden */
	overflow:hidden; 
	z-index:1;
}

div#rbTestSizeDiv {
	width: 100%; 
	height: 100%; 
	position: fixed; 
	left: 0;
	top: 0; 
	visibility: hidden;
}

/* attachement point at golden section */
div#gold {		  
	position: absolute;
	top: 62%;
	left: 62%;
	height: 10px; 	/* size and color for debugging */
	width:10px;
	background-color: red;
	z-index: 100;
	} 


/* Attach the page from the golden section point to the screen golden section point. Then judge and adjust. */
div.smallpage {	   
	position: absolute;
    background-image:url('pics/bgpaper.gif');
	opacity: 1.0;
	z-index: 300;
	width: 670px;       /* 680px */
	height: 470px;	    /* 480px*/  
	left: -380px; 	    /* -390px-421 = .62 * width */
	top: -265px;  	    /* -277px -297 .62* height  */
	border-radius : 10px; 
	-moz-border-radius : 10px; /* Mozilla */
	-webkit-border-radius : 10px; /* Webkit */
	}
div.shadow {
	position: absolute;
    background-color:#202060;
	opacity: 0.4;
	filter: alpha(opacity = 40); /* IE :( */
	z-index: 299;
	width: 673px;       
	height: 473px;	    
	left: -381px; 	    
	top: -266px;  	
	border-radius : 10px; 
	-moz-border-radius : 10px; /* Mozilla */
	-webkit-border-radius : 10px; /* Webkit */    
}

div.smallpage-menu {	
	position:absolute;
	height: 440px;  /* 440px */
	right:0px;
	margin: 20px 15px 20px 20px  ; /* 20px */
	width:215px;
	}

div.smallpage-content {
	position: absolute;
	height: 430px;	   /* 440px 480 - margins 120 */
	width: 385px; 	   /* 391px 421 - 2x margin + padding for text*/
	margin: 20px 20px 20px 20px  ; /* 20px */
	overflow: auto;
    text-align: justify;
    padding-right: 20px; /* 20px */
	}

/*********** Fullpage for printable course descriptions */

#fullpage {	   
	position: absolute;
    background-image:url('pics/bgpaper.gif');
	width: 670px;       /* 680px */
	left: -380px; 	    /* -390px-421 = .62 * width */
	top: -265px;  	    /* -277px -297 .62* height  */
						/* for some reason, full height is not printed... and I don't know the height of the content...*/
	border-radius : 10px; 
	-moz-border-radius : 10px; /* Mozilla */
	-webkit-border-radius : 10px; /* Webkit */
	}
div.fullmenu {
	position:absolute;
	top:20px;
	right:20px;
	text-align:left;
}
#fullpage-content {
	padding: 4em 4em 4em 4em  ; 
    text-align: left;
	}
#fullpage-content h3, #fullpage-content h4  { text-align: left; }

/*************** Texts, fonts etc */

/* h2 for page headers */
p, ul, li, td {
	font-family: Verdana, Helvetica Neue,  Arial, Sans-serif;
    line-height:140%;
	font-size: 10pt;
}


h2,h3,h4 {	
	font-family: Helvetica Neue, Verdana, Arial, Sans-serif; 
	font-weight: 200;
	line-height:140%;
	text-align:center;
}
h2 {font-size:170%;}

h3.logo {
	font-size:14pt;
	margin-bottom:7px;
	margin-top:0px;
	margin-left:2em;
	text-align:left;
}
p.slogan {
	font-size:12pt;
	font-weight: bold;
	text-align: center;
}

/* no space between preceding paragraph and bullets (or should bullets be inside the pgrph)  */
p.listhdr {
	margin-bottom:0.1em; /* Needs both parties: ul & p*/
}
ul { padding-left:1.5em; margin-left:0px; margin-top:0px; }

img.rightpic {
     margin-left:10px;
     padding-top:4px;
     padding-bottom:0px;
     float:right;
     }

/* Nojustfy for all kinds of things...*/

p.nj { text-align:left; }
li.nj { text-align:left; }
a.nj { text-align:left; }

a.secret {
	font-family: Helvetica Neue,  Arial, Verdana, Sans-serif;
	text-decoration:none;
	font-size:7pt;
}
img.addrpic {
	height:1.1em;
	padding-bottom:0.03em;
}

table.tabletraining {
	text-align:left; 	 
	}
table.tabletraining td {
	padding-right:10px; 
    line-height:140%;
	font-size: 10pt;
	}
tr.tableheader {font-weight:bold;}	

