/**
 * 100% height layout with header and footer
 * ----------------------------------------------
 * Feel free to copy/use/change/improve
 */

#marqueecontainer {
	position: relative;
	width: 650px; /*marquee width */
	height: 50px; /*marquee height */
	background-color: white;
	overflow: hidden;
	border: 1px solid orange;
	padding: 2px;
	padding-left: 4px;
}
/* CSS FOR TICKER */
#dropcontentsubject {
	width: 650px;
	font-weight: bold;
}
.dropcontent {
	width: 650px;
	height: 50px;
	border: 1px solid black;
	background-color: #EFEFEF;
	padding: 2px;
	display:block;
}
/*CSS FOR WEBSITE*/
html, body {
	margin:0;
	padding:0;
	height:100%; /* needed for container min-height */
	background:gray;
	font-family:arial, sans-serif;
	font-size:small;
	color:#333;
}
h1 {
	font:1.5em georgia, serif;
	margin:0.5em 0;
}
h2 {
	font:1.25em georgia, serif;
	margin:0 0 0.5em;
}
h1, h2, a {
	color:#004069;
}
p {
	line-height:1.5;
	margin:0 0 1em;
}
.headline1{
	font-weight:bold;
	text-decoration:underline;
}
.headline2{
	/*color:#000;*/
	color:#004069;
	font-weight:bold;
	text-decoration:none;
}

.side {
	/*font-size:small;*/
	line-height:2.0;
	/*margin:0 0 1em;*/
}

.repository_main {
	color: #004069;
	margin-left: 0;
	font-size:medium;
	line-height:1.0;
	font-weight:bold;
}
.repository_sub {
	/*color: #004069;*/
	color: blue;
	margin-left: 2em;
	font-size:small;
	line-height:1.0;
	font-weight:bold;
}
.repository {
	/*margin-left: 10em;*/
	/*line-height:0.5;*/
	background-color:#F9F9FF;
}
.repository:hover {
	/*margin-left: 10em;*/
	/*line-height:0.5;*/
	background-color:#FFF;
}
.repository_doc {
	margin-left: 4em;
	font-weight:bold;
	/*line-height:0.5;*/
}

table#repository {
	width: 100%;
}
table#repository tr{
	background-color:#F9F9FF;
}
table#repository tr:hover {
	background-color:#FFF;
}
table#repository td{
}
.leftCol {
	font-weight:bold;
	padding-left:20px;
	width: 75%;
}

div#container {
	position:relative; /* needed for footer positioning*/
	margin:0 auto; /* center, not in IE5 */
	width:900px;
	background:#f0f0f0;
	height:auto !important; /* real browsers */
	height:100%; /* IE6: treaded as min-height*/
	min-height:100%; /* real browsers */
	min-width:900px; /* real browsers */
}
div#header {
	padding:0em;
	/*background:#ddd url("../csslayout.gif") 98% 10px no-repeat;*/
	background: #004069;
	/*background: #ebebeb;*/
	border-bottom:2px gray;
}
div#header p {
	font-style:italic;
	font-size:1.1em;
	margin:0;
}
div#topbar1 {
	padding:0em;
	/*background:#ddd url("../csslayout.gif") 98% 10px no-repeat;*/
	background: #004069;
	/*background-image: url(images/menu_bg.jpg);
	background-repeat:repeat-x;*/
	/*background: #ebebeb;*/
	border-bottom: 1px solid #999;
	z-index:0;
}
div#sidebar1 {
	background-color:#E5E5E5;
	/*background-image:url(images/bg_sidebar.png);
	background-position:right;
	background-repeat:repeat-y;*/
	border-bottom:1px solid #004069;
	border-right: 1px solid #004069;
	float: left;
	width: 14em; /* since this element is floated, a width must be given */
	/*background: #004069;*/
	/*background: #EBEBEB; /* the background color will be displayed for the length of the content in the column, but no further */
	padding:1em 1em 1em; /* bottom padding for footer */
	height:auto !important; /* real browsers */
	height:100%; /* IE6: treaded as min-height*/
	min-height:100%; /* real browsers *//*padding: 15px 0; /* top and bottom padding create visual space within this div */
}
div#content_Index {
	padding:1em 4em 1em; /* bottom padding for footer */
	margin: 0 5px 0 14em; /* the right margin can be given in percentages or pixels. It creates the space down the right side of the page. */
}
div#content {
	padding:1em 4em 5em; /* bottom padding for footer */
	margin: 0 20px 0 20px; /* the right margin can be given in percentages or pixels. It creates the space down the right side of the page. */
}
div#content p {
	text-align:justify;
	padding:0 1em;
}
div#footer {
	position:absolute;
	width:100%;
	bottom:0; /* stick to bottom */
	background:#ddd;
	border-top:2px double gray;
}
div#footer p {
	color:#000;
	padding:0em;
	margin:0;
	text-align:center;
}
.clearfloat { /* this class should be placed on a div or break element and should be the final element before the close of a container that should fully contain a float */
	clear:both;
	height:0;
	font-size: 1px;
	line-height: 0px;
}

