/* Taken from http://www.cssnewbie.com/example/showhide-content/ */

/* This CSS is used for the Show/Hide functionality. */
.more
{
	display: none; /*border-top: 1px solid #666;*/ /*border-bottom: 1px solid #666; */
}
a.showLink
{
	padding-left: 20px;
	background: url(../img/down.gif) no-repeat left;
}
a.hideLink
{
	padding-left: 20px;
	background: transparent url(../img/up.gif) no-repeat left;
}
a.showLink:hover, a.hideLink:hover
{
	/*border-bottom: 1px dotted #36f; */
}

