/*<?php

function detect()
    {
    $browser = array ("IE","OPERA","MOZILLA","NETSCAPE","FIREFOX","SAFARI");
    $os = array ("WIN","MAC");
    $info['browser'] = "OTHER";
    $info['os'] = "OTHER";
    foreach ($browser as $parent)
        {
        $s = strpos(strtoupper($_SERVER['HTTP_USER_AGENT']), $parent);
        $f = $s + strlen($parent);
        $version = substr($_SERVER['HTTP_USER_AGENT'], $f, 5);
        $version = preg_replace('/[^0-9,.]/','',$version);
        if ($s)
            {
            $info['browser'] = $parent;
            $info['version'] = $version;
            }
        }
    foreach ($os as $val)
        {
        if (eregi($val,strtoupper($_SERVER['HTTP_USER_AGENT']))) $info['os'] = $val;
        }
    return $info;
    } 
	$d = detect();
	$b = $d['browser'];
	$v = $d['version'];
	$o = $d['os'];
	echo $b." - ".$v." - ".$o;
?>*/

body { background: url(images/bg.jpg) #000000 repeat-x; color:#999999; font:"Times New Roman", Times, serif 13px; }

a:link, a:visited { color:#999999; font:"Times New Roman", Times, serif 13px; }

#wrap {position:absolute; top:0px; margin:auto; left:50%; margin-left:-480px; min-height:640px; height: auto !important; height:640px; width:972px;}

#corpo {width:950px; float:left; min-height:438px; text-align:justify; padding:10px; background-color:#000000;}

#corpo h1 { color:#669900; font-size:16px; display:inline; padding-bottom:5px; }

#contenuto {  border:1px solid #39373C; float:left;  background-color:#000000;}

#head { width:972px; height:199px; background: url(images/head.jpg) no-repeat; float:left;}

#menu {width:972px; height:30px; background:url(images/menu.jpg) repeat-x; float:left; text-align:left}

#img_home { width:967px; height:404px; text-align:left; float:left}

#content { width:967px; min-height:400px; height: auto !important; height:400px; text-align:left; float:left; background-color:#000000;}

#footer { font-family:Tahoma; font-size:9px; margin-top:5px; color: #666666;float:left;}
#footer a:link, #footer a:visited {text-decoration:none;}
/* Menu */
ul#menu {line-height: 30px; white-space: nowrap; margin:0px; }
#menu li { float:right; display: inline; list-style-type: none; margin: 5px 7px 0px 7px; margin-top: 5px; padding:0px;  }
/*#menu a { margin:5px; padding: 7px 5px; min-height: 34px; height:34px;}*/
#menu a:link, #menu a:visited { font:15px "Times New Roman", Times, serif; color: #999999; text-decoration: none; }
#menu a:hover { color:#66CC00; } 
#menu li a#current { color:#66CC00;}

#l_attivo { color:#339900;}