/*
 * This script is writen by Michael Buckley.
 * Home page: http://codefisher.org/web_applications/hover_box

 * The code contained in these files are licensed under the
 * Attribution-ShareAlike 3.0 Unported. 

 * Furthermore;
 * You may not claim the works as your own.
 * You must provide a link back to codefisher.org when using on a website.
 * You may not redistribute these as a package as-is..
 * You must seek approval for commercial purposes, and for applications. 
 * 
 * Please don't remove this from this file.
 * if you want to contact me please use my contact page
 * http://codefisher.org/email 
 *
 * If you modify this script please give me credit for the original script.
 *
 * Linking back to me should you use this script is appreicated and required
 */

img.hoverimage {
 opacity:0.8;
 border:1px solid #e5e5e5;
 background:#fff;
 padding:1px;
 margin:3px;
 -moz-border-radius:0px !important;
}

img.hoverimage:hover {
 opacity:1;
 border:1px solid #bbb;
}

.hover-box img {
 opacity:1;
 display:block;
 border:1px solid #bbb;
 background:#fff;
 padding:1px;
}

.hover-box {
 text-align:center;
 position:absolute;
 font-size:0.65em;
}