.fadecontentwrapper{ /* Total width: 350px+5px+5px=360px Read relative width relations for the other two containers below! */
position: relative;
width: 550px;
height: 238px; /* Set height to be able to contain height of largest content shown*/
border: 0px 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-right: 0px;
padding-left: 0px;
padding-top: 0px;
visibility: hidden;
width: 550px;
}

.fadecontenttoggler{ /*style for DIV used to contain toggler links. Total width: 350px+5px+5px=360px */
position: absolute;
margin-top:-230px;
margin-left:400px;
z-index:999;
width: 500px;
border: 0px solid maroon;
border-top-width: 0px;
overflow: hidden;
}

.fadecontenttoggler a{ /*style for every navigational link within toggler */
text-decoration: none;
border-right: 0px solid maroon;
padding: 2 5px;
float: left;
display: block;
font-weight: bold;
color: #FFF;
}

.fadecontenttoggler a:hover{
background: #fff;
color: #000;
}

.fadecontenttoggler a.toc{ /*style for individual toggler links (page 1, page 2, etc). ".toc" class auto generated! */
display:block;
background: #555555;
color: #fff;
font-size:10px;
/*background-image:url(../../images/patrat_gri.gif); background-repeat:no-repeat; background-position:center;*/
}

.fadecontenttoggler a.prev, .fadecontenttoggler a.next{ /*style for "prev" and "next" toggler links. ".prev" and ".next" classes auto generated! */
color: black;
}

.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: #fff;
color: #000;
}
