/* ©2008 MagicToolbox.com. To use this code on your own site, visit http://www.magictoolbox.com */

/* CSS class for thumbnail link  */
.MagicThumb {
	z-index: 200;
	border-width: 0;
	cursor: pointer;
	outline: solid 0 white;
	width: 154px;
}

/* CSS class for the thumbnail link when the big image is zoomed */
.MagicThumb-zoomed {
	z-index: 200;
	cursor: default;
}

/* CSS class for span inside the thumbnail*/
.MagicThumb span {
	outline-color: #FFFFFF;
	outline-style: dotted;
	display: none;
}

/* CSS class for the thumbnail image */
.MagicThumb img {
	border: solid 0 #fff;
	outline: solid medium white;
	width: 154px;
}

/* CSS class for the big image while zooming */
.MagicThumb-image { z-index: 200; border-color: #009ee0; border-style: none; outline-color: #009ee0; }

/* CSS class for the zoomed big image */
.MagicThumb-image-zoomed {
	z-index: 1000;
	cursor: pointer;
	border: solid 2px #999;
	-webkit-box-shadow: 2px 2px 5px #aaa
}

/* CSS class for the caption under the big zoomed image */
.MagicThumb-caption {
    color: #333333;
    background-color: #F0F0F0;
    border: 2px solid #F0F0F0;
    border-top: none;
    font-family: Verdana, Helvetica;
    font-size: 11px;
    padding: 8px 16px;
}

/* CSS class for the control bar */
.MagicThumb-controlbar {
	display: block;
	height: 20px;
	margin-top: 2px;
	margin-right: 5px;
	}

.MagicThumb-controlbar a {
	display: block;
	width: 18px;
	height: 20px;
	margin: 0px 1px;
	outline: none;
	float: left;
	overflow: hidden;
	margin-top: 2px;
	margin-right: 5px;
	}

.MagicThumb-controlbar a span {
	display: block;
	width: 1000px;
	height: 1000px;
	outline: none;
	position: absolute;
	left: 0;
	top: 0;
	background-image: url(../images/all/controlbar.png);
	background-repeat: no-repeat;
	margin-top: 2px;
	margin-right: 5px;
}

