/* All pages should inherit from the global style sheet. */
@import url('global.css');

/* Splash pages, since they have a banner, should import the banner styles. */
@import url('banner.css');


body {
  padding: 1em;
}

#page {
  min-width: 800px;
  width: 60em;
  padding: 0px;
  margin: 0px auto;
  border-style: solid;
  border-color: black;
  border-width: 2px;
/*  min-height: 100%; */
  color: #696969;
  background-color: white;
}

.problems {
  margin: 0.5em auto;
  font-size: 0.8em; 
  text-align: right; 
  width: 75em;
  min-width: 800px;
  color: #696969;
}

#splash {
  margin: 0px;
  height: 300px;
  text-align: left;
}

/* 
 * Make the splash box's position relative so that its positioned children are
 * positioned relative to it.  Specifically, the 'info' div, which contains the 
 * introductory text, should be absolutely positioned right over top of the
 * splash box.  This is so that it will cover the 'flag' box.  The stripes of 
 * the flag box should seamlessly run into the stripes of the intro box's 
 * background image.
 */
#splash {  
  position: relative;
  left: 0px;
  top: 0px;
}

#flag {
  width: 50%;
  height: 300px;
  background-image: url('flag-bg-300-thin-strip.gif');
}

#logo {
  background-image: url('splash-bg-notitle.png');
  background-position: center;
  background-repeat: no-repeat;
  
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
}

#intro {
  position: absolute;
  left: 0px;
  top: 0px;
  text-align: center;
  
  margin-left: 50%;
  height: 100%;
  background-image: url('nkrumah-head-splash-bg.gif');
  background-position: 100% 0%;
  background-repeat: no-repeat;
}

#intro img {
  display: none;
  
}

#intro p {
/*  border-top: 2px solid black;*/
  padding-top: 10px;
  margin-top: 4em;
  margin-right: 211px;
  text-align: justify;
}

em {
  font-weight: bold;
  font-style: normal;
}

/*
 * The menu for the splash page lives directly below the splash box.
 */
/*
#imported-menu {
  display: inline;
}
*/
#menu {
  font-family: Sans-Serif;
  background-color: #fbd015;
  background-image: url('stripes.gif');
  padding: 1em 0px;
  font-size: 0.8em;
  text-align: center;
  border-top: 2px dashed black;
}

a {
  color: #000000;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
  font-style: italic;
}

#menu {
  position: relative;
}

.menu-box {
  display: block;
  float: left;
  width: 25%;
  margin-bottom: 1em;
}

.clearer {
  clear: both;
}

.super-a {
  color: #006a3e;
  display: inline;
  display: block;
  margin-top: 1em;
  margin-left: 1em;
  margin-right: 1em;
  font-size: 1.5em;
  font-weight: bold;
  height: 2.5em
}

.sub-menu
{
  margin-top: 0px;
  padding-top: 0px;
  padding-bottom: 0em;
  padding-right: 0px;
  padding-left: 10%;
  border-top: 1px solid grey;
  border-bottom: none;
  display: block;
  text-align: left;
  list-style-type: square;
  list-style-position: outside;
  height: 10em;
  margin-left: 2em;
  margin-right: 2em;
}

#copyright {
  background-color: #006a3e;
  height: 18px;
  bottom: 0px;
}

hr
{
  margin: 3em;
  clear: both;
}

