/* CSS Document */

/*****************
browsers interpret margin and padding a little differently, 
we'll remove all default padding and margins and
set them later on
******************/
* {
margin:0;
}

/*
Set initial font styles
*/
body {
   text-align: left;
   font-family: Verdana, Geneva, Arial, Helvetica, sans-serif;
   font-size: 70%;
   line-height: 1em;
}

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

/*
if img is inside "a" it would have 
borders, we don't want that
*/
img {
   border: 0;
}

/*
default link styles
*/
a,
a:link 
a:active {
   text-decoration: underline;
   background-color: inherit; 
   color: #18507C; 
}

a:visited {
   text-decoration: underline;
   background-color: inherit;
   color: #18507C;
}


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

/*****************
basic layout 
*****************/
body {
   background: #6364cd;
   background-image: url(images/bg.jpg);
   background-position: top center;
   background-repeat: no-repeat;
   color: #333;
   margin: 0px;    /* gives some air for the pagewrapper */
}

div#pagewrapper {
   margin: 0 auto;       /* this centers wrapper */
   width: 768px;   
   color: #666;
}


/*** 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 {
   height: 198px;   
   background: #00FF00;   
}

div#header h1 a {
   background: url(images/Header.jpg) no-repeat; 
   display: block;
   height: 198px;         
   text-indent: -500px;  /* this hides the text */
   text-decoration:none; /* old firefox would have shown underline for the link, this explicitly hides it */
}

 div#content {
   margin: 0px;
}

div#main {
   margin-top: 0px;
   margin-left: 11px; 
   margin-right: 10px; 
   margin-bottom: 0px;
}

div#menu { 
  
   
}

div#footer {
   clear: both;       /* keep footer below content and menu */
   color: #999;
   text-align: center;
   font-size: 11px;
   background-color: #fff;
   height: 40px;
}

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

div#footer p a {
   color: #aaa; /* needed becouse footer link would be same color as background otherwise */
}

#navlist
{
   color: #fff;
   background: url(images/menu_bg.jpg) no-repeat #ff7f00;
   margin: 0px;
   margin-bottom: 20px;
   padding: 0px;
   padding-left: 120px;
   padding-bottom: 6px;
   padding-top: 6px;
}

#navlist a, #navlist a:link, #navlist a:visited
{
   color: #fff;
   font-weight: bold;
   text-decoration: none;
   margin: 0px;
   padding: 0px 10px 0px 10px;
}

#navlist a:hover, #navlist a:active, #navlist a:focus
{
   text-decoration: none;
   background: none;
   color: #6b2e04;
}

#navlist a #active { 
   color: #6b2e04;
}

#kinder {
   border: solid 1px #999;
}

#kinder td{
   border-left: solid 1px #999;
   border-bottom: solid 1px #999;
}
/********************
CONTENT STYLING
*********************/
div#content {

}

/* HEADINGS */
div#content h1 {
   font-size: 1.5em; /* font size for h1 */
   color: #ddd;
   line-height: 1em;
   margin: 0;
}
div#content h2 {
    font-family: Times New Roman, Times, serif;
	color: #6b2e04; 
	font-size: 2.4em; 
	text-align: left; 
    line-height: 1.5em;

}
div#content h3 {
   color: #294B5F; 
   font-size: 1.3em;
   line-height: 1.3em;
   margin: 0 0 0.5em 0;
}
div#content h4 {
   color: #294B5F; 
   font-size: 1.2em;
   line-height: 1.3em;
   margin: 0 0 0.25em 0;
}
div#content h5 {
   color: #294B5F; 
   font-size: 1.1em;
   line-height: 1.3em;
   margin: 0 0 0.25em 0;
}
h6 {
   color: #294B5F; 
   font-size: 1em;
   line-height: 1.3em;
   margin: 0 0 0.25em 0;
}
/* END HEADINGS */

/* TEXT */
p {
   font-size: 1em;
   margin: 0 0 1.3em 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;
}


/* 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 */