/* -------- column container -------------------------- */

.colmask {
  position:relative;	/* This fixes the IE7 overflow hidden bug and stops the layout jumping out of place */
  clear:both;
  float:left; 
  width:100%;		/* width of portion of page allocated for use, can be less than all of width */
  overflow:hidden;	/* This chops off any overhanging divs */
  border-left:1px solid #878787;
  border-right:1px solid #878787;
  border-bottom:1px solid #878787;
}

/* ------- gallery images -------- */

div.gallery
  {
  margin:0 0 0 10px;
  }
div.img
  {
  margin:2px 5px 2px 5px;
  height:auto;
  width:auto;
  float:left;
  text-align:center;
  }
div.img img
  {
  display:inline;
  margin:2px 2px 0 2px;
  }
div.desc
  {
  text-align:center;
  font-size:0.8em;
  font-weight:normal;
  width:300px;
  height:60px;
  margin:0 2px 2px 2px;
  }
