/* transparency examples
filter: alpha(opacity=50); // IE syntax
-moz-opacity: .50; // Mozilla
opacity: .50; // De rest 
*/

html {
	overflow: hidden;
}

body {
	font-family: Helvetica, Verdana, Arial, sans-serif; 
	background: #080602; 
	font-size: 12px;
	margin: 0;
	padding: 0;
 	color: #191208;
	overflow: hidden;
}

/* Basics & Typo */
table {
	margin-top: -10px;
	margin-bottom: 10px;
}

p {
	margin: 0px 10px 12px 0px;
	line-height: 2em;
}

a { color: #336699; text-decoration: none; }
a:hover { color: #003f6d; }

img { 
	border: none;
	margin: 0px;
	padding: 0px;
}

h2 { 
	font-weight: bolder;
	font-size: 1em;	
	margin: 16px 0px 0px 0px;
	line-height: inherit;
	color: #844b5a;
}

h10 { color: white; font-weight: bold; } /* for testing */

ul {  
	margin-top: -10px;  
	margin-bottom: 10px;  
	marker-offset: 100px;
}
li { 
	line-height: 2em; 
	margin: 0px 0px 0px -20px; 
	text-indent: 10px;
	list-style-type: square;
}


/* FORMS */
input, textarea {
	border: 1px solid #e9e2c7;
}

input:focus, textarea:focus {
	border: 1px solid #a6a6a6;
}

textarea {
	height: 200px;
}

/* LAYOUT */
#realbody { /* Venster-hoogte afhankelijke box */
	background: #080602 url(images/bg.gif) repeat-x;
	overflow: hidden;
	margin-top: 0px;	
	color: inherit;
	visibility: hidden;
}

#backgroundbox { /*Venster-breedte afhankelijke box */
	height: 735px;
	overflow: hidden;
	background: transparent;
	margin: 0px 0px 0px 10px;
}

#contentbox { /* this box contains the 3 boxes with content */	
	margin-top: 5px;
	margin-left: 110px;
	clear: both;
}

#background {
	position: relative;
	background: url(images/bgetiket.gif) left top no-repeat; 
	width: 1172px;
	height: 580px;
}

#content0, #content1, #content2 {
	margin: 0px;
	height: 260px;
	overflow: hidden;
	float: left;
	margin-top: 190px;
}

#content0 { /*left*/
	width: 185px;
	height: 250px;
	margin-left: 80px;
}

#content1 { /*middle*/
	width: 425px;
	overflow-y: auto;
	margin-left: 30px;
}

#content2 { /*right*/
	width: 260px;
	margin-left: 25px;
	overflow: hidden;
	background-image: none;
}

#mainmenubox {
	margin: 5px 0px 0px 180px;
	width: 910px;
	overflow: hidden;
 	background-color: transparent;
}

#logo {
	width: 215px;
	float:left;
}

#mainmenu {
	margin-top: 45px; 
	background-color: transparent;
	height: 20px;
}

#mainmenu img {
	float:left;
	margin-right: 10px;
}

#notice { /* temp JS debug content*/
	position: absolute;
	top: 100px;
	left: 100px;
	min-height: 100px;
	min-width: 100px;
	font-size: smaller;
	background-color: white;
	border: 1px dotted #080602;
	z-index: 4;
	visibility: hidden;
}

#errormsg { /* used in contact.php */
        visibility: visible;
        color: red;
        font-size: smaller;
}

