

.hideMe {
    display: none;
}


.cursor-pointer {
    cursor: pointer;

}

.ellipsis{
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}



.blinkMe {
    -webkit-animation-name: blinker;
    -webkit-animation-duration: 1s;
    -webkit-animation-timing-function: linear;
    -webkit-animation-iteration-count: infinite;

    -moz-animation-name: blinker;
    -moz-animation-duration: 1s;
    -moz-animation-timing-function: linear;
    -moz-animation-iteration-count: infinite;

    animation-name: blinker;
    animation-duration: 1s;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
}

@-moz-keyframes blinker {
    0% { opacity: 1.0; }
    50% { opacity: 0.0; }
    100% { opacity: 1.0; }
}

@-webkit-keyframes blinker {
    0% { opacity: 1.0; }
    50% { opacity: 0.0; }
    100% { opacity: 1.0; }
}

@keyframes blinker {
    0% { opacity: 1.0; }
    50% { opacity: 0.0; }
    100% { opacity: 1.0; }
}


.client_logos img{
    width: 90px;
}




.pricing-title2 {
    /*background-color:transparent !important;*/
    background-color: #f8b603;
    height:75px;
    margin-top: 1px;

}


.pricing-title2 h3{
    margin-bottom: -17px;
    color:#fff;
    font-size:30px;
    font-weight:300;
    padding: 10px;

}

.pricing-title2 p{
    color: #fff;
    padding-left: 10px;

}

.special-details{
    display: none;
}


#div-cpnav{
    position: absolute;
    right: -2px;
    top: 72px;
    z-index: 10;
    text-align: right;

}