@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;
}
@font-face {
    font-family: 'heydings';
    src: url('heydings/heydings_icons.eot');
    src: url('heydings/heydings_icons.eot?#iefix') format('embedded-opentype'),
        url('heydings/heydings_icons.woff') format('woff'),
        url('heydings/heydings_icons.ttf') format('truetype'),
        url('heydings/heydings_icons.svg#heydings') format('svg');
    font-weight: normal;
    font-style: normal;
}
.ca-menu{
	padding:0;
	width: 320px;
	margin-top: 0px;
	margin-right: auto;
	margin-bottom: 15px;
	margin-left: auto;
}
.ca-menu li{
	width: 300px;
	height: 65px;
	overflow: hidden;
	position: relative;
	display: block;
	-webkit-transition: all 300ms linear;
	-moz-transition: all 300ms linear;
	-o-transition: all 300ms linear;
	-ms-transition: all 300ms linear;
	transition: all 300ms linear;
	background-color: #086c91;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #FFF;
}
.ca-menu li:last-child{
    margin-bottom: 0px;
}
.ca-menu li a{
	text-align: left;
	width: 100%;
	height: 100%;
	display: block;
	color: #FFFFFF;
	position: relative;
	text-decoration: none;
}
.ca-icon{
	font-family: heydings, cursive;
	font-size:20px;
	text-shadow: 0px 0px 1px #333;
	line-height: 60px;
	position: absolute;
	width: 55px;
	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-icon2{
	font-family: heydings, cursive;
	font-size:20px;
	text-shadow: 0px 0px 1px #333;
	line-height: 60px;
	position: absolute;
	width: 55px;
	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: 55px;
	width: 250px;
	height: 55px;
	top: 5px;
	font-family: Verdana, Geneva, sans-serif;
}


.ca-main{
	font-size: 20px;
	-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-main2{
	font-size: 20px;
	-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: 13px;
	color: #FFF;
	-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-sub2{
	font-size: 13px;
	color: #FFF;
	-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-color: #FFFFFF;
}
.ca-menu li:hover .ca-icon{
	font-size: 40px;
	color: #fdae03;
	opacity: 0.8;
	text-shadow: 0px 0px 13px #fff;
}
.ca-menu li:hover .ca-icon2{
	font-size: 20px;
	opacity: 1;
}
.ca-menu li:hover .ca-main{
    opacity: 1;
    color:#086c91;
    -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-main2{
    opacity: 1;
    color:#FFFFFF;
}
.ca-menu li:hover .ca-sub{
	color:#086c91;
    opacity: 1;
    -webkit-animation: moveFromBottom 300ms ease-in-out;
    -moz-animation: moveFromBottom 300ms ease-in-out;
    -ms-animation: moveFromBottom 300ms ease-in-out;
}
.ca-menu li:hover .ca-sub2{
	color:#FFFFFF;
    opacity: 1;
}
@-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%);
    }
}
