.glidecontentwrapper{
position: relative; /* Do not change this value */
width: 720px;
height: 450px; /* Set height to be able to contain height of largest content shown*/
border:2px solid #666;
overflow: hidden;
margin-left:-360px;
left: 50%;
margin-top:180px;
/*padding-bottom:40px*/
background-color: #555;
}
/*
	Total wrapper width: 350px+5px+5px=360px
	Or width of wrapper div itself plus any left and right CSS border and padding
	Adjust related containers below according to comments
*/


.glidecontent
{
	/*style for each glide content DIV within wrapper.*/
	position: absolute;
	/* Do not change this value */
	/*
background: white;
*/
	padding: 20px;
	visibility: hidden;
	width: 680px;
	text-align: justify;
	font-family: "Lucida Grande", Lucida, Verdana, sans-serif;
	font-size: 12px;
	background-color: #555;
	color: #FFF;
	/*background-image: url(../img/d1.jpg);*/
	background-repeat: no-repeat;
	background-position: center center;
	overflow: auto;
}
/*
 Total glidecontent width: 330px+10px+10px=350px
	Or width of wrapper div itself (not counting wrapper border/padding)
*/

.glidecontenttoggler{ /*style for DIV used to contain toggler links. */
width: 880px;
top: 370px;
text-align: center; /*How to align pagination links: "left", "center", or "right"
background: white; /*always declare an explicit background color for fade effect to properly render in IE*/
margin-left:-440px;
left: 50%;
position: absolute;
z-index:10;
}
/*
 Total contenttoggler width: 350px+5px+5px=360px
	Or total width of wrapper div (counting wrapper border/padding)
*/

.glidecontenttoggler a
{
	/*style for every navigational link within toggler */
	display: inline-block;
	/*border: 1px solid #FFF;*/
	color: #2e6ab1;
	padding: 20px;
	margin-right: 3px;
	font-weight: bold;
	text-decoration: none;
}

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

.glidecontenttoggler a:hover{
background: #E4EFFA;
color: black;
}

.glidecontenttoggler a.toc{ 
width:700px;

/*style for individual toggler links (page 1, page 2, etc). ".toc" class auto generated! */
}

.glidecontenttoggler a.prev{ 
background-image: url(../img/b2.jpg);
	background-repeat: no-repeat;
	background-position: center center;
	visibility: hidden;
}

.glidecontenttoggler a.next
{
	background-image: url(../img/b1.jpg);
	background-repeat: no-repeat;
	background-position: center center;
}

.glidecontenttoggler a.prev:hover
{
	background-image: url(../img/b2a.jpg);
	background-repeat: no-repeat;
	background-position: center center;
}

.glidecontenttoggler a.next:hover
{
	background-image: url(../img/b1a.jpg);
	background-repeat: no-repeat;
	background-position: center center;
}


