/* rounded div */
    #roundedCorner1 {
		border-radius: 25px;
		background: #f5f5f5ff;
		padding: 5px;
		width: 30%;
		height: 100%;
        margin: auto;
	}
     #roundedCorner2 {
		border-radius: 25px;
		background: #f5f5f5ff;
		padding: 5px;
		width: 60%;
		height: 100%;
        margin: auto;
	}
     #roundedCorner3 {
		border-radius: 25px;
		background: #f5f5f5ff;
		padding: 5px;
		width: 90%;
		height: 100%px;
        margin: auto;
	}

/* rounded table  */    
	table.roundedCorners { 
		border: 1px solid Navy;
		border-radius: 15px; 
		border-spacing: 0;
	}
	table.roundedCorners td, 
	table.roundedCorners th { 
		border-bottom: 1px solid Navy;
		padding: 10px; 
	}
	table.roundedCorners tr:last-child > td {
		border-bottom: none;
	}
