#darkenBackground
{
background: rgba(100, 100, 100, .4);
z-index: 100;
height: 100%;
width: 100%;
background-repeat: repeat;
position: fixed;
top: 0px;
left: 0px;
display: none;
}

#lightbox
{
padding: 25px;
position: absolute;
/*background: -webkit-gradient( linear, 0% 0%, 0% 60%, from(#e3e3e3), to(#7a7a7a) );*/
background: -moz-linear-gradient( #e3e3e3, #7a7a7a );										/* FF 3.6+ */
background: -webkit-linear-gradient( #e3e3e3, #7a7a7a );									/* Safari 5.1+, Chrome 10+ */
background: -webkit-gradient( linear, left top, left bottom, from(#e3e3e3), to(#7a7a7a));	/* Safari 4+, Chrome 2+ */
background: -ms-linear-gradient( #e3e3e3, #7a7a7a );										/* IE 10+ */
background: -o-linear-gradient( #e3e3e3, #7a7a7a );											/* Opera 11.10+ */
background: linear-gradient( #e3e3e3, #7a7a7a );											/* the standard */

display: none;
border: 1px solid black;
width: 550px;
height: 150px;
top: 50%;
left: 50%;
z-index: 200;
margin: -150px auto auto -300px;    /* Last parameter should be -275 */

-moz-border-radius: 40px;           /* Firefox */
-webkit-border-radius: 40px;        /* Safari and chrome */
-khtml-border-radius: 40px;         /* Linux browsers */
border-radius: 40px;                /* CSS3 */
}

#lightbox p
{
font: 25px 'futura';
color:#383838;
}

.closeButton
{
right: 15px;
top: 15px;
position: absolute;
width: 25px;
height: 25px;
}