.glidecontentwrapper{
width: 222px;
height: 350px;
float: left;
position: relative;
padding: 0;
margin: 0 0 15px 0;
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 */
visibility: hidden;
width: 192px;
padding: 15px 15px 8px 15px;
height: 327px;
background: #0983b2;
}

.glidecontent .entry {
width: 192px;
height: 290px;
float: left;
position: relative;
overflow: hidden;
}

.glidecontent .news-more {
position: absolute;
bottom: 30px;
right: 20px;
}
/*
 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: 35px;
height: 12px;
position: absolute;
top: 34px;
right: 20px;
}

.glidecontenttoggler a{ /*style for every navigational link within toggler */
display: block;
width: 17px;
height: 9px;
}

.glidecontenttoggler a.prev {
background: url(../images/news-up.png) top no-repeat;
position: absolute;
top: 0;
left: 0;
}

.glidecontenttoggler a.prev:hover {
background-image: url(../images/news-up-2.png);
}

.glidecontenttoggler a.next{
background: url(../images/news-down.png) top no-repeat;
position: absolute;
top: 0;
right: 0;
}

.glidecontenttoggler a.next:hover {
background-image: url(../images/news-down-2.png);
}

.glidecontenttoggler a.prev:hover, .glidecontenttoggler a.next:hover{
}
