/*****************************/
/*** Core html setup ***/
/*****************************/

#dhtmlgoodies_scrolldiv{
	/* The total width of the scrolling div including scrollbar */
	/*width:530px;*/
	/*height:500px;*/	/* The height of the scrolling div */
	/* Hasta aquí lo que traía el componente javascript */

	width: 478px;
	height: 375px;
	left: 280px;
	top: 145px;
	position: absolute;
	background: #ffffff;
	/*background: url(../images/mw_maincolumn_m.png) repeat-y;*/
	/*margin-left: 20%;*/
	float: none;
	/*overflow: auto;*/
	overflow: hidden;
	/*width: 765px;*/
	/*height: 400px;*/
	border: 0px solid #BC8FBD;
}

#scrolldiv_parentContainer{
	/*width:500px;*/	/* Width of the scrolling text */
	/* Hasta aquí lo que traía el componente javascript */

	width:452px;
	height:100%;
	overflow:hidden;
	border:0px solid #BC8FBD;
	float:left;
	position:relative;
}

/*
CSS for the scrolling content 
*/
#scrolldiv_content{
	padding: 5px;
	position:relative;
	/*font-family: Trebuchet MS, Lucida Sans Unicode, Arial, sans-serif;*/
	font-size: 0.9em;
	line-height:130%;
	color: #333;
}

/* 
The scrollbar slider 
*/
#scrolldiv_slider{
	width:15px;
	margin-left:2px;
	/*height:500px;*/
	height: 374px;
	float:left;
}

/*
The scrollbar (The bar between the up and down arrow )
*/
#scrolldiv_scrollbar{
	width:15px;
	/*height:460px;*/	/* Total height - 40 pixels */
	height:336px;
	border:1px solid #A73838;
	position:relative;
	
}

/* The scrollbar handle */
#scrolldiv_theScroll{
	margin:1px;
	width:13px;
	height:13px;
	/*background-color:#BC8FBD;*/
	background-color:#A73838;
	position:absolute;	
	top:0px;
	left:0px;
	cursor:pointer;
}
/*
Scroll buttons(The up and down arrows)
*/
#scrolldiv_scrollUp,#scrolldiv_scrollDown{
	width:15px;
	height:16px;
	border:0px solid #BC8FBD;
	color: #BC8FBD;
	text-align:center;
	font-size:16px;
	line-height:16px;
	cursor:pointer;
	border:0px solid #A73838;
}

#scrolldiv_scrollUp{
	margin-bottom:2px;
}
#scrolldiv_scrollDown{
	margin-top:2px;
}
#scrolldiv_scrollDown span,#scrolldiv_scrollUp span{
	font-family: Symbol;
}
