 /*.rating_bar {*/
    /*this class creats 5 stars bar with empty stars */
    /*each star is 16 px, it means 5 stars will make 80px together */
    /*width: 71px;*/
    /*height of empty star*/
    /*height: 16px;*/
    /*background image with stars */
    /*background: url('../../../../../images/star.png');*/
    /*which will be repeated horizontally */
    /*background-repeat: repeat-x;*/
    /* as we are using sprite image, we need to position it to use right star, 
    //0 0 is for empty */
    /*background-position: 0 0;*/
    /* align inner div to the left */
    /*text-align: left;*/
    
/*}*/
.rating_barstar {
    /* float: unset; */
    width: 71px;
    height: 15px;
    background: url(../../../../../images/star.png);
    background-repeat: repeat-x;
    background-position: 0 0;
    text-align: left;
    display: inline-block;
   /*  margin-top: 6px; */
    position: absolute;
    /*top: 32px;*/
    /*left: 48px;*/
}
.rating_star {
    /* height of full star is the same, we won't specify width here */

    height: 15px;
    /* background image with stars */
    background: url('../../../../../images/star.png');
    /* now we will position background image to use 16px from top, 
    //which means use full stars */
    background-position: 0 -14px;
    /* and repeat them horizontally */
    background-repeat: repeat-x;
}

/*
  input[type=radio].css-checkbox {
              position:absolute; z-index:-1000; left:-1000px; overflow: hidden; clip: rect(0 0 0 0); height:1px; width:1px; margin:-1px; padding:0; border:0;
            }

            input[type=radio].css-checkbox + label.css-label {
              padding-left:45px;
              height:40px; 
              display:inline-block;
              line-height:40px;
              background-repeat:no-repeat;
              background-position: 0 0;
              font-size:40px;
              vertical-align:middle;
              cursor:pointer;

            }

            input[type=radio].css-checkbox:checked + label.css-label {
              background-position: 0 -40px;
            }
            label.css-label {
        background-image:url('../../../../../images/csscheckbox_01.png');
        -webkit-touch-callout: none;
        -webkit-user-select: none;
        -khtml-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
        user-select: none;
      }*/