.tabs {
	display: flex;
	flex-wrap: wrap;
	max-width: 100%;
	margin: .5%;
	padding: .5%;
	background: #e2e2e2;
	order: 1;
}

.tabs input[type="radio"] {
	display: none;
}

.tabs label {
	padding: .5%;
	background: #e2e2e2;
	font-weight: bold;
}

.tabs .tab{
	width: 100%;
	height: 100%;
	padding: .5%;
	background: #F0F0F0;
	order: 1;
	display: none;
}

.tabs input[type='radio']:checked + label + .tab {
	display: block;
}

.tabs input[type="radio"]:checked + label {
	background: #F0F0F0;
}

.file-container {
	display: flex;
	flex-wrap: wrap;
	padding: 1%;
}

.piccap {display: relative;
	float: left;
	min-width:10%;
	min-height:10%;
    width: 10%;
    height: 10%;
    border: 1px solid #AAAAAA;
    margin: 1%;
    text-align: center;
}

.piccap:hover {
	box-shadow: 0 0 2px 1px rgba(0,140,186,0.5);

}

.gallery img {
    width: 100%;
    height: 100%;
}

.video {
	max-width: 10%;
	max-height: 10%;
}

