@charset "ISO-8859-2";
/* CSS Document */

/* Smartphones (portrait and landscape) ----------- */
@media only screen 
and (min-device-width : 320px) 
and (max-device-width : 480px) {
#container {
   width: 300px;
   margin: 0 auto;
	text-align: center;
}
}

/* Smartphones (landscape) ----------- */
@media only screen 
and (min-width : 600px) {
#container {
   width: 600px;
   margin: 0 auto;
	text-align: center;
}
}

/* Smartphones (portrait) ----------- */
@media only screen 
and (max-width : 320px) {
#container {
   width: 300px;
   margin: 0 auto;
	text-align: center;
}
}

/* iPads (portrait and landscape) ----------- */
@media only screen 
and (min-device-width : 768px) 
and (max-device-width : 1024px) {
#container {
   width: 600px;
   margin: 0 auto;
	text-align: center;
}
}

/* iPads (landscape) ----------- */
@media only screen 
and (min-device-width : 768px) 
and (max-device-width : 1024px) 
and (orientation : landscape) {
#container {
   width: 600px;
   margin: 0 auto;
	text-align: center;
}
}

/* iPads (portrait) ----------- */
@media only screen 
and (min-device-width : 768px) 
and (max-device-width : 1024px) 
and (orientation : portrait) {
#container {
   width: 600px;
   margin: 0 auto;
	text-align: center;
}
}


/* Desktops and laptops with smaller screens ----------- */
@media only screen 
and (min-width : 1024px) {
@media only screen 
and (min-width : 1224px) {
#container {
   width: 900px;
   margin: 0 auto;
	text-align: center;
}
}

/* Desktops and laptops ----------- */
@media only screen 
and (min-width : 1224px) {
@media only screen 
and (min-width : 1824px) {
#container {
   width: 100%;
   margin: 0 auto;
	text-align: center;
}
}

/* Large screens ----------- */
@media only screen 
and (min-width : 1824px) {
#container {
   width: 100%;
   margin: 0 auto;
	text-align: center;
}
}

/* iPhone 4 ----------- */
@media
only screen and (-webkit-min-device-pixel-ratio : 1.5),
only screen and (min-device-pixel-ratio : 1.5) {
#container {
   width: 600px;
   margin: 0 auto;
	text-align: center;
}
}

* {
	list-style-type: none;
}

.masonryImage {
    margin-bottom: 0px;
	float: left;
	padding: 10px;
	width: 310px;
  }
#container,
#container .masonryImage {
 change duration value to whatever you like 
  -webkit-transition-duration: 0.8s;
     -moz-transition-duration: 0.8s;
      -ms-transition-duration: 0.8s;
       -o-transition-duration: 0.8s;
          transition-duration: 0.8s;
}

#container {
  -webkit-transition-property: height, width;
     -moz-transition-property: height, width;
      -ms-transition-property: height, width;
       -o-transition-property: height, width;
          transition-property: height, width;
}

#container .masonryImage {
  -webkit-transition-property: -webkit-transform, opacity;
     -moz-transition-property:    -moz-transform, opacity;
      -ms-transition-property:     -ms-transform, opacity;
       -o-transition-property:      -o-transform, opacity;
          transition-property:         transform, opacity;
}