/* Start of CMSMS style sheet 'Basic- Content Only' */
/*****************
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%;
   color: #787F46;
}

/*
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: 0px;
}
/*
img will be centered using this class
*/
img.center {
display: block;
margin-left: auto;
margin-right: auto;
}

div#header h1 a {
/* you can set your own image here */
   background: #787F46 no-repeat;
   display: block;
   color: #787F46;
   height: 0px;             /* 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 */
}
   


/*****************
basic layout 
*****************/
body {
background-color: #000000;
   color: #787F46;
   margin:1em; /* gives some air for the pagewrapper */
}

/* center wrapper, min max width */
div#pagewrapper {
   border: 10px solid #c5c57e;
   margin: 0 auto;     /* this centers wrapper */
   max-width: 95em; /* IE wont understand these, so we will use javascript magick */
   min-width: 72em;
   background-color: #787F46;
   color: black;
}


div#footer {
   clear:both;       /* keep footer below content and menu */
   color: #787F46;
   background-color: #787F46; /* same bg color as in header */
}

div#footer p {
   font-size: 0em;
   padding: 1.5em;      /* some air for footer */
   text-align: center; /* centered text */
   margin:0;
}

div#footer p a {
   color: #faf0c2; /* needed because 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: 0px;
   margin: 0em;
  

}




/********************
CONTENT STYLING
*********************/
<--!
div#content {

}
/* HEADINGS */
div#content h1 {
   font-size: 0em;  /* font size for h1 */
   line-height: 0em;
   margin: 0;
}
div#content h2 {
   color: #9c3a3a; 
   font-size: 0em; 
   text-align: left; 
/* some air
-->
/* End of 'Basic- Content Only' */

