
.styled{

}
.styled div {
     font: 'Helvetica Neue', 'Helvetica','Arial', sans-serif;
    color: #333;
  display: inline-block;
  margin-left: 10px;
  font-size: 20px;
  font-weight: 100;
  line-height: 1;
  text-align: right;
  position:relative;
  margin-right:10px;
  text-align: center;
}

.styled div::after{
    content:":";
    position:absolute;
    top:0;
    right:-14px;
    
}

.styled div:last-child::after{
    content:"";
}

/* IE7 inline-block hack */
*+html .styled div{
  display: inline;
  zoom: 1;
}
.styled div:first-child {
  margin-left: 0;
}
.styled div span {
  display: block;
  padding-top: 3px;
  font-size: 12px;
  font-weight: normal;
  text-transform: uppercase;
  text-align: center;
}
