/*HTML TAGS*/
body {
  margin:0;
  padding:0;
  border:0;	/* This removes the border around the viewport in old versions of IE */
  width:100%;
  background:#FFF;
  min-width:600px; /* Minimum width of layout - remove line if not required */
		/* The min-width property does not work in old versions of Internet Explorer */
  font-size:90%;
  font-family:Arial,sans-serif;
  text-align:center;
margin:auto;
}

html, input, textarea{
  font-family:Arial; 
  font-size:13px;
  line-height:15px;
  color:#575757;		
}
ul { list-style:none;}

li {
  font-family:Arial; 
  font-size:13px;
  line-height:25px;
  color:#575757;	
}

div {
  font:Arial, sans-serif;
}

a {
  color:#000;
  font:Arial, sans-serif;
  text-decoration:none;
}

a:hover {
  color:#555;
}


h1, h2, h3 {
  margin:.8em 0 .2em 0;
  padding:0;
}

h1 {
  line-height:35px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 30px;
  font-style: normal;
  font-weight:bold;
  color: #000000;
  padding-bottom:10px;
}

h2 {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: bold;
  color: #333399;
  padding:0 0 25px 0;
}

h3{
  font-size:18px;
  color:#000000;
  font-weight:normal;
  font-family:Arial;sans-serif;
  padding:0 0 5px 0;
  display:inline;
}

h4{
  font-size:17px;
  color:#555;
  font-weight:bold;
  font-family:Arial;sans-serif;
  padding-bottom:0px;
}

h5 {
  margin: 0 0 20px 0;
  padding:20px 0 0 0;
  font: bold 0.8em Arial, sans-serif;
  line-height: 0.8em; 
  text-align:left; 
  color: #6b6c6d;
  letter-spacing:.8px;
}

p {
  margin:.4em 0 .8em 0;
  padding:0;
  font: normal 14px Arial, Helvetica, sans-serif;
  color:#000000;
}

img {
  margin:0px 0 5px;
  border:none;
}
select{
  margin:5px 0 5px 0;
}
/*END HTML TAGS*/



/* WEBSITE SECTION LAYOUT - left/right sidebar, main content
/*Center Content - header.inc*/
#block_1{
  float: left;
  background:#FFF;
}
* html #block_1{
  display: inline;
}

/*left sidebar - index.php/glossaries.php*/
#block_2{	
  float: left;
  background:#FFF;
}

/*right sidebar - footer.inc*/
#block_3{
  float: left;
}

/* Start Mac IE5 filter \*/
#block_1, #block_2, #block_3{
  padding-bottom: 32767px !important;
  margin-bottom: -32767px !important; 
}

/* End Mac IE5 filter  - index.php*/
#wrapper{
  overflow: hidden; /* This hides the excess padding in non-IE browsers */
}

/* we need this for IE 5.01 - otherwise the wrapper does not expand to the
necessary height (unless fixed, this problem becomes even more acute 
weirdness as the method is enhanced */
#wrapper{
  /* Normally a Holly-style hack height: 1% would suffice but that causes 
  IE 5.01 to completely collapse the wrapper - instead we float it */
  float: left;
  /* NB. possibly only IE 5.01 needs to get this float value - otherwise 5.5 sometimes 
(I saw it happen many moons ago) makes the width of wrapper too small 
the float: none with the comment is ignored by 5.01,
5.5 and above see it and carry on about their business
It's probably fine to just remove it, but it's left here 
just in case that many moons ago problem rears its head again */
  float/**/: none;
}

/* easy clearing */
#wrapper:after{
  content: '[DO NOT LEAVE IT IS NOT REAL]'; 
  display: block; 
  height: 0; 
  clear: both; 
  visibility: hidden;
}

#wrapper{
  display: inline-block;
}

/*\*/
#wrapper{
  display: block;
}

/* end easy clearing */
#footer{
  clear: both;
}

/* Safari needs this - otherwise the ghost overflow, though painted 
correctly obscures links and form elements that by rights should be above it.
An unintended side-effect is that it cause such elements to vanish in IE 5.01
and 5.5, hence the child selector hack */
* > #footer, * > form, * > #notes, * > .output{
  position: relative;
  /*z-index: 1000;*/
}
/* END WEBSITE SECTION LAYOUT */

/*SUPPORT PAGES - header,footer,index*/
/*header.inc*/
#master{
  float:left;
  width:100%;
  text-align:left;
}

/*header.inc*/

#header {
  width:940px;
  height:110px;
  background-image:url(images/header.jpg);
  background-color:#ffffff;
  background-repeat:no-repeat;
  background-position:top;
  text-align:right;
  font-size:11px;
  margin:0;
  padding:0;
  position:relative;
}

.layout{		/* used in about-us.php */
  float:left;
  position:relative;
  overflow:hidden;
}

/* Footer styles - footer.inc*/
#footer {
float:left;
margin:0;
padding:20px 0 0 0;
width:900px; 
font-family:arial; 
font-size:12px; 
color:#bcbcbc; font-style:italic; 
line-height:21px;
}
#footer a {color:#bcbcbc; font-style:italic;}
#footer .indent {padding:28px 0 0 30px;}
#footer .menu {color:#575757; font-style:normal; text-align:justify;}
#footer .menu a {color:#575757; font-style:normal;}

/* HEADER/FOOTER MENUS - header.inc/footer.in*/

#menu {
background: #D5D5D4;
text-align:left;
padding-top:0px;
}

#menu a {
  font: bold 12px arial, sans-serif;
  display: block;
  margin: 0;
  padding:3px 0 3px 0;
  text-decoration: none;
  background:#275E34;
  color:#F8F9F1;
  font-weight:bold;
}

#menu a:hover {
color: #CCC;
}

#menu ul {
list-style: none;
margin: 0;
padding: 0;
text-align:center;
width: 112px;		/*width of menu tabs - must match #menu li below*/
float: left;

}

#menu li {
  position: relative;
  padding:0 0 0 0;
  width:112px;
  z-index: 500;
}

#menu ul ul {
  position: absolute;
  z-index: 500;
}

#menu ul ul ul {
  position: absolute;
  top: 0;
  left: 100%;
}

div#menu ul ul,
div#menu ul li:hover ul ul,
div#menu ul ul li:hover ul ul
{display: none;
background:#D5D5D4;
left:0em;}

div#menu ul li:hover ul,
div#menu ul ul li:hover ul,
div#menu ul ul ul li:hover ul
{
  display: block;
  background:#D5D5D4;
  /*background:transparent;*/
  left:0em;
}


#menu ul li a.active,
#menu ul li a.active:hover {
  color:#000;
  background:#D5D5D4;
  font-weight:bold;
}

/*
.cap {
  font-family:Arial,sans-serif;
  font-weight:normal;
  font-size:11px;
  color:#2A2A2A;
}
*/


/*index.php*/
a.artttl {
  font-weight:bold;
  color:#333399;
  font-size:15px;
  text-align:left;
}

/*index.php*/
a.recartttl {
  font-weight:bold;
  color:#996600;
  font-size:15px;
  text-align:left;
}

/*index.php*/
a.artsub {
  font-weight:bold;
  color:#996600;
  font-size:15px;
  text-align:left;
}


/*END SUPPORT PAGES*/


/*LIBRARY*/
/*library - e.g. arthriphase-clinical-histories.php*/
.byline {
  font-style:italic;

}
/*library - e.g arthriphase-clinical-histories.php*/
.rtop{
  font-size:10px;
  padding:0 0 0 10px;
  margin:0;
}

/*Library - index.php */
a.readart {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 12px;
  font-style: normal;
  font-weight: bold;
  color:#163A9A;
  text-decoration:underline;
}
a.readart2 {
  margin:.4em 0 .8em 0;
  padding:0;
  font: normal 12px Arial, Helvetica, sans-serif;
  color:#0000FF;
  
}

/*
a.abstract {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 9px;
  font-style: normal;
  color:#03459B;
  text-decoration:underline;
}

.arttitle {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 24px;
  font-weight: bold;
  color: #999;
}
*/


/*GLOSSARY - glossaries.php e.g. - beta carotene.php */
.glosselect {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 12px;
  color: #000000;
  width:145px;
}

.maintext {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 12px;
  color: #000000;
}





