/* CSS Media query pr banner responsive  -*/
@media only screen and (max-width: 479px) {
    #responsive_banner {
        background: url("http://www.topmanga.it/CONCORSOTOPMANGA3.jpg") center no-repeat;

    }
}
@media only screen and (min-width: 480px) {
    #responsive_banner {
        background: url("http://www.topmanga.it/CONCORSOTOPMANGA2.jpg") center no-repeat;
		
    }
}
@media only screen and (min-width: 1280px) {
    #responsive_banner {
        background: url("http://www.topmanga.it/CONCORSOTOPMANGA1.jpg") center no-repeat;
			
    }
}


/* Box-sizing -*/
* {
 -webkit-box-sizing: border-box;
 -moz-box-sizing: border-box;
 box-sizing: border-box;
 *behavior: url('/test/grid/script/boxsizing.htc');
}

/* Display block per gli elementi HTML5 su IE */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
nav,
section {
 display: block;
}

/* Immagini responsive */
img { 
 border:1; 
	vertical-align:middle; 
	-ms-interpolation-mode:bicubic;
}
 
img.scala { 
 max-width:100%; 
	height:auto; 
}

/* Stili di base e tipografia */
html {
  font-size: 100%;
}

body {
 margin: 0;
 padding: 0;
 font-family: "Helvetica Neue", Helvetica, Arial, sans-serif; 
 font-size: 16px;
 line-height: 20px;
 color:#333; 
 background-color: #FFFFFF;
 -webkit-text-size-adjust:100%;
}

a {
 color: #000000;
 text-decoration: none;
 font-weight:bold;
}

a:hover {
 color: #000000;
 text-decoration: none;
 font-weight:bold;
}
p{margin: 0,0,0.5em,0; }

h1, h2, h3, h4, h5, h6 { 
	font-family:"verdana"; 
} 

h1 { 
 font-size:42px; 
	line-height:46px; 
	margin-bottom:20px; 
}

h2 { 
 font-size:28px; 
	line-height:32px; 
	margin-bottom:12px; 
}

h3 { 
 font-size:21px; 
	line-height:25px; 
	margin-bottom:8px; 
}

table,tr,td {
padding: 0px;
}


/* Griglia */

.riga {
 width: 100%; 
 max-width: 960px; 
 min-width: 720px; 
 margin: 0 auto;
 background: #fff; 
}

[class*='colonna-'] {
 float: left; 
 min-height: 1px; 
 padding: 0 15px; 
 background: #fff; 
}

.colonna-1-3 {
 width: 33.33%;
}

.colonna-1-2 {
 width: 50%;
}

.colonna-1 {
 width: 100%;
}

[class*="colonna-"] + [class*="colonna-"]:last-child {float: right;}

/* Micro-clearfix */
.riga:before,
.riga:after {
 content: " "; 
 display: table;
}

.riga:after {
 clear: both;
}

.riga {
 *zoom: 1;
}

/* Stili  per le varie sezioni */

footer {
 border-top: 1px solid #333;
 border-bottom: 1px solid #333;
}

nav {
 clear: both;
 position: absolute;
 top: 70px;
 width: 100%;
 z-index: 10000;
 background: #ccc;
 padding: 0;
 display: none;
 border-top: 1px solid #333;
 border-bottom: 1px solid #333; 
}

nav ul {
 margin: 0;
 padding: 0;
}
nav ul li {
 list-style: none;
 float: left;
 padding: 0px;
}

nav ul li a { 
 padding: 4px;
 display: inline;
}

/*
nav {
 float: right; 
 padding: 20px 20px 0 0; 
}

nav ul, nav li {
 margin: 0;
 padding: 0;
}

nav ul li {
 list-style: none;
 float: left;
 margin-right: 5px;
}

nav ul li a {
 display: block;
 padding: 5px;
}
*/

/* MEDIA QUERY */
@media only screen and (max-width:600px) {

.riga { 
 width: auto;
 min-width: 0; 
 margin-left: 0; 
 margin-right: 0;
}
 
[class*="colonna-"] { 
 width: auto !important; 
 float: none;  
}

[class*="colonna"] + [class*="colonna"]:last-child {float: none;}
 
[class*="colonna-"]:before, [class*="colonna-"]:after {
 content:""; 
 display:table;
}

[class*="colonna-"]:after {clear: both;}

nav {
 clear: both;
 position: absolute;
 top: 70px;
 width: 100%;
 z-index: 10000;
 background: #fff;
 padding: 0;
 display: none;
}

nav ul {
 margin: 0;
 padding: 0;
}
nav ul li {
 list-style: none;
 float: none;
}

nav ul li a { 
 padding: 5px;
 display: inline;
}


}