@charset "utf-8";
/* CSS Document */

.roundTotal {
 /* Add this as a property for a selector to which the effect has to be applied*/
 border-radius:50%;
 /* For Mozilla*/
 -moz-border-radius-topleft:50%;
 -moz-border-radius-topright:50%;
 -moz-border-radius-bottomright:50%;
 -moz-border-radius-bottomleft:50%;
 /*For Webkit*/
 -webkit-border-top-left-radius:50%;
 -webkit-border-top-right-radius:50%;
 -webkit-border-bottom-right-radius:50%;
 -webkit-border-bottom-left-radius:50%;
 }
 .corn20 {
 /* Add this as a property for a selector to which the effect has to be applied*/
 border-radius:20%;
 /* For Mozilla*/
 -moz-border-radius-topleft:20%;
 -moz-border-radius-topright:20%;
 -moz-border-radius-bottomright:20%;
 -moz-border-radius-bottomleft:20%;
 /*For Webkit*/
 -webkit-border-top-left-radius:20%;
 -webkit-border-top-right-radius:20%;
 -webkit-border-bottom-right-radius:20%;
 -webkit-border-bottom-left-radius:20%;
 }
 .corn10 {
 /* Add this as a property for a selector to which the effect has to be applied*/
 border-radius:10%;
 /* For Mozilla*/
 -moz-border-radius-topleft:10%;
 -moz-border-radius-topright:10%;
 -moz-border-radius-bottomright:10%;
 -moz-border-radius-bottomleft:10%;
 /*For Webkit*/
 -webkit-border-top-left-radius:10%;
 -webkit-border-top-right-radius:10%;
 -webkit-border-bottom-right-radius:10%;
 -webkit-border-bottom-left-radius:10%;
 }

