﻿	#scrollingContainer{
		width:180px;	/* 170 pixels in width */
		height:300px;	/* Height of box */
		
		padding:6px;	/* A little bit of space between border of box and text inside */
		float:none;	/* I want the text to wrap around the box */
		overflow:hidden;	/* Hide overflow content */
		
		font-family: Verdana, Arial, Helvetica, sans-serif;
	    font-size: .7em;
	    
	    margin: 0px;
	    
	}
a.scroll
{
    border: thin dashed #CCCCCC;
    display: block;
    padding: 0;
    margin: 0;
    text-decoration: none;
    width: 168px;
    color: #666666;
    line-height: 25px;
}   
a.scroll:hover {
    color: #000000;
    background-color: #eeeeee;
    }

		