@charset "utf-8";
/* CSS Document */

.fadecontentwrapper{ /* Total width: 350px+5px+5px=360px Read relative width relations for the other two containers below! */
	position: relative;
	height: 250px;
	overflow: hidden;
	width: 618px;
	padding-bottom: 0px;
}

.fadecontent{ /*style for each fade content DIV within wrapper. Total width: 330px+10px+10px=350px (".fadecontentwrapper" width minus its padding and borders, if any) */
	position: absolute;
	padding: 10px;
	visibility: hidden;
	width: 598px;
	color: #FFF;
	height: 250px;
	background-color: #26003e;
}

.fadecontenttoggler{ /*style for DIV used to contain toggler links. Total width: 350px+5px+5px=360px */
	width: 618px;
	border-top-width: 0;
	overflow: hidden;
	background-color: #999;
}

.fadecontenttoggler a{ /*style for every navigational link within toggler */
	text-decoration: none;
	float: left;
	display: block;
	font-weight: bold;
	color: #333;
	border: 2px solid #000;
	margin: 3px;
	padding: 2px 3px 2px 3px;
	background-color: #FFF;
}

.fadecontenttoggler a:hover{
	background: #004283;
	color: white;
}

.fadecontenttoggler a.toc{ /*style for individual toggler links (page 1, page 2, etc). ".toc" class auto generated! */
	width: 120px;
}

.fadecontenttoggler a.prev, .fadecontenttoggler a.next{ /*style for "prev" and "next" toggler links. ".prev" and ".next" classes auto generated! */
	color: #666;
}

.fadecontenttoggler a.prev:hover, .fadecontenttoggler a.next:hover{
	color: white;
	background: black;
}

.fadecontenttoggler a.selected{ /*style for selected page's toggler link. ".selected" class auto generated! */
	background: #004283;
	color: white;
}
