@charset "utf-8";
/* Removing the list bullets and indentation */
ul#gallery {
  padding:0; 
  margin:0; 
  width:576px; 
  height:432px; 
  position:relative;
  list-style-type:none;
  }

/* Adding the background image */
ul#gallery {
	padding:0;
	margin:0;
	width:576px;
	height:432px;
	position:relative;
	background-color: #333;
	background-image: url(../images/welcomestackorange.png);
  }
  /* Resize the images to 64px x 48px */
#gallery a img {
  position:relative;
  width:62px; 
  height:46px; 
  border:1px solid #888; 
  z-index:100;
  }
/* Default style for list items */
#gallery li {
  width:64px; 
  height:48px; 
  float:left; 
  z-index:100;
  }
/* Styling the left side of the display area */
#gallery li.lft {
  float:left; 
  clear:left;
  }
  /* Styling the right side of the display area */
#gallery li.rgt {
  float:right; 
  clear:right;
  }

/* Force the bottom row of images into place (IE only) */
#gallery li.pad {
  height:0; 
  display:block; 
  margin-top:-2px; 
  width:576px; 
  font-size:0;
  }

/* Getting rid of the image gaps */
#gallery a {
  position:relative; 
  width:64px; 
  height:48px; 
  display:block; 
  float:left; 
  z-index:100; 
  cursor:default;
  }
/* Resizing the link on hover */
/*slight padding increase for border effect*/
#gallery a:hover {
  width:438px; 
  height:326px; 
  padding:53px 69px; 
  position:absolute; 
  left:0; 
  top:0; 
  z-index:20;
  }

/* Resizing the thumbnail on hover */
#gallery a:hover img {
  background:#000; 
  position:relative; 
  width:438px; 
  height:326px; 
  border:0; 
  z-index:20;
  }
  
/* hack for Opera 7+ */
@media all and (min-width:0px){
#gallery a:hover {
  background:#888; 
  width:448px; 
  height:336px; 
  padding:48px 64px; 
  position:absolute; 
  left:0; 
  top:0; 
  z-index:10;
  }
#gallery a:hover img {
  background:#aaa; 
  position:relative; 
  width:448px; 
  height:336px; 
  border:0; 
  z-index:10;
  }
}
