/* 
  SITE: www.wayfarersclub.org.uk
  AUTHOR: Quentin James
  LAST UPDATED: 08-01-2010
----------------------------------*/

/* COLORS
  HEX COLOR      	 DESCRIPTION
  
  ---MAIN COLORS---
  #801415         	Dark Red
  #E20A16			Bright Red

  ---MISC COLORS---
  
     
----------------------------------*/

/* TABLE OF CONTENTS
  ALL SECTIONS OF THE CSS SHOULD BE NUMBERED FOR EASY REFERENCE AND SEARCHING
  
  =01 GENERIC
  =02 HEADER
  =03 NAVIGATION
  =04 MAIN IMAGE
  =05 CONTAINER
  =06 THREE BUCKETS
  =07 FOOTER

----------------------------------*/

/* CSS STRUCTURE
  DEFINES THE ORDER OF CSS TAGS WITHIN ELEMENTS TO KEEP THINGS CONSISTENT
  
  - positioning (with coordinates) styles
  - float/clear styles
  - display/visibility styles
  - spacing (margin, padding, border) styles
  - dimensions (width, height) styles
  - typography-related (line-height, color, etc.) styles
  - miscellaneous (list-style, cursors, etc.) styles  

----------------------------------*/

/*---------------------------------
 =01 GENERIC 
 
 NOTES:
----------------------------------*/


/* PNG FIX */
 img, div { behavior: url(http://www.wayfarersclub.org.uk/css/iepngfix.htc) }
/* CF2007 last modified 17.04.2008  */


body {
	padding: 0px;
	margin: 0px;
	border: 0px;
 	background: url("../images/backgrounds/background.jpg") #FFFFFF;
 	background-position: top center;
  	background-repeat: no-repeat;
}

#wrapper 
{
	padding: 0px;
	margin: 0px;
	border: 0px;
	width: 1000px;
	margin-right: auto;
	margin-left: auto;
}

p
{
	font-family: Arial, "Lucida Sans", "Lucida Sans Unicode", "Lucida Grande", lucida, sans-serif;
	font-size: 12px;
	line-height: 150%;
	font-weight: normal;
	text-align: left;
	color: #000;
	padding: 5px 0px 10px 0px;
	margin: 0;
}


a:link
{
	color: #000;
	text-decoration: underline; 
}


a:visited
{
	color: #000;
	text-decoration: underline; 
}


a:hover
{
	color: #E20A16;
	text-decoration: underline; 
}


.clear {
	clear: both;
}


.clear_footer {
	clear: both;
}




/*---------------------------------
 =02 HEADER 
 
 NOTES:
----------------------------------*/

#header 
{
	padding: 0px;
	margin: 0px;
	border: 0px;
	width: 1000px;
	height: 20px;
}


/*---------------------------------
 =03 NAVIGATION
 
 NOTES:
----------------------------------*/

#navigation
{
	padding: 0px;
	margin: 0px;
	border: 0px;
	width: 1000px;
	height: 35px;
	background: url("../images/backgrounds/navigation_background.jpg") #801415;
 	background-position: top center;
  	background-repeat: no-repeat;
}


#navigation p
{
	font-family: Arial, "Lucida Sans", "Lucida Sans Unicode", "Lucida Grande", lucida, sans-serif;
	font-size: 16px;
	line-height: 150%;
	color: #801415;
	font-weight: normal;
	text-align: center;
	padding: 6px 10px 0px 10px;
	margin: 0;
}


#navigation a:link
{
	color: #FFF;
	text-decoration: none; 
}


#navigation a:visited
{
	color: #FFF;
	text-decoration: none; 
}


#navigation a:hover
{
	color: #000;
	text-decoration: none; 
}


/*---------------------------------
 =04 MAIN IMAGE
 
 NOTES:
----------------------------------*/

#main_image
{
	padding: 0px;
	margin: 0px;
	border: 0px;
	width: 1000px;
	height: 500px;
	background: url("../images/backgrounds/header_background.jpg") #FFFFFF;
 	background-position: top center;
  	background-repeat: no-repeat;
}


#main_image_caption
{
	padding: 0px;
	margin: 0px;
	border: 0px;
	width: 1000px;
	height: 280px;
}


#main_image_caption p
{
	padding: 255px 50px 0px 50px;
	margin: 0px;
	border: 0px;
	font-weight: bold;
}


#logo
{
	padding: 0px;
	margin: 0px;
	border: 0px;
	width: 1000px;
	height: 210px;
}


/*---------------------------------
 =05 CONTAINER
 
 NOTES:
----------------------------------*/

#container
{
	padding: 10px 50px;
	margin: 0px;
	border: 0px;
	width: 900px;
	height: 100%;
	background: #FFFFFF;
}

#container h1
{
	font-family: Arial, "Lucida Sans", "Lucida Sans Unicode", "Lucida Grande", lucida, sans-serif;
	font-size: 24px;
	font-weight: normal;
	text-align: left;
	color: #000;
	padding: 0px 0px 10px 0px;
	margin: 0px;
}


#container h2
{
	font-family: Arial, "Lucida Sans", "Lucida Sans Unicode", "Lucida Grande", lucida, sans-serif;
	font-size: 16px;
	font-weight: bold;
	text-align: left;
	color: #000;
	padding: 10px 0px;
	margin: 0px;
}


#container ul
{
	padding: 0px 10px 10px 10px;
	margin: 0px;
}


#container li
{
	font-family: Arial, "Lucida Sans", "Lucida Sans Unicode", "Lucida Grande", lucida, sans-serif;
	font-size: 12px;
	line-height: 120%;
	font-weight: normal;
	text-align: left;
	color: #000;
	padding: 3px 0px;
	margin-left: 0.8em;
}


#container .table
{
	font-family: Arial, "Lucida Sans", "Lucida Sans Unicode", "Lucida Grande", lucida, sans-serif;
	font-size: 12px;
	line-height: 150%;
	font-weight: normal;
	text-align: left;
	color: #000;
 	border-collapse: collapse;
  	border-spacing: 0px;
  	margin-bottom: 15px;
  	margin-top: 10px;
  	width: 100%;
}


#container .table th{
	background:#801415;
	color: #FFF;
  	padding: 3px 5px 3px 5px;
  	font-size: 14px;
 	font-weight: bold;
  	text-align: left;
}


#container .table td{
  	border-bottom: 1px solid #000;
  	padding: 3px 5px 3px 5px;
  	text-align: left;
  	vertical-align: text-top;
}


#container .table tr.even
{
  	background:#CCC;
}


#container .table .year
{
  	background: #E20A16;
  	color: #FFF;
}


#container img
{
	padding: 0px 0px 20px 0px;
}


#container .photo
{
	font-family: Arial, "Lucida Sans", "Lucida Sans Unicode", "Lucida Grande", lucida, sans-serif;
	font-size: 11px;
	line-height: 120%;
	font-weight: normal;
	text-align: left;
	color: #FFF;
 	background: #000;
 	padding: 10px;
	margin: 10px;
}





/*---------------------------------
 =06 THREE BUCKETS
 
 NOTES:
----------------------------------*/

#three_buckets
{
	padding: 0px 50px;
	margin: 0px;
	border: 0px;
	width: 900px;
}


#three_buckets div
{
	float: left;
	padding: 0px 40px 0px 0px;
	margin: 0px;
	width: 273px;
}


#three_buckets div.last
{
	padding: 0px;
}


#three_buckets p
{
	font-family: Arial, "Lucida Sans", "Lucida Sans Unicode", "Lucida Grande", lucida, sans-serif;
	font-size: 12px;
	line-height: 120%;
	color: #FFF;
	font-weight: bold;
	text-align: left;
	padding: 10px 0px 0px 0px;
	margin: 0;
}


#three_buckets img
{
	border-width: 2px;
	border-style: solid;
	border-color: #FFF;
}

/*---------------------------------
 =07 FOOTER
 
 NOTES:
----------------------------------*/

#footer
{
	padding: 0px;
	margin: 0px;
	border: 0px;
	width: 1000px;
	height: 35px;
	background: url("../images/backgrounds/footer_background.jpg") #801415;
 	background-position: top center;
  	background-repeat: repeat-x;
  	clear: both;
	
}


#footer p
{
	font-family: Arial, "Lucida Sans", "Lucida Sans Unicode", "Lucida Grande", lucida, sans-serif;
	font-size: 12px;
	line-height: 150%;
	color: #FFFFFF;
	font-weight: normal;
	text-align: center;
	padding: 9px 10px 0px 10px;
	margin: 0;
}


#footer a:link
{
	color: #FFF;
	text-decoration: underline; 
}


#footer a:visited
{
	color: #FFF;
	text-decoration: underline; 
}


#footer a:hover
{
	color: #000;
	text-decoration: underline; 
}
