/* YouTube Card One*/
.aecardcentcontainer {
	display: flex;
	justify-content: center;
	padding:10px;
}
.aecardcentcontainer2 {
	display: flex;
	align-items: center;
	box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2);
	background: url(/forum/images/yt-corner.jpg);
	background-repeat: no-repeat;
	background-position: right bottom;
	background-color: #FFFFFF;
}

/* YouTube Card */
.aevideocard {
	box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2);
	transition: 0.3s;
//	width:92%;
//	max-width:284px;
	max-width:31%;
	min-width:200px;
	margin: 6px;
//	float: left;
	display:inline-block; 
	vertical-align: top;
	background: url(/forum/images/yt-corner.jpg);
	background-repeat: no-repeat;
	background-position: right bottom;
	background-color: #FFFFFF;
}
.aevideocard:hover {
	box-shadow: 0 6px 12px 0 rgba(0,0,0,0.4);
}
.aevideocardcontainer {
	padding: 4px 16px 10px 16px;
	min-height: 100px;
}
.aevideocardcontainer p {
	margin-bottom: unset;
}

/* Spoiler */
.spoiler {
	margin: 0.5em auto 0.5em 16px;
	border: 1px solid #DDD;
	background: url("./images/bg_panel3.png") repeat-x #F4F8FE;
	border-radius: 5px;
	-moz-border-radius: 5px;
}
.spoiler-header {
	height: 1.6em;
	overflow: hidden;
	padding: 0 20px;
	background: url("./images/spoiler+.gif") no-repeat 6px 50%;
	font-size: 0.85em;
	font-weight: bold;
	line-height: 1.45em;
	font-family: Verdana, Tahoma, Ubuntu, "DejaVu Sans", Helvetica, sans-serif;
	color: #2B98B7;
	cursor: pointer;
}
.spoiler-header:hover {
	color: #EC7500;
}
.spoiler-body {
	display: none;
	padding: 6px;
	border-top: 1px solid #DDD;
}
.spoiler.open .spoiler-header {background: url("./images/spoiler-.gif") no-repeat 6px 50%;}
.spoiler.open .spoiler-body {display: block;}