@charset "UTF-8";
/* ------------------------------------------------------------------------------
 * Elite Lighting All Sites
 * styling for resetting the style and make it default
 * location: elitelightingusa/scripts/css/global/reset.css
 * ------------------------------------------------------------------------------
 * http://meyerweb.com/eric/tools/css/reset/ 
 * ------------------------------------------------------------------------------
 **/

/*		*,
		html, body, 
		div, span, applet, object, iframe,
		h1, h2, h3, h4, h5, h6, p, blockquote, pre,
		a, abbr, acronym, address, big, cite, code,
		del, dfn, em, font, img, ins, kbd, q, s, samp,
		small, strike, strong, sub, sup, tt, var,
		b, u, i, center,
		dl, dt, dd, ol, ul, li,
		fieldset, form, label, legend,
		table, caption, tbody, tfoot, thead, tr, th, td 
*/	
	
		*,
		html, body
		{
			margin: 0;
			padding: 0;
			border: 0;
			outline: 0;
			font-size: 100%;
			vertical-align: baseline;
			background: transparent;
			font-family: 'Gill Sans', Verdana, Helvetica, sans-serif;
		}
		
		div, span,
		h1, h2, h3, h4, h5, h6, p, a,
		dl, dt, dd, ol, ul, li {
			margin: 0;
			padding: 0;
			font-size: 100%;
			font-family: 'Gill Sans', Verdana, Helvetica, sans-serif;
		}
			
		body { line-height: 1; }
	
		ol, ul, li {
			list-style: none;
		}
		
	/* remember to define focus styles! */
		:focus {
			outline: 0;
		}
	
	/* clear both */
		dl { clear: both; }
	
	
	/*
	 * Hovering Style 
	 */
	
	/* is a link, and visited text decoration none */
		a,
		a:link,
		a:visited { 
			text-decoration: none;
			border: 0px;
			color: #555555;
		}
		
	/* hover, active page text decoration underline */
		a:hover,
		a:active,
		a.current { 
			text-decoration: none;
			border: 0px;
			color: #FF0000;
		}
		a.link {
			color: #ff7f7f;
		}
	
