#SlideShowContainer
{
    min-width: 1000px;
    height: 500px;
    position: relative;
}
#slideshow
{
}
#slideshow > div
{
    position: absolute;
    width: 100%;
    overflow: hidden;
    height: 500px;
}
#slideshow > div:not(:first-child)
{
    display: none;
}
#SlideShowContainer ul.itempoint
{
  left: 0;
  right: 0;
  margin: 0 auto;
   width:130px;
    bottom: 40px;
    position: absolute;
    z-index: 1000;
}

#SlideShowContainer ul.itempoint li
{
    float: right;
    list-style-type: none;
    margin-right: 5px;
    padding: 0;
    border-radius: 50%;
    width: 16px;
    height: 16px;
    background: #e8e8e8;
    text-align: center;
    line-height: 16px;
    font-size: 11px;
    font-family: arial;
  
    cursor: pointer;
    cursor: hand;
    -moz-transition: all .2s ease-in;
    -o-transition: all .2s ease-in;
    -webkit-transition: all .2s ease-in;
    transition: all .2s ease-in;
}

#SlideShowContainer ul.itempoint li:not(.SelectedPointer):hover
{
    border-color: #3b3b3b;
      color: #595959;
}

.NormalPointer
{
    border: 2px solid #b1b1b1;
}

.SelectedPointer
{
    border: 2px solid #ab1241;
        color: #ab1241;
}

.SlideBG
{
    width: 100%;
    -webkit-transition: all 6s ease-in-out;
    -moz-transition: all 6s ease-in-out;
    -o-transition: all 6s ease-in-out;
    -ms-transition: all 6s ease-in-out;
}
.content
{
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
}


.transition
{
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -o-transform: scale(1.1);
    transform: scale(1.1);
}
