
.fadecontentwrapper{ /* Total width: 350px+5px+5px=360px Read relative width relations for the other two containers below! */
position: relative;
width: 482px;
height: 165px; /* Set height to be able to contain height of largest content shown*/
/* border: 5px solid maroon; */
overflow: hidden;
}

.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;
background: white;
padding: 0px;
visibility: hidden;
width: 482px;
}

.fadecontenttoggler{ /*style for DIV used to contain toggler links. Total width: 350px+5px+5px=360px */
width: 482px;
border: 0px solid maroon;
border-top-width: 0;
overflow: hidden;
}

.fadecontenttoggler a{ /*style for every navigational link within toggler */
text-decoration: none;
border-right: 1px dotted #878787;
padding: 0 5px;
float: left;
display: block;
font-weight: bold;
color: black;
font-size:12px;
}

.fadecontenttoggler a:hover{
background: #C03021;
color: white;
}

.fadecontenttoggler a.toc{ /*style for individual toggler links (page 1, page 2, etc). ".toc" class auto generated! */
padding-bottom: 1px;
}

.fadecontenttoggler a.prev, .fadecontenttoggler a.next{ /*style for "prev" and "next" toggler links. ".prev" and ".next" classes auto generated! */
color: black;
font-weight: normal;
padding-bottom:1px;
text-decoration: underline;
}

.fadecontenttoggler a.next{ /*style for "prev" and "next" toggler links. ".prev" and ".next" classes auto generated! */
color: black;
background: url(/images/next.gif) no-repeat left center;
padding-left: 20px;

}
.fadecontenttoggler a.prev{ /*style for "prev" and "next" toggler links. ".prev" and ".next" classes auto generated! */
color: black;
background: url(/images/prev.gif) no-repeat right center;
padding-right: 20px;
}

.fadecontenttoggler a.prev:hover, .fadecontenttoggler a.next:hover{
color: maroon;
}


.fadecontenttoggler a.selected{ /*style for selected page's toggler link. ".selected" class auto generated! */
background: #C03021;
color: white;
}