@media screen, print {
h1 {
	font-family: "Times new roman", Times, sans;
	font-size: 16px;
	font-weight: bold;
}

h2 {
	font-family: "Times new roman", Times, sans;
	font-size: 14px;
	font-weight: bold;
}
}

@media screen {
body {
	background-color:#bbb ;
	text-align: center;
}

.main {
	position: relative;
	margin: 0px auto;
	text-align: left;
	width: 400px ;
}
p, ul, dl {
	font-family: verdana, arial, helvetica, sans-serif;
	font-size: 12px;
}

a {
	color: #333;
}

#home {
	position:absolute;
	top: 5px;
	left: 5px;
	text-align: left;
	position: fixed;
}
}

@media print {
body {
	background-color:#fff ;
	text-align: left;
	color: #000;
}

p, ul, dl {
	font-family: "Times new roman", Times, sans;
	font-size: 12px;
}

a {
	text-decoration: none;
	color: #000;
}

#home {
	display:none;
}
}
}