.ca-menu{
    padding:0;
    margin:0px 0 0 0;
    width: 980px;
	font-family: 'Monda', sans-serif;
	line-height:30px;

}
.ca-menu li{
    width: 221px !important;
    height: 130px;
	margin:0;
    overflow: hidden;
    position: relative;
    float: left;
	padding:12px 0 0 0;
    border: 5px solid #fff;
    background: #fff;
-moz-box-shadow:0px 0px 4px 2px rgba(174, 174, 174, 0.70);
-webkit-box-shadow:0px 0px 4px 2px rgba(174, 174, 174, 0.70);
box-shadow:0px 0px 4px 2px rgba(174, 174, 174, 0.70);
    margin-right: 18px;
    -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-right: 0px;
}
.ca-menu li a{
    text-align: left;
    width: 100%;
    height: 100%;
    display: block;
    color: #333;
    position: relative;
}
.ca-icon{
    color: #c5e4f4;
    text-shadow: 1px 0px 1px rgba(255,255,255,0.7);
    line-height: 150px;
    position: absolute;
    width: 100%;
    height: 50%;
    left: 0px;
    top: 0px;
    text-align: center;
	-webkit-transition: all 200ms linear;
    -moz-transition: all 200ms linear;
    -o-transition: all 200ms linear;
    -ms-transition: all 200ms linear;
    transition: all 200ms linear;
}
.ca-content{
    position: absolute;
    left: 0px;
    width: 100%;
    height: 50%;
    top: 78%;
}
.ca-main{
    font-size: 21px;
    color: #2d2d2d;
	font-weight:normal;
    text-align: center;
	margin-top:1px;

}
.ca-sub{
    text-align:center;
    font-size: 13px;
    color: #0e798f;
	font-weight:normal;
	font-family:Arial, Helvetica, sans-serif;
    line-height: 20px;
	margin-top:10px;
	margin-left:-14px;

}
.ca-menu li:hover{
    background-color: #fff;
}
.ca-menu li:hover .ca-icon{
    text-shadow: 0px 0px 20px #c5e4f4;
    color: transparent;
    -webkit-animation: moveFromTop 300ms ease;
    -moz-animation: moveFromTop 300ms ease;
    -ms-animation: moveFromTop 300ms ease;

}
.ca-menu li:hover .ca-main{
    color: #1e6d7b;
	font-size:21px;
    -webkit-animation: moveFromTop 300ms ease;
    -moz-animation: moveFromTop 300ms ease;
    -ms-animation: moveFromTop 300ms ease;

}
.ca-menu li:hover .ca-sub{
    color: #000;
    -webkit-animation: moveFromBottom 500ms ease;
    -moz-animation: moveFromBottom 500ms ease;
    -ms-animation: moveFromBottom 500ms ease;
}
@-webkit-keyframes moveFromTop {
    from {
        -webkit-transform: translateY(-300%);
    }
    to {
        -webkit-transform: translateY(0%);
    }
}
@-moz-keyframes moveFromTop {
    from {
        -moz-transform: translateY(-300%);
    }
    to {
        -moz-transform: translateY(0%);
    }
}
@-ms-keyframes moveFromTop {
    from {
        -ms-transform: translateY(-300%);
    }
    to {
        -ms-transform: translateY(0%);
    }
}

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