* {
margin:0;
padding:0;
}

/*
Set initial font styles
*/

body {
   background-color:#353535;
   color:white;
   text-align: left;
   font-family: Arial, Helvetica, sans-serif;
   line-height: 12px;
   font-size: 12px;
}

/*
set font size for all divs,
this overrides some body rules 
*/
div {
   font-size: 12px;
}

/*
if img is inside "a" it would have 
borders, we don't want that
*/
img {
   border: 0;
}

/*
default link styles
*/
/* set all links to have underline and bluish color */
a,
a:link 
a:active {
   text-decoration: none;
/* css validation will give a warning if color is set without background color. this will explicitly tell this element to inherit bg colour from parent element */
   background-color: inherit; 
   color: #fff; 
}

a:visited {
   text-decoration: none;
   background-color: inherit;
  color: #fff;                /* a different color can be used for visited links */
}


/* remove underline on hover and change color */
a:hover {
   text-decoration: underline;
   background-color: inherit;
   color: #fff;
}

/*****************
basic layout 
*****************/
body {
   color: #fff;
   margin:0em;    /* gives some air for the pagewrapper */
   margin-top:0px;
   padding-top:0px;
}

/* center wrapper, min max width */
div#pagewrapper {
   margin:0 auto;
   border: 0px solid black;
   max-width: 1000px; /* IE wont understand these, so we will use javascript magick */
   min-width: 1000px;
   color: white;
}

/*** header ***
we will hide text and replace it with a image
we need to assign a height for it
*/

fieldset{
  border:0px;
}
#menuwrapper{
  margin:0 auto;
padding-bottom:20px;
padding-top:20px;
 
}
#menuwrapper span{
  color:#fff;
}

#menuwrapper span a{
  text-decoration:none;
  color:#888;
  font-weight:bold;
  font-size:18px;
  letter-spacing:1px;
  padding:0px 10px;
  margin:0;
}

#menuwrapper span#first a{
  padding-left:0px;
}

#menuwrapper span.selected a{
  color:#fff
}

div#content {
   clear:both;
   margin: 0em auto 0em 0; /* some air above and under menu and content */
}
div#center {
   clear:both;
   padding: 10px 0 0 0; /* some air above and under menu and content */
   font-size:11px;
   width:1000px;
   display:block;
   float:left;
  }



/* as we hid all hr for accessibility we create new hr with extra div element */
div.hr {
   height: 1px;
   margin: 1em;
   border-bottom: 1px dotted black;
}

hr {
   height: 1px;
   margin-top: 1em;
   border-bottom: 1px solid #444;
}

/********************
CONTENT STYLING
*********************/
div#content {
	color:#fff;
}

/* HEADINGS */
div#content h1 {
   color: #fff; 
   font-size: 25px; 
   text-align: left; 
   padding-bottom: 1px;
   margin:0 0 0.5em 0;
   line-height: 18px;
}
div#content h2 {
   color:#fff;
   text-decoration:none;
   font-size: 14px; 
   text-align: left; 
/* some air around the text */
   padding-bottom: 1px;
   margin:0em 0 0.5em 0;
   line-height: 1.5em;
/* and some air under the border */
}
div#content h2#noline{
	text-decoration:none;
}
div#content h2#noline a{
	text-decoration:none;
	}

div#content h3 {
   color: #fff; 
   margin:0 0 0.5em 0;
   font-size: 14px;
   line-height: 14px;
}
div#content h4 {
   color: #fff; 
   font-size: 13px;
   margin:0 0 0.25em 0;
   line-height: 14px;
}
div#content h5 {
   font-size: 13px;
   line-height: 14px;
}
h6 {
   font-size: 1em;
   line-height: 1.3em;
   margin: 0 0 0.25em 0;
}

/* END HEADINGS */

/* TEXT */
p {
   font-size: 12px;
   margin: 0 0 1.5em 0;  /* some air around p elements */
   line-height:14px;
   padding: 0;
}
blockquote {
   border-left: 10px solid #ddd;
   margin-left: 10px;
}
pre {
   font-family: monospace;
   font-size: 1.0em;
}
strong, b {
/* explicit setting for these */
   font-weight: bold;
}
em, i {
/* explicit setting for these */
   font-style:italic;
}
/* END TEXT */

/* LISTS */
div#main ul,
div#main ol,
div#main dl {
  font-size: 1.0em;
   line-height:1.4em;
   margin: 0 0 1.5em 0;
}
div#main ul li,
div#main ol li {
   margin: 0 0 0.25em 3em;
}

div#dl dt {
   font-weight: bold;
   margin: 0 0 0.25em 3em;
}
div#dl dd {
   margin: 0 0 0 3em;
}
/* END LISTS */

#category_items{
  float:left;
  width:1000px;
}

input,textarea{
  border:1px solid #646464;
  margin:2px 5px;
  padding:1px;
  background-color:#CCC;
}

#donker ,#donker a{
	color:#999;
}

#lijstsel{
  width:400px;
  display:block;
  height:130px;

}

#lijstbutton{
  float:left;
  width:400px;
  display:block;
}

#ordering{
  color:#999999;
}
#language{
  position:absolute;
  top:10px;
  right:0px;
}
#footer{
	clear:both;	
}
