/* This rule resets a core set of elements so that they will appear consistent across browsers. Without this rule, content styled with an h1 tag, for example, would appear in different places in Firefox and Internet Explorer because each browser has a different top margin default value. By resetting these values to 0, the elements will initially be rendered in an identical fashion and their properties can be easily defined by the designer in any subsequent rule. */
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6 {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 1em;
}
/* The body is the outermost layout component and contains the visible page content. Setting properties for the body element will help to create consistent styling of the page content and more manageable CSS. Besides using the body element to set global properties, it is common to use the body element to set the background color of the page and create a centered container for the page content to display. */
body {
  background-color: #00295D;
  color: #000000;
  font-family: Verdana, Helvetica, Arial, sans-serif;
  font-size: 1em;
  line-height: 1.5em;
  margin: 0 0 0 0; /* Sets the margin properties for an element using shorthand notation (top, right, bottom, left) */
  padding: 0 0 0 0; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
  text-align: center; /* Centers the page content container in IE 5 browsers. */
}
/* Commonly used to style page titles. */
h1 {
  color: #7ec0d8;
  font-family:Verdana, Helvetica, Arial, sans-serif;
  font-size: 1.4em;
  line-height: 1.5em;
}
/* Commonly used to style section titles. */
h2 {
  color: #6d9863;
  font-family:Verdana, Helvetica, Arial, sans-serif;
  font-size: 1.1em;
  line-height: 1.5em;
}
p, li {
  font-family: Verdana, Helvetica, Arial, sans-serif;
  font-size: .8em;
  line-height: 1.5em;
}
dfn {
	font-family: Verdana, Helvetica, Arial, sans-serif;
	font-size: 1em;
	line-height: 1.5em;
	font-style: italic;
	font-weight: bold;
}
/* Sets the style for unvisited links. */
a,  a:link {
  color: #317D25;
  font-weight: bold;
  text-decoration: none;
}
/* Sets the style for visited links. */
a:visited {
  color: #2d7336;
  font-weight: bold;
  text-decoration: none;
}
/* Sets the style for links on mouseover. */
a:hover {
  color: #09760d;
  text-decoration: underline;
}
/* Sets the style for a link that has focus. */
a:focus {
  color: #09760d;
}
/* Sets the style for a link that is being activated/clicked. */
a:active {
  color: #164619;
}
/* This is a container for the page content. It is common to use the container to constrain the width of the page content and allow for browser chrome to avoid the need for horizontal scrolling. For fixed layouts you may specify a container width and use auto for the left and right margin to center the container on the page. IE 5 browser require the use of text-align: center defined by the body element to center the container. For liquid layouts you may simply set the left and right margins to center the container on the page. */
#outerWrapper {
  background-color: #ffffff;
  margin: 0; /* Sets the margin properties for an element using shorthand notation (top, right, bottom, left) */
  text-align: left; /* Redefines the text alignment defined by the body element. */
  width: auto;
}
#outerWrapper #header {
  background-color: #00295D;
  width: auto;
  height: 4.5em;
  border-bottom: solid 1px #628152; /* Sets the bottom border properties for an element using shorthand notation */
  color: #000000;
  font-size: 1em;
  font-weight: bold;
  line-height: 1.5em;
  padding: .5em 1em 1.75em 1.5em; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
}
#outerWrapper #header h1 {
	color: #ffffff;
	background-color: #00295D;
	padding-bottom: .25em;
}
#outerWrapper #header h2 {
  color: #ffffff;
  background-color: #00295D;
  font-size: 1em;
}
#outerWrapper #header h3 {
  color: #7ec0d8;
  font-size: 1.1em;
  line-height: 1.5em;
}
#outerWrapper #header .logo {
  border: none;
  width: 7.8em;
}
#outerWrapper .imgs {
	border: 0;
	padding: 0;
	margin: 0;
	height: 85px;
	width: auto;
	background-color: #FFFFFF;
	background-image: url(../images/small-image-montage.jpg);
	background-repeat: no-repeat;
	background-position: center center;
}
#outerWrapper .bothedr {
  width: auto;
  height: 2em;
  background: #00295D;
  clear: both;
}
/* Navigation settings*/
#outerWrapper #contentWrapper #navigation {
  background-color: #F5C727;
  color: #006614;
  float: left;
  font-family: Verdana, Helvetica, Arial, sans-serif;
  font-size: 1em;
  line-height: 1.4em;
  padding: 1em 0; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
  width: 10em;
}
/*#outerWrapper #contentWrapper #navigation a:hover {
  color: #004400;
  font-family: Verdana, Helvetica, Arial, sans-serif;
  font-size: 1em;
  font-weight: bold;
  line-height: 1.4em;
  text-decoration: underline;
}
#outerWrapper #contentWrapper #navigation a, #outerWrapper #contentWrapper #navigation a:link {
  font-family: Verdana, Helvetica, Arial, sans-serif;
  font-size: 1em;
  font-weight: bold;
  line-height: 1.4em;
  text-decoration: underline;
}
*/
#outerWrapper #contentWrapper #navigation ul {
  width: 10em;
  padding: 0;
  margin: 0;
} 
#outerWrapper #contentWrapper #navigation li { 
  font-size: 0.9em;
  list-style: none;
  margin-bottom: 0px;
  background-color: #F3F3D1;
  border-bottom: 1px solid #898989;
}

#outerWrapper #contentWrapper #navigation li a {
  font-family: Verdana, Helvetica, Arial, sans-serif;
  font-size: .8em;
  color: #000;
  display: block;
  background: transparent;
  border: 0;
  line-height: 1.3em;
  padding: 0.4em 16px .5em;
}
#outerWrapper #contentWrapper #navigation li a:hover {
  color: #ffffff; 
 /* background-color: #1D6850;*/
 /* background-color: #099A00;*/
 /* background-color: #0A6608;*/
  background-color: #0D810A;
  line-height: 1.3em;
}	

/* Contains the main page content. When using a mutliple column layout the margins will be set to account for the floated columns' width, margins, and padding. */
#outerWrapper #contentWrapper #content {
	color: #111111;
	font-family:Verdana, Helvetica, Arial, sans-serif;
	font-size: 1em;
	line-height: 1.5em;
	margin: 0; /* Sets the margin properties for an element using shorthand notation (top, right, bottom, left) */
	padding: 1em 2em 2em 2em; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
	border-left-width: 10em;
	border-left-style: solid;
	border-left-color: #F5C727;
}
#outerWrapper #contentWrapper #content h1 {
  color: #000000;
  font-family:Verdana, Helvetica, Arial, sans-serif;
  font-size: 1.1em;
}
#outerWrapper #contentWrapper #content h2 {
  color: #222222;
  font-family:Verdana, Helvetica, Arial, sans-serif;
  font-size: 1em;
}
#outerWrapper #contentWrapper #content h3 {
  color: #222222;
  font-family:Verdana, Helvetica, Arial, sans-serif;
  font-size: 1em;
}
#outerWrapper #contentWrapper #content h4 {
  color: #222222;
  font-family:Verdana, Helvetica, Arial, sans-serif;
  font-size: .9em;
}
#outerWrapper #contentWrapper #content p {
  margin: 0;
  padding:1em 0;
}
/* Using floated elements and a clear float class is a common method to accomplish multiple column tableless layouts. If floated elements are used without being cleared the elements following will wrap around the floated element. This class should be applied to an element after the last floated element and before the close of the container with floated elements. */
#outerWrapper #contentWrapper .clearFloat {
  clear: both;
  display: block;
}
#outerWrapper #footer {
  background-color: #00295D;
  border-top: solid 1px #8ab573; /* Sets the top border properties for an element using shorthand notation */
  color: #ffffff;
  font-family: Verdana, Helvetica, Arial, sans-serif;
  font-size: .8em;
  line-height: 1.4em;
  text-align: center;
  padding: 1em 1em 1em 1em; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
  clear: both;
}
#outerWrapper #footer h2 {
  color: #ffffff;
}
#outerWrapper #footer a {
  color: #ffffff;
  text-decoration:underline;
}
/*CUSTOM STYLES*/
/*submenu styles*/
#outerWrapper #contentWrapper #navigation ul a.location_menu {
	/*background-color: #F3F5AE;
	background-color: #d0e8f2;*/
	background-color: #e1d0f3;
	color: #0D137F;
}
#outerWrapper #contentWrapper #navigation ul a:hover.location_menu {
	background-color: #4e247c;
	color: #ffffff;
}
/*other styles*/
#outerWrapper #contentWrapper #content .article .small_text, #outerWrapper #contentWrapper #content .basic_happenings .small_text {
	font-size: .6em;
	margin-bottom: 1em;
}
sup {
	line-height: 0;
}
.map_box {
	width: 300px;
	float: left;
	padding: .3em 1em .5em 2.4em;
} 
/*Article stylings*/
#outerWrapper #contentWrapper #content .article, #outerWrapper #contentWrapper #content .christmas
{
	background-color: #ffffff;
	margin: 0;
	color: #000000;
	padding: 0;
}
#outerWrapper #contentWrapper #content .article h1, #outerWrapper #contentWrapper #content .christmas h1 { 
  margin: 1em 0 1em 0;
}
#outerWrapper #contentWrapper #content .article h2, #outerWrapper #contentWrapper #content .christmas h2
{
	margin: 1em 0 .5em 0;
	border-bottom: 1px #FFCC66 solid;
}

#outerWrapper #contentWrapper #content .article h3, #outerWrapper #contentWrapper #content .christmas h3
{
   font-size: .85em;
   padding: .5em 0 0 1.5em;
}
#outerWrapper #contentWrapper #content .article h4 /*for location addresses on top of page*/
{
   font-size: .9em;
   font-weight: normal;
   line-height: normal;
   font-style: italic;
   padding: .5em 0 0 6em;
}
#outerWrapper #contentWrapper #content .article h5 /*use for sub-head lines of text*/
{
   font-size: .9em;
   font-weight: normal;
   line-height: normal;
   font-style: italic;
   padding: .5em 3em 0 6em;
}
#outerWrapper #contentWrapper #content .article ul, #outerWrapper #contentWrapper #content .christmas ul
{
	margin: .5em 6em .5em 6em;
	line-height: 1.45em;
}
#outerWrapper #contentWrapper #content .article ul.list_style_2
{
	margin: 0;
	padding: .5em 0 0 15em ;
	line-height: 1.45em;
}
#outerWrapper #contentWrapper #content .article p, #outerWrapper #contentWrapper #content .christmas p
{
	margin: 0 3em;
	line-height: 1.4em;
}
#outerWrapper #contentWrapper #content .article .address 
{
	margin: 0 3em;
	padding: .25em 0 .5em 0;
	line-height: 1.4em;
}
#outerWrapper #contentWrapper #content .article img, #outerWrapper #contentWrapper #content .christmas img
{
	float: left;
	margin: 1em 1.5em 0 2em;
}

#outerWrapper #contentWrapper #content .article img.image_main
{
	float: left;
	margin: 1em 1.5em .8em 2.4em;
}

#outerWrapper #contentWrapper #content .article img.nofloat
{
	float: none;
	margin: 1em 1.5em .8em 2.4em;
}


/*Biline stylings*/
.article-biline
{
	width: 25em;
	margin: 0;
	padding: .8em;
	background-color: #efefff;
	font-size: 1em;
	color: #000000;
	border: thin solid #DEDAF3;
}
#outerWrapper #contentWrapper #content .article .article-biline ul
{
    width: auto;
	margin: .3em 3em 1.25em 3em;
	padding: 0;
	font-size: .9em;
	line-height: 1.5em;
	border: none;
}
#outerWrapper #contentWrapper #content .article .article-biline p
{
	margin: 0;
	padding: .25em .5em .5em 0;
	line-height: 1.5em;
	font-size: .8em;
}
.article-biline-2
{
	width: 12.4em;
	margin: 0 0 0 2em;
	padding: .8em;
	background-color: #efefff;
	font-size: .9em;
	line-height: 1.3em;
	color: #000000;
	border: thin solid #DEDAF3;
}
#outerWrapper #contentWrapper #content .article .article-biline-2 p
{
	margin: 0;
	padding: 0;
	line-height: 1.5em;
	font-size: .8em;
}
#outerWrapper #contentWrapper #content .article .biline-padding-3 .article-biline-2 p
{
	margin: 0;
	padding: .5em 0 0 0;
	line-height: 1.5em;
	font-size: .85em;
}
#outerWrapper #contentWrapper #content .article .article-biline img
{
  margin:0;
  padding:0;
  border: 0;
  float: left;
}
#outerWrapper #contentWrapper #content .article .article-biline-2 img
{
  margin:0;
  padding:0;
  width: 12.2em;
  border: 0;
  float: none;
}
#outerWrapper #contentWrapper #content .article .article-biline-2 .biline-2-caption
{
  padding: .8em 0 0 0;
  width: auto;
  font-size: .9em;
  line-height: 1.3em;
  background-color: #efefff;
}

.article-biline strong, .article-biline em
{
	margin: 0;
	line-height: 1.2em;
	font-size: .85em;
}
.biline-padding
{
  padding: 1em 2.4em;
  width: auto;
}
.biline-padding-2
{
  margin: 0;
  padding: .2em;
  width: 10em;
}
.biline-padding-3
{
  margin: 0;
  padding: 1em 0 0 2em;
  width: 13.8em;
  float: left;
}
/*page specific*/
/*Locations page table*/
#outerWrapper #contentWrapper #content .locations_tbl 
{
	border: thin #CCCCCC solid;
	margin: 1em 3em 0 3em;
	border-spacing: 0;
}
#outerWrapper #contentWrapper #content .locations_tbl th
{
	padding: .5em;
	margin: 0;
	text-align: center;
	vertical-align: middle;
	/*border: thin #CCCCCC solid;*/
	font-size: .8em;
	font-weight: normal;
	background-color: #DBDCB3;
}
#outerWrapper #contentWrapper #content .locations_tbl td
{
	padding: .5em;
	margin: 0;
	text-align: center;
	vertical-align: middle;
	border: thin #CCCCCC solid;
	font-size: .75em;
	line-height: 1.4em;
	background-color: #F3F3F3;
}
#outerWrapper #contentWrapper #content .locations_tbl caption
{
	margin: 0;
	padding: .5em 0;
}
/*employment page styles*/

#outerWrapper #contentWrapper #content .article .newstable
{
	font-size: 0.8em;
	background-color: #CEE9E9;
	border: thin #143F56 solid;
	margin: 2em;
	border-spacing: 0;
	width: inherit;
}

#outerWrapper #contentWrapper #content .article .newstable td
{
	border-spacing: 0;
	margin: 0;
	padding: .5em;
	border-left: thin #A8C8DA solid;
	border-top: thin #A8C8DA solid;
}

#outerWrapper #contentWrapper #content .article .newstable th
{
	text-align: left;
	background-color: #CECEE9;
	padding: .5em;
	border-bottom: thin #252566 solid;
}

#outerWrapper #contentWrapper #content .article .newstable td.printLink
{
	text-align: center;
	background-color: #E9CEE1;
	border-top: thin #662552 solid;
}

#outerWrapper #contentWrapper #content .article .newstable td.printLink a {
  color: #000000;
  font-weight: bold;
  text-decoration: none;
}

#outerWrapper #contentWrapper #content .article .newstable td.printLink a:link {
  color: #000000;
  font-weight: bold;
  text-decoration: none;
}


#outerWrapper #contentWrapper #content .article .newstable td.printLink a:visited {
	color: #444444;
	font-weight: bold;
	text-decoration: line-through;
}

#outerWrapper #contentWrapper #content .article .newstable td.printLink a:hover {
color: #000000;
  font-weight: bold;
  text-decoration: underline;
}

#outerWrapper #contentWrapper #content .article .newstable td.printLink a:active {
  color: #F00000;
  font-weight: bold;
  text-decoration: underline;
}

/*watch page*/
.map_box_right {
	width: 300px;
	float: right;
	padding: .3em 1em .5em 2.4em;
}
/*hippa privacy statement*/
.header_spacing {
	padding-bottom: .5em;
}
/*health resources page*/
#outerWrapper #contentWrapper #content .article .list_style
{
	margin: 0em 2em 1em 2em;
	padding: 0;
	line-height: 1.4em;
}

/*administrative area*/
#outerWrapper #contentWrapper #content .article img.spriteNofloat
{
	float: none;
	margin: 0;
	padding: 0;
	vertical-align:middle;
}

/*bmsfhc_happenings, includes christmas and healthplus on this page*/

#outerWrapper #contentWrapper #content .basic_happenings
{
	padding: 0 4em 3em 4em;
	font-size: 1.2em;
	color: #000000;
	text-align: center;
}

#outerWrapper #contentWrapper #content .basic_happenings img
{
	margin: 1em;
}

#outerWrapper #contentWrapper #content .basic_happenings h3
{
	font-family: "Times New Roman", Times, serif;
	font-size: 2em;
	font-weight: normal;
	color: #1D6850;
	line-height: 1em;
}

#outerWrapper #contentWrapper #content .basic_happenings p
{
	font-family: "Times New Roman", Times, serif;
	font-size: 1.2em;
	margin: 0 0 .75em 0;
	padding: 0;
}

#outerWrapper #contentWrapper #content .basic_happenings ul
{
	font-size: 1em;
	
}

#outerWrapper #contentWrapper #content .basic_happenings li
{
	text-align: left;
}

#outerWrapper #contentWrapper #content .basic_happenings .stronger
{
	font-weight: bold;
}

#outerWrapper #contentWrapper #content .basic_happenings .emphasis
{
	font-weight: bold;
}

#outerWrapper #contentWrapper #content .happenings
{
	padding-bottom: 3em;
}

#outerWrapper #contentWrapper #content .happenings h2
{
	margin: 1em 0 .2em 0;
}

#outerWrapper #contentWrapper #content .happenings h3
{
   font-size: .85em;
   padding: .25em 0 0 0;

}

#outerWrapper #contentWrapper #content .happenings p
{
	margin: 0 2em;
	padding: .3em;
	font:"Times New Roman", Times, serif;
	font-size: .9em;
}

#outerWrapper #contentWrapper #content .happenings .h_blue_emphathis {
	color:#15009A;
	font-size: 1.1em;
	font-weight: bold;
	margin: 0 1.5em;
}

#outerWrapper #contentWrapper #content .happenings strong
{
	color:#DD0000;
}

#outerWrapper #contentWrapper #content .happenings h3 em
{
	color:#BB0000;
}

#outerWrapper #contentWrapper #content .happenings img
{
	margin-left: 2em;
}

/*Happenings compact*/
#outerWrapper #contentWrapper #content .happenings_compact
{
background-color: #ffffff;
color: #000000;
font-family: Times, "Times New Roman", serif;
font-size: 1em;
text-align: center;
}

#outerWrapper #contentWrapper #content .happenings_compact h3 
{
	font-size: 1.2em;
	color:#BB0000;
}

#outerWrapper #contentWrapper #content .happenings_compact p
{

font-family: Times, "Times New Roman", serif;
font-size: .9em;
margin: 0 0 1em 0;
padding: 0;
text-align: center;
}

#outerWrapper #contentWrapper #content .happenings_compact .orngtxt
{
background-color: #000000;
color: #FFCC00;
}

#outerWrapper #contentWrapper #content .happenings_compact .black_bg
{
background-color: #000000;
color: #ffffff; 
}

#outerWrapper #contentWrapper #content .happenings_compact .orange_bg
{
background-color: #ffcb00;
color: #000000; 
}

#outerWrapper #contentWrapper #content .happenings_compact .yellow_text
{
color: #ffff00;
 }

/*health plus copy*/
#outerWrapper #contentWrapper #content .christmas .healthplus
{
background-color:#FFFFFF;
padding: 0;
margin: 0em 1em .5em 27.5em;
color: #008EFB;
}

#outerWrapper #contentWrapper #content .christmas .healthplus .h_blue_emphathis {
	color:#15009A;
	font-weight: bold;
	margin-left: 0em;
	font-style: italic;
	display: block;
}

#outerWrapper #contentWrapper #content .christmas .healthplus img
{
	float: none;
	margin: -.75em 0 0 2em;
	padding: 0;
}

/*christmas*/
/*christmas classes are also included in the article class definitions, for those rules go to the article classes*/
#outerWrapper #contentWrapper #content .christmas h2 {
	color:#BB0000;
	font-family:"Times New Roman", Times, serif;
	font-size: 3em;
	border-bottom: none;
	margin: 1em 0 0 8em; 
}

#outerWrapper #contentWrapper #content .christmas p {
	color:#BB0000;
	font-family:"Times New Roman", Times, serif;
	font-size: 1.25em;
	margin: 0 0 0 22em;
}

#outerWrapper #contentWrapper #content .christmas .greenbox {
	color:#044C00;
	font-family:"Times New Roman", Times, serif;
	font-size: 1.25em;
	margin: 0 0 0 22em;
}

#outerWrapper #contentWrapper #content .christmas ul {
	color:#044C00;
	font-family:"Times New Roman", Times, serif;
	font-size: 1.25em;
	margin: 0 0 0 24em;
}

#outerWrapper #contentWrapper #content .christmas .blue_emphathis {
	color:#15009A;
	font-weight: bold;
}
