@charset "UTF-8";
body {
	margin: 0; /* it's good practice to zero the margin and padding of the body element to account for differing browser defaults */
	padding: 0;
	/*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 */
	color: CCCCCC;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 1em;
	line-height: 160%;
	background-color: #eaeced;
}
.main-style #container {
	width: 1000px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	margin: 0;
	border: 0;
	text-align: left; /* this overrides the text-align: center on the body element. */
	background-image:url(images/home-hikyung-purple2.jpg);
	background-repeat: no-repeat;
	background-attachment: scroll;
	background-color: #CCCCCC;
	border-right-color: #000000;
}
.main-style #header {
	padding: 0;  /* this padding matches the left alignment of the elements in the divs that appear beneath it. If an image is used in the #header instead of text, you may want to remove the padding. */
	width: 1000px;
	height: 180px;
	margin: 0;
	border: 0;
}
.main-style #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 */
	padding: 0; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
}
.main-style #mainContent {
	margin-left: 0px;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 0.75em;
	margin-right: 0px;
	padding-left: 530px;
	padding-right: 30px;
	border-color: #000000;
	outline-color: #000000;
	line-height: 180%;
	color: #555555;
}
.main-style #footer {
	padding: 0;
	width: 1000px;
}
.main-style #footer p {
	margin: 0; /* zeroing the margins of the first element in the footer will avoid the possibility of margin collapse - a space between divs */
	padding: 0px 0; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
}	
.main-style #lefthang {
	margin: 10;
	position:absolute;
	top: 500px;
	left: 150px;
}

.intro #isimbox {
	margin: 0;
	position:absolute;
	top: 395px;
	left: 79px;
	width: 136px;
	border-top-style: none;
	border-right-style: none;
	border-bottom-style: none;
	border-left-style: none;
}

.intro #ucscbox {
	margin: 0;
	position:absolute;
	top: 396px;
	left: -3px;

}


h1 {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 1em;
	font-weight: bold;
	color:#c2def6;
	margin: 0;
	letter-spacing: 1pt;
}
h2 {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 1em;
	font-weight: bold;
	color:#faeada;
}
a:link {
	color: #330066;
	text-decoration: underline;
}
a:visited {
	color: #000099;
	text-decoration: underline;
}
a:hover {
	color: #555555;
}