/* Start of CMSMS style sheet 'Layout: Top menu + 2 columns' */
/*****************
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: 12px;
}

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

/*

/*****************
basic layout 
*****************/
body {
   background-color: #fff;
   color: #000000;
   margin:0px 0 0 0px; /* gives some air for the pagewrapper */
}

/* center wrapper, min max width */
div#pagewrapper {
   border: 0px solid black;
   margin: 0 auto;     /* this centers wrapper */
   width:856px; 
   background-color: #fff;
   color: #fff;
}


/* ** header ***
we will hide text and replace it with a image
we need to assign a height for it
*/

div#header {
   height: 180px; /* adjust according your image size */
   background: #fff;           
}

div#header h1 a {
/* you can set your own image here */
   background: #fff url(uploads/images/Logo.jpg) no-repeat 0 12px; 
   display: block; 
   height: 180px;             /* adjust according your image size */
   text-indent: -999em;  /* this hides the text */
   text-decoration:none; /* old firefox would have shown underline for the link, this explicitly hides it */
}


div.breadcrumbs {
   padding: 3px 0 3px 5px; /* CSS short hand rule first value is top then right, bottom and left */
   font-size: 9px;             /* its good to set fontsizes to be relative, this way viewer can change his/her fontsize */
   margin: 0px 0 0 0;              /* css shorthand rule will be opened to be "0 1em 0 1em" */
   border-bottom: 0px dotted #fff;
   border-top: 1px dotted #fff;
   background: #0060A0;
   color: #fff;
 
}

div.breadcrumbs a 
{ 
 font-size: 9px;    
   font-weight:normal; 
  text-decoration: underline;
  color: #fff;
 }

 div.breadcrumbs span.lastitem { 
   font-weight:bold; 
  color: #fff;
  }


div#content {
   margin: 0px auto 0 0; /* some air above and under menu and content */
  background: #fff;
  color: #fff;
}

div#main {
   padding: 20px 40px 20px 40px; /* this will give room for sidebar to be on the left side, make sure this space is bigger than sidebar width */
  min-height: 200px;
   background: #0060A0 url(uploads/images/hg.jpg) repeat 0 0;
}

/*default link styles: set all links to have underline and bluish color */
div#main a,
a:link, 
a:active {
   text-align: left;
   font-family: Verdana, Geneva, Arial, Helvetica, sans-serif;
   font-size: 12px;
   line-height: 12px;
   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 */
   color: #fff; 
}

div#main a:visited {
   text-decoration: none;
   color: #fff;                /* a different color can be used for visited links */
}


/* remove underline on hover and change color */
div#main a:hover {
   text-decoration: underline;
   color: #fff;
}

div#spruch {
   font-weight:normal; 
   background: #0060A0;
   padding: 0;
    background:#0060A0;
    margin: 0;
}

div#spruch p {
   font-size: 10px;
   margin: 0;
   line-height:15px;
  padding: 7px 40px 7px 40px;
}

div#footer {
   clear:both;       /* keep footer below content and menu */
   color: #fff;
 height: 70px;   
   background: #fff url(uploads/images/footer.jpg) no-repeat 0 0;
   margin:3px 0 0 0px;
}

div#footer table {
   font-size: 10px;
   padding-top: 15px ;      /* some air for footer */
   text-align: left;
   margin: 0 0 0 405px;
}
 div#footer a,
 div#footera:link, 
 div#footera:active
{
    font-size: 10px;
     color: #fff;
}

/* as we hid all hr for accessibility we create new hr with extra div element */
div.hr {
   height: 1px;
   margin: 1em;
   border-bottom: 1px dotted black;
}



/********************
CONTENT STYLING
*********************/

/* HEADINGS */
div#content h1 {
   font-size: 2em;  /* font size for h1 */
   line-height: 1em;
   margin: 0;
}
div#main h2 {
   color: #fff; 
   font-size: 18px; 
   text-align: left; 
   font-style:italic;
   font-weight:normal; 
   letter-spacing: 3px;
/* some air around the text */
   padding-bottom: 1px;
/* set borders around header */
   border-bottom: 0px solid #e7ab0b; 
   border-left: 0px solid #fff; 
   line-height: 22px;
/* and some air under the border */
   margin: 0 0 10px 0;
}
div#main h3 {
   color: #6ECFF6; 
   font-size: 15px;
   line-height: 20px;
   margin: 0 0 20px 0;
 font-weight:normal; 
 font-style:italic;
}
div#content h4 {
   color: #294B5F; 
   font-size: 1.2em;
   line-height: 1.3em;
   margin: 0 0 0.25em 0;
}
div#content h5 {
   font-size: 1.1em;
   line-height: 1.3em;
   margin: 0 0 0.25em 0;
}
h6 {
   font-size: 1em;
   line-height: 1.3em;
   margin: 0 0 0.25em 0;
}
/* END HEADINGS */

/* TEXT */
p {
   font-size: 12px;
   margin: 0 ;  /* some air around p elements */
   line-height:20px;
   padding-bottom: 0px;
}
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 */
 word-wrap: break-word;       /* Internet Explorer 5.5+ */
 font-family: "Verdana","Courier New", Courier, monospace;
 font-size: 1em;
}



/* END TEXT */

/* LISTS */
div#main ul, 
div#main ol,
div#main dl {
  font-size: 12px;
   line-height:20px;
   margin: 15px 0 0 0;
   list-style-image: url(uploads/images/listenelement.png);
}
div#main ul li,
div#main ol li {
   margin: 0 0 10px 40px;
}


div#main ul ul
{
  font-size: 11px;
   line-height:10px;
   margin: 10px 0 0 0;
  list-style-image: none;
   list-style-type: disc;

}

div#dl dt {
   font-weight: bold;
   margin: 0 0 0.25em 3em;
}
div#dl dd {
   margin: 0 0 0 3em;
}
/* END LISTS */
/* End of 'Layout: Top menu + 2 columns' */

