/* Start of CMSMS style sheet '+JFS General Layout CSS' */
/*****************
browsers interpret margin and padding a little differently, 
we'll remove all default padding and margins and
set them later on
******************/
* {
margin:0;
padding:0;
}

/*
Set initial font styles
*/
body {
   text-align: left;
   font-family: Helvetica, Arial, sans-serif;
   font-size: 85.01%;
   line-height: 1em;
   background-color:#FFFFFF;
}

/*
set font size for all divs,
this overrides some body rules
*/
div {
   font-size: 1em;
}

/*
if img is inside "a" it would have 
borders, we don't want that
*/
img {
   border: 0;
}

/*
default link styles
*/
/* set all links to have underline and bluish color */
a,
a:link 
a:active {
   text-decoration: none;
/* css validation will give a warning if color is set without background color. this will explicitly tell this element to inherit bg colour from parent element */
   background-color: inherit; 
   color: #005d80; 
}

a:visited {
   text-decoration: none;
   background-color: inherit;
  color: #005d80;                /* a different color can be used for visited links */
}

/* remove underline on hover and change color */
a:hover {
   text-decoration: underline;
   /*background-color: #ffbb00;*/ /*Background color for CSS menu bar on hover*/
   /*color: #071a20;*/
}

A.imglink:hover { /*keeps image links from having a background color*/
background:transparent;
}

div#main A.imglink:hover { /*keeps image links from having a background color*/
background:transparent;
}


/*****************
basic layout 
*****************/
body {
  color: #000;
 
}

/*** header ***
we will hide text and replace it with a image
we need to assign a height for it
*/

div#header {
float: left;
width: 100%;
}

div#printlogo {
	display:none;
}

div#logo {
float: left;
height: 100px; /* adjust according your image size */
   }

div#fmlogo {
float: right;
margin-top: 10px;
}


div #headerright {
float: right;
text-align: right;
width: 28em;
margin-top:10px;
}



div #textsize {
float: right;
margin:0 .5em 0 0;
height: 24px;
width: 9em;
}

div #textsize a {
font-weight: bold;
font-size: 85%;

}

div#utilmenu{
float: right;
font-size:85%;
margin-top:.4em;
width: 14em;
}

#utilmenu ul li {
display: inline;
/*margin-left: 1em;*/
font-weight: bold;
 }

.utilmenucontactjfs {
padding-right: .7em;
}

.utilmenuhomecare {
padding-left: 1em;
background: url(uploads/images/utilmenu.gif) no-repeat; 
}

div#search {
padding: 5px 0 5px 0;
float: right;
width: 22em;
  }

#cntnt01searchinput{ /*control for search input box*/
border: 1px solid #75abbf; 
width: 12em;
}
#submitButton {
 border: 1px solid #dde0e4;
   background-color:#75abbf;
   color: white;
 margin-left: 5px;
font-size: 1em;
width: 4em;
}

div#maillist {
float: right;
margin-top:5px;
width:28em;
}

div#maillist a{
color:#071a20;
padding: .2em 0 1em 2em;
line-height:25px;
}

#orangearrow {
background: url(uploads/images/arroworange.png) no-repeat;
background-repeat: no-repeat;
background-position: 0 0px;
}
#bluearrow {
background: url(uploads/images/arrowblue.png) no-repeat;
background-repeat: no-repeat;
background-position: 0 0px;
margin-right: .8em;
}


div.breadcrumbs {
	float: left;
   padding: 7px 0 8px 28px; /* CSS short hand rule first value is top then right, bottom and left */
   font-size: 90%;             /* its good to set fontsizes to be relative, this way viewer can change his/her fontsize */
   margin: 0 0 21px 0; 
   background-color: #75abbf;   
   color: #ffffff;    
   width: 929px;

}

div.breadcrumbs a {
color: #ffffff;   
}

div.breadcrumbs a:visited {
color: #ffffff;   
}

div.breadcrumbs a:hover {
color: #ffffff;   
}
div.breadcrumbs a:active {
color: #ffffff;   
}

 div.breadcrumbs span.lastitem { 
   font-weight:bold; 
 }


div#footer {
   clear:both;       /* keep footer below content and menu */
/*   color: #FFFFFF;*/
   width: 957px;
   /*background-color: #8cbdcf;*/
   margin: 0 auto;     /* this centers footer */
}

div#footer p {
   font-size: 0.9em;

   padding: 1.5em;      /* some air for footer */
   text-align: center; /* centered text */
   margin:0;
}

div#footer p a {
   color: #000; /* needed because footer link would be same color as background otherwise*/
}

div#footer a:hover {
color: #071a20;
}

/* as we hid all hr for accessibility we create new hr with extra div element */
/*div.hr {
   height: 1px;
   margin: 1em;
   border-bottom: 1px solid black;
}*/

p.hr, h2.hr, h3.hr, h4.hr, h5.hr, h6.hr {
padding-top: 1em;
border-top: 1px solid black;
}

/* relational links under content */
div.left49 {
  float: left;
  width: 49%;  /* 50% for both left and right might lead to rounding error on some browser */
}

div.right49 {
  float: right;
  width: 49%;
  text-align: right;
}





/********************
CONTENT STYLING
*********************/
div#content {

}

/* HEADINGS */
div#content h1 {
   font-size: 2em;  /* font size for h1 */
   line-height: 1em;
   margin: 0;
}
div#content h2 {
   color: #005d80; 
   font-size: 1.5em; 
   text-align: left; 
/* some air around the text */
   /*padding-left: 0.5em;*/
   padding-bottom: 1px;
/* set borders around header */
   /*border-bottom: 1px solid #52acc1; */
   /*border-left: 1.1em solid #52acc1; */
   line-height: 1.25em;
/* and some air under the border */
   margin: 0 0 0.5em 0;
}
div#content h3 {
   color: #005d80; 
   font-size: 1.25em;
   line-height: 1.25em;
   margin: 0 0 0.2em 0;
}
div#content h4 {
   font-size: 1.25em;
   line-height: 1.25em;
   margin: 0 0 0.2em 0;
}
div#content h5 {
   font-size: 1.1em;
   line-height: 1.1em;
   margin: 0 0 0.2em 0;
}
h6 {
   font-size: 1em;
   line-height: 1em;
   margin: 0 0 0.2em 0;
}




/* END HEADINGS */

/* TEXT */
p {
   font-size: 1em;
   margin: 0 0 1.5em 0;  /* some air around p elements */
   line-height:1.4em;
   padding: 0;
}
blockquote {
   border-left: 10px solid #ddd;
   margin-left: 10px;
}
pre {
   font-family: monospace;
   font-size: 1.0em;
}
strong, b {
/* explicit setting for these */
   font-weight: bold;
}
em, i {
/* explicit setting for these */
   font-style:italic;
}

/* Wrapping text in <code> tags. Makes CSS not validate */
code, pre {
white-space: pre-wrap;       /* css-3 */
/* white-space: -moz-pre-wrap;  /* Mozilla, since 1999 */
/* white-space: -pre-wrap;      /* Opera 4-6 */
/* white-space: -o-pre-wrap;    /* Opera 7 */
/* word-wrap: break-word;       /* Internet Explorer 5.5+ */
 font-family: "Courier New", Courier, monospace;
 font-size: 1em;
}

pre {
   border: 1px solid #000;  /* black border for pre blocks */
   background-color: #ddd;
   margin: 0 1em 1em 1em;
   padding: 0.5em;
   line-height: 1.5em;
   font-size: 90%;   /* smaller font size, as these are usually not so important data */
}

/* END TEXT */

/* LISTS */
div#main ul,
div#main ol,
div#main dl {
  font-size: 1.0em;
   line-height:1.4em;
   margin: 0 0 1.5em 0;
}
div#main ul li,
div#main ol li {
   margin: 0 0 0.25em 3em;
}

div#dl dt {
   font-weight: bold;
   margin: 0 0 0.25em 3em;
}
div#dl dd {
   margin: 0 0 0 3em;
}
/* END LISTS */

/*CUSTOM STYLES*/
.nobullet {
list-style:none;
}
ul.hrlist {
list-style-position:inside;
}

li.hrlist {
border-top:1px solid black;
padding-top: 1.5em;
width: 15em;
}

.textmiddle {vertical-align:middle;} 

.NewsSummaryLink {
    line-height: 125%;
 }

.NewsSummarySummary {
   padding-bottom: 20px;
   line-height: 125%;
 }
 .nomargin {
	 margin: 0;
 }
 .halfbottommargin {
	 margin: 0 0 0.2em 0;
 }
 .largertext {
	 font-size:120%;
 }
/* End of '+JFS General Layout CSS' */

