


/** General page styling **/
html {
  background-color: #e5e5e5;
  font-family: "Helvetica Neue Light", "Helvetica Neue", Arial, sans-serif;
}

#main {
  margin: 30px 0;
  padding-top: 2.6em;
  position: relative;
}


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

/**
 * Grid items
 */

#tiles li {
  width: 236px;
  background-color: #ffffff;
  /*border: 1px solid #dedede;
          border-radius: 2px;
     -moz-border-radius: 2px;
  -webkit-border-radius: 2px;*/
  border-radius: 2px;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;


  box-shadow: 0 1px 1px 0 #c2bdb7;
  -moz-box-shadow: 0 1px 1px 0 #c2bdb7;
  -webkit-box-shadow: 0 1px 1px 0 #c2bdb7;

  display: none; /** Hide items initially to avoid a flicker effect **/
  /*cursor: pointer;*/
  padding: 0;
}

#tiles li .tag {
  font-size: 0.8em;
  margin: 0 0.3em;
  z-index: 20;
}

/*
#tiles li hover{
  
}

#tiles li.inactive {
  visibility: hidden;
  opacity: 0;
}
*/
#tiles li img {
  display: block;
  overflow: hidden;
  border-radius: 2px 2px 0 0;
  -webkit-border-radius: 2px 2px 0 0;
  -moz-border-radius: 2px 2px 0 0;
  border-bottom: 3px solid #6cb9d0;
}

#tiles li img:hover {
  opacity: .7;
}

/**
 * Grid item text
 */

.tiletext {
  padding: 0 8px 8px 8px;
}

#main h2 {
  font-size: 1em;
  margin-top: 0.8em;
}

#main h2 a {
  color:#6cb9d0;
  font-size: 0.8em;
  font-family: 'Lato', sans-serif;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 1px;
}

#main h2 a:hover {
  color:#D3C991;
}

#main h3 {
  font-size: 1em;
  margin: 0.4em 0;
}

#main h3 a {
  color: #514849;
  font-size: 1.1em;
  font-family: "museo-slab", serif;
  font-weight: 500;
}

#main h3 a:hover {
  color:#D3C991;
}

.btn {
  margin-right: auto;
  margin-left: auto;
}

footer {
  text-align: center;

}

footer a {
  color: #435DC5;
  text-decoration: none;
}

/**
 * Progress bar for imagesLoaded
 */
.progress-bar {
  background-color: #0BC20B;
  height: 2px;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 0;
  box-shadow: 0 1px 3px rgba(11, 194, 11, 0.2);
  -webkit-transition: width 0.3s ease-out;
     -moz-transition: width 0.3s ease-out;
       -o-transition: width 0.3s ease-out;
          transition: width 0.3s ease-out;
}

/**
 * Placerholder css
 */
.wookmark-placeholder {
          border-radius: 2px;
     -moz-border-radius: 2px;
  -webkit-border-radius: 2px;
  background-color: #eee;
  border: 1px solid #dedede;
  z-index: -1;
}

.example-tiles {
  position: relative; /** Needed to ensure items are laid out relative to this container **/
  margin: 0;
  padding: 0;
}

.example-tiles li {
  display: block;
  list-style-type: none;
  float: left;
  margin: 5px;
  -webkit-transition: all 0.3s ease-out;
     -moz-transition: all 0.3s ease-out;
       -o-transition: all 0.3s ease-out;
          transition: all 0.3s ease-out;
}

.example-tiles a,
.example-tiles a:hover {
  color: #555;
  background-color: #eee;
  text-align: center;
  display: table-cell;
  vertical-align: middle;
  width: 200px;
  height: 200px;
  font-size: 2em;
  font-weight: bold;
  text-decoration: none;
  border: 1px solid #ddd;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
  padding: 5px 8px;
  border-radius: 3px;
}

.example-tiles a:hover {
  background-color: #ddd;
}

/*******************************/


