/* Using CSS3 for some visual enhancements. (Will be degraded
	nicely for non-CSS3 browsers.)
-------------------------------------------------------------*/

/* ROUNDED ELEMENTS
--------------------------------------------------------------*/
#ja-wrapper, /*layout*/
.form-button, .form-button-alt /*form*/ {
	border-radius: 5px;
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px; 
}

input.input-text, select, textarea, /*form*/
.one-page-checkout .step-count, table.view-by strong, .group-select .legend /*others*/ {
	border-radius: 3px;
	-moz-border-radius: 3px;
	-webkit-border-radius: 3px; 
}

#ja-header .main {
	border-top-right-radius: 10px;
	border-top-left-radius: 10px;
	-moz-border-radius-topleft: 10px;  
	-moz-border-radius-topright: 10px;
	-webkit-border-top-right-radius: 10px;  
	-webkit-border-top-left-radius: 10px; 
}

#ja-footer .main {
	border-bottom-right-radius: 10px;
	border-bottom-left-radius: 10px;
	-moz-border-radius-bottomleft: 10px;  
	-moz-border-radius-bottomright: 10px;
	-webkit-border-bottom-right-radius: 10px;  
	-webkit-border-bottom-left-radius: 10px; 
}