/* Start of CMSMS style sheet 'dnjm 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 {
   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 {
}

/*
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: white; 
}

a:visited {
   background-color: inherit;
  color: white;                /* a different color can be used for visited links */
}


/* remove underline on hover and change color */
a:hover {
   text-decoration: none;
   color: white;
}

/*****************
basic layout 
*****************/
body {
   background-color: black;
   color: black; /* 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;
	margin-bottom: 0;
	margin-left: auto;
	margin-right: auto;
	background-image: none;
}


/*** header ***
we will hide text and replace it with a image
we need to assign a height for it
*/

div#header {
   height: 100px;
	background-image: url(http://www.dutchnujazz.com/cms/images/cms/logo.gif);
}


div#content {
	margin: 5px auto 2em 0;
	background-image: url(http://www.dutchnujazz.com/cms/images/cms/pixel.gif);
	float: left;
}

/* if sidebar doesnt include menu but content add class="hascontent" */

div#footer {
   clear:both;       /* keep footer below content and menu */
   color: #fff;
	background-image: url(http://www.dutchnujazz.com/cms/images/cms/pixel.gif);
}

div#footer p {
   font-size: 0.8em;
   padding: 1.5em;      /* some air for footer */
   text-align: center; /* centered text */
   margin:0;
}

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;
	color: white;
	font-size: 10px;
	border-bottom-width: thin;
	border-bottom-style: dashed;
	margin-top: 10px;
}

div.eventdesc {
  float: none;
	color: white;
	font-size: 10px;
	border-bottom-width: thin;
	background-image: none;
	margin-bottom: -5px;
}




/********************
CONTENT STYLING
*********************/

/* HEADINGS */
div#content h1 {
   font-size: 2em;  /* font size for h1 */
   line-height: 1em;
   margin: 0;
}
div#content h2 {
   color: white; 
   text-align: left;
   padding-bottom: 1px;
/* set borders around header */
   border-bottom: 1px solid white;
/* and some air under the border */
   margin: 0 0 0.5em 0;
	font: 30px/1.5em arial;
}
div#content h3 {
   color: white;
   margin: 0 0 0.5em 0;
	font: 18px/1.3em arial;
}
h6 {
   font-size: 12px;
   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;
	text-align: justify;
	color: black;
}

li {
   font-size: 1em;  /* some air around p elements */
   line-height: 1.4em;
	list-style-position: inside;
	opacity: 1;
}
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#dl dt {
   font-weight: bold;
   margin: 0 0 0.25em 3em;
}
div#dl dd {
}

div#proddetail {
	width: 615px;
	font-style: italic;
}

/* End of 'dnjm algemeen' */

