/* CSS Document */

body {
	margin: 0px;
	background-image: url("/images/bg_page.gif");
	background-repeat: repeat-x;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 12px;
}

a:link { color: #00539b; }
a:visited { color: #2f699c; }
a:active { color: #cccccc; }
a:hover { color: #00cc00; }

p {
	margin-top: 0px;
}

h1 {
	color: #00539b;
	font-size: 24px;
	font-weight: bold;
	margin-bottom: 5px;
	line-height: 24px;
}

h2 {
	font-size: 18px;
	font-weight: bold;
	margin-bottom: 5px;
	line-height: 18px;
}

.main {
	line-height: 18px;
	padding: 20px;
}

.headerTitle {
	background-image: url("/images/bg_title.jpg");
	color: #ffffff;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 36px;
	font-weight: bold;
	line-height: 30px;
	padding-left: 50px;
}

.floatHeaderTitle {
	font-size: 12px;
	font-weight: bold;
	color: #00539b;
	padding-top: 5px;
	padding-bottom: 5px;
}

.floatText {
	font-size: 10px;
	line-height: 13px;
}

.floatLined {
	border-bottom: 1px solid #cccccc;
	border-left: 1px solid #cccccc;
}

.tableOverlay {
	background-image: url("/images/bg_overlay.gif");
	background-repeat: no-repeat;
	width: 220px;
	height: 640px;
	position: relative;
	top: -310px;
	left: 20px;
	float: right;
	margin-bottom: -310px;
}

.theading {
	font-size: 10px;
	font-weight: bold;
	border-bottom: 1px solid #cccccc;
}

.date {
	font-size: 9px;
	font-weight: normal;
	line-height: 9px;
	color: #666666;
}

.smallerborder {
	font-size: 11px;
	vertical-align: top;
	border-right: 1px solid #cccccc;
	border-bottom: 1px solid #cccccc;
}

.footer {
	text-align: center;
	font-size: 10px;
	padding: 10px;
}

/*
	root element for the scrollable.
	when scrolling occurs this element stays still.
*/
.scrollable {
	/* required settings */
	position:relative;
	overflow:hidden;
	width: 180px;
	height:310px;
}

/*
	root element for scrollable items. Must be absolutely positioned
	and it should have a extremely large width to accomodate scrollable items.
	it's enough that you set the width and height for the root element and
	not for this element.
*/
.scrollable .items {
	/* this cannot be too large */
	width:20000em;
	position:absolute;
	clear:both;
}

/* single scrollable item */
.scrollable div {
	float:left;
	cursor:pointer;
	width:180px;
	height:310px;
}

/* active item */
.scrollable .active {
	border:2px solid #000;
	z-index:9999;
	position:relative;
}
