div.priceItem{
    margin:0;
    border: 1px solid transparent;
	border-radius: 5px;
	margin-bottom: .5em;
	box-sizing: border-box;
}
div.priceItem:hover{
    border: 1px solid #bfbfbf;
}
div.priceItem:nth-child(odd){
   background-color: #E4E4E4;
}
div.priceRow{
    padding: 0 1em;    
    cursor: pointer;
}

div.priceName{
    width:60%;
    float:left;
}
div.pricePrice{
    width:20%;
    float:right;
    text-align:right;
}