/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */

body {

background-image: url("theclouds.gif"); 

  background-color: #cceeff;
  color: #FFFFFF;
  font-family: courier new;
cursor: url("/cloudcursor.gif"), auto;
 
	line-height: 14px;  
	letter-spacing: 2px;
} 



.container {
  
  position: relative;
   text-align: center;
  margin: auto;
   background: rgba(255,255,255,0.70);
 /*  background-color: 	hsl(290, 100%, 97%); */
  border-radius: 3px;
  border: 1px solid #ffffff;
  top: 100%;
  width: 600px;
  height: 100%;
}

div.fixed {
  position: fixed;
  bottom: 0;
  right: 0;
}

/*tooltip hovers 
.tooltip {
  position: relative;
  display: inline-block;
  border-bottom: 0px dotted black;
}

.tooltip .tooltiptexttop {
  visibility: hidden;
  width: 120px;
  background-color: #fff9e6;
  color: #ffc180;
  text-align: center;
  border-radius: 6px;
  padding: 5px 0;
  position: absolute;
  z-index: 1;
  bottom: 100%;
  left: 50%;
  margin-left: -60px;
  line-height: 10px;  
	letter-spacing: 2px;
	font-size: 10px;
  
  /* Fade in tooltip - takes 1 second to go from 0% to 100% opac: 
  opacity: 0;
  transition: opacity 1s;
}

.tooltip .tooltiptextright {
  visibility: hidden;
  width: 120px;
  background-color: #fff9e6;
  color: #ffc180;
  text-align: center;
  border-radius: 6px;
  padding: 5px 0;
  position: absolute;
  z-index: 1;
  margin-left: -60px;
  line-height: 10px;  
	letter-spacing: 2px;
	font-size: 10px;
	
	  top: 20px;
  left: 260%; 
  
  /* Fade in tooltip - takes 1 second to go from 0% to 100% opac: 
  opacity: 0;
  transition: opacity 1s;
}

.tooltip .tooltiptextleft {
  visibility: hidden;
  width: 120px;
  background-color: #fff9e6;
  color: #ffc180;
  text-align: center;
  border-radius: 6px;
  padding: 5px 0;
  position: absolute;
  z-index: 1;
  margin-left: -60px;
  line-height: 10px;  
	letter-spacing: 2px;
	font-size: 10px;
	
  top: -7px;
  right: 45%; 
  
  /* Fade in tooltip - takes 1 second to go from 0% to 100% opac: 
  opacity: 0;
  transition: opacity 1s;
}

.tooltip .tooltiptextbottom {
  visibility: hidden;
  width: 120px;
  background-color: #fff9e6;
  color: #ffc180;
  text-align: center;
  border-radius: 6px;
  padding: 5px 0;
  position: absolute;
  z-index: 1;
 
  line-height: 10px;  
	letter-spacing: 2px;
	font-size: 10px;
	
  top: 100%;
  left: 50%;
  margin-left: -60px; 
  
  /* Fade in tooltip - takes 1 second to go from 0% to 100% opac: 
  opacity: 0;
  transition: opacity 1s;
}
.tooltip:hover .tooltiptexttop {
  visibility: visible;
  opacity: 1;
}
.tooltip:hover .tooltiptextright {
  visibility: visible;
  opacity: 1;
}
.tooltip:hover .tooltiptextleft {
  visibility: visible;
  opacity: 1;
}
.tooltip:hover .tooltiptextbottom {
  visibility: visible;
  opacity: 1;
}
*/
  /*make highligted text bg pink*/

  ::selection {
  background: #ffe6ff;
  }
  ::moz-selection {
  background: #ffe6ff;
  }


.center {
  position: absolute;
  left: 0;
  top: 50%;
  width: 100%;
  text-align: center;
  font-size: 18px;
  
  
}


h1 {
color: #FFFFFF;
  text-shadow: 0 0 3px #ffc2e0, 0 0 5px #FF00FF;
}

 /* unvisited link */
a:link {
  color: #ff3399;
  text-decoration: none;
   text-shadow: 0 0 3px #ffc2e0, 0 0 5px #FF00FF;
   cursor: url("/cloudcursor.gif"), auto;
}

/* visited link */
a:visited {
  color: #ff00a2;
  text-decoration: none;
  text-shadow: 0 0 3px #ffc2e0, 0 0 5px #FF00FF;
  cursor: url("/cloudcursor.gif"), auto;
}

/* mouse over link */
a:hover {
  color: #ff80ff;
  text-decoration: none;
  text-shadow: 0 0 3px #FFCCFF, 0 0 5px #FF00FF;
  cursor: url("/starcursor.gif"), auto;
}

/* selected link */
a:active {
  color: #ff3399;
  text-decoration: none;
  text-shadow: 0 0 3px #FF0000, 0 0 5px #FF00FF;
  cursor: url("/cloudcursor.gif"), auto;
} 