@media screen and (min-width: 800px) { /*The following CSS runs only for displays with a width (in pixels) of more than 800px*/

	#content {
		display: block;
		width: 100%;
		padding: 10px 0px 10px 0px;
		background-color: #ffffff;
		text-align: center;
	}

	#content .content-box {
		border: 0px solid red;
		display: inline-block;
		width: 1000px;
		vertical-align: top;
		text-align: left;
	}

	#content .content-box a {
		color: #000066;
		font-weight: bold;
	}



}

@media screen and (max-width: 800px) { /*The following CSS runs only for displays with a width (in pixels) of less than 800px*/

	#content {
		display: block;
		width: 100%;
		padding: 10px 0px 10px 0px;
		background-color: #ffffff;
		text-align: center;
	}

	#content .content-box {
		border: 0px solid red;
		display: inline-block;
		width: 100%;
		vertical-align: top;
		text-align: left;
	}

	#content .content-box a {
		color: #000066;
		font-weight: bold;
	}


}

@media screen and (max-width: 320px) { /*The following CSS runs only for displays with a width (in pixels) of less than 800px*/


	#content {
		display: block;
		width: 320px;
		padding: 10px 0px 10px 0px;
		background-color: #ffffff;
		text-align: center;
	}


	#content .content-box {
		border: 0px solid red;
		display: inline-block;
		width: 320px;
		vertical-align: top;
		text-align: left;
	}

	#content .content-box a {
		color: #000066;
		font-weight: bold;
	}


}

#page-title {
	text-align: left;
	width: 100%;
	font-size: 3em;
	font-weight: bold;
	line-height: 1em;
	margin-bottom: 10px;
}

/* SIDE BOX STYLES */

.content-side-box {
	display: inline-block;
	width: 100%;
	border: 1px solid #cccccc;
	padding-left: 5px;
	margin-bottom: 5px;
	font-size: 1em;
	font-weight: bold;
	text-align: left;
	vertical-align: top;
	box-sizing: border-box;

}

.content-side-box ul {
	padding: 0px 0px 0px 15px;
}

.content-side-box li
{
	list-style-type: square;
	margin: 1px 2px 2px 2px;
	padding: 2px 2px 2px 2px;
	color: #cc0000;
}

.content-side-box a {
	font-size: 1em;
	font-weight: bold;
	text-decoration: none;
	color: #0000cc;

}

.content-side-box a:hover {
	color: #cc0000;
}


h1 {

	font-size: 1.2em;
	font-weight: bold;

}

#content-text-header-image { /* delete */
	width: 100%;
	height: 100%;
	margin-top: 5px;
	text-align: center;
}

#content-text-header-image img { /* delete */
	width: 100%;
	height: 100%;
	text-align: center;
	border: 0px;
}
