/* Start of CMSMS style sheet 'abigal : abigal - main' */
/*****************
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: "Times New Roman", Arial, Verdana, Geneva, Helvetica, sans-serif;
   line-height: 1.5em;
}

/*
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;
}

/*
default link styles
*/
/* set all links to have underline and bluish color */
a,
a:link 
a:active {
   text-decoration: underline;
/* 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 */
   background-color: inherit; 
   color: #FF6013; 
}

a:visited {
   text-decoration: underline;
   background-color: inherit;
  color: #FF884F;                /* a different color can be used for visited links */
}


/* remove underline on hover and change color */
a:hover {
   color: #FFFF00;
   background-color: inherit;
   font-weight: bold;
}

/*****************
basic layout 
*****************/
body {
   background: #000000 url(uploads/abigal/back6.jpg); 
   color: #EBB553;
   margin:2em auto;    /* gives some air for the pagewrapper */
}

/* center wrapper, min max width */
div#pagewrapper {
   margin: 10px auto;       /* this centers wrapper */
   max-width: 800px;   /* IE wont understand these, so we will use javascript magick */
   min-width: 800px;
   background-color: #000000;
   padding: 1.10em;
}

blockquote {
   text-align:center;
   margin-top:15px;
   margin-left: 30px;
}

/* End of 'abigal : abigal - main' */

