/*http://www.vanseodesign.com/blog/demo/fluid-css-layout/fluid-2.php*/

* {
	margin:0;
	padding:0;
}
body {
	font-size: 100%;
	font-family:Georgia, "Times New Roman", Times, serif;
	background: #000;
}
ul.nav {
	list-style: none; /* this removes the list marker */
	margin-bottom: 15px; /* this creates the space between the navigation on the content below */
	border-top: 1px solid #666; /* this creates the top border for the links - all others are placed using a bottom border on the LI */
}
ul.nav li {
	border-bottom: 1px solid #666; /* this creates the button separation */
	margin-top: 5px;
	font-family: Arial, Helvetica, sans-serif;
}
.menuHover {
  /* width: 160px;*/
	height: 40px;
	background: url(../images/zombie.gif) no-repeat;
	text-align:center;
	margin-bottom: 10px;
	margin-left: 10px;
	overflow: hidden;
}
.menuMobile {
	background: url(../images/zombie.gif) no-repeat;
	background-color: #eee;
	text-align:center;
	width: 140px;
	height: 30px;
	margin: 4px;
	padding: 4px;
	font-size: large;
	display: inline-block;
	border-width: thin;
	border-style: solid;
-moz-border-radius: 8px;
-webkit-border-radius: 8px;
border-radius: 8px; /* future proofing */
}
.menuMobile:hover {
    background: url(../images/zombie2.gif) no-repeat;
}

a:link {
    color: #663399;
}
.nav a:link  {
	color: #FFCC33;
	font-size: 1.3em;
	font-weight: bold;
	text-decoration:none;
	line-height: 1.8em;
}

.nav a:visited {
    color: #FFCC33;
}

.nav a:hover {
    color: #009900;
}
.menuHover:hover {
    background: url(../images/zombie2.gif) no-repeat;
}

 a:hover, a:active, a:focus{
	color: #009900; 
}


.inside {
	padding: 8px;
	
}

#header {
	font-size: .9em;
	display: block;
	width: 100%;
	height:auto; 
	padding:5px; 
	color:#fff; 
	background: #000;
}

/* ----------- arrange columns ------------- */

#sidebar {
	float:left;
	width:18%;
	max-width: 160px;
	min-width: 100px;
	height: auto;
	color: #fff;
	background: #000;
	padding: 10px 0;	/*Don't change!!  messes up the shrinking */
	background:#000;
}

#content {
	float:left;
	width:82%;
	height: auto;
	/*padding: 10px 0*/;
	background:#fff;
}

#footer {
	clear:both;
}
/* --------------------------------------- */

h1, h2, h3, h4, h5, h6 {
	font-family: Arial, Helvetica, sans-serif;
}
.small { 
	font-size: .75em;
	line-height:.90em;
}
.medium { 
	font-size: .86em;
	line-height:1.06em;
}
.blue { color:#0000CC; }
.red {	color:#FF0000;}
.grey { color:#666666; }
.ltgrey { color:#CCCCCC; }
.strikethru { text-decoration: line-through; }

#navMobile {
	position:fixed;
	width:100%;
	height:100px;
	z-index:1;
	background-color: #639;
	text-align: left;
	padding: 10px;
	left: 0px;
	bottom: 0px;
	display: none;
}

.insideDiv {
	float: left;		/*floating left give the images a limit to their width*/
	margin: 8px;
	display: inline-block;
}

.stretch {
	width: 100%;
    max-width: 100%;
    height: auto;
    width: auto\9; /* ie8 */
}

@media screen and (max-width: 500px) {
    body {
        background-color: lightblue;
	}
	
	#content {
		padding-bottom: 100px;  
		/*so we dont hide any content*/
		width:100%;
	}	

	#sidebar {
		display: none;
	}	
	#navMobile {
		display: block;
	}
}
