/* Start of CMSMS style sheet 'ep_global_styles' */
/*****************
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: 12px;
}

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

/*
default link styles
*/

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: #1a0d5a; 
}



/* remove underline on hover and change color */
a:hover {
   text-decoration: none;
   color: #504297;
}

a.heading2 {
color: #1a0d5a;
}


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

/* center wrapper, min max width */
div#pagewrapper {
	width: 900px;
	padding:0px;
	margin: 0px;
	margin-top: 30px;
	margin-left: auto;
	margin-right: auto;
	border: 1px solid black;
	background: white;

}


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

div#header {
	text-align: left;
	background-color: #fff;
	margin: 0px;
	padding:0px 0px 0px 20px;
	height: 50px;
	position: relative;
           
}





div#left	{
	width: 600px;
	float: left;
	padding-left: 20px;
        padding-top: 20px;
}

div#right	{
	width: 220px;
	float: right;
	padding-right: 20px;
        padding-top: 20px;
}


div#footer {
   clear:both;       /* keeps footer below content and menu */
   color: #000;
   background-color: #fff; 
   text-align: right;
   padding: 5px 20px 10px 0px;
	font-size: 10px;
	color: #1a0d5a;

}








/********************
CONTENT STYLING
*********************/
div#content {

}

/* HEADINGS */
div#content h1 {
   font-size: 2em;  /* font size for h1 */
   line-height: 2.4em;
   margin: 0;
}
div#content h2 {
   color: #1a0d5a; 
   font-size: 1.5em; 
   text-align: left; 
/* some air around the text */
   padding-left: 0.5em;
   padding-bottom: 1px;
/* set borders around header */
   border-bottom: 1px dotted #000;  
   line-height: 1.5em;
/* and some air under the border */
   margin: 0 0 0.5em 0;
}
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;
      padding: 0;
}

strong, b {
/* explicit setting for these */
   font-weight: bold;
}
em, i {
/* explicit setting for these */
   font-style:italic;
}

.credits {
font-size: 0.8em;
color: #555;
font-style: italic;
}

.heading1 {
font-size: 1.2em;
color: #1a0d5a;
font-weight: bold;
}

.heading2 {
font-size: 1.1em;
color: #999;
font-weight: bold;
}

/* END TEXT */


/* LISTS */
div#main ul,
div#main ol,
div#main dl {
  font-size: 1.0em;
   line-height:1.4em;
   margin: 0 0 1.5em 0;
}
div#main ul li,
div#main ol li {
   margin: 0 0 0.25em 3em;
}

div#dl dt {
   font-weight: bold;
   margin: 0 0 0.25em 3em;
}
div#dl dd {
   margin: 0 0 0 3em;
}
/* END LISTS */

.padleft {
margin-left: 25px;
}

div#left img.border {
border: 1px solid #1a0d5a;
margin-right: 15px;
}

.box {
padding: 10px;
background-color: #f2efff;
border: 1px solid #412bad;
margin-bottom: 20px;

}

.back {
text-align: right;
}

p.indent {
text-indent: 20px;
}

.newsletter {
font-size: 0.8em;

}


/* End of 'ep_global_styles' */

