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

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



/*==============================================================================
 * FONT TYPE
 */

body {
  font-family: Sans-serif;
}


/*==============================================================================
 * LAYOUT
 */

body {
  margin: 0px;
  padding: 0px;
}

#page {
  min-width: 800px;
  width: 60em;
  margin: 0px auto;
  border-width: 0px 2px 2px 2px;
}

#right {
  float: right;
  clear: right;
}


/*==============================================================================
 * COLOR/PATTERN
 */

body {
  background-color: #d8d0c0;
}

#page {
  border-style: solid;
  border-color: black;
  color: #696969;
  background-color: white;
}









/*==============================================================================
 * UNCATEGORIZED
 */

#left {
  /*position: fixed;*/
  float: left;
  /*min-width: 20%;*/
  border-top: 2px solid black;
  border-right: 1px solid black;
  border-left: 2px solid black;
  border-bottom: 2px solid black;
  margin-left: -2px;
  margin-top: -20px;
  width: 12em;
}

#music-control {
  background-color: #cd1025;
  height: 18px;
}

#menu-problem-instructions {
  display: block;
  font-size: 0.8em;
  margin-top: 1em;
}

#menu {
  font-family: Sans-Serif;
  background-color: #fbd015;
  padding-left: 1em;
  padding-right: 1em;
  font-size: 0.8em;
  text-align: center;
}

#menu-head, #menu-tail {
  background-image: url('menu-star.png');
  background-position: center;
  background-repeat: no-repeat;
  height: 30px;
}
  

.sub-menu
{
  margin-top: 0px;
  padding-top: 0px;
  padding-bottom: 0em;
  padding-right: 0px;
  padding-left: 10%;
  border-top: 1px solid grey;
  border-bottom: 1px solid grey;
  
  /*
   * I did not like the mouse-over menu reveal effect, so I changed the display
   * property of sub menus to 'block'.  To have the revealing or toggling
   * effect back, change this back to 'none'.
   */
  display: block;
  
  text-align: left;
  list-style-type: square;
  list-style-position: outside;
}

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

#middle
{
  text-align: left;
}

hr {
  clear: both;
}

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

a:hover {
  text-decoration: underline;
}

.super-a {
  font-weight: bold;
  display: block;
  margin-top: 2em;
}

#content {
  margin-left: 14em;
  margin-right: 4em;
  margin-top: 2em;
  margin-bottom: 2em;
  border-width: 0px 2px;
  border-style: solid;
  border-color: gray;
  padding: 4px 0px;
  min-height: 100%;
}

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

#content img {
  display: block;
  margin: auto;
  text-align: center;  // for explorer
}

#content h3 {
  font-size: 0.8em;
  padding: 0.3em 1em;  
  line-height: 1.5em
  font-weight: bold;
  color: white;
  background-color: gray;
}

#content p {
  padding: 0em 1em;  
  line-height: 1.5em
}

#content h1 {
  text-align: center;
  font-size: 2em;
  font-weight: bold;
  margin: 0px;
  padding: none;
  color: black;
}

.section-links {
  text-align: center;
  margin-top: none;
  margin-bottom: 3em;
  padding: none;
  font-size: 0.8em;
}

.section-links a {
  color: #006a3e;
}

#content h2 {
  clear: right;
  width: 100%;
  font-size: 1em;
  font-weight: bold;
  margin: 0em -1em;
  padding: 0em 1em;
  color: black;
  border-width: 2px 0px;
  border-style: solid;
/*  border-top-color: #cd1025;
  background-color: #fbd015;
  border-bottom-color: #006a3e;*/
  border-color: gray;
  background-color: white;
}

#menu-star-top {
  width: 30px;
  text-align: center; 
  padding-top: 1em; 
  margin-bottom: 2em;
  margin-left: auto;
  margin-right: auto;
}

#menu-star-bottom {
  width: 30px;
  text-align: center; 
  padding-bottom: 1em; 
  margin-top: 2em;
  margin-left: auto;
  margin-right: auto;
}

.top-link {
  display: block;
  float: right;
  margin: 0px 0.5em 0.5em 0px;
  color: #cd1025;
  font-size: 0.8em;
}

.clear-footer {
  clear: both;
}

.footnote {
  clear: both;
}

@media print {
  #left {
    display: none;
    visibility: hidden;
    width: 0px;
    height: 0px;
  }
  
  * {
    float: none;
  }
}

