#scrolldiv{
		/* The total width of the scrolling div including scrollbar */
		position:absolute; 
		left:240px; 
		top:150px; 
		width:415px; 
		height:360px; 
		float:left;
		margin-top:0px;
	}

	#scrollContainer{
		/* Width of the scrolling text */
		width:390px;	
		height:100%;
		overflow:hidden;
		border:0px solid #fff;
		float:left;
		position:relative;
	}
	
	/*
	CSS for the scrolling content 
	*/

	#ScrollContent{
		padding: 1px;
		position:relative;
		text-align: left;
		font-family: Arial, Helvetica, sans-serif;
		text-align: justify;
		font-size: 9pt; 
	 	line-height:13pt;
		letter-spacing:0.1em;
		color: #FFFEFF;
	}
/*afegit*/
#ScrollContent a:link {color:#F84038; text-decoration:undeline }
	#ScrollContent p{}

	/*
	The scrollbar slider 
	*/

	#scroll_slider{
		width:15px;
		margin-left:2px;
		height:360px;
		float:right;
	}
	/*
	The scrollbar (The bar between the up and down arrow )
	*/

	#scrollbar{
		width:10px;
		height:240px;	/* Total height - 40 pixels */
		border:0px solid #fff;
		position:relative;
	}

	/*
	The scrollbar handle
	*/

	#theScroll{
		margin:1px;
		width:8px;
		height:30px;
		background-color:#5C5D62;
		position:absolute;	
		top:0px;
		left:0px;
		cursor:pointer;
	}

	/*
	Scroll buttons(The up and down arrows)
	*/

	#scrollUp,#scrollDown{
		width:13px;
		height:20px;
		border:0px solid #fff;
		color: #5C5D62;
		text-align:center;
		font-size:16px;
		line-height:16px;
		cursor:pointer;
	}

	#scrollUp{
		margin-bottom:8px;
	}

	#scrollDown{
		margin-top:-5px;
	}

	#scrollDown span,#scrollUp span{
		font-family: Symbol;
	}