/* ====== BEATLES.CSS ====== */
/* Alan Colquhoun, MDIA 3201 */
/* Last Update: Feb 1, 2012  */
/* ========================= */

body {
  margin: 0;
  padding-top: 30px;
  padding-bottom: 30px;
  text-align: center; /* you need this to center your page in IE6 */
  color: #000; background: url(images/bg_tile.png);
  font-family: verdana, arial, geneva, sans-serif;
  font-size: 80%; /* default setting */
} 

#splashmap
{
	margin: 20px 50px 20px 50px;
}
img { /* this will add a border and some padding to all your images on the page */
  border: 1px solid #ccc;
  padding: 4px;
}  

/* general link formatting */

a:link {
  color: #0000ff; background: #fff;
  font-weight: bold;
  text-decoration: none;
}

a:visited {
  color: #808; background: #fff;
  font-weight: bold;	
  text-decoration: none;
}

a:active {
  color: #808000; background: #fff;
  font-weight: bold;	
  text-decoration: none;
}

a:hover {
  color: #ff0000; background: #fff;
  font-weight: bold;
  text-decoration: underline;
}

#wrapper {
  width: 850px;
  margin: 0 auto; /* this will center your page in all other browsers ie)firefox & IE7 */
  text-align: left;
  color: #000; background: #fff; 
}

#header {
  margin: 0;
  padding: 0;
  color: #000; background: transparent url("images/banner.jpg") no-repeat;
  height: 180px; width: 850px;
  border-bottom: 4px solid #BBB897; 
}

/*main navigation - top menu */

#navcontainer {  
  float: left; /* need to add so background color will appear in all browsers - container is turned into a block element */
  margin:0;
  padding:0;
  width: 100%;
  background: #4d4750; color: #fff;
  border-bottom: 1px solid #B8B5BA;
}  

#navcontainer ul {
  margin: 0;
  padding-left: 102px; /* adjust to where you want the menu to start */
  list-style-type: none;                           
}

#navcontainer ul li { 
  display: inline; 
}

#navcontainer ul li a {
  float: left; /* turns the links into "block boxes" -- fixes the problem of vertical padding not being added to "inline" elements - make sure this gets cleared in the sidebar div */
  padding: 8px 32px;
  margin-right: 1px;
  color: #fff; background: #4d4753;
  text-decoration: none;
  border-right: 1px solid #B8B5BA;
  font-weight: bold;
}

#navcontainer ul li a:hover {
  color: #000; background: #ff5d5d;
  text-decoration: underline;
}

#navcontainer li a#current {
  color: #fff; background: #a20000;
  text-decoration: underline;
}

#navcontainer ul li a.first {
  border-left: 1px solid #B8B5BA; /* adds left border to first item in the menu */
} 

#sidebar {
  clear: both; /* clear float in navigation above */
  width: 250px; height: 810px;
  float: left;
  color: #000; background: #fff;
  border-right: 1px solid #F0E2C7;
  border-bottom: 1px solid #F0E2C7; 
}

#sidebar p {
  padding-top: 15px;
  padding-left: 20px;
  padding-right: 15px;
}

#sidebar li {
  line-height: 140%;
  color: #000; background: #fff;
  margin-bottom: 4px;
} 

img.floatleft { 
  float: left; 
  margin-top: 10px;
  margin-left: 17px;  
  border: 1px solid #000;
}

#content {
  width: 563px;
  float: right;
  padding-right: 10px;
}

#content h2 {
  margin-top: 25px;
  font-size: 140%;
} 

#content p {
  padding: 10px 15px 0 0;
}
 
#fame {
  margin: 20px 20px 10px 0;
  padding: 10px;
  border: 1px solid red;
} 

#boldtxt {
   font-weight: bold;
}

#footer {
  clear: both;
  padding: 0;
  margin:0;
  height: 65px;
  color: #000; background: #BBB897;
}  

#footer p {
  margin: 0;
  padding-top: 18px;
  font-weight: bold;
  line-height: 240%;
  text-align: center;
}  
