
.photo {
    border: 1px solid transparent;
    float: left;
    margin: 4px;
    overflow: hidden;
    padding: 4px;
    white-space: nowrap;

    /* CSS3 Box sizing property */
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -o-box-sizing: border-box;
    box-sizing: border-box;

    /* CSS3 transition */
    -moz-transition: border 0.2s ease 0s;
    -ms-transition: border 0.2s ease 0s;
    -o-transition: border 0.2s ease 0s;
    -webkit-transition: border 0.2s ease 0s;
    transition: border 0.2s ease 0s;
}
.photo:hover {
    border-color: #444;
}
.photo img {
    cursor: pointer;
    width: 200px;
}
.photo p, .photo i {
    display: block;
}
.photo p {
    font-weight: bold;
}

/* preview styles */
#photo_preview {
    background-color: rgba(0, 0, 0, 0.7);
    bottom: 0;
    color: #000000;
    display: none;
    left: 0;
    overflow: hidden;
    position: fixed;
    right: 0;
    top: 0;
    z-index: 10;
}
.photo_wrp {
    background-color: #000;
    /*margin: 50px 10px;*/
    /*overflow: hidden;
    padding: 12px;
     text-align: center; */
    vertical-align: middle;
	max-width:100%;
	max-height:100%;
	position: relative;
    margin:50px 20px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
    -webkit-border-radius: 10px;
    border-radius: 10px;
}

.img {
    width: 100%;
    height: auto;
}
.close {
    cursor: pointer;
    position: absolute;
    top: 20px;
    right: 20px;
}
.pleft {
	background-color: #0000;
	bottom: 0;
	top: 0;
    float: left;
	justify-content: center;
    display: flex;
    overflow: hidden;
    position: absolute;
	width: 60%;
   /* height: 570px;*/
	border-radius: 5px;
	/*width:100%;
	height:100%;*/
}
.pright {
	background-color: #FAFAFA;
    float: right;
    position: relative;
    width: 40%;
    height: 570px;
	/*max-width:100%;
	max-height:100%;*/
}
.preview_prev, .preview_next {
    cursor: pointer;
    margin-top: -64px;
    opacity: 0.5;
    position: absolute;
    top: 50%;

    -moz-transition: opacity 0.2s ease 0s;
    -ms-transition: opacity 0.2s ease 0s;
    -o-transition: opacity 0.2s ease 0s;
    -webkit-transition: opacity 0.2s ease 0s;
    transition: opacity 0.2s ease 0s;
}
.preview_prev:hover, .preview_next:hover {
    opacity: 1;
}
.preview_prev {
    left: 20px;
}
.preview_next {
    right: 20px;
}

/* /* comments styles */ */
/* #comments form { */
    /* margin: 10px 0; */
    /* text-align: left; */
/* } */
/* #comments table td.label { */
    /* color: #000; */
    /* font-size: 13px; */
    /* padding-right: 3px; */
    /* text-align: right; */
    /* width: 105px; */
/* } */
/* #comments table label { */
    /* color: #000; */
    /* font-size: 16px; */
    /* font-weight: normal; */
    /* vertical-align: middle; */
/* } */
/* #comments table td.field input, #comments table td.field textarea { */
    /* border: 1px solid #96A6C5; */
    /* font-family: Verdana,Arial,sans-serif; */
    /* font-size: 16px; */
    /* margin-top: 2px; */
    /* padding: 6px; */
    /* width: 250px; */
/* } */
/* #comments_list { */
    /* margin: 10px 0; */
    /* text-align: left; */
/* } */
/* #comments_list .comment { */
    /* border-top: 1px solid #000; */
    /* padding: 10px 0; */
/* } */
/* #comments_list .comment:first-child { */
    /* border-top-width:0px; */
/* } */
/* #comments_list .comment span { */
    /* font-size: 11px; */
/* } */