/* Start of CMSMS style sheet '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: Georgia, Times New Roman, Times, serif;
font-size: 9pt;
font-style: normal; 
line-height: 13pt; 
}

#home {
background: #000033;
}

#latest {
background: #cddce7 url(images/latest/latest_bg.jpg) no-repeat;
}

#info {
background: #eaeaea url(images/info/info_bg.jpg) no-repeat;
}

#links {
background: #fef2dc url(../images/links/links_bg.jpg) no-repeat;
}

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

a:visited {
text-decoration: underline;
background-color: inherit;
color: #333333;                /* a different color can be used for visited links */
}

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

.content p {
font-size: 9pt;
font-style: normal; 
line-height: 13pt; 
font-weight: normal; 
}

h1 {  
font-family: Georgia, "Times New Roman", Times, serif; 
font-size: 9pt; 
font-style: normal; 
line-height: 13pt; 
font-weight: normal; 
font-variant: normal; 
text-transform: none; 
color: #333333; 
text-decoration: none;
margin: 0 5px 0 0;
}

h2 {  
font-family: Georgia, "Times New Roman", Times, serif; 
font-size: small; 
font-style: italic; 
font-weight: bold; 
}

h3 { 
font-family: Georgia, "Times New Roman", Times, serif; font-size: 9pt; 
font-style: italic; 
line-height: 13pt; 
}

.quote {
font-size: 9pt;
font-style: normal; 
line-height: 13pt; 
font-weight: normal;
display:block;
margin: 10px 30px 10px 30px;
}

.content ul { 
margin-left: 0;
padding-left: 0;
list-style: none;
}

.content ul li {
padding-left: 25px;
margin: 0 0 20px 0;
background-image: url(../images/general/bullet_sq.gif); 
background-repeat: no-repeat;
background-position: 0 0;
font-family: Georgia, "Times New Roman", Times, serif; 
font-size: 9pt; 
font-style: normal; 
line-height: 13pt;
}

.content table td{
font-family: Georgia, "Times New Roman", Times, serif; 
font-size: 9pt; 
font-style: normal; 
line-height: 13pt;
}



/* End of 'main' */

