@charset "utf-8";
body  {
	font: 100% Verdana, Arial, Helvetica, sans-serif;
	background: #FFFFFF url();
	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 (#wrapper) in IE 5* browsers. The text is then set to the left aligned default in the #wrapper selector */
	color: #000000;
}

a:link, a:visited, a:hover {
	text-decoration: none;
}
a:link {
	color: #F20058;
	text-decoration: none;
}
a:visited {
	color: #F20058;
}
a:hover {
	text-decoration: none;
	color: #333;
}


#wrapper {
	width: 1000px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	background: #ffffff; /* the auto margins (in conjunction with a width) center the page */
	border: 0px solid #666666;
	text-align: left; /* this overrides the text-align: center on the body element. */
	margin: auto;
}

/*--Header Logo ---*/
#wrapper #header { 
	background: #FFFFFF; 
	padding: 10px 0px 0px 0px;  /* this padding matches the left alignment of the elements in the divs that appear beneath it. If an image is used in the #header instead of text, you may want to remove the padding. */
	height: 20px;
	position: relative;
	margin-bottom: 145px;
} 
#wrapper #header a{
	background: url(graphics/jblogodrawn.gif) no-repeat;
	display: block;
	height: 85px;
	width: 400px;
	margin-top: 25px;
}
#wrapper #header a:hover {
	text-decoration: none;
}
#wrapper #header a span {
	visibility: hidden;
}
/*--Social Media Buttons --*/	
ul#social-media-buttons-list {
	width: auto;
	position: relative;
	border: 0px solid #000;
	margin: -175px 40px 0px 0px;
	height:  55px;
	list-style-type: none;
	float: right;
	
   	}	
	
ul#social-media-buttons-list li.fltlft {
    border: 0px solid #000;
	float: left;
	width: auto;
	}	
	
ul#social-media-buttons-list img {
	border: 0px solid red;
	}

ul#social-media-buttons-list li a {
	text-decoration: none;
	}

/*-- Navigation Bar --*/	
ul#navigation {
	list-style-type:none;
	position: relative;
	margin: 15px 45px 50px 15px;
	width: auto;
	border: 0px solid #000;
	text-align: right;
}

ul#navigation li {
	display: inline;
	}
	
ul#navigation li a {
	padding: 5px;
	margin: 2px 2px;
	text-decoration: none;
	text-align: center;
	color: #666666;
	font-size: 100%;
	font-weight: bold;
	letter-spacing: .2px;
	border: 0px solid #BC175A;
}

ul#navigation li a:hover {
	color: #F20058;
	background: transparent;
}

ul#navigation li a#gal1:hover{
	background: url(graphics/genderoutlaw.jpg) no-repeat center;
	color: #F20058;
	padding: 75px 5px 5px 5px;
}

ul#navigation li a#gal2:hover {
	background: url(graphics/wink.jpg) no-repeat center;
	color: #F20058;
	padding: 75px 5px 5px 5px;
}

ul#navigation li a#gal3:hover {
	background: url(graphics/olivia.jpg) no-repeat center;
	color: #F20058;
	padding: 75px 5px 5px 5px;
}

ul#navigation li a.current {
	background-color: transparent;
	color: #F20058;
}

/*-- Sidebar --*/
#wrapper #sidebar1 {
	float: left; /* since this element is floated, a width must be given */
	width: 150px; /* the actual width of this div, in standards-compliant browsers, or standards mode in Internet Explorer will include the padding and border in addition to the width */
	background: #FFFFFF; /* the background color will be displayed for the length of the content in the column, but no further */
	padding: 15px 10px 15px 20px;
}

/*--Main Content Area --*/
#wrapper #mainContent { 
	margin: 0 0 0 200px; /* the left margin on this div element creates the column down the left side of the page - no matter how much content the sidebar1 div contains, the column space will remain. You can remove this margin if you want the #mainContent div's text to fill the #sidebar1 space when the content in #sidebar1 ends. */
	padding: 0 20px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
	font-size: 76%;
} 
#wrapper #mainContenthome { 
	margin-left: 30px;/* the left margin on this div element creates the column down the left side of the page - no matter how much content the sidebar1 div contains, the column space will remain. You can remove this margin if you want the #mainContent div's text to fill the #sidebar1 space when the content in #sidebar1 ends. */
	padding: 10px 20px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
}

#wrapper #mainContenthome p {
	font-size: 76%;
	text-align: left;
	width: 375px;
	float: right;
	margin-top: 50px;
	margin-right: 22px;
	margin-bottom: 50px;
}

#wrapper #mainContent h1,h2 {
	font-family: Verdana, Geneva, sans-serif;
	font-size: 150%;
	text-align: left;
	letter-spacing: .5px;
}

#wrapper #mainContent p {
	font-size: 110%;
	color: #000;
}

#exhibitions h2, h3 {
	font-size: 110%;
	font-weight: bold;
	letter-spacing: 1px;
}

#exhibitions ul {
	list-style-type: none;
	text-decoration: none;
	font-style: italic;
	font-weight: bold;
}

#exhibitions li {
	line-height: 18px;
	font-style: normal;
	font-weight: normal;
}

.showtitle {
	font-style: italic;
}

#currentshow a:link {
	color: #F20058;
}

#currentshow a:hover {
	color: #333;
	text-decoration: underline;
	}

#mainContent #statement {
	margin-right: 45px;
	margin-bottom: 20px;
}

#mainContent #statement p {
	color: #333;
}
#wrapper #sidebar1 h3, p {
	font-size: 100%;
	font-weight: normal;
	color: #666666;
}

/*--Footer --*/
#wrapper #footer { 
	padding: 0 10px 0 20px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
	background:#FFFFFF; 
} 
#wrapper #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 0px; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
	text-align: center;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 76%;
	line-height: 15%;
	color: #333;
}
#wrapper #footer p#rlhbyline {
	font-size: 65%;
	}
#wrapper #footer p#rlhbyline a {
	color: #F20058;
	}

/*--Floats--*/
.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;
}
.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;
}