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

/**
 * Grid items
 */
#tiles li {
width: 225px;
background-color: #ffffff;
border: 0 solid #dedede;
border-left: 16px solid black;
margin:20px;
display: none; /** Hide items initially to avoid a flicker effect **/
  cursor: pointer;
padding: 8px;
  -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;
}



#tiles li.inactive {
opacity: 0;
}

#tiles li img {
display: block;


}

#filters {
	list-style-type: none;
	text-align: center;
	height: 18px;
	background-color: #F8F8F8;
	margin-top: 0;
	margin-right: 1%;
	margin-bottom: 3%;
	margin-left: 1%;
}

#filters li {
font-size: 20px;
font-weight: bold;
float: left;
padding: 1px 0 1px 0;
cursor: pointer;
  -webkit-transition: all 0.15s ease-out;
     -moz-transition: all 0.15s ease-out;
       -o-transition: all 0.15s ease-out;
          transition: all 0.15s ease-out;
/*-moz-border-radius: 3px;
-webkit-border-radius: 3px;
border-radius: 3px;*/
margin: 0 1% 0 1%;
width: 15%;
}

#filters li:hover {
background: #ffffff;
}

#filters li.active {
	color: #ffffff;
	background-color: #000;
}

/**
 * Grid item text
 */
#tiles li p {
	color: #000;
	font-size: 12px;
	margin: 10px 0px 0px 7px;
	padding-left: 10px;
	text-decoration: none !important;
}


/**
 * 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;
}

/** General page styling **/
  
html {
background-color: #F8F8F8;
}



#main {
padding: 30px 0 30px 0;
}

header h1 {
font-family:"PT+Sans"
text-align: left;
	font-size: 50px;
	font-weight: bold;
	margin: 30px 120px 100pxpx 50px;
	padding-left: 80px
}

header p {
font-family:"PT+Sans"
text-align: left;
font-size: 15px;
color: #000;
margin: 0;
padding-left: 80px
}
