
/**
 * 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 li {
  width: 200px !important;
  background-color: #ffffff !important;
  border: 1px solid #dedede !important;
  -moz-border-radius: 2px;
  -webkit-border-radius: 2px;
  border-radius: 2px !important;
  display: none; /** Hide items initially to avoid a flicker effect **/
  cursor: pointer !important;
  padding: 4px !important;
  float:left;
  margin:10px;
  height:125px;
}


.wookmark-placeholder {
  -moz-border-radius: 2px;
  -webkit-border-radius: 2px;
  border-radius: 2px;
  background-color: #eee;
  border: 1px solid #dedede;
}

#tiles li img {
  display: block !important;
  height:125px;
 width:200px;
}

/**
 * Grid item text
 */
#tiles li p {
  color: #666;
  font-size: 12px;
  margin: 7px 0 7px 7px;
  overflow:hidden;
}

/**
 * Some extra styles to randomize heights of grid items.
 */
#tiles ali:nth-child(3n) {
  height: 175px;
}

#tiles ali:nth-child(4n-3) {
  padding-bottom: 30px;
}

#tiles ali:nth-child(5n) {
  height: 250px;
}
#main {
  margin: 30px 0;
  position: relative;
}
/** General page styling **/

