@charset "utf-8";
/* Contenuto fluido semplice
   Nota: per i contenuti di tipo fluido è necessario rimuovere gli attributi di altezza e larghezza del contenuto dal codice HTML
   http://www.alistapart.com/articles/fluid-images/ 
*/
img, object, embed, video {
	max-width: 100%;
}
/* IE 6 non supporta max-width, quindi viene usata per impostazione predefinita la larghezza 100% */
.ie6 img {
	width:100%;
}

/*
	Proprietà griglia fluida Dreamweaver
	----------------------------------
	dw-num-cols-mobile:		6;
	dw-num-cols-tablet:		8;
	dw-num-cols-desktop:	12;
	dw-gutter-percentage:	15;
	
	Ispirato da "Responsive Web Design" di Ethan Marcotte 
	http://www.alistapart.com/articles/responsive-web-design
	
	e Golden Grid System di Joni Korpi
	http://goldengridsystem.com/
*/
.gridContainer {
	margin-left: auto;
	margin-right: auto;
	width: 97.826%;
	padding-left: 1.0869%;
	padding-right: 1.0869%;
}
#header {
	clear: both;
	float: left;
	margin-left: 0;
	width: 100%;
	display: block;
	background-repeat: repeat;
	background-position: center -30px;
	height: 250px;
	overflow: hidden;
	background-image: url(../images/header/12.jpg);
}
#content {
	clear: both;
	float: left;
	margin-left: 0;
	width: 100%;
	display: block;
	background-color: rgb(227,227,227);
}
#headerinlay {
	clear: none;
	float: left;
	margin-left: 0%;
	width: 100%;
	display: block;
	padding-top: 56px;
	font-size: 16px;
}
#startseite {
	clear: both;
	float: left;
	margin-left: 0;
	width: 48.8888%;
	display: block;
	border-top-right-radius: 15px;
}
#biografie {
	clear: none;
	float: left;
	margin-left: 2.2222%;
	width: 48.8888%;
	display: block;
	border-top-left-radius: 15px;
}
#werke {
	clear: both;
	float: left;
	margin-left: 0;
	width: 48.8888%;
	display: block;
}
#ausstellung {
	clear: none;
	float: left;
	margin-left: 2.2222%;
	width: 48.8888%;
	display: block;
}
#presse {
	clear: both;
	float: left;
	margin-left: 0;
	width: 48.8888%;
	display: block;
}
#kontakt {
	clear: none;
	float: left;
	margin-left: 2.2222%;
	width: 48.8888%;
	display: block;
}
#logo {
	clear: none;
	float: right;
	width: 100%;
	display: block;
	height: 130px;
	margin-right: -3px;
}
#contentarticle {
	clear: both;
	float: left;
	margin-left: 13%;
	width: 82.9629%;
	display: block;
	padding-top: 25px;
	padding-bottom: 25px;
}
#contentauslisting {
	clear: both;
	float: left;
	margin-left: 7%;
	width: 100%;
	display: block;
	padding-bottom: 25px;
}
#mainwrapper {
	overflow: hidden;
	clear: none;
	float: left;
	margin-left: 5%;
	width: 200px;
	display: block;
	background-color: rgb(255,255,255);
	border: 5px solid rgb(255,255,255);
	text-align: center;
	height: auto;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 10pt;
	font-weight: normal;
}
#mainwrapper .box {
    border: 5px solid #fff;  
    cursor: pointer;  
    height: 300px;  
    float: left;  
    margin: -5px;  
    position: relative;  
    overflow: hidden;  
    width: 300px; 
    -webkit-box-shadow: 1px 1px 1px 1px #ccc;  
    -moz-box-shadow: 1px 1px 1px 1px #ccc;  
    box-shadow: 1px 1px 1px 1px #ccc;  
}
#mainwrapper .box img {
    position: absolute;  
    left: 0;  
    -webkit-transition: all 300ms ease-out;  
    -moz-transition: all 300ms ease-out;  
    -o-transition: all 300ms ease-out;  
    -ms-transition: all 300ms ease-out;  
    transition: all 300ms ease-out;   
}
#mainwrapper .box .caption {
	background-color: rgba(0,0,0,0.6);
	position: absolute;
	color: #fff;
	z-index: 100;
	-webkit-transition: all 300ms ease-out;
	-moz-transition: all 300ms ease-out;
	-o-transition: all 300ms ease-out;
	-ms-transition: all 300ms ease-out;
	transition: all 300ms ease-out;
	left: 0;
	opacity: 0;
}
    #mainwrapper .box .scale-caption h3, #mainwrapper .box .scale-caption p {  
        position: relative;  
        left: -300px;  
        width: 200px;  
        -webkit-transition: all 300ms ease-out;  
        -moz-transition: all 300ms ease-out;  
        -o-transition: all 300ms ease-out;  
        -ms-transition: all 300ms ease-out;  
        transition: all 300ms ease-out;  
    }  
      
    #mainwrapper .box .scale-caption h3 {  
        -webkit-transition-delay: 300ms;  
        -moz-transition-delay: 300ms;  
        -o-transition-delay: 300ms;  
        -ms-transition-delay: 300ms;  
        transition-delay: 300ms;  
    }  
      
    #mainwrapper .box .scale-caption p {  
        -webkit-transition-delay: 500ms;  
        -moz-transition-delay: 500ms;  
        -o-transition-delay: 500ms;  
        -ms-transition-delay: 500ms;  
        transition-delay: 500ms;  
    }  
    #mainwrapper .box:hover #biopic {  
       -moz-transform: scale(1.3);  
       -o-transform: scale(1.3);  
       -webkit-transform: scale(1.3);  
       transform: scale(1.3);  
    } 
     #mainwrapper .box:hover .caption {  
        opacity: 0.9;  
    }  
#mainwrapper .box:hover .scale-caption h3, #mainwrapper .box:hover .scale-caption p {  
    -moz-transform: translateX(300px);  
    -o-transform: translateX(300px);  
    -webkit-transform: translateX(300px);  
    transform: translateX(300px);  
}   
  
  
  
#contentauslistingtext {
	clear: both;
	float: left;
	margin-left: 0;
	width: 82.9629%;
	display: block;
	background-color: rgb(255,255,255);
	border: 10px solid rgb(255,255,255);
	border-radius: 10px;
}
#footer {
	clear: both;
	float: left;
	margin-left: 0;
	width: 100%;
	display: block;
	text-align: center;
	padding-bottom: 15px;
}


@media only screen and (min-width: 361px) {
.gridContainer {
	margin-left: auto;
	margin-right: auto;
	width: 97.826%;
	padding-left: 1.0869%;
	padding-right: 1.0869%;
}
#header {
	clear: both;
	float: left;
	margin-left: 0;
	width: 100%;
	display: block;
	background-repeat: repeat;
	background-position: center -30px;
	height: 250px;
	overflow: hidden;
	background-image: url(../images/header/12.jpg);
}
#content {
	clear: both;
	float: left;
	margin-left: 0;
	width: 100%;
	display: block;
	background-color: rgb(227,227,227);
}
#headerinlay {
	clear: none;
	float: left;
	margin-left: 0%;
	width: 100%;
	display: block;
	padding-top: 56px;
	font-size: 16px;
}
#startseite {
	clear: both;
	float: left;
	margin-left: 0;
	width: 48.8888%;
	display: block;
	border-top-right-radius: 15px;
}
#biografie {
	clear: none;
	float: left;
	margin-left: 2.2222%;
	width: 48.8888%;
	display: block;
	border-top-left-radius: 15px;
}
#werke {
	clear: both;
	float: left;
	margin-left: 0;
	width: 48.8888%;
	display: block;
}
#ausstellung {
	clear: none;
	float: left;
	margin-left: 2.2222%;
	width: 48.8888%;
	display: block;
}
#presse {
	clear: both;
	float: left;
	margin-left: 0;
	width: 48.8888%;
	display: block;
}
#kontakt {
	clear: none;
	float: left;
	margin-left: 2.2222%;
	width: 48.8888%;
	display: block;
}
#logo {
	clear: none;
	float: right;
	width: 100%;
	display: block;
	height: 130px;
	margin-right: -3px;
}
#contentarticle {
	clear: both;
	float: left;
	margin-left: 13%;
	width: 82.9629%;
	display: block;
	padding-top: 25px;
	padding-bottom: 25px;
}
#contentauslisting {
	clear: both;
	float: left;
	margin-left: 7%;
	width: 100%;
	display: block;
	padding-bottom: 25px;
}
#mainwrapper {
	overflow: hidden;
	clear: none;
	float: left;
	margin-left: 5%;
	width: 300px;
	display: block;
	background-color: rgb(255,255,255);
	border: 5px solid rgb(255,255,255);
	text-align: center;
	height: auto;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 10pt;
	font-weight: normal;
}
#mainwrapper .box {
	border: 5px solid #fff;
	cursor: pointer;
	height: 300px;
	float: left;
	margin: -5px;
	position: relative;
	overflow: hidden;
	width: 300px;
	-webkit-box-shadow: 1px 1px 1px 1px #ccc;
	-moz-box-shadow: 1px 1px 1px 1px #ccc;
	box-shadow: 1px 1px 1px 1px #ccc;
}
#mainwrapper .box img {
    position: absolute;  
    left: 0;  
    -webkit-transition: all 300ms ease-out;  
    -moz-transition: all 300ms ease-out;  
    -o-transition: all 300ms ease-out;  
    -ms-transition: all 300ms ease-out;  
    transition: all 300ms ease-out;   
}
#mainwrapper .box .caption {
	background-color: rgba(0,0,0,0.6);
	position: absolute;
	color: #fff;
	z-index: 100;
	-webkit-transition: all 300ms ease-out;
	-moz-transition: all 300ms ease-out;
	-o-transition: all 300ms ease-out;
	-ms-transition: all 300ms ease-out;
	transition: all 300ms ease-out;
	left: 0;
	opacity: 0;
}
    #mainwrapper .box .scale-caption h3, #mainwrapper .box .scale-caption p {  
        position: relative;  
        left: -300px;  
        width: 200px;  
        -webkit-transition: all 300ms ease-out;  
        -moz-transition: all 300ms ease-out;  
        -o-transition: all 300ms ease-out;  
        -ms-transition: all 300ms ease-out;  
        transition: all 300ms ease-out;  
    }  
      
    #mainwrapper .box .scale-caption h3 {  
        -webkit-transition-delay: 300ms;  
        -moz-transition-delay: 300ms;  
        -o-transition-delay: 300ms;  
        -ms-transition-delay: 300ms;  
        transition-delay: 300ms;  
    }  
      
    #mainwrapper .box .scale-caption p {  
        -webkit-transition-delay: 500ms;  
        -moz-transition-delay: 500ms;  
        -o-transition-delay: 500ms;  
        -ms-transition-delay: 500ms;  
        transition-delay: 500ms;  
    }  
    #mainwrapper .box:hover #biopic {  
       -moz-transform: scale(1.3);  
       -o-transform: scale(1.3);  
       -webkit-transform: scale(1.3);  
       transform: scale(1.3);  
    } 
     #mainwrapper .box:hover .caption {  
        opacity: 0.9;  
    }  
#mainwrapper .box:hover .scale-caption h3, #mainwrapper .box:hover .scale-caption p {  
    -moz-transform: translateX(300px);  
    -o-transform: translateX(300px);  
    -webkit-transform: translateX(300px);  
    transform: translateX(300px);  
}   
  
  
  
#contentauslistingtext {
	clear: both;
	float: left;
	margin-left: 0;
	width: 82.9629%;
	display: block;
	background-color: rgb(255,255,255);
	border: 10px solid rgb(255,255,255);
	border-radius: 10px;
}
#footer {
	clear: both;
	float: left;
	margin-left: 0;
	width: 100%;
	display: block;
	text-align: center;
	padding-bottom: 15px;
}
/*#biopic {
	clear: none;
	float: left;
	width: 300px;
	display: block;
	z-index: 200;
	margin-left: 5px;
	padding-top: 5px;
	padding-bottom: 25px;
	height: 300px;
}*/
}

/* Layout tablet: da 481 px a 768 px. Eredita stili da: Layout mobile. */

@media only screen and (min-width: 481px) {
.gridContainer {
	width: 88.5326%;
	padding-left: 0.7336%;
	padding-right: 0.7336%;
}
#header {
	clear: both;
	float: left;
	margin-left: 0;
	width: 100%;
	display: block;
	height: 380px;
	background-position: right;
}
#content {
	clear: both;
	float: left;
	margin-left: 0;
	width: 100%;
	display: block;
}
#headerinlay {
	clear: none;
	float: right;
	margin-left: 1.6574%;
	width: 100%;
	display: block;
	padding-top: 50px;
}
#startseite {
	clear: none;
	float: right;
	margin-left: 1.6574%;
	width: 36.464%;
	display: block;
	padding-top: 5px;
	padding-bottom: 3px;
	border-top-left-radius: 15px;
	border-top-right-radius: 0px;
}
#biografie {
	clear: both;
	float: right;
	margin-left: 0;
	width: 36.464%;
	display: block;
	padding-bottom: 3px;
	padding-top: 5px;
	border-top-left-radius: 0;
}
#werke {
	clear: both;
	float: right;
	margin-left: 0;
	width: 36.464%;
	display: block;
	padding-top: 5px;
	padding-bottom: 3px;
}
#ausstellung {
	clear: both;
	float: right;
	margin-left: 0;
	width: 36.464%;
	display: block;
	padding-bottom: 3px;
	padding-top: 5px;
}
#presse {
	clear: both;
	float: right;
	margin-left: 0;
	width: 36.464%;
	display: block;
	padding-bottom: 3px;
	padding-top: 5px;
}
#kontakt {
	clear: both;
	float: right;
	margin-left: 0;
	width: 36.464%;
	display: block;
	padding-top: 5px;
	padding-bottom: 3px;
	border-bottom-left-radius: 15px;
}
#logo {
	clear: none;
	float: right;
	width: 466px;
	display: block;
	margin-right: 0px;
}
#contentarticle {
	clear: none;
	float: left;
	margin-left: 0%;
	width: 30%;
	display: block;
}
#contentauslisting {
	clear: none;
	float: left;
	margin-left: 2.2%;
	width: 59%;
	display: block;
	padding-top: 25px;
}
#mainwrapper {
	clear: both;
	float: left;
	margin-left: 26%;
	width: 150px;
	display: block;
}
#mainwrapper .box {
	margin: -5px;

}
#mainwrapper .box img {
  
}
#mainwrapper .box .caption {  

}  
#mainwrapper .box .scale-caption h3, #mainwrapper .box .scale-caption p { 
        width: 150px;   
}  
#mainwrapper .box .scale-caption h3 {  
}  
#mainwrapper .box .scale-caption p {  
}  
#mainwrapper .box:hover #biopic {  
}  
#mainwrapper .box:hover .caption {  
}  
#mainwrapper .box:hover .scale-caption h3, #mainwrapper .box:hover .scale-caption p {  
}   



#contentauslistingtext {
	clear: none;
	float: left;
	margin-left: 1.6574%;
	width: 92%;
	display: block;
}
#footer {
	clear: both;
	float: left;
	margin-left: 0;
	width: 100%;
	display: block;
}
/*#biopic {
	clear: none;
	float: left;
	margin-left: 0%;
	width: 100%;
	display: block;
	padding-top: 0px;
}*/
}

/* Layout desktop: da 769 px a 1232 px max.  Eredita stili da: Layout mobile e Layout tablet. */

@media only screen and (min-width: 769px) {
.gridContainer {
	width: 79.1304%;
	max-width: 1232px;
	padding-left: 0.4347%;
	padding-right: 0.4347%;
	margin: auto;
}
#header {
	clear: both;
	float: left;
	margin-left: 0;
	width: 100%;
	display: block;
	height: 310px;
}
#content {
	clear: both;
	float: left;
	margin-left: 0;
	width: 100%;
	display: block;
}
#headerinlay {
	clear: none;
	float: right;
	margin-left: 1.0989%;
	width: 100%;
	display: block;
	padding-top: 0px;
}
#startseite {
	clear: none;
	float: right;
	margin-left: 1.0989%;
	width: 24.1758%;
	display: block;
}
#biografie {
	clear: both;
	float: right;
	margin-left: 0;
	width: 24.1758%;
	display: block;
}
#werke {
	clear: both;
	float: right;
	margin-left: 0;
	width: 24.1758%;
	display: block;
}
#ausstellung {
	clear: both;
	float: right;
	margin-left: 0;
	width: 24.1758%;
	display: block;
}
#presse {
	clear: both;
	float: right;
	margin-left: 0;
	width: 24.1758%;
	display: block;
}
#kontakt {
	clear: both;
	float: right;
	margin-left: 0;
	width: 24.1758%;
	display: block;
}
#logo {
	clear: none;
	float: right;
	margin-left: 1.0989%;
	width: 466px;
	display: block;
}
#contentarticle {
	clear: none;
	float: left;
	margin-left: 6.5%;
	width: 41.0256%;
	display: block;
}
#contentauslisting {
	clear: none;
	float: left;
	margin-left: 3.5%;
	width: 49.4505%;
	display: block;
}
#mainwrapper {
	clear: none;
	float: left;
	margin-left: 1.0989%;
	width: 305px;
	display: block;
	height: 305px;
}
#mainwrapper .box {
	margin: -3px;
}
#mainwrapper .box img {
  
}
#mainwrapper .box .caption {  

} 
#mainwrapper .box .scale-caption h3, #mainwrapper .box .scale-caption p {  
}  
#mainwrapper .box .scale-caption h3 {  
}  
#mainwrapper .box .scale-caption p {  
}
#mainwrapper .box:hover #biopic {  
} 
#mainwrapper .box:hover .caption {  
}   
#mainwrapper .box:hover .scale-caption h3, #mainwrapper .box:hover .scale-caption p {  
}   



#contentauslistingtext {
	clear: none;
	float: left;
	margin-left: 1.0989%;
	width: 100%;
	display: block;
}
#footer {
	clear: both;
	float: left;
	margin-left: 0;
	width: 100%;
	display: block;
}
/*#biopic {
	clear: none;
	float: left;
	margin-left: 0%;
	width: 100%;
	display: block;
	padding-top: 2px;
}*/
}
