@charset "UTF-8";
/* CSS Document */

/* links */

#content a, #content a:visited {
		color:#3690c7;
		text-decoration:underline;
		font-weight:bold;
}

#content a:hover {
		color:#3e6075;
}

/* REGISTER */

#register ul{
	list-style-type:none; /* hides the list style */
	background-color:#fff; /* sets the list background color */
	padding:0px; /* space padding the outside of the list items which expands the ul's border */
	margin:0 0 0 0; /* space outside the ul that pads it from another item */
	width:49px;
	
	border-top:none; /* the top border of the whole list */
		
}
#register ul li{
	padding:0px 0;
	background-image:url(../images/register.png);
	background-repeat:no-repeat;
	font-size:10px;
	line-height:10px;
	text-indent:-99999px;

}
#register ul li a{
	padding:77px 0 78px 0;
	color:#333; /*linked font color */
	text-decoration:none; /* text underline etc */
	display:block; /* displays as a whole block rather than just a text item */
	width:49px; /* size of the item if not specifed will be as wide as ul */
	
	background-position:0 0;
}
#register ul li a:hover {
	background-image:url(../images/register.png);
	background-position:0 -166px;
	background-repeat:no-repeat;
}

/* ie hack */
* html body #register a {
   width:49px;
}