.glidecontentwrapper{
position: relative; /* Do not change this value */
width: 269px;
height: 95px; /* Set height to be able to contain height of largest content shown*/
border: 0px solid none;
overflow: hidden;
}
/*
	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: #eee;
padding:10px 5px 10px 9px;
visibility: hidden;
width: 257px;
}
/*
 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: 318px;
height: 95px;
border: 1px solid #000;
margin: 0px;
padding:0px;
text-align: right; /*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*/
}
/*
 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: run-in;
display: inline-block;
border: 1px solid #fff;
color: #000;
padding: 0px 0px;
margin-right: 0px;
font-weight: bold;
text-decoration: none;
}

.glidecontenttoggler a.selected{ /*style for selected page's toggler link. ".selected" class auto generated! */
background: #eee;
color: #fff;
}

.glidecontenttoggler a:hover{
background: #eee;
color: #04467a;
}

.glidecontenttoggler a.toc{ /*style for individual toggler links (page 1, page 2, etc). ".toc" class auto generated! */
}

.glidecontenttoggler a.prev 
{ /*style for "prev" and "next" toggler links. ".prev" and ".next" classes auto generated! */
	margin:0 0 0 0;
	padding:0 0 0 0;
	border:0;
	background-image:url(../images/toggle_left.jpg);
	background-repeat:no-repeat;
	background-position:center;
	
	float: left;
	position:relative;
	z-index:1000;
	top:0px;
	left:0px;
	
	vertical-align:text-bottom;
	height:91px;
	width: 21px;
	border-bottom:solid 2px #eee;
	border-right:solid 2px #eee;
	border-left:solid 2px #eee;
	border-top :solid 2px #eee;
	background-color:#eee;
	
}
.glidecontenttoggler a.next
{
	margin:0 0 0 0;
	padding:0 0 0 0;
	border:0;
	background-image:url(../images/toggle_right.jpg);
	background-repeat:no-repeat ;
	background-position:center;	
	
	float: left;
	position:relative;
	z-index:1001;
	top:0px;
	left:0px;
	
	vertical-align:text-bottom;
	height:95px;
	width: 23px;
	border-top:solid 0px #eee;
	border-right:solid 0px #eee;
	border-left:solid 0px #eee;
	border-bottom :solid 0px #eee;
	background-color:#eee;
}

.glidecontenttoggler a.prev:hover{
	
	background-image:url(../images/toggle_left.jpg);
	background-repeat:no-repeat ;
	background-position:center;
	background-color:#eee;

}
.glidecontenttoggler a.next:hover{
	
	background-image:url(../images/toggle_right.jpg);
	background-repeat:no-repeat ;
	background-position:center;
	background-color:#eee;
}