/*******************************************
** Author Info
********************************************
* Ryan McAllen
* RhynoDesigns.com
* June 1, 2009
*/

/*******************************************
** =Main
*******************************************/

html
{
	overflow-y: scroll; /* Keeps Scroll Bar */
}

body
{
	font: 13px/1.5 Helvetica, Arial, 'Liberation Sans', FreeSans, sans-serif;
}

/*******************************************
** =Header
*******************************************/
.header
{
	margin: 60px auto 30px;
	padding-bottom: 30px;
	text-align: center;
	font-size: 4.2em;
	color: #999;
	text-transform: uppercase;
	background: url('../img/header-background.jpg') no-repeat bottom left;
}

	.header span
	{
		color: #333;
	}
	
	.header h1 a
	{
		text-decoration: none;
		color: #999;
	}
	
	.header h1 a:hover
	{
		color: #666;
	}

/*******************************************
** =Navigation
*******************************************/
.nav
{
	margin: 0;
	padding: 0;
	overflow: auto;
	font-size: 1.4em;
	text-transform: uppercase;
	border-top: 1px solid #999;
	border-bottom: 1px solid #999;
}

	.nav ul
	{
		list-style-type: none;
		overflow: auto;
		display: inline;
	}
	
		.nav ul li
		{
			float: left;
		
		}
	
			.nav ul li a {
			  color: #999;
			  display: block;
			  padding: 10px 14px;
			  text-decoration: none;
			}
			
			.nav ul li a:hover {
				color: #333;
			}


/* =Current Page
------------------------------------------*/
#home .nav a.home,
#about .nav a.about,
#services .nav a.services,
#portfolio .nav a.portfolio,
#contact .nav a.contact
{
	color: #333;
}


/*******************************************
** =Content
*******************************************/
.content
{
	overflow: hidden;
	margin-top: 30px;
}

	.content h1,
	.content h2
	{
		font-family: Times, sans-serif;
	}
	
	.content h1
	{
		font-size: 2em;
	}
	
	.content h2
	{
		margin: 16px 0 4px;
		font-size: 1.2em;
		line-height: 1.8em;
	}
	
	.content h3
	{
		margin: 10px 0 4px;
		font-size: 1.0em;
		line-height: 1.2em;
	}
	
	.content p
	{
		margin: 6px 0;
	}
	
	
	.content ul
	{
		margin:6px 0 18px;
	}
	
		.content ul li
		{
			list-style-type: disc !important;
		}
	
	.content .row
	{
		clear: both;
		overflow: hidden;
	}
	
	.content .col
	{
		float: left;
		padding-left: 18px;
		padding-right: 10px;
	
	}