/*@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_iconsregular';
    src: url('heydings/heydings_icons-webfont.eot');
    src: url('heydings/heydings_icons-webfont.eot?#iefix') format('embedded-opentype'),
         url('heydings/heydings_icons-webfont.woff') format('woff'),
         url('heydings/heydings_icons-webfont.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;

}

#ca-container h1,  #ca-container h2, #ca-container h3, #ca-container p { font-family: "Trebuchet MS", Arial, Helvetica, sans-serif; }
#ca-container h2 { margin: 20px 0; }
#ca-container h3 { margin: 20px 0 25px 0; }


#ca-container{
	width:940px;
	padding:15px 0px 25px;
	height: 190px;
}


.ca-menu{
	padding: 0px;
	width: 940px;
	margin: 0px;
}


.ca-menu li{
    width: 300px;
    height: 190px;
    overflow: hidden;
    position: relative;
    float: left;
    border: 5px solid #b4c8d2;
    background: #FFF;
/*  box-shadow: 1px 1px 2px rgba(0,0,0,0.2);*/
    margin-right: 5px;
    transition: all 300ms linear;
}



.ca-menu li + li + li{
    margin-right: 0px;
}



.ca-icon{
    font-family: 'heydings_iconsregular', cursive;
    color: #b4c8d2;
	opacity:0.25;
	filter:alpha(opacity=25); /* For IE8 and earlier */
    font-size: 90px !important;
    text-shadow: 1px 0px 1px rgba(255,255,255,0.7);
    line-height: 170px;
    position: absolute;
    width: 100%;
    height: 50%;
    left: 0px;
    top: 0px;
    text-align: center;
    transition: all 200ms linear;
}


.ca-content{
    position: absolute;
    left: 0px;
    width: 100%;
    height: 50%;
    top: 0%;
}


.ca-main{
    font-size: 32px !important;
    color: #005382;
	line-height:22px;
/*    opacity: 0.8;*/
    text-align: center;
    transition: all 200ms linear;
}

.ca-main-b{
    font-size: 24px;
    font-weight: bold;
    color: #005382;
    line-height:16px;
/*    opacity: 0.8;*/
    text-align: center;
    transition: all 200ms linear;
}

.ca-sub{
    text-align:center;
    font-size: 24px;
    color: #01aef0;
	line-height:17px;
/*    opacity: 0.8;*/
    transition: all 200ms linear;
}

.ca-sub-b{
    text-align:center;
    font-size: 18px !important;
    color: #01aef0;
    line-height:15px;
/*    opacity: 0.8;*/
    transition: all 200ms linear;
}

.ca-sub-c{
    text-align:center;
    font-size: 21px !important;
    color: #01aef0;
    line-height:27px;
/*    opacity: 0.8;*/
    transition: all 200ms linear;
}

.ca-sub2{
    text-align:center;
    font-size: 14px !important;
/*    color: #666;*/
	line-height:18px;
/*    opacity: 0.8;*/
    transition: all 200ms linear;
}

.ca-button{
	height:25px;
	border:none;
	background: #ec8c1b;
	font-size:12px !important;
	color: #FFF;
	cursor:pointer;
  }

.ca-button:hover{
	height:25px;
	border:none;
	background: #ec8c1b;
	font-size:12px !important;
	color: #FFF;
	cursor:pointer;
  }


.ca-menu li:hover{
    background:#b4c8d2;
}
.ca-menu li:hover .ca-icon{
    color: #FFF;
    font-size: 90px !important;
    opacity: 0.1;
    animation: moveFromLeft 400ms ease;
}
.ca-menu li:hover .ca-main{
    color: #FFF;
    animation: moveFromRight 300ms ease;
}
.ca-menu li:hover .ca-sub{
    color: #005382;
    animation: moveFromLeft 500ms ease;
}

.ca-menu li:hover .ca-sub-b{
    color: #005382;
    animation: moveFromLeft 500ms ease;
}

.ca-menu li:hover .ca-sub-c{
    color: #005382;
    animation: moveFromLeft 500ms ease;
}

.ca-menu li:hover .ca-sub2{
    color: #005382;
    animation: moveFromBottom 500ms ease;
}

@-webkit-keyframes moveFromLeft{
    from {
        -webkit-transform: translateX(-100%);
    }
    to {
        -webkit-transform: translateX(0%);
    }
}
@-moz-keyframes moveFromLeft{
    from {
        -moz-transform: translateX(-100%);
    }
    to {
        -moz-transform: translateX(0%);
    }
}
@-ms-keyframes moveFromLeft{
    from {
        -ms-transform: translateX(-100%);
    }
    to {
        -ms-transform: translateX(0%);
    }
}

@-webkit-keyframes moveFromRight {
    from {
        -webkit-transform: translateX(100%);
    }
    to {
        -webkit-transform: translateX(0%);
    }
}
@-moz-keyframes moveFromRight {
    from {
        -moz-transform: translateX(100%);
    }
    to {
        -moz-transform: translateX(0%);
    }
}
@-ms-keyframes moveFromRight {
    from {
        -ms-transform: translateX(100%);
    }
    to {
        -ms-transform: translateX(0%);
    }
}

@-webkit-keyframes moveFromBottom {
    from {
        -webkit-transform: translateY(100%);
    }
    to {
        -webkit-transform: translateY(0%);
    }
}
@-moz-keyframes moveFromBottom {
    from {
        -moz-transform: translateY(100%);
    }
    to {
        -moz-transform: translateY(0%);
    }
}
@-ms-keyframes moveFromBottom {
    from {
        -ms-transform: translateY(100%);
    }
    to {
        -ms-transform: translateY(0%);
    }
}
