#galleryContainer {
    overflow : hidden;
    position : relative;
    width : 990px;
  }

#galleryContainer div.picDivCont {
    position : absolute;
    z-index : 1;
  }

#galleryContainer div.picDivMsg {
    background-color : #000000;
    bottom : 0px;
    color : #ffffff;
    height : 50px;
    opacity : 0.7;
    filter:progid:DXImageTransform.Microsoft.Alpha(opacity=70);
    position : absolute;
    display : none;
    width : 100%;
    z-index : 1;
  }

#galleryContainer div.picDivHover {
    background-color : #003366;
    height : 100%;
    left : 0px;
    position : absolute;
    top : 0px;
    width : 100%;
    z-index : 2;
  }

#galleryContainer div.leftBtn, div.rightBtn {
    float : left;
    height : 100%;
    position : relative;
    width : 65px;
    z-index : 2;
  }

#galleryContainer div.leftBtnInner, div.rightBtnInner {
    background-image : url('../img/teazer/btn/left.png');
    background-position : center center;
    background-repeat : no-repeat;
    cursor : pointer;
    height : 100%;
    width : 100%;
  }

#galleryContainer div.leftBtnInner:hover {
    background-image : url('../img/teazer/btn/left_hover.png');
  }

#galleryContainer div.rightBtn {
    float : right;
  }

#galleryContainer div.rightBtnInner {
    background-image : url('../img/teazer/btn/right.png');
  }

#galleryContainer div.rightBtnInner:hover {
    background-image : url('../img/teazer/btn/right_hover.png');
  }


