@charset "UTF-8";
body  {
	font: 100%  Arial, Helvetica, sans-serif;
	background: #666;
	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;
	line-height: 1.5em;
}
h1, h2, h3 { 
  font-weight: normal;   letter-spacing: -.05em;   line-height: 1.1em;
}
a img {
	border:none;
}
#container  {
	width: 100%;  /* this will create a container 100% of the browser width */
	background: #666666;
	margin: 0;
	text-align: left; /* this overrides the text-align: center on the body element. */
} 
#header  {
	padding: 0;
	margin: 8px auto;
	text-align: center;
	width: 98%;
	background-color: #FFF;
	min-width:600px;
} 

/* Tips for mainContent:
1. The space between the mainContent and sidebar1 is created with the left margin on the mainContent div.  No matter how much content the sidebar1 div contains, the column space will remain. You can remove this left margin if you want the #mainContent div's text to fill the #sidebar1 space when the content in #sidebar1 ends.
2. Be aware it is possible to cause float drop (the dropping of the non-floated mainContent area below the sidebar) if an element wider than it can contain is placed within the mainContent div. WIth a hybrid layout (percentage-based overall width with em-based sidebar), it may not be possible to calculate the exact width available. If the user's text size is larger than average, you will have a wider sidebar div and thus, less room in the mainContent div. You should be aware of this limitation - especially if the client is adding content with Contribute.
3. In the Internet Explorer Conditional Comment below, the zoom property is used to give the mainContent "hasLayout." This may help avoid several IE-specific bugs.
*/

#mainContent {
	margin: 0 auto;
	padding: 0;
	min-width:1280px;
}

#mainContent p{ font-size: 1em; } 

/* Tips for mainContent:
1. If you give this #mainContent div a font-size value different than the #sidebar1 div, the margins of the #mainContent div will be based on its font-size and the width of the #sidebar1 div will be based on its font-size. You may wish to adjust the values of these divs.
2. The space between the mainContent and sidebar1 is created with the left margin on the mainContent div.  No matter how much content the sidebar1 div contains, the column space will remain. You can remove this left margin if you want the #mainContent div's text to fill the #sidebar1 space when the content in #sidebar1 ends.
3. To avoid float drop, you may need to test to determine the approximate maximum image/element size since this layout is based on the user's font sizing combined with the values you set. However, if the user has their browser font size set lower than normal, less space will be available in the #mainContent div than you may see on testing.
*/

.galleryItem {
	padding: 6px;
	float: left;
	width: auto;
	border: 0px solid #666;
	vertical-align: middle;
}
.thumbnail {
	width: 100px;
	float: left;
	height: 100px;
	margin: 0;
	text-align: center;
	vertical-align: middle;
}
#footer  {
	background:#666;
	color: #FFFFFF;
	text-align: center;
} 
#footer  p  {
	margin: 0 auto; /* zeroing the margins of the first element in the footer will avoid the possibility of margin collapse - a space between divs */
	padding: 0; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
	font-size: 0.7em;
}

/* Miscellaneous classes for reuse */
.fltrt { /* this class can be used to float an element right in your page. The floated element must precede the element it should be next to on the page. */
	float: right;
	margin-left: 8px;
}
.fltlft { /* this class can be used to float an element left in your page */
	float: left;
	margin-right: 8px;
}
.fltrth { /* this class can be used to float an element right in your page. The floated element must precede the element it should be next to on the page. */
	float: right;
	margin-left: 8px;
	padding-right: 40px;
}
.fltlfth { /* this class can be used to float an element left in your page */
	float: left;
	margin-right: 8px;
	padding-left: 30px;
}
.clearfloat { /* this class should be placed on a div or break element and should be the final element before the close of a container that should fully contain a float */
	clear:both;
    height:0;
    font-size: 1px;
    line-height: 0px;
}
.centered {
	text-align:center;
	padding: 0 5%;
	margin: 0 0 10px 0;
}
p.centered img {
	border: 1px solid #666;
	padding: 10px;
}
.pictureHirez { display: none; }

#slidingGallery {
	float: left;
	height: 102px;
	border: solid 0px #666;
	display: none;
	width: 580px;
}
#slidingGallery #galleryContentGroup {
	width: 1000em;
	overflow: hidden;
}
#slidingGallery .SlidingPanelsContent {
	float: left;
	width: auto;
	height: 100px;
	overflow: hidden;
}
#slidingGallery .galleryItem {
	border: none;
	width: 100px;
	height: 100px;
	padding-top: 20px;
	border-right: solid 0px #666;
	vertical-align: middle;
}
.SlidingPanels, .SlidingPanelsContentGroup { position: relative; }

#mainContent #detailArea {
	margin-right: auto;
	margin-left: auto;
	padding: 0px 0px 20px 0px;
	text-align: center;
	display: none;
	height: 400px;
	width: auto;
}
#mainContent #flashcontent {
	height: 100%;
	margin-left: 280px;
	cursor: pointer;
	margin-top: 40px;
}
#detailArea img {
	padding: 4px;
	border: solid 4px #666;
}
#panelNav {
	display:none;
	text-align: center;
}

#panelNav a {
	display: inline-block;
	cursor: pointer;
	background-color: #666;
	color: #FFFFFF;
	text-decoration: none;
}
#panelNav a:hover, #panelNav a:focus {
	background-color: #666;
	color: #9A2E63;
}

#slideshow {
	margin: 40px auto;
	padding: 0;
	width: 265px;
	text-align: center;
}
#bio {
	width: 400px;
	font-size: 80%;
	margin-left: auto;
	margin-right: auto;
	text-align: justify;
	text-decoration: none;
}
#bio a {
	color: #FFFFFF;
	text-decoration: none;
}
#bio a:hover {
	color: #9A2E63;
}
#imgbio {
	margin-left: auto;
	margin-right: auto;
	width: 300px;
	margin-top: 40px;
	margin-bottom: 20px;
}
#imgphoto {
	width: 300px;
	margin: 40px auto;
	padding-left: 6px;
}
#invite {
	width: 700px;
	margin-left: auto;
	margin-right: auto;
	text-align: center;
	text-decoration: none;
	margin-top: 20px;
}

#exhib_new a {
	display: inline-block;
	cursor: pointer;
	background-color: #666;
	color: #FFFFFF;
	text-decoration: none;
}
#exhib_new a:hover, #exhib_new a:focus {
	background-color: #666;
	color: #9A2E63;
}

#exhib_new {
	width: 410px;
	color:#FFFFFF;
	font-size: 80%;
	margin-left: auto;
	margin-right: auto;
	text-align: center;
	text-decoration: none;
	margin-top: 20px;
}

#exhib_justified {
	width: 600px;
	color:#FFFFFF;
	font-size: 80%;
	margin-left: auto;
	margin-right: auto;
	text-align: justify;
	text-decoration: none;
	margin-top: 20px;
}

#exhib_private {
	color:#9A2E63;
}

#exhib {
	width: 900px;
	font-size: 80%;
	margin-left: 16em;
	margin-right: auto;
	text-decoration: none;
	margin-top: 40px;
}
#exhib a {
	display: inline-block;
	cursor: pointer;
	background-color: #666;
	color: #FFFFFF;
	text-decoration: none;
}
#exhib a:hover, #exhib a:focus {
	background-color: #666;
	color: #9A2E63;
}

#press {
	float:left;
	width: 900px;
	font-size: 80%;
	margin-right:6%;
	text-decoration: none;
	text-align:left;
	margin-top: 0px;
}
#press a {
	display: inline-block;
	cursor: pointer;
	background-color: #666;
	color: #FFFFFF;
	text-decoration: none;
}
#press a:hover, #press a:focus {
	background-color: #666;
	color: #9A2E63;
}
#leftcolumnpress {
	cursor: pointer;
	float: left;
	width: 220px;
}
#rightcolumnpress {
	float: right;
	width: 660px;
	position: relative;
	margin-left: 10px;
	margin-bottom: 30px;
}
#leftcolumn {
	cursor: pointer;
	float: left;
	width: 300px;
}
#rightcolumn {
	float: right;
	width: 536px;
	position: relative;
	margin-left: 10px;
	margin-bottom: 30px;
}
#table { width: 100%; }
th {
	text-align: left;
	font-size: 110%;
	color: #93386B;
}
tr { font-size: 90%; }
td {
	color: #FFF;
}
#show {
	margin-left: 300px;
	margin-right: auto;
	width: 600px;
	margin-top: 10px;
	margin-bottom: 10px;
	height: 100%;
}
#contact {
	width: 500px;
	height: 300px;
	margin: 40px auto;
}
#contact a {
	color: #FFFFFF;
	text-decoration: none;
}
#contact a:hover {
	color: #9A2E63;
}
.selectRow {
	font-size: 1em;
	font-weight: bold;
}
.hoverRow {
	color: #93386B;
}
#menu{
}
#accordion {
	position:relative;
	float: left;
	list-style: none;
	padding: 0 0 0 30px;
	margin: 0;
	width: 200px;
	color:#FFF;
}
#accordion li{
	display: block;
	background-color: #666;
	color:#FFF;
	font-weight: normal;
	margin: 1px;
	cursor: pointer;
	padding: 5 5 5 7px;
	list-style: none;
	-moz-border-radius: 0px;
	-webkit-border-radius: 0px;
	border-radius: 0px;
	text-align: left;
	font-size: 0.9em;
}
#accordion ul {
	list-style: none;
	padding: 0 0 0 0;
	display: none;
}
#accordion ul li{
	font-weight: normal;
	cursor: auto;
	background-color: #666666;
	padding: 0 0 0 10px;
}
#accordion a {
	text-decoration: none;
	color:#FFF;
}
#accordion a:hover {
	text-decoration: none;
	color:#9A2E63;
}
#accordion a#selected{
	text-decoration: none;
	color:#9A2E63;
	font-weight:bolder;
	font-size:1.1em;
}
.smlfnt{
	font-size:.9em;
}

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

 LAYOUT INFORMATION: describes box model, positioning, z-order

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

/* The outermost container of the Menu Bar, a fixed width box with no margin or padding */
ul.MenuBarVertical
{
	margin: 0 0 0 28px;
	padding: 0;
	list-style-type: none;
	font-size: 0.8em;
	cursor: default;
	width: 9em;
}
/* Set the active Menu Bar with this class, currently setting z-index to accomodate IE rendering bug: http://therealcrisp.xs4all.nl/meuk/IE-zindexbug.html */
ul.MenuBarActive
{
	z-index: 1000;
}
/* Menu item containers, position children relative to this container and are same fixed width as parent */
ul.MenuBarVertical li
{
	margin: 0;
	padding: 0;
	list-style-type: none;
	font-size: 100%;
	position: relative;
	text-align: left;
	cursor: pointer;
	width: 9em;
}
/* Submenus should appear slightly overlapping to the right (95%) and up (-5%) with a higher z-index, but they are initially off the left side of the screen (-1000em) */
ul.MenuBarVertical ul
{
	margin: 0 0 0 99%;
	padding: 0;
	list-style-type: none;
	font-size: 100%;
	position: absolute;
	z-index: 1020;
	cursor: default;
	width: 7.8em;
	left: -1000em;
	top: 0;
}
/* Submenu that is showing with class designation MenuBarSubmenuVisible, we set left to 0 so it comes onto the screen */
ul.MenuBarVertical ul.MenuBarSubmenuVisible
{
	left: 0;
}
/* Menu item containers are same fixed width as parent */
ul.MenuBarVertical ul li
{
	width: 8em;
}

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

 DESIGN INFORMATION: describes color scheme, borders, fonts

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

/* Outermost menu container has borders on all sides */
ul.MenuBarVertical
{ border: 1px solid #666; }
/* Submenu containers have borders on all sides */
ul.MenuBarVertical ul
{
	border: 0px solid #666;
}
/* Menu items are a light gray block with padding and no text decoration */
ul.MenuBarVertical a
{
	display: block;
	cursor: pointer;
	background-color: #666;
	padding: 0.5em 0 0.5em 24px;
	color: #FFFFFF;
	text-decoration: none;
}
/* Menu items that have mouse over or focus have a blue background and white text */
/* Menu items that are open with submenus are set to MenuBarItemHover with a blue background and white text */
ul.MenuBarVertical a:hover, ul.MenuBarVertical a:focus, ul.MenuBarVertical a.MenuBarItemHover, ul.MenuBarVertical a.MenuBarItemSubmenuHover, ul.MenuBarVertical a.MenuBarSubmenuVisible
{
	background-color: #666;
	color: #9A2E63;
}

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

 SUBMENU INDICATION: styles if there is a submenu under a given menu item

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

/* Menu items that have a submenu have the class designation MenuBarItemSubmenu and are set to use a background image positioned on the far left (95%) and centered vertically (50%) */
/*ul.MenuBarVertical a.MenuBarItemSubmenu
{
	background-image: url(SpryMenuBarRight.gif);
	background-repeat: no-repeat;
	background-position: 95% 50%;
}

 Menu items that are open with submenus have the class designation MenuBarItemSubmenuHover and are set to use a "hover" background image positioned on the far left (95%) and centered vertically (50%) 
ul.MenuBarVertical a.MenuBarItemSubmenuHover
{
	background-image: url(SpryMenuBarRightHover.gif);
	background-repeat: no-repeat;
	background-position: 95% 50%;
}
*/

ul.MenuBarVertical a#selected {
	font-weight: bolder;
	color: #FFFFFF;
	background-color: #666666;
	font-size: larger;
} 
.redtext {
	color:#9A2E63;
}
#juicebox-container {
}
#mainMenu{
	padding-top:30px;
}
