﻿/* MASTER SLIDE PIC SEL V3 */

/*------------------------- SLIDE PIC SEL ----------------------*/
.S_Master_Slide_Pic_Sel_Main {
    position: absolute;
    display: table;
    width: auto;
    height: auto;
    left: 50%;
    bottom: 30px;
    z-index: 300;
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
}
.S_Master_Slide_Pic_Sel_Item, .S_Master_Slide_Pic_Sel_Item_Sel
{
    position: relative;
    display: block;
    float: left;
    height: 12px;
    margin-left: 15px;
    margin-right: 15px;
    border-radius: 9px;
    cursor: pointer;
    -moz-transition: all 0.2s cubic-bezier(0.700, 0.000, 0.300, 1.000);
	-ms-transition: all 0.2s cubic-bezier(0.700, 0.000, 0.300, 1.000);
	-o-transition: all 0.2s cubic-bezier(0.700, 0.000, 0.300, 1.000);
	-webkit-transition: all 0.2s cubic-bezier(0.700, 0.000, 0.300, 1.000);
	transition: all 0.2s cubic-bezier(0.700, 0.000, 0.300, 1.000);
}

.S_Master_Slide_Pic_Sel_Item {
    border: solid 2px rgba(255,190,0,1.0);
    background-color: rgba(255,255,255,0.0);
    width: 12px;
}
.S_Master_Slide_Pic_Sel_Item_Sel {
    border: solid 2px rgba(255,190,0,1.0);
    background-color: rgba(255,255,255,1.0);
    width: 12px;
}
.S_Master_Slide_Pic_Sel_Item:hover {
    border: solid 2px rgba(255,190,0,0.9);
}
/*------------------------- SLIDE PIC SEL ----------------------*/





@media screen and (min-width:0px) and (max-width:600px)
{
    .S_Master_Slide_Pic_Sel_Main
    {
        left: 50%;
        right: 0px;
        bottom: 10px;
        -moz-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
        -o-transform: translateX(-50%);
        -webkit-transform: translateX(-50%);
        transform: translateX(-50%);
    }
}