/* -----------------------
Base styles
------------------------*/

body
{
	margin: 0;
	padding: 0;
	color: #333;
	background-color: #eee;
	font: 1em/1.2 "Helvetica Neue", Helvetica, Arial, Geneva, sans-serif;
}

/* ------- This will set all of the different header styles ----- */

h1,h2,h3,h4,h5,h6
{
	margin: 0 0 .5em;
	font-weight: 500;
	line-height: 1.1;
}

/* ------- This will set change individual header styles ----- */

h1 { font-size: 2.25em; } /* 36px */
h2 { font-size: 1.75em; } /* 28px */
h3 { font-size: 1.375em; } /* 22px */
h4 { font-size: 1.125em; } /* 18px */
h5 { font-size: 1em; } /* 16px */
h6 { font-size: .875em; } /* 14px */

p
{
	margin: 0 0 1.5em;
	line-height: 1.8;
}

blockquote
{
	padding: 1em 2em;
	margin: 0 0 2em;
	border-left: 5px solid #eee;
}

hr
{
	height: 0;
	margin-top: 1em;
	margin-bottom: 2em;
	border: 0;
	border-top: 0px solid #ddd;
}

/* ------- Table properties ----- */

table
{
    color: white;
	background-color: transparent;
	border-spacing: 0;
	border-collapse: collapse;
	border-top: 0px solid #ddd;
}

/* ------- Cell properties ----- */

th, td
{
	padding: .5em 1em;
	vertical-align: top;
	text-align: left;
	border-bottom: 0px solid #ddd;
}



/* ------- Link properties ----- */

a:link { color: red; }
a:visited { color: red; }
a:focus { color: black; }
a:hover { color: darkblue; }
a:active { color: red; }



/* -----------------------
Layout styles, probably won't use these
------------------------*/


.header
{
	color: #fff;
	background: #999;
	padding: 1em 1.25em;
}

.header-heading { margin: 0; }

.nav-bar
{
	background: #000;
	padding: 0;
}

.content
{
	padding: 1em 1.25em;
	background-color: #fff;
}

.footer
{
	color: #fff;
	background: #000;
	padding: 1em 1.25em;
}



/* -----------------------
Navigation style changes
------------------------*/

.nav
{
	margin: 0;
	padding-bottom: 40px;
	padding-top: 20px;
	list-style: none;
}

.nav li
{

/* ------- change inline to block if you want a vertical nav bar ----- */

	display: inline;
	margin: 0;
}

.nav a
{
	display: ;
	padding: .7em 1.25em;
	color: #fff;
	text-decoration: none;
	border-bottom: 1px solid gray;
	border-top: 1px solid gray;
	border-left: 1px solid gray;
	border-right: 1px solid gray;
}

.nav a:link { color:red; }
.nav a:visited { color: red; }


.nav a:hover
{
	color: orange;
	background-color: red;
}

.nav a:active
{
	color: orange !important;
	background-color: red;
}

