
/* .......................................................
//////////////////////////////////////////////////////////
GLOBAL RESET, USE FOR ALL WEBSITES
//////////////////////////////////////////////////////////
.......................................................... */

/*		Reset all browser defaults so we can start clean
.......................................................... */	


/*		remove all default 
		margins, padding, and borders
		from all elements, we can set 
		them to our specs later on.
.......................................................... */
		
/* 	tables still need 
	cellspacing="0" in the markup */
			
		
fieldset,img {  
	    border:0;} 
		
ol,ul{ 
	    list-style:none;}
		 
h1,h2,h3,h4,h5,h6 { 
		font-size:100%;
		font-weight:normal;}
		
caption, th, td {
		text-align: left;
		font-weight: normal;}
		
blockquote:before, blockquote:after,
q:before, q:after {
		content: "";}
		
blockquote, q {
		quotes: "" "";}
		
/*		Reusable classes
.......................................................... */

.invisible{display:none;} 				/*	don't display object */
.left{float:left;} 						/* 	object pushes to the left */
.right{float:right;} 					/* 	object pushes to the right */
.clear{clear:both;} 					/*	push object below floating objects */
.alpha{background-color:transparent;} 	/* 	no background color */
		
		
