/* Sfondo */
body{
	background-color: #ffffff;
}

/* Titolo */
#titolo{
    height: 43px;
    width: 100%;
    text-align: center;
    font-size: 35px;
    font-family: verdana;
    /*background: linear-gradient(#F1F1F1, white);*/
    background-color: white;
    color: #004080;
    position: fixed;
    z-index: 9;
    top: 0px;
    box-shadow: 2px -12px 2px 11px black;
    padding-bottom: 2px;
}

/* Login non avvenuto*/
#login{
	height: 30px;
	width: 150px;
	text-align: center;
	font-size: 25px;
	font-family: monospace;
	color: #004080;
	position: fixed;
	z-index: 9;
	top: 10px;
	right: 2%;
	background-color: #F1F1F1;
	border-top-left-radius: 5px;
	border-top-right-radius: 5px;
	border-bottom-left-radius: 5px;
	border-bottom-right-radius: 5px;
	cursor: default;
}

#loginSquare{
	height: 150px;
	width: 250px;
	position: fixed;
	z-index: 9;
	top: 40px;
	right: 2%;
	background-color: #F1F1F1;
	border-top-left-radius: 5px;
	border-bottom-left-radius: 5px;
	border-bottom-right-radius: 5px;
	box-shadow: -6px 6px 10px -7px black
}

#accedi{
	position: absolute;
	top: 35px;
	left: 35px;
	cursor: pointer;
	width: 180px;
	height: 35px;
	background-color: green;
	color: white;
	font-size: 17px;
	text-decoration: none;
	text-align: center;
	line-height: 35px;
}

#accedi:hover{
	background-color: #005000;
}

#registrati{
	position: absolute;
	top: 80px;
	left: 35px;
	cursor: pointer;
	width: 180px;
	height: 35px;
	background-color: #414141;
	color: white;
	font-size: 17px;
	text-decoration: none;
	text-align: center;
	line-height: 35px;
}

#registrati:hover{
	background-color: black;
}


/* Login avvenuto*/
#credenziali{
	position: absolute;
	top: 25px;
	left: 35px;
	cursor: default;
	width: 180px;
	height: 35px;
	color: black;
	font-size: 20px;
	text-align: center;
	line-height: 20px;
}

#impostazioni{
	position: absolute;
	top: 70px;
	left: 35px;
	cursor: pointer;
	width: 180px;
	height: 35px;
	background-color: green;
	color: white;
	font-size: 17px;
	text-decoration: none;
	text-align: center;
	line-height: 35px;
}

#impostazioni:hover{
	background-color: #005000;
}

#logout{
	position: absolute;
	top: 125px;
	left: 35px;
	cursor: pointer;
	width: 180px;
	height: 35px;
	background-color: #414141;
	color: white;
	font-size: 17px;
	text-decoration: none;
	text-align: center;
	line-height: 35px;
}

#logout:hover{
	background-color: black;
}

/* Chat */
#chatBox {
	background-color: #F1F1F1;
	height: 250px;
	overflow-x: auto;
	overflow-y: scroll;
}

#chatForm textarea{
	width: 90%;
	height: 43px;
	border-radius: 2px;
	resize: none;
}

/* Contatti */
.contattiDesktop{
	position: absolute;
	display: block;
}

.contattiMobile{
	position: relative;
	display: none;
}

/* Menu */
.menu {
	left: 0%;
    list-style-type: none;
    margin: 0;
    padding: 0;
    overflow: hidden;
    background-color: white;
    text-align: center;
    width: 100%;
    position: fixed;
    z-index: 8;
    top: 43px;
	box-shadow: 2px -12px 2px 11px;
}

.menu ul {
	padding: 0px;
	margin: 0px;
}

.menu li {
    display: inline-block;
}

.menu li a {
    display: block;
    color: #004080;
    text-align: center;
    padding: 15px;
    text-decoration: none;
    font-size: x-large;
    font-family: monospace;
	cursor: pointer;
}

.menu a:hover {
	background-color: #F1F1F1;
    border-radius: 15px;
}

/* Contenuto pagina */
#contenuto{
    position: relative;
	top: 125px;
	margin: 0 auto; /* serve per centrare il contenuto */
	width: 40%; /* regola la dimensione del contenuto */
	background-color: white;
	padding-top: 7px;
	padding-bottom: 10px;
	padding-left: 20px;
	padding-right: 20px;
	box-shadow: 0px 0px 8px -4px;
}

p{
	text-align: center;
	font-size: 20;
	font-family: cursive;
	padding-bottom: 30px;
}

/* FOTO */
.foto img{
	height: auto;
	width: 80%;
	position: relative;
	top: 25px;
	left: 10%;
	cursor: pointer;
}

#prevArrow{
	height: 10%;
	width: 10%;
	position: relative;
	top: 50px;
	left: 20%;
}

#nextArrow{
	height: 10%;
	width: 10%;
	position: relative;
	top: 50px;
	left: 60%;
}

/* ABOUT US */
.sizeFotoL{
	height: auto;
	margin: auto;
	width: 55%;
	float: left;
}

.sizeFotoR{
	height: auto;
	margin: auto;
	width: 55%;
	float: right;
}

.testoL{
	float:left;
	display:block;
	width:45%;
	height:200px;
	text-align: left;
	padding-top: 20px;
	font-size: 120%;
}

.testoR{
	float: right;
	display:block;
	width:45%;
	height:200px;
	text-align: right;
	padding-top: 20px;
	font-size: 120%;
}

#titoloTesto{
	text-align:center;
	font-size: 135%;
	font-family: cursive;
}

/* Player */
#player {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    position: fixed;
    bottom: 0px;
    left: 0px;
    z-index: 9;
}

/* Naconde ciò che ha l'id mobile e mostra chi ha l'id desktop*/
.desktop{
	display: block;
}

.mobile{
	display: none;
}

#mobile{
	display: none;
}
