/* 
Title: 	Reset default browser styles
Author:	http://meyerweb.com/eric/tools/css/reset/ 
			v2.0 | 20110126
			edited by ForbiddenToast.com 
License: none (public domain)
*/
/* prettier-ignore */
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li,fieldset, form, label, legend, /*table /* [FT] messes up table center ,*/ caption, tbody, tfoot, thead, th, /*td /* [FT] removes inline padding ,*/ article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	/*font: inherit;*/ /*[FT] messes up Dreamweaver design view*/
	/*vertical-align: baseline;*/ /*[FT] moves table content to the bottom*/
}

img,
iframe {
   border: 0; /*[FT]*/
}

/* HTML5 display-role reset for older browsers */
/* prettier-ignore */
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
   line-height: 1;
}
ol,
ul {
   list-style: none;
}
blockquote,
q {
   quotes: none;
}
blockquote:before,
blockquote:after,
q:before,
q:after {
   content: "";
   content: none;
}
table {
   border-collapse: collapse;
   border-spacing: 0;
}

/*-------- Styles --------*/

#b1 {
   background-color: #ffffff;
}

#b1 img {
   position: relative;
   left: -3px;
   top: 10px;
}

body {
   font-family: Helvetica, Arial, sans-serif;
   font-size: 15px;
   color: #ccc;
   line-height: 1.3;
   margin: 0px;
   background-color: #000;
   /* background-image: url("../obs_bg3.jpg");
   background-repeat: no-repeat;
   background-position: center;
   background-size: cover;
   background-attachment: fixed; */
}

h2 {
   color: #bd2621;
   font-size: 24px;
   font-weight: normal;
   margin: 5px;
}

p {
   margin: 0 0 0 0;
}

#nav a:link,
#nav a:visited {
   color: #ccc;
}
#nav a:hover,
#nav a:active {
   color: #fff;
}
/* "selected" class (in nav.html) gets selected highlight */
#nav a.selected {
   color: #fff;
   font-weight: bold;
}

#nav a {
   transition: color 0.2s ease;
}

#nav {
   background-color: #000;
   background-image: url("../obs_bg_nav.jpg");
   background-repeat: no-repeat;
   background-position: center;
   background-size: auto;
}

td .label {
   padding: 8px;
}

#nav .headCell {
   /* text-align: right; */
   text-align: center;
   color: #9d9d9d;
   background-color: #222222;
   font-size: 13px;
   padding: 0px 0px 10px 0px;
}

#nav .titleCell {
   text-align: center;
   color: #9d9d9d;
   background-color: #222222;
   padding: 6px 5px 0px 5px;
   border-top: 3px solid #333;
}

#nav .linkCell {
   background-color: #222222;
   text-align: center;
   padding: 4px 18px 6px 18px;
}

#nav .mainCell {
   background-color: transparent;
   text-align: center;
   padding: 8px;
   color: white;
   padding: 10px 10px 8px 10px;
}

#wrapper {
   color: #666;
}

iframe {
   overflow: hidden;
}

/*-------- Video Player Styles --------*/

/* Video container */
.video-container {
   position: relative;
   display: inline-block;
}

/* Video styling */
video {
   border: 1px solid #444;
   outline: none;
}

/* Custom play button styling */
#playBtn {
   position: absolute;
   top: 50%;
   left: 50%;
   transform: translate(-50%, -50%);
   background: rgba(40, 40, 40, 0.9);
   color: white;
   border: none;
   width: 100px;
   height: 100px;
   border-radius: 50%;
   cursor: pointer;
   font-size: 60px;
   display: flex;
   align-items: center;
   justify-content: center;
   box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
   transition: all 0.2s ease;
   padding-left: 14px; /* Nudge the triangle slightly to the right */
}

#playBtn:hover {
   background: rgba(60, 60, 60, 0.9);
   transform: translate(-50%, -50%) scale(1.1);
}

/* Replay button */
#replayBtn {
   position: absolute;
   top: 50%;
   left: 50%;
   transform: translate(-50%, -50%);
   background: rgba(0, 0, 0, 0.8);
   color: white;
   border: 2px solid white;
   padding: 15px 30px;
   font-size: 18px;
   cursor: pointer;
   border-radius: 5px;
   display: none;
}
