body {
	  background-image: url(images/back.gif);   
	  background-repeat: repeat-x;
	  background-color:  #FFFFFF;
     }

div#LinksRightCol {
  border: 2px solid red;
  float: right;
   width: 300px;
}
div#LinksRightCol ul {
  display: block;
  background-color: #006666;
  border: 2px solid red;
}

div#LinksRightCol li {
  display: block;  /* causes the list to align horizontally instead of stack */
  padding: 6px;                   /* distance from other li */
border: 2px dashed blue;
}

a {text-decoration: none; }          /*  remove that underline */
li {
list-style-type: disc;
height: 40px;
}

li.links { 
list-style-type: none

}

/*  anchor or link lights  */
a:link     {color:#005 ;  background-color: #ccc; }  /*  in its virgin state   */
a:visited  {color: teal; }     /* been there, done that  */
a:hover    {color: #FFF;   background-color: #888888;
}
a:active   {color:green;  font-size: 95%;}   /*  after the fun         */

/*  horizontal rules  */
hr {
	width: 100%;
	color: gray;
	height: 1px;
	}
hr.JugHead {color: #00487B; }
.myHr {width: 300px;  height: 1px; background-color: blue; text-align: left; color: blue;}

.picFloat { float: left; margin-right: 10px; } /* image_text */
.indent75 { margin-left: 75%; }

.clearFloat {clear: left;}
.clearFloat:after {
   content: ".";
   height: 0;
   visibility: hidden;
   display: block;
   clear: both;
   }
   /* Holly Hack for IE Win only \*/
.clearFloat {display: inline-block;}    /* for the IE MAC */
* html .clearFloat { height: 1%}
.clearFloat {display: block;}
/* end of Holly Hack */
#centertext {text-align: center;}