/**//**//**//**//**//**//**//**//**//**//**//**//**//**//**//**//**//**//*
The Flywheel Design Stylesheet. 

Note: For clarity, We try to stick with two types of CSS layout:

1. Selector(s) and the opening curly brace are on line one. 
   Declarations are one Property: Value; pair to a line, indented. 
   The closing curly brace is aligned to the first line.

2. The exception to the above is repeting progressive selectors with 
   near-identical Property: Value; pairs. These may be single-line/single-space.

In addition, I try to generally group similar types of Style rules, 
and then list them in the alphabetical order they apprear on a page. 

Also, comments are good. An extra linespace before a comment is nice
*//**//**//**//**//**//**//**//**//**//**//**//**//**//**//**//**//**//**//**/

/* Here's a bunch of handy, reusable css:

For troubleshooting, just drop this into a selector:
	border: 1px solid red; 

These two work together to set the font size to a standard height across all browsers. 
	body { font: 62.5% Verdana, Geneva, Arial, Helvetica, sans-serif; color: black; background: white; }
	.wrapper { font-size: 1.2em; }

Other Misc things i end up using all the time:
	p { font-size: 1.2em; line-height: 1.4em; }
	ul { list-style: none; }

	
/* Start CSS RESET */
/* This originally came from http://meyerweb.com/eric/thoughts/2007/05/01/reset-reloaded/ */


img {
	border: 0;
}

/* End reset*/
