/* CSS Document */
#mycustomscroll {
	/* Typical fixed height and fixed width example */
	width: 350px;
	height: 350px;
	overflow: auto;
	/* IE overflow fix, position must be relative or absolute*/
	position: relative;
	background-color: #FFFFFF;
	font-size: 11px;
}

#mycustomscroll a{
	text-decoration:none;
	color:#000000;
}

#mycustomscroll a:hover{
	text-decoration:underline;
	color:#000000;
}