/**********************************************************************/
/*** Main layout CSS - DarkShades theme 0.1 (sean@silverstripe.com) ***/
/**********************************************************************/

/****************/
/** Global CSS **/
/****************/
html {  
	background: #F0F0F0;
}
* {
	padding: 0;
	margin: 0;
	font-family: Arial, Helvetica, sans-serif;
	list-style-type: none;
}

/* Clearing classes */
.clear {
	clear: both;
}
	.clearLeft {
		clear: left;
	}
	.clearRight {
		clear: right;
	}
	
/* Set styling for anchors */
a {
/*	color: #9ce80b; */
	color: #FFFFFF;
	text-decoration: none;
}
	a:hover {
		/*color: #425672;*/
		text-decoration: none;
		/*background: #425672;*/
 	}
	a:active {
		color: #000;
		text-decoration: none;
		background: #425672;
	}
	a img {
		border: none;
		text-decoration: none;
	}

/* Set the font size for breadcrumbs */
.breadcrumbs {
	font-size: 11px;
}

/* Re-usable RSS link with icon styling */
.commentrss {
	background: url(../images/feed-icon-14x14.png) no-repeat left center;
	padding-left: 18px;
}
	.commentrss:hover {
		background: #4D5E2F url(../images/feed-icon-14x14.png) no-repeat left center;
	}

/****************/
/** Layout CSS **/
/****************/

/* Container element to support the centering of elements */
#container {
  width: 950px;
  margin: auto;
  background: white;
}
/* Apply padding to these elements */
#Layout {
	background: #ffffff;
	padding-left: 32px;
	padding-right: 32px;
	min-height: 400px;
	position: relative;
	width: 886px;
	margin-top: 15px;
}
#Footer {
	padding-left: 32px;
	padding-right: 32px;
	background: #425672;
}

/* Main 'container' element used as redundancy to add background image */
/* not used anymore
#Main {
	background: #FFF no-repeat top center;
	padding-top: 0px;
}
*/

/* Header styling - it contains the <h1> element and a site slogan */
#headercontainer {
	background: #425672;
	margin: 0px;
	height: 70px;
	position: relative;
	width: 950px;
}

	#headercontainer h1 {
		font-weight: normal;
		font-size: 40px;
		letter-spacing: -0.075em;
		padding: 0px 0px;
		background: no-repeat bottom center;
	}
		#headercontainer h1 a {
			color: #000;
			text-decoration: none;
		}
		#headercontainer h1 a:hover {
			text-decoration: underline;
			color: #fff;
		}
	#headercontainer #Logo {
		background: #425672;
		position: absolute;
		left: 0px;
	}

	#headercontainer #Quicklinks {
		color: #FFFFFF;
		font-size: 12px;
		text-align: right;
		width: 320px;
		position: relative;
		margin-left: 598px;
		margin-right: 32px;
	}
	#headercontainer #SearchBox {
		background: #425672;
		width: 280px;
		height: 30px;
		right: 32px;
		padding: 0px;
		position: absolute;
	}
		#headercontainer #SearchBox * {
			border: none;
		}
		#headercontainer #SearchBox input.text {
			border: none;
			background: #fff;
		}
		#headercontainer #SearchBox form {
			position: absolute; 
			right: 0px;
			padding: 0px;
		}
				
	/* ulrich */
	#headercontainer #Slogan {
		color: #FFFFFF;
		font-size: 14px;
		left:112px;
		position:absolute;
		top:48px;
	}
	/* ulrich */
#Headmenu {
	background: #d9dde3;
	margin: 0px; 
	position: relative;
	height: 28px;
	padding-left: 32px;
}
	#Headmenu ul {
		padding: 0px;
		margin: 0px;
	}

/* Left content styling - this is the side box which usually contains a menu */
#LeftContent {
	float: left;
	width: 133px;
}

/* Center content styling - containing standard content */
#CenterContent {
	padding: 0 10px 10px;
	position: relative;
	min-height: 400px;
}
	#CenterContent.marginright {
		margin-right: 190px;
	}
	#CenterContent.marginleft {
		margin-left: 150px;
	}

/* Side bar styling - widgets and module templating uses this. class sidebarBox is a standard
	re-usable box for widgets and other pieces of functionality that fit on the right hand side
	of the layout */
#Sidebar {
	float: right;
	width: 180px;
	margin-left: 20px;
}
	#Sidebar .sidebarBox {
		border-top: 5px solid #758b4a;
		background: #666 url(../images/sidebar_bottom.gif) no-repeat bottom left;
		padding: 5px;
		margin-bottom: 20px;
		font-size: 10px;
	}
		#Sidebar ul,
		#Sidebar li {
			margin: 0;
			padding: 0;
			font-size: 10px;
		}
			#Sidebar ul {
				padding-left: 15px;
			}
			#Sidebar li {
				list-style-position: outside;
				margin-bottom: 3px;
			}

/* Page numbers styling - used for pagination. Just add the class "pagination" to use this styling.
	For a guide on how to format your HTML markup in order to use this styling, please see:
	http://doc.silverstripe.com/doku.php?id=tutorial:4-site-search - alternatively, you can view
	Page_results.ss inside darkshades/templates/Layout which is where this styling for pagination is derived from */
.pagination {
	text-align: center;
	padding: 10px 0;
	color: #9ce80b;
	background: #FFF;
	border: 1px solid #333;
}
	.pagination .prev,
	.pagination .next,
	.pagination .pageNumber,
	.pagination .summary {
		font-size: 10px;
	}
		.pagination .pageNumber {
			border: 1px solid #666;
			padding: 3px 8px;
			background: #FFF;
		}
			.pagination .pageNumber:hover {
				background: #F1F3F8;
				color: #000;
			}
			.pagination .current {
				color: #FFF;
				background: #555 !important;
			}
	.pagination .summary {
		margin: 5px 0 0 0;
		color: #666;
	}
	
#Results li {
	list-style-type: none;
	list-style: none;
	margin: 10px 0;
	padding-bottom: 20px;
	border-bottom: 1px solid #666;
}


/* Footer styling - usually contains copyright information and site information */
#Footer {
	clear: both;
/*	background: url(../images/footer_bg.gif) no-repeat bottom center; */
	background: #425672   no-repeat bottom center;
	padding: 4px;
	text-align: right;
}
	#Footer p {
		font-size: 11px;
		margin-right: 42px;
		color: #ddd;
	}

#subheading {
	
}
	#subheading p {
		  font-weight: bold;
		  font-size: 13px;
	}
	#subheading li {
		  font-weight: bold;
		  font-size: 13px;
	}
#singlecolumn {

}