/* set up the basics */
body { background: #B04C00; color: #EFEFEF; font-size: 100%; font-family: arial, verdana, sans-serif; }
/* make a fancy button */
.button { margin: -1em 0 0 -2.5em; border: 0.1em solid #000; padding: 0 1em; width: 5em; height: 2em; position: absolute; top: 50%; left: 50%;
	background: #FFD000; color: #FFEEDD; -moz-box-shadow: 1px 1px 1em rgba(0,0,0, 0.5); -webkit-box-shadow: 1px 1px 1em rgba(0,0,0, 0.5); box-shadow: 1px 1px 1em rgba(0,0,0, 0.5);
	font-size: 2em; line-height: 2em; font-family: Georgia,'trebuchet MS','times new roman',serif; font-weight: bold; font-style: italic; text-align: center; text-decoration: none;
	-moz-border-radius: 1em;
	-webkit-border-radius: 1em;
	border-radius: 1em;
	-moz-transition: all 0.3s ease-out;
	-o-transition: all 0.3s ease-out;
	-webkit-transition: all 0.3s ease-out;
	-ms-transition: all 0.3s ease-out;
	transition: all 0.3s ease-out;
}

.button:active {
	 -moz-transform: scale(0.9);
       -o-transform: scale(0.9);
  -webkit-transform: scale(0.9);
      -ms-transform: scale(0.9);
          transform: scale(0.9);
    -moz-box-shadow: 1px 1px 1px rgba(0,0,0, 0.5);
 -webkit-box-shadow: 1px 1px 1px rgba(0,0,0, 0.5);
	     box-shadow: 1px 1px 1px rgba(0,0,0, 0.5);

}
/* the lightbox title all prettied up */
.lightBox h1 { margin: 0; border-bottom: 0.1em solid #000; padding: 0 1em; color: #000; background: #FFD000; font-size: 2em; line-height: 2em; font-family: Georgia,'trebuchet MS','times new roman',serif; font-style: italic; text-align: right;
	-moz-background-clip: padding;
	-webkit-background-clip: padding-box;
	background-clip: padding-box;
	-moz-border-radius-topleft: 2em;
	-webkit-border-top-left-radius: 2em;
	border-top-left-radius: 2em;
}
.lightBoxContent { padding: 1em; }

/* the actual lightbox */
.lightBox {
	margin: -15% 0 0 -25%;
	width: 50%;
	min-height: 30%;
	position: fixed;
	top: 50%; left: 200%;
	z-index: 100;
	background: #FFF;
	color: #000;
	-moz-background-clip: padding;
	-webkit-background-clip: padding-box;
	background-clip: padding-box;
	-moz-border-radius-topleft: 4em;
	-webkit-border-top-left-radius: 4em;
	border-top-left-radius: 4em;
	-moz-box-shadow: 1em 1em 1em rgba(0,0,0, 0.7);
	-webkit-box-shadow: 1em 1em 1em rgba(0,0,0, 0.7);
	box-shadow: 1em 1em 1em rgba(0,0,0, 0.7);
	-moz-transition: all 0.6s ease-out;
	-o-transition: all 0.6s ease-out;
	-webkit-transition: all 0.6s ease-out;
	-ms-transition: all 0.6s ease-out;
	transition: all 0.3s ease-out;
}
/* the overlay, hidden for now */
.lightBoxOverlay {
	position: fixed;
	top: 0; right: 0; bottom: 0; left: 0;
	z-index: -1;
	color: rgba(0,0,0, 0);
	background: rgba(0,0,0, 0);
	-moz-transition: all 0.9s ease-out;
	-o-transition: all 0.9s ease-out;
	-webkit-transition: all 0.9s ease-out;
	-ms-transition: all 0.9s ease-out;
	transition: all 0.9s ease-out;
	-moz-pointer-events: none;
	-webkit-pointer-events: none;
	pointer-events: none;
}


/* here is where the magic happens: */
#lightBox:target .lightBox {
	left: 50%;
	-moz-box-shadow: 1px 1px 5px rgba(0,0,0, 0.7);
	-webkit-box-shadow: 1px 1px 5px rgba(0,0,0, 0.7);
	box-shadow: 1px 1px 10px 5px rgba(0,0,0, 0.7);
}
#lightBox:target .lightBoxOverlay {
	z-index: 90;
	background: rgba(0,0,0, 0.5);
	-moz-pointer-events: auto;
	-webkit-pointer-events: auto;
	pointer-events: auto;
}

#close:target .lightBox {
	top: -200%;
	left: 50%;
}
#hide:target .lightBox {
	top: 50%;
	left: -200%;
}