/* *********************************************************

layout elements 

********************************************************* */

#container {
	border:solid 1px #666666;
	width:1002px;
	margin:0px auto;
	background-image:url('/images/bg.png');
	background-repeat:repeat-y;
	width:950px;
}

#header {
	height:74px;
	background-image:url('/images/banner_bg.png');
	background-repeat:repeat-x;
	border-bottom:solid 1px #666666;
	clear:right;
}

	#header_image {
		position:absolute;
		float:left;
		height:74px;
		width:300px;
		cursor:pointer;
	}
	
	#header_search_form {
		float:right;
	}
	
	#greeting {
		float:right;
		padding-right:5px;
	}

	* html #header_search_form {position:absolute;left:700px;}


#menu {
	width:198px;
	padding-left:2px;
	font-size:0.85em;
}

	#menu ul {
		margin:0px;
		padding:0px;
		list-style-type:none;
	}
	#menu ul li {
		margin:0px;
		padding:0px;
		padding-left:8px;
	}

#content {
	width:598px;
	padding-left:2px;
}

#sidebar {
	width:150px;
	text-align:center;
}

	#sidebar img {
		margin:5px 0px;
	}

#footer {
	clear:left;
	height:25px;
	border-top:solid 1px #666666;
	background-color:#cccc66;
	text-align:center;
}

	#footer a:link, #footer a:active, #footer a:visited {
		color:#666666;
		font-size:0.8em;
		margin:0px 8px;
	}
	
	#footer a:hover {
		text-decoration:underline;
		color:#ff0000;
		font-size:0.8em;
		margin:0px 8px;
	}

#subfooter {
	padding-top:20px;
	text-align:center;
	background-color:#ffffff;
}


.column {
	float:left;
	padding-bottom:10px;
}

/* *********************************************************

navigation elements, menu and breadcrumb 

********************************************************* */

#menutree {
}

#menutree h3 {
	margin-top:10px;
	margin-bottom:3px;
}

#menutree div {
	background-image:url(/images/folder_open.png);
	background-repeat:no-repeat;
	padding-left:18px;
	cursor:pointer;
	margin-top:3px;
}
#menutree ul {
	margin-top:0px;
	margin-bottom:10px;
	cursor:pointer;
	list-style-type:none;
	padding-left:16px;

}

#menutree div.open {
	background-image:url(/images/folder_open.png);
}

#menutree ul.open {
	display:block;
}

#menutree div.closed {
	background-image:url(/images/folder_closed.png);
}

#menutree ul.closed {
	display:none;
}

#menutree li {
	white-space:nowrap;
}

#menutree a:active, #menutree a:link, #menutree a:visited  {
	display:block;
	color:#666666;
	text-decoration:none;
	padding:0px;
	margin:0px;
}
#menutree a:hover {
	display:block;
	color:#ff6666;
	text-decoration:underline;
	padding:0px;
	margin:0px;
}


#bread {
	font-size:0.9em;
	font-weight:bold;
	margin-bottom:10px;
}
#bread span {
	color:#999999;
}
#bread a:active, #bread a:link, #bread a:visited {
	color:#3333ff;
}
#bread a:hover {
	color:#ff0000;
	text-decoration:none;
}


@media print {
	#subfooter {display:none;}
	#sidebar {display:none;}
	#menu {display:none;}
	#footer {display:none;}
	#subfooter {display:none;}
	#content {width:100%;}
}


