/* Start of CMSMS style sheet 'sg08' */
/*****************
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: Helvetica, Arial, Verdana, Geneva, sans-serif;
   font-size: 70%;
   background-color: #f6eccf;
   color: #656565;
   margin:0 auto 0 auto;    /* gives some air for the pagewrapper */
   padding: 0 0 0 0;
   background-image: url("uploads/images/layout/page_bg.jpg");
   background-repeat:  repeat-x;
   background-position: left top;
 width: 970px;
}
 
/*
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;
}

a#newimage:hover{
   border-bottom: 0px;
}

/*



/*****************
basic layout 
*****************/


div#pagewrapper {
   margin: 0 auto 0 auto;      
   width: 970px;  
   float: left;
}

div#pageheadline {
   border: 0px solid black;
   margin: 0 auto;       /* this centers wrapper */
   width: 70em;   /* IE wont understand these, so we will use javascript magick */
   background-color: fff;
   color: black;
   text-align: right;
}

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

/* relational links under content */
div.left49 {
  width: 49%; /* 50% for both left and right might lead to rounding error on some browser */
}

div.right49 {
  float: right;
  width: 49%;
  text-align: right;
}





/* End of 'sg08' */