/* CSS Document */

/* Brittany Ferries - CSS document | Strangecorp */
/* Jim Rixon | Senior Developer | Strange Corporation */

/* --- DEFAULT STYLING --- */
html, body {
	/* height: 100%; */
	}

body * {
	/* --- CLEARS DEFAULT MARGIN & PADDING FOR ALL CHILD ELEMENTS --- */
	margin: 0;
	padding: 0;
	}
	
body {		
	background-color: #24244a; /* --- DEFAULT BACKGROUND COLOUR --- */
	color: #000; /* --- DEFAULT FOREGROUND (TEXT) COLOUR --- */
			
	font-family: Arial, Helvetica, sans-serif; /* --- DEFAULT FONT FAMILY --- */
	font-size: 62.5%; /* --- RESIZE BASE FONT SIZE (1em = 10px) --- */
	
	margin: 0;
	padding: 0;
	}
	
h1 {
	font-size: 3em;
	margin: 0 0 20px 0;
	}
	
h2 {
	font-size: 2em;
	margin: 0 0 20px 0;
	}

a img {
	border: 0;
	margin: 0;
	padding: 0;
	}

.fleft {
	float: left;
	}
	
.fright {
	float: right;
	}
	
/* --- DIV Layout --- */
#pagewrapper {
	width: 900px;
	overflow: hidden;
	margin: 10px auto;
	}

/* --- Main Navigation --- */	
#navigation {
	background-color: #3d83bc;
	margin: 10px 0;
	}
	
	#navigation ul {
		width: 900px;
		overflow: hidden;
		}
	
	#navigation li {
		float: left;
		display: block;
		width: 150px;
		text-align: center;
		}
		
		#navigation li a {
			display: block;
			font-size: 1.2em;
			color: #fff;
			padding: 10px 0;
			text-decoration: none;
			}
		
		#navigation li a:hover {			
			text-decoration: underline;
			}
			
/* --- BF Content --- */

#content {
	background-color: #fff;
	width: 890px;
	overflow: hidden;
	padding: 5px;
	}
	
	#content a.mainimage {
		float: left;
		width: 260px;
		margin: 0 20px 0 0;
		}
	
	#content a.mainimage img {
		padding: 5px 5px 0 0;
		}
	
	#content .textwrapper {
		width: 386px;
		float: left;
		}
		
	#content p {
		font-size: 1.2em;
		line-height: 1.4em;
		margin: 0 0 15px 0;
		}
		
		#content p.first {
			margin-top: 20px;
			}
			
		#content p.last {
			margin-bottom: 0px;
			}
		
	#content h2 {
		font-size: 1.6em;
		margin-bottom: 5px;
		color: #da272a;
		}
	
#rightcolumn {
	float: right;
	width: 206px;
	margin: 0;
	padding: 0;
	}
	
	#rightcolumn p.button {
		background: url(/pawsforawalk/images/button_right_bg.jpg) repeat-x right;
		background-color: #3d83bc;
		font-size: 1.1em;
		margin: 1px 0 0 0;
		}
		
		#rightcolumn p.button a {
			background: url(/pawsforawalk/images/button_left_bg.jpg) no-repeat left;
			display: block;
			width: 166px;
			height: 40px;
			color: #fff;
			font-weight: bold;
			text-decoration: none;
			padding: 5px 0 0 40px;
			}
			
		#rightcolumn p.button a:hover {
			text-decoration: underline;
			}
			
			
/* --- Footer --- */
			
#footer {
	background-color: #3d83bc;
	margin: 10px 0;
	padding: 10px;
	width: 880px;
	overflow: hidden;
	}
	
	#footer a {
		color: #fff;
		font-size: 1.2em;
		text-decoration: none;
		}
		
		#footer a:hover {
			text-decoration: underline;
			}
			