/* Basic styling for all visual media */@media all {	body {	background-color: #fff;	color: #000;	font-size: 95%;	font-family: Arial, Helvetica, sans-serif;	}	* {		font-size: 1em;	}		a {		color: #4F90CC;		text-decoration: none;			}	a:hover {		color: #999;	}}/* Set up the base fonts for the various media */@media handheld, print, projection, screen {	/* For the majority of visual media */	body {		font-family: Arial, Helvetica, sans-serif;	}	h1, h2, h3, h4, h5, h6 {		font-family: Arial, Helvetica, sans-serif;		color: #003399;	}	img {		border-width: 0;	}}@media tv {	/* For lo-res media */	body {		font-family: Arial, Helvetica, sans-serif;	}}@media tty {	/* For terminal and fixed-font media */	body {		font-family: "Courier New", Courier, mono;	}}/* Text sizing for all visual media */@media handheld, print, projection, screen, tty, tv {	h1 {		font-size: 200%;	}	h2 {		font-size: 150%;	}	h3 {		font-size: 125%;	}	h4 {		font-size: 115%;	}	h5 {		font-size: 100%;	}	h6 {		font-size: 85%;	}	p.leadParagraph {		font-size: 105%;		line-height: 1.5em;	}	p.largeType {		font-size: 105%;	}	p.smallDescription {	padding-top: 5px;	font-size: 75%;	font-weight: normal;	}	p.noLineHeight {		line-height: 1em;	}	div#breadcrumb {		font-size: 90%;		letter-spacing: .1em;	}	a.invisLink {		text-decoration: none;		color: inherit;	}	.legalText {		text-transform: uppercase;		font-size: 50%;		letter-spacing: 0.1em;	}	}/* Visual styling for all visual media */@media handheld, print, projection, screen, tty, tv {	form {		margin: 0;		padding: 0;	}	h1 {		margin: 0;		padding: 0;	}	h2, h3, h4, h5, h6 {		margin: 1em 0 0 0;		padding: 0;	}	label {		padding: 0.2em 0.3em 0.3em 0;	}	p {		color: #000;		line-height: 1.5em;		margin: 0 0 1em 0;		font-weight: normal;		font-size: 85%;	}}