/* The Basic Stylesheet for Play Time;
/* This can get hacked up into multiple
/* style sheets later, but for now I prefer
/* to have everything in one. Also, I've
/* chosen to use spaces in each element to
/* help with readability. ~b /*


/* Resetting all basic styles, so that
/* there are a lot less cross-browser
/* display issues. */

* { margin: 0; padding: 0; }
h1, h2, h3, h4, h5, h6, form, body, html, p, input, ul, ol, li { margin: 0; padding: 0;}
ul, ol { list-style: none; }
a img, :visited img, :link img { border: none; }
:link, :visited { text-decoration: none; }
a { color: rgb(0,0,0); }

h1 { font: 20px Verdana, Arial, Helvetica, sans-serif; }

/* Actual Style Sheet */

html {
  font-family: Georgia, Times New Roman, serif;
  font-size: 80%;
  color: rgb(60,60,60);
}

.container { text-align: center; margin: 0 auto 0 auto; }

.newWrapper { 
 -moz-opacity:0.6;
 filter: alpha(opacity=60);
}

.newWrapper:hover, .newWrapper:active {
 -moz-opacity: 1.0;
 filter: alpha(opacity=100);
}

.wrapper { 
 -moz-opacity:0.6;
 filter: alpha(opacity=60);
 margin-top: 75px; 
}

.wrapper:hover, .wrapper:active {
 -moz-opacity: 1.0;
 filter: alpha(opacity=100);
}

.enter {
  text-transform: uppercase;
  font-size: 100%;
  letter-spacing: .5em;
  margin-top: 2em;
  color: rgb(0,0,0)
 }

.a:active, a:focus { outline: none; }

.otherWrapper { width: 100%; text-align: center; margin: 0 auto 0 130px; }


/*

style="-moz-opacity:0.5;filter:alpha(opacity=50);cursor:hand"
onmouseover="this.style.MozOpacity=1;this.filters.alpha.opacity=100"
onmouseout="this.style.MozOpacity=0.5;this.filters.alpha.opacity=50"