/*	-- -- -- -- -- -- --	SXSW base CSS	-- -- -- -- -- -- --		This base file simply establishes common formatting for	each of the examples. Style unique to the problem is	embedded within the HTML, so you should be viewing that	instead to understand the problem.	*/	* {		margin: 0;		padding: 0;	}	a:link {		color: #06f;		font-weight: bold;	}	a:visited {		color: #039;		font-weight: bold;	}	a:hover {		color: #0af;		font-weight: bold;	}	body {		font: 76% "Myriad Pro", "Lucida Sans Unicode", "Lucida Grande", arial, sans-serif;		margin: 100px 100px 0 100px;	}	h1 {		font-size: 2em;		font-weight: normal;		margin: 0.3em 0;		color: #06f;	}	h2 {		font-size: 1em;		text-transform: uppercase;		font-weight: normal;		margin: 0 0 1em 0;	}	img {		border: 0;	}	p {		font-size: 1.2em;		line-height: 1.6;		margin: 0.8em 0;		color: #333;	}	li {		font-size: 1.5em;		color: #999;		list-style: square;		padding: 0;		margin: 0 0 0 1em;		line-height: 2;	}	li li {		font-size: 1em;		list-style: circle;	}	ul {		padding: 0;		margin: 0;	}				li a:link, li a:visited {		font-weight: normal;		text-decoration: none;		color: #333;	}	li a:hover {		text-decoration: underline;	}