@charset "UTF-8";
body {
	font-family: "Times New Roman", Times, serif;
	background: #999999;
	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: #FFFFFF;
}

.hide {padding: 0;
	margin: 25px 0 0 0;
	text-indent: -9999px;}
	
span {
	font-style: italic;
}

/* Tips for Elastic layouts 
1. Since the elastic layouts overall sizing is based on the user's default fonts size, they are more unpredictable. Used correctly, they are also more accessible for those that need larger fonts size since the line length remains proportionate.
2. Sizing of divs in this layout are based on the 100% font size in the body element. If you decrease the text size overall by using a font-size: 80% on the body element or the #container, remember that the entire layout will downsize proportionately. You may want to increase the widths of the various divs to compensate for this.
3. If font sizing is changed in differing amounts on each div instead of on the overall design (ie: #sidebar1 is given a 70% font size and #mainContent is given an 85% font size), this will proportionately change each of the divs overall size. You may want to adjust based on your final font sizing.
*/
.oneColElsCtrHdr #container {
	width: 800px;  /* this width will create a container that will fit in an 800px browser window if text is left at browser default font sizes */
	background: #000000;
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	text-align: left; /* this overrides the text-align: center on the body element. */
}

/* header styles */
#header {
	background: center 13px url(../graphics/common/nj_title.gif) no-repeat;
}

#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 */
}

#topnav, #topnav2, #otherNav, .mootabs_title {
	background: url(../graphics/common/gray_bar.png) repeat-x;
}

#header .navbar {
	margin: 25px 0 0 0;
}

.navbar, #header .navbar, #header .navbar2, .mootabs_title {
	height: 35px;
}

#header ul, ul.navbar, .mootabs_title ul {
	text-align: center;
	margin: 0 auto;
	padding: 0;
}

#header ul.navbar, ul.navbar, .mootabs_title ul.navbar {
	text-align: center;
	/* padding: 0 246px; IE7 only on separate CSS file */
}

#header ul li, .mootabs_title ul li {
	margin: 0;
	list-style-type: none;	
}

#header ul.navbar li, #header ul.navbar2 li, ul.navbar li, ul.mootabs_title li {
	display: inline; /* float left; IE7 only on separate CSS file */
	margin: 0 1.2em;
	line-height: 2em;
	font-variant: small-caps;
	font-size: 18px;
}

a {
	color:#FFFFFF;
	text-decoration: none;
}

a:hover {
	color: #CCFFCC;
	text-decoration: underline;
	cursor: pointer;
}

	/* image menu styles in separate imagemenu.css file (technically still part of the header area) */
	
/* end header styles */

/* start main content styles */

#mainContent {
	width: 800px;
	margin: 0;
	padding: 0;
	text-align: center;
}

#mainContent h1, #mainContent h2 {
	text-align: center;
	font-size: 24px;
	font-variant: small-caps;
	font-weight: normal;
	letter-spacing: 1px;
	margin: 15px 0;
	padding: 0;
}

#mainContent h2 {
	font-size: 20px;
	margin: 0;
	padding: 0;
	margin-bottom: 10px;
	text-align: left;
}

#mainContent h3, #mainContent ul h4 {
	font-size: 16px;
	padding: 0;
	margin: 0;
	line-height: 1.5;
	text-align: left;
}

#mainContent ul {
	list-style-type: none;
	margin: 0;
	padding: 0;
}

#mainContent ul h4 {
	font-size: 14px;
}

#mainContent li {
	margin-bottom: 10px;
}

#mainContent li p.location {
	margin: 0 0 2px 0;
	padding: 0;
}

#mainContent ul.awards {
	padding-bottom: 7px;
	margin: 0;
	list-style-type: circle;
}

#mainContent ul.awards li {
	margin: 0 0 0 20px;
}

#mainContent ul.awards li.award {
	color: #FFFF99;
}

/* controls the spacing between images on the art category pages; also controls the outer edge padding to push images down to the next level sooner */

#mainContent .illustrations, #mainContent .landscapes,
#mainContent .pets, #mainContent .wildlife {
	margin: 0;
	padding: 0 5px;
}

#mainContent .western {
	padding: 0 25px;
}

/* end control spacing */

.content {
	margin: 0;
	padding: 0;
}

#mainContent img {
	margin: 2px;
	padding: 2px;
	border: 2px #CCC solid;
	background-color: gray;
}

#mainContent .textual img {
	margin: 5px; /* for IE 6 - margin: 5px 15px 5px 5px; */
	padding: 2px;
	border: 3px #CCC solid;
	background-color: gray;
	float: left;
	clear: both;
}


/* this created a cheap shadow effect on images that I didn't particularly like and chose not to use

#mainContent .shadow {
float: left;
background: url(../graphics/misc/shadow.png) no-repeat bottom right !important;
background: url(../graphics/misc/shadow.gif) no-repeat bottom right;
margin: 20px 10px 2px 20px !important;
margin: 10px 0 0 5px;
}

#mainContent .shadow img {
display: block;
position: relative;
margin: -7px 7px 7px -7px;
}

*/

#mainContent .textual, #mainContent .blockquote, #mainContent .news {
	margin: 20px;  
	padding: 20px;
/*	height: 100%;	 removed when testing fx.slide.js */
	text-align: left;
	font-style: normal;
	font-weight: normal;
	background-image: url(../graphics/common/gray_bar.gif);
	border: 7px white double;
	font-size: 14px;
/* 	overflow: auto;  removed when testing fx.slide.js */
}

#mainContent .news ul {
	list-style-type: square;
	margin-left: 15px;
}

#mainContent .news ul li {
	padding-bottom: 10px;
}

#mainContent p {
	margin: 0;
	margin-bottom: 15px;
	padding: 0 0 0 20px;
	line-height: 1.7;
	overflow: auto;
}

#mainContent p.signature {
	margin-bottom: 2px;
	line-height: 1;
}

#mainContent .blockquote img {
	margin-bottom: 75px;
}

#mainContent .toggler a {
	display: block;
	padding: 5px;
}

#mainContent .toggler a:hover {
	background-color: #333;
	color: white;
	padding: 5px;
	display: block;
	text-decoration: none;
	cursor: pointer;
}

#mainContent div.element {
	margin: 5px 0;
	padding: 5px;
}

#mainContent div.element h4, #mainContent div.element p, #mainContent div.element ul, #mainContent div.element li {
	margin: 0;
	padding: 0;
}

#mainContent div.element ul {
	margin-bottom: 7px;
}

#mainContent p.instructions {
	padding: 0;
	margin: 0;
	font-variant: small-caps;
	text-align: center;
}

/* end main content styles */

<!-- start email styles -->

p#antispam {
	unicode-bidi: bidi-override;
	direction: rtl;
}

.textual p#antispam {
	unicode-bidi: bidi-override;
	direction: rtl;
}

.antispam2 {
	display: none;
}

<!-- end email styles -->

<!-- start footer styles -->

#footer { 
	padding: 0 10px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
	clear: both;
}


#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: 10px 0; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
	font-size: 12px;
	font-variant: small-caps;
	letter-spacing: .5px;
	text-align: center;
}

p#dvd {
	font: 10px Arial, Helvetica, sans-serif;
	color: #FFF;
}

#dvd a {
	color: #FFF;
	text-decoration: none;
}

#dvd a:hover {
	color: #CCFFCC;
	text-decoration: underline;
}