a
{
  color: #000080;
  font-family: arial;
  text-decoration: none;
}

a:link
{
	color: #B00000;
	text-decoration: none;
}
a:visited
{
	color: #B00000;
   text-decoration: none;
}
a:active
{
	color: #B00000;
   text-decoration: none;
}
a:hover
{
	color: Blue;
	text-decoration: underline;
}

body
{
	background-repeat: no-repeat;
	font-size: small;
	background: #8293C3;
}

/* headers*/
h1 {
	font-family: arial, helvetica, sans-serif;
	font-size: large;
	color: Black;
}

h2 {
	font-family: arial, helvetica, sans-serif;
	font-size: medium;
	color: Black;
}

h3 {
	font-family: arial, helvetica, sans-serif;
	font-size: medium;
	color: Black;
}

h4 {
	font-family: arial, helvetica, sans-serif;
	font-size: medium;
	color: Black;
}

p {
	font-size: small;
}

p.xsmall {
	font-size: x-small;
}

table
{
	font-size: small;
}

tr
{
	font-size: small;
}

td
{
	font-family: arial, helvetica, sans-serif;
	font-size: small;
}

hr{
	background-color: Red;
	height: 3px;
}
input {
  font-size: 10px;
  color: #000080;
  background-color: #f8f8f8;
}

textarea
{
  color: #000080;
  background: #f8f8f8;
}

select
{
  font-size: 9px;
  color: #000080;
  background: #f8f8f8;
}

.background {
	background: url(images/heart.png) no-repeat center;
}

img {
  border: none;
}

#header_border {
	background-color: #FFFFE0;
}

#tableblkbrdr {
	border: thin;
	border-color: Black;
	background: White;
	margin-left: auto;
	margin-right: auto;
}
.smalllinks
{
	font-weight: normal;
	font-size: x-small;
	color: black;
	line-height: normal;
	background: #8293C3;
}

/*==== Begin Navbar Styles ====*/
#navwrap { /* this is for continuing the main ul BG color on each side */
    background:#8293C3;
    font-size: .875em;/*base font-size for all menu sizing with ems*/
    height: 1.75em;
    border-top:1px solid #000;
    border-bottom:1px solid #000;
}
#floater { /* this allows the widthless floats to center up */
    float:left;
    position:relative;
    left:50%;
}
#nav {
    position:relative;
    left:-50%; /* this allows the widthless floats to center up */
    list-style:none;
    margin:0; /* reset the default left margin in IE */
    padding:0; /* reset the default left padding in good browsers */
}
#nav li {
    position:relative; /* establish stacking context for the APd dropdown sublist */
    float:left;
    padding:0;
    font-weight:bold;
    background:#8293C3;
}
#nav li a {
    float:left;
    padding:0 1.5em; /* text padding for left and right only */
    line-height:1.75em; /* center the text vertically */
    text-decoration:none;
    color:#000;
}
#nav li:hover {
    color:#FFF;
    background:#333;
}
#nav li:hover a {color:#FFF}
#nav li:hover li a {color:#000}
#nav li li:hover a {color:#00FFFF} /*sublist with differnt color on hover (cyan)*/
/* ----- Drop Down Styles ----- */
#nav ul {
    position:absolute; /* position the sublist to nearest positioned ancestor, the (#nav li) in this case*/
    width:10em;
    margin-left:-999em;/* hide the sublist */
    left:0; /* IE6&7 need this to position the sublist correctly on hover*/
    top:1.75em;
    list-style:none;
    background: #FFF url(fake-image.jpg);/* IE needs some sort of BG on the nested ul */
    border:1px solid #000;
    padding: 0;
}
#nav li li{
    float: none;/*reset the float from #nav li*/
    display: block;
    border:none;
}
#nav li li a{
    float: none;/*reset the float from #nav li*/
    display: block;
    width:9em;/*IE6 needs a width (10em total with padding)*/
    line-height:1.2; /*reset from #nav li a */
    padding:.375em .5em;
}
#nav li:hover ul{
    margin-left: 0; /* show the sublist */
    visibility:visible;/* makes IE7 think something changes on hover, fixes IE sticking dropdown */
}
