@charset "utf-8";

html,
body {
   margin:0;
   padding:0;
   height:100%;
   /*min-height: 100%; /*Req'd to stretch to bottom*/
}

body  {
	font-family: "Courier New", Courier, monospace;
	font-size: 12px;
	color: #000000;
	text-align: center; /* this centers the container in IE 5* browsers. The text is then set to the left aligned default in the #container selector */
	background-color: #FFF;
}

#container {
	width: 954px;
	height: auto;
	margin: 22px auto 0 auto;  /* TOP, RIGHT, BOTTOM, LEFT */
	text-align: left; /* this overrides the text-align: center on the body element. */
	background-image: url(images/bkgd_dividers.gif);
	background-repeat: repeat-y;
	background-position: center top;
}
#left {
	width: 174px; /* 238 - 32 - 32 = 174 */
	heigh: auto;
	padding: 0 32px 22px 32px;  /* TOP, RIGHT, BOTTOM, LEFT */
	float: left;
}
#right {
	width: 174px; /* 238 - 32 - 32 = 174 */
	heigh: auto;
	padding: 0 32px 22px 32px;  /* TOP, RIGHT, BOTTOM, LEFT */
	float: left;
}
#main {
	width: 414px; /* 478 - 32 - 32 = 414 */
	height: auto;
	padding: 0 32px 22px 32px;  /* TOP, RIGHT, BOTTOM, LEFT */
	float: left;
}
#header { /* contains "h1 a" */
	width: 175px;
	height: 174px;
	margin: 0 auto;
	background-image: url(http://www.kaesunmusic.com/images/header_logo.gif);
	background-repeat: no-repeat;
} 
#header h1 {
	margin: 0; /* zeroing the margin of the last element in the #header div will avoid margin collapse - an unexplainable space between divs. If the div has a border around it, this is not necessary as that also avoids the margin collapse */
}
#header h1 a {
	display: block; /* Allows you to change the width and height of the image */
	width: 175px;
	height: 174px;
	text-indent: -2000em; /* Hides the text in the h1 tag */
	text-decoration: none; /* Hides the underline of the hyperlink */
	z-index: 1000; /* IE Fix*/
}

#footer {
	width: 890px; /* 954 - 32 - 32 = 890 */
	height: 24px; /* 38 - 7 - 7 = 24 */
	padding: 7px 32px 7px 32px;  /* TOP, RIGHT, BOTTOM, LEFT */
	background:#000;
	z-index: 4;
	clear: both;
	
	font-size: 10px;
	text-transform: uppercase;
	color: #FFF;
}
#footer a {
	text-decoration: underline;
	outline: none; /* GETS RID OF DOTTED BORDERS AROUND IMG LINKS */
	color: #999;
}
#footer a:hover {
	color: #CCC;
	text-decoration: none;
}
#footerRight {
	width: auto;
	height: 24px;
	padding-top: 7px;
	float: right;
}

#footerIcons {
	width: auto;
	height: 24px;
	margin-bottom: 7px;
	float: left;
	position:inline;
	border: 0;
}

#footerIcons a {
	border: 0;
	text-decoration: none !important;
	outline: none; /* GETS RID OF DOTTED BORDERS AROUND IMG LINKS */
}