.rec_view {
    height:265px;
    width:246px;
    position:absolute;
    overflow:hidden;
}
.rec_slide {
    height:238px;
    width:2460px;
    position:absolute;
}
.rec_page {
    height:238px;
    width:246px;
    float:left;
}
.rec_item {
    width:76px;
    height:113px;
    float:left;
    margin:3px;
}
.rec_item .name{
    position:absolute;
}
.rec_item.rec_selected{
    box-shadow:0 0 0 2px #f3ce13;
    -moz-box-shadow:0 0 0 2px #f3ce13;
    -webkit-box-shadow:0 0 0 2px #f3ce13;
}
.rec_item a, .rec_item img{
    display:block;
}

.rec_item .rec_overlay{
    position:absolute;
    width:76px;
    height:113px;
    display:block;
}
.rec_item .rec_overlay .rec_filter{
    background: #333;
    position:absolute;
    opacity:0.75;
    filter: alpha(opacity = 75);
    width:76px;
    height:113px;
    display:block;
}
/* by default, all glyphs and overlays are hidden */
.rec_item .rec_overlay,
.rec_item .glyph{
    display:none;
}
/* show the selected glyphs */
.rec_item .rec_in_watchlist,
.rec_item .rec_in_watchlist .rec_watchlist_glyph,
.rec_item .rec_is_blocked,
.rec_item .rec_is_blocked .rec_blocked_glyph,
.rec_item .rec_has_rating,
.rec_item .rec_has_rating .rec_rating_glyph,
.rec_item .rec_is_pending,
.rec_item .rec_is_pending .rec_pending_glyph{
    display:block;
}
/* a pending status blocks all other glyphs */
.rec_item .rec_is_pending .rec_watchlist_glyph,
.rec_item .rec_is_pending .rec_blocked_glyph,
.rec_item .rec_is_pending .rec_rating_glyph{
    display:none;
}
/* a blocked status blocks the watchlist glyph */
.rec_item .rec_is_blocked .rec_watchlist_glyph{
    display:none;
}
/* Default glyph appearance */
.rec_item .glyph{
    position:absolute;
    height:24px;
    width:24px;
    top:44px;
    left:25px;
    line-height:24px;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
    border:1px solid white;
    background: black;
    color: white;
    font-size:8px;
}
.rec_item .rec_watchlist_glyph{
    background: black url(in_watchlist_icon.png) 
                center center 
                no-repeat scroll;
}
.rec_item .rec_blocked_glyph{
    background: black url(is_blocked_icon.png) 
                center center 
                no-repeat scroll;
}
.rec_item .rec_rating_glyph{
    background: black url(has_rating_icon.png) 
                right center 
                no-repeat scroll;
}
.rec_item .rec_pending_glyph{
    background: black url(spinner-featured.gif) 
                no-repeat scroll 
                center center;
}
/* if something is in both the states, make space for both glyphs */
.rec_item .rec_in_watchlist.rec_has_rating .rec_watchlist_glyph,
.rec_item .rec_is_blocked.rec_has_rating .rec_blocked_glyph{
    top:25px;
}
.rec_item .rec_in_watchlist.rec_has_rating .rec_rating_glyph,
.rec_item .rec_is_blocked.rec_has_rating .rec_rating_glyph{
    top:66px;
}

.rec_nav {
    position:absolute;
    top:248px;
    height:13px;
    width:100%;
    text-align:center;
}
.rec_nav a {
    color:#136CB2;
    position:absolute;
    line-height:13px;
    cursor: pointer;
}
.rec_nav a:hover {
    text-decoration:none;
}
.rec_nav a:active{
    color:#333;

}
.rec_nav_left{
    right:128px;
}
.rec_nav_right{
    left:128px;
}
a.rec_nav_disabled, a.rec_nav_disabled:hover{
    color: #ccc !important;
    cursor: default;
}


.rec_nav_page_num{
    position:absolute;
    left:7px;
    display:none;
}

