.glidecontentwrapper{
position: relative; /* Do not change this value */
width: 550px;
height: 200px; /* Set height to be able to contain height of largest content shown*/
overflow: hidden;
}



.glidecontent{ /*style for each glide content DIV within wrapper.*/
width: 550px;
position: absolute; /* Do not change this value */
background-color: #ECE6D8;
visibility: hidden;
}
.glidecontentbox {
	padding: 20px 10px 10px 10px;
}
.glidecontentbox .leftbox {
	float: left;
	width: 260px;
	padding: 0px 0px 0px 0px;
}
.glidecontentbox .rightbox {
	float: right;
	width: 260px;
}

.glidecontenttoggler{ /*style for DIV used to contain toggler links. */
	width: 550px;
	text-align: left; /*How to align pagination links: "left", "center", or "right" */
	background-color: #ffffff; /*always declare an explicit background color for fade effect to properly render in IE*/
	border-top: 1px solid #ffffff;
	padding: 0px;
}


.glidecontenttoggler a{ /*style for every navigational link within toggler */
	display: -moz-inline-box;
	display: inline-block;
	padding: 4px 6px;
	margin: 0px;
	text-decoration: none;
	font-size: 10px;
}

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

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

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

.glidecontenttoggler a.prev, .glidecontenttoggler a.next{ /*style for "prev" and "next" toggler links. ".prev" and ".next" classes auto generated! */
	display: none;
}

.glidecontenttoggler a.prev:hover, .glidecontenttoggler a.next:hover{
background-color: #ECE6D8;
color: white;
}