/*!
 * Stitches - HTML5 Sprite Generator
 * http://draeton.github.com/stitches
 *
 * Sprite Module
 *
 * Copyright 2013 Matthew Cobbs
 * Licensed under the MIT license.
 */

.stitches-sprite {
    display: none;
    z-index: 0;
    position: absolute;
    cursor: pointer;
}

.stitches-sprite.placed {
    display: block;
}

.stitches-sprite:hover {
    z-index: 1;
    background-color: #e5e5e5;
    background-image: url(../img/stripes90.gif);
}

.stitches-sprite:hover img {
    opacity: 0.7;
}

.stitches-sprite.active {
    z-index: 2;
}

.stitches-sprite.active img {
    outline: 2px solid #3a87ad;
}