/** Cleaner version of the plain rectangles AP style **/
.flat-primary,
.flat-secondary {
	display: block;
	width: 100%;
	cursor: pointer;
	font-size: 14px;
	line-height: 30px;
	font-weight: normal;
	white-space: nowrap;
	background-repeat: repeat-x;
	text-align: center;
}
.flat-primary {
	color: #fff;
	background-color: #3277cb;
	background-image: linear-gradient(to bottom, #3da9e8, #3277cb);
	padding: 1ch 2ch;
	border: none;
}
.flat-secondary {
	color: #333;
	text-shadow: 0 1px 1px rgba(255,255,255,0.75);
	background-color: #E6E6E6;
	background-image: linear-gradient(#fff, #E6E6E6);
	padding: 1ch 2ch;
	border: 1px solid #ddd;
}
