﻿/* <!-- */
/* General styles */
body {
	margin:0;
	padding:0;
	border:0;				/* This removes the border around the viewport in old versions of IE */
	width:100%;
	min-width:700px;    	/* Minimum width of layout - remove line if not required */
							/* The min-width property does not work in old versions of Internet Explorer */
}

#flashbackground{
	margin:0;
	width:100%;
	height:100%;
	position:fixed;
	z-index:-1;
}


/* Header styles */
#header {
	clear:both;
	float:left;
	width:100%;
}
/* column container */
.container {
	position:relative;		/* This fixes the IE7 overflow hidden bug */
	clear:both;
	float:left;
	width:100%;				/* width of whole page */
	overflow:hidden;		/* This chops off any overhanging divs */
}
/* common column settings */
.colmid,
.colleft {
	float:left;
	width:100%;
	position:relative;
}
#content,
#navigation {
	float:left;
	position:relative;
	overflow:hidden;
}
/* 2 Column (left menu) settings */
.leftmenu {
	background:#fff;		/* right column background colour */
}
.leftmenu .colleft {
	right:70%;				/* right column width */
	background:#f2f2f2;		/* left column background colour */
}
.leftmenu #content {
	width:70%;				/* right column content width */
	left:100%;				/* 100% plus left column left padding */
}
.leftmenu #navigation {
	width:30%;				/* left column content width (column width minus left and right padding) */
	left:0%;				/* (right column left and right padding) plus (left column left padding) */
}
/* Footer styles */
#footer {
	clear:both;
	float:left;
	width:100%;
}
/* --> */