#timeline {
    width: 700px;
    height: 350px;
    overflow: hidden;
    margin: 20px auto;
    padding:20px 0;
    position: relative;
    background: url('dot.gif') right 45px repeat-x transparent;
}
#dates {
    width: 100%;
    height: 40px;
    margin-top:20px;
    overflow: hidden;
    display:inline;
}
    #dates li {
        list-style: none;
        float: left;
        width: 100px;
        height: 30px;
        font-size: 15px;
        font-family: Tahoma;
        text-align: center;
        background: url('biggerdot.png') center bottom no-repeat;
    }
    #dates a {
        line-height: 38px;
        padding-bottom: 10px;
        padding-top: 10px;
        text-decoration:none;
        font:inherit;
        color:#ffcc00;
    }
    #dates .selected {
        font-size: 25px;
        color: #ff0000;
    }

#issues {
    height: 300px;
    margin: auto;
    overflow: hidden;
    padding: 30px 25px 0;
    list-style: none;
}
    #issues li {
        width: 600px;
        height: auto;
        float: left;
        margin: auto 35px auto;
        display: inline-block;
    }

        #issues li.selected img {
            opacity:1;
        }
        #issues li img {
            float: right;
            margin-left: 10px;
            opacity: 1;
            background: transparent;
            width: 256px;
            height: 256px;
            border-radius: 10px;
            -webkit-border-radius: 10px;
            -moz-border-radius: 10px;
        }
            #issues li img:hover {
                transform: rotate(10deg);
                -webkit-transform: rotate(10deg);
                -moz-transform: rotate(10deg);
                -o-transform: rotate(10deg);
            }
        }
        #issues li h1 {
            color: #ffcc00;
            font-size: 48px;
            left:0;
            margin-left:10px;
            width:500px;
        }
        #issues li p {
            font-size: 12px;
            font-weight: normal;
            right:0;
            margin-left:20px;
            line-height: 22px;
            color:#ff7500;
            text-shadow: #555 1px 1px 1px;
            text-indent:0px;
            width:500px;
        }

#grad_left,
#grad_right {
    width: 100px;
    position: absolute;
    top: 0;
}
#grad_left {
    left: 25px;
    background: url('grad_left.png') repeat-y;
}
#grad_right {
    right: 25px;
    background: url('grad_right.png') repeat-y;
}

#next,
#prev {
    position: absolute;
    top: 0;
    font-size: 70px;
    top: 170px;
    width: 22px;
    height: 38px;
    background-position: 0 0;
    background-repeat: no-repeat;
    text-indent: -9999px;
    overflow: hidden;
}
    #next:hover,
    #prev:hover {
        background-position: 0 -76px;
    }
#next {
    right: 10px;
    background-image: url('next.png');
}
#prev {
    left: 10px;
    background-image: url('prev.png');
}
    #next.disabled,
    #prev.disabled {
        opacity: 0.2;
    }