/* layoutstyles.css */

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

body{
  background-color: #000;
  font-family: Arial, Helvetica, Sans-Serif;
  color: #fff;
}

a:link {
color: #578cb6;
}
a:visited {
color: #878685;
}
a:hover {
color: #713535;
font-size: 120%;
}

h1{
  color: #fff;
}

#wrapper{
  width: 55em;
  background-color: #2c1915;
  border: solid 2px #000;
/* Set right and left to auto for centering */
   margin: 0 auto 0 auto;
  /* Required for absolutely-positioned layout only */
  position:relative;
}

/* Make branding a positioned element, but don't move it */
#branding{
  position:relative;
} 

/* Absolutely position links in the branding division */
#branding a{
  position:absolute;
}


#branding h1{
  font-family: gothic, serif;
  font-size:2em;
  padding-top:0.25em;
  color: #fff;
}

/* Unvisited and visited links in branding bar */
#branding a:link, #branding a:visited {
  color:#fff;
}

/* Hover links in branding bar */
#branding a:hover{
  color:#0f0;
}

/* Active link in branding bar */
#branding a:active{
  color:#1bb498;
}

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

/************* Navbar division styles ****************/

/* Navbar division */
#navbar{
  background:#aaa url(images/navbak.jpg) repeat-x center;
  height:1.6em;
  /* For absolutely-positioned navbar */
  position:absolute;
  top:13.5em; /* Same as branding div height */
  left:17em; /* Same as leftcolumn width */
  width:38em; /* 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: Arial, Helvetica, Sans-Serif;
  font-size:80%;
  font-style: strong;
  color:#fff;
  background:#aaa url(images/navbak.jpg) repeat-x center;
  display:block;
  height:2em;
  width:9em;
  border-right:solid 1px #2c1915;
  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(images/navhover.jpg) repeat-x center;
  color:#fff;
}

/* 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:#43241d; /* Removes background image */
  color:#fff;
  text-align:left;
  display:block;
  width:12em;
  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: #2c1915; 
  color:#fff;
}

/* 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;
}

/************* Leftcolumn division styles ****************/

#leftcolumn{
  /* Remember, content and navbar left 
  margins must match this width */
  width:17em;
  float:left;
  padding:1em 0;
  /* Center images and text inside this div */
  text-align:center;
  /* For absolutely-positioned leftcolumn */
  position:absolute;
  top:13.5em; /* Same as branding div height */
  left:0;
}

/* Applies to images in the leftcolumn div */
#leftcolumn img{
  width:80%;
  border:solid 1px #000;
}

/* Applies to paragraphs in the leftcolumn division */
#leftcolumn p{
  border:solid 1px #000;
  padding:0.5em;
  width:14em;
  font-size:0.8em;
  margin:1em auto;



}

/************* Content division styles ****************/

#content{
/* Left margin must match leftcolumn width */
  margin-left:17em;
  text-align:center;
  background-color:#000;
  border: solid 2px #2c1915;
  color:#fff;
  padding:2em 10px 10px 20px;
}

/* Styles h1, h2, and h3 style rules in the content division */
#content h1, #content h2, #content h3{
  font-family: gothic, serif;
  color:#000;
  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;
  color: #fff;
}

/* Size h2 headings in the content division */
#content h2{
  font-size:1.5em;
  color: #fff;
}
/* Size h3 headings in the content division */
#content h3{
  font-size:1.25em;
  font-style:normal;
  color: #fff;
}

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

#content p{
  line-height:1em;
  font-size:0.8em;
  font-style:italic;
}

/************* Footer division styles ****************/

#footer{
  padding:0 0.5em;
  /* Center images and text inside this div */
  text-align:center;
  background-color:#000;
  font-size:0.6em;

/***************Links*******************/

a{ 
color:# 6d3534;
}
