/* -------------------------------------------------------------- 
	
	base.css	
	* Resets default browser CSS.
	
-------------------------------------------------------------- */

* { 
  margin: 0;
  padding: 0;
  font-weight: inherit;
  font-style: inherit;
  font-size: 100%;
  font-family: inherit;
  vertical-align: baseline;
}
	
	body { 
		background: #ffffff; 
  		line-height: 1.5; 
		font: 62.5% Helvetica, Arial, Verdana, Tahoma, sans-serif;
		}
		html>body { 
			font-size: 10px;
		}
	
		/* Tables still need 'cellspacing="0"' in the markup. */
		table { 
			border-collapse: separate;
			border-spacing: 0;
			}
			caption { 
				text-align: left;
				font-weight: normal;
			}
			th { 
				vertical-align: top;
				}
			td { 
				vertical-align: top;
				}

		ul {
			list-style: none;
			}
		
		hr {
			border: 0; 
			height: 1px; 
			background: #999999; 
				*color: #999999; 
		}

		a, a:link, a:visited { }
		a:hover, a:active, a:focus {
			outline: 0px;
			-moz-outline-style: 0px;
		}

		img { 
			border: none;
		}
		
		blockquote:before, blockquote:after, q:before, q:after { 
			content: ""; 
			}
		blockquote, q { 
			quotes: "" ""; 
			}

		form {
			margin: 0; 
			padding: 0;
			}
			input.searchBox { }

			input, select, textarea {
				font: 1em Tahoma, Arial, Helvetica, sans-serif;
			}
		

/* Common Generic Classes
-------------------------------------------------------------- */

		.clear {
			clear: both; 
			height: 1px;
		}

		.display {
			display: block;
		}

		.hide {
			display: none;
		}


/* Debugging Classes
-------------------------------------------------------------- */

		.debug {
			border: 1px solid red;
		}
		a.missing:link, a.missing:visited {
			color: red;
		}
		p.note {
			color: red;
		}
		

/* Accessibility Classes 
-------------------------------------------------------------- */

		#skipNav {
			display: none;
		}		





/*******************************************************************************************

TITLE: the genius development framework

VERSION: 1.0.0
URI: http://www.geniusswitchstudio.com/
AUTHOR: Christian Alexander Seeber, Principal + User Experience Architect
COPYRIGHT: 2009 genius switch studio llc

DISCLAIMER: Of course the copyright is not worth much to me, 
please feel free to borrow, steal, learn, critique (not critisize). I certainly
borrowed from countless bits i've accumulated over the years to reach this level, and 
i'm sure we'll be making updates as time goes on. I think the world of web dev is a 
great place to share and teach each other, not get pissy about who owns what... That said
we're proud of this framework, and hope if you're reading this far down, that you're gaining 
something here. Metta!

DESCRIPTION: HTML/CSS/JS Framework or Repository created by genius switch 
in order to streamline all our builds. HTML Structure is always the same, 
CSS Structure is always the same, jQuery drives everything. 
Our Markup is nearly identical on every build except for the content, 
our stylesheets, elements and classes are structured nearly identically 
every time with the only difference being the actual stylings.

**********************************************************************************************/

