/*=================================
=            Normalize            =
=================================*/
article, aside, details, figcaption, figure, footer, header, hgroup, nav, section, summary {
  display: block; }

audio, canvas, video {
  display: inline-block; }

audio:not([controls]) {
  display: none;
  height: 0; }

[hidden] {
  display: none; }


a:focus {
  outline: thin dotted; }

a:active, a:hover {
  outline: 0; }


abbr[title] {
  border-bottom: 1px dotted; }

b, strong {
  font-weight: 700; }

dfn {
  font-style: italic; }

mark {
  background: #ff0;
  color: #000; }

code, kbd, pre, samp {
  font-family: monospace, serif;
  font-size: 1em; }

pre {
  white-space: pre-wrap;
  word-wrap: break-word; }

q {
  quotes: \201C \201D \2018 \2019; }

small {
  font-size: 80%; }

sub, sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline; }

sup {
  top: -.5em; }

sub {
  bottom: -.25em; }

img {
  border: 0; }

svg:not(:root) {
  overflow: hidden; }

fieldset {
  border: 1px solid silver;
  margin: 0 2px;
  padding: .35em .625em .75em; }

button, input, select, textarea {
  font-family: inherit;
  font-size: 100%;
  margin: 0; }

button, input {
  line-height: normal; }

button, html input[type=button], input[type=reset], input[type=submit] {
  -webkit-appearance: button;
  cursor: pointer; }

button[disabled], input[disabled] {
  cursor: default; }

input[type=checkbox], input[type=radio] {
  box-sizing: border-box;
  padding: 0; }

input[type=search] {
  -webkit-appearance: textfield;
  box-sizing: content-box; }

input[type=search]::-webkit-search-cancel-button, input[type=search]::-webkit-search-decoration {
  -webkit-appearance: none; }

textarea {
  overflow: auto;
  vertical-align: top; }

table {
  border-collapse: collapse;
  border-spacing: 0; }


legend, button::-moz-focus-inner, input::-moz-focus-inner {
  border: 0;
  padding: 0; }

.clearfix:after {
  visibility: hidden;
  display: block;
  font-size: 0;
  content: " ";
  clear: both;
  height: 0; }

* {
  box-sizing: border-box; }

/*-----  End of Normalize  ------*/
/*====================================
=            Basic Styles            =
====================================*/


.intro {
  text-align: center; }


.wrapper {
  width: 100%; }



/*-----  End of Basic Styles  ------*/
.filterableItem {
  display: inline-block;
  float: left;
  max-width: 33%;
  padding: 0.7em; }
@media all and (max-width: 1150px) {
  .filterableItem {
    margin: 0.25em 0 0.25em 0;
    max-width: 50%; } }
@media all and (max-width: 700px) {
  .filterableItem {
    margin: 0.25em 0 0.25em 0;
    max-width: 100%; } }

/*-----  End of Filter Content Styles  ------*/
span.legend {
  text-transform: uppercase;
  font-weight: 400; }

ul.filterControls {
  margin: 0 0 0 0;
  list-style-type: none;
  -webkit-margin-before: 0em;
  -webkit-margin-after: 0em;
  -webkit-margin-start: 0px;
  -webkit-margin-end: 0px;
  -webkit-padding-start: 0px;
  padding: 0 0 0 0; }
ul.filterControls li {
  display: inline-block;
  float: left;
  padding: 1em; }

/*-----  End of Filter Nav  ------*/
/*===================================
=            Animate.css            =
===================================*/
/*!
Animate.css - http://daneden.me/animate
Licensed under the MIT license - http://opensource.org/licenses/MIT

Copyright (c) 2014 Daniel Eden
*/
.animated {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both; }

.animated.infinite {
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite; }

.animated.hinge {
  -webkit-animation-duration: 2s;
  animation-duration: 2s; }

/*-----  End of Animate.css  ------*/
/*==================================
=            Animations            =
==================================*/
/**
*
* Transition: Show
*
**/
@-webkit-keyframes itemTransition {
  0% {
    opacity: 0; }

  100% {
    opacity: 1; } }

@keyframes itemTransition {
  0% {
    opacity: 0; }

  100% {
    opacity: 1; } }

.itemTransition {
  -webkit-animation-name: itemTransition;
  animation-name: itemTransition; }

/*-----  End of Animations  ------*/
@-webkit-keyframes itemTransitionUp {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0); }

  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none; } }

@keyframes itemTransitionUp {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0); }

  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none; } }

.itemTransitionUp {
  -webkit-animation-name: itemTransitionUp;
  animation-name: itemTransitionUp; }
