h1.video {
	font:25px arial;
	color: #fff;
	margin: 25px 0 0 18px;
}

#wrapper {
    background: url(../img/video/side_bg.png) -1px 0px repeat-y;
}

#wrapper .sideBar {
    width: 280px;
    height: 900px;
    margin-left: -1px;
    padding-left: 0;
}

.sideBar nav a {
    display: block;
    width: 245px;
    font-family: 16px Arial;
    color: #FFFFFF;
    padding: 6px 10px 6px 25px;
}

.sideBar nav a:hover {
    background: #F6921E;
    color: #000;
}

.sideBar nav a.active {
    background: #2B305E;
    -webkit-box-shadow:  -1px 0px 2px 1px rgba(000, 000, 000, .3);
    box-shadow:  -1px 0px 2px 1px rgba(000, 000, 000, .3);
    color: #fff;
}

.sideBar h2 {
    font-family: 36px Arial;
    font-weight: normal;
    text-align: center;
    color: #F6921E;
    margin-bottom: 5px;
}

#vidoeSearch {
    padding: 6px 6px 6px 30px;
    background: #fff url(../img/video/search.png) 2px 3px no-repeat;
    display: block;
    margin: 7px auto 0 auto;
}

#featuredVideo {
    background: #354DCF;
    width: 721px;
    height: 245px;
    padding-top: 10px;
    position: relative;
}

#featuredVideo .button-bar, .videoblock .button-bar {
	position: absolute;
	bottom:2px;
	right:0;
	left:0px;
	text-align: right;
	margin:0;
}

#featuredVideo a.bu, .videoblock a.bu {
	border: 0;
	width: auto;
	height: auto;
	display: inline-block;
}

.videoblock .button-bar {
	position: relative;
	padding-top:10px;
	text-align: left;
}

.left {
    display: block;
    width: 390px;
    height: 219px;
    background: #888888;
    border: 2px solid #FFFFFF;
    margin: 7px 5px 5px 0;

}

.right {
    display: block;
    width: 300px;
    height: 213px;
    color: #fff;
    padding: 5px;
    margin: -224px 5px 5px 400px;
    
}

.videoblock {
	overflow: hidden;
	padding:20px 10px;
}

.videoblock .description {
    padding: 0 15px 0 15px;
    text-align: justify;

}

.videoblock.even {
	background: #dbdbdb;
}

.videoblock iframe, .videoblock .text {
	float:left;
	width: 340px;
	-webkit-border-radius: 4px;
	border-radius: 4px;
	overflow: hidden;
}

.videoblock.even iframe, .videoblock.even .text {
	float:right;
}

h2.video {
    padding-left:15px;
    margin:0;
}

#middle.oneCol {
    width: 720px;
}

#middle {
	background: #354DCF;
}

#videos_list {
	-webkit-border-radius: 6px 0 0 0;
	border-radius: 6px 0 0 0;
	background: #fff;
}

.play {
    position: absolute;
    margin: 20px 0 0 90px;
    z-index: 20;

}

#featuredVideo .play {
    position: absolute;
    margin: 45px 0 0 135px;
    z-index: 20;
}

#featuredVideo h2.video { padding-left:0; }
#featuredVideo h3 { margin:1px 0px 9px 0px; }

.gloss {
    position: absolute;
    margin: 0 0 0 0;
    overflow:hidden;
    background: url('../img/video/glass.png') -158px 0px no-repeat;
    width: 300px;
    height: 169px;
    z-index: 10;


}

.vid_name a {font-size: 10px;}

.videoblock .vid_name {
    padding: 0 5px 0 14px;
}

#video_overlay {
    display: none; /* ensures it’s invisible until it’s called */
    position: absolute; /* makes the div go into a position that’s absolute to the browser viewing area */
    left: 25%; /* positions the div half way horizontally */
    top: 25%; /* positions the div half way vertically */
    padding: 25px; 
    border: 2px solid black;
    background-color: #ffffff;
    width: 50%;
    height: 50%;
    z-index: 100; /* makes the div the top layer, so it’ll lay on top of the other content */
}
#video_fade {
    display: none;  /* ensures it’s invisible until it’s called */
    position: absolute;  /* makes the div go into a position that’s absolute to the browser viewing area */
    left: 0%; /* makes the div span all the way across the viewing area */
    top: 0%; /* makes the div span all the way across the viewing area */
    background-color: black;
    -moz-opacity: 0.7; /* makes the div transparent, so you have a cool overlay effect */
    opacity: .70;
    filter: alpha(opacity=70);
    width: 100%;
    height: 100%;
    z-index: 90; /* makes the div the second most top layer, so it’ll lay on top of everything else EXCEPT for divs with a higher z-index (meaning the #overlay ruleset) */
}