/* ZERO OUT AND/OR SET DEFAULT VALUES FOR PROPERTIES USING THE UNIVERSAL SELECTOR */
* {
	margin: 0;
	padding: 0;
	border: 0;
	color: inherit;
	list-style: none;
	text-decoration: none;
}

/* STANDARDIZE LINK STYLES */
a {text-decoration: none;}
a:link {color: #666;}
a:visited {color: #666;}
a:hover {color: #000; text-decoration: underline;}
a:active {color: #000;}

body {
	background: #FFF;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	line-height: 14px;
}

#container {
	position: relative;
	width: 666px;
	margin: 10px auto;
}

#checker-left, #checker-right {
	background-image: url(_images/checker.gif);
	background-repeat: repeat-y;
	background-position: left top;
	width: 48px;
	height: 944px;
}

#checker-left {
	position: absolute;
	top: 0px;
	left: 0px;
}

#checker-right {
	position: absolute;
	top: 0px;
	right: 0px;
}

img#logo {
	margin-top: 50px;
}

img#scratch {
	position: relative;
	top: 20px;
	left: 60px;
	margin: 0 auto;
}

img#scratchtracks {
	margin-top: 75px;
}

div#tracklist {
	margin-top: 10px;
	padding-left: 150px;
	width: 300px;
	text-align: left;
}

div#tracklist h4 {
	font-size: 1.1em;
	line-height: 1.5em;
}

div#tracklist h4 span {
	font-size: 0.9em;
	font-weight: normal;
	color: #666;
}

#info {
	width: 450px;
	text-align: left;
	margin-top: 45px;
}

#contact {
	margin-top: 70px;
	margin-bottom: 35px;
}

img#angel {
	position: absolute;
	top: 415px;
	left: 158px;
}

img#palmist {
	position: absolute;
	top: 530px;
	left: 485px;
	z-index: -1;
}

/* Notes:
	margin: 0 auto; - This fixes a bug in IE 5.x Mac where some relatively positioned objects shift to the left.
*/
