/* Start of CMSMS style sheet '2009 Algemeen' */
/*****************
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 {
	color: #333333;
	background: url(uploads/body_8.jpg) fixed;
	font: 12px/18px "Lucida Grande", Lucida, Verdana, sans-serif;
}

/*
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
*/

/*
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: #66CC33; 
}

a:visited {
   background-color: inherit;
  color: #66CC33;                /* a different color can be used for visited links */
}


/* remove underline on hover and change color */
a:hover {
   text-decoration: underline;
   color: green;
}

/*****************
basic layout 
*****************/
body { /* gives some air for the pagewrapper */
}

/* center wrapper, min max width */
div#pagewrapper {     /* this centers wrapper */
   max-width: 80em; /* IE wont understand these, so we will use javascript magick */
   min-width: 60em;;
   color: black;
	background-image: none;
	width: 870px;
	margin-left: auto;
	margin-right: auto;
}


/*** header ***
we will hide text and replace it with a image
we need to assign a height for it
*/

div#header {
	background-image: url(uploads/logo.jpg);
	height: 100px;
	width: 870px;
}


div#content {
	margin: 5px auto 2em 0;
	background-image: none;
	float: left;
	background-color: white;
}

/* if sidebar doesnt include menu but content add class="hascontent" */

div#footer {
   clear:both;       /* keep footer below content and menu */
   color: #fff;
	background-color: #333333;
}

div#footer p {
   font-size: 0.8em;      /* some air for footer */
   text-align: center; /* centered text */
   margin:0;
	color: white;
	padding: 5px;
}

div#footer p a {
   color: white; /* needed becouse footer link would be same color as background otherwise */
}

/* as we hid all hr for accessibility we create new hr with extra div element */
div.hr {
   height: 1px;
   margin: 1em;
	border-bottom-color: black;
}

/* relational links under content */
div.eventslist {
  float: none;
	border-bottom-width: thin;
	border-bottom-style: dashed;
	font: 10px "Lucida Grande";
	margin-top: 0.5em;
}

div.eventdesc {
  float: none;
	border-bottom-width: thin;
	background-image: none;
	font: 10px/14px "Lucida Grande";
	margin-bottom: 0.5em;
}

div.NewsSummary {
	background-image: none;
	float: left;
	border-bottom: thin dashed silver;
	padding-top: 8px;
}

div.NewsSummary a {
	background-image: none;
	float: none;
	color: #66CC33;
}

div.NewsSummary img {
	background-image: none;
	float: left;
	padding-right: 15px;
	width: 175px;
	padding-bottom: 15px;
}




/********************
CONTENT STYLING
*********************/

/* HEADINGS */
div#content h1 {
   font-size: 2em;  /* font size for h1 */
   line-height: 1em;
   margin: 0;
}
div#content h2 {
   color: #66CC33; 
   text-align: left;
/* set borders around header */
   border-bottom: 1px solid gray;
	margin-bottom: 5px;
	font: 30px "Lucida Grande", Lucida, Verdana, sans-serif;
}
div#content h3 {
   color: #66CC33;
   margin: 0 0 0.5em 0;
	font: 18px/18px "Lucida Grande", Lucida, Verdana, sans-serif;
}
h6 {
   font-size: 12px;
   line-height: 1.3em;
   margin: 0 0 0.25em 0;
}
/* END HEADINGS */

/* TEXT */
p {
   margin: 0 0 1.5em 0;
   padding: 0;
	text-align: justify;
	color: #333333;
	font: 12px/18px "Lucida Grande", Lucida, Verdana, sans-serif;
}

li {
   font-size: 1em;  /* some air around p elements */
   line-height: 1.4em;
	list-style-position: inside;
	opacity: 1;
}
blockquote {
	color: black;
	text-align: justify;
	border-left-style: none;
	font-size: 11px;
	font-style: italic;
	margin: 10px;
	background-color: #f5fee7;
}
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#dl dt {
   font-weight: bold;
   margin: 0 0 0.25em 3em;
}
div#dl dd {
}

div#proddetail {
	width: 615px;
	font-style: italic;
}
/* End of '2009 Algemeen' */

