.clTopMenu {
	position: absolute;
	width: 101px; height:100px;
	clip: rect(0px,101px,14px,0px);
	background-color: #eee;
	z-index: 31;
	visibility: hidden;
}
.clTopMenuBottom {
	position: absolute;
	width: 101px;
	height: 3px;
	clip: rect(0px,101px,3px,0px);
	top: 11px;
	layer-background-color: #cecfce;
	background-color: #cecfce;
	z-index: 2;
}
.clTopMenuText {
	position:absolute;
	width:91px;
	left:5px;
	top:15px;
	font-family:"Trebuchet MS",sans-serif;
	font-size:11px;
	background-color:#eee;
	z-index:1;
}
/* har medvetet använt icke-standard properties som stöds i IE5+ men inte i övriga webbläsare för att 
		färga scrollbars på sidan. användbarheten försämras inte i de andra webbläsararna som inte stödjer 
		det. */
body {
	background: #c0c0c0;
  scrollbar-face-color: #C0C0C0;
	scrollbar-track-color: #C0C0C0;
	scrollbar-3dlight-color: #808080;
	scrollbar-arrow-color: #000000;
	scrollbar-highlight-color: #FFFFFF;
	scrollbar-shadow-color: #C0C0C0;
	scrollbar-darkshadow-color: #808080;
}
a:link {
	color: #cc0066;
	text-decoration: none;
}
a:visited {
	color: #cc0066;
	text-decoration: none;
}
/* läsbarheten kan vara lite sådär beroende på skärm o så.. men kan man inte utläsa så är det bara att ta bort muspekaren från länken o läsa...*/
a:hover {
	color: #ff99cc;
	text-decoration: none;
}

#box {
	position: absolute;
	top: 100px;
	left: 50px;
	width: 400px;
	height: 300px;
	border: 1px dashed #000;
}

#box2 {
	margin: 10px;
	margin-top: 20px;
	width: 380px;
	height: 270px;
	font-family: "Trebuchet MS",sans-serif;
	padding-right: 10px;
	font-size: 11px;
	overflow: auto;
	/* stöds inte av alla webbläsare, men av dem som den är ämnad för. Denna property kommer i CSS3 och är därför inte standard på alla webbläsare */
	box-sizing: border-box;
	/* mozillaspecifik property for att lagerdimensionerna ska räknas korrekt. */
	-moz-box-sizing: border-box;
	/* denna sista property orsakar ytterligare ett fel i validatorn >>  Line: 0 Context : #box2 Parse error - Unrecognized : } */
	/* detta beror på att validatorn inte känner igen -moz-box-sizing och förvirras av det. #box2 är korrekt för övrigt */
}
#title {
	position: absolute;
	top: 18px;
	left: 30px;
	width: 600px;
	height: 150px;
	font-family: Georgia, serif;
	font-size: 90px;

}
h1, h2{
	font-family: Georgia, serif;
	display: inline;
}
h1 {
	font-size: 25px;
}
h2 {
	font-size: 19px;
}
p {
	margin-top: 0px;
}
img {
	border: none;
	vertical-align: top;
	
}
#imgJojje {
	position: absolute;
	top: 150px;
	left: 470px;
	border: 1px dashed #000;
	visibility: hidden; 
}