html {
	margin: 0;
	padding: 0;
	width: 100%;
	height: 100%;
}
body {
	text-align: center;
	font-family: Verdana, DejaVu Sans, sans-serif;
	font-size: 16pt;
	color: white;
	
	background: rgb(60,60,60);
	background: url('images/background.jpg');
	background-attachment: fixed;
	background-size: cover;
}

a {
	color: white;
	background: transparent;
}
p {
	font-size: 12pt;
}

header {
	margin: 25px 0 20px 0;
}
footer {
    width: 100%;
    padding: 5px;
	clear: left;
	text-align: left;
	background: rgba(0,0,0, 0.5);
	position: fixed;
	bottom: 0;
	left: 0;
	z-index: 3;
	
	display: flex;
	align-items: center;
	justify-content: left;
}
footer .icon {
    font-size: 21pt;
    margin-right: 5px;
}
footer p {
    margin: 0;
	font-size: 8pt;
	font-weight: bold;
}

.video_content {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    white-space: nowrap;
    justify-content: center;
}
.video_content iframe {
    display: inline-block;
    margin-right: 10px;
}

main {
    height: 100%;
    display: flex;
    justify-content: space-between;
}

.left {
    flex: 60%;
    padding: 20px;
}
.right {
    //margin-top: 22px;
    flex: 30%;
    padding: 20px;
}

.panel {
    width: 100%;
    height: 80%;
    position: relative;
}
.panel_header {
    width: 100%;
    height: 44px;
    background:
        url('images/borders/border-center-deco-h.png') no-repeat center,
        url('images/borders/border-corner-deco-l.png') no-repeat left,
        url('images/borders/border-corner-deco-r.png') no-repeat right;
    background-size: auto 44px, auto 44px, auto 44px;
    background-position: center top, left top, right top;
    position: absolute;
    top: 0;
    z-index: 2;
}
.panel_border_repeat_header {
    width: calc(100% - 104px);
    height: 44px;
    margin-left: 52px;
    background: url('images/borders/border-repeat.png') repeat-x;
    background-size: auto 44px;
    background-position: center top;
    mask: linear-gradient(to right, black 0%, black calc(50% - 152.5px), transparent calc(50% - 152.5px), transparent calc(50% + 152.5px), black calc(50% + 152.5px), black 100%);
    mask-size: 100% 44px;
    mask-repeat: no-repeat;
    -webkit-mask: linear-gradient(to right, black 0%, black calc(50% - 152.5px), transparent calc(50% - 152.5px), transparent calc(50% + 152.5px), black calc(50% + 152.5px), black 100%);
    -webkit-mask-size: 100% 44px;
    -webkit-mask-repeat: no-repeat;
    position: absolute;
    top: 0;
    z-index: 2;
}
.panel_border_repeat_footer {
    width: calc(100% - 104px);
    height: 44px;
    margin-left: 52px;
    background: url('images/borders/border-repeat.png') repeat-x;
    background-size: auto 44px;
    background-position: center top;
    mask: linear-gradient(to right, black 0%, black calc(50% - 152.5px), transparent calc(50% - 152.5px), transparent calc(50% + 152.5px), black calc(50% + 152.5px), black 100%);
    mask-size: 100% 44px;
    mask-repeat: no-repeat;
    -webkit-mask: linear-gradient(to right, black 0%, black calc(50% - 152.5px), transparent calc(50% - 152.5px), transparent calc(50% + 152.5px), black calc(50% + 152.5px), black 100%);
    -webkit-mask-size: 100% 44px;
    -webkit-mask-repeat: no-repeat;
    position: relative;
    bottom: 0;
    z-index: 2;
}
.panel_footer {
    width: 100%;
    height: 44px;
    background:
        url('images/borders/border-center-deco-f.png') no-repeat center,
        url('images/borders/border-corner-deco-l.png') no-repeat left,
        url('images/borders/border-corner-deco-r.png') no-repeat right;
    background-size: auto 44px, auto 44px, auto 44px;
    background-position: center top, left top, right top;
    position: relative;
    transform: scaleY(-1);
    bottom: 0;
    z-index: 2;
}
.panel_content h1 {
    margin: 0;
    font-size: 16pt;
    font-weight: bold;
    color: khaki;
}
.panel_content p {
    margin-top: 1%;
    font-size: 12pt;
    font-weight: bold;
    color: white;
}
.panel_content {
    margin-left: auto;
    margin-right: auto;
    padding: 35px 1% 35px 1%;
    border-left: 4px solid grey;
    border-right: 4px solid grey;
    width: 94%;
    height: 100%;
    background: rgba(0,0,0, 0.5);
    z-index: 1;
    position: relative;
    top: 22px;
}
