/* Start of CMSMS style sheet 'Lay out: drie kolom' */
/*****************
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%;
   
}

/*
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: #CC0000;
}

a:visited {
   text-decoration: none;
   background-color: inherit;
   color: #CC0000;                /* a different color can be used for visited links */
}


/* remove underline on hover and change color */
a:hover {
   text-decoration: underline;
   color: #000;
}

/*****************
basic layout 
*****************/
body {
   margin:1em;    /* gives some air for the pagewrapper */
background-color:#F9EA93;
}

/* center wrapper, min max width */
div#pagewrapper {
   margin: 0 auto;       /* this centers wrapper */
   width: 950px;   /* IE wont understand these, so we will use javascript magick */
   color: #000066;
   background:#FFFFFF url(images/wrapper_bg.jpg) top left repeat-y;
   
}


/*** header ***/

div#header {
   height: 140px;   
   background-image:url(images/header.jpg);
   background-position: top left;  
   background-repeat: no-repeat;
}

div#language-switch  {
  float:right;
  margin: 23px 44px 0 0;
}

/* position for the search box */
div#search {
   width: 220px;    /* enough width for the search input box */
   padding:0;
   margin: 0;
}

div#search input {
   padding:3px;
}

 div#content {
   margin: 0 10px 0 0;
   /*background: url(images/content_bg.jpg) left top no-repeat;*/

}


div#main {
   margin: 0px 245px 0 230px; 
    color:#000066;
   min-height:450px;
   line-height:1.7em;
   padding-top:40px;
}

div#mainbreed {
   margin: 0px 25px 0 230px; 
    color:#000066;
   min-height:450px;
   line-height:1.7em;
   padding-top:20px;
}

div#sidebar {
   float: left;       
   width: 200px;    
   display: inline;  /* FIX IE double margin bug */
   padding-top:40px;
   
 }

div#adres {
   font-size:10px;
   color:#000066;
   padding: 10px 2px 10px 6px;
   border:1px solid #000066;
   background-color:#D7DFFF;
   margin:20px 6px 0 6px;
}

div#right {
   float: right;        
   width: 220px;    
   display: inline;  /* FIX IE double margin bug */
   margin: 36px 0 0 0;
   
}



div#footer {
   clear:both;     
   background: url(images/footer.jpg) left bottom no-repeat;
   margin:0;
   height:26px;
}

div#footer p {
   font-size: 0.8em;
   
   text-align: center;  /* centered text */
   margin: 0;
   color:#666;
}

div#footer p a {
   color: #fff; /* 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;
   padding: 1em;
   border-bottom: 1px dotted black;
   margin: 1em;
}


/********************
CONTENT STYLING
*********************/
div#content {

}

/* HEADINGS */


div#mainbreed h1 {
   color: #000;    
   font-size: 1.7em; 
   margin: 0 0 1em 0;
 }

div#mainbreed h2 {
	color: #000000; 
	font-size: 1.8em; 
	padding-bottom: 1px;
        line-height: normal;
        margin: 0 0 0.5em 0;
        font-weight:normal;
}

div#mainbreed h3 {
   color: #000; 
   font-size: 1.2em;
   line-height: normal;
   margin: 1em 0 0.5em 0;
   
}

div#mainbreed h4 {
   color: #000; 
   font-size: 1.2em;
   line-height: normal;
   margin: 1em 0 0.25em 0;
 font-weight:normal;
}
div#content h5 {
   color: #333; 
   font-size: 1.1em;
   line-height: normal;
   margin: 1em 0 0.25em 0;
 font-weight:normal;
}

h6 {
   color: #000; 
   font-size: 1em;
   line-height: normal;
   margin: 1em 0 0.25em 0;
}

/* END HEADINGS */

/* TEXT */
#main  {
   font-size: 1em;
   margin: 0 0 1.5em 0; /* some air around p elements */
   line-height: 1.5em;
   padding: 0;
}

#main p {
   font-size: 1em;
   margin: 0 0 1.5em 0; /* some air around p elements */
   line-height: 1.5em;
   padding: 0;
}


#mainbreed  {
   font-size: 1em;
   margin: 0 0 1.5em 0; /* some air around p elements */
   line-height: 1.5em;
   padding: 0;
}

#main table td p {
   margin:0;
   line-height:1.2em;
}

#mainbreed p {
   font-size: 1em;
   margin: 0 0 1.5em 0; /* some air around p elements */
   line-height: 1.5em;
   padding: 0;
}



blockquote {
   border-left: 10px solid #ddd;
   margin-left: 10px;
}

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%;
}


/* END TEXT */

/* LISTS */
/* lists in content need some margins to look nice */
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;
}

/* definition lists topics on bold */
div#main dl dt {
   font-weight: bold;
   margin: 0 0 0 1em;
}
div#main dl dd {
   margin: 0 0 1em 1em;
}

div#main dl {
  margin-bottom: 2em;
  padding-bottom: 1em;
  border-bottom: 1px solid #c0c0c0;
}


/* END LISTS */


/* End of 'Lay out: drie kolom' */

