@charset "utf-8";
h1      {
	margin-top: 0;	 /* removing the top margin gets around an issue where margins can escape from their containing div. The remaining bottom margin will hold it away from any elements that follow. */
	padding-right: 10px;
	padding-left: 10px; /* adding the padding to the sides of the elements within the divs, instead of the divs themselves, gets rid of any box model math. A nested div with side padding can also be used as an alternate method. */
	font-weight: normal;
	color: #333333;
	/* [disabled]text-shadow: 1px 1px 0 #5E5E5E; */
	margin-bottom: 10px;
	padding-top: 0px;
	padding-bottom: 0px;
	display: block;
	border-bottom-width: 2px;
	border-bottom-style: solid;
	border-bottom-color: #333333;
	font-size: 26px;
}
h2 {
	margin-top: 0;	 /* removing the top margin gets around an issue where margins can escape from their containing div. The remaining bottom margin will hold it away from any elements that follow. */
	padding-right: 10px;
	padding-left: 10px; /* adding the padding to the sides of the elements within the divs, instead of the divs themselves, gets rid of any box model math. A nested div with side padding can also be used as an alternate method. */
	font-weight: normal;
	color: #333333;
	/* [disabled]text-shadow: 1px 1px 0 #5E5E5E; */
	margin-bottom: 10px;
}
h3, h4, h5, h6  {
	margin-top: 0;	 /* removing the top margin gets around an issue where margins can escape from their containing div. The remaining bottom margin will hold it away from any elements that follow. */
	padding-right: 10px;
	padding-left: 10px; /* adding the padding to the sides of the elements within the divs, instead of the divs themselves, gets rid of any box model math. A nested div with side padding can also be used as an alternate method. */
	font-weight: normal;
	color: #333333;
	/* [disabled]text-shadow: 1px 1px 0 #5E5E5E; */
}


 p {
	margin-top: 0;
	padding-right: 10px;
	padding-left: 10px;
	font-size: 14px;
 }
 
input[required], select[required] {
	padding-right: 15px;
	background-image: url(../_images/global/asterix.png);
	background-position: right top;
	background-repeat: no-repeat;
}


.content a  {
	color: #FF6600;
	text-decoration: none;
	-webkit-transition: all 500ms ease-in-out;
	-moz-transition: all 500ms ease-in-out;
	-ms-transition: all 500ms ease-in-out;
	-o-transition: all 500ms ease-in-out;
	transition: all 500ms ease-in-out;
}
.content a:hover {
	color: #FF0000;
}
