 
    .container {
          
          width: 300px;
          height: 400px;
          position: relative;
          margin:0 auto;
          margin-top:120px;
          border: 0px solid blue;
          -webkit-perspective: 800;
        }


        #carousel {
          width: 100%;
          height: 100%;
          position: absolute;
          -webkit-transform-style: preserve-3d;
          -webkit-transition: -webkit-transform 1s;
          
        }

	    #carousel div {
          -khtml-user-select: none;
          -webkit-user-select: none;
          -ms-user-select: none;
          user-select: none;
          position: absolute;
          
          width: 300px;
          height: 300px;
          -webkit-backface-visibility: hidden;
          background-color:rgba(204, 232, 255,0.9);
          border:1px solid gray;
          /*-webkit-box-reflect: below 0px -webkit-gradient(linear, left top, left bottom, from(transparent), color-stop(2%, transparent) , to(rgba(250, 250, 250, 0.1)));*/
          /*-webkit-box-reflect : below 0 -webkit-gradient(linear, left bottom, left top, from(rgba(255,255,255,0.25)), color-stop(0.7, transparent));*/
        }
        #carousel div img {
        	display: block;
            width: 300px;
            height: 300px;
    	}
        #carousel div h3 {
        text-align:center;
        background-color:rgba(204, 232, 255,0.9);
        border:1px solid gray;
        }