/* ______________________________ Header _____________________________________________ */

/* Header styles */
#header {
	clear: both;
	float: left;
	width: 100%;
	padding: 5px 0px 5px 0px;
}

#header {
	border-bottom: 1px solid #000;
}

#headertable {
	background: #91D0E4;
	width:100%;	
}

#headertable .right {
	text-align: right;
}

#headertable .logo {
	border: none;
	width: 80px;
	align: left;
}

#headertable .rss {
	border: none;
	width: 25px;
	align: right;
}

#headertable .sitename h1, #headertable .sitename h2 {
	font-weight: 200;
	letter-spacing: 1px;
	margin: 0;
	padding: 0;
}

#headertable .sitename h1 {
	font-size: 2.0em;
	padding-top: 3px;
	padding-left: 5px;
}

#headertable .sitename h2 {
	font-size: 1.3em;
	padding-left: 7px;
}

/* ______________________________ Footer _____________________________________________ */

/* Footer styles */
#footer {
	text-align: center;
	clear: both;
	float: left;
	width: 100%;
	padding: 5px;
	border-top: 1px solid #000;
}

#footer p {
	padding: 10px;
	margin: 5px;
}

/* ______________________________ Template ___________________________________________ */

/* 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 */
	background: #eee;
}

/* common column settings */
.colright, .colmid, .colleft {
	float: left;
	width: 100%;			/* width of page */
	position: relative;
}

.col1, .col2, .col3 {
	float: left;
	position: relative;
	padding: 0em 0em 1em 0em;	/* no left and right padding on columns, we just make them narrower instead 
									only padding top and bottom is included here, make it whatever value you need */
	overflow: hidden;
}

.container .colmid {
	right: 30%;			/* width of the right column */
	background: #fff;	/* center column background colour */
}
.container .colleft {
	right: 55%;				/* width of the middle column */
	background: #f4f4f4;	/* left column background colour */
}
.container .col1 {
	width: 53%;		/* width of center column content (column width minus padding on either side) */
	left: 101%;		/* 100% plus left padding of center column */
}
.container .col2 {
	width: 13%;		/* Width of left column content (column width minus padding on either side) */
	left: 33%;		/* width of (right column) plus (center column left and right padding) plus (left column left padding) */
}
.container .col3 {
	width: 27%;		/* Width of right column content (column width minus padding on either side) */
	left: 90%;		/* Please make note of the brackets here:
					(100% - left column width) plus (center column left and right padding) plus (left column left and right padding) plus (right column left padding) */
}
