@charset "utf-8";
/* CSS Document */

/*Feel free to learn from my CSS file but please don't blatently copy it ;-) */

/*Copyright 2011-2013 Dave Lambert - dave@dtek-services.com */

/*This lightbox code was actually borrowed and tweaked from 
Jim Nielsen (http://webdesign.tutsplus.com/articles/super-simple-lightbox-with-css-and-jquery--webdesign-3528)
on 2015-01-25 */

/* THIS IS FOR THE PICTURE ZOOMER THINGY ON "DREAM CARS" PAGE */

#lightbox p {
    text-align:right; 
    color:#fff; 
    margin-right:20px; 
    font-size:12px; 
}

#lightbox img {
    box-shadow:0 0 25px #111;
    -webkit-box-shadow:0 0 25px #111;
    -moz-box-shadow:0 0 25px #111;
    max-width:940px;
}

#lightbox {
    position:fixed; /* keeps the lightbox window in the current viewport */
    top:0; 
    left:0; 
    width:100%; 
    height:100%; 
    /*background:url(overlay.png) repeat; */
    background: rgba(0,0,0,.7);
    text-align:center;
}