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

/* buttons */

#web 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 71px; /* space outside the ul that pads it from another item */
	width:195px;
	border-top:none; /* the top border of the whole list */
	overflow:hidden;
}

#web ul li{
	padding:0px 0;
	background-image:url(../images/web_button.png);
	background-repeat:no-repeat;
	font-size:10px;
	line-height:10px;
	text-indent:-99999px;

}
#web ul li a{
	padding:24px 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:195px; /* size of the item if not specifed will be as wide as ul */
	
	background-position:0 0;
}
#web ul li a:hover {
	background-image:url(../images/web_button.png);
	background-position:0 -62px;
	background-repeat:no-repeat;
}

/* ie hack */
* html body #web a {
   width:195px;
}


#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 0px; /* space outside the ul that pads it from another item */
	width:195px;
	border-top:none; /* the top border of the whole list */
	overflow:hidden;
}

#register ul li{
	padding:0px 0;
	background-image:url(../images/register_button.png);
	background-repeat:no-repeat;
	font-size:10px;
	line-height:10px;
	text-indent:-99999px;

}
#register ul li a{
	padding:24px 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:195px; /* 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_button.png);
	background-position:0 -62px;
	background-repeat:no-repeat;
}

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