body {

	color: #111;

	margin: 0;

	padding: 0;

	font-family: Arial, Helvetica, sans-serif;

	font-size: 70%;

}



table, td {

	margin: 0;

	padding: 0;

	border: 0;

	border-collapse: collapse;

}



img {

	border: none;

}



.clear {

	clear: both;

	height: 0;

}



.hidden, ul.nav span {

	display: none;

}



table#main {

	background-color: #fff;

	margin: 0 auto;

}



div#header {

	width: 880px;

	height: 60px;

	padding: 10px 0 5px 0;

}



div#logo {

	float: left;

}

td#menu_container form {

	display: inline;

}



td#menu_container fieldset {

	position: absolute;

	float: left;

	display: inline;

	border: none;

	padding: 0;

	margin-top: 1px;

}



td#menu_container input {

	font-size: .8em;

}



input.searchInput {

	border: 2px solid #0C2F5A;

	background-color: #071f3b;

	color: #fff;

	width: 100px;
	
	padding: 1px 3px;

}



div#banner_top {

	float: right;

}



td#menu_container {

	border-left: 1px solid #071F3B;

	width: 880px;

	height: 22px;

}



div#menu {

	background-color: #071F3B;

	height: 22px;

	padding: 0 0 0 380px;

}



.nav li {

	margin: 0 10px 0 0;

}



a#menu_home:link, a#menu_home:visited {

	background-position: 0% 0%;

	background-repeat: no-repeat;

	height: 22px;

	display: block;

	background-image: url(../css/menu_home.png);

	width: 33px;

}



a#menu_archivio:link, a#menu_archivio:visited {

	background-position: 0% 0%;

	background-repeat: no-repeat;

	height: 22px;

	display: block;

	background-image: url(../css/menu_archivio.png);

	width: 50px;

}



a#menu_rubriche:link, a#menu_rubriche:visited {

	background-position: 0% 0%;

	background-repeat: no-repeat;

	height: 22px;

	display: block;

	background-image: url(../css/menu_rubriche.png);

	width: 54px;

}



a#menu_community:link, a#menu_community:visited {

	background-position: 0% 0%;

	background-repeat: no-repeat;

	height: 22px;

	display: block;

	background-image: url(../css/menu_community.png);

	width: 64px;

}



a#menu_contacts:link, a#menu_contacts:visited {

	background-position: 0% 0%;

	background-repeat: no-repeat;

	height: 22px;

	display: block;

	background-image: url(../css/menu_contacts.png);

	width: 54px;

}



a#menu_colophon:link, a#menu_colophon:visited {

	background-position: 0% 0%;

	background-repeat: no-repeat;

	height: 22px;

	display: block;

	background-image: url(../css/menu_colophon.png);

	width: 64px;

}



a#menu_alien:link, a#menu_alien:visited {

	background-position: 0% 0%;

	background-repeat: no-repeat;

	height: 22px;

	display: block;

	background-image: url(../css/menu_alien.png);

	width: 85px;

}



a#menu_home:hover, a#menu_home:active, a#menu_archivio:hover, a#menu_archivio:active, a#menu_rubriche:hover, a#menu_rubriche:active, a#menu_community:hover, a#menu_community:active, a#menu_contacts:hover, a#menu_contacts:active, a#menu_colophon:hover, a#menu_colophon:active, a#menu_alien:hover, a#menu_alien:active {

	background-position: bottom;

}



.nav ul li {

	width: 100%;

	margin: 0;

	padding: 0;

	overflow: hidden;

}



.nav ul a:link, .nav ul a:visited {

	text-decoration: none;

	color: #fff;

	display: block;

	padding: 4px 8px;

	white-space: nowrap;

}



.nav ul a:hover, .nav ul a:active {

	color: #000;

	background-color: #fff;

}



/* START SUPERFISH CSS (http://users.tpg.com.au/j_birch/plugins/superfish/) */



/* remove any default styles */

.nav, .nav * {

	margin:0;

	padding:0;

	list-style:none;

}



/* top ul.nav element */

.nav {

	line-height:1.0; /* makes calculating the 'top' value for first submenu easier */

}



/* nested submenu ul elements */

.nav ul {

	position:absolute; /* remove from flow and allow positioning */

	top:-999em; /* hide submenu in screen-reader and search-engine friendly way */

	width: 12em; /* VARIABLE. Must have a width for menu items to inherit. Use ems so font scaling does not break design*/

	background-color: #071F3B;

	border: 1px solid #fff;

	border-top: none;

	padding: 0;

}

/* submenu items */

.nav ul li,

.nav a { /* this affects top level anchors too */

	width: 100%; /* stretch submenu items to width of submenu ul width (see .nav ul rules above). When link text runs over more than one line, use padding and an explicit width for the anchor instead of width:100% and text-indent. Example below in the SKIN section */

}



/* all li elements */

.nav li {

	float:left; /* must float all li elements. Vertical submenu items are restrained by parent ul width (see .nav ul rules above) */

	position:relative; /* make child submenu ul position relative to parent li */

	z-index:99; /* ensure submenus appear above other page items. Increase if needed, but do not exceed thickbox overlay z-index! */

}



/* all anchor elements */

.nav a {

	 /* make IE6 obey width when text-indent is used */

}



/**** Position of second tier of nav ****/

.nav li:hover ul, /* this pure CSS hover is overridden by the .superfish rules below which are applied only when JavaScript is available. This way, the menu degrades to regular CSS dropdown when JavaScript is unavailable */

ul.nav li.sfHover ul /* this is the familiar IE6 hover support. With Superfish, all browsers use this rule when JS is available. This is because the JS needs to be able to control hide and reveal delays and animations without the pure CSS rule intruding. Note the tag selector ul.nav instead of just .nav - this gives it the most specificity of all and makes it trump all other positioning rules, including the .superfish overrides below */

{

	left:-1px; /* position first submenu directly under parent li */

	top:22px; /* VARIABLE. This is calculated by adding 1em text height to top and bottom anchor element padding (original skin: .75em top + .75em bottom + 1em text height = 2.5em) */

}



/**** Very important ****/

/* this negates the pure CSS hovers so submenu remains hidden and JS controls when and how it appears. This is in turn is overridden by the .sfHover rules above as they have greater specificity */

/* notice there are three selectors here. You need three for a four tier menu system. If you had a five tier system you would copy the last selector of these three and paste it below to create a fourth selector and add another li just after the .superfish part. On the other hand if you only had a three tiered menu you could delete the third line here and save some file size.*/

.superfish li:hover ul,

.superfish li li:hover ul,

.superfish li li li:hover ul {

	top: -999em; /* hide submenu in screen-reader and search-engine friendly way */

}



/* A quick note about issues with submenus appearing under Flash animations. Some say that setting wmode="transparent" on the embed or object tag is sufficient. This does fix many issues but I find it sometimes helps to also add this CSS: */

embed, object {

	position: relative;

	z-index: 0;

}



/* END SUPERFISH CSS */



table#content {

	background-color: #fff;

}



td#col_a {

	width: 375px;

	background-image: url(../css/speciale_bg.png);

	background-position: 0 0;

	background-repeat: no-repeat;

	border-left: 1px solid #071F3B;

	vertical-align: top;

}



div#speciale_image {

	float: left;

	margin: 0;

	padding: 0;

	width: 220px;

	margin: 0;

}



div#speciale_content {

	width: 149px;

	margin: 0;

	padding: 0;

	height: 0;

}



html> body div#speciale_content {

	height: auto;

	overflow: hidden;

}



div#home_speciale h3 {

	margin: 3px 4px;

	padding: 0;

	text-transform: uppercase;

	font-size: 1em;

	font-weight: bold;

}



div#home_speciale h3 a:link, div#home_speciale h3 a:visited {

	color: #ff9c00;

	text-decoration: none;

}



div#home_speciale h3 a:hover, div#home_speciale h3 a:active {

	color: #fff;

}



div#speciale_content p {

	padding: 0 0 0 4px;

	margin: 0;
	
	color: #222;

}



a.speciale_go:link, a.speciale_go:visited {

	background-image: url(../css/speciale_go.png);

	background-position: 0% 0%;

	width: 14px;

	height: 11px;

	display: block;

	float: right;

	margin: 4px 3px 0 0;

	padding: 0;

}



a.speciale_go:hover, a.speciale_go:active {

	background-position: bottom !important;

}



div#speciale_content img {

	margin: 8px 0 0 0;

}



div#home_rece {

	margin: 0;

}



div#home_recensioni {

	width: 183px;

	float: left;

	border-right: 1px solid #071F3B;

	margin: 0;

	padding: 0;

}



div#home_recensioni h3 {

	margin: 15px 0 0 0;

	padding: 0;

	background-image: url(../css/header_recensioni.png);

	background-repeat: no-repeat;

	background-position: 0% 0%;

	width: 86px;

	height: 17px;

}



div#home_recensioni h3 a {

	display: block;

	width: 86px;

	height: 17px;

}



div#home_minirecensioni {

	width: 183px;

	float: left;

	margin: 0;

	padding: 0;
	
}



div#home_minirecensioni h3 {

	margin: 15px 0 0 0;

	padding: 0;

	background-image: url(../css/header_minirecensioni.png);

	background-repeat: no-repeat;

	background-position: 0% 0%;

	width: 108px;

	height: 17px;

}



div#home_minirecensioni h3 a {

	display: block;

	width: 108px;

	height: 17px;

}



ul#recensioni_list {

	padding: 15px 0 0 0;

	margin: 0 0 0 6px;

}



ul#recensioni_list li {

	float: left;

	list-style: none;

	padding: 0;

	margin: 0 0 8px 0;	

	line-height: .95em;
	
	color: #222;

	width: 170px;

}



ul#recensioni_list img {

	float: left;

	margin: 0 4px 0 0;

}



a.recensioni_titolo:link, a.recensioni_titolo:visited {

	text-transform: uppercase;

	text-decoration: none;

	color: #222;

	font-weight: bold;

}



a.recensioni_titolo:hover, a.recensioni_titolo:active {

	color: #347dd0;	

}



ul#minirecensioni_list {

	padding: 15px 0 0 0;

	margin: 0 0 0 6px;

}



ul#minirecensioni_list li {

	float: left;

	list-style: none;

	padding: 0;

	margin: 0 0 8px 0;	

	line-height: .95em;
	
	color: #222;
	
	width: 170px;

}



ul#minirecensioni_list img {

	float: left;

	margin: 0 4px 0 0;

}



a.minirecensioni_titolo:link, a.minirecensioni_titolo:visited {

	text-transform: uppercase;

	text-decoration: none;

	color: #222;

	font-weight: bold;

}



a.minirecensioni_titolo:hover, a.minirecensioni_titolo:active {

	color: #347dd0;	

}



div#home_alienpress {  }



div#home_alienpress h3 {

	margin: 15px 0 0 0;

	padding: 0;

	background-image: url(../css/header_ecomics.png);

	background-repeat: no-repeat;

	background-position: 0% 0%;

	width: 75px;

	height: 14px;

}



div#home_alienpress h3 a {

	display: block;

	width: 75px;

	height: 14px;

}



ul#alienpress_list {

	padding: 15px 0 0 0;

	margin: 0 0 0 20px;

}



ul#alienpress_list li {

	float: left;

	list-style: none;

	padding: 0;

	margin: 0 16px 0 0;

	width: 100px;
	
	color: #222;

}

ul#alienpress_list li img {
	max-width:100px;
	width:expression(document.body.clientWidth > 100? "100px": "auto" );
}



ul#alienpress_list a:link, ul#alienpress_list a:visited {

	color: #000;

	text-decoration: none;

}



ul#alienpress_list a:hover, ul#alienpress_list a:active {

	text-decoration: underline;

}



td#col_b {

	background-image: url(../css/home_right_bg.png?updated=20080622);

	background-position: left bottom;

	background-repeat: no-repeat;

	width: 506px;

	vertical-align: top;

}



td#col_c {

	width: 204px;

	vertical-align: top;

}



div#home_news {

	padding: 0 0 0 4px;

	overflow: hidden;

}



h3#header_hotnews {

	margin: 15px 0 0 0;

	padding: 0;

	background-image: url(../css/header_hotnews.png);

	background-repeat: no-repeat;

	background-position: 0% 0%;

	float: right;

	clear: both;

	width: 78px;

	height: 19px;

}



h3#header_hotnews a {

	display: block;

	width: 78px;

	height: 19px;

}



h3#header_news {

	margin: 15px 0 0 0;

	padding: 0;

	background-image: url(../css/header_news.png);

	background-repeat: no-repeat;

	background-position: 0% 0%;

	float: right;

	clear: both;

	width: 52px;

	height: 16px;

}



h3#header_news a {

	display: block;

	width: 52px;

	height: 16px;

}



ul#news_list {

	padding: 0;

	margin: 10px 0 0 2px;

	clear: both;

}


ul#othernews_list {

	padding: 0;

	margin: 10px 0 8px 2px;

	clear: both;

}


ul#news_list li {

	float: left;

	list-style: none;

	padding: 0 6px 0 0;

	margin: 16px 0 0 0;	

	line-height: .98em;
	
	color: #222;
	
}

ul#news_list img {

	float: left;

	margin: 0 4px 0 0;

}

ul#othernews_list li {

	list-style: none;

	padding: 0;

	margin: 0 0 2px 0;
	
	text-align: left;
	
	width: 100%;
	
	color: #222;

}

ul#othernews_list a {

	font-weight: normal;

	text-transform: none;
}

ul#othernews_list img {

	float: left;

	margin: 5px 4px 0 0;

	width: 4px;

	height: 4px;
}

ul#hotnews_list {

	padding: 0;

	margin: 10px 0 0 2px;

	clear: both;

}



ul#hotnews_list li {

	float: left;

	list-style: none;

	padding: 0 6px 0 0;

	margin: 16px 0 0 0;	

	line-height: .98em;
	
	color: #222;

}



ul#hotnews_list img {

	float: left;

	margin: 0 4px 0 0;

}



a.news_titolo:link, a.news_titolo:visited {

	text-transform: uppercase;

	text-decoration: none;

	color: #222;

	font-weight: bold;

	padding: 0 0 6px 0;

}



a.news_titolo:hover, a.news_titolo:active {

	color: #4a4a4a;	

}



div#home_news h4 {

	margin: 10px 0 0 2px;

	padding: 8px 0 0 0;

	border-top: 1px dashed #000;

	font-size: 1em;

}

p#altrenews {
	margin: 0 0 10px 0;
	padding: 0;
}

p#altrenews a:link, p#altrenews a:visited {

	text-transform: uppercase;

	color: #222;

	text-decoration: none;

	margin: 0 0 0 2px;

	padding: 0;

}



p#altrenews a:hover, p#altrenews a:active {

	text-decoration: underline;

}



td#col_d {

	width: 152px;

	vertical-align: top;

	padding: 0 0 12px 0;

}



div#rubriche {

	margin: 0;

	padding: 0;

}



h3#header_rubriche {

	margin: 15px 0 0 0;

	padding: 0;

	background-image: url(../css/header_rubriche.png);

	background-repeat: no-repeat;

	background-position: 0% 0%;

	float: right;

	clear: both;

	width: 79px;

	height: 19px;

}



h3#header_rubriche a {

	display: block;

	width: 78px;

	height: 19px;

}



ul#rubriche_list {

	padding: 0;

	margin: 10px 0 0 6px;

	clear: both;

}



ul#rubriche_list li {

	float: left;

	list-style: none;

	padding: 0 6px 0 0;

	margin: 8px 0 0 0;

	line-height: .98em;
	
	color: #222;

}



html> body ul#rubriche_list li {

	margin: 16px 0 0 0;	

}



ul#rubriche_list img {

	float: left;

	margin: 0 4px 0 0;

}



a.rubriche_titolo:link, a.rubriche_titolo:visited {

	text-transform: uppercase;

	text-decoration: none;

	color: #ff9c00;

	font-weight: bold;

	padding: 0 0 6px 0;

}



a.rubriche_titolo:hover, a.rubriche_titolo:active {

	color: #E88B00;	

}



p.rubriche_desc {

	margin: .3em 0 0 0;

}



td#col_e {

	width: 149px;

	vertical-align: top;

	padding: 0 0 14px 0;

}



div#banner {

	background-color: #fff;

	text-align: center;

	padding: 10px 0;

}



h3#header_anteprime {

	margin: 15px 0 0 0;

	padding: 0;

	background-image: url(../css/header_anteprime.png);

	background-repeat: no-repeat;

	background-position: 0% 0%;

	width: 83px;

	height: 20px;

}



h3#header_anteprime a {

	display: block;

	width: 83px;

	height: 20px;

}



h3#header_analisi {

	margin: 15px 0 0 0;

	padding: 0;

	background-image: url(../css/header_analisi.png);

	background-repeat: no-repeat;

	background-position: 0% 0%;

	width: 60px;

	height: 20px;

}



h3#header_analisi a {

	display: block;

	width: 60px;

	height: 20px;

}



h3#header_interviste {

	margin: 15px 0 0 0;

	padding: 0;

	background-image: url(../css/header_interviste.png);

	background-repeat: no-repeat;

	background-position: 0% 0%;

	width: 80px;

	height: 17px;

}



h3#header_blog {

	margin: 15px 0 0 0;

	padding: 0;

	background-image: url(../css/header_blog.png);

	background-repeat: no-repeat;

	background-position: 0% 0%;

	width: 47px;

	height: 22px;

}



h3#header_blog a {

	display: block;

	width: 47px;

	height: 22px;

}



h3#header_checklist {

	margin: 15px 0 0 0;

	padding: 0;

	background-image: url(../css/header_checklist.png);

	background-repeat: no-repeat;

	background-position: 0% 0%;

	width: 83px;

	height: 20px;

}



h3#header_checklist a {

	display: block;

	width: 75px;

	height: 22px;

}





h3#header_interviste a {

	display: block;

	width: 80px;

	height: 22px;

}



ul#anteprime_list, ul#analisi_list, ul#interviste_list, ul#blog_list, ul#checklist_list {

	padding: 0;

	margin: 0 0 0 6px;

	clear: both;
	
}



ul#anteprime_list li, ul#analisi_list li, ul#interviste_list li, ul#blog_list li, ul#checklist_list li {

	float: left;

	list-style: none;

	padding: 0 12px 0 0;

	margin: 8px 0 0 0;

	line-height: .98em;

	color: #222;
}



html> body ul#anteprime_list li, html> body ul#analisi_list li, html> body ul#interviste_list li, html> body ul#blog_list li, html> body ul#checklist_list li {

	margin: 16px 0 0 0;	

}



a.anteprime_titolo:link, a.anteprime_titolo:visited, a.analisi_titolo:link, a.analisi_titolo:visited, a.interviste_titolo:link, a.interviste_titolo:visited, a.blog_titolo:link, a.blog_titolo:visited, a.checklist_titolo:link, a.checklist_titolo:visited {

	text-transform: uppercase;

	text-decoration: none;

	color: #222;

	font-weight: bold;

	padding: 0 0 6px 0;

}



a.anteprime_titolo:hover, a.anteprime_titolo:active, a.analisi_titolo:hover, a.analisi_titolo:active, a.interviste_titolo:hover, a.interviste_titolo:active, a.blog_titolo:hover, a.blog_titolo:active, a.checklist_titolo:hover, a.checklist_titolo:active {

	color: #333;	

}



div#strip {

	float: left;

	width: 579px;

	padding: 0;

	border-right: 1px solid #071F3B;

}


div#strip img {
	max-width:578px;
	width:expression(document.body.clientWidth > 578? "578px": "auto" );
}

p.strip_desc {

	padding: 0 12px;

	margin: 0;

	background-image: url(../css/strip_bg.png);

	background-position: bottom;

	background-repeat: no-repeat;

}



a.oldstrips {

	text-align: right;

	color: #000;

}



div#support {

	float: left;

}



div#support h3 {

	margin: 15px 0 0 0;

	padding: 0;

	background-image: url(../css/header_support.png);

	background-repeat: no-repeat;

	background-position: 0% 0%;

	width: 86px;

	height: 20px;

}



ul#support_list {

	padding: 15px 0 0 0;

	margin: 0 0 0 30px;

}



ul#support_list li {

	float: left;

	list-style: none;

	padding: 0;

	margin: 0 16px 0 0;

	width: 117px;
	
	color: #222;

}

ul#support_list li img  {

	max-height:120px;
	
}

ul#support_list a:link, ul#support_list a:visited {

	color: #222;

	text-decoration: none;

}



ul#support_list a:hover, ul#support_list a:active {

	text-decoration: underline;

}



td#thumb {

	width: 53px;

	background-image: url(../css/thumb_bg.png);

	background-position: 0% 0%;

	background-repeat: no-repeat;

	vertical-align: top;

}



td#thumb img {

	margin: 1px;

}



td#articolo {

	width: 665px;

	padding: 0 6px;

	vertical-align: top;

	border-left: 1px solid #071F3B;

	border-right: 1px solid #071F3B;
	
}



h3#titolo {

	background-image: url(../css/header_articolo.png);

	background-position: left;

	background-repeat: no-repeat;

	background-color: #FFC059;
	
	color: #222222;

	float: right;

	padding: 2px 10px 2px 50px;

	margin: 0 -6px 0 0;

	font-size: 1.1em;

	font-weight: bold;

	text-transform: uppercase;

	clear: both;
	
	height: 14px;
	
	overflow: hidden;

}

div#article.small { font-size: .95em; }
div#article.medium { font-size: 1.05em; }
div#article.large { font-size: 1.4em; }

td#articolo p.sharebar {
	font-size: 1em;
	text-align: right;
	background-color: #fff;
	color: #bbb;
	margin: 6px -6px 0 -6px;
	padding: 0 4px 0 0;
	border-top: 0px solid #dadada;
}

p.sharebar a:link, p.sharebar a:visited {
	text-decoration: none;
	color: #006386;
}

p.sharebar a:hover, p.sharebar a:active {
	color: #071f3b;
}

span#text_size {
	background-image: url(../css/sharebar_text.png);
	background-repeat: no-repeat;
	padding: 0 0 0 17px;
	height: 14px;
	width: 14px;
}

span#text_size abbr {
	border: none;
}

a#stampa {
	background-image:url(../css/sharebar_print.png);
	background-repeat: no-repeat;
	padding: 0 0 0 20px;
}

td#banner_page {

	vertical-align: top;

	width: 150px;

	height: 400px;

	background-image: url(../css/banner_page_bg.png);

	background-position: 0% 0%;

	background-repeat: no-repeat;

	text-align: center;

	padding: 10px 0 0 0;

}

.latestItem {

	padding: 0 0 0 15px;

}



.latestNewsItem {

	padding: 0 0 0 15px;

}



.latestNewsItem img{

	vertical-align: middle;

}



.author {

	text-align: right;

}

.middleBanner {

	margin: 0 0 10px 0;

	text-align: center;

}

#paging {

	color: #666666;

	text-align: center;	

}

a.viewmore:link, a.viewmore:visited {
	font-weight: bold;
	text-decoration: none;
	color: #000;
}

a.viewmore:hover, a.viewmore:active {
	color: #fff;
}

.rate {
	float: none;
	display: inline;
	margin-top: 2px;
}

p#header_regolamento {
	text-transform: uppercase;
	padding: 0;
	margin: 0;
	display: inline;
	font-weight: normal;
	font-size: 1em !important;
}

a#header_regolamento_forum:link, a#header_regolamento_forum:visited, a#header_regolamento_mercatino:link, a#header_regolamento_mercatino:visited {
	color: #444;
}

a#header_regolamento_forum:hover, a#header_regolamento_forum:active, a#header_regolamento_mercatino:hover, a#header_regolamento_mercatino:active {
	color: #000;
}

.regolamento_sel {
	text-decoration: none;
	font-weight: bold;
	cursor: text;
}
