@charset "iso-8859-1";
@import "modal-message.css";
@import "fgall.css";
/*******************************************************************************
*  skidoo_too.css : 2005.08.29
* -----------------------------------------------------------------------------
*  A remake of the skidoo layout with the middle column appearing first in
*  source ordering.
*******************************************************************************/

/* begin with generic selectors so that they can be overridden if needed
 * by classes deeper in the stylesheet
 */
.clear{
	clear: both;
	padding-bottom: 1px;	/* for Gecko-based browsers */
	margin-bottom: -1px;	/* for Gecko-based browsers */
}

.hide{
	display: none !important;
}

.inside{
	/* glitch in IE caused by vertical padding in this class, so 0 padding is
	 * set here and those blocks that need the vertical padding must be
	 * applied to the parent element. the purpose of this class is to provide
	 * horizontal padding without using hacks to get around IE's broken box
	 * model. so it's okay to apply vertical padding to the parent element,
	 * just not horizontal padding.
	 */
	padding: 0 1em;
}

/* margin values and font sizes for headings, and margins on paragraphs
 * and lists are not consistent across browser platforms. to achieve a
 * consistent look we need to explicity set these values here. it may
 * seem an odd way to declare the margins like this but you never
 * know what kind of horizontal padding a browser may be using on an
 * element, and I only want to change the vertical padding.
 *
 * pixels are used here, rather than ems, because I want a consistent
 * margin on the different headings. if I use ems, 1em for an h1 element
 * is much larger than 1em on an h6 element. I don't wnat this.
 *
 * salt to taste
 */
 
ul, ol, dl, p, h1, h2, h3, h4, h5, h6{
	font-family: Verdana, Helvetica, Sans-serif, Comic Sans MS, Arial;
	margin-top: 10px;
	margin-bottom: 10px;
	padding-top: 0;
	padding-bottom: 0;
}

h1{
	font-size: 200%;
}

h2{
	font-size: 170%;
}

h3{
	font-size: 140%;
}

h4{
	font-size: 110%;
}

h5{
	font-size: 90%;
}

h6{
	font-size: 70%;
}

/* alter some HTML elements' default style
 */
 
a, a:link, a:visited, a:active{
	text-decoration: underline;
}

a:hover{
	text-decoration: none;
}

code{
	font-family: Verdana, Helvetica, Sans-serif, Comic Sans MS, Arial;
}

label{
	cursor: pointer;
}

table{
	font-size: 90%;
}

td, th{
	vertical-align: top;
}



/* now we craft the core layout of the page. this includes positioning and
 * gutter space. colors and fonts should not come into play at this point.
 * when defining a border, default its color to white which is probably
 * the safest thing to do.
 */

body{
	margin: 1px 4%;	/* margin instead of padding for the gutterspace around
	 			   the layout because IE breaks the layout when
	 			   horizontal padding is applied to the body element.
	 			   % over pixels for that horizontal gutterspace so that
	 			   it automatically goes below 20px on low-res browsers
	 			   to create more space for the content. */
	font-size: 90.1%;	/* resolve some font size issues in some layouts for
				   some browsers. (in other words, i got no clue.) */
}

#pageWrapper{
	border: solid 1px #fff;
	border-width: 0 1px;
	min-width: 40em;	/* IE doens't understand this property. EMs are used
				   so that as the font size increases, the proportional
				   limitations (min-width) increase with it, rather
				   than creating a middle column that can only fit
				   3 or 4 characters in it. */
	width: auto;
}

* html #pageWrapper{
	/* \*/
		word-wrap: break-word;
	/* invalid CSS but keeps IE from breaking horribly under narrow viewports */
}

#masthead{
	border: solid 1px #fff;
	border-bottom: medium #000000 solid;
	border-top: solid #fff solid;
	border-top-width: 1px;
	border-width: 1px 0;
	padding: 0.5em;
	height: 40px;
}
#masthead h1{
	padding: 0;
	margin: 0;
}
#outerColumnContainer{
	/* reserves space for the left and right columns. you can use either
	 * padding, margins, or borders, depending on your needs. however you
	 * can use the border method to create a background color for both left
	 * and right columns
	 */
	border-left: solid 14em #fff;
	border-right: solid 14em #fff;
}

#innerColumnContainer{
  border: solid 1px #fff;
	border-left: medium #000000 dashed;
	border-right: medium #000000 dashed;
	border-width: 0 1px;
	margin: 0 -1px;		/* compensate for the borders because of 100% width declaration */
	width: 100%;
	z-index: 1;
  background-image: url('../images/flag_back_h.png');
  background-repeat: no-repeat;
  background-position: center center;
}

#leftColumn, #middleColumn, #rightColumn, * html #SOWrap{
	overflow: visible;	/* fix for IE italics bug */
	position: relative;	/* fix some rendering issues */
}

#SOWrap{
	float: left;
	margin: 0 -1px 0 0;
	width: 100%;
	z-index: 3;
}

#middleColumn{
	float: right;
	margin: 0 0 0 -1px;
	width: 100%;
	z-index: 5;
}

#leftColumn{
	float: left;
	margin: 0 1px 0 -14em;
	width: 14em;
	z-index: 4;
}

#rightColumn{
	float: right;
	width: 14em;
	margin: 0 -14em 0 1px;
	z-index: 2;
}

#footer{
	border: solid 1px #fff;
	border-bottom: solid 1px #fff;
	border-top: medium #000000 solid;
	border-width: 1px 0;
	background-color: #FFEA77;
	color: #000000;
	text-align: center;  	
	padding: 0.2em;
	height: 40px;
}

p.fontsize-set{
	text-align: center;
}

p.fontsize-set img{
	border-width: 0;
}

/* vertical navigation stuff. mostly exactly as seen in the vnav.css styleheet
 * in the original skidoo layout.
 */
.vnav{
	margin: 1em 0;
}
.vnav ul, .vnav ul li{
	margin: 0;
	padding: 0;
	list-style-type: none;
	display: block;

}
.vnav ul{
	border: solid 1px #fff;
	border-bottom-width: 0;
}
.vnav ul li{
	border-bottom: solid 1px #fff;
}
.vnav ul li, .vnav ul li a{
	margin: 0;
	display: block;
	padding: 0;
	line-height: normal;
}
.vnav ul li a{
	display: block;
	padding: 2px 5px 3px 5px;
}
.vnav ul li a, .vnav ul li a:link, .vnav ul li a:visited, .vnav ul li a:active, .vnav ul li a:hover{
	text-decoration: none;
	cursor: pointer;
}
.vnav h3{
	margin-bottom: 0;
	padding-bottom: 0;
	font-size: 126%;
}
* html .vnav ul li a/* hide from IE5.0/Win & IE5/Mac */{
	height: 0.01%;
}

* html .vnav ul{
	position: relative;	/* IE needs this to fix a rendering problem */
}


/* everything below this point is related to the page's "theme" and could be
 * placed in a separate stylesheet to allow for multiple color/font scemes on
 * the layout. you should probably leave a default theme within this stylesheet
 * just to be on the safe side.
 */
#pageWrapper, #masthead, #innerColumnContainer, #footer, .vnav ul, .vnav ul li{
	border-color: #565;
}

html, body{
	/* note that both html and body elements are in the selector.
	 * this is because we have margins applied to the body element
	 * and the HTML's background property will show through if
	 * it is ever set. _DO_NOT_ apply a font-size value to the
	 * html or body elements, set it in #pageWrapper.
	 */
	background-color: #eee;
	color: #000;
	font-family: Verdana, Helvetica, Sans-serif, Comic Sans MS, Arial;
}

#pageWrapper{
	font-size: 80%;	/* set your default font size here. */
}
#masthead{
	background-color: #FFEA77;/*FFF877#FFFBAB;*/
	color: #000000;
}

#outerColumnContainer{
	border-left-color: #FED774; /*#ECECEC;	 left column background color */
	border-right-color: #FED774;/*#ECECEC;	 right column background color */
	background-color: #fff;		/* set the background color for the
					   middle column here */
}

.vnav ul li a:link, .vnav ul li a:visited, .vnav ul li a:active{
	text-decoration: none;
	background-color: #cdc;
	color: #000;
	
}
.vnav_l1 ul li a:link, .vnav_l1 ul li a:visited, .vnav_l1 ul li a:active{
	text-decoration: none;
  background-color: #F39201;/*FEA41E*/
	color: #000000;
	font-size: 9pt;
	font-family: Comic Sans MS,helvetica,sans-serif,arial;
}

.vnav_l2 ul li a:link, .vnav_l2 ul li a:visited, .vnav_l2 ul li a:active{
	text-decoration: none;
	background-color:#FEC064;/*FEB84E*//*FEC36A*//*FFCF88*/
	color: #000000;
	font-size: 8pt;
	font-family: Comic Sans MS,helvetica,sans-serif,arial;
}

.vnav_l3 ul li a:link, .vnav_l3 ul li a:visited, .vnav_l3 ul li a:active{
	text-decoration: none;
	background-color: #FFD9A1;/*FFCE85*//*FFD493*//*E7E7E7*/
	color: #000000;
	font-size: 7pt;
	font-family: Comic Sans MS,helvetica,sans-serif,arial;
}

.vnav_l4 ul li a:link, .vnav_l4 ul li a:visited, .vnav_l4 ul li a:active{
	text-decoration: none;
	background-color: #FFF0D9;/*FFE2B7*//*F33666*/
	color: #000000;
	font-size: 6pt;
	font-family: Comic Sans MS,helvetica,sans-serif,arial;
}

.vnav_l5 ul li a:link, .vnav_l5 ul li a:visited, .vnav_l5 ul li a:active{
	text-decoration: none;
	background-color: #FFFFFF;
	color: #000000;
	font-size: 6pt;
	font-family: Comic Sans MS,helvetica,sans-serif,arial;
}

.vnav_mm ul li a:link, .vnav_mm ul li a:visited, .vnav_mm ul li a:active{
	text-decoration: none;
	width: 200px;
	margin:auto;
}

#rightColumn .vnav ul li a:link, #rightColumn .vnav ul li a:visited, #rightColumn .vnav ul li a:active{
	background-color: #ded;
}
.vnav ul li a:hover, #rightColumn .vnav ul li a:hover{
	text-decoration: none;
	background-color: #EF4001; /* ONMOUSEOVER COLOR*/
	/*font-style: italic;*/
	color: #fff;
	/*border-style: groove;
	border: 1px dashed black;*/
}

#rightColumn .inside{
	/* if you apply a font size to just #rightColumn, then its width,
	 * which is specified in EMs, will also be affected. you don't want
	 * that. so apply font size changes to the .inside element which exists
	 * inside underneath all three columns
	 */
	font-size: 90%;
}

#rightColumn .inside .vnav{
	font-size: 110%;
}

/******************************************************************************/
/* **** MY ADDED CODE **** */

table.pgtab, tr.pgtr, td.pgtd{
  border-style:solid;
  border-width:1px;
  border-color:#000000;
  border-collapse:collapse;
  padding:5px;

}
.pgtab{
  background-color: #FFF67F;
}

table.mtab, tr.mtr, td.mtd, mtd.h5{
  border-style:none;
  border-width:0px;
  border-color:#000000;
  border-collapse:collapse;
  padding:0px;
  margin-top: 2px;
  margin-bottom: 2px;
}

/* TABLE AND FONT STYLES FOR STATS */
table.sttab, tr.sttr1, tr.sttr2, td.sttd, .sttdleft{
  border-style:dashed;
  border-width:1px;
  border-color:#000000;
  border-collapse:collapse;
  padding:5px;
}
.sttdleft{
  margin-top: 5px;
  margin-bottom: 5px;
  margin-left: 5px;
  margin-right: 5px;
  font-weight: bold;
}
.sttd{
  margin-top: 5px;
  margin-bottom: 5px;
  margin-left: 5px;
  margin-right: 5px;
}
tr.sttr1{
  background-color:#FEC064;
}
tr.sttr2{
  background-color:#FFD9A1;
}

th.stth{
  border-style:dashed;
  border-width:1px;
  border-color:#000000;
  margin-top: 2px;
  margin-bottom: 2px;
  background-color:#CACACA;
}
h5.stth{
  margin: 6px;
}
/* END OF TABLE AND FONTS STYLES FOR STATS*/

div.scroll{
  background-color:#FEE39E;
  width:100%;
  height:220px;
  overflow:auto;
  padding: 3px;
  font-family: helvetica,sans-serif,Comic Sans MS,arial;
}

.cssswi, .cssswi:link, .cssswi:visited, .cssswi:active{
	text-decoration: underline;
}
.cssswi:hover{
	text-decoration: none;
	background-color: #F39201;
}

.listrow, .listrow:link, .listrow:visited, .listrow:active{
	text-decoration: underline;
}
.lisseltrow{
	text-decoration: none;
	background-color: #F39201;
	color: #ffffff;
	font-weight: bold;
}

a.lissel:hover{
	text-decoration: none;
	background-color: #F39201;
	color: #ffffff;
	font-weight: bold;
}
a.lissel:visited, a.lissel:active, a.lissel:link{
	text-decoration: underline;
}
a.lisselarch:hover{
	background-color:#FC702C;
	font-weight: bold;
	color:#ffffff;
}
a.lisselarch:visited, a.lisselarch:active, a.lisselarch:link{
	text-decoration: underline;
	font-style: italic;
	color:#686868;
}

.listnosymb{
	list-style-position: outside;
  list-style-type: none;
  margin-left: 0;
}

td.doclist{
  padding: 0.3em;
  vertical-align: top;
	font-size: 80%;
}
h5.header{
	/*margin-top: 2px;
    margin-bottom: 2px;
    margin-left: 2px;
    margin-right: 2px;
font-size-adjust:0.1;
    */
    margin: 0px;
	font-family:Comic Sans MS;
	font-size: 90%;
    text-align:center;
}
h5.right{
    margin-top: 2px;
    margin-bottom: 2px;
	font-family:Comic Sans MS;
	font-size: 100%;
    text-align:left;
}

td.header{
  border-style:outset;
  border-width:2px;
  vertical-align:middle;
  margin: 0px;
}
h1.headerTit{
  letter-spacing:5pt;
	font-family: Verdana, Helvetica, Sans-serif, Comic Sans MS, Arial;
}
a.menuH{
  background-color:#EF4001;
  color:#ffffff;
  font-weight:600;
}
/* Div per header.php*/

#titcontainer_over{
  position:relative;
  left: 5px;
  top:0px;
  font-family: Verdana, Helvetica, Sans-serif, Comic Sans MS, Arial;
  font-size: 1.5em;
  letter-spacing:2pt; 
  /*font-weight: bold;*/ 
}
#titcontainer_bott{
  position:relative;
  left: 5px;
  top:22px;
  font-family: Verdana, Helvetica, Sans-serif, Comic Sans MS, Arial;
  font-size: 1.3em;
  font-style: italic;
  letter-spacing:1.5pt; 
  /*font-weight: bold;*/ 
}
#titimg{
  position: absolute;
}
#tithead {
  position: absolute;
  left: 45px;
  top:-2px;
  vertical-align: middle;
  z-index: 4;
}
#titshadow {
  color: #F1CE41;
  position: absolute;
  float: right;
  left: 48px;
  top: 1px;
  z-index: 3;
}

#visitcontainer {
  position: relative;
  float: right;
  right: 5px;
  width: 250px;
  text-align: center;
  font: italic 0.7em Verdana, serif;  
}

#visit {
  position: absolute;
  float: right;
  right: 10px;
  background-color: #FFEA77;
  color: #000;
  border-top: none;
  border-left: none;
  border-bottom: 3px solid #F1CE41;
  border-right: 3px solid #F1CE41;   
  padding: 3px;
}
#online {
  position: absolute;
  float: right;
  right: 150px;
  background-color: #FFEA77;
  color: #000;
  border-top: none;
  border-left: none;
  border-bottom: 3px solid #F1CE41;
  border-right: 3px solid #F1CE41;   
  padding: 3px;
}


/*FINE DEI DIV PER header.php*/
#lstupd{
  font-size: 0.8em;
	font-family: Verdana, Helvetica, Sans-serif, Comic Sans MS, Arial;
}




#csecont{
  position: relative;
  float: left;
  top: 0em;
  left: 0em;
	width: 100px;
	background-color: transparent;/*transparent*/
}
#cselogo{
  position: relative;
  float: left;
  vertical-align: top;
	height: 40px;
  top: 0em;
  left: 0em;
	background-color: transparent;/*transparent*/
	z-index: 1;	
}
#csetxt{
  position: relative;
	height: 10px;
  top: 10px;
  left: 40px;
	text-align: left;
	font-size: 0.65em;
	background-color: transparent;
	z-index: 2;	
}
#footAnn{
  position: relative;
  float: center;
  font-size: 1.2em;
  font-weight:bold;
	font-family: Verdana, Helvetica, Sans-serif, Comic Sans MS, Arial;
}


#contintro{
  position:static;
}
#contintro_over{
  position:relative;
  left: 10px;
  top:5px;
  font-family: Verdana, Helvetica, Sans-serif, Comic Sans MS, Arial;
  font-size: 1.5em;
  letter-spacing:2pt; 
}
#contintro_bott1{
  position:relative;
  left: 55px;
  top: 35px;
  font-family: Verdana, Helvetica, Sans-serif, Comic Sans MS, Arial;
  font-size: 2em;
  font-style: italic;
  letter-spacing:1.5pt; 
  /*font-weight: bold;*/ 
}
#contintro_bott2{
  position:relative;
  left: 10px;
  bottom:5px;
  font-family: Verdana, Helvetica, Sans-serif, Comic Sans MS, Arial;
  font-size: 1.3em;
  font-style: italic;
  letter-spacing:1.5pt; 
  /*font-weight: bold;*/ 
}
#flagintro{
  position: absolute;
}

#imgintro{
  width:500px;
  height:200px;
  position:relative;
  left: 5px;
  top:70px;
}
/*.img1{
  position: relative;
  left: 5px;
  top: 30px;
}
.img2{
  position: relative;
  left: 170px;
}
.img3{
  position: absolute;
  float: right;
  left: 300px;
  top: 50px;
}
.img4{
  position: absolute;
   float: right;
   left: 300px;   
   top: 220px;
}
.img5{
   position:absolute;
   left: 5px;
   top: 220px;
}*/

.imga{
  position: absolute;
  float: left;
  left: 5px;
  top: 5px;
}
.imgb{
  width: 200px;
  position: relative;
  left: 150px;
  top: 40px;
}
.imgc{
  position: absolute;
  float: right;
  left: 300px;
  top: 60px;
}
.txtinfo{
  position: relative;
  float: left;
  left: 20px;
  top: 50px;
  width: 500px;
  /*background-color: #CACACA;*/
  color: withe;
  text-align:center;
  size:12px;
}
#txtdescintro {
  color: #000000;
  position: relative;
  left: 5px;
  top:70px;
}
#txtintro {
  color: #FF0000;
  position: absolute;
  left: 45px;
  top:-2px;
  vertical-align: middle;
  z-index: 4;
}
#txtintro_shadow {
  color: #F1CE41;
  position: absolute;
  float: right;
  left: 48px;
  top: 1px;
  z-index: 3;
}
div.scrolldir{
  background-color:#FEE39E;
  width:100%;
  height:220px;
  overflow:auto;
}
