* {
    padding: 0;
    margin: 0;
}

.wrap {
    margin: 20px auto;
    display: block;
    width: 300px;
    height: 310px;
    padding: 10px;
    
    border: 1px solid;

    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    border-radius: 5px;
    
    -moz-box-shadow: 0px 0px 5px rgba(0,0,0,0.45), 0px 1px 2px rgba(0,0,0,0.2);
    -webkit-box-shadow: 0px 0px 5px rgba(0,0,0,0.45), 0px 1px 2px rgba(0,0,0,0.2);
    box-shadow: 0px 0px 5px rgba(0,0,0,0.45), 0px 1px 2px rgba(0,0,0,0.2); 

}

.silver {
    border-color: #ffffff;
    
    background-color: #dfdfdf;
    background: -moz-linear-gradient(top, #ffffff, #dfdfdf 50%, #cecece);
    background: -webkit-gradient(linear, left top, left bottom, from(#ffffff), color-stop(0.5, #dfdfdf), to(#cecece));
    
    filter: progid:DXImageTransform.Microsoft.gradient(StartColorStr='#FFFFFF', EndColorStr='#CECECE');

}

.wrap img {
    width: 100%;
    margin-top: 15px;
}

.wrap p{ 
    margin-top: 15px;
    text-align: justify;
}

h1{
    font-size: 20px;
    font-weight: bold;
    margin-top: 5px; 
    text-shadow: 1px 1px 3px rgba(0,0,0,0.3);
}

.wrap a{
    text-decoration: none;
    color: #4A4A4A !important;
}

.wrap a:hover{
    text-decoration: underline;
    color: #6B6B6B !important ;
}