/*CUSTOM FONT*/
@font-face {
    font-family: "Mermaid";
    src: url("/media/fonts/Mermaid.ttf");
}

/*DATE ICON*/
div.date-wrapper{
	display: block;
	width: 50px;
	height: 50px;
	background-color: #FFFFFF;
	-moz-box-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
	-webkit-box-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
	box-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
	-webkit-border-radius: 10px; /* Safari 3-4, iOS 1-3.2, Android 1.6- */
	-moz-border-radius: 10px; /* Firefox 1-3.6 */
	border-radius: 10px;
	/* Prevent background color leak outs with border radius */
	-webkit-background-clip: padding-box; 
	-moz-background-clip: padding; 
	background-clip: padding-box;
}
	div.date-month{
		width: 100%;
		line-height: 15px;
		height: 15px;
		font-size: 11px;
		font-weight: normal;
		text-align: center;
		color: #FFF;
		background: #a90329; /* Old browsers */
		background: -moz-linear-gradient(top,  #a90329 0%, #6d0019 100%); /* FF3.6-15 */
		background: -webkit-linear-gradient(top,  #a90329 0%,#6d0019 100%); /* Chrome10-25,Safari5.1-6 */
		background: linear-gradient(to bottom,  #a90329 0%,#6d0019 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
		filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#a90329', endColorstr='#6d0019',GradientType=0 ); /* IE6-9 */
		-moz-box-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
		-webkit-box-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
		box-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
		-webkit-border-radius: 10px 10px 0 0; /* Safari 3-4, iOS 1-3.2, Android 1.6- */
		-moz-border-radius: 10px 10px 0 0; /* Firefox 1-3.6 */
		border-radius: 10px 10px 0 0;
		/* Prevent background color leak outs with border radius */
		-webkit-background-clip: padding-box; 
		-moz-background-clip: padding; 
		background-clip: padding-box;
	}
	
	div.date-day{
		color: #000;
		font-weight: bold;
		font-size: 27px;
		text-align:center;
		height: 35px;
		line-height: 35px;
	}

	
/*TEMPLATE STYLE*/
	
/*Global styles*/
html{
	font-size: 15px;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

*, *:before, *:after{
	-webkit-box-sizing: inherit;
	-moz-box-sizing: inherit;
	box-sizing: inherit;
}

.cf:before,
.cf:after{
	content: " ";
	display: table;
}

.cf:after{
	clear: both;
}

.cf{
	*zoom: 1;
}

div#background{
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-image: url("/media/images/backgrounds/image1.jpg");
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=85)"; /* IE 8 */
	filter: alpha(opacity=85); /* IE 5-7 */
	-moz-opacity: 0.85; /* Netscape */
	-khtml-opacity: 0.85; /* Safari 1.x */
	opacity: 0.85;
}

div#wrapper{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

header{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
}
	
	div#header-image{
		position: relative;
		margin: 0 auto;
		z-index: 1;
		background-position: center;
		background-size: cover;
		background-repeat: no-repeat;
		-ms-filter: "progid:DXImageTransform.Microsoft.Dropshadow(OffX=0, OffY=0, Color='#444')"; /* IE 8 & 9 */
		filter: "progid:DXImageTransform.Microsoft.Dropshadow(OffX=0, OffY=0, Color='#444')"; /* IE 5.5 - 7 */
		-webkit-filter: drop-shadow(0px 0px 5px rgba(0, 0, 0, 0.5));
		filter: drop-shadow(0px 0px 5px rgba(0, 0, 0, 0.5)); 
	}
	
	nav{
		position: relative;
		margin: 0 auto;
		width: 100%;
		height: 35px; /*if you change this, change the header's height too*/
	}
	
		div#header-menu{
			display: none;
		}
		
		nav ul{
			position: relative;
			margin: 0;
			padding: 0;
			white-space: nowrap;
		}
			
			nav ul a{
				color: #000;
				text-decoration: none;
				font-size: 16px;
			}
			
			nav ul a:hover{
				color: #000;
			}
			
			nav ul li{
				position: relative;
				display: inline-block;
				height: 30px;
				line-height: 30px;
				cursor: pointer;
				vertical-align: top;
				text-align: center;
				font-weight: bold;
				margin-right: 3px; /*if you change this, the width will need tweaking*/
				-moz-box-shadow: 0 5px 5px rgba(0, 0, 0, 0.5);
				-webkit-box-shadow: 0 5px 5px rgba(0, 0, 0, 0.5);
				box-shadow: 0 5px 5px rgba(0, 0, 0, 0.5);
				-webkit-border-radius: 0 0 10px 10px; /* Safari 3-4, iOS 1-3.2, Android 1.6- */
				-moz-border-radius: 0 0 10px 10px; /* Firefox 1-3.6 */
				border-radius: 0 0 10px 10px;
				/* Prevent background color leak outs with border radius */
				-webkit-background-clip: padding-box; 
				-moz-background-clip: padding; 
				background-clip: padding-box;
			}

			nav ul li:hover{
				height: 35px;
				line-height: 35px;
			}
			
			nav ul li.selected{
				z-index: 2;
				height: 35px;
				line-height: 35px;
			}	
			
main{
	position: absolute;
	left: 0;
	width: 100%;
}

	main section#content{
		position: relative;
		margin: 0 auto;
		padding: 15px;
		-moz-box-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
		-webkit-box-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
		box-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
		-webkit-border-radius: 10px; /* Safari 3-4, iOS 1-3.2, Android 1.6- */
		-moz-border-radius: 10px; /* Firefox 1-3.6 */
		border-radius: 10px;
		/* Prevent background color leak outs with border radius */
		-webkit-background-clip: padding-box; 
		-moz-background-clip: padding; 
		background-clip: padding-box;
	}
	
		section#page-navbar{
			display: block;
			width: 100%;
			height: 30px;
			margin-bottom: 10px;
			text-align: center;
		}
		
			section#page-navbar div{
				display: inline-block;
				-moz-box-shadow: 0 0 5px rgba(0, 0, 0, 1);
				-webkit-box-shadow: 0 0 5px rgba(0, 0, 0, 1);
				box-shadow: 0 0 5px rgba(0, 0, 0, 1);
				-webkit-border-radius: 10px; /* Safari 3-4, iOS 1-3.2, Android 1.6- */
				-moz-border-radius: 10px; /* Firefox 1-3.6 */
				border-radius: 10px;
			}
		
			section#page-navbar ul{
				margin: 0;
				padding: 0;
			}
				
				section#page-navbar ul li{
					display: block;
					height: 30px;
					line-height: 30px;
					float: left;
					min-width: 100px;
					color: #222;
					text-align: center;
					margin-right: 0;
					padding: 0 10px;
					border-right: 1px solid #555;
					z-index: 2;
					-webkit-border-radius: 0; /* Safari 3-4, iOS 1-3.2, Android 1.6- */
					-moz-border-radius: 0; /* Firefox 1-3.6 */
					border-radius: 0;
				}
				
				section#page-navbar ul a:first-child li{
					-webkit-border-top-left-radius: 10px; /* Safari 3-4, iOS 1-3.2, Android 1.6- */
					-moz-border-radius-topleft: 10px; /* Firefox 1-3.6 */
					border-top-left-radius: 10px;
					-webkit-border-bottom-left-radius: 10px; /* Safari 3-4, iOS 1-3.2, Android 1.6- */
					-moz-border-radius-bottomleft: 10px; /* Firefox 1-3.6 */
					border-bottom-left-radius: 10px;
				}
				
				section#page-navbar ul a:last-child li{
					border-right: none;
					-webkit-border-top-right-radius: 10px; /* Safari 3-4, iOS 1-3.2, Android 1.6- */
					-moz-border-radius-topright: 10px; /* Firefox 1-3.6 */
					border-top-right-radius: 10px;
					-webkit-border-bottom-right-radius: 10px; /* Safari 3-4, iOS 1-3.2, Android 1.6- */
					-moz-border-radius-bottomright: 10px; /* Firefox 1-3.6 */
					border-bottom-right-radius: 10px;
				}
				
				section#page-navbar ul li.selected{
					color: #000;
				}
		
		section.page-tab-content{
			display: none;
		}
		
		section.page-tab-content.selected{
			display: block;
		}
		
		main section#content h1{
			margin: 0;
			font-size: 25px;
		}
		
		main section#content h2{
			margin: 0;
			font-size: 20px;
		}
		
		main section#content h3{
			margin: 0;
			font-size: 16px;
		}
		
		main section#content h3.placeholder{
			text-align: center;
			color: #4d4d4d;
			margin-top: 10px;
			margin-bottom: 10px;
		}
		
		main section#content h3.separator{
			margin-top: 10px;
			margin-bottom: 10px;
		}
		
		main section#content p{
			font-size: 15px;
			text-align: justify;
		}
		
		main section#content h3.faq-question{
			margin-top: 20px;
			margin-bottom: 0;
			font-size: 15px;
			text-align: left;
		}
		
		main section#content p.faq-answer{
			margin-top: 5px;
			font-size: 15px;
		}
		
		ul.spaced-list li{
			margin-bottom: 20px;
		}
		
		main section#content div.indent{
			margin-left: 25px;
		}
		
		main section#content p.footnote{
			font-size: 13px;
			color: #222;
		}
		
		img.right, img.left, img.centre{
			-moz-box-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
			-webkit-box-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
			box-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
		}
		
		img.right{
			float: right;
			margin-left: 15px;
			margin-bottom: 15px;
		}
		
		img.left{
			float: left;
			margin-right: 15px;
			margin-bottom: 15px;
		}
		
		img.centre{
			max-width: 500px;
			display: block;
			margin: 0 auto;
		}
		
		img.link-icon{
			width: 16px;
			height: 16px;
			vertical-align: bottom;
		}
		
		a{
			font-weight: bold;
			text-decoration: none;
		}
		
		button.quick-link{
			font-size: 18px;
			padding: 10px;
			min-width: 150px;
			margin-right: 30px;
			-webkit-border-radius: 15px; /* Safari 3-4, iOS 1-3.2, Android 1.6- */
			-moz-border-radius: 15px; /* Firefox 1-3.6 */
			border-radius: 15px;
			outline: none;
		}
		
		button.quick-link:hover{
			-moz-box-shadow: 0 0 7px rgba(0, 0, 0, 0.5);
			-webkit-box-shadow: 0 0 7px rgba(0, 0, 0, 0.5);
			box-shadow: 0 0 7px rgba(0, 0, 0, 0.5);
		}
		
		button.quick-link:last-of-type{
			margin-right: 0;
		}
		
		/*COLUMNS*/
		
		div.column{
			float: left;
			padding: 7.5px 12.5px;
		}
		
			div.column h2{
				text-align: center;
			}

			div.column ul{	
				position: relative;
				list-style: none;
				width: 100%;
				padding: 0;
				margin: 0;
				margin-top: 15px;
			}
			
			div.column ul p{
				margin-top: 5px;
			}
			
			div.notices-column li{
				margin-bottom: 10px;
			}
			
			div.small-documents-column li{
				margin-bottom: 3px;
			}
		
			div.big-documents-column li{
				margin-bottom: 10px;
			}
			
			div.events-column li{
				margin-bottom: 15px;
			}
			
			/*IMPORTANT NOTICES*/
			div.notice-info{
				word-break: break-word;
			}
			
			div.notice-info ul{
				list-style-type: disc;
				margin-top: 10px;
				margin-left: 20px;
				padding: 0;
				text-align: left;
			}
			
			div.notice-info ol{
				margin-top: 10px;
				margin-left: 20px;
				padding: 0;
				text-align: left;
			}
			
			/*DOCUMENT & EVENT LINKS*/
			
			div.small-document-link,
			div.big-document-link,
			div.event-link {
				cursor: pointer;
			}
			
			div.small-document-link table,
			div.big-document-link table,
			div.event-link {
				width: 100%;
			}
			
			div.small-document-link td,
			div.big-document-link td,
			div.event-link {
				vertical-align: middle;	
			}
			
			div.small-document-link td:first-of-type{
				width: 16px;
			}
			
			div.big-document-link td:first-of-type{
				width: 32px;
			}
			
			div.event-link td:first-of-type{
				width: 50px;
			}
			
			div.small-document-link td:nth-of-type(2),
			div.big-document-link td:nth-of-type(2) {
				padding-left: 3px;
			}
			
			div.event-link td:nth-of-type(2){
				padding-left: 5px;
			}
			
			div.small-document-link div.document-label,
			div.big-document-link div.document-label {
				width: calc(100% - 3px);
			}
			
			div.small-document-link img{
				vertical-align: top;
				display: block;
				width: 16px;
				height: 16px;
			}
			
			div.big-document-link img{
				vertical-align: top;
				display: block;
				width: 32px;
				height: 32px;
			}
			
			div.small-document-link div.document-title-label p{
				font-size: 13px !important;
			}
			
			div.small-document-link div.document-title-label p,
			div.big-document-link div.document-title-label p,
			div.event-link div.event-title-label p {
				text-align: left !important;
				margin: 0;
			}
			
			div.big-document-link div.document-category-label p,
			div.event-link div.event-details-label p {
				color: #444;
				font-size: 13px !important;
				font-weight: normal;
				font-style: italic;
				text-align: left !important;
				margin: 0;
			}
			
			/*CALENDAR*/
			div#calendar{
				background-color: #FFF; 
				padding: 10px;
				margin-top: 15px;
				-webkit-border-radius: 10px; /* Safari 3-4, iOS 1-3.2, Android 1.6- */
				-moz-border-radius: 10px; /* Firefox 1-3.6 */
				border-radius: 10px;
			}
			
			/*EVENT DETAILS*/
			div.event-info{
				width: 100%;
			}
			
			div.event-info-title{
				margin-bottom: 10px;
			}
			
			div.event-info-title tr td:first-of-type{
				width: 50px;
			}
		
			div.event-info-title tr td:nth-of-type(2){
				vertical-align: middle;	
				padding-left: 10px;
			}
			
			div.event-info-title div.event-label h2{
				text-align: left !important;
				line-height: 50px;
				margin-bottom: 0 !important;
			}
			
			div.event-info-title table,
			div.event-info-content table{
				width: 100%;
			}
			
			div.event-info-content table td{
				padding: 5px;
			}
			
			div.event-info-content tr td:nth-of-type(2){
				width: 100%;
			}
			
			/*CONTACTS*/
			ul.director-list{
				margin-top: 10px;
				margin-left: 20px;
				padding: 0;
			}
			
			ul.director-list li{
				margin-bottom: 5px;
			}
			
			table.contact-list{
				margin-top: 10px;
				width: 100%;
			}
			
			table.contact-list tr td{
				padding: 3px;
			}
			
			table.contact-list tr td:first-of-type{
				width: 350px;
			}
			
footer{
	position: absolute;
	bottom: -90px;
	left: 0;
	width: 100%;
}

	footer div{
		position: relative;
		margin: 0 auto;
		margin-bottom: 20px;
		padding: 10px;
		text-align: center;
		-moz-box-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
		-webkit-box-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
		box-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
		-webkit-border-radius: 10px; /* Safari 3-4, iOS 1-3.2, Android 1.6- */
		-moz-border-radius: 10px; /* Firefox 1-3.6 */
		border-radius: 10px;
		/* Prevent background color leak outs with border radius */
		-webkit-background-clip: padding-box; 
		-moz-background-clip: padding; 
		background-clip: padding-box;
	}
	
/*Mobile devices*/
@media only screen and (max-width: 767px) {

div#background{
	background-image: none !important;
}

header{
	height: 100px; /* 50px (header image) + 50px (nav) */ /*if you change this remember to change main's "top" property*/
	z-index: 1000;
	-moz-box-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
	-webkit-box-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
	box-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
}

		div#header-image{
			margin: 2.5px auto;
			width: 283.5px; /*this is the width of the header image - if you change this, change the width of nav and all other major page containers*/
			height: 45px; /*this is the height of the header image - if you change this, change the header's height too*/
			background-image: url("/media/images/mobile_header.png") !important;
		}
		
		nav{
			z-index: 1000;
			height: 50px; /*if you change this, change the header's height too*/
		}
		
			div#header-menu{
				display: block;
				width: 100%;
				height: 50px;
				line-height: 50px;
				text-align: center;
				font-size: 17px;
				font-weight: bold;
				cursor: pointer;
			}
			
			div#header-menu img{
				position: absolute;
				right: 0;
				width: 50px;
				height: 50px;
			}
		
			nav ul{
				display: none;
			}
				
				nav ul:nth-child(2){
					border-top: 1px solid #000;
				}
				
				nav ul li{
					display: block;
					border-bottom: 1px solid #000;
					height: 50px;
					line-height: 50px;
					font-size: 16px;
					width: 100%;
					margin-right: 0;
					-moz-box-shadow: none;
					-webkit-box-shadow: none;
					box-shadow: none;
					-webkit-border-radius: 0; /* Safari 3-4, iOS 1-3.2, Android 1.6- */
					-moz-border-radius: 0; /* Firefox 1-3.6 */
					border-radius: 0;
				}
				nav ul li:hover{
					height: 50px;
					line-height: 50px;
				}
				
				nav ul li.selected{
					height: 50px;
					line-height: 50px;
				}	
				
	main{
		top: 100px; /*same as the height of the header*/
	}
	
		main section#content{
			width: 100%;
			-webkit-border-radius: 0; /* Safari 3-4, iOS 1-3.2, Android 1.6- */
			-moz-border-radius: 0; /* Firefox 1-3.6 */
			border-radius: 0;
		}			
		
		section#page-navbar{
			width: 100%;
			height: auto;
			margin-bottom: 10px;
			text-align: center;
		}
		
			section#page-navbar div{
				display: inline-block;
			}
				
				section#page-navbar ul li{
					line-height: 40px;
					height: 40px;
					width: 50%;
					z-index: 2;
					border: none;
					border-bottom: 1px solid #555;
					-webkit-border-radius: 0; /* Safari 3-4, iOS 1-3.2, Android 1.6- */
					-moz-border-radius: 0; /* Firefox 1-3.6 */
					border-radius: 0;
				}
				
				section#page-navbar ul a:nth-child(2n-1) li{
					border-right: 1px solid #555;
				}
				
				section#page-navbar ul a:first-child li{
					-webkit-border-top-left-radius: 10px; /* Safari 3-4, iOS 1-3.2, Android 1.6- */
					-moz-border-radius-topleft: 10px; /* Firefox 1-3.6 */
					border-top-left-radius: 10px;
					-webkit-border-bottom-left-radius: 0; /* Safari 3-4, iOS 1-3.2, Android 1.6- */
					-moz-border-radius-bottomleft: 0; /* Firefox 1-3.6 */
					border-bottom-left-radius: 0;
				}
				
				section#page-navbar ul a:nth-child(2) li{
					-webkit-border-top-right-radius: 10px; /* Safari 3-4, iOS 1-3.2, Android 1.6- */
					-moz-border-radius-topright: 10px; /* Firefox 1-3.6 */
					border-top-right-radius: 10px;
					-webkit-border-bottom-right-radius: 0; /* Safari 3-4, iOS 1-3.2, Android 1.6- */
					-moz-border-radius-bottomright: 0; /* Firefox 1-3.6 */
					border-bottom-right-radius: 0;
				}
				
				section#page-navbar ul a:last-child li{
					border: none;
					-webkit-border-top-right-radius: 10px; /* Safari 3-4, iOS 1-3.2, Android 1.6- */
					-moz-border-radius-topright: 10px; /* Firefox 1-3.6 */
					border-top-right-radius: 10px;
					-webkit-border-bottom-right-radius: 10px; /* Safari 3-4, iOS 1-3.2, Android 1.6- */
					-moz-border-radius-bottomright: 10px; /* Firefox 1-3.6 */
					border-bottom-right-radius: 10px;
				}
				
				section#page-navbar ul li.mobile-single-line{
					-webkit-border-bottom-left-radius: 10px !important; /* Safari 3-4, iOS 1-3.2, Android 1.6- */
					-moz-border-radius-bottomleft: 10px !important; /* Firefox 1-3.6 */
					border-bottom-left-radius: 10px !important;
					border-bottom: none;
				}
				
				section#page-navbar ul li.mobile-long{
					width: 100%;
					border-bottom: none;
					-webkit-border-top-right-radius: 0 !important; /* Safari 3-4, iOS 1-3.2, Android 1.6- */
					-moz-border-radius-topright: 0 !important; /* Firefox 1-3.6 */
					border-top-right-radius: 0 !important;
					-webkit-border-bottom-left-radius: 10px; /* Safari 3-4, iOS 1-3.2, Android 1.6- */
					-moz-border-radius-bottomleft: 10px; /* Firefox 1-3.6 */
					border-bottom-left-radius: 10px;
				}
				
				section#page-navbar ul li.selected{
					color: #000;
				}
		
			main section#content h1{
				margin-bottom: 15px;
				text-align: center;
			}
			
			main section#content h2{
				margin-bottom: 15px;
				text-align: center;
			}
			
			main section#content h3{
				margin-bottom: 15px;
				text-align: center;
			}
			
			main section#content h3.separator{
				text-align: left;
			}
			
			main section#content img.right, main section#content img.left, main section#content img.centre{
				float: none;
				width: 100%;
				max-width: 100%;
				margin: 10px auto;
			}
			
			button.quick-link{
				display: block;
				margin: 0 auto;
				margin-bottom: 15px;
			}
			
			button.quick-link:last-of-type{
				margin: 0 auto;
			}
			
			div.column{
				width: 100%;
				float: none;
			}
	
	footer{
		bottom: -60px;
	}
	
		footer div{
			width: 100%;
			margin-bottom: 0;
			-webkit-border-radius: 0; /* Safari 3-4, iOS 1-3.2, Android 1.6- */
			-moz-border-radius: 0; /* Firefox 1-3.6 */
			border-radius: 0;
		}
	
}
	
/*Large desktop, small desktop and portrait tablets*/	
@media only screen and (min-width: 768px) {
	
	header{
		height: 190.625px; /* 140.625px (header image) + 35px (nav) + 15px (padding)*/ /*if you change this remember to change main's "top" property*/
	}
	
		div#header-image{
			width: 750px; /*this is the width of the header image - if you change this, change the width of nav and all other major page containers*/
			height: 140.625px; /*this is the height of the header image - if you change this, change the header's height too*/
		}
		
		nav{
			width: 750px;
		}
			
				nav ul li{
					font-size: 12.5px;
					width: 19.68%;
				}
	
	main{
		top: 190.625px; /*same as the height of the header*/
	}
	
		main section#content{
			width: 750px; /* 750px (header width) */
		}
			
			div.column{
				width: 240px; /* (750px (section#content's width) - 2 x 15px (section#content's padding)) / 3 */
			}
	
		footer div{
			width: 750px; /* 750px (header width) */
		}
}

/*Large desktop*/
@media only screen and (min-width: 1000px) {
	
	header{
		height: 230px; /* 180px (header image) + 35px (nav) + 15px (padding)*/ /*if you change this remember to change main's "top" property*/
	}
	
		div#header-image{
			width: 960px; /*this is the actual width of the header image - if you change this, change the width of nav and all other major page containers*/
			height: 180px; /*this is the actual height of the header image - if you change this, change the header's height too*/
		}
		
		nav{
			width: 960px;
		}
			
				nav ul li{
					font-size: 15px;
					width: 19.751%;
				}
	
	main{
		top: 230px; /*same as the height of the header*/
	}
	
		main section#content{
			width: 960px; /* 960px (header width) */
		}
			
			div.column{
				width: 310px; /* (960px (section#content's width) - 2 x 15px (section#content's padding)) / 3 */
			}
	
		footer div{
			width: 960px; /* 960px (header width) */
		}
}