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

/****************/
/** Global CSS **/
/****************/
html {  
	background: #122C33;
}
* {
	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: #66cccc;
	text-decoration: none;
}
	a:hover {
	color: #66FFCC;
	text-decoration: underline;
	background: #6699CC;
 	}
	a:active {
	color: #000;
	background: #66cccc;
	}
	a img {
		border: 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: 748px;
  margin: 10px auto;
}
/* Apply padding to these elements */
#Layout,
#Footer {
	padding-left: 45px;
	padding-right: 45px;
}

/* Main 'container' element used as redundancy to add background image */
#Main {
	background: #464646 url(../images/main_bg.gif) no-repeat top center;
	padding-top: 9px;
}

/* Header styling - it contains the <h1> element and a site slogan */
#headercontainer {
	background: #66cccc url(../images/header_repeat.gif) repeat-y center;
	margin: 0 24px 50px 23px;
}
	#Header {
		background: url(../images/header_top.gif) no-repeat top center;
		position: relative;
	}
		#Header h1 {
			font-weight: normal;
			font-size: 40px;
			letter-spacing: -0.075em;
			padding: 25px 18px;
			background: url(../images/header_bottom.gif) no-repeat bottom center;
		}
			#Header h1 a {
	color: #336666;
	text-decoration: none;
			}
			#Header h1 a:hover {
				text-decoration: underline;
				color: #fff;
			}
			#Header #SearchBox {
				position: absolute;
				top: 35px;
				right: 0px;
				width: 200px;
			}
				#Header #SearchBox * {
					display: inline;
				}
					#Header #SearchBox input.text {
						border: none;
					}

/* 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: 10px
}
	#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 #66cccc;
	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: #66CCCC;
	background: #444;
	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: #333;
		}
			.pagination .pageNumber:hover {
	background: #336666;
			}
			.pagination .current {
				color: #000;
				background: #666 !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;
	padding: 10px 5px;
	text-align: right;
}
	#Footer p {
		font-size: 11px;
		margin-right: 42px;
		color: #ddd;
	}
