/* --------------------- Layouts ----------------------------------------*/

/* General styles */
body {
	margin:0;
	padding:0;
	border:0;			/* This removes the border around the viewport in old versions of IE */
	width:100%;
	background:#fff;
	color:#000;
	font-family:"Courier New", Courier, Georgia, Helvetica, Verdana, sans-serif;
	font-size: 12px;
}

/* Header */
#header {
	clear:both;
	float:left;
	width:100%;
	height:5em;
}

/* Columns */
/* column container */
.colmask {
	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 */
.colright,
.colmid,
.colleft {
	float:left;
	width:100%;			/* width of page */
	position:relative;
}
.col1,
.col2,
.col3 {
	float:left;
	position:relative;
	padding:0 0 1em 0;	/* 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;
}
/* 3 Column settings */
.threecol {
	/*background:#eee;		 right column background colour */
}
.threecol .colmid {
	right:25%;			/* width of the right column */
	/*background:#fff;		 center column background colour */
}
.threecol .colleft {
	right:56%;			/* width of the middle column */
	/*background:#f4f4f4;	 left column background colour */
}
.threecol .col1 {
	width:54%;			/* width of center column content (column width minus padding on either side) */
	left:101%;			/* 100% plus left padding of center column */
}
.threecol .col2 {
	width:17%;			/* Width of left column content (column width minus padding on either side) */
	left:28%;			/* width of (right column) plus (center column left and right padding) plus (left column left padding) */
}
.threecol .col3 {
	width:23%;			/* Width of right column content (column width minus padding on either side) */
	left:86%;			/* 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) */
}

/* Footer */
#footer {
	position:fixed;
	bottom:0;
	right:0;
	width:25%; /* same as our third (right) column */
}


/* --------------------- Styles ----------------------------------------*/

/* Menu (col2) */
.col2 ul
{
	padding: 0;
	margin: 0;
	list-style:none;	
}

.col2 li
{
	float:left;
	margin: 0em 0em .2em .6em;
	clear:left;
}

.col2 li a
{
	float:left;
	font-size:1.2em;
	text-decoration:none;
	display: block;
	color:#000;
	border: #FFF 1px solid;
	/*
	color:#FFFFFF;
	background-color:#000000;
	border: #000000 1px solid;
	*/
	padding:.2em;

}

.col2 li a:hover
{
	float:left;
	font-size:1.2em;
	text-decoration:none;
	color:#000000;
	display: block;
	background-color:#FFFFFF;
	border: #000000 1px solid;
	padding:.2em;
}

/* Images (col1) */
.col1 p
{
	float:left;
	margin:0;
	margin-bottom:.2em;
	margin-right:.2em;
}

.col1 a img
{
	border:#000000 1px solid;
	padding:0;
}

.col1 a img:hover
{
	border:#FFFFFF 1px solid;
	padding:0;
}

.col1 h1
{
	font-family:Georgia, Helvetica, "Courier New", Courier, Verdana, sans-serif;
	font-style:italic;
	font-size:3em;
	margin-top:0;
}

.col1 h2
{
	font-family:Georgia, Helvetica, "Courier New", Courier, Verdana, sans-serif;
	font-style:italic;
	font-size:2em;
	margin-top:0;
}

.col1 h3
{
	font-family:Georgia, Helvetica, "Courier New", Courier, Verdana, sans-serif;
	font-style:italic;
	font-size:1.5em;
	margin-top:0;
}

/* Address (footer) */
#footer #hcard
{
	margin:0;
	margin-right:.6em;
	padding-bottom:.2em;
	padding-left:105px;
	background-image:url(../images/shoe_left_small.jpg);
	background-repeat:no-repeat;
	float:right;
	clear:right;
}

#footer a
{
	text-decoration:none;
	color:#000000;
}

#footer a:hover
{
	text-decoration:underline;
	color:#000000;
}

/* Splash page */

#wrapper_inner
{
	margin:10em auto 0 auto;
	display: table;
}

#splash_outer
{
position:relative;
float:left;
background-image:url(../images/shoe_left.jpg);
background-position:left;
background-repeat:no-repeat;	
}

#splash_inner
{
background-image:url(../images/shoe_right.jpg);
background-position:right;
background-repeat:no-repeat;
font-size:1.5em;
margin-left:307px;
padding-right:305px;
min-height:242px;
height:242px;
}

#splash_content
{
	padding-top:2em;
}

#splash_content a
{
	text-decoration:none;
	color:#000000;
}

#splash_content a:hover
{
	text-decoration:underline;
	color:#000000;
}


