@font-face {
	font-family: 'ScalaOTRegular';
	src: url('../font/scalaot-webfont.eot');
	src: url('../font/scalaot-webfont.eot?#iefix') format('embedded-opentype'), url('../font/scalaot-webfont.woff') format('woff'), url('../font/scalaot-webfont.ttf') format('truetype'), url('../font/scalaot-webfont.svg#ScalaOTRegular') format('svg');
	font-weight: normal;
	font-style: normal;
}

/* 8/4/20 EJC - added gotham fonts for testing */
@font-face {
	font-family: 'HCo_Gotham';
	/*src:url('./woff2/Gotham-Light_Web.woff2') format('woff2'),
		url('./woff/Gotham-Light_Web.woff') format('woff');*/
	src: url('../font/woff2/Gotham-Light_Web.woff2') format('woff2'), url('../font/woff/Gotham-Light_Web.woff') format('woff');
	font-weight: 300;
	font-style: normal;
}

@font-face {
	font-family: 'HCo_Gotham';
	src: url('../font/woff2/Gotham-LightItalic_Web.woff2') format('woff2'), url('../font/woff/Gotham-LightItalic_Web.woff') format('woff');
	font-weight: 300;
	font-style: italic;
}

@font-face {
	font-family: 'HCo_Gotham';
	src: url('../font/woff2/Gotham-Book_Web.woff2') format('woff2'), url('../font/woff/Gotham-Book_Web.woff') format('woff');
	font-weight: 400;
	font-style: normal;
}

@font-face {
	font-family: 'HCo_Gotham';
	src: url('../font/woff2/Gotham-BookItalic_Web.woff2') format('woff2'), url('../font/woff/Gotham-BookItalic_Web.woff') format('woff');
	font-weight: 400;
	font-style: italic;
}

@font-face {
	font-family: 'HCo_Gotham';
	src: url('../font/woff2/Gotham-Medium_Web.woff2') format('woff2'), url('../font/woff/Gotham-Medium_Web.woff') format('woff');
	font-weight: 500;
	font-style: normal;
}

@font-face {
	font-family: 'HCo_Gotham';
	src: url('../font/woff2/Gotham-MediumItalic_Web.woff2') format('woff2'), url('../font/woff/Gotham-MediumItalic_Web.woff') format('woff');
	font-weight: 500;
	font-style: italic;
}

@font-face {
	font-family: 'HCo_Gotham';
	src: url('../font/woff2/Gotham-Bold_Web.woff2') format('woff2'), url('../font/woff/Gotham-Bold_Web.woff') format('woff');
	font-weight: 700;
	font-style: normal;
}

@font-face {
	font-family: 'HCo_Gotham';
	src: url('../font/woff2/Gotham-BoldItalic_Web.woff2') format('woff2'), url('../font/woff/Gotham-BoldItalic_Web.woff') format('woff');
	font-weight: 700;
	font-style: italic;
}





body {
	color: #333333;
	font-family: arial,sans-serif;
	margin: 0px auto;
	line-height: 150%;
}

a {
	color: #51447a;
}

	a:focus {
		border: 1px solid #51447a !important;
	}

h1, h2, h3 {
	/* 7/17/20 EJC updated font */
	/*font-family:ScalaOTRegular, "Times New Roman", Arial;*/
	/*font-family:Gotham, Arial;*/
	font-family: HCo_Gotham, Arial;
	font-weight: normal;
}

h1 {
	/* 7/20/20 EJC updated font */
	/*font-size: 200%;*/
	font-size: 28px;
	line-height: 110%;
	margin-bottom: 14px;
	font-weight: 400;
	line-height: 28px;
	color: #41a928;
}

h2 {
	/* 7/20/20 EJC updated font */
	/*font-size: 161.6%;*/
	font-size: 18px;
	font-weight: 500;
	line-height: 20px;
	color: #000000;
}

h3 {
	/* 7/20/20 EJC updated font, added font-weight */
	/*font-size: 116%;*/
	font-size: 16px;
	font-weight: 400;
	line-height: 16px;
	color: #000000;
}

h4 {
	/* 8/4/2020 EJC: added font-family */
	font-family: HCo_Gotham, Arial;
	/* 7/20/20 EJC changed font-weight */
	/*font-weight: bold;*/
	font-weight: 500;
	font-size: 14px;
	line-height: 14px;
	color: #000000;
}

ul {
	margin: 0 0 0 15px;
}

	ul li {
		padding: 0 0 10px 0;
	}

p {
	margin-bottom: 15px;
}

	p.intro {
		font-size: 138.5%;
	}

	p.credits {
		font-size: 85%;
	}

input[type='text'], input[type='password'] {
	border: 1px solid #ccc;
	padding: 2px;
}

input[type='submit'], a.smallButton {
	/* 10/5/20 EJC changes based on Marketing requirements  */
	/*background-color: #5e5088;*/
	background-color: #41a928;
	border: 0px;
	color: #fff;

	/*padding: 2px;*/
	padding: 7px 20px;
}

input[type='submit']:hover, a.smallButton:hover {
	background-color: #338720;
	transition-duration: .4s;
}

p.error {
	color: #f00;
	font-size: 85%;
}

a.smallButton {
	/* 10/5/20 EJC changes based on Marketing requirements  */
	/*padding: 2px 8px;*/
	padding: 7px 20px;
	text-decoration: none;
}

.skipNav {
	text-align: left;
}

	.skipNav a {
		display: inline;
		position: absolute;
		left: -10000px;
	}

		.skipNav a:focus, .skipNav a:active {
			position: absolute;
			left: 0px;
			width: auto;
			height: auto;
			overflow: visible;
			text-decoration: underline;
			color: #000;
		}

legend span {
	display: block;
	height: 0px;
	overflow: hidden;
	width: 0px;
}

/* 10/22/20 EJC - new classes */
.txtBold {
	font-weight: bold;
}

.txtItalics {
	font-style: italic;
}

.txtUnderline {
	text-decoration: underline;
}

.txtStrikeThrough {
	text-decoration: line-through;
}

.txtSubscript {
	vertical-align: sub;
	font-size: smaller;
}

.txtSuperscript {
	vertical-align: super;
	font-size: smaller;
}


/*---------------- Header Styles ------------------------*/
#header {
	clear: both;
	margin: 0px auto;
	min-height: 95px;
	width: 987px;
}

#globalNav {
	line-height: 100%;
	padding: 10px 0 23px;
	text-align: right;
}

	#globalNav ul {
		float: right;
		list-style: none;
	}

		#globalNav ul li {
			display: list-item;
			float: left;
		}

	#globalNav a {
		border-left: 1px solid #747171;
		margin-left: 7px;
		padding-left: 7px;
	}

	#globalNav #fontSizer a {
		border: 0px;
		margin-left: 0px;
		padding-left: 3px;
	}

		#globalNav #fontSizer a.selected {
			color: #selected;
			text-decoration: none;
		}

	#globalNav .small {
		font-size: 100%;
	}

	#globalNav .large {
		font-size: 108%;
	}

#globalSearch {
	clear: both;
	float: right;
	padding-top: 15px;
	position: relative;
	width: auto;
}

	#globalSearch fieldset {
		position: relative;
		right: 0px;
	}

	#globalSearch input[type='text'] {
		width: 185px;
		height: 22px;
	}

	#globalSearch input[type='submit'] {
	}

#logo {
	float: left;
	overflow: hidden;
	width: 697px;
}

	#logo img, #logo h2 {
		float: left;
		padding-right: 13px;
	}

	#logo h2 {
		font-size: 138.5%;
		padding-top: 15px;
	}

#globalStateSelect {
	float: left;
	padding-top: 15px;
}
/*-------------------------- End Header -------------------------*/
/*-------------------------- Primary Nav -------------------------*/
/* 8/6/20 EJC: updated the primary navigation according to Marketing specs */
#primaryNav {
	/*
	background:url(../images/ui/sprite_primary_nav.gif) repeat-x; 
	border:1px solid #dfdfdf;
	*/
	background: #41a928;
	border: 1px solid #41a928;
	clear: both;
	height: 49px;
	margin: 0 auto;
	width: 985px;
	/* 8/6/20 EJC: added font-family */
	/*font-family: "HCo_Gotham", Arial;*/
}

	#primaryNav ul {
		list-style: none;
		margin: 0;
	}

		#primaryNav ul li {
			/*border-left:1px solid #dfdfdf;*/
			border-left: 1px solid #41a928;
			display: list-item;
			float: left;
			height: 49px;
			padding-bottom: 0px;
		}

			#primaryNav ul li a {
				/*
	border:1px solid #ffffff;
	color:#333333;
	*/
				border: 1px solid #41a928;
				color: #ffffff;
				display: block;
				/*
	font-family:ScalaOTRegular, "Times New Roman", Arial;
	font-size:123.1%;
	*/
				/*font-family:gotham, Arial;*/
				/*font-size:135.1%;*/
				font-family: "HCo_Gotham", Arial;
				font-size: 16px;
				font-weight: 500;
				height: 32px;
				/*padding:15px 23px 0px;*/
				padding: 15px 15px 0px;
				text-decoration: none;
			}

				#primaryNav ul li a:hover {
					text-decoration: underline;
				}

				#primaryNav ul li a.afterActive, #primaryNav ul li a.firstNavItem {
					border-left: 0px;
				}

			#primaryNav ul li.active a {
				background: url(../images/ui/sprite_primary_nav.gif) repeat-x 0px -49px;
			}

			#primaryNav ul li:first-child {
				/*margin-left:41px;*/
				margin-left: 30px;
			}

			#primaryNav ul li:last-child {
				/*border-right:1px solid #dfdfdf !important;*/
				border-right: 1px solid #41a928 !important;
			}
/* Don't combine the following with the above style even tho property is the same.  IE won't apply the border */
.primaryNavLast {
	border-right: 1px solid #dfdfdf !important;
}
/*----------------------------- End Primary Nav -------------------------*/
/*----------------------------- No Left Nav Columns ---------------------*/
#content_Main {
	margin: 0px auto;
	overflow: hidden;
	width: 987px;
}
/* left column */
.section_Primary {
	float: left;
	margin: 0 20px 0 0;
	width: 690px;
}

#content_Main.hasLeftNav .section_Primary {
	margin-right: 0px;
}
/* right column */
.section_Options {
	float: left;
	width: 277px;
}
/* ------------------------------ End No Left Nav Columns-----------------*/
/* ------------------------------ Left Nav -------------------------------*/

#nav_Secondary {
	border-top: 1px solid #cccccc;
	float: left;
	margin-right: 68px;
	width: 226px;
}

	#nav_Secondary ul {
		font-family: ScalaOTRegular, "Times New Roman", Arial;
		list-style: none;
		margin: 0 0 40px 0;
	}

		#nav_Secondary ul ul {
			list-style: disc;
			margin: 0 0 0 17px;
		}

		#nav_Secondary ul li {
			background: url(../images/ui/blt_arrow_left_nav.gif) no-repeat 0px 20px #fff;
			;
			border-bottom: 1px dotted #999999;
			/*font-size:138.5%;*/
			padding: 15px 0 8px 15px;
			/* 8/5/20 EJC - added gotham font and changed font-size */
			font-family: HCo_Gotham, Arial;
			font-size: 14px;
		}

			#nav_Secondary ul li.active {
				background: url(../images/ui/blt_arrow_left_nav_down.gif) no-repeat 0px 20px #fff;
			}

			#nav_Secondary ul li ul li {
				background: none;
				border: 0px;
				font-size: 100%;
				list-style-type: none;
				padding-left: 5px;
			}

			#nav_Secondary ul li.active li {
				background: none;
			}

			#nav_Secondary ul li.active ul li.active {
				list-style-position: outside;
				list-style-type: disc;
			}

			#nav_Secondary ul li a {
				text-decoration: none;
			}

			#nav_Secondary ul li.active a, #nav_Secondary ul li.active li.active a {
				color: #000;
			}

			#nav_Secondary ul li.active li a {
				color: #5e5088;
			}

/* 8/6/20 EJC: Added leftNavHeader for left navigation title */
.leftNavTitle {
	font-family: "HCo_Gotham", Arial;
	font-size: 20px;
	line-height: 110%;
	margin-bottom: 14px;
	font-weight: 500;
	line-height: 28px;
	color: #000000;
}


/* ------------------------------ End Left Nav ---------------------------*/
/* ------------------------------ Home Page Hero -------------------------*/

/* Drop Shadow Classes (applied via jQuery) */
/* Shadow for primary content image banner */
.shadowWide {
	background: url(../images/ui/sprite_drop_shadows.gif) no-repeat 0 0;
	height: 9px;
	margin-bottom: 21px;
}
/* Shadow for right rail and right nav call out (see home page) */
.shadowNarrow {
	background: url(../images/ui/sprite_drop_shadows.gif) no-repeat 0 -10px;
	height: 9px;
	margin-bottom: 11px;
}
/* Shadow for internal white box nested within right rail call out */
.shadowNarrowGray {
	background: url(../images/ui/sprite_drop_shadows_on_gray.gif) no-repeat 0 0;
	height: 8px;
	margin: 0;
}
/* Shadow for left nav call out (narrow) */
.shadowLeftNav {
	background: url(../images/ui/sprite_drop_shadows.gif) no-repeat 0 -19px;
	height: 9px;
	margin-bottom: 19px;
}
/* Shadow for left nav call out (wide, see patient secure page) */
.shadowLeftNavWide {
	background: url(../images/ui/sprite_drop_shadows.gif) no-repeat 0 -49px;
	height: 7px;
	margin-bottom: 6px;
}
/* Shadow for nested white box in left nav call out (narrow) */
.shadowLeftNavGray {
	background: url(../images/ui/sprite_drop_shadows_on_gray.gif) no-repeat 0 -8px;
	height: 8px;
	margin-bottom: 0px;
}
/* Shadow for nested white box in left nav call out (wide, see patient secure page) */
.shadowLeftNavWideGray {
	background: url(../images/ui/sprite_drop_shadows_on_gray.gif) no-repeat 0 -17px;
	height: 9px;
	margin-bottom: 0px;
}
/* Shadow for primary nav */
.shadowPrimaryNav {
	background: url(../images/ui/sprite_drop_shadows.gif) no-repeat 0 -28px;
	height: 7px;
	margin: 0 auto 18px;
	width: 987px;
}

#imageRotatorContainer, #bannerPhoto {
	border: 1px solid #dfdfdf;
	/* height:325px; */
	min-height: 325px;
	position: relative;
	overflow: hidden;
	width: 688px;
}

#bannerPhoto {
	height: auto;
	min-height: 224px;
}

	#bannerPhoto img {
		display: block;
	}

ul#imageRotatorControl {
	line-height: 100%;
	position: absolute;
	right: 10px;
	top: 13px;
	z-index: 100;
}

	ul#imageRotatorControl li {
		-webkit-border-radius: 4px;
		-moz-border-radius: 4px;
		background-color: #5e5088;
		border: 1px solid #999999;
		border-radius: 4px;
		float: left;
		font-size: 85%;
		list-style-type: none;
		padding: 1px 2px;
		margin: 1px 2px 1px 1px;
	}

		ul#imageRotatorControl li.active {
			background-color: #ffffff;
		}

		ul#imageRotatorControl li a {
			color: #ffffff;
			padding: 0 2px;
			text-decoration: none;
		}

		ul#imageRotatorControl li.active a {
			color: #000000;
		}

.rotatorItem {
	background-color: #f3f4f6;
	display: block;
	min-height: 325px;
	left: 0px;
	position: relative;
	top: 0px;
	width: 688px;
	padding-bottom: 0px;
	margin-bottom: 0px;
}

.rotatorItemContent {
	left: 354px;
	margin-bottom: 0;
	position: relative;
	padding: 106px 0 0 0;
	width: 315px;
	height: auto;
}

.rotatorItem h1 {
	color: #333333;
	font-weight: normal;
	margin-bottom: 10px;
}

.rotatorItem p {
	margin-bottom: 0px;
	padding-bottom: 5px;
}

/* ------------------------------ End Home Page Hero ---------------------*/

/* ------------------------------ Right Column on Home Page --------------*/
.optionsContainer {
	background-color: #eeeeee;
	border: 1px solid #dfdfdf;
	min-height: 325px;
	overflow: hidden;
	width: 275px;
}

	.optionsContainer ul {
		list-style: none;
		margin: 0;
	}

		.optionsContainer ul li {
			background: #eeeeee url(../images/ui/bg_home_option_item.gif) repeat-x;
			min-height: 25px;
			padding: 11px 17px;
		}

			.optionsContainer ul li h3 {
				color: #333333;
				font-size: 138.5%;
				min-height: 25px;
				padding: 0 0 0 40px;
			}

				.optionsContainer ul li h3 a {
					color: #333333;
					display: block;
					text-decoration: none;
					padding: 5px 0 0;
				}

	.optionsContainer li#optionsLogin {
		background: #f9f9f9 url(../images/ui/bg_home_option_item_expanded.gif) repeat-x;
		min-height: 168px;
		padding-bottom: 5px;
	}

		.optionsContainer li#optionsLogin h3 {
			min-height: 20px;
			padding: 5px 0 0 0;
		}

#optionsLogin .optionContent {
	padding: 27px 0 11px;
}

.optionsContainer label {
	display: block;
}

.optionsContainer p {
	margin-bottom: 5px;
}

.optionsContainer input[type='text'], .optionsContainer input[type='password'] {
	margin: 0 5px 5px 0;
	width: 185px;
}

h3#findDentist {
	background: url(../images/ui/icon_search.png) no-repeat 0px 0px;
}

h3#reviewBenefits {
	background: url(../images/ui/icon_down_arrow.png) no-repeat 0px 0px;
}

h3#checkClaims {
	background: url(../images/ui/icon_file.png) no-repeat 0px 0px;
}

.lockImage {
	float: right;
}

.newsContainer, .needCoverageContainer, .callOutContainer {
	background-color: #f9f9f9;
	border: 1px solid #dfdfdf;
	padding: 19px 19px 10px;
}

.newsContent, .needCoverageContent, .callOutContent {
	background-color: #fff;
	border: 1px solid #dfdfdf;
	margin-bottom: 0px;
	padding: 17px;
	position: relative;
}

	.newsContent h2, .needCoverageContent h2, .callOutContent h2 {
		margin-bottom: 8px;
	}

	.newsContent h3, .needCoverageContent h3, .callOutContent h3 {
		/* 7/20/20 EJC updated font */
		/*font-family:arial, sans-serif;*/
		font-family: HCo_Gotham, Arial;
	}

	.needCoverageContent h3 {
		padding-top: 10px;
	}

	.newsContent p.moreLink, .needCoverageContent p.moreLink {
		padding-left: 15px;
	}

p.callOutMainLink {
	font-family: arial, sans-serif;
	font-size: 161.6%;
	line-height: 150%;
	margin-bottom: 10px;
}

.callOutContent h4 {
	line-height: 200%;
}
/* ------------------------------ End Right Column on Home Page --------------*/
/* ------------------------------ Sub Sections of Home Main ------------------*/
.section_Sub {
	float: left;
	margin-bottom: 15px;
	padding-right: 53px;
	width: 292px;
}

	.section_Sub h2 {
		border-bottom: 3px solid #67bb49;
		margin-bottom: 17px;
		padding: 0 0 8px;
	}

.section_subContentNoImage {
	border-bottom: 1px dotted #cccccc;
	margin-bottom: 10px;
}

.section_subContentWithImage {
	clear: both;
	padding-bottom: 20px;
	overflow: hidden;
}

	.section_subContentWithImage img {
		border: 1px solid #dedede;
		float: left;
		margin: 0 12px 0 0;
	}

/* ------------------------------ End Sub Sections of Home Main ------------------*/
/*------------------------------- Sub Page Hero ----------------------------------*/
#heroMsgContainer {
	background-image: url(../images/ui/bg_white_translucent.png);
	-webkit-border-radius: 8px;
	-moz-border-radius: 8px;
	border-radius: 8px;
	margin: 20px;
	padding: 20px;
	position: relative;
	width: 325px;
}

	#heroMsgContainer p {
		margin-bottom: 10px;
	}

#content_Main.hasLeftNav #heroMsgContainer {
	left: 280px;
}

a.largeButton {
	/* 10/5/20 EJC changes based on Marketing requirements  */
	/*background-color: #6a5a98;*/
	background-color: #41a928;
	/*
	-webkit-border-radius: 8px;
	-moz-border-radius: 8px;
	border-radius: 8px;
	*/
	/*
	-moz-box-shadow: 3px 3px 8px 0px #888;
	-webkit-box-shadow: 3px 3px 8px 0px #888;
	box-shadow: 3px 3px 8px 0px #888;
	*/
	-moz-box-shadow: 3px 3px 8px 0px #bfbfbf;
	-webkit-box-shadow: 3px 3px 8px 0px #bfbfbf;
	box-shadow: 3px 3px 8px 0px #bfbfbf;
	color: #fff;
	display: block;
	/*font-family: ScalaOTRegular,"Times New Roman", Arial;*/
	font-family: HCo_Gotham, Arial;
	font-weight: 400;
	font-size: 138.5%;
	margin: 0 auto;
	/*padding: 10px;*/
	padding: 14px;
	text-align: center;
	text-decoration: none;
	width: 60%;
}

a.largeButton:hover {
	background-color: #338720;
	transition-duration: .4s;
}

/*------------------------------- Classes to change background image in banner----------------------*/

/*------------------------------- End Classes to change background image in banner----------------------*/
/*------------------------------- End Sub Page Hero ------------------------------*/
/*------------------------------- Patients Sub Page (Secure)----------------------*/
#nav_Secondary.profilePage {
	float: left;
	position: relative;
	width: 297px;
	z-index: 100;
}

	#nav_Secondary.profilePage .callOutContainer {
		margin-right: 10px;
	}

		#nav_Secondary.profilePage .callOutContainer h2 a {
			/*font-family:arial, sans-serif !important;*/
			font-family: HCo_Gotham, arial, sans-serif !important;
		}

.section_Primary dl dt, .section_Primary dl dd {
	float: left;
	margin-bottom: 10px;
	padding: 0 10px 0 0;
	width: 140px;
}

.section_Primary dl dt {
	font-weight: bold;
}

.section_Primary dl dd {
	padding-right: 30px;
}

#nav_Secondary.profilePage ul li {
	background: url(../images/ui/sprite_drop_shadows.gif) repeat-x 1px 2px #fff;
	border-bottom: 0px;
	height: 42px;
	margin: 0 0 7px 0;
	padding: 0 0 7px 0;
	width: 288px;
}

	#nav_Secondary.profilePage ul li a {
		background: url(../images/ui/sprite_primary_nav.gif) repeat-x 0px 0px #efefef;
		border-top: 1px solid #dfdfdf;
		border-right: 1px solid #dfdfdf;
		border-left: 1px solid #dfdfdf;
		border-bottom: 1px solid #dfdfdf;
		border-style: solid !important;
		border-color: #dfdfdf;
		display: block;
		padding: 12px 0 11px 15px;
		width: 273px;
	}

	#nav_Secondary.profilePage ul li.active {
		background: url(../images/ui/sprite_drop_shadows.gif) repeat-x 0px 9px #fff;
		width: 297px;
	}

		#nav_Secondary.profilePage ul li.active a {
			background-color: #ffffff;
			background-image: none;
			border-right: 0px;
			margin-right: 0px;
			width: 282px;
		}

#nav_Secondary.profilePage {
	margin-right: 0px;
	border-top: 0px;
}

.section_Primary.profilePage {
	border: 1px solid #dfdfdf;
	float: left;
	overflow-x: auto;
	padding: 17px 20px;
	position: relative;
	width: 648px;
	z-index: 0;
}

p.benefitsCopy {
	margin-bottom: 30px;
}

.section_Primary.profilePage h2 {
	border-bottom: 1px solid #dfdfdf;
	margin: 0 0 10px 0;
	padding: 0 0 10px 0;
}

.section_Primary.profilePage h3 {
	background-color: #000;
	clear: both;
	color: #fff;
	/*font-family:Arial,sans-serif;*/
	font-family: HCo_Gotham, Arial,sans-serif;
	font-weight: normal;
	margin: 0 0 12px;
	padding: 5px 10px;
}

.profilePage .userData {
	float: left;
	margin-bottom: 25px;
	overflow: hidden;
	width: 50%;
}

.profilePage table {
	margin-bottom: 30px;
}

th {
	border-bottom: 1px solid #dfdfdf;
	font-weight: bold;
	text-align: left;
	vertical-align: bottom;
}

td, th {
	padding: 5px;
}

tr.firstTableHeader th {
	border-bottom: 0;
	font-size: 123.1%;
}

tr.secondTableHeader th {
	border-bottom: 0;
	padding-bottom: 0px;
}

table.patientSecureData td {
	border-bottom: 1px dotted #dfdfdf;
}

th.tableRowHeader {
	border-bottom: 1px dotted #dfdfdf;
	font-weight: normal;
}

caption {
	display: block;
	font-size: 0px;
	height: 0px;
	overflow: hidden;
}
/*------------------------------------- End Patient Sub Page (Secure) --------------------------*?

/*------------------------------ Footer ----------------------------------*/
#footer {
	background: #ffffff url(../images/ui/bg_footer_gradient.gif) repeat-x;
	border-top: 3px solid #67bb49;
	margin-top: 74px;
	overflow: hidden;
	padding: 34px 0 17px;
}

#footerContent {
	margin: 0 auto;
	overflow: hidden;
	width: 987px;
}

#footer h3 {
	border-bottom: 1px solid #a1a1a1;
	/* 7/20/20 EJC updated font */
	/*font-family: ScalaOTRegular, "Times New Roman", Arial;*/
	font-family: HCo_Gotham, Arial;
	margin-bottom: 8px;
	padding-bottom: 15px;
}

.footer_contentColumn {
	float: left;
	padding-right: 56px;
	width: 180px;
}

	.footer_contentColumn ul {
		list-style-position: outside;
		margin: 0 0 0 15px;
	}

	.footer_contentColumn li {
		padding: 0 0 10px 0px;
	}

.otherSitesContent {
	margin-left: 40px;
}

	.otherSitesContent img {
		display: block;
		margin: 0 auto;
	}

ul#socialMediaIcons {
	margin: 15px 0 0 0;
}

	ul#socialMediaIcons li {
		background: url(../images/ui/sprite_social_media_icons.png) no-repeat;
		list-style-type: none !important;
		min-height: 23px;
		margin: 5px 0;
		padding: 5px 0 0 35px;
	}

		ul#socialMediaIcons li#twitter {
			background-position: 0px 0px;
		}

		ul#socialMediaIcons li#facebook {
			background-position: 0px -28px;
		}

div.copyrightContainer {
	clear: both;
	padding-top: 40px;
}

	div.copyrightContainer p {
		clear: both;
		float: left;
	}

	div.copyrightContainer ul {
		float: left;
	}

		div.copyrightContainer ul li {
			border-right: 1px solid #a1a1a1;
			float: left;
			list-style: none;
			padding: 0 10px;
		}

li.last {
	border: 0 !important;
}
/*------------------------------ End Footer ------------------------------*/
