@charset "UTF-8";
/*
	CSS Theme by
	JC John SESE Cuneta
*/

/*
	restyle.css is where the re-styling of the elements are,
	after neutralizing them.

	This stylesheet must always be called (second), after neutralizer.css.
*/

div {
	/* margin: 5px;  */
	/* padding: 5px; */
}

p {
	/* margin: 5px; */
	/* padding: 5px; */
}

table {
	/* border-collapse: collapse; */
	/* border-spacing: 5px; */
}

/* START: Putting order back to Unordered-List */
/* disc, circle, square */
/* NOTE: This format works for all major browsers namely: IE6, IE7, FF2, FF3, Opera 9.x, Safari 3 */
ul {
	list-style: disc outside;
	/* list-style-type: disc; */
	/* list-style-position: outside; */
}

ul ul {
	list-style: circle outside;
}

ul ul ul {
	list-style: square outside;
}

ul ul ul ul {
	list-style: disc outside;
}

ul ul ul ul ul {
	list-style: circle outside;
}

ul ul ul ul ul ul {
	list-style: square outside;
}

ul ul ul ul ul ul ul {
	list-style: disc outside;
}
/* END: Putting order back to Unordered-List */

/* START: Putting order back to Ordered-List */
/* Numbering: decimal, decimal-leading-zero, lower-roman, upper-roman, georgian, armenian */
/* Alphabetic: lower-latin/lower-alpha, upper-latin/upper-alpha, lower-greek */
/* NOTE: This format works for all major browsers namely: IE6, IE7, FF2, FF3, Opera 9.x, Safari 3 */
ol {
	list-style: decimal;
	/* list-style-type: upper-roman; */
	/* list-style-position: outside; */
}

ol ol {
	list-style: upper-alpha outside;
}

ol ol ol {
	list-style: decimal outside;
}

ol ol ol ol {
	list-style: lower-alpha outside;
}

ol ol ol ol ol {
	list-style: lower-roman outside;
}
/* END: Putting order back to Ordered-List */
