/*---------------------------*/
/*UNIVERSAL DEFAULT*/
/*---------------------------*/

* {

	/*DEFAULT MARGIN*/
	margin: 0px;
	/*DEFAULT PADDING*/
	padding: 0px;
	/*DEFAULT FONTS*/
	font-family: Tahoma;
	font-size: 12px;

}

/*---------------------------*/
/*UNIVERSAL DEFAULT OVERRIDE*/
/*---------------------------*/

.nodefault * {

}

.nodefault table {

	/*DEFAULT TABLE LAYOUT MODEL*/
	table-layout: auto;

}

/*---------------------------*/
/*DEFAULT IMAGE*/
/*---------------------------*/

img {

	/*DEFAULT BORDER*/
	border: 0px;

}

/*---------------------------*/
/*DEFAULT TABLE*/
/*---------------------------*/

table {

	/*DEFAULT TABLE LAYOUT MODEL*/
	table-layout: fixed;

}

/*---------------------------*/
/*DEFAULT ELEMENTS*/
/*---------------------------*/

h1 {
	/*DEFAULT FONT SIZE*/
	font-size: 16px;
}

h2 {
	/*DEFAULT FONT SIZE*/
	font-size: 14px;
}

h3 {
	/*DEFAULT FONT SIZE*/
	font-size: 12px;
}

p {
	/*DEFAULT FONT SIZE*/
	font-size: 12px;
}

span {
	/*DEFAULT FONT SIZE*/
	font-size: 12px;
}

a {

}

ul {
	/*DEFAULT LIST STYLE*/
	list-style-position: inside;
	list-style-type: disc;
}

ol {
	/*DEFAULT LIST STYLE*/
	list-style-position: inside;
	list-style-type: decimal;
}

hr {

}

blockquote {

}

/*---------------------------*/
/*DEFAULT TEXT CLASSES*/
/*---------------------------*/

.bold {
	/*DEFAULT FONT WEIGHT*/
	font-weight: bold; 
}

.underline {
	/*DEFAULT TEXT DECORATION*/
	text-decoration: underline;
}

.highlight {

}

.small {
	/*DEFAULT FONT SIZE*/
	font-size: 10px;
}