
body {
	background:#333333;

}

#playlist{
	position:absolute;
	height: 64px;
	overflow:hidden;

}
#playlistContent{
	position:absolute;
	background: rgb(44, 44, 44);
	top:0px;
	left:0px;
    height:100%;
    margin: 0;
    padding: 0;
}

.item{
    position: absolute;
	width:250px;/*fixed width*/
    height: 100%;
    -webkit-transition: all .2s ease-out;
    -moz-transition: all .2s ease-out;
    -o-transition: all .2s ease-out;
    transition: all .2s ease-out;
    border: 1px solid;
    border-top-color: rgb(235, 235, 235);
    border-left-color: rgb(235, 235, 235);
    border-right-color: rgb(141, 141, 141);
    border-bottom-color: rgb(141, 141, 141);
}
.leftArrow{
    position: absolute;
    width: 25px;
    height: 50%;
    background-color: #2B2B2B;
    top: 50%;
    margin-top: -16px;
    cursor: pointer;

    border: 1px solid ;
    box-shadow: 1px 1px 4px rgb(0, 0, 0);
    -webkit-border-radius: 5px;
    border-radius: 5px;
    border-top-color: rgb(230, 230, 230);
    border-right-color: rgb(78, 78, 78);
    border-bottom-color: rgb(78, 78, 78);
    border-left-color: rgb(230, 230, 230);
    background: #000000;
    background: -moz-linear-gradient(top, rgb(233, 233, 233), rgb(156, 156, 156));
    background: -o-linear-gradient(top, rgb(233, 233, 233), rgb(156, 156, 156));
    background: -webkit-gradient(linear, left top, left bottom, from(rgb(233, 233, 233)), to(rgb(156, 156, 156)));
    background: -ms-linear-gradient(rgb(233, 233, 233), rgb(156, 156, 156));/*For IE10*/
    background: linear-gradient(rgb(233, 233, 233), rgb(156, 156, 156));
    filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0,startColorstr='#E9E9E9', endColorstr='#9C9C9C');/*For IE7-8-9*/
}
.leftArrowInside{
    width: 0;
    height: 0;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;

    border-right: 10px solid rgb(230, 26, 26);
    position: absolute;
    top: 50%;
    left: 50%;
    margin-top: -10px;
    margin-left: -5px;
}
.rightArrow{
    right:0;
    position: absolute;
    width: 25px;
    height: 50%;
    background-color: #2B2B2B;
    top: 50%;
    margin-top: -16px;
    cursor: pointer;

    border: 1px solid ;
    box-shadow: 1px 1px 4px rgb(0, 0, 0);
    -webkit-border-radius: 5px;
    border-radius: 5px;
    border-top-color: rgb(230, 230, 230);
    border-right-color: rgb(78, 78, 78);
    border-bottom-color: rgb(78, 78, 78);
    border-left-color: rgb(230, 230, 230);
    background: #000000;
    background: -moz-linear-gradient(top, rgb(233, 233, 233), rgb(156, 156, 156));
    background: -o-linear-gradient(top, rgb(233, 233, 233), rgb(156, 156, 156));
    background: -webkit-gradient(linear, left top, left bottom, from(rgb(233, 233, 233)), to(rgb(156, 156, 156)));
    background: -ms-linear-gradient(rgb(233, 233, 233), rgb(156, 156, 156));/*For IE10*/
    background: linear-gradient(rgb(233, 233, 233), rgb(156, 156, 156));
    filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0,startColorstr='#E9E9E9', endColorstr='#9C9C9C');/*For IE7-8-9*/
}
.rightArrowInside{
    width: 0;
    height: 0;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;

    border-left: 10px solid rgb(230, 26, 26);
    position: absolute;
    top: 50%;
    left: 50%;
    margin-top: -10px;
    margin-left: -5px;
}
/*item left container with thumbnail_image*/
.itemLeft{
    width:60px;
    height: 50px;
    z-index: 100;
}
/*item right container with title and description*/
.itemRight{
    position: absolute;
    right: 0px;
    left: 70px;
    top: 5px;
    font-family: Arial,Helvetica,sans-serif;
}
.itemRight .title{
    color: rgb(0, 0, 0);
    width: 100%;
    font-size: 13px;
    font-weight: bold;
}
.itemRight .description{
    color: rgb(41, 41, 41);
    width: 100%;
    font-size: 11px;
    padding: 2px 50px 5px 0px;
}
.itemLeft .thumbnail_image{
    -moz-box-shadow: 0 0 2px rgb(255, 255, 255);
    -webkit-box-shadow: 0 0 2px rgb(255, 255, 255);
    box-shadow: 0 0 2px rgb(255, 255, 255);
    height: 100%;
    margin: 5px 5px 5px 5px;
}

.item:hover{
	width:250px;
	height:100%;

    background: rgb(233, 233, 233);
}

.itemSelected{
    background: rgb(233, 233, 233);
}

.itemUnselected{
    background: rgb(192, 192, 192);
}





/**
 *
 * Horizontal Scrollbar
 *
 */
.myScrollbarH {
    position:absolute;
    z-index:100;
    height: 6px;
    bottom: 1px;
    left:1px;
    right:1px
}

.myScrollbarH > div {
    position:absolute;
    z-index:100;
    height:100%;

    /* The following is probably what you want to customize */
    background-image: -webkit-gradient(linear, 0 0, 100% 0, from(rgb(128, 128, 128)), to(rgb(68, 68, 68)));
    background-image:-moz-linear-gradient(top, rgb(0, 204, 255), rgb(0, 204, 255));
    background-image:-o-linear-gradient(top, rgb(0, 204, 255), rgb(0, 204, 255));
    background-image: -ms-linear-gradient(top left, #868686 0%, #555555 100%);/*IE9,IE10*/
    /*border:1px solid #900;*/
    -webkit-background-clip:padding-box;
    -moz-background-clip:padding-box;
    -o-background-clip:padding-box;
    background-clip:padding-box;

    -webkit-box-sizing:border-box;
    -moz-box-sizing:border-box;
    -o-box-sizing:border-box;
    box-sizing:border-box;

    -webkit-border-radius:4px;
    -moz-border-radius:4px;
    -o-border-radius:4px;
    border-radius:4px;

    -webkit-box-shadow:inset 1px 1px 0 rgba(255,255,255,0.5);
    -moz-box-shadow:inset 1px 1px 0 rgba(255,255,255,0.5);
    -o-box-shadow:inset 1px 1px 0 rgba(255,255,255,0.5);
    box-shadow: inset 1px 1px 0 rgba(253, 253, 253, 0.5);
}



.item, .scrollbar, .scrollbarBg{
	cursor:pointer;
}

