.list-group-item .pull-left img{
	max-height: 200px;
	width: auto;
	margin-bottom: 5px;
}

.modalDialog {
    display: none;
    position: absolute;
    top: 0;
    right: 0;
    bottom: -100;
    left: 0;
    /*background: rgba(0,0,0,0.8);*/
    z-index: 1;
    opacity:0;
    -webkit-transition: opacity 400ms ease-in;
    -moz-transition: opacity 400ms ease-in;
    transition: opacity 400ms ease-in;
    pointer-events: none;
}

.modalDialog:target {
    opacity:1;
    pointer-events: auto;
}

.modalDialog > div {
    width: 300px;
    position: fixed;
    left: 10px;
    right: 10px;
    margin: 10% auto;
    padding: 50px 20px 13px 20px;
    border-radius: 10px;
    background: #22313f;
    background: -moz-linear-gradient(#22313f, #22313f);
    background: -webkit-linear-gradient(#22313f, #22313f);
    background: -o-linear-gradient(#22313f, #22313f);
    background: rgba(0,0,0,0.8);
}
/*.modalDialog > div {
    max-width: 1000px;
    max-height: 800px;
    position: fixed;
    left: 10px;
    right: 10px;
    top: 20px;
    bottom: 20px;
    margin: 10% auto;
    padding: 50px 20px 13px 20px;
    border-radius: 10px;
    background: #22313f;
    background: -moz-linear-gradient(#22313f, #22313f);
    background: -webkit-linear-gradient(#22313f, #22313f);
    background: -o-linear-gradient(#22313f, #22313f);
    background: rgba(0,0,0,0.8);
}*/

.close {
    background: #ffffff;
    color: #000;
    line-height: 25px;
    position: absolute;
    right: 20px;
    text-align: center;
    top: 20px;
    width: 24px;
    text-decoration: none;
    font-weight: bold;
    -webkit-border-radius: 12px;
    -moz-border-radius: 12px;
    border-radius: 12px;
    -moz-box-shadow: 1px 1px 3px #000;
    -webkit-box-shadow: 1px 1px 3px #000;
    box-shadow: 1px 1px 3px #000;
}

.close:hover {
	background: #fff;
}