.text
{
	color: white;
	padding: 10px;
}

a
{
	color: white;
	text-decoration: none;
}

header
{
	position: relative;

	margin-top: 30px;
	margin-bottom: 5px;
	
	height: 110px;
}

footer
{
	width: 900px;
}

#logo
{
	position: absolute;

	height: 50px;
	width: 50px;
	z-index: 5;
	
	top: 0;
	
	margin: 5px 9px;
	
	transition: 1s;
	
	-moz-transform-origin: 50% 60%;
	-o-transform-origin: 50% 60%;
	-webkit-transform-origin: 50% 60%;
	transform-origin: 50% 60%;
}

#logo:hover
{
	-webkit-transform:rotate(240deg);
	-moz-transform:rotate(240deg);
	-o-transform:rotate(240deg);
	transform:rotate(240deg);
}

.first-nav
{
	position: relative;
	height: 60px;
	
	/*background-color: #111111;*/
	background-color: #1B1B1B;
	border-radius: 2px;
	
	z-index: 4;
}

.first-nav ul
{
	list-style: none outside none;
	white-space: nowrap;
	
	position: absolute;
	
	height: 42px;
	font-size: 24px;
	
	margin: auto;
	padding: 0;
	
	top: 0;
	bottom:0;
}

.first-nav ul li
{
	float: left;
	margin: 0 20px;
}

.first-nav ul li:first-letter
{
	font-size: 150%;
}

.first-nav ul li:first-of-type
{
	margin-left: 85px;
}

.first-nav .filters a
{
	border-bottom: 0px solid;
	
	-webkit-transition: border-bottom 0.2s;
	-moz-transition: border-bottom 0.2s;
	-ms-transition: border-bottom 0.2s;
	-o-transition: border-bottom 0.2s;
	transition: border-bottom 0.2s;
}

.first-nav .filters a:hover
{
	border-bottom: 4px solid;
}

.second-nav
{
	position: relative;
	height: 24px;
	
	margin: 5px 0;
	
	z-index: 3;
	
	text-transform:uppercase;
}
	
.second-nav ul
{
	list-style: none outside none;
	white-space: nowrap;
	
	position: absolute;
	
	height: 24px;
	
	margin: auto;
	
	top: 0;
	bottom:0;
	
	padding: 0;
}

.second-nav ul li:first-of-type
{
	margin-left: 0;
}

.second-nav ul li
{
	float: left;
	margin: 0 10px;
	padding: 2px 0px;
	
	border-radius: 2px;
}

.second-nav ul li a
{
	padding: 0px 10px;
}

#container
{
	overflow: visible;
}

.contact
{
	height: 55px;
	position: absolute;
	top: 0;
	bottom: 0;
	right: 0;
	
	margin: auto;
	font-size: 14px;
	margin-right: 10px;
	
	text-align: right;
}

.contact p
{
	margin: 0;
}

.about
{
	height: 250px !important;
	width: 880px !important;
	
	padding: 10px;
}

.content
{
	position: relative;

	width: 900px;
	height: 150px;
	
	margin: 4px 0px;
	
	background-color: #1B1B1B;
	border-radius: 2px;
}

.all
{
	/*background-color: #111111;*/
	background-color: #1B1B1B;
}

.still
{
	/*background-color: #bbd32f;*/
	background-color: #c34638;
}

.print
{
	background-color: #c34638;
}

.wip
{
	background-color: #f1c21d;
}

.video
{
	background-color: #2fa3d3;
}

.image_link
{
	width: 100%;
	height: 100%;
	z-index: 3;
	position: absolute;
}

.content .image
{
	position: absolute;
	
	height: 144px;
	width: 894px;
	
	margin: auto;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	
	/*background-color: #111111;*/
	
	overflow: hidden;
}

.fadeIn
{	
	width: 900px;
	height: 150px;
}

.content .image img
{
	position: absolute;
	
	top: 0;
	left: 0;
	
	z-index: 2;
	
	-webkit-transition: top 2.5s;
	-moz-transition: top 2.5s;
	-ms-transition: top 2.5s;
	-o-transition: top 2.5s;
	transition: top 2.5s;
}

.move-up:hover .image img
{
	top: -144px;
	
	-webkit-transition: top 3s 0.25s;
	-moz-transition: top 3s 0.5s;
	-ms-transition: top 3s 0.5s;
	-o-transition: top 3s 0.5s;
	transition: top 3s 0.25s;
}

.move-left:hover .image img
{
	left: -200px;	
}

.move-up:hover .caption
{
	opacity: 1;
}

.content .caption
{
	height: 100%;
	width: 50%;
	position: absolute;
	right: 0;
	padding: 5px;
	
	z-index: 2;
	
	opacity: 0;
	
	-webkit-transition: opacity 0.5s 0.2s;
	-moz-transition: opacity 0.5s 0.2s;
	-ms-transition: opacity 0.5s 0.2s;
	-o-transition: opacity 0.5s 0.2s;
	transition: opacity 0.5s 0.2s;
}

.caption p
{
	position: absolute;
	
	margin: 0px 29px 29px 0px;
	
	text-align: right;
	font-size: 20px;
	font-weight: bold;
	color: white;

	width: 100%;
	bottom: 0;
	right: 0;
}

.image-link
{
	position: absolute;

	background-image: url("images/arrow.png");
	
	height: 39px;
	width: 39px;
	
	right: 0;
	bottom: 0;
	
	margin: 20px 12px;
	
	-webkit-transition: 0.2s ease;
	-moz-transition: 0.2s ease;
	-ms-transition: 0.2s ease;
	-o-transition: 0.2s ease;
	transition: 0.2s ease;
	
    background-repeat:no-repeat;
    background-origin:border-box;
    background-position:50% 50%;
    
	border-width: 0;
	border: 20px solid rgba(0, 0, 0, 0);
	
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
		
	-webkit-border-radius: 50px;
	-moz-border-radius: 50px;
	border-radius: 50px;
}

.image-link:hover
{
	transition-duration: 0.5s;
	border: 1px solid rgba(0, 0, 0, 0.7);
	border-width: 3;
	border-color: #FFF;
}

.picture
{
	height: 250px;
	float: left;
	margin-right: 10px
}

.about_text
{

}

.about_text .title_1
{
	font-size: 45px;
}

.about_text .title_2
{
	font-size: 30px;
}

.about_text p
{
	margin: 0;
}

/**** Stile for Isotope ****/

.isotope-item {
  z-index: 2;
}

.isotope-hidden.isotope-item {
  pointer-events: none;
  z-index: 1;
}

.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:      -o-transform, opacity;
          transition-property:         transform, opacity;
}

/**** End stile for Isotope ****/