/*
 * CSS required for the flickr captcha class
 *
 * filename: flickr.captcha.css
 * @author Joel heenan 13/12/2008
 *
 * This file is part of Flickr-CAPTCHA
 * 
 * Flickr-CAPTCHA is free software: you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation, either version 3 of the License, or
 * (at your option) any later version.
 *
 * Flickr-CAPTCHA is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with Flickr-CAPTCHA.  If not, see <http://www.gnu.org/licenses/>.
 */

/* A picture */
div.fc_Picture {
    float: left;
    margin: 5px;
    border: 1px solid #000000;
    width: 50px;
}

/* A picture with a border */
div.fc_border {
    float: left;
    margin: 5px;
    border: 1px solid red;
}

/* A selected picture */
div.fc_selected {
    float: left;
    margin: 5px;
    border: 3px solid red;
}

/* The preview box */
div.fc_Windowbox {
    margin-left: 30px;
    margin-top: 10px;
    height: 230px;
}

/* The captcha box */
div.fc_Mainbox {
    margin-left: 30px;
    width: 350px;
    border: 1px dashed blue;
}

/* loading image */
div.fc_loader {
    background: url('/images/spinner.gif') no-repeat center center;
    width: 50px;
    height: 50px;
}

img.fc_previewImage {
    margin-left: 30px;
    margin-top: 10px;
    border: 1px solid #000000;
}

/* The text showing the tag we are hunting for */
span.fc_Keytag {
    font-weight: bold;
}

span.fc_disclaimer {
    font-size: x-small;
}

/* Better scaling of images in IE */
img { -ms-interpolation-mode:bicubic; }
