/* Generic Selectors */
 
body {
   
   background-color: rgb(0,0,0); 
   height: 100%;
   margin: 0;
   padding: 0; 
   text-align: center;
}

a:link {
  color: rgb(255,243,0);
  text-decoration: none; }
a:visited {
  color: rgb(255,243,0);
  text-decoration: none;
}
a:hover {
  color: rgb(255,243,0);
  text-decoration: underline;
}
 

/**************** Pseudo classes ****************/


img#bg {
position:fixed;
top:0;
left:0;
width:100%;
height:100%;
}

/********* Menu Stuff *********/

ul.navbar {
  list-style-type: none;
  padding: 0;
  margin: 0;
  top: 2em;
  left: 1em;
  width: 185px;
  font-weight: bold;
  font-size: 15px 
}
ul.navbar li {
  background: rgb(255,255,255);
  margin: 4px 0;
  padding: 0.3em;
  border-right: 1em solid rgb(239, 63, 52);
  border-top: 2px solid rgb(239,63,52);
  border-bottom: 2px solid rgb(239,63,52);
}
ul.navbar a {
  text-decoration: none 
}


a.navbar:hover {
  background-color: rgb(255,243,0);
}
a.navbar:link {
  color: rgb(0,84,166);
  text-decoration: none;
}
a.navbar:visited {
  color: rgb(0,84,166);
  text-decoration: none;
}


/************************* DIV ID's *************************/


 
#container {
   width: 900px;
   margin-left: auto;
   margin-right: auto;
   text-align: left;
}


#sidebar {
   position: absolute;
   width: 210px;
   margin-top: 10px;
   border-right: 0px;
   font-weight: normal;
   color: white;
   background-color: rgb(0,84,166);
   z-index:1;
}
   
 
#heading {
   position: absolute;
   padding: 5px 10px 5px 10px; /*top right bottom left*/
   margin-top: 10px;
   margin-left: 215px;
   width: 515px;
   height: 210px;
   background-color: rgb(255,243,0);
   text-align: center;
   z-index:1;
}


#topright {
   position: absolute;
   width: 150px;
   height: 220px;
   margin: 10px 0 0 755px;
   color: white;
   background-color: rgb(0,84,166);
   text-align: right;
   z-index:1;
}

#mainpage {
   position: absolute;
   top: 250px;
   width: 630px;
   margin-left: 220px;
   font-weight: bold;
   color: rgb(239, 63, 52);
   z-index:1;
}

