/*
	CSS - Skype.com
	TABS
*/


/* COMMON RULES
----------------------------------------------------------------------------------------------------*/

.tabSet {
    margin: auto;
    max-width: 960px;
    min-width: 320px;
    padding: 0 30px;
    position: relative;
    z-index: 1;
}

.tabSet .contentBlock {
	box-shadow: 0 0 1px #D2D0CE;
    margin: 0;
    overflow: visible;
    padding: 0;
}

.tabSet .contentBlock .grid {
    margin: 0;
    padding: 0;
}

.tabSet .tab {
	background-color: #FFFFFF;
	border: 1px solid #E4EEF2;
	border-top: 1px solid #FFFFFF;
	border-left: 1px solid #FFFFFF;
  outline: none;
  position: relative;
  cursor: pointer;
}

	.tabSet .grid:last-child .tab {
		border-right: 1px solid #FFFFFF;
	}

	.tabSet .tab.selected {
	    background-color: #00AFF0;
	    border-color: #00AFF0;
	    margin-left: -1px;
	    padding-left: 1px;
	}

	.tabSet .grid:first-child .tab.selected {
	    margin-left: 0;
	    padding-left: 0;
	}

	.tabSet .grid:last-child .tab.selected {
	    border-right: 1px solid #00AFF0;
	}

.tabSet .tab .title {
    bottom: 12px;
	color: #0078CA;
    font-size: 16px;
    left: 0;
    letter-spacing: -0.01em;
    line-height: 25px;
    position: absolute;
    text-align: center;
    top: auto;
    width: 100%;
    z-index: 3;
}

	.tabSet .tab:hover .title,
	.tabSet .tab:focus .title,
	.tabSet .tab:active .title {
		color: #00548D;
	}

	.tabSet .tab.selected .title {
		color: #FFFFFF;
    	font-weight: bold;
	}


/* TAB ARROWS
----------------------------------------------------------------------------------------------------*/

.tabSet .tab .arrow {
    display: none;
    height: 20px;
    left: -1px;
    position: absolute;
    top: 159px;
    width: 101%;
}

	.tabSet .tab.selected .arrow {
	    display: block;
	}

	.tabSet .tab .arrow .arrowImage {
	    *background-image: url("../assets/images/china/arrow-sprite.png");
	    *background-position: -15px 0;
	    height: 13px;
	    left: 50%;
	    margin-left: -12px;
	    position: absolute;
	    width: 22px;
	}

	.tabSet .tab .arrow .arrowImage:before {
	    background-color: #00AFF0;
	    border-color: #00AFF0;
	    border-left: 0 solid #00AAF0;
	    border-style: solid;
	    border-width: 0 3px 3px 0;
	    content: "";
	    display: block;
	    height: 16px;
	    left: 0;
	    position: absolute;
	    -webkit-transform: translate(2px, -10px) rotate(45deg);
	    -ms-transform: translate(2px, -10px) rotate(45deg);
	    transform: translate(2px, -10px) rotate(45deg);
	    width: 16px;
	}


/* IMAGES - GENERAL
----------------------------------------------------------------------------------------------------*/

.tabSet .tab .content .image {
    cursor: pointer;
    display: table;
    height: 158px;
    margin: auto;
    overflow: hidden;
    position: relative;
    width: 100% !important;
}

    .tabSet .tab .content .image .tabTranslate {
      display: table-cell;
      vertical-align: middle;
    }

    .tabSet .tab .content .image .tabImageArea {
	    margin: auto;
	    max-width: 158px;
	    position: relative;
        width: 90%;
    }

	    .tabSet .tab:hover .content .image .tabImageArea,
	    .tabSet .tab:focus .content .image .tabImageArea,
	    .animation .tabSet .tab .content .image .tabImageArea {
	    	width: 100%;
	    }

    .tabSet .tab .content .image .tabImageArea img {
        width: 100%;
        height: auto;
        max-width: 100%;
    }


/* IMAGES - ANIMATION RULES
----------------------------------------------------------------------------------------------------*/

.animation .tabSet .tab .content .image .tabScale {

    -webkit-transform: scaleX(0.9) scaleY(0.9) scaleZ(1);
    transform: scaleX(0.9) scaleY(0.9) scaleZ(1);

    -webkit-animation: tabScale_Off 0.283333s 0ms 1 normal linear; /* Safari 4+ */
    -moz-animation:    tabScale_Off 0.283333s 0ms 1 normal linear; /* Fx 5+ */
    -o-animation:      tabScale_Off 0.283333s 0ms 1 normal linear; /* Opera 12+ */
    animation:         tabScale_Off 0.283333s 0ms 1 normal linear; /* IE 10+ */
}

@media only screen and (min-width: 601px) {

    .animation .tabSet .tab:focus .content .image .tabScale,
    .animation .tabSet .tab:hover .content .image .tabScale {

        -webkit-transform: scaleX(1) scaleY(1) scaleZ(1);
        transform: scaleX(1) scaleY(1) scaleZ(1);

        -webkit-animation: tabScale_On 0.283333s 0ms 1 normal linear; /* Safari 4+ */
        -moz-animation:    tabScale_On 0.283333s 0ms 1 normal linear; /* Fx 5+ */
        -o-animation:      tabScale_On 0.283333s 0ms 1 normal linear; /* Opera 12+ */
        animation:         tabScale_On 0.283333s 0ms 1 normal linear; /* IE 10+ */
    }

    .animation .tabSet .tab:active .content .image .tabScale {

        -webkit-transform: scaleX(0.96) scaleY(0.96) scaleZ(1);
        transform: scaleX(0.96) scaleY(0.96) scaleZ(1);

        -webkit-animation: tabScale_Down 0.05s 0ms 1 normal linear; /* Safari 4+ */
        -moz-animation:    tabScale_Down 0.05s 0ms 1 normal linear; /* Fx 5+ */
        -o-animation:      tabScale_Down 0.05s 0ms 1 normal linear; /* Opera 12+ */
        animation:         tabScale_Down 0.05s 0ms 1 normal linear; /* IE 10+ */
    }

}

.animation .tabSet .tab.selected .content .image .tabScale,
.animation .tabSet .tab.selected:focus .content .image .tabScale,
.animation .tabSet .tab.selected:hover .content .image .tabScale,
.animation .tabSet .tab.selected:active .content .image .tabScale {

    -webkit-transform: scaleX(1) scaleY(1) scaleZ(1);
    transform: scaleX(1) scaleY(1) scaleZ(1);

    -webkit-animation: none; /* Safari 4+ */
    -moz-animation:    none; /* Fx 5+ */
    -o-animation:      none; /* Opera 12+ */
    animation:         none; /* IE 10+ */
}

@media only screen and (max-width: 600px) {

    .animation .tabSet .tab.touch .content .image .tabScale {

        -webkit-transform: scaleX(1) scaleY(1) scaleZ(1);
        transform: scaleX(1) scaleY(1) scaleZ(1);

        -webkit-animation: tabScale_On 0.283333s 0ms 1 normal linear; /* Safari 4+ */
        -moz-animation:    tabScale_On 0.283333s 0ms 1 normal linear; /* Fx 5+ */
        -o-animation:      tabScale_On 0.283333s 0ms 1 normal linear; /* Opera 12+ */
        animation:         tabScale_On 0.283333s 0ms 1 normal linear; /* IE 10+ */
    }

}


/* KEYFRAMES
----------------------------------------------------------------------------------------------------*/

/* HOVER ON */

@-webkit-keyframes tabScale_On { 
   0%       { -webkit-transform: scaleX(0.96) scaleY(0.96) scaleZ(1);
              -webkit-animation-timing-function: cubic-bezier(1,0,0.78,1); }
   100%     { -webkit-transform: scaleX(1) scaleY(1) scaleZ(1); }
   23.53%   { -webkit-transform: scaleX(1.04) scaleY(1.04) scaleZ(1);
              -webkit-animation-timing-function: cubic-bezier(0.33,0,0,1); }
}

    @keyframes tabScale_On { 
       0%       { transform: scaleX(0.9) scaleY(0.9) scaleZ(1); 
                  animation-timing-function: cubic-bezier(1,0,0.78,1); }
       100%     { transform: scaleX(1) scaleY(1) scaleZ(1); }
       23.53%   { transform: scaleX(1.04) scaleY(1.04) scaleZ(1); 
                  animation-timing-function: cubic-bezier(0.33,0,0,1); }
    }


/* HOVER OFF */

@-webkit-keyframes tabScale_Off { 
   0%       { -webkit-transform: scaleX(1) scaleY(1) scaleZ(1);
              -webkit-animation-timing-function: cubic-bezier(1,0,0.78,1); }
   100%     { -webkit-transform: scaleX(0.9) scaleY(0.9) scaleZ(1); }
   23.53%   { -webkit-transform: scaleX(0.86) scaleY(0.86) scaleZ(1);
              -webkit-animation-timing-function: cubic-bezier(0.33,0,0,1); }
}

    @keyframes tabScale_Off { 
       0%       { transform: scaleX(1) scaleY(1) scaleZ(1);
                  animation-timing-function: cubic-bezier(1,0,0.78,1); }
       100%     { transform: scaleX(0.9) scaleY(0.9) scaleZ(1); }
       23.53%   { transform: scaleX(0.86) scaleY(0.86) scaleZ(1);
                  animation-timing-function: cubic-bezier(0.33,0,0,1); }
    }


/* HOVER DOWN */

@-webkit-keyframes tabScale_Down { 
   0%       { -webkit-transform: scaleX(1) scaleY(1) scaleZ(1);
              -webkit-animation-timing-function: cubic-bezier(1,0,0.78,1); }
   100%     { -webkit-transform: scaleX(0.96) scaleY(0.96) scaleZ(1); }
}

    @keyframes tabScale_Down { 
       0%       { transform: scaleX(1) scaleY(1) scaleZ(1);
                  animation-timing-function: cubic-bezier(1,0,0.78,1); }
       100%     { transform: scaleX(0.96) scaleY(0.96) scaleZ(1); }
    }


/* MEDIAQUERIES FOR MOBILE VIEW (<600px)
----------------------------------------------------------------------------------------------------*/
	
@media only screen and (max-width: 600px)  {

	table { 
		
	}
}
