/* Start of CMSMS style sheet 'Layout1' */
/*****************
browsers interpret margin and padding a little differently, 
we'll remove all default padding and margins and
set them later on
******************/
* {
margin:0;
padding:0;
}

/*
Set initial font styles
*/
body {
	text-align: left;
	font-family: Arial, Helvetica, sans-serif;
                font-size: 12px;
	line-height: 1em;
}

/*
set font size for all divs,
this overrides some body rules
*/
div {
   font-size: 1em;
   line-height: 1.6em;
}
div p{
   line-height: 1.6em;
}

/*
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 */
a,
a:link 
a:active {
       color: #666666;
       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;
}

a:visited {
	text-decoration: none;
	background-color: inherit;
}


/* remove underline on hover and change color */
a:hover {
	text-decoration: none;
}

/*****************
basic layout 
*****************/
body {
   background: #2f002f url(images/body-bg.gif) repeat-x ; 
   background-position:  970px top;
   color:#ffffff;
   margin-top:10px; /*gives some air for the pagewrapper */
}
/* center wrapper, min max width */
div#pagewrapper {
   margin: 0 auto;      /* this centers wrapper */
   width: 970px;
   background-color: #fff;
   color: #999;
 }
/*** header ***
we will hide text and replace it with an image
we need to assign a height for it
*/

div#header {
padding-top:30px;
   height: 150px; /* plaatje is maar 120. Creeert wat ruimte onder*/
   background: #ffffff;       /* kleur aanpassen JLB */
}

div#header h1 a {
/* you can set your own image here */
   background: #ffffff url(images/logo.gif) no-repeat 0 0px;  /* kleur aanpassen JLB */
   background-position: center;
   display: block; 
   height: 120px;             /* adjust according your image size */
   text-indent: -999em;  /* this hides the text */
   text-decoration:none; /* old firefox would have shown underline for the link, this explicitly hides it */
}

div#search {
   float: right;
   width: 23em;     /* enough width for the search input box */
   text-align: right;
   padding: 0.6em 0 0.2em 0;
   margin: 0 1em;
   display:none;
}

div#datum{
   text-align: center;
   margin-top:20px;
   margin-bottom:20px;
}


div#content {
}

div#mainzondersidebar {
  background: #ffffff ;
  padding-top: 30px;
  padding-left: 50px;  padding-right: 50px;
  padding-bottom: 20px; 
}

div#main {
}

div#footer {
   clear:both;       /* keep footer below content and menu */
   color: #ccc;
   background-color: #666; /* same bg color as in header  ---- kleur aanpassen JLB */
   border: 1px solid #666666;
}

div#footer p {
   font-size: 12px;
   padding-top: 2x;      /* some air for footer */
   padding-bottom: 2px;      /* some air for footer */
   text-align: center; /* centered text */
   margin:0;
}

div#footer p a {
   color: #ccc; /* needed because footer link would be same color as background otherwise */
   text-decoration: none;  /* toevoegen en HTML-blok aanpassen JLB */
}

div#footer a:hover {
    background-color: #666; /* zelfde bg color as in footer  ---- toevoegen JLB */
    color:#fff;
}

/* 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;
}

div#contacttabel{
    margin-left:50px;
}

.producten {
     float: left;
}
.producten td {
      width: 225px;
}

/********************
CONTENT STYLING
*********************/
div#content {
	color: #333333;   /* JLB */
}

/* HEADINGS */
div#content h1 {
	color: #999999;   /* JLB */
                font-size: 2em;  
                margin-bottom:20px;
}
div#content h2 {
	color: #660066;   /* JLB */
	font-size: 1.5em;
	text-align: left;
   margin: 0 0 1.0em 0;
}
div#content h3 {
	color: #660066;       /* JLB */
	font-size: 1.3em;
	line-height: 1.3em;
	margin: 0 0 0.5em 0;
}
div#content h4 {
	color: #660066;   /* JLB */
	font-size: 1.2em;
	line-height: 2em;
	margin: 0 0 0.25em 0;
}
div#content h5 {
	color: #660066;   /* JLB */
	font-size: 1em;
 }
h6 {
   font-size: 1em;
   line-height: 1.3em;
   margin: 0 0 0.25em 0;
}
/* END HEADINGS */
/* TEXT */
p {
   font-size: 1em;
   margin: 0 0 1.5em 0;  /* some air around p elements */
   line-height:1.4em;
   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;
}

/* Wrapping text in <code> tags. Makes CSS not validate */
code, pre {
 white-space: pre-wrap;       /* css-3 */
 white-space: -moz-pre-wrap;  /* Mozilla, since 1999 */
 white-space: -pre-wrap;      /* Opera 4-6 */
 white-space: -o-pre-wrap;    /* Opera 7 */
 word-wrap: break-word;       /* Internet Explorer 5.5+ */
 font-family: "Courier New", Courier, monospace;
 font-size: 1em;
}

pre {
   border: 1px solid #000;  /* black border for pre blocks */
   background-color: #ddd;
   margin: 0 1em 1em 1em;
   padding: 0.5em;
   line-height: 1.5em;
   font-size: 90%;   /* smaller font size, as these are usually not so important data */
}

/* 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;
}


.blokjesheader {
   font-weight:bold;
   color: #ffffff;
   background-color: #999999;
   border: 1px solid #660066;
   padding-left: 10px;
   padding-top: 3px;
   padding-bottom: 5px; 
}
.blokjesheader a{
   display:block;
   color: #660066;
   text-decoration: none;
}
.inblokjes{
   font-weight:bold;
   line-height:18px;
   color: #660066;
   padding-top: 10px;
   padding-left: 10px;
   padding-bottom: 0px;
   border: 1px solid #660066;
   vertical-align: top;
}
.inblokjes a{
   color: #660066;
   text-decoration: none;
}
.inblokjes a:hover{
   color: #990099;
}
/* End of 'Layout1' */

