@charset "utf-8";

/*
Kleuren nieuwe situatie:
  - #000 - zwart: achter de site
  - #222 - achtergrond diverse frames
  - #444 - menu-links knoppen
  - #999 - menu-links knoppen tekstkleur
  - #888 - menu-links knoppen muis-over
  - #fff - menu-links tekstkleur muis-over
  - #ccc - midden tekstkleur
  - #404040 - lichtgrijs: achtergrond filmstrook
  - #a6281b - roodbruin: niet-bezochte links (in filmstrook)
*/

body {
	background: #000;  /* kleur 'achter' de site - zwart */
	margin: 0;            /* dikte rand rond hele site */
	padding: 0;           /* ruimte tussen element en rand of marge */
	color: #222;       /* tekstkleur */
	font-family: Tahoma, Geneva, sans-serif; /* lettertype(s) */
	font-size: 110%;      /* relatieve grootte lettertype */
	line-height: 1.2;     /* relatieve regelafstand */
}

.container {
	width: 1200px;
	height: 850px;
	background: #222;    /* achtergrondkleur */
	margin: 0 auto;         /* boven/onder geen ruimte, links-recht auto (stelt site in midden)*/
	border-width:thick; border:double; border-color: #888 /* rand om site */
}

.header { 
	width: 100%;
	height: 175px;
	padding: 0px;   /* buitenruimte: boven rechts links onder */
    marging: 0px;   /* binnenruimte: boven rechts links onder */
}

.menu-left {
	float: left;           /* uitlijning van de frame t.o. volgende frame */
	width: 10%;
	height: 650px;
	font-size: 130%;
	line-height: 1.5;
	background: #222;
	padding: 0px;          /* marge binnenzijde */
}

.content {
	float: left;           /* uitlijning van de frame t.o. volgende frame */
	width: 90%;            /* frame 1080 px */
	height: 650px;
	padding: 0px;
}

.footer {
	width: 100%;
	height: 25px;
    scrolling="no";
	frameborder="no"
	padding: 2px;
	background: #222;
	position: relative;
	clear: both; 
}

/* -------------------------------------------------------*/
/* Alle lijsten */

ul, ol, dl { 
	padding: 0px 2px 0px 3px; /* ruimte binnen keuzeblok */
	margin: 0; /* ruimte buiten keuzeblok */
}

/* -------------------------------------------------------*/

/* Menulinks */

ul.nav-l {
	list-style: none; 
	border-top: 3px double; #444 /* ruimte boven menublok */
	margin-bottom: 5px;          /* ruimte onder menublok */
	line-height: 0.8;            /* relatieve regelafstand */
	font-size: 90%;              /* relatieve grootte lettertype */
}

ul.nav-l li {
	border-top: 2px solid #888;
	padding-bottom: 3px;
}
	 
ul.nav-l a, ul.nav-l a:visited {
    /* eigenschappen bij niet-aangeklikte link */
	padding: 6px 6px 6px 15px;
	display: block; 
	text-decoration: none;
	background: #444;
	color: #999;
}

ul.nav-l a:hover, ul.nav-l a:active, ul.nav-l a:focus {
    /* wijzigende eigenschappen bij aanklikken link */
	background: #888;
	color: #FFF;
}


/* -------------------------------------------------------*/
/* Submenu rechts */

ul.nav {
	list-style: none; 
/*	border-top: 5px solid #72a9c5; /* ruimte boven menublok */
	border-top: 3px double; #444 /* ruimte boven menublok */
	margin-bottom: 5px;            /* ruimte onder menublok */
	line-height: 0.8;              /* relatieve regelafstand */
	font-size: 80%;                /* relatieve grootte lettertype */
}

ul.nav li {
/*	border-bottom: 1px solid #72a9c5; */
	border-top: 2px solid #888;
	padding-bottom: 3px;
}
	 
ul.nav a, ul.nav a:visited {
    /* eigenschappen bij niet-aangeklikte link */
	padding: 6px 6px 6px 15px;
	display: block; 
	text-decoration: none;
	background: #444;
	color: #999;
}

ul.nav a:hover, ul.nav a:active, ul.nav a:focus {
    /* wijzigende eigenschappen bij aanklikken link */
	background: #888;
	color: #FFF;
}

/* -------------------------------------------------------*/
/* Submenu rechts - grote keuzevlakken*/

ul.nav2 {
	list-style: none; 
/*	border-top: 5px solid #72a9c5; /* ruimte boven menublok */
	border-top: 3px double; #444 /* ruimte boven menublok */
	margin-bottom: 5px;            /* ruimte onder menublok */
	line-height: 0.8;              /* relatieve regelafstand */
	font-size: 160%;                /* relatieve grootte lettertype */
}

ul.nav2 li {
/*	border-bottom: 1px solid #72a9c5; */
	border-top: 2px solid #888;
	padding-bottom: 3px;
}
	 
ul.nav2 a, ul.nav a:visited {
    /* eigenschappen bij niet-aangeklikte link */
	padding: 6px 6px 6px 15px;
	display: block; 
	text-decoration: none;
	background: #444;
	color: #999;
}

ul.nav2 a:hover, ul.nav a:active, ul.nav a:focus {
    /* wijzigende eigenschappen bij aanklikken link */
	background: #888;
	color: #FFF;
}


/* -------------------------------------------------------*/

h1, h2, h3, h4, h5, h6 {
	margin-top: 0;	 
	padding-right: 15px;
	padding-left: 15px; 
    margin-left: 190px; margin-right: 10px;
}

p {
	margin-top: 0;	 
	padding-right: 15px;
	padding-left: 15px; 
    margin-left: 165px; margin-right: 175px;
}

a:link {
	color: #a6281b;               /* randkleur - roodbruin-2 (lichter) */
	/* text-decoration: underline; */ 
}

a:visited {                       /* link die bezocht is    */
	color: #6b2921;               /* randkleur - roodbruin  */
	/*text-decoration: underline;    tekst onderstrepen     */
}

a:hover, a:active, a:focus { 
	color: #FFF;               /* randkleur - wit */
	text-decoration: none;
}

.content ul, .content ol { 
	padding: 0px 0px 0px 0px; 
}

.midden {
	width: 100%;
	height: 100%;
	background: #222;
	color: #ccc;
	padding: 0px 0;
	float: left; 
	alignment-adjust:middle;
}

.zijkanten {
	background: #222;
	padding: 0px;
	width: 100%;
	height: 100%;
	text-align: left;
}

.rechtsfilm {
	background-color: #404040;    /*  achtergrondkleur filmstrookrood */
	background-image:url(/../img/filmstrook-gr.png);
	background-repeat:repeat-y;
    background-position: center;
	padding: 0px;
}

