/* 	/misc/css/divborder.css
	by francois@fjordaan.net || www.fjordaan.net
	based on one by Sam Foster || sam@sam-i-am.com

	stylesheet to show nested divs for debugging and troubleshooting situations

*/

BODY { color: #000000; background-color: #ffffff !important }
/* 1: top div: black */
DIV {
	border-width: thin !important;
	border-style: solid !important;
	border-color: #000 !important;
	padding: 1px !important;
	margin: 1px !important;
	}

/* 2: 1st nested div: blue */
DIV DIV {
	border-color: #00f !important;
}

/* 3: 2st nested div: green */
DIV DIV {
	border-color: #0c0 !important;
}

/* 4: 3rd nested div: egg yellow; getting too deep */
DIV DIV DIV {
	border-color: #fc0 !important;
}

/* 5: 4th nested div: orange; too deep  */
DIV DIV DIV DIV {
	border-color: #f60 !important;
}

/* 6: 5th nested div: red; way too deep*/
DIV DIV DIV DIV DIV {
	border-color: #c00 !important;
}

/* 7: 6th nested div: crimson; way way too deep */
DIV DIV DIV DIV DIV DIV {
	border-color: #906 !important;
}

/* 8: 7th nested div: purple; plain silly */
DIV DIV DIV DIV DIV DIV DIV {
	border-color: #606 !important;
}

SPAN {
	border: 1px dotted green !important;
}
P {
	border: 1px dotted blue !important;
}