@charset "utf-8";
/* CSS Document */

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, font, img, ins, kbd, q, s, samp,
small, strike, sub, sup, tt, var,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td {
	margin: 0;
	padding: 0;
	border: 0;
	outline: 0;
	font-weight: inherit;
	font-style: inherit;
	font-size: 100%;
	font-family: inherit;
	vertical-align: baseline;
}
/* remember to define focus styles! */
:focus {
	outline: 0;
}
body {
	line-height: 1.5em;
	color: #2e2626;
	background: #eeeddf;
}
ol, ul {
	list-style: none;
}
/* tables still need 'cellspacing="0"' in the markup */
table {
	border-collapse: separate;
	border-spacing: 0;
}
caption, th, td {
	text-align: left;
	font-weight: normal;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: "";
}
blockquote, q {
	quotes: "" "";
}

#wrapper {
	width: 900px;
	position: relative;
	margin: 0 auto;
	background:url(images/background.gif) top center repeat-y;
}

#header {
	width: 900px;
	height: 173px;
	margin-bottom: 2px;

}

#contact {
	float: right;
	margin: 5px 0;
}

#leftcolumn {
	float:left;
	width:170px;
	margin-top:2px;
}


#mainContent {
	float: right;
	width: 715px;
	padding: 15px 10px 15px 0;

}

#mainContent p {
	font-family: Trebuchet MS, Arial, sans-serif;
	font-size: 13px;
	font-style: normal;
	font-weight: normal;
	text-transform: normal;
	letter-spacing: normal;
	line-height: 1.5em;
}

#mainContent h1 {
	font-family: Georgia, Trebuchet MS,  sans-serif;
	font-size: 26px;
	font-style: normal;
	font-weight: bold;
	text-transform: normal;
	letter-spacing: -1px;
	line-height: 1.3em;
	margin-bottom: 10px;
	color: #522818;

}

#mainContent h2 {
	font-family: “Trebuchet MS”, Arial, san serif;
	font-size: 30px;
	font-style: normal;
	font-weight: bold;
	text-transform: normal;
	letter-spacing: -1px;
	line-height: 1.2em;
	margin-bottom: 20px;
	color: #847e61;
}

#mainContent h3 {
	font-family: Arial, Trebuchet MS,  sans-serif;
	font-size: 14px;
	font-style: normal;
	font-weight: bold;
	text-transform: normal;
	letter-spacing: -1px;
	line-height: 1.3em;
	margin-bottom: 15px;
	color: #2daef1;
	
}

#mainContent h4 {
	font-family: “Trebuchet MS”, Arial, san serif;
	font-size: 20px;
	font-style: normal;
	font-weight: bold;
	text-transform: normal;
	letter-spacing: -1px;
	line-height: 1.2em;
	margin: 20px 0 10px 0;
	color: #847e61;
}

#mainContent a {
color: #000;
font-size: 14px;
text-decoration: underline;
}

#footer {
	width: 870px;
	background: #2f1106;
	height: 100px;
	clear: both;
	padding: 15px 0 5px 30px;
	border-top: 3px solid #a9a78e;	
	
}

#footer p {
	font-family: Trebuchet MS, Arial, sans-serif;
	font-size: 11px;
	line-height: 1.3em;
	color: #fcf3c4;
	text-align: left;
	font-weight: bold;
}

#footer a {
text-decoration: underline;
color: #fcf3c4;
}

#footer a:hover{
text decoration: underline;
color: #fcf3c4;
}

img.display {
	margin-bottom: 10px;
}

#quicklinks {
	float: right;
	padding: 0 25px 15px 0;
}

#quicklinks p {
	font-family: Arial, Trebuchet MS, sans-serif;
	font-size: 12px;
	font-weight:bold;
}

hr {
	border: none 0; 
	border-top: 1px dashed #000;
	border-bottom: 1px dashed #000;
	height: 4px;
	margin: 10px 0 15px 0;
	text-align: left;
}

#animatedQuote {
	position: absolute;
	bottom: 30px;
	right: 20px;
}

#artnotation {
margin-top: 15px;
text-align: center;
}

img.display {
border: 5px solid #dcdbc6;
}

#free-quote {
text-align: center;
width: 710px;
}

/* - - - ADxMenu: BASIC styles - - - */

.menu {
	width: 10em;/* VERY IMPORTANT! Set this to appropriate value, either here on down in the design section */
}

.menu, .menu ul {	/* remove all list stylings */
	margin: 0;
	padding: 0;
	border: 0;
	list-style-type: none;
	display: block;
}

.menu li {
	margin: 0;
	padding: 0;
	border: 0;
	display: block;
	position: relative;	/* position each LI, thus creating potential IE.win overlap problem */
	z-index: 5;		/* thus we need to apply explicit z-index here... */
}

.menu li:hover {
	z-index: 10000;	/* ...and here. this makes sure active item is always above anything else in the menu */
	white-space: normal;/* required to resolve IE7 :hover bug (z-index above is ignored if this is not present)
							see http://www.tanfa.co.uk/css/articles/pure-css-popups-bug.asp for other stuff that work */
}

.menu ul {
	visibility: hidden;	/* initially hide all submenus. */
	position: absolute;
	z-index: 10;
	left: 0;	/* while hidden, always keep them at the top left corner, */
	top: 0;		/* 		to avoid scrollbars as much as possible */
}

.menu li:hover>ul {
	visibility: visible;	/* display submenu them on hover */
	left: 100%;	/* and move them to the right of the item */
}

/* -- float.clear --
	force containment of floated LIs inside of UL */
.menu:after, .menu ul:after {
	content: ".";
	height: 0;
	display: block;
	visibility: hidden;
	overflow: hidden;
	clear: both;
}
.menu, .menu ul {	/* IE7 float clear: */
	min-height: 0;
}
/* -- float.clear.END --  */

/* sticky submenu: it should not disappear when your mouse moves a bit outside the submenu
	YOU SHOULD NOT STYLE the background of the ".menu UL" or this feature may not work properly!
	if you do it, make sure you 110% know what you do */
.menu ul {
	background-image: url(empty.gif);	/* required for sticky to work in IE6 and IE7 - due to their (different) hover bugs */
	padding: 30px 30px 30px 10px;
	margin: -30px 0 0 -10px;
	/*background: #f00;*/	/* uncomment this if you want to see the "safe" area.
								you can also use to adjust the safe area to your requirement */
}


/* - - - ADxMenu: DESIGN styles - - - */

.menu, .menu ul li {
	color: #452d19;
	background: #e3e1cc;	
	margin-left: 2px;
	font-family: Trebuchet, Arial, sans-serif;
	font-size: 14px;
}

.menu {
	width: 148px;
}

.menu ul {
	width: 14.5em;
}

.menu a {
	text-decoration: none;
	color: #452d19;
	padding: .4em 1em;
	display: block;
}

.menu a:hover, .menu li:hover>a {
	color: #452d19;
	background: #d1cfb9;
	
}

.menu li {	/* create borders around each item */
	border-top: 1px solid #d7d5bc;
	border-bottom: 1px solid #d7d5bc;
	
}
.menu>li + li, .menu ul>li + li {	/* and remove the top border on all but first item in the list */
	border-bottom: 1px solid #d7d5bc;

}

.menu li:hover>ul {	/* inset submenus, to show off overlapping */
	top: 0px;
	left: 98%;
}

/* special colouring for "Main menu:", and for "xx submenu" items in ADxMenu
	placed here to clarify the terminology I use when referencing submenus in posts */




<!--[if lte IE 6]>


/* - - - ADxMenu: BASIC styles - - - */

/*
	this rules improves accessibility - if Javascript is disabled, the entire menu will be visible
	of course, that means that it might require different styling then.
	in which case you can use adxie class - see: aplus.co.yu/adxmenu/examples/ie6-double-style/
 */
.menu ul {
	visibility: visible;
	position: static;
}

.menu, .menu ul {	/* float.clear */
	zoom: 1;
}

.menu li.adxmhover {
	z-index: 10000;
}

.menu .adxmhoverUL {	/* li:hover>ul selector */
	visibility: visible;
}

.menu .adxmhoverUL {	/* submenu goes to the right */
	left: 100%;
}

/* - - - ADxMenu: DESIGN styles - - - */

.menu ul a {	/* fix clickability-area problem */
	zoom: 1;
}

.menu li {	/* fix white gap problem */
	float: left;
	width: 100%;
}

.menu li {	/* prevent double-line between items */
	margin-top: -1px;
}

.menu a:hover, .menu .adxmhoverA {		/* li:hover>a selector */
	color: #452d19;
	background: #d1cfb9;
}

.menu .adxmhoverUL {	/* inset submenus, to show off overlapping */
	top: 0px;
	left: 98%;
}

ul#items {
	font-family: Trebuchet MS, Arial, sans-serif;
	font-size: 13px;
	line-height: 1.5em;
	list-style-position: inside;
	list-style-type:circle;
	padding: 10px;
}

#animatedQuoteTest {
	float: right;
	padding: 20px 15px 10px 10px;	
}

#links{
	width:575px;
	float: left;
	margin-top: 10px;
}

#links p {
	font-family: Trebuchet MS, Arial, sans-serif;
	font-size: 10px;
	line-height: 1.3em;
	color: #fcf3c4;
	text-align: left;
}

#links a {
text-decoration: underline;
color: #fcf3c4;
}

#links a:hover{
text decoration: underline;
color: #fcf3c4;
}

#quoteButton {
float: right;
margin: 5px 0 5px 5px;
}

.corporate-gift {
float: right;
margin: 20px 0 10px 10px;
}
	
