/* CSS Document */

/*--        Basic CSS         --*/

	* {
		margin:0;
		padding:0;
		position:static;
	}
	
	td, body, div, input {
		font-family: "Trebuchet MS", Verdana, Arial, Helvetica, sans-serif;
		color:#232839;
		font-size:11px;
	}
	
	body {
		background: #232839 url(../images/page_bg.jpg) top repeat-y;
		margin: 0px;
	}
	
	a {
		color:#003399;
		text-decoration:none;
	}
	
	a:hover {
		text-decoration:underline;
	}
	
	h1, h2, h3, h4, h5, h6 {
		font-size:12px;
		font-weight:bold;
		padding-bottom: 5px;
		border-bottom: 1px solid #333;
	}
	
	p {
		margin: 5px 0;
		line-height: 17px;
		padding:5px 0;
		padding-left:20px;
	}
	
	a img {
		border: none;
	}
	
/*--		Layout Divs			--*/

	#container {
		width: 760px;
		margin: 0 auto;
	}
	
	#header {
		height:85px;
		background:url(../images/header_bg.gif) top repeat-x;
	}
	
	#column {
		height: 495px;
		width: 140px;
		background: url(../images/column_bg.jpg);
		float:left;
	}
	
	#home {
		background: url(../images/home_bg.jpg);
		height: 432px;
		width: 580px;
		position: relative;
	}
	
		#preamble {
			position: absolute;
			bottom: 30px;
			right: 30px;
			width: 375px;
			height: 300px;
			top:20px;
		}
	
	#content {
		margin: 20px 20px 20px 160px;
	}
	
	#footer {
		clear:both;
		text-align:right;
		padding:10px;
	}
	
	#paintings div {
		width: 250px;
		height: 95px;
		float:left;
		margin: 5px;
		padding: 5px;
	}
	
	#paintings div img {
		padding: 5px;
		border: #FFF solid 1px;
		background: #662447;
		float:left;
		margin: 2px 5px 2px 2px;
	}
	
	#paintings_old div {
		width: 90px;
		height: 135px;
		float:left;
		margin: 5px;
		padding: 5px;
	}
	
	#paintings_old div img {
		padding: 5px;
		border: #FFF solid 1px;
		background: #662447;
		float:left;
		margin: 2px 5px 2px 2px;
	}
	
/*--		Nav			--*/

	#nav {
		list-style:none;
		padding-top: 30px;
	}
	
	#nav li {
		border-bottom: 1px solid #333;
		margin-bottom: 5px;
	}
	
	#nav li a {
		display:block;
		text-decoration:none;
		background: #CCC;
		color:#333;
		line-height: 20px;
		height: 20px;
		text-indent: 10px;
	}
	
	#nav li a:hover {
		background: #e3c882;
		color: #FFF;
	}
	
	