/*--------------------------------------------------------------*/
/*	The following are style definitions for the body	*/
/*	and any html tags.					*/
/*--------------------------------------------------------------*/
body {
	background-color: black;
	font-family: Verdana, "Book Antiqua", Georgia, Helvetica, Arial;
	font-size: 10pt;
}

/*--------------------------------------------------------------*/
/*	This is the overall container of the entire web page.	*/
/*--------------------------------------------------------------*/

#container {
	margin: 0 auto;
	position: relative;
	text-align: center;
	width: 750px;
}

/*--------------------------------------------------------------*/
/*	This is the top picture.				*/
/*--------------------------------------------------------------*/

#top_picture {
	background-image: url(img/tlc.jpg);
	background-repeat: no-repeat;
	height: 250px;
	text-align: center;
	width: 750px;
}

/*--------------------------------------------------------------*/
/*	This is the menu on the bottom right.			*/
/*--------------------------------------------------------------*/

#menu {
	background: #304665;
	left: 150px;
	position: absolute;
	top: 232px;
}

#menu ul {
	float: left;
	list-style: none;
	margin: 0;
	padding: 0;
}

#menu li {
	display: inline;
	position: relative;
}

#menu a, #menu a:link {
	border: 1px solid black;
	border-collapse: collapse;
	color: white;
	float: left;
	margin: 0;
	padding-bottom: 2px;
	text-align: center;
	width: 118px;
	text-decoration: none;
}

#menu a:hover {
	background-color: #ccc;
	color: black;
}

/*--------------------------------------------------------------*/
/*	This is for the submenus.				*/
/*--------------------------------------------------------------*/

#menu ul ul {
	background-color: #104665;
	border-collapse: collapse;
	font-size: 8pt;
	left: 0;
	margin: 0;
	padding: 0;
	position: absolute;
	text-align: left;
	top: 19px;
	width: 119px;
	z-index: 500;
}

#menu ul ul,
#menu ul li:hover ul
{display: none;}

#menu a:hover ul,
#menu li:hover ul
{display: block;}
/*--------------------------------------------------------------*/
/*	This is where the newsflash style is defined.		*/
/*--------------------------------------------------------------*/

#newsflash {
	background-color: #ccc;
	border: 1px solid black;
	height: 300px;
	left: 0px;
	position: absolute;
	top: 251px;
	width: 149px;
}

#newsflash_banner {
	background-color: #304665;
	color: white;
	height: 18px;
	text-align: center;
}

#newsflash_content {
}

#sidebar ul {
	font-size: 10pt;
	margin-left: 0;
	padding-left: 0;
}

#sidebar li {
	list-style: none;
	padding-bottom: 4px;
	margin-left: 20px;
	margin-right: 50px;
}

#sidebar li a:hover {
	color: maroon;
}

#sidebar-header {
	color: darkblue;
	display: none;
	font-size: 12pt;
	margin-left: 20px;
}

/*--------------------------------------------------------------*/
/*	This is the content of the web page.			*/
/*--------------------------------------------------------------*/

#content {
	color: white;
	font-weight: normal;
	height: 280px;
	left: 0px;
	overflow: auto;
	padding: 4px;
	padding-left: 10px;
	position: absolute;
	top: 251px;
	width: 100%;
}

#content ul {
	margin: 0;
	padding: 0;
}

#content li {
	list-style: none;
	margin: 0;
	padding: 0;
}

/*--------------------------------------------------------------*/
/*	This is the footer (very bottom) of the web page.	*/
/*--------------------------------------------------------------*/

#footer {
	background-color: #3E638F;
	bottom: -1px;
	color: white;
	font-size: 8pt;
	left: 0px;
	position: absolute;
	width: 100%;
}

#footerleft {
	display: inline;
	padding-left: 4px;
	text-align: left;
}

#footerright {
	display: inline;
	position: absolute;
	right: 4px;
	text-align: right;
}

/*--------------------------------------------------------------*/
/*	The following are common classes used in the page.	*/
/*--------------------------------------------------------------*/

.heading {
	font-size: 20pt;
	font-style: italic;
	font-weight: bold;
	text-align: center;
}

.link {
	color: white;
	padding-right: 5px;
}

.link:hover {
	color: orange;
}

.red {
	color: red;
}