/** General page styling **/
body { font-family: "Lato", "Helvetica Neue", Arial, sans-serif; }



header p {
    color: #666666;
    font-size: 14px;
    font-weight: 200;
    margin: 0;
    text-align: center;
}

a { text-decoration: none; }

/**
 * Progress bar for imagesLoaded
 */

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

/**
 * Placerholder css
 */

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

/**
 * Grid container
 */

.tiles-wrap {
    display: none;
    list-style-type: none;
    margin: 10px 0;
    padding: 0;
    position: relative; /** Needed to ensure items are laid out relative to this container **/
}


/**
 * Grid items
 */

.tiles-wrap li {
    background-color: #fff;
    border: 1px solid #dedede;
    border-radius: 2px;
    box-shadow: 0 0 3px rgb(215, 215, 215);
    cursor: pointer;
    display: block;
    float: left;
    list-style-type: none;
    opacity: 0;
    padding: 4px;
    text-align: center;
    width: 200px;
}

.tiles-wrap.wookmark-initialised.animated li {
    -moz-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    -webkit-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}

.tiles-wrap.wookmark-initialised li { opacity: 1; }

.tiles-wrap li.wookmark-inactive {
    opacity: 0;
    visibility: hidden;
}

.tiles-wrap li:hover { background-color: #fafafa; }

.tiles-wrap img { display: block; }

.tiles-wrap a {
    color: #555;
    font-size: 2em;
    font-weight: bold;
    height: 200px;
    text-align: center;
    text-decoration: none;
    /* display: table-cell; */
    width: 200px;
}

.tile-loading:after {
    background-color: #ddd;
    bottom: 0;
    color: #999;
    content: "Loading\2026";
    display: block;
    left: 0;
    padding-top: 20px;
    position: absolute;
    right: 0;
    top: 0;
}

/**
 * Filters
 */

#filters {
    list-style-type: none;
    margin: 0 5% 0 5%;
    text-align: center;
}

#filters:after {
    clear: both;
    content: ".";
    display: block;
    height: 0;
    line-height: 0;
    visibility: hidden;
}

#filters li {
    -moz-border-radius: 3px;
    -moz-transition: all 0.15s ease-out;
    -o-transition: all 0.15s ease-out;
    -webkit-border-radius: 3px;
    -webkit-transition: all 0.15s ease-out;
    border-radius: 3px;
    cursor: pointer;
    float: left;
    font-size: 12px;
    margin: 0 10px;
    padding: 6px 8px 4px;
    transition: all 0.15s ease-out;
}

#filters li:hover {
    background: #4281f5;
    color: #ffffff;
}

#filters li.active {
    background: #4281f5;
    color: #ffffff;
}