@charset "utf-8";
/* CSS Layout 01 (Homepage) Document */

body  {
	color: #333333;
	background-color: #231E1E;
	margin-top: 40px;
	text-align: left;
}
#container  {
	width: 780px;
	text-align: left; /* this overrides the text-align: center on the body element. */
	background-color: #121212;
	margin-top: 0;
	margin-right: auto;
	margin-bottom: 0;
	margin-left: auto;
	height: 600px;
} 
#header  {
	background-image: url(../images/elements/header_bg.gif);
	background-repeat: no-repeat;
	height: 150px;
	width: 780px;
	padding-top: 0px;
	padding-right: 0;
	padding-bottom: 0;
	padding-left: 0;
} 
#header   h1  {
	margin: 0; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
	padding-top: 0px;
	padding-right: 0;
	padding-bottom: 0px;
	padding-left: 0px;
	text-indent: -9999px;
}
#top_navigation/*This is the blended navigation bar background image*/
  {
	background-image: url(../images/elements/nav_bg.gif);
	width: 780px;
	height: 45px;
	background-repeat: no-repeat;
	position: relative;
	bottom: 0px;
}
#top_navigation /* "Menu" text is hidden by indenting, using bg image (above) instead */
  h1  {
	margin: 0; 
	padding-top: 0px;
	padding-right: 10px;
	padding-bottom: 0px;
	padding-left: 10px;
	text-indent: -9999px;
	font-family: Arial, Helvetica, sans-serif;
	font-size: xx-small;
}

/*Group container for all five navigation tabs */
#top_navigation ul {
	margin: 0;
	padding: 0;
	list-style: none;
	position: absolute;
	right: 25px;
	width: 500px;
	left: 260px;
	width: 500px;
	top: 4px;
	height: 25px;
}

/*Below creates navigation list in a horizontal row*/
#top_navigation li {
	display: inline;
	float: left;
	width: 100px;
}

/*Below are the cells for individual navigation tabs*/
#top_navigation li a:link, #top_navigation li a:visited {
	display:block;
	text-decoration:none;
	color:#7E592E;
	padding-right: 1em;
	padding-bottom: 0.2em;
	padding-left: 1em;
	background-color: #231F20;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 0.75em;
	line-height: 1.75em;
	font-weight: bold;
	margin-right: 1em;
}

/*Red color for hover and active navigation tabs*/
#top_navigation li a:hover, #top_navigation li a:active {
	color:#FF0000;
	background:#231E1E
}

/*Gold color for current page tabs*/
#top_navigation li a.current, #top_navigation li a.current:hover, #top_navigation li a.current:active {
	color:#7E592B;
	background:#231E1E
}	
#sidebar  {
	float: left; /* since this element is floated, a width must be given */
	width: 355px;
	background-color: #121212;
	height: 200px;
	clear: both;
	padding-top: 10px;
	padding-right: 25px;
	padding-bottom: 5px;
	padding-left: 25px;
	position: relative;
}
#sidebar   #logo  {
	background-image: url(../images/elements/illust_logo.gif);
	background-repeat: no-repeat;
	text-indent: -9999px;
	height: 200px;
	width: 250px;
	background-position: center 130px;
	padding-right: 25px;
	padding-left: 25px;
	padding-top: 10px;
	padding-bottom: 5px;
}
#sidebar   #left_arrow  {
	background-image: url(../images/elements/arrow_lft.gif);
	background-repeat: no-repeat;
	display:block
	height: 52px;
	width: 20px;
	background-position: right;
	padding-left: 50px;
}

 #left_arrow a span {
	visibility:hidden;
	display: block;
	padding-top: 15px;
	color: 0C0C0C;
}
 
#sidebar_header  {
	background-image: url(../images/elements/ill_grph_dsgn.gif);
	background-repeat: no-repeat;
	height: 52px;
	width: 165px;
	text-indent: -9999px;
}
#mainContent  {
	background-color: #121212;
	margin-left: 365px;
	padding-top: 35px;
	width: auto;
}
#mainContent_header     {
	background-image: url(../images/elements/drwgs_pntgs.gif);
	background-repeat: no-repeat;
	text-indent: -9999px;
	width: 259px;
	height: 21px;
	margin-top: 0;
	margin-right: 0;
	margin-bottom: 0;
	margin-left: 40px;
}
#mainContent_painting  {
	background-image: url(../images/elements/SundustRoad.gif);
	background-repeat: no-repeat;
	text-indent: -9999px;
	height: 218px;
	width: 300px;
	margin-left: 40px;
}
#mainContent_rightarrow {
	background-image: url(../images/elements/arrow_rt.gif);
	background-repeat: no-repeat;
	display: block;
	height: 35px;
	width: 25px;
	position: relative;
	top: -23px;
	left: 330px;
}

#mainContent_rightarrow a span {
	visibility: hidden;
	display: block;
}

.clearfloat {
	font-size: 1px;
	line-height: 0px;
	clear: both;
	height: 0px;
}
#footer  {
	height: 65px;
	width: 780px;
	padding-top: 25px;
	background-image: url(../images/elements/ftr_bg.gif);
	background-repeat: no-repeat;
	background-position: bottom;
} 
