@charset "TIS-620";
/* CSS Document */
/*Mater style sheet for Global*/
/*Imported style sheets*/
@import url("default.css");
@import url("txt.css");
@import url("form.css");
@import url("decorate.css");

.panel {
   display: none;
   width: 300px;
   text-align:left;
 }
 .defaultPanel {
  display: block;
 }
 
/*onmouse over images*/
.thumbnail{
position:relative;
z-index: 0;
}

.thumbnail:hover{
background-color: transparent;
z-index: 0;
}

.thumbnail span{ /*CSS for enlarged image*/
width:100px;
position:absolute;
BACKGROUND-COLOR: #000;FILTER: alpha(opacity=70); moz-opacity: .70; opacity: .70;
padding: 5px;
left: -1700px;
border: 3px solid gray;
visibility: hidden;
color: white;
text-decoration: none;
}

.thumbnail span img{ /*CSS for enlarged image*/
border-width: 0;
padding: 2px;
}

.thumbnail:hover span{ /*CSS for enlarged image on hover*/
visibility: visible;
top: -25px;
left: -25px; /*position where enlarged image should offset horizontally */
}