﻿/* USER CONTROL */

.fileTitolo
{
	font-weight:bold;
	font-family: Verdana, Trebuchet MS, Arial, Tahoma;
	font-size: 14px;
    text-decoration:none;
	color: Black;
}

.fileDescrizione
{
	font-weight:normal;
	font-family: Verdana, Trebuchet MS, Arial, Tahoma;
	font-size: 14px;
    text-decoration:none;
	color: Gray;
}

.fileAnnotazioni
{
	font-weight:normal;
    font-style:italic;
	font-family: Verdana, Trebuchet MS, Arial, Tahoma;
	font-size: 12px;
	color: Gray;
}


.fileImmagine
{
    border: 4px double #CCCCCC;
}



/* DESKTOP */
@media only screen and (min-width:1025px) {
    .fileImmagine
    {
        width: 120px;
    }
}
/* TABLET */
@media only screen and (min-width:481px) and (max-width:1024px) {
}
/* TABLET - VERTICALE*/
@media only screen and (min-width:481px) and (max-width:1024px) and (orientation: portrait) {
    .fileImmagine
    {
        width: 120px;
    }
}
/* TABLET - ORIZZONTALE*/
@media only screen and (min-width:481px) and (max-width:1024px) and (orientation: landscape) {
    .fileImmagine
    {
        width: 120px;
    }
}
/* MOBILE */
@media only screen and (max-width:480px) {
    .fileImmagine
    {
        width: 100%;
        max-width: 250px;
    }
}

