/* @override 
	http://dev.cajm.net/styles/style.css
	http://www.cajm.net/styles/style.css
*/

/* Styles for CAJM - Public */

/* @Creator: Jamie Peloquin <http://www.jamiepeloquin.com> */

/* @Version: 1.1 */

/* @group BASE STYLES */

/* @group Reset */

html, body {
	width: 100%;
	font-size: 100%; /* 16px */
	line-height: 1;
}

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, 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;
	font-weight: inherit;
	font-style: inherit;
	font-family: inherit;
	line-height: inherit;
	vertical-align: baseline;
	background: transparent none;
}


caption, th, td {
	text-align: left;
	font-weight: normal;
	vertical-align: top;
}

/* Remove possible quote marks (") from <q>, <blockquote>. */

blockquote, q {
	quotes: none;
}

	blockquote:before, q:before, blockquote:after, q:after {
		content: '';
	}

/* Remeber to define focus states later in CSS */
:focus {
	outline: none;
}

/* Remeber to define inserts later in CSS */
ins {
	text-decoration: none;
}

del {
	text-decoration: line-through;
}

a, a:link, a:visited, a:hover, a:active, a:focus {
	outline: none;
	text-decoration: none;
}

/* @end */

/* @group Elements */

/*
**	IE Font Size Fixes
*/

* html body {
	font-size: 95%;
}

*:first-child+html body {
	font-size: 95%;
}

/*
********
*/

p, address, ol, ul, dl, dd, blockquote, h1, h2, h3, h4, h5, h6, table, form, fieldset, textarea, select, pre {
	margin-bottom: 1.3em;
}

p, li, dd, dt, th, td, pre, ins, address, del {
	line-height: 1.4;
}

ul, ol, blockquote {
	padding-left: 3em;
}

li {
	margin-bottom: .7em;
}

dt {
	margin-bottom: .7em;
}

dd {
	padding-left: 1.4em;
}

dl *:last-child {
	margin-bottom: 0;
}

h1 {
	font-size: 2em;
}

h2 {
	font-size: 1.5em;
}

h3 {
	font-size: 1.25em;
}

h4 {
	font-size: 1em;
}

h5 {
	font-size: .85em;
}

h6 {
	font-size: .75em;
}

code, var, kbd, samp {
	color: #666;
	white-space: pre;
	font: .95em Monaco, "Lucida Console", "Courier New", Courier, monospaced;
}

del {
	text-decoration: line-through;
}

big {
	font-size: 1.4em;
}

small {
	font-size: 0.8em;
}

sup, sub {
	font-size: .75em;
	padding: 0 .25em;
}

sup {
	position: relative;
	bottom: .4em;
	vertical-align: baseline;
}

sub {
	position: relative;
	bottom: -.4em;
	vertical-align: baseline;
}

acronym, abbr {
	cursor: help !important;
	letter-spacing: 1px;
	border-bottom: 1px dashed;
}

a, a:visited, a:hover, a:focus, a:active  {
	cursor: pointer !important;
	border-bottom: 1px solid;
}

a img, a:visited img, a:hover img, a:focus img, a:active img {
	border-width: 0;
}

input, select, textarea, button {
	font-family: inherit;
	font-size: 1.1em;
}

label, form .label {
	font-weight: bold;
	cursor: pointer !important;
	display: block;
}


form *:last-child {
	margin-bottom: 0;
}

fieldset {
	padding: 1em;
	border: 1px solid #eee;
}

legend {
	padding: .5em;
	font-weight: bold;
	color: #ccc;
	font-size: 1.25em;
}

table {
	background-color: #ccc;
	/*border-spacing: .1em;*/
}

caption, th, td {
	padding: .5em;
}

caption {
	background-color: #eee;
	color: #888;
	border: .1em solid #ccc;
}

th {
	background-color: #bfbfbf;
	font-weight: bold;	
}

td {
	background-color: #fff;
}

	tr:hover td {
		background-color: #f6ffdc;
	}

hr {
	margin: 3em 0;
	height: 0;
	color: #888;
	border-color: #888;
}

/* @end */

/* @group Classes */

.collapse {
	height: 0;
	margin: 0;
	font-size: 0;
	overflow: hidden;
}

.float-left {
	float: left;
}

.clr {
	clear: both;
}

	img.float-left {
		margin-right: 1em;
	}

.float-right {
	float: right;
}
	
	img.float-right {
		margin-left: 1em;
	}

.no-float {
	float: none !important;
}

.text-left {
	text-align: left;
}

.text-right {
	text-align: right;
}

.text-center {
	text-align: center;
}

.text-justify {
	text-align: justify;
}

.bold {
	font-weight: bold;
}

.italic {
	font-style: italic;
}

.underline {
	border-bottom: 1px solid;
}

.inline {
	display: inline;
}

.block {
	display: block;
}



ul.list-disc {
	list-style-type: disc;
	/* • */
}

ul.list-circle {
	list-style: circle;
	/* O */
}

ul.list-square {
	list-style: square;
	/* [] */
}

ol.list-decimal {
	list-style: decimal;
	/* 1, 2, 3 */
}

ol.list-decimalleadingzero {
	list-style: decimal-leading-zero;
	/* 01, 02, 03 */
}

ol.list-romanlower {
	list-style: lower-roman;
	/* i, ii, iii */
}

ol.list-romanupper {
	list-style: upper-roman;
	/* I, II, III */
}

ol.list-alphalower {
	list-style: lower-alpha;
	/* a, b, c */
}

ol.list-alphaupper {
	list-style: upper-alpha;
	/* A, B, C */
}

.nopadding {
	padding: 0;
}

.noindent {
	margin-left: 0;
	padding-left: 0;
}

.nobullet {
	list-style: none !important;
	list-style-image: none !important;
}



table.data {
	border-collapse: separate;
	border-spacing: 1px;
}

tr.alt td {
	background-color: #f1f0ff;
}



form p.label {
	margin-bottom: .7em;
}

form .checkarea label {
	display: inline;
}

form .checkarea ul {
	list-style: none;
	list-style-image: none;
}

form .buttonarea label {
	display: none;
}

form .formpart {
	margin-bottom: .75em;
}

form .formpart .note {
	display: block;
}


/* Side-By-Side aligns LABELs to the left of the FIELDs */
form.sidebyside .formpart {
	clear: both;
}

form.sidebyside label, form.sidebyside .label {
	float: left;
	width: 30%;
	padding-right: 1em;
	text-align: right;
}

form.sidebyside .checkarea label {
	float: none;
	text-align: left;
}

form.sidebyside .textarea label {
	padding-top: .2em;
}

form.sidebyside .formpart .note {
	margin-left: 31.5%;
}
/* end */

/* Multicolumn floats FORMPARTs left */
fieldset.multicolumn legend {
	margin-left: .8em;
}

.multicolumn .textarea input, .multicolumn .textarea textarea, .multicolumn .selectarea select {
	width: 45%;
}

/* for IE6 */
* html .multicolumn .textarea input, * html .multicolumn .textarea textarea, * html .multicolumn .selectarea select {
	width: 40%px;
}

* html .multicolumn .short input, * html .multicolumn .short textarea, * html .multicolumn .short select {
	width: 25%;
}
/* end */

/* Buttons */
.action1, .action1:active {
	background-color: #96c900;	
	outline-color: #690;
	color: #dfffc1;
}

.action1:hover, .action1:focus {
}

.action1:active {
	outline-color: #96c900;
}

.action2, .action2:active {
	background-color: #a50000;	
	outline-color: #953e3e;
	color: #ffd6d3;
}

.action2:hover, .action2:focus {
}

.action2:active {
	outline-color: #a50000;
}

.action3, .action3:active {
	color: #ffedbc;	
	background-color: #ff8d00;	
	outline-color: #d2691e;
}

.action3:hover, .action3:focus {
}

.action3:active {
	outline-color: #ff8d00;
}
/* end */



/* Help & Tips */

.tooltip {
	display: none;
	position: absolute;
	z-index: 1;
	background-color: #ffc;
	border: 1px solid #ffd55e;
	padding: .25em;
}

	.tooltip:hover, .tip:hover, .help:hover {
		cursor: help;
	}
	
	*:hover > .tooltip {
		display: inline;
	}

/* end */



/* User Messages / Alerts */

.highlight {
	padding: 2px;
	background: #ffc;
}

.usermessage {
	display: block;
	margin-bottom: 22px;
	padding: .25em .5em;
	background-color: #fff4d6;
	border: 1px solid #ffd55e;
	color: #9f5000;
}

	form .usermessage {
		margin-top: 22px;
	}

p.good, div.good, form.good {
	color: #363;
	background-color: #cf9;
	border-color: #9c3;
}

	.good a {
		color: #690;
	}

p.bad, div.bad, form.bad {
	color: #900;
	background-color: #feafaf;
	border-color: #cd5c5c;
}

	.bad a {
		color: #c00;
	}

.bad a.button, .bad button, .good a.button, good button {
	color: #fff !important;
}

.note {
	color: #bbb;
}
/* end */


/* Navigation */
*.navigation {
	list-style: none;
	position: relative;
	padding-left: 0;
	margin-left: 0;
}

	*.navigation li, dl.navigation dt, dl.navigation dd {
		padding-left: 0;
		margin-left: 0;
	}
/* end */

.clear-both {
	clear: both !important;
}

.clear-left {
	clear:  left !important;
}

.clear-right {
	clear:  right !important;
}


/* Clear floats for browsers supporting :after */
.clearfloats:after {
	content: ".";
	display: block;
	height: 0;
	clear: both;
	visibility: hidden;
}

/* self-clearing floats for IE 6 */
* html .clearfloats {
	height: 1%;
}

/* self-clearing floats for IE 7 */
*:first-child+html .clearfloats {
	min-height: 1px;
}


.hide {
	display: none;
}

.hidden {
	visibility: hidden;
}

/* @end */



/* @end */

/*

 @group SITE STYLES */

body {
	color: #666;
	font-family: "Lucida Grande", "Lucida Sans", "Lucida Sans Unicode", Lucida, "Trebuchet MS", Verdana, sans-serif;
	background: #fff url(../images/upper_bg.png) repeat-x;
}

a, a:link {
	color: #cc6600;
}

a:visited {
	color: #cc6600;
}

a:focus, a:hover {
	color: #cc6600;
}

a:active {
	color: #cc6600;
}

h1, h2, h3, h4, h5, h6 {
	font-family: Georgia, "Times New Roman", Times, serif;
	font-weight: normal;
	letter-spacing: .10em;
}

h1, h2 {
	color: #000;
	margin-bottom: .45em;
}

h1 {
	font-size: 1.8em;
	color: #630;
	font-weight: normal;
	text-transform: uppercase;
}

h2 {
	font-size: 1.1em;
	color: #996633;
	font-weight: normal;
	text-transform: uppercase;
	line-height: 1.5;
}

h3 {
	color: #000;
	text-transform: uppercase;
	margin-bottom: 3px;
	font: normal .875em "Lucida Grande", "Lucida Sans", "Lucida Sans Unicode", Lucida, "Trebuchet MS", Verdana, sans-serif;
}

hr {
	height: 0;
	border: 1px solid #ccc;
	border-width: 1px 0 0 0;
	margin: 2em 0;
	background-color: #ccc;
}

hr.alt {
	background-color: transparent;
	border: 4px double #ccc;
	border-width: 4px 0 0 0;
}

.datetext {
	color: #999999;
	font-size: .8em;
	padding-right: 5px;
}

#column2-bottom-left .datetext {
	padding: 5px 0px 10px 0px;
	display: block;
}


div.master, div.master .content {
	position: relative;
	margin: 0;
}

ul li {
	padding-left: 0;
	margin: 0px;
}

/* @group Header */

/* @group Navigation */

#navigationMain {
	position: absolute;
	top: 259px;
	left: 0;
	width: 1129px;
	height: 70px;
	margin-left: 0;
	line-height: 1em;
	border: 0px solid;
	z-index: 1000;
	/*border-left: 1px solid #cc9933;*/
	/*height: 31px;*/
	/*background-color: red;*/
}

#navigationMain dl {
	float: left;
	overflow: hidden;
}

#navigationMain dt {
	height: 31px;
	line-height: 31px;
	border: 1px solid #cc9933;
	border-width: 0 1px 1px 0;
	display: block;
	margin:  0;
	margin-top: 0;
	padding: 0;
}

#navigationMain dd {
	position: absolute;
	top: 32px;
	left: 0;
	z-index: 1000;
	/*width: 1129px;*/
	width: 2000px;
	height: 30px;
	padding: 0;
	margin: 0;
	font: .825em Georgia, "Times New Roman", Times, serif;
	overflow: hidden;
	display: none;
	border: 0 solid #c93;
	border-bottom-width: 1px;
}

#navigationMain dd ul {
	width: 100%;
	height: auto;
	list-style: none;
}

#navigationMain dd ul,  #navigationMain dd li {
	padding: 0;
	margin: 0;
}

#navigationMain dd li {
	/*float: left;*/
	display: inline;
}

#navigationMain dl a {
	color: #663300;
	text-decoration: none;
	border-bottom: none;
	font-size: .85em;
	display: block;
	/*line-height: 28px;*/
	/*padding-top: .45em;*/
	font-family: Georgia, "Times New Roman", Times, serif;
	margin: 0;
	width: auto;
	white-space: nowrap;
}

#navigationMain dl dt a {
    padding: 0 1em;
}

#navigationMain dl a:hover, #navigationMain dl a:focus {
	color: #8b0000;
}

#navigationMain dl:hover {
	height: 62px;
}

#navigationMain dl:hover dt {
    border-bottom-color: #fbec9f;
}

#navigationMain dl:hover dd, #navigationMain dl.active dd {
	display: block !important;
}

#navigationMain dl:hover dd, #navigationMain dl:hover dt {
    background-color: #fbec9f;
    background-image: none;
}

#navigationMain dl:hover dd {
    z-index: 2000;
}

#navigationMain dl:hover dd li, #navigationMain dl.active dd li {
	padding: 5px 0;
}

#navigationMain dl:hover dd a, #navigationMain dl.active dd a {
	color: rgb(102, 51, 0);
	border-width: 0;
	text-decoration: none;
	padding: 0 10px;	
	line-height: 20px;
	border: 0 solid #cc9933;
	border-right-width: 1px;
}

#navigationMain dl:hover dd a:hover, #navigationMain dl:hover dd a:focus {
	color: #8b0000;
}

#navigationMain dl:hover dd a:active {
	color: #708e28;
}

#navigationMain dl.active dt {
	background: url(../images/active-button_bg.png) no-repeat top center;
	border-bottom-width: 1px;
	border-bottom-color: #ffffe0;
}

#navigationMain dl.active dd {
	background-color: transparent;
}

#navigationMain #navSkip {
	position: absolute;
	top: -1000em;
}



/* @end */
div#header {
	
}

div#header .content {
	margin: 0px auto 0px 0px;
	width: 1129px;
	height: 291px;
	background: url(../images/header.png) no-repeat 90px top;
}

div#header #trademark.branding {
	float: left;
	width: 1129px;
	height: 259px;
}

div#header .branding label {
	position: absolute;
	top: -1000px;
}


/* @end */

/* @group Content */

div#content.master {
	width: 1129px;
}

div#content .content {
	margin: 70px 0px 40px 0px;
}

div#contentColumn1 {
	float: left;
	width: 225px;
	padding: 0 10px 0px 10px;
}

div#contentColumn2 {
	float: left;
	width: 745px;
	padding: 0px 10px 10px 10px;
	border-left: 1px solid #eee8aa;
}

.content ul {
	padding-left:1.5em;
	list-style-image: url(../images/bullet-gray.gif)
}

#content h1 small {
	display: block;
	font-size: .75em;
	margin-top: .5em;
	color: #666;
}

.content h2 {
	margin-top: 1.4em;
}

.promo h2, .module h2, .shoebox h2 {
	margin-top: 0;
}

.shoebox {
	clear: both;
	border: 4px double #ccc;
	border-width: 4px 0 0 0;
	margin-top: 2em;
	padding: 32px 0;
	overflow: hidden;
}

.shoebox + .shoebox {
	margin-top: 0;
}

#contentColumn2 .module {
	float: left;
}

.content:first-child .promo  {
	border-top-width: 0;
	padding-top: 1em;
}

.module h2 {
	font-size: 1.16em;
	text-transform: uppercase;
}

.content .promo {
	width: 225px;
	border: 1px solid #ddd;
	border-width: 1px 0;
	margin: 2px 0;
	padding: 24px 0 14px;
	font-size: .75em;
}

.promo img.promoImg {
	display: block;
	margin-bottom: 1em;
	border: 1px solid #000;
	border-width: 3px 0 0 0;
}

.shoebox .promo {
	border-width: 0 1px;
	padding: 0 10px;
	margin-left: -1px;
	margin-bottom: 24px;
}

.shoebox .last {
	border-right-width: 0;
}

dd.description {
	width: 210px;	
	padding: 0px;
}

.photo {
	padding: 0px;
}

#modNews dt, #modNews dd {
	padding: 0;
}

dl.newsitem dt {
	font: 1.33em "Lucida Grande", "Lucida Sans", "Lucida Sans Unicode", Lucida, "Trebuchet MS", Verdana, sans-serif;
	text-transform: uppercase;
	color: #000;
}

#modNews *.date, #modNews *.byline, .modEvents *.date, .linklist *.date {
	font: .833em Georgia, "Times New Roman", Times, serif;
	color: #888;
}

#modNews *.link, .modEvents *.link {
	font-size: .833em;
}

.newsmore dt {
	text-transform: uppercase;
	color: #963;
}

div#content ul.navigation li {
	padding-left: 0px;
	background: none;
}

div#content blockquote {
	padding: 16px 16px 0px 16px;
	border: 1px solid #eee;
}

div.inset-text {
	margin: 30px;
}

div#content blockquote p {
	font: italic 1.125em Georgia, "Times New Roman", Times, serif;
}

div#content blockquote p.credit {
	font: normal .75em "Lucida Grande", "Lucida Sans", "Lucida Sans Unicode", Lucida, "Trebuchet MS", Verdana, sans-serif;
	margin: 0 auto;
	padding: .7em 0 1.4em 0;
}

div#content .photobox {
	border: 1px solid #fffacd;
	padding: .6em;
	background-color: #fff;
	margin-bottom: .7em;
}

div#content .photobox img {
	display: block;
	position: relative;
	border: 1px solid #888;
}

div#contentColumn2 .photobox img {
	max-width: 240px;
}

div#content .photobox label {
	display: block;
	margin-top: 1.4em;
	color: #888;
	font: italic .7em Georgia, "Times New Roman", Times, serif;
}

#content dl.linklist {
	margin-bottom: .3em;
	border: 1px solid #eee;
	border-width: 1px 0;
	padding: .6em;
	position: relative;
}


#content dl.linklist dt {
	font-weight: bold;
}

#content dl.linklist dd {
	padding: 0;
	font-size: .785em;
}

/* @group Forms */

form label, form .label {
	display: none;
	font-weight: normal;
}

form label.show, form .show {
	display: block;
}

form input {
	line-height: 1.2;
	height: auto;
	padding: .425em;
}

form .buttonarea input, form .buttonarea button, #content .button {
	display: inline-block;
	position: relative;
	color: #069;
	padding: .5em .7em;
	background: #dae9f0 url(../images/btn-highlight.png) repeat-x center top;
	font-size: 1em;
	line-height: 1;
	font-weight: normal;
	font-style: normal;
	text-decoration: none;
	border: 1px solid #ccc;
}

form .buttonarea input:hover, form .buttonarea button:hover, #content .button:hover {
	cursor: pointer;
}

form .buttonarea input:active, form .buttonarea button:active, #content .button:active {
	color: #fff;
	background: url(../images/bg-btn-default-down.png) repeat-x center center;
}

#content .button {
	padding: .5em .7em;
	white-space: nowrap;
}

#content a.check, #content form button.check, button.action1 {
	background-color: #d2e1c3;
	color: #360;
}

a.check span, form button.check span {
	background: url(../images/btn-check.png) no-repeat left center;
	margin: -.5em;
	padding: .5em .5em .5em 28px;
	white-space: nowrap;
}

form .textarea input, form .textarea textarea {
	border: 1px solid#ccc;
	color: #888;
}

form .textarea input:focus, form .textarea textarea:focus {
	color: #555;
}


#contentColumn2 form .textarea input, #contentColumn2 form .textarea textarea {
	width: 16em;
}

#contentColumn2 form {
	margin-top: 1.4em;
}

form *[disabled=disabled], .disabled {
	opacity: 0.5;
	background-image: none !important;
}

.promo form .textarea input, .promo form .textarea select {
	width: 200px;
}

form#formFindAJewishMuseum button {
}

/* @end */

table {
	background-color: #d2b48c;
	width: 99%;
}

table th, table td {
	font-size: .75em;
}

table th {
	background-color: #eee8aa;
	color: #963;
	font-weight: normal;
	font-size: .875em;
	text-transform: uppercase;
}

table tr.alt td {
	background-color: #fffff0;
}

table.calendar {
	width: 245px;
	float: right;
	table-layout: fixed;
	background-color: #eee8aa;
}

table.calendar caption {
	color: #963;
	background-color: #efecd4;
	border: 1px solid #eee8aa;
	font: normal 1em Georgia, "Times New Roman", Times, serif;
	text-align: center;
	margin-bottom: -1px;
	text-transform: uppercase;
}

table.calendar th, table.calendar th {
	font-size: .714em;
}

table.calendar th {
	text-align: center;
	background-color: #f4eeaf;
}

table.calendar td {
	text-align: right;
	background-color: #fff;
}

table.calendar td a {
	
}

table td.date {
	font-size: .71em;
	white-space: nowrap;
}

#pg_Events table.tableList {
	width: 470px !important;
	margin-right: 255px;
}

table.tablecolumns {
	background-color: transparent;
	border-spacing: 0;
	border-collapse: collapse;
	empty-cells: hide;
	table-layout: fixed;
}

table.tablecolumns td, table.tablecolumns th {
	border: 1px solid #eee;
	border-width: 1px 0;
}

table.tablecolumns td.center, table.tablecolumns th.center {
	border-width: 1px;
}

table.tablecolumns tr.top td {
	border-top-width: 0;
}


table.invisible, table.invisible th, table.invisible td, table.invisible tr {
	border-width: 0;
	background-color: transparent;
}


table.invisible th, table.invisible td {
	vertical-align: top;
	text-align: center;
}

.filelist ul, ul.filelist, dl.filelist {
	list-style: none;
	padding-left: 0;
}

.filelist li, dl.filelist dd {
	line-height: 1.5;
	margin-bottom: .75em !important;
}

.filelist ul dfn, ul.filelist dfn {
	font-size: .75em;
}

a.icn {
	padding-left: 20px !important;
	background-repeat: no-repeat;
	background-position: left center;
}

a.web {
	background-image: url(../images/icn-web-sm.png);
}

a.map {
	background-image: url(../images/icn-map.png);
}

.vcard a.dnld, a.vcard {
	background-image: url(../images/icn-vcard-sm.png);
}

a.doc {
	background-image: url(../images/icn-page_word.png);
}

a.img {
	background-image: url(../images/icn-picture.png);
}

a.pdf {
	background-image: url(../images/icn-page_white_acrobat.png);
}

a.user {
	background-image: url(../images/icn-user_edit.png);
}

a.txt, a.rtf {
	background-image: url(../images/icn-page_word.png);
}

a.xls {
	background-image: url(../images/icn-page_excel.png);
}

a.zip {
	background-image: url(../images/icn-page_white_zip.png);
}

dl.vcard {
	margin-bottom: .3em;
	margin-right: 1em;
	border: 1px solid #fffacd;
	border-width: 1px 0;
	padding: .6em;
	width: 225px;
	float: left;
	font-size: .75em;
}

dl.vcard dt, dl.vcard dd {
	padding: 0;
	margin-bottom: .3em;
}

dl.vcard dt {
	font-weight: bold;
}

dl.vcard dd.tools {
	font-size: .78em;
}

dl.vcard dd.tools a {
	display: inline-block;
	margin-right: .7em;
	line-height: 2;
	border-width: 0;
}

dl.vcard dd abbr {
	border-width: 0;
}

ul.linklist li {
	margin-bottom: .7em;
}

ul.linklist .date {
	display: block;
	margin-top: .5em;
}

/* @end */

/* @group Footer */

#footer {
	background: #600 url(../images/footer_bg.gif) repeat-x;
	padding-bottom: 1em;
	color: #ffffff;
}

#footer .content {
	width: 1100px;
	margin: 10px 0 0 0;
	font-size: .6875em;
}

#footer .content .module, #footer .content .promo {
	width: auto;
	border-width: 0;
	margin: 0;
	padding: 0;
	font-size: inherit;
	font-family: Georgia, "Times New Roman", Times, serif;
} 

#footer h1, #footer h2, #footer h2 a  {
	font-family: "Lucida Grande", "Lucida Sans", "Lucida Sans Unicode", Lucida, "Trebuchet MS", Verdana, sans-serif;
	font-weight: normal;
	color: #fff;
}

div#footer h1 {
	text-transform:none;
}

div#footer h2 {
	font-size: 1.35em;
}

#footer .content p {
	letter-spacing: .10em;
}

#footer-block-left, #footer-block-mid, #footer-block-right {
	border: 1px solid #733;
	border-width: 0 1px;
	margin: 0 0 0 -1px;
	height: 280px;
}

#footer-block-left {
	width: 225px;
	margin-top: 20px;
	padding: 0px 10px 0px 10px;
}

#footer-block-mid {
	width: 225px;
	margin-top: 20px;
	padding: 0px 10px 0px 10px;
}

#footer-block-right {
	width: 470px;
	padding: 0px 10px 0px 10px;
}

div#footer address, div#footer cite {
	font-style: normal;
}

div#footer address cite {
	font-weight: bold;
}

ul#navigationFooter  {
	list-style-image:none;
	list-style-position:outside;
	list-style-type:none;
	margin:0;
	padding:0;
}

ul#navigationFooter li {
	padding: 0 .5em;
}

ul#navigationFooter li a {
	color: #ffffff;
	font-size: 1.1em;
	font-family:Georgia,"Times New Roman",Times,serif;
}

ul#navigationFooter li.first {
	font-size: 1.2em;
}

#copyright {
	font-family: Georgia, "Times New Roman", Times, serif;
	font-size: .8em;
}

/* @group Contact Form */

#footer .formpart input, #footer .formpart textarea, #footer .formpart select {
	background-color: #8d4d4d;
	border: 1px solid #b28080;
	color: #fff;
	padding: 3px;
	width: 219px;
}

#form-right {
	margin-left: 1.4em;
}



/* @end */

/* @end */

/* @group Home */

body#pg_Home {
	background-image: url(../images/upper_bg_home.png);
}

#pg_Home #navigationMain dl.active dt {
}


#pg_Home div#content .content {
	margin-top: 12px !important;
}

#pg_Home #navigationMain {
}


/* @end */

/* @group Search Results */

#searchResults dl {
	width: auto;
}

#searchResults dt {
	font-weight: bold;
	text-transform: uppercase;
	letter-spacing: .075px;
}

#searchResults dd {
	width: auto;
}

#searchResults dd.photo {
	width: 200px;
	overflow: hidden;
	float: left;
	margin-right: 1em;
}

/* @end */

/* @group Programs */

/* @group CAJM Conference */

/* @group CAJM Conference */

#pg_Programs #eventCajmConference {
	color: #591f00;
}


/* @end */

#pg_Programs #eventCajmConference h2 {
	color: #00a0af;
}


/* @end */

#pg_Programs .eventhighlight {
	border: 4px double #ccc;
	border-width: 4px 0 4px 0;
	padding: 0 0 24px 0;
	margin: 0;
}

#pg_Programs #listEvents .linklist {
	font-size: .75em;
}


/* @end */

/* @group Staff */

#pg_Staff .vcard .adr, #pg_Staff .vcard .tel{
	display: none !important;
}

#pg_Staff .vcard {
	height: 9em;
	width: 220px;
}

/* @end */

/* @group Login */

form#formLogin, div#memberStatus {
	position: absolute;
	top: 0px;
	left: 0px;
	width: 621px;
	height: 26px;
	padding: 12px 10px 12px 94px;
	font-size: .75em;
	color: #fff;
}

form#formLogin formpart, form#formLogin input {
	font-size: 1em;
	color: #fff;
}

form#formLogin input {
	background-color: #6f5858;
	position: relative;
}

form#formLogin .label {
	display: inline;
}

form#formLogin button.action1 {
	background-color: #9c6;
	color: #360;
}

form#formLogin.usermessage {
	height: auto;
}

div#memberStatus p {
	line-height: 30px;
}

/* @end */

/* @group Search */


#formSearch {
	position: absolute;
	top: 0px;
	left: 728px;
	width: 270px;
	height: 26px;
	padding: 12px 0px 12px 0px;
	font-size: .75em;
	color: #fff;
}

#formSearch input {
	font-size: 1em;
}

#formSearch input#q {
	float: left;
	width: 190px;
	color: #6f5858;
	background-color: #fff;
	position: relative;	
}

#formSearch input#qsubmit {
	float: right;
	display: inline-block;
	position: relative;
	padding: .5em .7em;
	background: #9c6 url(../images/btn-highlight.png) repeat-x center top;
	font-size: 1em;
	line-height: 1;
	font-weight: normal;
	font-style: normal;
	text-decoration: none;
	border: 1px solid #ccc;
	color: #360;
}


/* @end */

/* @group Modules */

.tableList dl, .tableList dd {
	padding-left: 0;
	width: auto;
}

.tableList .museum small {
	display: block;
}

.tableList td dfn {
	display: block;
	font-size: .75em;
}

/* @group Collections */

div.groupfold {
	padding: 0;
	padding-left: 0;
	width: 725px;
	border: 1px solid #d2b48c;
	margin-bottom: -1px;
	overflow: hidden;
}

div.groupfold h2 {
	padding: .5em;
	margin-bottom: -1px;
	border: 1px solid #d2b48c;
	border-width: 0 0 1px 0;
	background-color: #eee8aa;
	color: #963;
	text-transform: uppercase;
	font-family: "Lucida Grande", "Lucida Sans", "Lucida Sans Unicode", Lucida, "Trebuchet MS", Verdana, sans-serif;
}

div.groupfold h2 small {
	font-size: .5em;
	margin-left: 1em;
	vertical-align: baseline;
}

div.groupfold h2 a {
	padding: .25em;
	color: #c60;
	text-transform: lowercase;
}

div.groupfold dl {
	position: relative;
	margin: 10px;
	margin-bottom: -1px;
	margin-top: 0;
	padding: 1em 0;
	border: 1px dotted #ddd;
	border-width: 0 0 1px 0;
	width: 705px;
	min-height: 80px;
	height: 80px;
	height: auto !important;
}

div.groupfold dd {
	padding: 0;
	font-size: .75em;
}

div.groupfold dt, div.groupfold dd.description {
	width: 340px;
	margin-left: 70px;
}

div.groupfold dt {
	/*float: left;*/
}

div.groupfold dd.museum {
	width: 270px;
	/*float: right;*/
	position: absolute;
	top: 1.75em;
	right: 0;
}

div.groupfold dd.museum small {
	white-space: nowrap;
}

div.groupfold dd.museum p {
	margin-top: .5em;
}

div.groupfold dd.description {
	padding-bottom: .75em;
}

div.groupfold dd.thumbnail {
	width: 60px;
	position: absolute;
	top: 1.5em;
	left: 0;
}

/* @end */

/* @group Exhibits */

#pg_Events dd.description {
	width: 480px;	
	padding: 0px;
}

#pg_Events dd.photo {
	float: left;
	padding: 0 .75em .5em 0;
}

#pg_Events dd.description p.link {	
	clear: left;
}


/* @end */

/* @group Spotlight */

#modSpotlight {
	width: 705px;
	height: 330px;
	padding: 0 0 1.5em 10px;
	border-bottom: 4px double #ddd;
	background: url(../images/spotlight_bg.jpg) no-repeat;
	overflow: hidden;
}


#modSpotlight dl {
	margin: 0px;
	padding: 10px;
	padding-left: 0;
	position: relative;
}

#modSpotlight dl * {
	color: #fff;
	font-family: "Lucida Grande", "Lucida Sans", "Lucida Sans Unicode", Lucida, "Trebuchet MS", Verdana, sans-serif;
}

#modSpotlight a {
	color: #f90;
}

#modSpotlight dt, #modSpotlight dd, #modSpotlight h3, #modSpotlight ul.linklist {
	width: 215px;	
}

#modSpotlight dd.photo {
	position: absolute;
	top: 10px;
	right: 10px;
	width: 470px;
	height: 310px;
}

#modSpotlight dt {
	font-size: 2em;
	line-height: 1;
	margin-bottom: .25em;
	text-transform: uppercase;
	letter-spacing: .15em;
}

#modSpotlight dl, #modSpotlight dd {
	margin-bottom: 0;
}

#modSpotlight h2 {
	color: #9c3;
	text-transform: none;
	margin-bottom: .5em;
	font-size: 1.33em;
	letter-spacing: normal;
	line-height: 1.3;
}

#modSpotlight h2 small {
	font-size: .625em;
	display: block;
}

#modSpotlight h3 {
	color: #fff;
	text-transform: none;
	font-size: 1.16em;
	padding: 8px 0 0 0;
	border: 1px dotted #555;
	border-width: 2px 0 0 0;
	letter-spacing: normal;
}

#modSpotlight ul.linklist {
	list-style-image: none;
	list-style-type: square;
	overflow: hidden;
}

#modSpotlight ul.linklist li {
	color: #888;
	margin-bottom: .3em;
}

/* @end */

/* @group News+Events */

#pg_Events .museum small {
	display: block;
}

#pg_Events img {
	max-width: 200px;
}

#pg_Events table.tableList caption{
	padding: .5em;
	margin-bottom: -1px;
	background-color: #eee8aa;
	color: #963;
	text-transform: uppercase;
	border-color: #c5a983;
}

.calendar .eventday {
	/*background-color: #fefce8;
	color: #c60;
	font-weight: bold;*/
}

#pg_Home #contentColumn2 .promo {
	margin-top: 24px;
}

#pg_Home #modNews {
	position: relative;
	float: left;
	width: 470px;
	padding-right: 9px;
	border: 1px solid #ddd;
	border-width: 0 1px 0 0;
	margin-right: -1px;
}

#pg_Home #modNews h1 {
	color: #963;
}

#pg_Home #modNews .newsitem {
	position: relative;
	float: left;
	width: 225px;
	padding: 0 10px 0 0;
	border: 1px dotted #ddd;
	border-width: 0 1px 0 0;
	margin-right: -1px;
	margin-bottom: 1.4em;
}

#pg_Home #modNews dl.last {
	padding: 0 0 0 10px;
	border-width: 0 0 0 1px;
}

#pg_Home #modNews .newsmore {
	clear: left;
	margin-top: 1.4em;
	position: relative;
	border: 1px dotted #ddd;
	border-width: 1px 0;
	padding: 12px 0;
}

#pg_Home #modNews .newsmore h2 {
	font-family: "Lucida Grande", "Lucida Sans", "Lucida Sans Unicode", Lucida, "Trebuchet MS", Verdana, sans-serif;
}

#pg_Home #modNews .newsmore dd {
	float: left;
	width: 225px;
	padding-right: 10px;
	padding-left: 65px;
	width: 160px;
}

#pg_Home #modNews .newsmore dd .date {
	margin-left: -65px;
	float: left;
}

#pg_Home #contentColumn2 .promo {
	float: left;
	width: 225px;
	padding: 0 0 0 10px;
	border: 1px solid #ddd;
	border-width: 0 0 0 1px;
}

#pg_Home #contentColumn2 #modNews + .module {
	margin-top: 24px;
}

#pg_News #modNews dl {
	margin-bottom: 2em;
	border: 1px dotted #eee8aa;
	border-width: 0 0 1px 0;
	padding-bottom: .75em;
}

#pg_News dd.description {
	width: auto;	
}


/* @end */

#pg_Home .module {
	font-size: .75em;
}

#pg_Home #promoOurMission {
	border-top-width: 0;
	padding-top: 1em;
}

#module1 {
}

#module1, #module1 h2 {
	
}

/* @group e-Newsletter */

#promoNewsletterSignup {
    background-color: #ffffe0;
}

#promoNewsletterSignup.promo {
	margin: 0;
	padding: 0 0 14px;
}

#promoNewsletterSignup h2,
#promoNewsletterSignup .formpart {
    margin-left: 5px;
    margin-right: 5px;
}

#pg_Home #contentColumn2 #promoNewsletterSignup {
    width: 235px;
}

/* @end */

/* @end */

.navigation li, .navigation dt {
	float: left;
	padding: 0 1em;
	background-image: none;
}

.scrollbox {
	overflow: auto;
}


#lightwindow a {
    border-width: 0 !important;
}


/* @end */

/* @group IE 6 Fixes */

* html {
}

* html .disabled {
	filter:alpha(opacity=50);
}

* html #footer {
	zoom: 1.0;
	width: 100%;
}

* html #footer .content .module, * html #footer .content .promo {
	font-size: 100%;
}

* html form#formLogin, * html div#memberStatus {
	position: static;
	margin-bottom: -64px;
}

* html #formSearch {
	position: absolute;
	top: 0px;
	left: 628px;
	width: 300px;
}

* html #formSearch input#q {
	position: static;	
	height: 25px;
	width: 210px;
	font-size: 1em;
}


* html table.data, * html table.data th, * html table.data td, * html table.data caption {
	border: 1px solid #d2b48c;
}

* html #modSpotlight h3 {
	margin-top: -12px;
}



/* @group Navigation */

* html #navigationMain {
	z-index: 5000;	
}

* html #navigationMain dl {
	overflow: visible;
}


* html #navigationMain dl:hover dd {
	display: none !important;
}

* html #navigationMain dl.active dd {
	display: block !important;
    background-color: transparent !important;
}



/* @end */

/* @end */

/* @group IE 7 Fixes */

*:first-child+html {
	
}

*:first-child+html table.data, *:first-child+html table.data th, *:first-child+html table.data td, *:first-child+html table.data caption {
	border: 1px solid #d2b48c;
}

*:first-child+html .disabled {
	filter:alpha(opacity=50);
}

*:first-child+html #footer {
	zoom: 1.0;
	width: 100%;
}

*:first-child+html #footer .content .module, *:first-child+html #footer .content .promo {
	font-size: 100%;
}


*:first-child+html form#formLogin, *:first-child+html div#memberStatus {
	position: static;
	margin-bottom: -50px;
}


*:first-child+html #formSearch {
	position: absolute;
	top: 0px;
	left: 628px;
	width: 300px;
}

*:first-child+html #formSearch input#q {
	position: static;	
	height: 25px;
	width: 210px;
	font-size: 1em;
}



/* @group Navigation */

*:first-child+html  #navigationMain dl {
	overflow: visible;
}

*:first-child+html #navigationMain dl:hover dd {
	display: none !important;
}

*:first-child+html #navigationMain dl.active dd {
	display: block !important;
    background-color: transparent !important;
}

/* @end */

/* @end */

/* @group Debug */

/*
body {
background-color: orange;
}
*/

/*
#header, #footer {
background-color: #eee;
}
*/

/*
#content {
background-color: #ddd;
}
*/


/*div#contentColumn1 {
background-color: #dff;
}*/



/*div#contentColumn2 {
background-color: #0ff;
}*/



/*.master {
outline: 1px dotted pink;
}*/


/*
.content {
outline: 1px dashed red;
}
*/

/* @end */
