@charset "utf-8";
/* layoutstyles.css */

/* Universal style rule */
*{
  /* Block all browser default margins and padding */
  margin:0;
  padding:0;
  /* Temporary borders */
  /* border:dashed 1px #f00;*/
}

body {
	font-family: 'Times New Roman', Arial, Helvetica, sans-serif;
	background-color:#F9F9F9;
}

#wrapper{
  width: 70em;
  background-color:#fff;
  margin: 0.5em auto;
   /* Required for absolutely-positioned layout only */
  position:relative;
}

/* Sample generic class selector */
/* Applies only where class="hilite" (yellow hilite) */
.hilite{
background-color:#ff0;
}

div.horzcenter{
  text-align:center;
  margin:auto;
  padding: 1.5em 0 1.5em 0;
}

ul.nobullet{
  list-style-type:none;
  margin:0 0 1.5em 0;
  padding: 0 0 1.5em 0;
}

#branding{
 width: 100%;
 padding: 0.5em;
}

#branding img{
  float:left;
  margin:  1.2em 7.5em 0 1em;
  }

/*Fixes the mysterious image gap */
#branding img{
  display:block;
}

/* Applies to all list items in the branding division */
#branding li{
  display:block;
  margin-bottom:0.2em;
  font-size:0.9em;
}

/* Navbar division */
#navbar{
  background-color:#aaa;
  background:#aaa url(http://www.chromenta.com/images/navbak.jpg) repeat-x center;
  height:2em;
  margin-top: 0.6em;
    /* For absolutely-positioned navbar */
  position:absolute;
  top:5em; /* Same as branding div height */
  width:100%; /* Layout width minus leftcolumn width */
}

/* IE6 hack applies to its table drop-down */
#navbar table {
  margin:-1px; 
  border-collapse:collapse; 
  position:absolute;
  top:0.5em;
  left:0;
  z-index:100;
}

#navbar div{
	float: right;
	padding: 0.2em 0.2em 0 0;
}

/* Remove bullets from ul in the navbar */
#navbar ul{
  list-style-type:none;
}

/* List items in the navbar */
#navbar li{
  float:left;
  /* Required for drop-down menus */
  position:relative;
}

/* Applies to drop-down menus in navbar */
#navbar li ul{
  position:absolute;
  z-index:100;
  visibility:hidden;
}

/* Make drop-down visible on navbar hover */
#navbar li:hover ul,
#navbar li a:hover ul{ /* IE6 hack */
  visibility:visible;
  top:2em;
  left:0;
}

/* Applies to links on the drop-down menu */
#navbar li:hover ul li a,
#navbar li a:hover ul li a{ /* IE6 hack */
  background:#ccc; /* Removes background image */
  color:#000;
  text-align:left;
  display:block;
  width:13em; /*width of the drop down menu from nav bar cell */
  padding:0 0 0 1em;
  height:auto;
}

/* Hover on drop-down menu links */
#navbar li:hover ul li a:hover,
#navbar li a:hover ul li a:hover { /* IE6 hack */
  background: #aaa; 
  color:#000;
}

/* Applies to navbar links, unvisited and visited */
#navbar a,
#navbar a:link,
#navbar a:visited{
  text-decoration:none;
  font-family:Verdana, Geneva, Arial, Sans-Serif;
  font-size:80%;
  color:#000;
  background:#aaa url(http://www.chromenta.com/images/navbak.jpg) repeat-x center;
  display:block;
  height:2.5em;
  width: 11em;  /*width of each cell in nav bar */
  border-right:solid 1px #ddd;
  text-align:center;
  line-height:2.5em;
  outline-style:none;  /*fix dotted line in Firefox */
}

/* Navbar hover and active links */
#navbar a:hover,
#navbar a:active{
  background:#ddd url(http://www.chromenta.com/images/navhover.jpg) repeat-x center;
  color:#000;
}

#leftcolumn{
/* Remember, content left margin must match this width */
 width:10em;
 float:left;
 background-color:#fff;
 color:#0000FF;
 font-weight:bold;
 margin: 1em 0 0 0;
 padding: 0.5em;
   /* For absolutely-positioned leftcolumn */
  position:absolute;
  top:8em; /* Same as branding div height */
  left:0;
}

#leftcolumn p{
  line-height:1.5em;
}

/* Applies to all lists in the leftcolumn division */
#leftcolumn ul, #content ol{
  padding:0 0 0.2em 1em;
}

/* Applies to all list items in the leftcolumn division */
#leftcolumn li{
  display:block;
  margin-bottom:0.2em;
  font-size:0.9em;
}
 
#leftcolumn a
{
    color:#0000FF;
	text-decoration:none;
 }
 
#leftcolumn a:hover
{
	text-decoration:underline;
 } 

#rightcolumn{
/* #content right margin must match this width */
   width:20em;
   float:right;
   background-color:#fff;
   margin: 0.5em 0;
   padding:0.5em 0;
   /* For absolutely-positioned right column */
  position:absolute;
  top:8em; /* Same as branding div height */
  right:0;
}

#content{
/* Left margin must match leftcolumn width */
  width:55em;
  background-color:#fff;
  color:#000;
/* border-right:dotted 2px #CCEAEA; */
   border-left:dotted 2px #CCEAEA;
  margin:2.5em 1em 0.5em 11em;
  padding:0.5em 0.5em 0.5em 1.5em;
}

/* Size h1 headings in the content division */
#content hr{
  margin: 1.5em auto 1em;
}

/* Size h1 headings in the content division */
#content h1{
  font-size:1.4em;
  margin: 0.5em auto 0.5em;
}

/* Styles h2, and h3 style rules in the content division */
#content h2, #content h3{
  margin: 0.5em auto 0.5em;
}

/* Size h2 headings in the content division */
#content h2{
  font-size:1em;
}
/* Size h3 headings in the content division */
#content h3{
  font-size: 0.8em;
}

#content p{
  line-height:1.5em;
  margin: 0.5em auto 1em;
}

/* Applies to all lists in the content division */
#content ul, #content ol{
  padding:0.5em 0 0.1em 2em;
}

/* Applies to all list items in the content division */
#content li{
  margin-bottom:0.5em;
}

#footer {
    clear:both;
	text-align:center; 
	padding:0.7em 0;
}

 .footermenulink
{
	font-family: Tahoma, Verdana, Arial;
	font-size: 0.7em;
	font-weight:bold;
	color:#999999;
	text-decoration:none;
 }
 
 .glossary_nav
{
	font-size: 0.9em;
	text-decoration:none;
 }
 