body {
  font-size: 16px;
  font-size: 75%;
  font-family: helvetica, sans-serif;
  color: #333;
  background-color: #ccc;
  margin: 0;
  padding: 0;
}

#header {
  margin: 0;
  width: 100%;
  padding: 4px 24px;
  background-color: #666;
  border-bottom: 1px solid #333;
  box-shadow: 4px 6px 5px #aaa;
  -moz-box-shadow: 4px 6px 5px #aaa;
  -webkit-box-shadow: 4px 6px 5px #aaa;
}

h1 {
  margin: 0;
  font-family: 'century gothic';
  font-weight: bold;
  font-size: 24px;
  text-transform: uppercase;
  letter-spacing: 6px;
  color: #eee;
}

div.box {
  width: 400px;
  height: 300px;
  float: left;
  border: 1px solid #333;
  padding: 0;
  margin: 24px 12px;
  overflow: hidden;
  position: relative;
}

div#box1  img {
  width: 400px;
  height: 300px;
  position: relative;
  top: 0;
  left: 0
}

div#box2 img {
  position: relative;
  top: 0;
  left: 0
}

div#magnifier {
  z-index: 99;
  margin: 0;
  padding: 0;
  display: block;
  position: absolute;
  top: 2px;
  left: 2px;
  width: 100px;
  height: 75px;
  min-width: 100px;
  min-height: 75px;
  border: 1px solid #f00;
  outline: 1px solid #ff0;
  background: none; /* the fallback if no rgba */
  background: rgba(200, 200, 200, 0.3);
}

div.clear {
  display: block;
  width: 100%;
  clear: both;
  }
  
#chooser {
   position: absolute;
   left: 200px;
   top: 8px;
   background-color: #444;
   margin: 0;
   padding: 0;
   color: #eee;
   cursor: pointer;
   border: 1px solid #eee;
   border-radius: 8px; 	
   -moz-border-radius: 8px; 
   -webkit-border-radius: 8px; 
   } 
   
#chooser span {
   margin: 2px 10px;
   padding: 2px 0;
   font-size: 16px;
   font-weight: bold;
   font-family: 'century gothic';
   letter-spacing: 2px;
}
   
ul#chooser li {
  list-style: none;
  background-color: #666;
  font-size: 14px;
  margin: 1px;
  padding: 5px 10px;
  display: none;
}

ul#chooser li:hover  {
  background-color: #888;
}


