/*********************************************
	STYLES FOR BROWSER
	1. Developer, this is the individual 
	   css file for a web browser
	2. Please keep your code CLEAN. 
	3. Bring over ANY custom tags. 
	4. Make SURE to test the "Big 5" Browsers:
		-- IE7, IE8 - A MUST! 
		-- Firefox
		-- Chrome
		-- Safari
		-- Opera
*********************************************/
html, body{
	margin:0;
	padding:0;
	background-color:#DDD;
}

body { /* Use both the px/em variable */
	font: 11px/1.3em Verdana, Geneva, sans-serif; 
	color: #000;
}

		
a { /* default link styles*/
	color:#069;
	text-decoration: none;
}
	
	a:hover{
		text-decoration: underline;
	}

.wrapper{ /* This is where you would change by default. A SAFE width is 320px */
	width: 1000px;
	margin:0 auto;
	background-color:#EEE;
}



/*********************************************
	STANDARD TAGS:
	These are our standard tags. YOU MUST
	USE THESE TO HAVE THE SITE WORK PROPERLY
	WITH MOBILE AND DEFAULT CSS
	1) .header
	2) .main-nav -- located in nav.css
	3) h1, h2, h3, h4, h5
	4) .breadcrumbs
	5) .content
		-- .col-1
		-- .col-2 
		-- .col-3
		-- Make more if needed.
	6) .footer
*********************************************/

.header { 
	height: 120px;
	z-index: 10;
	position: relative;
}

h1 { /* This will use the same admin controlled headers */
	background-repeat: no-repeat;
	height: 80px; 
	display: block;
}

h2, h3, h4, h5 { /* Format as you need, use em's */
}

.breadcrumbs { /* Format as you need with your a tags, etc. */
	color: #000;
	margin: 0 0 0 10px;
}

.content { /* Format as you need. Use em's where you can to keep consistent */
	background: #fff;
	position: relative;
	z-index: 10;
}

.inner-content{
	overflow:hidden; /* for equal height columns */
}


.col{
	float:left;
	margin-bottom:-3000px;
	padding-bottom:3000px;
}
	.col-1 { 
		width: 200px;
		float: left;
	}
	
	.col-2 { 
		width: 700px;
		float: left;
	}
	
	.col-3 { 
		width: 100px;
		float: left;
	}
	
.footer { /* Format as you need. */
	width: 1000px;
}
	.footer a {
		color: #000;
		text-decoration: none;
	}
	
	.footer a:hover {
		color: #F00;
		text-decoration: underline;
	}
	
	/* Use this for your footer nav to make it easier on spacing! */
	/* nav class inherited from core.css */
	
	.footer ul.nav { 	
		text-align:center;
		margin:0 auto 5px;
	}
	
		.footer ul.nav li { 
			position:relative;
			display: inline;
			float:none;
			border-left: 1px solid #008c9a;
			padding:0 5px 0 10px;
		}
	
/*******************************************
	SITE SPECIFIC FORMATTING
	1. This is where you will test and put 
	   your site specific tags. 
********************************************/
