/*

.category
    h2
    .slideshow
        .button-prev
        .button-next
        .frame
            .stage
                .book-thumb
                    img
                    .title
                    .author
                .book-thumb
                ...

*/

.category {
    clear: left;
    float: left;
    width: 700px;
    margin-top: 20px;
}

.category h2 {
    padding-top: 0;
    padding-bottom: 4px;
    border-bottom: 1px solid #999;    
}

.category .carousel {
    position: relative;
    width: 700px;
    height: 200px;
    margin-top: 10px;
}

.category .transport-button {
    position: absolute;
    top: 25px;
    width: 20px;
    height: 50px;
    background-image: url(images/transport-buttons.png);
    background-repeat: no-repeat;
}

.category .button-prev {
    left: 5px;    
    background-position: 0 -100px;
}

.category .button-next {
    right: 5px;
    background-position: -20px -100px;    
}

.category .transport-button a {
    display: block;
    width: 20px;
    height: 50px;
    text-indent: -9999px;
    background-image: url(images/transport-buttons.png);
    background-repeat: no-repeat;
}

.category .button-prev a {  
    background-position: 0 0px;
    cursor: pointer;
}

.category .button-prev a:hover {
    background-position: 0 -50px;
}

.category .button-next a {
    background-position: -20px 0px;
    cursor: pointer;
}

.category .button-next a:hover {
    background-position: -20px -50px;
}

.category .carousel .frame {
    position: absolute;
    top: 0;
    left: 30px;
    width: 640px;
    height: 200px;
    overflow: hidden;
}

.category .carousel .frame .stage {
    position: absolute;
    top: 0;
    left: 0;
    width: 10000px;
    height: 200px;    
}

.category .book-thumb {
    float: left;
    width: 150px;  
    margin: 0 5px;   
}

.category .book-thumb img {
    display: block;    
    margin: 0 auto 0 auto;
}

.category .book-thumb .title {
    display: block;
    text-align: center;
    font-size: 12px;
    padding-top: 5px;
}

.category .book-thumb .author {
    display: block;
    text-align: center;
    font-size: 10px;
    padding-top: 5px;
}

