/*рубрикатор из шести пунктов продукции*/

/*только для firefox*/
.ca-menu li a, x:-moz-any-link {
    margin-top: 20px;
}

.ca-menu {
    padding: 0 0 0 0px;
    margin: 0px auto;
    width: 1024px;
    background-color: #808080;
    font-family: 'Cuprum' , sans-serif;
}
.ca-menu li{
    width: 160px;
    height: 200px;
    border: 10px solid;
    border-color:rgba(0, 0, 0,0.65);
    overflow: hidden;
    position: relative;
    float:left;
    /*background: #fff;*/
    background:rgba(255, 255, 255,1);
    margin-left:-45px;
    -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: 55px;
    -moz-border-radius: 55px;
    border-radius: 55px;
    -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: 'Cuprum' , sans-serif;
    font-size: 18px;
    color: #f6f6f6;
    line-height: 60px;
    position: absolute;
    width: 160px;
    height: 200px;
    left: 0px;
    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: 15px;
    position: absolute;
    top: 102px;
    height: 80px;
    width: 110px;
    left: 50%;
    margin-left: -70px;
    opacity: 1;
    text-align: center;
    color: #555;
}
.ca-sub{
    display: none;
}
.ca-menu li:hover {
    border-color: #999999;
    z-index: 99;
    -webkit-transform: scale(1.2);
    -moz-transform: scale(1.2);
    -o-transform: scale(1.2);
    -ms-transform: scale(1.2);
    transform: scale(1.2);
    background-color: #E1E1E1;
}
.ca-menu li:hover .ca-icon{
    color: #000;
    font-size: 60px;
    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{
    margin-left: -55px;
    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;        
    }
}
/*КОНЕЦ БЛОКА рубрикатор из шести пунктов продукции*/