﻿@charset "utf-8";
/* CSS Document */


div#seekHolder{
    margin-top: -7px;
    position: relative;
    width: 100%; height: 10px;
    z-index: 9;
    cursor: pointer;
}

    div#seekBar{
        background: url(../../Images/seekBg.jpg);
        position: absolute;
        top: 7px;
        width: 100%; height: 3px;
        border-top: 1px solid #000;
        border-bottom: 1px solid #000;

        transition:all 0.2s linear;
        -o-transition:all 0.2s linear;
        -moz-transition:all 0.2s linear;
        -webkit-transition:all 0.2s linear;
    }
        div#media:hover div#seekBar{
            top: 0px;
            height: 10px;
        }

        div#seekInner{
            display: block;
            position: absolute;
            height: 100%;
            background: url(../../Images/seekBgPlaying.jpg);
            left: 0px; top: 0px;
            width: 10px;
        }


        div.seekInnerPaused{
            background: url(../../Images/seekBgPaused.jpg) !important;
        }



    div#scrubberHolder{
        display: block;
        position: absolute;
        width: 100%;
        height: 1px;
        left: 0px;
        top: 13.5px;
        overflow: visible;
        cursor: pointer;

        transition:all 0.2s linear;
        -o-transition:all 0.2s linear;
        -moz-transition:all 0.2s linear;
        -webkit-transition:all 0.2s linear;
    }
        div#media:hover div#scrubberHolder{
            top: 10px;
        }


        div#scrubber{
            display: block;
            position: absolute;
            width: 9px; height: 40px;
            background: url(../../Images/scrubber.png);
            left: 0px;
            top: -25px;
        }