@charset "iso-8859-1";
/* This rule resets a core set of elements so that they will appear consistent across browsers. Without this rule, content styled with an h1 tag, 
for example, would appear in different places in Firefox and Internet Explorer because each browser has a different top margin default value. 
By resetting these values to 0, the elements will initially be rendered in an identical fashion and their properties can be easily defined by the designer 
in any subsequent rule. */
h6 {
	margin: 0;
	outline: 0;
	font-size: 100%;
}
h5 {
	margin: 0;
	outline: 0;
	font-size: 100%;
}
h4 {
	margin: 0;
	outline: 0;
	font-size: 100%;
}
h3 {
	margin: 0;
	outline: 0;
	font-size: 100%;
}
h2 {
	margin: 0;
	outline: 0;
	font-size: 100%;
}
h1 {
	margin: 0;
	outline: 0;
	font-size: 100%;
}
iframe {
	margin: 0;
	outline: 0;
	font-size: 100%;
}
object {
	margin: 0;
	outline: 0;
	font-size: 100%;
}
applet {
	margin: 0;
	outline: 0;
	font-size: 100%;
}
span {
	margin: 0;
	outline: 0;
	font-size: 100%;
	color: black;
}
div {
	margin: 0;
	outline: 0;
	font-size: 100%;
}
body {
	margin: 0;
	outline: 0;
	font-size: 100%;
}
html {
	margin: 0;
	outline: 0;
	font-size: 100%;
}
/* The body is the outermost layout component and contains the visible page content. Setting properties for the body element will help to create consistent 
styling of the page content and more manageable CSS. Besides using the body element to set global properties, it is common to use the body element to set 
the background color of the page and create a centered container for the page content to display. */
body {
	font-size: small;
	color: black;
	font-family: Verdana;
	text-align: center; /* Centers the page content container in IE 5 browsers. */;
	margin-top: 20px;
	padding: 0px;
	background-color: #181818;
	background-repeat: repeat-x;
}
/* Commonly used to style page titles. */
h1 {
	font-size: 150%;
	padding: 0px;
	background-color: inherit;
	margin-bottom: 20px;
	color:black;
}
h2 {
	font-size: 130%;
	padding: 0px 0px 0px 0px;
	background-color: inherit;
	margin-bottom: 10px;
	color:black;
}
h3 {
	font-size: 110%;
	font-weight: bold;
	padding: 0px 0px 0px 0px;
	background-color: inherit;
	margin-top:20px;
	margin-bottom: 5px;
}
h4 {
	font-style: italic;
	padding: 0px 0px 0px 0px;
	background-color: inherit;
	margin-top:20px;
	margin-bottom: 5px;
}
p {
	margin: 0px 0px 10px 0px;
	text-align: justify;
	line-height: 17px;
	padding-left: 0;
	padding-right: 0;
	padding-top: 0;
}
ul {
	list-style:square;
	line-height:17px;
}

/* Sets the style for unvisited links. */
a:link {
	color: black;
	text-decoration: none;
	text-align: left;
}
a:visited {
	color:black;
	text-decoration:none;
}
a:hover {
	text-decoration:underline;
}

a.blauw:link {
	color:navy;
	text-decoration: none;
}
a.blauw:visited {
	color:navy;
	text-decoration:none;
}
a.blauw:hover {
	text-decoration:underline;
}

a.wit:link {
	color:white;
	text-decoration: none;
}
a.wit:visited {
	color:white;
	text-decoration:none;
}
a.wit:hover {
	text-decoration:underline;
}

	
/* This is a container for the page content. It is common to use the container to constrain the width of the page content and allow for browser chrome to 
avoid the need for horizontal scrolling. For fixed layouts you may specify a container width and use auto for the left and right margin to center the container 
on the page. IE 5 browser require the use of text-align: center defined by the body element to center the container. For liquid layouts you may simply set the left and 
right margins to center the container on the page. */
#outerWrapper {
	text-align: left; /* Redefines the text alignment defined by the body element. */;
	margin-left: auto;
	margin-right: auto;
	width: 966px;
}
/* Dit wordt de header. */
#outerWrapper #header {
	background-position: center;
	background-color: #000000;
	height: 138px;
	background-repeat: no-repeat;
}
/* Dit wordt de header voor het logo */
#outerWrapper #header_left {
	background-position: center;
	background-color: #000000;
	height: 138px;
	width: 138px;
	border-width: 0px;
	background-repeat: no-repeat;
	float: left;
	
}
/* Dit is de header met de pano_foto.*/
#outerWrapper #header_right {
	background-position: center;
	background-color: #000000;
	background-image: url('_beelden/Master/Banner_828x138.jpg');
	height: 138px;
	width: 828px;
	background-repeat: no-repeat;
	float: right;
}
#menuwrapper {
	height: 45px;
	background-image:url('_beelden/Master/menu_schaduw.jpg');
	background-repeat: repeat-x;
}

/* This is the container for the main content area. Add padding for additional white space if wanted.*/
#outerWrapper #contentWrapper #content {
	padding: 30px 40px 30px 40px;
	margin: 0px;
	background-color: #e7e7e7;
	font-size: 90%;
}

/* This is the footer container. The paragraph style removes white space from the top and bottom of the paragraph.*/
#outerWrapper #footer {
	background-image:url('_beelden/Master/footer_schaduw.jpg');
	background-repeat: repeat-x;
	height: 43px;
	text-align: center;
	font-size: x-small;
	color: white;
	padding: 22px 0px 5px 0px;
}
#outerWrapper #footer p {
	margin-top: 0px;
	margin-bottom: 0px;
}

/* Hierna volgen de instellingen voor de donkere achtergronden.*/
#menuwrapperdonker {
	height: 45px;
	background-image:url('_beelden/Master/menu_schaduwdonker.jpg');
	background-repeat: repeat-x;
}

#outerWrapper #contentWrapperdonker #contentdonker {
	padding: 30px 40px 30px 40px;
	margin: 0px;
	background-color: #3e3e3e;
	font-size: 90%;
}

#outerWrapper #footerdonker {
	background-image:url('_beelden/Master/footer_schaduwdonker.jpg');
	background-repeat: repeat-x;
	height: 43px;
	text-align: center;
	font-size: x-small;
	color: white;
	padding: 22px 0px 5px 0px;
}
#outerWrapper #footerdonker p {
	margin-top: 0px;
	margin-bottom: 0px;
}


/*=============images =============*/
.imglft {
	border-style: solid;
	border-color: #7f7f7f;
	border-width: 3px;
	float: left;
	margin-bottom: 10px;
}
.imgrgt {
	float: right;
	border-style: solid;
	border-color: #7f7f7f;
	border-width: 3px;
}

.imgcenter {
	border: 3px solid #7f7f7f;
	text-align: center;
	vertical-align:top;
}
.witterand {
	border: 3px solid #ffffff;
}
.grijzerand {
	border: 3px solid #7f7f7f;
}

/*=============tekst=============*/
.center {
	text-align:center;
}
.right {
	margin: 0px 0px 10px 0px;
	text-align: right;
	padding: 0 0 0 0;
}

.standaard_wit {
	margin: 0px 0px 10px 0px;
	text-align: justify;
	padding: 0 0 0 0;
	line-height: 17px;
	color:white;
}
.standaard {
	margin: 0px 0px 10px 0px;
	text-align: justify;
	padding: 0 0 0 0;
	line-height: 17px;
}

.wit {
	color:white;
}
.blauw {
	color:navy;
}

.smltxt {
	margin: 0px 0px 10px 0px;
	font-size: x-small;
}
.cursief {
	font-style: oblique;
}
.lijst
  {
	margin: 0 0 5px 0;
	padding: 0;
	list-style: square;
}
.lijst_wit {
	margin: 0 0 5px 0;
	padding: 0;
	color:white;
	list-style:square;
}
.regelafstand {
	line-height:17px;
}

/*_________________________________________________
/*Credits: Dynamic Drive CSS Library */
/*URL: http://www.dynamicdrive.com/style/ */

.gallerycontainer{
	position: relative;
	z-index: 0;
}

.thumbnail li {
	padding: 0 0 0 0;
	margin-bottom: 10px;
	margin-top: 10px;
}


/*Add a height attribute and set to largest image's height to prevent overlaying*/
.thumbnail img{
	border: 2px #7f7f7f solid;
	margin: 0 15px 15px 0;
}

.thumbnail:hover{
background-color: transparent;
}

.thumbnail span{ /*CSS for enlarged image*/
position: absolute;
background-color: #7f7f7f;
left: -1000px;
border: 5px solid #7f7f7f;
visibility: hidden;
color: black;
text-decoration: none;
text-align: center;
}

.thumbnail span img{ /*CSS for enlarged image*/
padding: 0px;
margin: 0 0 0 0;
}

.thumbnail:hover span{ /*CSS for enlarged image*/
visibility: visible;
top: 0;
left: 250px; /*position where enlarged image should offset horizontally */
z-index: 50;
}






