/* IMAGE GALLERY CSS */

div#myGallery { margin: 10px 25px 0 5px; }
h1#gallery { 
  text-align: center; font-size: 28px; 
}

div.imageElement {
border: 1px solid #333;
  background: #D9D0B6; 
  margin: 10px 10px; 
  text-align: center; 
  -moz-border-radius-bottomleft: 9px;
  -moz-border-radius-bottomright: 9px;
  -webkit-border-bottom-left-radius: 9px;
  -webkit-border-bottom-right-radius: 9px;
} 

div.imageElement img { 
  padding: 10px; 
  margin: 5px;
  background: #eee; 
  border: 1px solid #bbb; 
  border-bottom: 2px solid #999;
  border-right: 2px solid #999;
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
}

div.menu-item { clear: both; }

