/* CSS Document */

.just_red {
    background-color: inherit;
	color: #FF0000;
}

.just_blue {
    background-color: inherit;
	color: #0000FF;
}


.bold_red {
    background-color: inherit;
	color: #FF0000;
	font-weight: bold;
}

.big_red {
    background-color: inherit;
	color: #FF0000;
	font-size: large;
}

.big_bold_red {
    background-color: inherit;
	color: #FF0000;
	font-weight: bold;
	font-size: large;
}

.big_text {
    background-color: inherit;
	color: inherit;
	font-size: large;
}

.med_text {
    background-color: inherit;
	color: inherit;
	font-size: medium;
}

.small_text {
    background-color: inherit;
	color: inherit;
	font-size: small;
}

.bold_text {
    background-color: inherit;
	color: inherit;
	font-size: inherit;
	font-weight: bold;
}



/* underscore */

.underscore_red {
    background-color: inherit;
	color: #FF0000;
	text-decoration: underline;
}

.underscore_blue {
    background-color: inherit;
	color: #0000FF;
	text-decoration: underline;
}


.underscore_bold_red {
    background-color: inherit;
	color: #FF0000;
	font-weight: bold;
	text-decoration: underline;	
}

.underscore_big_red {
    background-color: inherit;
	color: #FF0000;
	font-size: large;
	text-decoration: underline;
}

.underscore_big_bold_red {
    background-color: inherit;
	color: #FF0000;
	font-weight: bold;
	font-size: large;
	text-decoration: underline;
}

.underscore_big_text {
    background-color: inherit;
	color: inherit;
	font-size: large;
	text-decoration: underline;
}

.underscore_small_text {
    background-color: inherit;
	color: inherit;
	font-size: small;
	text-decoration: underline;
}


