.ca-menu {
	padding: 0 0 0 10px;
	margin: 0px auto;
}
.ca-menu li {
	font-family: 'Tenor Sans', sans-serif;
	width: 100px;
	height: 100px;
	border: 3px solid #ac8967;
	overflow: hidden;
	position: relative;
	float:left;
	margin-left:-12px;
	-webkit-box-shadow: 2px 2px 5px rgba(0,0,0,1.0);
	-moz-box-shadow: 2px 2px 5px rgba(0,0,0,1.0);
	box-shadow: 2px 2px 5px rgba(0,0,0,1.0);
	text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
	-webkit-border-radius: 125px;
	-moz-border-radius: 125px;
	border-radius: 125px;
	-webkit-transition: all 400ms linear;
	-moz-transition: all 400ms linear;
	-o-transition: all 400ms linear;
	-ms-transition: all 400ms linear;
	transition: all 400ms linear;
	background-color: #b59b82;
	background-image: linear-gradient(to bottom, #d5b89b, #9b6e4d); /* required first in the list for IE11 */
	background-image: -webkit-gradient(linear, left top, left bottom, from(#d5b89b), to(#9b6e4d));
	background-image: -webkit-linear-gradient(top, #d5b89b, #9b6e4d);
	background-image: -moz-linear-gradient(top, #d5b89b, #9b6e4d);
	background-image: -webkit-linear-gradient(top, #d5b89b, #9b6e4d);
	background-image: -o-linear-gradient(top, #d5b89b, #9b6e4d);
	background-image: ms-linear-gradient(to bottom, #d5b89b, #9b6e4d);
	-pie-background: linear-gradient(to bottom, #d5b89b, #9b6e4d);

}
.ca-menu li:last-child {
	margin-right: 0px;
}
.ca-menu li h2
{
	font-weight: normal !important;	
}
.ca-menu li a {
	text-align: left;
	width: 100%;
	height: 100%;
	display: block;
	color: #fff;
	position: relative;
}
.ca-main {
	font-size: 14px;
	position: relative;
	top: 18px;
	opacity: 0.8;
	text-align: center;
	color: #fff;
}
.ca-sub {
	display: none;
}
.ca-menu li:hover {
	border-color: #572618;
	z-index: 999;
	background-image: -webkit-gradient(linear, left top, left bottom, from(#9b6e4d), to(#d5b89b));
	background-image: -webkit-linear-gradient(top, #9b6e4d, #d5b89b);
	background-image: -moz-linear-gradient(top, #9b6e4d, #d5b89b);
	background-image: -webkit-linear-gradient(top, #9b6e4d, #d5b89b);
	background-image: -o-linear-gradient(top, #9b6e4d, #d5b89b);
	background-image: ms-linear-gradient(to bottom, #9b6e4d, #d5b89b);
	-pie-background: linear-gradient(to bottom, #9b6e4d, #d5b89b);
	-webkit-transform: scale(1.2);
	-moz-transform: scale(1.2);
	-o-transform: scale(1.2);
	-ms-transform: scale(1.2);
	transform: scale(1.2);
}
.ca-menu li:hover .ca-main {
	color: #fff;
	text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
	-webkit-animation: moveFromBottom 500ms ease;
	-moz-animation: moveFromBottom 500ms ease;
	-ms-animation: moveFromBottom 500ms ease;
}
 @-webkit-keyframes moveFromBottom {
 from {
 -webkit-transform: translateY(200%) scale(0.5);
 opacity: 0;
}
to {
	-webkit-transform: translateY(0%) scale(1);
	opacity: 1;
}
}
@-moz-keyframes moveFromBottom {
 from {
 -moz-transform: translateY(200%) scale(0.5);
 opacity: 0;
}
to {
	-moz-transform: translateY(0%) scale(1);
	opacity: 1;
}
}
@-ms-keyframes moveFromBottom {
 from {
 -ms-transform: translateY(200%) scale(0.5);
 opacity: 0;
}
to {
	-ms-transform: translateY(0%) scale(1);
	opacity: 1;
}
}
