/* style.css */

/*** Define box classes ***/

.clearbox {
	color: black;
}

.redbox {
	background: #D4121A;
	color: white;
}

.whitebox {
	background: white;
	color: black;
}

.bluebox {
	background: #002A5A;
	color: white;
}

.blackbox {
	background: black;
	color: white;
}

.graybox {
	background: #D3D3D3;
	color: black;
}

.yellowbox {
	background: yellow;
	color: black;
}

/*** Define text colors, text styles, font sizes, and text alignment ***/

.redtext {color: #D4121A;}
.bluetext {color: blue;}
.whitetext {color: white;}
.greentext {color: green;}
.graytext {color: gray;}
.blacktext {color: black;}

.normal {font-style: normal;}
.italic {font-style: italic;}
.bold {font-weight: bold;}
.underline {text-decoration: underline;}

.size48px {font-size: 48px;}
.size44px {font-size: 44px;}
.size40px {font-size: 40px;}
.size36px {font-size: 36px;}
.size32px {font-size: 32px;}
.size28px {font-size: 28px;}
.size24px {font-size: 24px;}
.size22px {font-size: 22px;}
.size20px {font-size: 20px;}
.size18px {font-size: 18px;}
.size16px {font-size: 16px;}
.size14px {font-size: 14px;}
.size12px {font-size: 12px;}
.size11px {font-size: 11px;}
.size10px {font-size: 10px;}
.size9px  {font-size: 9px;}
.size8px  {font-size: 8px;}

.textleft {text-align: left}
.textcenter {text-align: center}
.textright {text-align: right}
.textjustify {text-align: justify}

/*** Define bulletlist ***/

ul.bulletlist {
	padding: 0px 10px 0px 30px; 
     margin: 0px;
}

ul.bulletlist li {
	margin-top: 6px;
	margin-bottom: 6px;
 }
