@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;
}

.ca-menu-hidden{
    padding: 0 0 0 15px;
    margin: 0 auto;
    width: 920px;
	position:absolute;
	z-index:100000;
}
.ca-menu-hidden li{
    width: 200px;
    height: 200px;
    overflow: hidden;
    position: relative;
    float:left;
    background: transparent;
    margin-left:-27px;
    -webkit-border-radius: 125px;
    -moz-border-radius: 125px;
    border-radius: 125px;
}
.ca-menu-hidden li a{
    text-align: left;
    width: 100%;
    height: 100%;
    display: block;
    position: relative;
	color:transparent;
}

.ca-menu{
    padding: 0 0 0 15px;
    margin: 0 auto;
    width: 920px;
}
.ca-menu li{
    width: 190px;
    height: 190px;
    border: 10px solid #f6f6f6;
    overflow: hidden;
    position: relative;
    float:left;
    background: #fff;
    margin-left:-27px;
    -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);
    -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;
}

.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{
    font-family: 'WebSymbolsRegular', cursive;
    font-size: 25px;
    color: #f6f6f6;
    line-height: 60px;
    position: absolute;
    width: 100%;
    height: 60px;
    left: 0px;
    top: 20px;
    text-align: center;
    -webkit-transition: all 400ms linear;
    -moz-transition: all 400ms linear;
    -o-transition: all 400ms linear;
    -ms-transition: all 400ms linear;
    transition: all 400ms linear;
}
.ca-main{
    font-size: 17px;
    position: absolute;
    top: 70px;
    height: 80px;
    width: 170px;
    left: 50%;
    margin-left: -85px;
    opacity: 0.8;
    text-align: center;
    color: #555;
}
.ca-menu li:hover{
    border-color: #333;
    z-index: 999;
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -o-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
}
.ca-menu li:hover .ca-icon{
    color:#000;
    font-size: 37px;
    text-shadow: 0px 0px 1px #000;
    -webkit-animation: moveFromBottom 300ms ease;
    -moz-animation: moveFromBottom 300ms ease;
    -ms-animation: moveFromBottom 300ms ease;
}

.ca-menu li:hover .ca-main{
    color: #000;
    -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;        
    }
}

/*Colours*/
/*selected*/
.ca-menu .selected { border: 10px solid #B5B5B5 !important; }
.ca-menu .selected a{ color: #B5B5B5 !important; }
.selected .ca-icon { color:#B5B5B5 !important; }
.selected .ca-main{ color:#B5B5B5 !important; }

/*onload colour*/
.ca-menu .home { border: 10px solid #EA8FB0; }
.ca-menu .home a{ color: #EA8FB0; }
.home .ca-icon { color:#EA8FB0; }
.home .ca-main{ color:#EA8FB0; }

.ca-menu .request { border: 10px solid #3A96C4; }
.ca-menu .request a{ color: #3A96C4; }
.request .ca-icon { color:#3A96C4; }
.request .ca-main{ color:#3A96C4; }

.ca-menu .faq { border: 10px solid #ED976D; }
.ca-menu .faq a{ color: #ED976D; }
.faq .ca-icon { color:#ED976D; }
.faq .ca-main{ color:#ED976D; }

.ca-menu .purchase { border: 10px solid #EFD67A; }
.ca-menu .purchase a{ color: #EFD67A; }
.purchase .ca-icon { color:#EFD67A; }
.purchase .ca-main{ color:#EFD67A; }

.ca-menu .blog { border: 10px solid #AD4F97; }
.ca-menu .blog a{ color: #AD4F97; }
.blog .ca-icon { color:#AD4F97; }
.blog .ca-main{ color:#AD4F97; }

/*hover colour*/
.ca-menu .home:hover{ border-color: #EB4781 !important; }
.ca-menu .home:hover .ca-icon{ color: #EB4781 !important; }
.ca-menu .home:hover .ca-main{ color: #EB4781 !important; }

.ca-menu .request:hover{ border-color: #0083C6 !important; }
.ca-menu .request:hover .ca-icon{ color: #0083C6 !important; }
.ca-menu .request:hover .ca-main{ color: #0083C6 !important; }

.ca-menu .faq:hover{ border-color: #EE6926 !important; }
.ca-menu .faq:hover .ca-icon{ color: #EE6926 !important; }
.ca-menu .faq:hover .ca-main{ color: #EE6926 !important; }

.ca-menu .purchase:hover{ border-color: #F5C502 !important; }
.ca-menu .purchase:hover .ca-icon{ color: #F5C502 !important; }
.ca-menu .purchase:hover .ca-main{ color: #F5C502 !important; }

.ca-menu .blog:hover{ border-color: #AE1B8A !important; }
.ca-menu .blog:hover .ca-icon{ color: #AE1B8A !important; }
.ca-menu .blog:hover .ca-main{ color: #AE1B8A !important; }