/*
	This particular method for two-column layout is described at "A List Apart" under
	xxxxxxxxxx
	
	
*/

/*
	The margin can be used to give a background colour surrounding the
	content and sidebar.
*/
body
{
	margin: 0 10% 0 10%;
	padding: 0;
	background: #366f69;
}


/*
	Purely screen layout stuff from this point forwards.
*/
#header
{
	background: #d7dabd;
	padding: 0;
}
/* This contains two further banners (big and small). */
#banner_container {
  background: #a0adc1;
  background-repeat: no-repeat;
  height: 40px;
  padding: 0;
  margin: 0;
}
/* "Drogheda Brass Band" */
#banner_big
{
	font-size: 20px;
	font-weight: bold;
	padding: 6px 0 6px 20px;
}
#banner_big a
{
	color: white;
	text-decoration: none;
}
/* "...on the web since 1998" */
#banner_small
{
	color: white;
	font-size: 12px;
	font-style: italic;
	text-align: right;
	padding: 0 10px 0 0;
	margin: 0;
}

/*
	Wrapper surrounds the content and sidebar.
	As described in "Negative Margins Layout" the same background must be set on both
	the wrapper and content_container in order to work round a bug in IE.
*/
#wrapper
{
	background: white url(../decor/sidebar.png) repeat-y right;
}
#content
{
padding: 20px;
	background: white;
}

#footer
{
	background: #B3CFCB;
	padding: 10px;
}

/*
  Navigation bar.
*/
#sitemap
{
  position: relative;
  margin: 0;
  padding: 0 0 0 10px;
  background: #B3CFCB; /* url(../decor/sitemap_bg.png); */
  height: 30px;
  font-size: 80%;
}
#sitemap li
{
  margin: 0; 
  padding: 0;
  display: inline;
  list-style-type: none;
}
#sitemap a:link, #sitemap a:visited
{
  float: left;
  line-height: 20px;
  font-weight: bold;
  margin: 4px 10px 0 10px;
  padding-bottom: 2px;
  text-decoration: none;
  border: none;
  color: #004139;
}
#sitemap a:link.active, #sitemap a:visited.active, #sitemap a:hover
{
  border-bottom: 4px solid #fff;
  padding-bottom: 2px;
  color: #598cae;
}

.clearing
{
	height: 0;
	clear: both;
}

