/*HTML/Body*/

html{
background: #666  no-repeat 100% 100% fixed;
background-position: center;
}

body{
background: transparent url("background.jpg") no-repeat 100% 100% fixed;
background-position: center;
height: 100%;
}

html,body{
color: #000;
font-family: verdana, tahoma, arial, helvetica, sans-serif;
padding: 0;
margin: 0;
}

/*Headings*/ 

/*Hyperlinks*/

a{
text-decoration: none;
}

a:hover{
text-decoration: underline;
}

/*Heading effects*/


/*Content*/

#content{
  width: 60%;
  min-width: 40ex;
  max-width: 80ex;
  background: #fff url("overlayBackground.jpg") no-repeat 100% 100% fixed;
  background-position: center;
  border: 3px double #000;
  margin: 25px;
  padding: 15px;
  margin-left:225px;
  margin-bottom:50px;
  text-align:justify; 
}


#oddcontent{
  width: 60%;
  min-width: 40ex;
  max-width: 80ex;
  background: #fff url("overlayBackground2.jpg") no-repeat 100% 100% fixed;
  background-position: center;
  border: 3px double #000;
  margin: 25px;
  padding: 15px;
  margin-left:225px;
  margin-bottom:50px;
  text-align:justify; 
}

/* title Block */
#header {
  text-align: center;
  color: #fff;
  background: #aaf;
  border: 3px double #000;
  margin: 10px;
  padding: 5px;
  
}

/* menus */

ul.nav,
.nav ul{
  /*Remove all spacings from the list items*/
  margin: 10px;
  margin-top: 25px;
  padding: 0;
  cursor: default;
  list-style-type: none;
  position: fixed;
}

ul.nav{
	width: 200px;
  /*Optional, to make the navigation bar positions on the left of the content*/
	float: left;
  /*margin-right: 1em;*/
}

ul.nav>li{
  margin: 0;
  padding: 2px 6px;
}

ul.nav li>ul{
  /*Make the sub list items invisible*/
  display: none;
  position: absolute;
  width: 20ex;
  left: 200px;
  margin-top: -1.4em;
  margin-left: 0;
}

ul.nav li:hover>ul{
  /*When hovered, make them appear*/
  display : block;
}

.nav ul li a{
  /*Make the hyperlinks as a block element, sort of a hover effect*/
  display: block;
  padding: 2px 10px;
}

/*** Menu styles (customizable) ***/

ul.nav,
.nav ul,
.nav ul li a{
  background-color: #fff;
  color: #369;
}

ul.nav li:hover,
.nav ul li a:hover{
  background-color: #369;
  color: #fff;
}

ul.nav li:active,
.nav ul li a:active{
  background-color: #036;
  color: #fff;
}

ul{
  border: 1px solid #000;
}

.nav a{
  text-decoration: none;
}


/*CSS Signature*/

body[id]:after {
  content: "Site signature: #" attr(id);
  display: block;
  text-align: right;
  margin-top: -2em;
  color: #fff;
  background-color: transparent;
  font-size: small;
  padding-right: 1em;
}