/*
Top Header: #464646

Menu Header: #6699ff
Menus: #464646

Page Header: #e5e5e5
Page Header Border: #cccccc

Sub Header: #ffffcc
Sub Header Border: #cccccc

Form Input: #ffffff
Form Input Border: #cccccc

Form Button: #f7f7f7
Form Button Border: #cccccc

Links: #0066ff

Borders: #e1e1e1

Text: #333333

*/

body {
	font-family: Verdana;
	font-size: 8pt;
	margin: 0px;
}

a {
	color: Blue;
}

a:hover {
	color: Red;
}

/* Menu Bar */
.MenuBar {
	background-color: #6699FF;
	font-family: verdana;
	font-size: 8pt;
	height: 23px;
}

.MenuBar ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

.MenuBar ul li {
	float: left;
}

.MenuBar ul li a {
	background-color: #6699FF;
	border-right: 1px solid #FFF;
	color: #fff;
	display: block;
	padding: 5px;
	text-decoration: none;
	width: 80px;
}

.MenuBar ul li a:hover {
	background-color: #414141;
}

.MenuBar ul li a.Selected, .MenuBar ul li a.Selected:hover {
	background-color: #414141;
}

.MenuBar ul li ul {
	list-style: none;
	margin: 1px 0px 0px 0px;
	padding: 0;
	position: absolute;
	visibility: hidden;
}

.MenuBar ul li ul li {
	display: inline;
	float: none;
}

.MenuBar ul li ul li a {
	background-color: #414141;
	border: 0;
	width: 150px;
}

.MenuBar ul li ul li a:hover {
	background-color: #717171;
}

/* Tab Bar */
.TabBar {
	clear: both;
}

.TabBar ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

.TabBar ul li {
	display: inline;
	font-family: verdana;
	font-size: 8pt;
}

.TabBar ul li a {
	background-color: #eee;
	border-right: 1px solid #ccc;
	border-top: 1px solid #ccc;
	color: #000;
	float: left;
	padding: 5px;
	text-align: center;
	text-decoration: none;
	width: 119px;
}

.TabBar ul li a:hover {
	background-color: #ffffcc;
}

.TabBar ul li a.Selected {
	background-color: #414141;
	border-right: 1px solid #414141;
	border-top: 1px solid #414141;
	color: #fff;
	font-weight: bold;
}

.TabBar ul li a.Selected:hover {
	background-color: #414141;
}

.TabPanel {
	display: none;
}

/* Headers */
.GenericHeader {
	background-color: #e5e5e5;
	border: 1px solid #ccc;
	color: #333;
	font-size: 10pt;
	font-weight: bold;
	padding: 2px;
}

.GenericSubHeader {
	background-color: #ffffcc;
	border-bottom: 1px solid #ccc;
	border-top: 1px solid #ccc;
	color: #333;
	font-weight: bold;
	padding: 5px;
}

/* Containers */
.Container {
	background-color: #fff;
	border-bottom: 1px solid #ccc;
	border-left: 1px solid #ccc;
	border-right: 1px solid #ccc;
}

/* Tables */
.ResultTable {
	width: 100%;
}

.ResultTable tr td {
	padding: 5px;
}

.ResultTable tr.Header td {
	background-color: #ffffcc;
	border-bottom: 1px solid #ccc;
	color: #333;
	font-weight: bold;
}

.ResultTable tr.Row td {
	background-color: #fff;
	color: #333;
}

.ResultTable tr.AltRow td {
	background-color: #eee;
	color: #333;
}

.ResultTable tr.HotRow td {
	background-color: #fff;
	color: Blue;
	cursor: hand;
	text-decoration: underline;
}

.ResultTable tr.HotAltRow td {
	background-color: #eee;
	color: Blue;
	cursor: hand;
	text-decoration: underline;
}

/* Super Table */
.SuperTable {
	font-family: verdana;
	font-size: 8pt;
	width: 900px;
}

.SuperTable tr.Header td {
	background-color: #414141;
	color: #fff;
	font-weight: bold;
}

.SuperTable tr.SubHeader td {
	background-color: #99ccff;
	color: #000;
}

.SuperTable tr.Footer td {

}

.SuperTable tr.Row td {
	background-color: #fff;
	border-top: 1px solid #ccc;
	cursor: pointer;
}

.SuperTable tr.AltRow td {
	background-color: #eee;
	border-top: 1px solid #ccc;
	cursor: pointer;
}

.SuperTable tr.RowHot td, .SuperTable tr.AltRowHot td {
	color: blue;
	text-decoration: underline;
}

.SuperTable tr td {
	padding: 5px;
}

.SuperTable tr td.Label {
	background-color: #99ccff;
	border-right: 1px solid #fff;
	border-top: 1px solid #fff;
	width: 125px;
}

.SuperTable tr td.Field {
	background-color: #eee;
	border-top: 1px solid #fff;
}

.SuperTable tr td.Message {

}

.SuperTable tr.ControlGutter td {
	padding: 5px;
}

.SuperTable input, .SuperTable input.Button, .SuperTable select, .SuperTable textarea {
	border: 1px solid #ccc;
	font-family: verdana;
	font-size: 8pt;
}

.SuperTable input.Hot, .SuperTable input.ButtonHot, .SuperTable select.Hot, .SuperTable textarea.Hot {
	background-color: #ffffcc;
}

/* Forms */
input, input.Button, select, textarea {
	border: 1px solid #ccc;
	font-family: Verdana;
	font-size: 8pt;
}

input.Hot, input.ButtonHot, select.Hot, textarea.Hot {
	background-color: #ffffcc;
}

.FormElement {
	background-color: #fff;
	border: 1px solid #ccc;
}

.FormButton {
	background-color: #f7f7f7;
	border: 1px solid #ccc;
}

/* Modal-Dialog */
.ModalOverlay {
	background-color: #333;
	bottom: 0;
	display: none;
	filter: alpha(opacity=75);
	height: 100%;
	left: 0;
	margin: 0;
	-moz-opcaity: 0.75;
	opacity: 0.75;
	padding: 0;
	position: fixed;
	right: 0;
	top: 0;
	width: 100%;
	z-index: 1000;
}

* html .ModalOverlay {
	position: absolute;
}

.ModalPanel {
	background-color: #fff;
	border: 1px solid #000;
	display: none;
	left: 0;
	margin: 0;
	padding: 0;
	position: fixed;
	top: 0;
	z-index: 1001;
}

* html .ModalPanel {
	position: absolute;
}

.ModalPanel .Header {
	background-color: #eee;
	border-bottom: 1px solid #ccc;
	color: #000;
	font-weight: bold;
	padding: 5px;
	text-align: center;
}

.ModalPanel .Body {
	background-color: #fff;
	color: #000;
	height: 200px;
	overflow-y: scroll;
	padding: 2px;
	width: 500px;
}

.ModalPanel .Footer {
	background-color: #eee;
	border-top: 1px solid #ccc;
	color: #000;
	padding: 5px;
}

/* ----- Responsive Youtube Embbed --*/

.video-container {
    position: relative;
    padding-bottom: 56.25%;
    padding-top: 30px; height: 0; overflow: hidden;
}
 
.video-container iframe,
.video-container object,
.video-container embed {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
/* ----- End Responsive Youtube Embbed --*/