.contentslide{
		border: 10px solid #CE0000;
		background-color: #fff;
		border-bottom-width: 6px;
		padding: 8px;
		width: 95%;
		height: 250px;
	}

	.contentslide .opacitylayer{ /*Do not edit this rule unless you're familiar with CSS opacity behavior*/
		width: 95%;
		height: 100%;
		filter:progid:DXImageTransform.Microsoft.alpha(opacity=100);
		-moz-opacity: 1;
		opacity: 1;

	}

	.contentslide .contentdiv{
		display: none;
	}

	.pagination{
		width: 95%; /*Width of pagination DIV. To equal that of Content Slider's width, take into account the later's left/right paddings!*/
		text-align: right;
		background-color: #CE0000;
		border: 10px solid #CE0000;
		border-width: 0 10px; /*Left/ right border width of pagination DIV.*/
		padding: 0 0 4px 0;
	}

	* html .pagination{ /*Simplified box model hack to get IE5 to display width equal to that of Content Slider's*/
		width: 95%; /*IE5 width*/
		width: 95%; /*IE6 width*/
	}

	.pagination a{
		padding: 0 5px;
		text-decoration: none; 
		color: #2e6ab1;
		background-color: white;
	}

	.pagination a:hover, .pagination a.selected{
		background-color: #0080FF;
		color: #fff;
		font-weight: bold;
	}