/*
This css file contains styles for basic formatting situations where the designer may format pieces of text or other objects will simple formatting rules
*/


/* Text styles and decorations */
.bold {
	font-weight: bold;
}
.italic {
	font-style: italic;
}
.underline {
	text-decoration: underline;
}
.black {
	color: black;
}
.white {
	color: white;
}
.orange, a:hover.orangeHover {
	color: #D07F48;
}
.blue, a:hover.blueHover {
	color: #556FA5;
}
.green, a:hover.greenHover {
	color: #78A22E;
}


/* Container styles */
.blackbg {
	background-color: black;
}
.whitebg {
	background-color: white;
}
.redbg {
	background-color: red;
}
.border {
	border: 1px black dotted;
}
.imageReplace{
	position: relative;
	top: 0; left: -5000px;
	width:1px;
	height:1px;
	overflow:hidden;
}