@media print {
	.pagebreak {
		page-break-after: always;
		height: 0;
		display: block;  // optional. must be sure it is block item in document flow
	}
 
    @page {
        margin-top: 0;
        margin-bottom: 0; 
		size: A4;  
    }
    body {
        padding-top: 72px;
        padding-bottom: 72px ;
    }
}


.frmSearch {
	margin: 2px 0px;
	padding-bottom:100px;
}

#country-list {
	float: left;
	list-style: none;
	margin-top: -3px;
	padding: 0;
	width: 510px;
	height:100px;
	overflow-y:scroll;
	position: absolute;
}

#country-list li {
	padding: 10px;
	background: #f0f0f0;
	border-bottom: #bbb9b9 1px solid;
}

#country-list li:hover {
	background: #ece3d2;
	cursor: pointer;
}

#search-box {
	padding: 10px;
	border: #a8d4b1 1px solid;
	border-radius: 4px;
}