/* CSS Document */

/* - - - - - ROUNDED CORNERS */
.roundedCorners {
	-moz-border-radius: 8px;
	-webkit-border-radius: 8px;
}
 
.roundedTopCorners {
	-moz-border-radius-topleft: 8px;
	-webkit-border-top-left-radius: 8px;
	-moz-border-radius-topright: 8px;
	-webkit-border-top-right-radius: 8px;
}
 
.roundedBottomCorners {
	-moz-border-radius-bottomleft: 8px;
	-webkit-border-bottom-left-radius: 8px;
	-moz-border-radius-bottomright: 8px;
	-webkit-border-bottom-right-radius: 8px;
}

.roundedTopleftBottomRightCorners {
	-moz-border-radius-topleft: 8px;
	-webkit-border-top-left-radius: 8px;
	-moz-border-radius-bottomright: 8px;
	-webkit-border-bottom-right-radius: 8px;
}