/* Start of CMSMS style sheet 'splash' */
/*****************
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: Arial, Verdana;
   font-size: 75.01%;
   line-height: 1.2em;
   background-color: #83c7eb;
   color: #000000;
   height:100%;
}

div#content {
   border: 1px solid;
top: -1px;
   margin: 0 auto;       /* this centers wrapper */
   width: 600px;   /* IE wont understand these, so we will use javascript magick */
   background-color: #FFFFFF;
   height:100%;
   position:relative;
padding-left: 20px;
padding-right: 20px;
border-color: navy;

}

/*
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,
a:link 
a:active {
/* 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: navy; 
   font-weight: bold;
   font-size: 10pt;
}

a:visited {
   background-color: inherit;
   font-weight: bold;
   font-size: 10pt;
  color: navy;
}

/* remove underline on hover and change color */
a:hover {
   font-weight: bold;
   color: red;
   font-size: 10pt;
}

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

/* HEADINGS */
div#content h1 {
   font-size: 2em; /* font size for h1 */
   line-height: 1em;
   margin: 0;
}
div#content h2 {
	color: #294B5F; 
	font-size: 1.5em; 
	text-align: left; 
}
div#content h3 {
   color: #294B5F; 
   font-size: 1.3em;
   line-height: 1.3em;
   margin: 0 0 0.5em 0;
}

/* END HEADINGS */

/* TEXT */
p {
   font-size: 1em;
   margin: 0 0 1.5em 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 of 'splash' */

