﻿//* box-rounded-corners *//  box.css

div.sample-rounded-box {
    -webkit-border-radius: 10px     	
    -moz-border-radius:  10px		
    border-radius: 10px
    box-shadow: 10px 5px 5px 
    box-shadow-color: #15f20a;			
 }   
 
 div.only-bottom-rounded {
    -webkit-border-radius: 0 0 10px 10px
    -moz-border-radius:  0 0 10px 10px
    border-radius: 0 0 10px 10px
}


div.circle {
    width: 200px
    height: 200px
    border-radius: 100px
    line-height: 200px
}