@font-face {
    font-family: 'WebSymbolsRegular';
    src: url('websymbols/websymbols-regular-webfont.eot');
    src: url('websymbols/websymbols-regular-webfont.eot?#iefix') format('embedded-opentype'),
        url('websymbols/websymbols-regular-webfont.woff') format('woff'),
        url('websymbols/websymbols-regular-webfont.ttf') format('truetype'),
        url('websymbols/websymbols-regular-webfont.svg#WebSymbolsRegular') format('svg');
    font-weight: normal;
    font-style: normal;
}
h2,h3{
	font-family: 'Terminal Dosis', Arial, sans-serif;
	font-size: 100%;
	font-weight: normal;
	padding: 0px;
	margin: 0px;
}
h1{
	font-family: 'Tangerine', serif;
	font-size: 48px;
	font-weight: normal;
	padding: 0px;
	margin: 0px;
}
.ca-menu{
	padding:5;
	width: 200px;
	margin-top: auto;
	margin-right: auto;
	margin-bottom: auto;
	margin-left: auto;
}
.ca-menu li{
	width: 200px;
	height: 50px;
	overflow: hidden;
	position: relative;
	display: block;
	background: #fff;
	-webkit-box-shadow: 1px 1px 2px rgba(0,0,0,0.2);
	-moz-box-shadow: 1px 1px 2px rgba(0,0,0,0.2);
	box-shadow: 1px 1px 2px rgba(0,0,0,0.2);
	margin-bottom: 4px;
	-webkit-transition: all 300ms linear;
	-moz-transition: all 300ms linear;
	-o-transition: all 300ms linear;
	-ms-transition: all 300ms linear;
	transition: all 300ms linear;
}
.ca-menu li:last-child{
    margin-bottom: 0px;
}
.ca-menu li a{
	text-align: left;
	width: 100px;
	height: 50px;
	display: block;
	color: #333;
	position: relative;
	text-decoration: none;
}
.ca-icon{
	font-family: 'WebSymbolsRegular', cursive;
	font-size: 20px;
	text-shadow: 0px 0px 1px #333;
	line-height: 90px;
	position: absolute;
	width: 20px;
	left: 0px;
	text-align: center;
	-webkit-transition: all 300ms linear;
	-moz-transition: all 300ms linear;
	-o-transition: all 300ms linear;
	-ms-transition: all 300ms linear;
	transition: all 300ms linear;
}
.ca-content{
	position: absolute;
	left: 0px;
	width: 190px;
	height: 50px;
	top: 0px;
}
.ca-main{
	font-size: 22px;
	-webkit-transition: all 300ms linear;
	-moz-transition: all 300ms linear;
	-o-transition: all 300ms linear;
	-ms-transition: all 300ms linear;
	transition: all 300ms linear;
	
}
.ca-sub{
	font-size: 14px;
	color: #930;
	-webkit-transition: all 300ms linear;
	-moz-transition: all 300ms linear;
	-o-transition: all 300ms linear;
	-ms-transition: all 300ms linear;
	transition: all 300ms linear;
	
}
.ca-menu li:hover{
	background: #f9ddc5;
}
.ca-menu li:hover .ca-icon{
	font-size: 20px;
	color: #259add;
	opacity: 0.8;
	text-shadow: 0px 0px 13px #fff;
}
.ca-menu li:hover .ca-main{
	opacity: 1;
	color:#990000;
	-webkit-animation: moveFromTop 300ms ease-in-out;
	-moz-animation: moveFromTop 300ms ease-in-out;
	-ms-animation: moveFromTop 300ms ease-in-out;
}
.ca-menu li:hover .ca-sub{
	opacity: 1;
	-webkit-animation: moveFromBottom 300ms ease-in-out;
	-moz-animation: moveFromBottom 300ms ease-in-out;
	-ms-animation: moveFromBottom 300ms ease-in-out;
	color: #000;
}
@-webkit-keyframes moveFromBottom {
    from {
        opacity: 0;
        -webkit-transform: translateY(200%);
    }
    to {
        opacity: 1;
        -webkit-transform: translateY(0%);
    }
}
@-moz-keyframes moveFromBottom {
    from {
        opacity: 0;
        -moz-transform: translateY(200%);
    }
    to {
        opacity: 1;
        -moz-transform: translateY(0%);
    }
}
@-ms-keyframes moveFromBottom {
    from {
        opacity: 0;
        -ms-transform: translateY(200%);
    }
    to {
        opacity: 1;
        -ms-transform: translateY(0%);
    }
}

@-webkit-keyframes moveFromTop {
    from {
        opacity: 0;
        -webkit-transform: translateY(-200%);
    }
    to {
        opacity: 1;
        -webkit-transform: translateY(0%);
    }
}
@-moz-keyframes moveFromTop {
    from {
        opacity: 0;
        -moz-transform: translateY(-200%);
    }
    to {
        opacity: 1;
        -moz-transform: translateY(0%);
    }
}
@-ms-keyframes moveFromTop {
    from {
        opacity: 0;
        -ms-transform: translateY(-200%);
    }
    to {
        opacity: 1;
        -ms-transform: translateY(0%);
    }
}
