@charset "utf-8";
/* CSS Document */
.box1{
    width: 185px;
    margin: 12px;
    padding: 10px;
    height: 301px;
    position:relative;
    display: inline-block;
    background: -webkit-gradient(linear, 0% 20%, 0% 1000%, from(#fff), to(#fff), color-stop(.1,#f3f3f3));
    border: 1px solid #ccc;
    -webkit-box-shadow: 0px 3px 30px rgba(0, 0, 0, 0.1) inset;
    -webkit-border-bottom-right-radius: 6px 50px;    
}

.box1:before{
    content: '';
    width: 50px;
    height: 100px;
    position:absolute;
    bottom:0; right:0;
    -webkit-box-shadow: 20px 20px 10px rgba(0, 0, 0, 0.1);
    z-index:-1;
    -webkit-transform: translate(-35px,-40px)
                        skew(0deg,30deg)
                        rotate(-25deg);
}

.box1:after{
    content: '';
    width: 100px;
    height: 100px;
    top:0; left:0;
    position:absolute;
    display: inline-block;
    z-index:-1;
    -webkit-box-shadow: -10px -10px 10px rgba(0, 0, 0, 0.2);
    -webkit-transform: rotate(2deg)
                        translate(20px,25px)
                        skew(20deg);
}

.box1 img {
    width: 100%;
    margin-top: 15px;
}

.box1 p{ 
    margin-top: 15px;
    text-align: justify;
}

.box1 h2{
    font-size: 18px;
    font-weight: bold;
	height: 47px;
	/*text-align:center;*/
	cursor:move;
    margin-top: 5px; 
    text-shadow: 1px 1px 3px rgba(0,0,0,0.3);
}

.box1 a{
    text-decoration: none;
    color: #4A4A4A !important;
}

.box1 a:hover{
    text-decoration: underline;
    color: #6B6B6B !important ;
}