/**** Isotope Filtering ****/
.isotope-item {
  z-index: 2;
}
.isotope-hidden.isotope-item {
  pointer-events: none;
  z-index: 1;
}
/**** Isotope CSS3 transitions ****/
.isotope,
.isotope .isotope-item {
  -webkit-transition-duration: 0.8s;
     -moz-transition-duration: 0.8s;
      -ms-transition-duration: 0.8s;
       -o-transition-duration: 0.8s;
          transition-duration: 0.8s;
}
.isotope {
  -webkit-transition-property: height, width;
     -moz-transition-property: height, width;
      -ms-transition-property: height, width;
       -o-transition-property: height, width;
          transition-property: height, width;
}
.isotope .isotope-item {
  -webkit-transition-property: -webkit-transform, opacity;
     -moz-transition-property:    -moz-transform, opacity;
      -ms-transition-property:     -ms-transform, opacity;
       -o-transition-property:         top, left, opacity;
          transition-property:         transform, opacity;
}
/**** disabling Isotope CSS3 transitions ****/
.isotope.no-transition,
.isotope.no-transition .isotope-item,
.isotope .isotope-item.no-transition {
  -webkit-transition-duration: 0s;
     -moz-transition-duration: 0s;
      -ms-transition-duration: 0s;
       -o-transition-duration: 0s;
          transition-duration: 0s;
}
/* End: Recommended Isotope styles */
/* disable CSS transitions for containers with infinite scrolling*/
.isotope.infinite-scrolling {
  -webkit-transition: none;
     -moz-transition: none;
      -ms-transition: none;
       -o-transition: none;
          transition: none;
}
body {
    font-family: tahoma;
	overflow-y: scroll;
    background: url("../images/bg-body.jpg") top center fixed no-repeat;
	background-size:cover;
	position:relative;
	width:100%;
	min-height:900px;
}
h1 {
    font-size: 32px;
    text-align: center;
    margin: 40px 0 30px;
    color: #222;
}
#works,
.works {
	width: 1000px;
	margin: 30px auto;
}
#filter li {
    display: block;
	float: left;
	list-style: none;
	margin-left: 9px;
}
#filter li a {
    background: #fff;
    box-shadow: 0 0 3px rgba(0, 0, 0, 0.2);
    padding: 10px 15px;
    display: block;
    color: #666;
    transition: all 0.4s ease;
}
#filter li a:hover,
#filter li a.current {
    background: #666;
    color: #fff;
}
.work {
	width: 300px;
	float: left;
	margin: 0 9px 10px;
    border: 7px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 0 3px rgba(0, 0, 0, 0.4);
}
.work div {
	position: relative;
}
.work div h3 {
	background: rgba(0,0,0, .7);
	width: 100%;
	position: absolute;
	top: 0;
	left: 0;
	padding: 7px 0;
	text-align: center;
	font-size: 18px;
	color: #fff;
}
.work div p {
	background: rgba(0,0,0, .7);
	font-size: 14px;
	color: #eee;
	width: 100%;
	position: absolute;
	bottom: 0;
	left: 0;
	text-align: center;
	padding: 7px 0;
}