/*
 * Any section, for example, product page contains several sections, each section has a header, content and optional footer 
 */
.section, .section-footer, .section-full {
	background-color: white;
}

.section-full {
	-moz-border-radius: 8px;
	-webkit-border-radius: 8px;
	border-radius: 8px;
	/* for IE9 */
	border-top-right-radius: 8px;
	border-top-left-radius: 8px;
	border-bottom-right-radius: 8px;
	border-bottom-left-radius: 8px;
}

.section-header {
	padding-top: 6px;
 	padding-bottom: 6px;
	font-size: 11px; 
	background-color: #e5e1d2;
}

.section-header.top {
	-moz-border-radius: 8px 8px 0 0;
	-webkit-border-radius: 8px 8px 0 0;
	border-radius: 8px 8px 0 0;
	/* for IE9 */
	border-top-right-radius: 8px;
	border-top-left-radius: 8px;
    
    background-color: #e5e1d2; 
}

.section-header>h4 {
	display: inline-block;
}

.section-header>h4>a {
	font-size: 12px;
}

.section-footer {
 	padding-top: 5px;
 	padding-bottom: 4px;
	font-size: 12px;
	-moz-border-radius: 0 0 8px 8px;
	-webkit-border-radius: 0 0 8px 8px;
	border-radius: 0 0 8px 8px;
	/* for IE9 */
	border-bottom-right-radius: 8px;
	border-bottom-left-radius: 8px;

	/* Since the curls style conflicts the "group" class, we force min-height */
	min-height: 16px;
}

/* Paper bottom curls style */
.curls {
	position: relative;
}
.curls:before, .curls:after {
	position: absolute;
	width: 40%;
	height: 10px;
	content: ' ';
	left: 6px;
	bottom: 14px;
	background: transparent;
	-webkit-transform: skew(-5deg) rotate(-5deg);
    -moz-transform: rotate(-5deg);
	-ms-transform: skew(-5deg) rotate(-5deg);
	-o-transform: skew(-5deg) rotate(-5deg);
	transform: skew(-5deg) rotate(-5deg);
	box-shadow: 0 6px 12px rgba(0, 0, 0, 0.4);
	z-index: -1;
}
.curls:after {
	left: auto;
	right: 6px;
	-webkit-transform: skew(5deg) rotate(5deg);
    -moz-transform: rotate(5deg);
	-ms-transform: skew(5deg) rotate(5deg);
	-o-transform: skew(5deg) rotate(5deg);
	transform: skew(5deg) rotate(5deg);
}

.side-column .curls:before, .side-column .curls:after {
	bottom: 11px;
}

#featured-products .curls:before, #featured-products .curls:after {
	bottom: 17px;
}

.section-footer a {
	color: #474338;
}

/* When just showing a message in the section */
.section-full.message {
	min-height: 80px;
	padding: 15px;
	font-size: 20px;	
	line-height: 1.4em;
}

.section-full.message em {
	display: block;
	margin-bottom: 0.4em;
	font-size: 1.1em;
	font-weight: bold;	
}