﻿@import url('layout.css');
.sliderwrapper{
	position: relative; /*leave as is*/;
	overflow: hidden; /*leave as is*/;
	border: 2px solid #839AC5;
	border-bottom-width: 2px;
	width: 350px; /*width of featured content slider*/;
	height: 100px;
}

.sliderwrapper .contentdiv{
	visibility: hidden; /*leave as is*/;
	position: absolute; /*leave as is*/;
	left: 0; /*leave as is*/;
	top: 0; /*leave as is*/;
	padding: 1px;
	background: white;
	width: 350px; /*width of content DIVs within slider. Total width should equal slider's inner width (390+5+5=400) */;
	height: 100px;
	font-family: "Times New Roman", Times, serif;
}

.pagination{
	width: 300px; /*Width of pagination DIV. Total width should equal slider's outer width (400+10+10=420)*/;
	text-align: left;
	background-color: #e8edfc;
	padding: 1px 1px;
}
.pagination a{
	padding: 0 5px;
	text-decoration: none;
	color: #000000;
	background: #e8edfc;
}
.pagination a:hover, .pagination a.selected{
	color: #FFFFFF;
	background-color: #839AC5;
}

