/* layoutstyles.css */

/* Universal style rule */
*{
  margin: 0;
  padding: 0;
  /* Temporary borders */
  /* border: dashed 1px #f00; */
}

body {
	font-family: Arial, Helvetica, sans-serif;
	background-image: url(images/charchol_bg.jpg);
}

#wrapper{
	width: 45em;
	background-color: #DCA087;
	/* Put 20px margin above the wrapper */
  /* Set right and left to auto for centering */
  margin: 20px auto;
}

/********** Major layout divisions **********/

#branding{
	height:12em;
	background-color:#FFFFFF;
	color:#000000;
	text-align:center;
}
	/* Fixes the mysterious image gap */
#branding img{
  display:block;
  margin-left: auto;
  margin-right: auto;
} 

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

#branding a:hover{
  color:#0f0;
}
#branding a:active{
  color:#1bb498;
}

#leftcolumn{
  /* Remember, content and navbar left margin must match this width */
  width:12em;
  float:left;
  /* Center images and text in this column */
    text-align:center;
}
#leftcolumn img{
	width:90%;
	border:medium solid #7e97a6;
}
#leftcolumn a{
    color:#000000;
	text-decoration:none;
	outline:none;
	font-weight:bold;
}
#leftcolumn a:hover{
    color:#000000;
	text-decoration:underline;
}
#leftcolumn p{
    width:80%;
    padding:.25em;
    border:thin solid #7e97a6;
    font-family: Tahoma, Verdana, Sans-Serif;
	font-size:0.8em;
	margin:2em auto;
    }
#navbar{
  /* Navbar division */
  background-color:#aaa;
  /* Left margin must match leftcolumn width */
  margin-left:12em;
  height:1.6em;
  }
  /* Remove bullets from ul in the navbar */
#navbar ul{
  list-style-type:none;
}
/* List items in the navbar */
#navbar li{
  float:left;
}
/* 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-color:#aaa;
	display:block;
	height:2em;
	width:5.6em;
	border-right:solid 1px #ddd;
	text-align:center;
    line-height:2em;
	outline-style:none;
}
/* Navbar hover and active links */
#navbar a:hover,
#navbar a:active,
#navbar li.selected a:link,
#navbar li.selected a:visited{
	background-color:#333333;
	color:#fff;
}
#content{
  /* Left margin must match leftcolumn width */
  margin-left:12em;
  background-color:#fff;
  color:#000;
  padding:10px 20px;
}

/* Applies to paragraphs in the content division */
#content p{
  line-height:1.5em;
  margin-bottom:1.5em;
}
#content img{
	padding:0.25em;
	border:thin solid #7e97a6;
	margin: .25em;
}
/* Applies to all lists in the content division */
#content ul, #content ol{
  padding:10px 0 0 40px;
}

/* Applies to all list items in the content division */
#content li{
  margin-bottom:10px;
}
#content a{
    color:#000000;
	text-decoration:none;
	outline:none;
	font-weight:bold;
}
#content a:hover{
    color:#000000;
	text-decoration:underline;
}

/* Styles h1, h2, and h3 style rules in the content division */
#content h1, #content h2, #content h3{
  font-family: Charcoal, Impact, sans-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;
}

/* Size h2 headings in the content division */
#content h2{
  font-size:1.5em;
}
/* Size h3 headings in the content division */
#content h3{
  font-size:1.25em;
  font-style:normal;
}
#content h4{
font-style:italic;
font-weight:bold;
}

#footer{
	text-align: center;
	padding: 1em;
}
#footer h2{font-size:.75em;
}
#footer a{
    color:#000000;
	text-decoration:none;
}
#footer a:hover{
    color:#000000;
	text-decoration:underline;
}
