/******************* CSS Document *****************/
/***     This is the layout/structural markup page         **/
/***     for text styling and other see markup.css           **/
/**************************************************/

/***  Page properties */
body {
	background-image: url(../_images/bg_slash.gif);
}


/*****************************************/
/*** BEING MAIN LAYOUT BUILDING BLOCKS **/

/* Horizontal Top Line  */
div#top_line {
	top: 0px;
	left: 0px;
	height: 10px;
	width: 100%;
	background-color: #000;
}

/* Defines main page content area dimensions */
div#container {
	margin: 15px auto;
	width: 955px;
	text-align: left;
}

/* Top header with logo and login bar */
div#header {
	height: 82px;
}

/* Loginbar layout specifics */
.loginbar {
	margin-left: 25px;
}

/*  Horizontal GUI/tab bar */
div#horz_gui {
	height: 40px;
	background-image: url(../_images/horz_gui_bg.gif);
	background-repeat: repeat-x;
}

/* Container for main body content (everything between header and footer) */
div#main_body {
	position: relative;
	background-color: #d4d4d4;
	width: 955px;
	float: left;
	padding-bottom: 10px;
}

/* Vertical GUI/Site menu */
div#vert_gui {
	position: relative;
	width: 160px;
	min-height: 200px;
	float: left;
	margin-left: 10px;
	margin-top: 10px;
	padding-bottom: 10px;
	border: #bfbebe solid 1px;
}

/* Full width box for main content WITH adjacent vertical menu */
div#content_fullbox {
	width: 735px;
	position: relative;
	float: left;
	margin-top: 10px;
	margin-left: 10px;
	margin-right: 10px;
	margin-bottom: 10px;
	border: #bfbebe solid 1px;
}

/* Full width box for main content WITH adjacent vertical menu, no border/margin */
div#content_fullbox_nb {
	width: 735px;
	min-height: 220px;
	position: relative;
	float: right;
}

/* Full width box for banner  WITH adjacent vertical menu, no border/margin */
div#content_banner {
	display:table; 
	width: 620px;
	height: 100px;
	#position: relative;
	float: right;
	background-image: url(../_images/horz_grad01.jpg);
	height: 100px;
	background-repeat: repeat-y;
	overflow: hidden;
}

div#content_banner_middle {
	#top:50%; 
	#position: absolute;
	display:table-cell;
	width: 620px;
	text-align: center;
	vertical-align: middle;
}

div#content_banner_inner {
	#position: relative;
	#top:-50%; 
}


/* Full width box WITHOUT (under) vertical menu */
div#content_max {
	position: relative;
	float: left;
	width: 907px;
	margin-top: 10px;
	margin-left: 10px;
	margin-right: 10px;
	border: #bfbebe solid 1px;
}

/* Half width box */
div#halfbox {
	position: relative;
	float: left;
	width: 445px;
	margin: 10px 10px 10px 10px;
	border: #bfbebe solid 1px;
	min-height: 140px;
}
/* HACK:  Hides rule from IE5-Mac */
div>#halfbox { width: 455px; }

/* Box Heaader */
div#box_hdr {
	position: relative;
	width: 100%;
	background-image: url(../_images/box_hdr_bg.gif);
	background-repeat: repeat-x;
	height: 31px;
}

/* Box Sub Header */
div#box_subhdr {
	position: relative;
	width: 100%;
	background-image: url(../_images/box_subhdr_bg.gif);
	background-repeat: repeat-x;
	height: 24px;
}

/* Footer for bottom of page */
div#footer {
	height: 46px;
	width: 955px;
	background-image: url(../_images/footer.gif);
	clear: both;
	font-size: 10px;
	line-height: 225%;
	text-align: center;
	font-weight: bold;
	color: #bfbebe;
}
/*** END OF MAIN BUILDING BLOCKS  **/
/***********************************/

/***************************************/
/*** HORIZONTAL GUI/TAB BAR SPECIFICS **/

/* Tab Bar dimensions and location */
#tabbar {
	position: relative;
	right: 100px;
	margin-top: 11px;
	float: right;
	width: auto;
	font-size: 93%;
	line-height: 150%;
}

/* Tab bar list (link/button) container */
#tabbar ul {
	list-style: none;
}

/* Tab bar list (link/button) items */
#tabbar li {
	float: left;
	background: url("../_images/tab_lf.gif") no-repeat left top;
	padding: 0 0 0 9px;
}

/* Tab bar list (link/button) items */
#tabbar a {
	float: left;
	display: block;
	background: url("../_images/tab_rt.gif") no-repeat right top;
	padding: 10px 20px 0px 11px;
	text-decoration: none;
	font-weight: bold;
	color:#333;
	font-family: Georgia, "Times New Roman", Times, serif;
}
/* HACK: Hides rule from IE5-Mac \*/
#tabbar a {float:none;}
/* END HACK */

/* Tab bar current list (link/button) items  **/
#tabbar #current {
	background-image:url("../_images/tab_lf-on.gif");
}

#tabbar #current a {
	background-image:url("../_images/tab_rt-on.gif");
}
/*** END HORIZONTAL GUI/TAB BAR SPECIFICS **/
/*******************************************/
