.Button
{
	font-weight: bold;
	font-size: 10pt;
	border-left-color: #9e1b34;
	border-bottom-color: #9e1b34;
	cursor: pointer;
	color: white;
	border-top-style: none;
	border-top-color: #9e1b34;
	font-family: Arial, Sans-Serif;
	border-right-style: none;
	border-left-style: none;
	background-color: #9e1b34;
	text-align: center;
	border-right-color: #9e1b34;
	border-bottom-style: none;
}

.TextButton
{
	font-weight: bold;
	font-size: 11pt;
	border-left-color: #9e1b34;
	border-bottom-color: #9e1b34;
	cursor: pointer;
	color: #003580;
	border-top-style: none;
	border-top-color: #9e1b34;
	font-family: Arial, Sans-Serif;
	border-right-style: none;
	border-left-style: none;
	background-color: white;
	text-align: center;
	border-right-color: #9e1b34;
	border-bottom-style: none;
}

.Subhead
{
	font-weight: bold;
	font-size: 11pt;
	color: #003580;
	font-family: 'Palatino Linotype' , Serif;
}

.RedSubhead
{
	font-weight: bold;
	font-size: 11pt;
	color: #9e1b34;
	font-family: 'Palatino Linotype' , Serif;
}

.BodyText
{
	font-size: 10pt;
	color: #4d6d99;
	font-family: Arial, Sans-Serif;
}

.BodyTextBold
{
	font-weight: bold;
	font-size: 10pt;
	color: #4d6d99;
	font-family: Arial, Sans-Serif;
}

.RedBodyText
{
	font-size: 10pt;
	color: #9e1b34;
	font-family: Arial, Sans-Serif;
}

.SecondaryNavHead
{
	font-weight: bold;
	font-size: 11pt;
	color: #4d6d99;
	font-family: 'Palatino Linotype' , Serif;
}

.SecondaryNavText
{
	font-size: 10pt;
	color: #4d6d99;
	font-family: Arial, Sans-Serif;
}

.Headline
{
	font-weight: bold;
	font-size: 18pt;
	color: #003580;
	font-family: 'Palatino Linotype' , Serif;
}

.SummaryText
{
	font-size: 10pt;
	color: #4d6d99;
	font-family: Arial, Sans-Serif;
}

.TertiaryNavHead
{
	font-weight: bold;
	font-size: 11pt;
	color: #003580;
	font-family: Arial, Sans-Serif;
}

.TextBox
{
	border-right: #4d6d99 1px double;
	border-top: #4d6d99 1px double;
	font-size: 10pt;
	border-left: #4d6d99 1px double;
	color: #4d6d99;
	border-bottom: #4d6d99 1px double;
	font-family: Arial, Sans-Serif;
}

/*--Main Container--*/

.main_view {
	float: left;
	position: relative;
	height: 275px;
}

/*--Window/Masking Styles--*/

.window {
	height: 250px;
	width: 394px;
	overflow: hidden; /*--Hides anything outside of the set width/height--*/
	position: relative;
}

.image_reel {
	position: absolute;
	top: 0;
	left: 0;
}

.image_reel img {
	float: left;
}

/*--Paging Styles--*/

.paging
{
	width: 394px;
	position: absolute;
	z-index: 100; /*--Assures the paging stays on the top layer--*/
	text-align: right;
	line-height: 40px;
	display: none; /*--Hidden by default, will be later shown with jQuery--*/
}

.paging a {
	padding: 5px;
	margin: 5px;
	text-decoration: none;
	background: #000;
	color: #FFF;
	border: 1px solid #000;
	-moz-border-radius: 15px;
	border-radius: 15px;
}

.paging a.active {
	font-weight: bold;
	background: #FFF;
	border: 1px solid #000;
	color: #000;
}

.paging a:hover {
	font-weight: bold;
	background: #C7C7C7;
}

