* {
	box-sizing:border-box;
	-moz-box-sizing:border-box;
	-webkit-box-sizing:border-box;
}
html {
	font-family:sans-serif;
}
body {
	background-color:#130619;
	margin:0;
	color:#fff;
}
h1 {
	font-size:20px;
	text-shadow:1px 1px 1px rgba(0, 0, 0, .25);
	margin:10px 20px 10px 20px;
}
h2 {
	font-size:17px;
	text-shadow:1px 1px 1px rgba(0, 0, 0, .25);
}
a {
	color:#fff;
}
a:hover {
	text-decoration:none;
}

.slim {
	max-width:600px;
	margin:0 auto 30px auto;
	padding:0 20px;
}
.slim h1 {
	margin-left:0;
}
label {
	display:block;
	margin-bottom:5px;
	color:#66556e;
}
.slim input[type="text"], textarea {
	border:1px solid #66556e;
	padding:8px;
	background:0;
	color:#fff;
}
.slim input[type="text"]:focus, textarea:focus {
	outline:1px solid #fff;
}
.slim input[type="submit"] {
	background:linear-gradient(#b31ee5,#9014ce);
	box-shadow:0 1px 2px rgba(0,0,0,.5),inset 0 1px 0 rgba(255,255,255,.3);
	text-shadow:0 -1px 0 rgba(0,0,0,.5);
	border:none;
	color:#fff;
	padding:0 15px;
	height:44px;
	line-height:42px;
	border-radius:4px;
	letter-spacing: .1em;
}
.slim input[type="submit"]:hover {
	background:linear-gradient(#c350ea,#9215cf);
}
.slim input[type="submit"]:active {
	box-shadow:inset 0 1px 0 rgba(0,0,0,.65),inset 0 3px 4px rgba(0,0,0,.65),inset 0 -1px 0 rgba(255,255,255,.2);
	background:#9014ce;
}

#header {
	display:flex;
	justify-content:center;
	align-items:center;
	overflow:hidden;
	padding:20px 0 0 0;
	margin:0 0 20px 0;
	background:#1f0f27;
	background:linear-gradient(#1f0f27,#130619);
}
#logo {
	width:35%;
	text-align:left;
	position:relative;
}
#logo img {
	height:40px;
	margin:0 0 0 24px;
}
#logo > .border {
	display:block;
	position:absolute;
	width:100px;
	height:1px;
	left:200px;
	bottom:0;
}
#logo > .border::before, #logo > .border::after {
	content:"";
	display:block;
	position:absolute;
	z-index:0;
	width:2000px;
	height:1px;
	left:auto;
	right:250px;
	bottom:0;
	background-color:#9014ce;
}
#logo > .border::after {
	left:58px;
	right:auto;
}
#search {
	width:30%;
	position:relative;
}
#search input[type="text"] {
	width:100%;
	padding:7px;
	margin:0 0 10px 0;
	border-radius:5px;
	border:0;
	background:rgb(64, 33, 91);
	color:rgba(255, 255, 255, 0.4);
}
#search input[type="text"]:focus {
	outline:1px solid #9014ce;
}
#search input[type="submit"] {
	position:absolute;
	top:5px;
	right:5px;
	width:20px;
	height:20px;
	border:none;
	margin:0;
	padding:0;
	background:url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="40" cy="40" r="32" fill="none" stroke="%23ff7404" stroke-width="15"/><line x1="65" y1="65" x2="94" y2="94" stroke-width="15" stroke="%23ff7404"/></svg>');
	cursor:pointer;
}
#menu {
	width:35%;
	text-align:right;
}
#menu a {
	color:#ff7404;
	text-decoration:none;
	font-size:15px;
	font-weight:600;
	letter-spacing:.05em;
	text-transform:uppercase;
	padding:5px;
}
@media only screen and (max-width: 639px) {
	#header {
		flex-wrap:wrap;
	}
	#logo {
		width:100%;
		order:2;
	}
	#search {
		width:80%;
		order:3;
		margin-top:25px;
	}
	.search_form input[name="q"], .search_form input[name="q"]:focus {
		width:100%;
		margin:0 auto;
	}
	#menu {
		width:100%;
		order:1;
	}
}

.vids {
	display:flex;
	flex-wrap:wrap;
	margin:0 10px;
}
.vbox {
	width:25%;
	margin-bottom:25px;
}
.v {
	margin:0 10px;
}
.v > a {
	text-decoration:none;
}
.vw {

}
.vh {
	height:0;
	padding-bottom:56.25%;
	position:relative;
}
.vid {
	position:absolute;
	top:0;
	bottom:0;
	right:0;
	left:0;
	overflow:hidden;
	background-color: #000;
	border-radius:2px;
}
.vid img {
	border:0;
}
.vpic, .vtr {
	width:100%;
	position: absolute;
    left:0;
    top: 50%;
    transform: translateY(-50%);
	display:block;
}
.vtr {
	display:none;
}
.vbox.playing .vtr {
	display:block;
}
.vdur {
	position:absolute;
	right:3px;
	bottom:3px;
	padding:2px 5px 3px 5px;
	white-space:nowrap;
	text-overflow:ellipsis;
	overflow:hidden;
	font-size:15px;
	transition:opacity 0.5s;
	color:#fff;
	text-shadow:1px 1px 2px rgba(0, 0, 0, 1);
	background:#000;
	font-weight:bold;
	border-radius:3px;
}
.v > a:hover .vdur {
	#opacity:0;
}
.vtext {
	margin:7px;
	font-size:14px;
	line-height:17px;
}
.v:hover, .v.playing {
	#background:#00235c;
}
.v:hover .vtext {
	text-decoration:underline;
}
@media only screen and (max-width: 639px) {
	.items {
		flex-direction:column;
	}
	.vbox {
		width:100%;
	}
	.vtext {
		font-size:15px;
	}
}

.page {
	text-align:center;
	margin:20px 10px;
}
.page.top {
	margin-top:0;
}
.page a {
	background:linear-gradient(#35253d,#3d3542);
	box-shadow:0 1px 2px rgba(0,0,0,.5),inset 0 2px 0 rgba(255,255,255,.05);
	width:auto;
	height:44px;
	line-height:42px;
	display:inline-block;
	vertical-align:middle;
	padding:0 15px;
	margin:0 3px;
	position:relative;
	border-radius:4px;
	color:#fff;
	font-size:14px;
	text-shadow:0 -1px 0 rgba(0,0,0,.5);
	letter-spacing:.05em;
	font-weight:bold;
	user-select:none;
	text-decoration:none;
	border:none;
}
.page a.sel, .page a:active {
	background:#bf5703;
	box-shadow:inset 0 2px 4px rgba(0,0,0,.65),inset 0 -1px 0 rgba(255,255,255,.075);
	color:rgba(255,255,255,.9);
	text-shadow:0 -1px 0 rgba(0,0,0,.2);
}
.page a:hover:not(.chosen):not(:active):not(.active):not(:disabled):not(.disabled)::after {
	content:"";
	display:block;
	width:100%;
	height:100%;
	background-image:linear-gradient(to top,rgba(255,255,255,0) 0,rgba(255,255,255,.3) 100%);
	opacity:.8;
	border-radius:4px;
	background-clip:padding-box;
	position:absolute;
	top:0;
	left:0;
	pointer-events:none;
}
@media only screen and (max-width: 639px) {
	.page a {
		padding:0 11px;
		height:40px;
	}
}

.pl {
	display:flex;
	justify-content:center;
	align-items:flex-start;
}
.pleft {
	flex-grow:1;
	max-width:960px;
}
.pright {
    width: 320px;
	padding:0 10px;
	line-height:0;
}
.pright iframe {
	margin:5px 0;
}
.p_bottom {
	display:none;
	text-align:center;
	margin-top:20px;
}
.pheight {
	height:0;
	padding-bottom:56.25%;
	position:relative;
}
#pl {
	position:absolute;
	top:0;
	bottom:0;
	left:0;
	right:0;
}
.fluid_video_wrapper {
	position:absolute!important;
	top:0!important;
	bottom:0!important;
	left:0!important;
	right:0!important;
	width:auto!important;
	height:auto!important;
}
.pleft h1 {
	text-align:center;
}
.pleft .tag {
	text-align:center;
	margin-bottom:20px;
}
.pleft .tag a {
	display:inline-block;
	margin:5px 3px 0 3px;
	border:1px solid #fff;
	border-radius:10px;
	opacity:.5;
	transition-timing-function:ease-out;
	transition-duration:350ms;
	text-decoration:none;
	padding:5px 10px;
}
.pleft .tag a:hover {
	opacity:1;
	color:#ff7404;
	border-color:#ff7404;
}
@media only screen and (max-width: 639px) {
	.pheight43 {
		padding-bottom:75%;
	}
}
@media only screen and (max-width: 1023px) {
	.pright {
		display:none;
	}
	.pbottom {
		display:block;
	}
}

footer {
	width:100%;
	min-height:100px;
	position:relative;
	background:#1f0f27;
	border-top:1px solid #9014ce;
	padding:20px;
	font-size:12px;
	text-align:center;
}
footer a {
	color:#b1a2b8;
	text-decoration:none;
	margin:3px 10px 10px 10px;
	display:inline-block;
}
footer a:hover {
	color:#ff7404;
}