body {
    background-image: url('../img/pattern.png');
    background-color: black;
    background-attachment: fixed;
    color: white;
      font-family: 'Cagliostro', sans-serif;
}

a:link              { color:white; text-decoration:underline; }
a:visited           { color:white; text-decoration:underline; }
a:hover             { color:red; text-decoration:underline; }
a:active            { color:red; text-decoration:underline; }

#wrapper { /*Contenitore di tutto il layout*/
	position: relative;
	margin: auto; /*centra il contenuto al suo interno*/
	width: 90%;

	/*background-color: black;
	opacity: 0.8;*/
	-webkit-border-radius: 5px;
    -moz-border-radius: 5px;
	border-radius: 5px;
	border: 2px solid silver;
	-webkit-box-shadow: 10px 10px 5px #111111;
	-moz-box-shadow: 10px 10px 5px #111111;
	box-shadow: 10px 10px 5px #111111;

background: -moz-linear-gradient(-45deg,  rgba(0,0,0,0.8) 0%, rgba(32,32,32,0.8) 100%);
background: -webkit-gradient(linear, left top, right bottom, color-stop(0%,rgba(0,0,0,0.8)), color-stop(100%,rgba(32,32,32,0.8)));
background: -webkit-linear-gradient(-45deg,  rgba(0,0,0,0.8) 0%,rgba(32,32,32,0.8) 100%);
background: -o-linear-gradient(-45deg,  rgba(0,0,0,0.8) 0%,rgba(32,32,32,0.8) 100%);
background: -ms-linear-gradient(-45deg,  rgba(0,0,0,0.8) 0%,rgba(32,32,32,0.8) 100%);
background: linear-gradient(135deg,  rgba(0,0,0,0.8) 0%,rgba(32,32,32,0.8) 100%);
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#cc000000', endColorstr='#cc202020',GradientType=1 );

}

#header {
	height: 100px;
	-webkit-border-radius: 5px 5px 0px 0px;
    -moz-border-radius: 5px 5px 0px 0px;
	border-radius: 5px 5px 0px 0px;
}

#logo {
	height: 70px;
	margin-left: 7%;
	margin-top: 10px;
}

#content{
	min-height: 150px;
	margin-top: 20px;
	width: 85%;
	padding: 15px;
	
}

.gradiente{
      background: -moz-linear-gradient(left,  rgba(255,255,255,0.1) 0%, rgba(243,243,243,0.1) 50%, rgba(237,237,237,0.1) 51%, rgba(255,255,255,0.1) 100%);
      background: -webkit-gradient(linear, left top, right top, color-stop(0%,rgba(255,255,255,0.1)), color-stop(50%,rgba(243,243,243,0.1)), color-stop(51%,rgba(237,237,237,0.1)), color-stop(100%,rgba(255,255,255,0.1)));
      background: -webkit-linear-gradient(left,  rgba(255,255,255,0.1) 0%,rgba(243,243,243,0.1) 50%,rgba(237,237,237,0.1) 51%,rgba(255,255,255,0.1) 100%);
      background: -o-linear-gradient(left,  rgba(255,255,255,0.1) 0%,rgba(243,243,243,0.1) 50%,rgba(237,237,237,0.1) 51%,rgba(255,255,255,0.1) 100%);
      background: -ms-linear-gradient(left,  rgba(255,255,255,0.1) 0%,rgba(243,243,243,0.1) 50%,rgba(237,237,237,0.1) 51%,rgba(255,255,255,0.1) 100%);
      background: linear-gradient(to right,  rgba(255,255,255,0.1) 0%,rgba(243,243,243,0.1) 50%,rgba(237,237,237,0.1) 51%,rgba(255,255,255,0.1) 100%);
      filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#1affffff', endColorstr='#1affffff',GradientType=1 );
}

.enfatizzato{
      font-weight: bold;
      font-style: oblique
}

/*SCROLLBARS*/

/* Turn on a 10x10 scrollbar */
::-webkit-scrollbar {
    width: 10px;
    height: 10px;
}

/* Turn on single button up on top, and down on bottom */
::-webkit-scrollbar-button:start:decrement,
::-webkit-scrollbar-button:end:increment {
    display: block;
}

/* Turn off the down area up on top, and up area on bottom */
::-webkit-scrollbar-button:vertical:start:increment,
::-webkit-scrollbar-button:vertical:end:decrement {
    display: none;
}

/* Place The scroll down button at the bottom */
::-webkit-scrollbar-button:end:increment {
    background-image: url(../img/scrollbar/scroll_cntrl_dwn.png);
    background-repeat: no-repeat;
}

/* Place The scroll up button at the up */
::-webkit-scrollbar-button:start:decrement {
    background-image: url(../img/scrollbar/scroll_cntrl_up.png);
    background-repeat: no-repeat;
}

/* Sfondo Scrollbar */
::-webkit-scrollbar-track-piece:vertical:start {
    background-image: url(../img/scrollbar/scroll_gutter_top.png), url(../img/scrollbar/scroll_gutter_mid.png);
    background-repeat: no-repeat, repeat-y;*/
}

/* Scrollbar */
::-webkit-scrollbar-track-piece:vertical:end {
    background-image: url(../img/scrollbar/scroll_gutter_btm.png), url(../img/scrollbar/scroll_gutter_mid.png);
    background-repeat: no-repeat, repeat-y;
    background-position: bottom left, 0 0;
}

/* The thumb itself */
::-webkit-scrollbar-thumb:vertical {
    height: 35px;
    -webkit-border-image: url(../img/scrollbar/scroll_thumb.png) 8 0 8 0 stretch stretch;
    border-width: 8 0 8 0;
}
