/* Start of CMSMS style sheet 'innerlijkeruimte_layout' */
/*****************
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: Verdana, Geneva, Arial, Helvetica, sans-serif;
   font-size: 75.01%;
   line-height: 1em;
}

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

/*
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: #00baff; 
}

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


/* remove underline on hover and change color */
a:hover {
   text-decoration: none;
   /*background-color: #C3D4DF;*/
   color: #fed000; 
}

/*****************
basic layout 
*****************/
body {
   background-image: url(uploads/images/integrated/background.jpg);
   background-position: center;
   background-repeat: repeat-y;
   padding-bottom: 0px;
   padding-top: 0px;
}

/* center wrapper, min max width */
div#pagewrapper {
   border-color: #000000;
   width: 800px;
   margin-right: auto;
   margin-left: auto;     /* this centers wrapper */
   margin-bottom: 0px;
   max-width: 800px; /* IE wont understand these, so we will use javascript magick */
   min-width: 800px;
   background-color: #c0c0c0;
}


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

div#header {
   height: 150px; /* adjust according your image size */
   background-color: #000000;
}

div#searchwrapper {
  height: 50px;
  background-image: url(uploads/images/integrated/background_2.jpg);
}

div#search {
   float: right;
   width: 49%;     /* enough width for the search input box */
   text-align: right;
   /* padding: 0.6em 0 0.2em 0; */
   padding: 10px;
   margin: 0 0em;
}

div#content {
   margin: 0em auto 0em 0; /* some air above and under menu and content */
   background-color: #f0f0f0;
   padding-top: 20px;
}

div#main {
   margin-left: 20px; /* this will give room for sidebar to be on the left side, make sure this space is bigger than sidebar width */
   margin-right: 20px; /* and some air on the right */
}

div#footer {
   /* clear:both; */       /* keep footer below content and menu */
   height: 50px;
   width: 800px;
   margin-bottom: 0px;
   color: #000;
   background-image: url(uploads/images/integrated/background_3.jpg);
}

div#footer p {
   font-size: 0.8em;
   padding: 5px;      /* some air for footer */
   text-align: center; /* centered text */
   margin:0;
}

/*div#footer p a {*/
/*color: #fff;*/
/*needed because footer link would be same color as background otherwise*/
}
/********************
CONTENT STYLING
*********************/
div#content {

}

/* HEADINGS */
div#content h1 {
   font-size: 2em;  /* font size for h1 */
   line-height: 1em;
   margin: 0;
}

div#content h2 {
   color: #00baff; 
   font-size: 20px;
   line-height: 22px;
   margin-left: 12px;
   margin-right: 12px;
   margin-bottom: 25px;
   font-family: Trebuchet MS;
   text-align: center;
}
div#content h3 {
   color: #00baff; 
   font-size: 1.3em;
   line-height: 1.3em;
   margin: 0 0 0.5em 0;
   font-family: Trebuchet MS;

}
div#content h4 {
   color: #00baff; 
   font-size: 1.3em;
   line-height: 1.3em;
   margin: 0 0 0.5em 0;
   font-family: Trebuchet MS;
}
div#content h5 {
   font-size: 1.1em;
   line-height: 1.3em;
   margin: 0 0 0.25em 0;
}
h6 {
   font-size: 1em;
   line-height: 1.3em;
   margin: 0 0 0.25em 0;
}
/* END HEADINGS */

/* TEXT */
p {
   font-size: 12px;
   margin-left: 150px;
   margin-right: 150px;
   line-height: 16px;
   font-family: Trebuchet MS;
   text-align: center;
}

.pblue {
   color: #00baff;
   font-weight: bold;
   font-size: 14px;
   line-height: 18px;
}

.pbluesmall {
   color: #006da5;
   font-weight: normal;
   font-size: 12px;
   line-height: 16px;
}

.pyellow {
   color: #fed000;
   font-weight: bold;
   font-size: 14px;
   line-height: 18px;
}

.validlink1,
.validlink1 a,
.validlink1 a:hover,
.validlink1 a:active {
  color: green;
  font-weight: bold;
  padding: 10px;
  text-decoration: none;
}

.validlink2,
.validlink2 a,
.validlink2 a:hover,
.validlink2 a:active {
  color: orange;
  font-weight: bold;
  padding: 10px;
  text-decoration: none;
}

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;
}

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: 12px;
   line-height: 16px;
   margin: 0 0 1.5em 0;
   text-align: center;
   color: #006da5;
}
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 */
/* End of 'innerlijkeruimte_layout' */

