@charset "utf-8";
/* CSS Document */

/*This CSS file, general_html.css, controls the general/common styling of the VDOE web site pages*/

p /*paragraph style*/
{
	margin-top: 9px;
	margin-bottom: 6px;
/*	line-height: 125%;*/
}
/*BEGIN bold styles***************************************************************************************/
b /*default bold style used for older browsers. This should copy the <strong> tag*/ { 
	color: #333;
}
strong /*bold style for the entire site. The <b> tag should copy this style*/ { 
	color: #333;
}
strong a /*bold style for <strong> tags with a link within*/ { 
	color: #ab0028;
}
a strong /*bold style for the <a> tag with a <strong> tag within*/ { 
	color: #ab0028;
}
/*END bold styles***************************************************************************************/
h1 /* custom style for the custom H1  */ {
	font-weight: normal;
	border-top: #999 1px solid;
	margin-top: 2px;
	font-size: 160%;
	margin-bottom: 15px;
	padding-bottom: 3px;
	text-transform: uppercase;
	color: #333;
	padding-top: 3px;
	border-bottom: #999 1px solid;
	font-family: "Trebuchet MS", arial, helvetica, sans-serif;
}

.h1_lowercase /* custom style for the custom H1 ---UPPER & lower case--- */ {
	font-weight: normal;
	border-top: #999 1px solid;
	margin-top: 2px;
	font-size: 160%;
	margin-bottom: 15px;
	padding-bottom: 3px;
	text-transform: none;
	color: #333;
	padding-top: 3px;
	border-bottom: #999 1px solid;
	font-family: "Trebuchet MS", arial, helvetica, sans-serif;
}

h2 /* custom style for the custom H2  */ {
	/* border-top: #000 1px solid; */
	font-weight: normal;
	font-size: 175%;
	color: #000;
	font-family: "Trebuchet MS", arial, helvetica, sans-serif;
	padding-top: 12px;
	padding-bottom:2px;
	border-bottom: 1px solid;
}
.no-underline, .sidebar_box_300 h2, .info_box_round_grey h2, #footer h2, #footer h3, h2.announce_header, .container_homepage_bottom h2, .caption h2, .info_box_round_cte-green_expand h2, .info_box_round_cte-blue h2, .info_box_round_blue h2, .sidebar_box_250 h2, .announce_expand h2{
	border-bottom: 0px;
}

h2 a /* custom style for the custom H2 link */ {
	/*color: #333; - removed due to a11y issue with links not looking like links. This is a usability issue for all - kle 11-22-2016*/ }

.h2_style_blue_bg h2 {
	background-color: #A3B7E0;
	color: #284379;
	font-weight: bold;
	font-size: 115%;
	background-image: url(/images/css/clear.gif);
	padding-top: 8px;
	padding-right: 3px;
	padding-left: 2px;
	padding-bottom:2px;
}
.h2-small{ /*added for smaller h2-kle-12-2-2016*/
	font-size: 111%;
	font-weight: bold;
}
h3 /* custom style for the custom H3  */ {
	font-weight: normal;
	font-size: 145%;
	color: #000;
	/*border-bottom: 1px dashed;*/
	margin-bottom:2px;
	margin-top:10px;
}
.italic-bold /*style for bold and italic at the same time-3-30-2017-11:11am*/ {
	font-style: italic;
	font-weight: bold;
}

h4 /* custom style for the custom H4  */ {
	font-weight: normal;
	font-size: 135%;
	color: #000;
	/*border-bottom: 1px dotted;*/
	margin-bottom:3px;
	margin-top:10px;
}

h5 /* custom style for the custom H5  */ {
	font-weight: bold;
	font-size: 120%;
	color: #000;
	/*border-bottom: 1px dashed;*/
	margin-bottom:3px;
	margin-top:10px;
	/*text-transform: uppercase; not a desired effect for most. we need a custom style for h5 uppercase kle 12-1-2016*/ }
h6 /* custom style for the custom H5  */ {
	font-weight: boldl;
	font-size: 110%;
	color: #0262b2;
	/*border-bottom: 1px dotted;*/
	margin-bottom:5px;
	margin-top:10px;
	/*text-transform: uppercase; not a desired effect for most. we need a custom style for h5 uppercase kle 12-1-2016*/ } a:active /* custom style for active links  */ {
	color: #993399;
}

img /* custom style for general images  */ {
	border-top-style: none;
	border-right-style: none;
	border-left-style: none;
	border-bottom-style: none
}
blockquote {
	margin-top: 0;
	margin-right: 0;
	margin-bottom: 0;
	margin-left: 0;
	padding-top: 0;
	padding-right: 0;
	padding-bottom: 0;
	padding-left: 30px;
}

noscript
{
	font-weight: bold;
	color: #F00;
}
.caps_bold { /*Styles and text with all uppercase and bold*/
	font-weight: bold;
	text-transform: uppercase;
}