/*Begin encfooter information from here*/
div#encfooter {
	xwidth:984px;
	width: 99.98%;
	float:left;
	height: 45px;	/* float:left ensures the encfooter background displays correctly - below the container divs, not the header */
	margin-top: 6px;
	font-size:11px;  /* sets the font size of all links */
	text-align:center; /* centers the ul elements in the div */
	background-color: #FFFFFF;
	border-top:solid 1px #061f70;
	padding: 10px;
}

div#encfooter ul {margin:2px 0;} /* vertical spacing between the lists */
div#encfooter li {
 	display:inline; /* the key CSS - makes the lists display horizontally */
	color:white; /* sets the color of the vertical lines */
	border-left:1px solid; /* creates the vertical line to the left of each list items */
	color:#AFF; /* sets the color of the vertical lines  - links colored below */
	padding:0 5px 0 9px; /* horiz space between links and vert lines - needed diff l & r values to center */
}
div#encfooter li:first-child {border-left:0;} /* removes the left border of the first list item - IDWIMIE */
div#encfooter ul li a {
 	text-decoration:none; /* removes the underlining off the links */
	color:white; /* the color of the links */
}
div#encfooter > a {
	color: #061f70; /* the color of the links */
}
div#encfooter > a:hover {
	text-decoration: none;
	color:#7758dc;
}
div#encfooter ul li a:hover {text-decoration:underline;} /* underlines the links when hovered */
div#encfooter ul.fineprint li {color:#aaa;} /* color for copyright and vert dividers on last row */
div#encfooter ul.fineprint li a {color:#aaa;} /* had to explicitly color these or they inherit white from div#encfooter li */
div#encfooter ul.fineprint li a:hover {color:#000;} /* turns bottom row white when hovered */

#encfooter a {
	font-size: 12px;
}

/* End of encfooter info here */


/* here follows the brillant "no-extra-markup" clearing method devised by Tony Aslett - www.csscreator.com */
/* simply add the clearfix class to any containter that must enclose floated elements */
/* read the details of how and why this works at http://www.positioniseverything.net/easyclearing.html */
.clearfix:after {
    content: ".";            /* the period is placed on the page as the last thing before the div closes */
    display: block;          /* inline elements don't respond to the clear property */ 
    height: 0;               /* ensure the period is not visible */
    clear: both;             /* make the container clear the period */
    visibility: hidden;	     /* further ensures the period is not visible */
}

.clearfix {display: inline-block;}   /* a fix for IE Mac */

/* next a fix for the dreaded Guillotine bug in IE6 */
/* Hides from IE-mac \*/
* html .clearfix {height: 1%;}
.clearfix {display: block;}
/* End hide from IE-mac */
/* end of "no-extra-markup" clearing method */

