/*Set's border, padding and margin to 0 for all values*/
* {
padding: 0;
margin: 0;
border: 0;
}

body, html {
color: #000;
font-family: Verdana, Arial, Tahoma, sans-serif;
/* background-color: #7A937A; this is the average color from T's paintings (green) ***/
text-align: center; /*** Centers the design in old IE versions ***/
/*height: 100%;*/
}
body {
font-size: 70%;
background:	#7A937A	url(../images/cssimages/unicorn.JPG) bottom right fixed no-repeat; */

}
p {padding: 7px 0 7px 0;}

a {
color: #000099;
}

a:hover{
color: #0000FF;
text-decoration: none;
}

.clear { clear: both; }
#mainContainer {
width: 750px;
margin: 0 auto; /*** Centers the design ***/
/* min-height: 100%; */
/* background: #FCFBE7; ivory color **/
text-align: left; /*** Because we centered the text in body we have to move the text back to left aligning ***/
}
* html #mainContainer {
height: 100%; /* IE doesn't support min-height, but instead it handles height as min-height so we need to hack the height ***/
}
/**************************
HEADER
**************************/
#header {
/* background: #000099; */
background: #7A937A url(../images/cssimages/banner.JPG) center top no-repeat; /** green color **/
padding: 10px;
padding-bottom: 319px; /** this sets the height of the header, pushing everything else on the page down **/
}



/**************************
CONTENT AND COLUMNS
**************************/
.outer {
padding-left: 350px;  /* must adjust margin-left, below with this one */
background: url(../images/cssimages/middle.JPG) center top repeat;
}
* html .outer {
padding-right: 15px; /* Normally this shouldn't be in this hack, it should be in .outer, but because of IE7 I had to */
}
.inner {
/* width: 595px; This width is for non-IE browsers. Mozilla makes this necessary. Be sure to check your layout in different browsers if you changes this value. Especially IE7 seems to create a horisontal scroll if this value is set too large ***/
width: 480px;
padding-bottom: 30px;

}
* html .inner {
width: 100%;
}
/*** div.inner is wider than its container, div.outer, and so overlaps to the right, pushing
div.right into the proper position. IE expands div.outer instead, requiring a Tan hack to avoid
blowing the layout apart. IE gets the original 100% width as in the Livingstone layout.
***/
.float-wrap {
float: left;
width: 700px; /* balance width here versus content width below to resize the content column. */
margin-left: -350px; /*** Same length as .outer padding-left but with negative value ***/

}
* html .float-wrap {
/*** No need for hacking IE on this layout ***/
}
#content {
float: right;
width: 450px; /* balance width here versus .float-wrap width above to resize the content column. */
padding-top: 10px;
}

#content A {

}

* html #content {
position: relative;  /*** IE needs this  ***/
}
.contentWrap{
/* padding: 5px; */
}
.contentWrap ol, .contentWrap ul {
margin: 3px 0 5px 35px;
}
.contentWrap li {
padding-bottom: 2px;
}
/**************************
LEFT COLUMN
**************************/
/*** div.left is in div.float-wrap, and when div.float-wrap is neg margined to the left,
div.left is carried over into the proper position.
***/
#left {
float: left;
width: 200px;
background: url(../images/cssimages/leftmenu.JPG) left top no-repeat;
padding-left: 5px;
}
* html #left {
position: relative;  /*** IE needs this  ***/
}
#left ul {
list-style: none;
padding-bottom: 4px;
}
#left li {
padding-bottom: 2px;
}

/**************************
FOOTER
**************************/
#footer {
width: 750px;
height: 30px; /*** The drawback with this solution is that the height of the footer can't be flexible. If you add so much content to the footer that it extends 30px, you will get a vertical scrollbar and the content will overflow the footer if you don't set overflow to hidden ***/
margin: 0 auto;
margin-top: -30px; /*** By using a negative margin-top we now moves the footer up the same amount as the footer height to avoid vertical scrolling. Remember, if you use borders and padding on your footer you will have to calculate this in your negative margin-top value also. ***/
text-align: center;
background: #FCFBE7 url(../images/cssimages/bottom.JPG) center top no-repeat;
}


TD#footer P {
	font-size: 10px;
	text-align: center;
}

/**************************
Left Hand Menu
**************************/
/* Menu 1 column */
TD#menu_1 {
	vertical-align: top;
	width: 200px;
	padding-top: 15px;
	padding-left: 65px;
}
TD#menu_1 DIV {
	width: 95%;
}
TD#menu_1 DIV A {
	/* color: #708F70; */
	color: #000000;
	text-decoration: none;
}
TD#menu_1 DIV A:hover {
	text-decoration: underline;
}

/*  MENU 1, level 1, normal state (NO) */
TD#menu_1 DIV.menu1-level1-no {
  border-bottom: 1px dotted #999999;
  font-size: 12px;
  padding-top:5px;
  padding-left:5px;
}
/*  MENU 1, level 1, active state (ACT) */
TD#menu_1 DIV.menu1-level1-act {
  border-bottom: 1px solid #999999;
  font-weight:bold;
  font-size: 12px;
  padding-top:5px;
  padding-left:5px;
  background-color: #eeeeee;
  filter:alpha(opacity='70', style='0');
}
TD#menu_1 DIV.menu1-level1-act A {
  color:black;
}

/*  MENU 1, level 2, normal state (NO) */
TD#menu_1 DIV.menu1-level2-no {
  font-size: 11px;
  padding-left:20px;
}
/*  MENU 1, level 2, active state (ACT) */
TD#menu_1 DIV.menu1-level2-act {
  font-size: 11px;
  font-weight:bold;
  padding-left:20px;
}

/*  MENU 2, level 1, general for all table cells: */
TR#menu_2 TD {
  background-color: #333366;
  width: 10%;
  text-align: center;
  padding: 0px 2px 0px 2px;
}
TR#menu_2 TD A {
  color: white;
  font-size: 11px;
  font-family: verdana, arial;
  text-decoration: none;
}
TR#menu_2 TD A:hover {
  text-decoration: underline;
}
TR#menu_2 TD.oddcell {
  background-color: #666699;
}
TR#menu_2 TD.menu2-level1-act {
  background-color: #88292A;
}

P, OL, UL, DIV, H1, H2, A {
	font-family: verdana, arial;
	font-size: 11px;
}
H1 { font-size: 15px; }
H2 { font-size: 13px; }
P, H1, H2 {margin: 0px 0px 5px 0px;}

.artname {
	font-size: 15px;
	font-weight: bold;
	text-align: center;
    padding: 20px 20px 20px 20px;
}

.artdescription {
	font-size: 12px;
	text-align: left;
	padding-left:5px;
	padding-top:5px;

}

.paypal{
	text-align: center;
}

.artdetail{
	float: center;
	text-align: center;
	font-size: 12px;
}

.price{
	text-align: center;
	font-weight: bold;
}
