
/**
 * Grid container
 */
#tiles {
list-style-type: none;
position: relative; /** Needed to ensure items are laid out relative to this container **/
margin: 0;
}

/**
 * Grid items
 */
#tiles .item {
background-color: transparent;
box-shadow: 1px 2px 3px rgba(0, 0, 0, .5);
padding-bottom: 2%;
/**display: none; YSW Hide items initially to avoid a flicker effect **/display: none;
/*cursor: pointer;*/
margin-right:7px;margin-bottom:7px;float:left;/* YSW */
}

#tiles .item img {
display: block;
}

/** Loader **/
  
/*#loader {
  height: 16px;
  text-align: center;
  padding: 25px 0 25px 0;
}
  
#loaderCircle {
  width: 16px;
  height: 16px;
margin: 0 auto;
  background-image: url('../images/loader.gif');
}*/