/* layoutstyles.css */

/* Universal style rule */
*{
  margin: 0;
  padding: 0;
}

.link{color:#f60;}

/* *******************************************  BODY  ***** */
body {
  background-color: #196515;
  font-family: Arial, Helvetica, sans-serif;
  color:#fff;
}


/* *****************************************  WRAPPER  ***** */
#wrapper{
  width: 50em;
  background-color: #196515;
  /* Put 20px margin above the wrapper */
  /* Set right and left to auto for centering */
  margin: 20px auto; 
  /* Required for absolutely-positioned layout only */
  position:relative;
}


/* ****************************************  BRANDING  ***** */
#branding{
  /* For absolutely-positioned hyperlinks */
  position:relative;
}


/* ****** BRANDING DIVISION HYPERLINKS ***** */

#branding a{
  /* Postions are set in tags in layout.htm */
  position:absolute;
  text-decoration:none;
  color:#fff;
  font-size:0.8em;
}

#branding a:link, #branding a:visited{
  color:#fff;
}

#branding a:hover{
  color:#0ff;
}
#branding a:active{
  color:#f0f;
}

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


/* *****************************************  NAVBAR  ***** */
#navbar{
  background:#aaa url(up-.gif) repeat-x center;
  height:1.6em;
  /* For absolutely-positioned navbar */
  position:absolute;
  top:9.375em; /* Same as branding div height */
  left:0em; /* Same as leftcolumn width */
  width:50em; /* Layout width minus leftcolumn width */
}

/* 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 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:#fff;
  background:#aaa url(up-.gif) repeat-x center;
  display:block;
  height:2em;
  width:8.8em; /* *************** width of blue navbar buttons ************** */
  border-right: solid 1px #333;
  line-height:2em;
  text-align:center;
  outline-style:none;
}

/* Navbar hover, active, and current page links */
#navbar a:hover,
#navbar a:active,
#navbar li.selected a:link,
#navbar li.selected a:visited{
  background:#ddd url(down-.gif) repeat-x center;
  color:#f00;
}

/* Drop-down menu styles */
/* 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:1.6em;
  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:10.5em; /* ************************this is the width of drop down boxes */
  padding:0 0 0 0.5em;
  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;
}

/* 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  ***** */
#content1{
  background-color:#196515;
  color:#fff;
  padding: 0;
}

/* *****************************************  CONTENT  ***** */
#content{
  background-color:#196515;
  color:#fff;
  padding: 0;
}

/* Content hover, active, and current page links */
#content a{text-decoration:underline}
#content a:link  {color:#ffffff;}
#content a:visited  {color:#ffffff;}
#content a:hover {color:#f00;}
#content a:active    {color:#ffffff;}

/* Applies to paragraphs in the content division */
#content p{
  line-height:1.5em;
  float:right;
}



/* Applies to all lists in the content division */
#content ul, #content ol{
  padding:10px 0 10px 40px;
}

/* Styles h1, p, branding division */
#branding h1, p{
  font-family: helvetica, "times new roman" , sans-serif;
  color:#fff;
  font-size:1.2em;
  font-weight:bold;
  font-style:normal;
  }



/* Styles h1, h2, h3, h4, h5 and h6 style rules in the content division */
#content h1, #content h2, #content h3, #branding h1{
  font-family: Charcoal, Impact, sans-serif;
  color:#fff;
  font-weight:normal;
  font-style:italic;
  /* font-variant:small-caps; */
  letter-spacing:0.08em;
}

/* Size h1 headings in the content division */
#content h1{
  font-size:2em;
}

/* Size h2 headings in the content division */
#content h2{
  font-size:1.5em;
  float:right;
}

/* Size h3 headings in the content division */
#content h3{
  font-size:1.5em;
  font-style:normal;
  float:right;
}


/* Size h4 headings in the content division */
#content h4{
  font-size:small;
  font-style:normal;
color:#fff;
  float:left;
}

/* Size h5 headings in the content division */
#content h5{
  font-size:small;
  font-style:normal;
  
}

/* Size h6 headings in the content division */
#content h6{
  font-size:large;
  font-style:normal;
  
}


/* *****************************************  CONTENT  ***** */



