/* Start of CMSMS style sheet 'stall left sidebar +1 c' */
/*****************
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;
}
div.hr {
	   padding: 12px ; /* CSS short hand rule first value is top then right, bottom and left */
   font-size: 90%;        
   margin: 5px;        /* css shorthand rule will be opened to be "0 1em 0 1em" */
   border-top: 1px solid #268704;
   background-image: url(images/cms/trak.gif);
   background-repeat: repeat-x;
   background-color: #C9E1C0;
}

.titel {
	font-size: 16px;
	background-color: #268704;
	padding-top: 3px;
	padding-right: 10px;
	padding-bottom: 3px;
	padding-left: 10px;
	border-top-width: 1px;
	border-right-width: 1px;
	border-bottom-width: 1px;
	border-left-width: 1px;
	border-bottom-style: solid;
	border-top-color: #009900;
	border-right-color: #009900;
	border-bottom-color: #009900;
	border-left-color: #009900;
	font-weight: bold;
	font-style: italic;
	text-transform: uppercase;
	color: #CCCCCC;
	font-family: Geneva, Arial, Helvetica, sans-serif;
}


/* Sets the style for unvisited links. */
a,  a:link {
  color: #3c982d;
  font-weight: bold;
  text-decoration: none;
}
/* Sets the style for visited links. */
a:visited {
  color: #2d7336;
  font-weight: bold;
  text-decoration: none;
}
/* Sets the style for links on mouseover. */
a:hover {
  color: #09760d;
  text-decoration: underline;
}
/* Sets the style for a link that has focus. */
a:focus {
  color: #09760d;
}
/* Sets the style for a link that is being activated/clicked. */
a:active {
  color: #164619;
}

/*****************
basic layout 
*****************/
body {
   background-color: #BCC6B8;
   color: #333;
   margin:1em;    /* gives some air for the pagewrapper */
}

	
/* center wrapper, min max width */
div#pagewrapper {
   border: 1px solid black;
   margin: 0 auto;       /* this centers wrapper */
   width: 940px;   /* IE wont understand these, so we will use javascript magick */
   background-color: #EAF4E6;;
   color: black;
}


/*** header ***
we will hide text and replace it with a image
we need to assign a height for it so that the image wont cut off
*/
div#header {

	background-image: url(images/cms/logo940.jpg);
	background-repeat: no-repeat;	
	height: 200px;
	 background-color: #fff; 
}


div.breadcrumbs {
   padding: 12px ; /* CSS short hand rule first value is top then right, bottom and left */
   font-size: 90%;        
   margin: 5px;        /* css shorthand rule will be opened to be "0 1em 0 1em" */
   border-bottom: 1px solid #268704;
   background-image: url(images/cms/trak.jpg);
   background-repeat: repeat-x;
background-color: #C9E1C0
}



 div#content {
   margin: 1.5em auto 2em 0;   /* some air above and under menu and content */
   padding: 0 0 0 0; 
   min-height: 400px;
}


div#main {
    margin-left: 19%; 
    margin-right: 20%; /* and some air on the right */
    background-color: #fff;
	padding: 10px; 

}

div#sidebar {
background-color: #93C482;   
float: left;        /* set sidebar on the left side. Change to right to float it right instead. */
   height: 100%;

   width: 160px;     /* sidebar width, if you change this please also change #main margins */
   padding-left:1px;   
   display: inline;  /* FIX IE double margin bug */
   margin-left: 3;
}
div#sidebarr {
 	border: solid 1px #8ab573; 
	float: right; 
	width: 160px;
	background-color: #fff;
	padding-right: 1px;

}

div#footer {
   clear: both;       /* keep footer below content and menu */
   height: 100px;   
   color: #fff;
   margin: 0 auto;       /* this centers wrapper */
   width: 940px;
   background-color: #268704;
	border-top-width: 1px;
	border-top-style: solid;
	border-top-color: #009966;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #333;

}
.clearFloat {
  clear: both;
  display: block;
}

div#footer p {
   font-size: 10px;
   padding:1.5em;       /* some air for footer */
   text-align: center;  /* centered text */
   margin: 0;
}

div#footer p a {
   color: #fff; /* needed becouse footer link would be same color as background otherwise */
}







/********************
CONTENT STYLING
*********************/
div#content {

}

/* HEADINGS */
div#content h1 {
  color: #336633;
  font-size: 1.6em; 
   line-height: 1.6em;
   margin: 0 0 1em 0;
}
div#content h2 {
  color: #336600;
  font-size: 1.4em; 
line-height: 1.5em;
	text-align: left; 
/* some air around the text */
	padding-left: 0.5em;
	padding-bottom: 1px;
   margin: 0 0 1em 0;
}
div#content h3 {
  color: #336600;
 font-size: 1.3em;
line-height: 1.4em;
   line-height: 1.3em;
   margin: 0 0 1em 0;
	border-top-width: 1px;
	border-top-style: solid;
	border-top-color: #268704;
	
	padding-top: 5px;

	

}
div#content h4 {
   color: #336600;
 font-size: 1.2em;
   line-height: 1.3em;
   margin: 0 0 1em 0;
}
div#content h5 {
  color: #6d9863;
  font-size: 1.1em;
   line-height: 1.3em;
   margin: 0 0 1em 0;
}
h6 {
  	color: #666;
	 font-size: 1em;
   line-height: 1.3em;
   margin: 0 0 0.25em 0;
	padding-bottom: 5px;
	text-align: center;
	font-style: italic;
	border-bottom-width: 1px;
	border-bottom-style: dotted;
	border-bottom-color: #666;
	margin-bottom: 20px;

}
/* 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;
}
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%;


}
fieldset div div {
	margin-top:0.5em;
	margin-left:1em
}
fieldset {
	margin-bottom:1em;
	border:1px solid #336600;
	padding:0.5em;
	font-size: 14px;
	font-style: italic;
	background-color: #C9E1C0;
}
fieldset label {
	width:auto;
}
legend {
	color:#FFF;
	background:#93C482;
	font-style:italic;
	font-size:1.2em;
	margin-bottom:0.5em;
	padding:0.2em;
	width:auto;
	border:1px solid #CCC
}

/* Separating the divs on the template explanation page, with some bottom-border */
div.templatecode {
  margin: 0 0 2.5em;
}

/* Tabellen */


/* 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 'stall left sidebar +1 c' */

