.alternate:nth-child(odd) {
    background: #e0e0e0;
}

.row>div:nth-child(n+2){
	vertical-align: middle;
	text-align: center;
	    padding-top: 6px;
    padding-bottom: 6px;
}


@media screen {
        .printerVisible {
            display: none;
        }
        .screenVisible {
            display: block;
        }
}
	
@media print {
        .printerVisible {
            display: block;
        }
        .screenVisible {
            display: none;
        }
		
		@page {
			size: landscape;
			
		}
		
		html, body {
			width: 297mm;
			height: 210mm;
		}
		
		.container{
			width: 297mm;
			height: 210mm;
		}
}