/*
	Yes this layout was inspired by lightbox v2.0's page, the layout works really well for a doc 
*/

/*	This browser reset is also based on: 
	A Better Blogroll by Chris Coyier http://css-tricks.com
*/

/*  Web browsers use different default settings for margins and padding on many items.
    This reset gives control back to the webdesigner. 
*/

/*	GENERIC RESET   */

*       { 
        /* the * is a wild card, it means "everything" */
        margin: 0;
        padding: 0;
        }

body,h1,h2,h3,h4,h5,h6,p,pre,code,ul,ol,li    
 		{
		font-family: Verdana, Arial, Helvetica, sans-serif;
		font-size: 14px;
		font-weight: normal;
}

a       { /* remove the dotted outlines when clicking tabs */ 
        outline: none; text-decoration: none; 
        }

