﻿/* SLIDE SHOW */

/*-------------------- GALLERY SLIDE ----------------*/
.S_Slide_Show_Main
{
    position: relative;
    display: block;
    width: 100%;
    height: auto;
    margin: 0px;
    padding: 0px;
    moz-box-sizing: border-box;
	-ms-box-sizing: border-box;
	-o-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
    overflow: visible;
}
.S_Slide_Show_Item_Main
{
    position: relative;
    display: block;
    width: 100%;
    height: auto;
    background-color: transparent;
    border-radius: 3px;
}
.S_Slide_Show_Key_Next, .S_Slide_Show_Key_Back {
    position: absolute;
    display: block;
    width: 40px;
    height: 40px;
    top: 50%;
    margin-top: -20px;
    background-color: rgba(255,255,255,0.4);
    border-radius: 20px;
    font-family: 'AtrinWebSign1';
    font-style: normal;
    font-weight: normal;
    font-size: 2.0em;
    text-align: center;
    vertical-align: middle;
    text-decoration: none;
    color: rgba(180,150,0,1.0);
    cursor: pointer;
    z-index: 110;
    moz-box-sizing: border-box;
    -ms-box-sizing: border-box;
    -o-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}
.S_Slide_Show_Key_Next {
    right: -50px;
}
.S_Slide_Show_Key_Back {
    left: -50px;
}
.S_Slide_Show_Item_Body {
    position: absolute;
    display: block;
    width: auto;
    height: auto;
    left: 2px;
    right: 2px;
    top: 2px;
    bottom: 2px;
    background-color: rgba(0,0,0,1.0);
    border: solid 3px rgba(180,150,0,1.0);
    border-radius: 15px;
    overflow: hidden;
    z-index: 100;
    cursor: pointer;
}
.S_Slide_Show_Item {
    position: absolute;
    display: block;
    width: 100%;
    height: 100%;
    top: 0%;
    z-index: 100;
    moz-box-sizing: border-box;
    -ms-box-sizing: border-box;
    -o-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -moz-transition: all 0.5s cubic-bezier(0.700, 0.000, 0.300, 1.000);
    -ms-transition: all 0.5s cubic-bezier(0.700, 0.000, 0.300, 1.000);
    -o-transition: all 0.5s cubic-bezier(0.700, 0.000, 0.300, 1.000);
    -webkit-transition: all 0.5s cubic-bezier(0.700, 0.000, 0.300, 1.000);
    transition: all 0.5s cubic-bezier(0.700, 0.000, 0.300, 1.000);
}
.S_Slide_Show_Item_Pic {
    position: absolute;
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 100%;
    left: 50%;
    top: 50%;
    -moz-transform: translateX(-50%) translateY(-50%);
    -ms-transform: translateX(-50%) translateY(-50%);
    -o-transform: translateX(-50%) translateY(-50%);
    -webkit-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
}
/*-------------------- GALLERY SLIDE ----------------*/





@media screen and (min-width:0px) and (max-width:900px) {
    .S_Slide_Show_Key_Next {
        right: 6px;
        background-color: rgba(0,0,0,0.6);
    }

    .S_Slide_Show_Key_Back {
        left: 6px;
        background-color: rgba(0,0,0,0.6);
    }
}

@media screen and (min-width:0px) and (max-width:600px) {
}
