/* 
    Created on : Feb 7, 2014, 1:33:56 AM
    Author     : Karen
*/

/************ ANIMATION ****************/

.panel {
    width: 200px;
    height: 200px;
    margin: auto;
    position: relative;
    cursor: pointer;
}

.card {
    width: 100%;
    height: 100%;
    -o-transition: all .5s;
    -ms-transition: all .5s;
    -moz-transition: all .5s;
    -webkit-transition: all .5s;
    transition: all .5s;
    -webkit-backface-visibility: hidden;
    -ms-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    backface-visibility: hidden;
    position: absolute;
    top: 0px;
    left: 0px;
    border-radius: 15px;
}

.front {
    z-index: 2;
    
}

.back {
    z-index: 1;
    -webkit-transform: rotateX(-180deg);
    -ms-transform: rotateX(-180deg);
    -moz-transform: rotateX(-180deg);  
    transform: rotateX(-180deg);  
    background-image: url(http://www.digitaltrends.com/wp-content/uploads/2011/03/ie-9-icon.jpg);
}

.panel:hover .front {
    z-index: 1;
    -webkit-transform: rotateX(180deg);
    -ms-transform: rotateX(180deg);
    -moz-transform: rotateX(180deg);
    transform: rotateX(180deg);
}

.panel:hover .back {
    z-index: 2;   
    -webkit-transform: rotateX(0deg);
    -ms-transform: rotateX(0deg);
    -moz-transform: rotateX(0deg);
    transform: rotateX(0deg);
    /** my added **/
    opacity:0.4;

}

.card-info {
    font-size: xx-large;
	color: gray;
    font-weight: bold;
    position: absolute;
    top: 60px;
    left: 50px;
}

.price-info {
    font-size: medium;
    font-weight: bold;
    position: absolute;
    top: 8px;
    left: 8px;
    z-index: 2;
}

.code-info {
    font-size: small;
    font-weight: bold;
    position: absolute;
    top: 177px;
    left: 8px;
    z-index: 2;
	color: red;
}


/************************************/

.clear {
    clear: both;
}

#main-menu ul {
    list-style: none;
    text-align: center;
}

.main-menu-left-padding {
    padding-left: 4%;
}

#main-menu ul li {
    display: block;
    float: left;
    width: 16%;
    height: 50px;
    text-align: center;
    padding-top: 20px;
    font-size: 20px;
    font-weight: bold;
    color: white;
    cursor: pointer;
}

#main-menu ul li:hover {
    background-color: pink;    
}

.for-grand {
    background-color: cornflowerblue;
}

.for-all {
    background-color: mediumpurple;
}

.for-parent {
    background-color: goldenrod;
}

.for-second-part {
    background-color: cadetblue;
}

.for-child {
    background-color: palevioletred;
}

.for-collegue {
    background-color: coral;
}

#main-container ul {
    list-style: none;
}

#main-container ul li {
    display: inline-block;
}


/****** CONTACTS *********/
.contacts-top {
    background-color: chartreuse;
    height: 26px;
    font-size: large;
    width: 330px;
    float: right;
    font-family: cursive;
    text-align: right;
    padding: 5px 5px 5px 5px;
}

.contacts-container {
    width: 800px;
    position: absolute;
    left: 50%;
    margin-left: -300px;
}

.contacts-left {
    float: left;
    width: 400px;
    text-align: right;
}

.contacts-right {
    float: right;
    width: 395px;
}

.mrl5px {
    margin-left: 5px;
}

.mrt5px {
    margin-top: 5px;
}

.mrr5px {
    margin-right: 5px;
}

.float-left {
    float: left;
}

.float-right {
    float: right;
}