/*******************
Colors
 #000000 black (css defined) rgb(0,0,0)
 #ffffff white (css defined) rgb(255,255,255)
 #00ff00 green rgb(0,255,0)
 #ccff99 lime green
 #ff8800 orange
 #ff0000 red (css defined) rgb(255,0,0)
 #C0C0C0 is gray rgb(192,192,192)
 #cccccc grey
 #dddddd lighter grey
 #eeeeee lightest grey
 #cddae9 light pastel blue
 #9ab4d1 pastel blue 
 #0000ff is Blue rgb(0,0,255)
 #2765b4 blue
 #155d96 dark dark blue
 #0a246a blackish blue (drop-down inverse text)
 #ffcccc salmon pink
 #ffff00 is Yellow rgb(255,255,0)
 #00ffff is cyan rgb(0,255,255)
 #ff00ff is magenta rgb(255,0,255)
*******************/


/* Generic Selectors */

body {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 14px;
	color: #000000;
	background-color: #cccccc;
	background: #cccccc url(images/Antique_General_Store1024x768.jpg) no-repeat fixed center;
}

p {
  width: 80%;
  font-weight: bold;
}

li {
  list-style-type: disc; /* none, disc, circle, square */
  line-height: 150%;
  /* list-style-image: url(../images/arrowSmall.gif); */
}

h1 {
  font-family: Verdana, Arial, Helvetica, sans-serif;
  font-size: 22px;
  font-weight: bold;
  color: #0000FF;
}

h2 {
  font-family: Verdana, Arial, Helvetica, sans-serif;
  font-size: 18px;
  font-weight: bold;
  color: #000000;
  border-bottom: 1px solid #000000;
}

td {
	font-size: smaller;
  font-weight: bold;
}
 

/**************** Pseudo classes ****************/

a:link {
color: #0000FF;
text-decoration: underline;
font-weight: bold;
}

li :link {
color: #0000FF;
text-decoration: none;
font-weight: bold;
}

a:visited {
color: #00CC00;
text-decoration: underline;
font-weight: bold;
}

li a:visited {
color: #00CC00;
text-decoration: none;
font-weight: bold;
}

a:hover {
color: rgb(0, 96, 255);
padding-bottom: 5px;
font-weight: bold;
text-decoration: underline;
}

li a:hover {
display: block;
/* color: rgb(0, 96, 255); */
color : #FF0000;
padding-bottom: 5px;
font-weight: bold;
/* border-bottom-width: 2px; */
/* border-bottom-style: solid; */
/* border-bottom-color: #C6EC8C; */
}

a:active {
color: rgb(255, 0, 102);
font-weight: bold;
}

/************************* ID's *************************/

#headline1 {
background-attachment: fixed;
background-image: url(images/newsletter_headline1.gif);
background-repeat: no-repeat;
background-position: left top;
padding-top:68px;
margin-bottom:50px;
} 

#navigation {
position: absolute;
width: 210px;
height: 600px;
margin: 0;
margin-top: 50px;
border-right: 1px solid #000000;
font-weight: normal;
}

#centerDoc {
position: absolute;
padding: 0 0 20px 0; /*top right bottom left*/
margin-top: 50px;
margin-left: 235px;
}

#footer {
   position: absolute;
   bottom: 0;
   left: 235px;
   right: 0;
/*    background: cyan; */
   text-align: center;
   padding: 0.2ex 0;
   font-weight: normal;
   content: "";
  }
  

