/*****************
basic layout 
*****************/
* {
margin:0;
padding:0;
}

/*default link styles*/
a, a:link a:active {
/* set all links to have underline */
	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;
/* this is a bluish color, you change this for all default link colors */
	color: #000099;
}
a:visited {
/* keeps the underline */
	text-decoration: underline;
	background-color: inherit;
/* a different color is used for visited links */
	color: #000099;
}
a:hover {
/* remove underline on hover */
	text-decoration: underline;
	background-color: inherit;
/* using a different color makes the hover obvious */
	color: #990000;
}

body {
   margin: 0 1em 1em 1em; 
   text-align: left;
   font-family: Verdana, Geneva, Arial, Helvetica, sans-serif;
   font-size: 75.01%;
   line-height: 1em;
   background-color: #90b4d6;
   background-image: url(images/bg.jpg); 
}

h1 {
   color: #ffffff; 
   font-size: 2.5em;
   line-height: 1.8em;
   margin: 0;
}

h2 {
   color: #ffffff; 
   font-size: 2.0em;
   line-height: 1.8em;
   margin: 0;
}


h3 {
   color: #004080; 
   font-size: 1.5em;
   line-height: 1.5em;
   margin: 0.5em 0 0 0;
}

h4 {
   color: #990000; 
   font-size: 1.5em;
   line-height: 1.5em;
   margin: 0 0 1.0em 0;
}

p {
   font-size: 1.2em;
   margin: 0 0 1.5em 0;  /* some air around p elements */
   line-height:1.4em;
}

p.small {
   font-size: 0.9em;
   color: #105090;
   margin: 0 0 1.5em 0;  /* some air around p elements */
   line-height:1.4em;
}

p.footer {
   font-size: 1em;
   color: #003080;
   margin: 1.0em 0 0.5em 0;  /* some air around p elements */
   line-height:1.4em;
}

td.top-left {
   background-image: url(images/top-left.gif);
}

td.top {
   background-image: url(images/top.gif);
}
td.top-right {
   background-image: url(images/top-right.gif);
}

td.left {
   background-image: url(images/left.gif);
}

td.content {
   background-color: #ffffff;
}

td.right {
   background-image: url(images/right.gif);
}

td.bot-left {
   background-image: url(images/bottom-left.gif);
}

td.bottom {
   background-image: url(images/bottom.gif);
}

td.bot-right {
   background-image: url(images/bottom-right.gif);
}

