/* 
    Document   : musicList
    Created on : Nov 30, 2013, 4:33:59 PM
    Author     : smileman_x
    Description:
        Purpose of the stylesheet follows.
*/

/* 
   TODO customize this sample style
   Syntax recommendation http://www.w3.org/TR/REC-CSS2/
*/
#scroller {
    width: inherit;
    color: #333333;
    border-top: 1px solid #E5E5E5;
    height: 350px;
    margin: 10px 0 10px 0;
}

#scroller ul{
    /*            border: solid 1px #000000;*/
    width: 100%;
    padding: 0 0 0 10px;
    margin: 5px 15px 0 5px;  
} 

#scroller ul li
{
    width: inherit;
    list-style-type: none;
    vertical-align: middle;
}

.soundItem__content {
    font-size: 11px;
    line-height: 20px;

    text-shadow: 0 1px 0 rgba(255, 255, 255, 0.9);
}
.soundItem__title {
    font-size: 15px;
    font-weight: 700;
    text-shadow: 0 1px 0 rgba(255, 255, 255, 0.9);
    
    margin-top: -20px;
    /*line-height: 1.5em;*/
    /*font-weight: bold;*/
    /*font-size: 15px;*/
    /*color: #1872ff;*/
    width: 415px;    
    overflow: hidden;
    text-align: left;
    text-decoration: none;
    text-overflow: ellipsis;
    vertical-align: top;
    white-space: nowrap;
  
}

.soundItem {
    padding: 0 0 0 0;
    overflow: hidden;
    /*    background: none repeat scroll 0 0 #F5F5F5;*/
    margin: 0 0 0 0;
    position: relative;
    cursor: pointer;
    vertical-align: middle;
    margin-bottom: 5px;

}
.soundItem :hover{
    color: #FF6600;
}

/*
Background Color
*/
#scroller ul li:nth-child(odd) {
    background: none repeat scroll 0 0 #EFEFEF;
}
#scroller ul li:nth-child(even) {
    background: none repeat scroll 0 0 #F5F5F5;
}

/*
Image Preview
*/
.soundItem__image {
    margin-right: 5px;
    width: 50px; 
    height: 50px;
    vertical-align: middle;
    font-weight: bold;
    font-size: 15px;
    font-weight: 700;
    text-shadow: 0 1px 0 rgba(255, 255, 255, 0.9);
}

/*
Title Name
*/
.g-text-shadow {
    text-shadow: 0 1px 0 rgba(255, 255, 255, 0.9);
}


#musicBox{
    min-width: 490px;
    background-color: #F5F5F5;
    border : 1px solid #E5E5E5;

    -webkit-box-shadow: 7px 7px 5px rgba(50, 50, 50, 0.75);
    -moz-box-shadow:    7px 7px 5px rgba(50, 50, 50, 0.75);
    box-shadow:         7px 7px 5px rgba(50, 50, 50, 0.75);

    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
}

.musicTitleTag{
    line-height: 1.5em;
    font-weight: bold;
    font-size: 15px;
    color: #1872ff;
    width: 240px;    
    overflow: hidden;
    text-align: left;
    text-decoration: none;
    text-overflow: ellipsis;
    vertical-align: top;
    white-space: nowrap;

    /*    font-size: 14px;
        color: #1872ff;
        font-weight: bold;*/
}


#ivrSection{
    padding-top: 10px;

    font-family: 'Interstate','Lucida Grande','Lucida Sans Unicode','Lucida Sans',Garuda,Verdana,Tahoma,sans-serif;

    font-weight: 400;
    line-height: 18px;
}

.ivrTitle{
    line-height: 25px;
    font-size: 13px;
    font-weight: bold;
}
.ivrDesc{
    font-size: 13px;
}


/*
Play Button
*/
.playButton.playing:before {
    background-image: url("../../../NContent/css/images/button/pause.png");
}

.playButton:before {
    background-image: url("../../../NContent/css/images/button/play.png");
}


.playButton {
    background-color: #FF6600;
    background-image: -moz-linear-gradient(center top , #FF6600, #FF3300);
    border: 1px solid #CC5200;
    border-radius: 100%;
    display: inline-block;
    height: 43px;
    margin: 0;
    overflow: hidden;
    padding: 0;
    position: relative;
    text-indent: 43px;
    vertical-align: middle;
    width: 43px;
}
.playButton:focus {
    outline: medium none;
}
.playButton:disabled, .playButton.disabled {
    opacity: 0.4;
}
.playButton:before, .playButton:before {
    background-repeat: no-repeat;
    content: "";
    display: block;
    height: 43px;
    left: -1px;
    position: absolute;
    top: -1px;
    width: 43px;
}