/**
 * DIAGNOSTICS.CSS
 * 
 * @note		to be inclded when developing new HTML for the site to make
 * 				sure that it's not using any of the below pieces.
 * 				I don't remember where I grabbed this list from, there are a
 * 				number of diagnostic CSS files out there.
 * @author		NavigationArts (tstephens@navigationarts.com)
 **/

/**
 * @section	Empty Elements
 **/
	div:empty, span:empty, li:empty, p:empty, td:empty, th:empty { 
		padding: 20px; border: 5px dotted yellow !important;
	}

/**
 * @section	Empty Attributes
 **/
	*[alt=""], *[title=""], *[class=""], *[id=""], a[href=""], a[href="#"] { 
		border: 5px solid yellow !important;
	}

/**
 * @section	Deprecated Elements
 **/
	applet, basefont, center, dir, font, isindex, menu, s, strike, u { 
		border: 5px dotted red !important;
	}

/**
 * @section	Deprecated Attributes
 **/
	*[background], *[bgcolor], *[clear], *[color], *[compact], *[noshade], *[nowrap], *[size], *[start], 
	*[bottommargin], *[leftmargin], *[rightmargin], *[topmargin], *[marginheight], *[marginwidth], *[alink], *[link], *[text], *[vlink],
	*[align], *[valign],
	*[hspace], *[vspace],
	*[height], *[width],
	ul[type], ol[type], li[type] { 
		border: 5px solid red !important;
	}

/**
 * @section	Proposed Deprecated Elements
 **/
	input[type="button"], big, tt { 
		border: 5px dotted green !important;
	}

/**
 * @section	Proposed Deprecated Attributes
 **/
	*[border], a[target], table[cellpadding], table[cellspacing], *[name] { 
		border: 5px solid green !important;
	}


