/* This rule resets a core set of elements so that they will appear consistent across browsers. Without this rule, content styled with an h1 tag, for example, would appear in different places in Firefox and Internet Explorer because each browser has a different top margin default value. By resetting these values to 0, the elements will initially be rendered in an identical fashion and their properties can be easily defined by the designer in any subsequent rule. */
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6 {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
}
/* The body is the outermost layout component and contains the visible page content. Setting properties for the body element will help to create consistent styling of the page content and more manageable CSS. Besides using the body element to set global properties, it is common to use the body element to set the background color of the page and create a centered container for the page content to display. */
body {
	background-color: #250449;
	background-image: url(siteimages/pageback.jpg);
	background-position: center;
	background-repeat: repeat-y;
	color: #1B063E;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 12px;
	line-height: 14px;
	margin: 0 0 0 0; /* Sets the margin properties for an element using shorthand notation (top, right, bottom, left) */
	padding: 0 0 0 0; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
	text-align: center;
}
/* Commonly used to style page titles. */
h1 {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 18px;
	line-height: 20px;
}
/* Commonly used to style section titles. */
h2 {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
  font-weight: bold;
  line-height: 14px;
}
/* Sets the style for unvisited links. */
a,  a:link {
	color: #5053F0;
	text-decoration: none;
}
/* Sets the style for visited links. */
a:visited {
  color: #2E3E93;
  text-decoration: none;
}
/* Sets the style for links on mouseover. */
a:hover {
  color: #FF632C;
  text-decoration: underline;
}
/* Sets the style for a link that has focus. */
a:focus {
  color: #FF632C;
}
/* Sets the style for a link that is being activated/clicked. */
a:active {
  color: #FF0000;
}
/* This is a container for the page content. It is common to use the container to constrain the width of the page content and allow for browser chrome to avoid the need for horizontal scrolling. For fixed layouts you may specify a container width and use auto for the left and right margin to center the container on the page. IE 5 browser require the use of text-align: center defined by the body element to center the container. For liquid layouts you may simply set the left and right margins to center the container on the page. */
#outerWrapper {
  margin: 0 auto 0 auto; /* Sets the margin properties for an element using shorthand notation (top, right, bottom, left) */
  text-align: left; /* Redefines the text alignment defined by the body element. */
  width: 857px;
}
#outerWrapper #header {
	background-image: url(siteimages/navback.jpg);
	background-position: center bottom;
	background-repeat: no-repeat;
	font-size: 12px;
	line-height: 15px;
	padding: 0px 0px 18px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
	color: #FFFFFF;
}


#outerWrapper #contentWrapper {
	background-image: url(siteimages/wrapper.jpg);
	background-repeat: repeat-y;
	background-position: center;
	position: relative;
}
#outerWrapper #contentWrapper #rightColumn1 {
	float: right; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
	width: 180px;
	border-left-width: 1px;
	border-left-style: dashed;
	border-left-color: #ADDDF4;
	margin-top: 20px;
	padding: 0px 15px 5px;
	margin-bottom: 0px;
	color: #996633;

}
/* Contains the main page content. When using a mutliple column layout the margins will be set to account for the floated columns' width, margins, and padding. */
#outerWrapper #contentWrapper #content {
	margin: 0 235px 0 0; /* Sets the margin properties for an element using shorthand notation (top, right, bottom, left) */
	padding: 5px 30px 15px 40px;
}
/* Using floated elements and a clear float class is a common method to accomplish multiple column tableless layouts. If floated elements are used without being cleared the elements following will wrap around the floated element. This class should be applied to an element after the last floated element and before the close of the container with floated elements. */
#outerWrapper #contentWrapper .clearFloat {
  display: block;
}
#outerWrapper #footer {
	background-image: url(siteimages/footer.jpg);
	background-position: center top;
	background-repeat: no-repeat;
	padding: 25px 0px 0px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
	text-align: center;
	color: #FE8D01;
	clear: both;
}
#outerWrapper #footer a {
	color: #33FFCC;
	margin-right: 4px;
	margin-left: 4px;
}
#outerWrapper #footer p {
	margin: 0px;
	padding: 7px;
	clear: both;
}
#outerWrapper #header #nav {
	padding: 0 0 0 10px;
}
#outerWrapper #contentWrapper #rightColumn1 form {
	margin: 0px;
	padding: 0px;
}
#outerWrapper #contentWrapper #content .leftflt {
	padding-right: 15px;
	float: left;
	padding-left: 0px;
	padding-bottom: 8px;
	color: #996633;
	text-align: center;
	width: 220px;
}
#outerWrapper #contentWrapper #content p {
	margin: 0px 0px 6px;
	padding: 0px;
}
#outerWrapper #contentWrapper #content h1 {
	padding-bottom: 15px;
	color: #250449;
	padding-top: 10px;
	font-size: 23px;
	font-weight: normal;
	line-height: 1.3em;
}
#outerWrapper #contentWrapper #rightColumn1 h2 {
	color: #330066;
	margin-bottom: 10px;
	margin-top: 10px;
	line-height: normal;
}
#outerWrapper #contentWrapper #content #diarydates li {
	list-style-type: none;
	margin: 0px 0px 4px;
	padding: 6px 3px;
	display: block;
	background-color: #FCFAFE;
}
#outerWrapper #contentWrapper #content #diarydates ul {
	margin: 0px;
	padding: 0px;
}
#outerWrapper #contentWrapper #content #diarydates ul li strong {
	margin-right: 10px;
}
#outerWrapper #contentWrapper #content h4 {
	padding-bottom: 8px;
}
#outerWrapper #contentWrapper #innerwrapper {
	background-image: url(siteimages/contentback.jpg);
	background-repeat: no-repeat;
	background-position: 650px bottom;
	padding-bottom:30px;
	position: relative;
}
#outerWrapper #contentWrapper #innerwrapper #rightColumn1 #form1 input {
	font-size: 11px;
}#p7PMnav li#medium{
	width: 135px;
}#p7PMnav li#contact{
	width: 80px;
	
}#p7PMnav li#poetry{
	width: 70px;
	
}#p7PMnav li#dates{
	width: 68px;
	
}#p7PMnav li#book{
	width: 65px;
	
}#p7PMnav li#teaching{
	width: 80px;
	
}#p7PMnav li#media{
	width: 68px;
	
}#p7PMnav li#contact a{
border-right:none;
}
/* 
  -----------------------------------
  PopMenu Magic Style Sheet
  by Project Seven Development
  www.projectseven.com
  Menu Type: Horizontal
  Style Theme:3 -Blue Sapphire
  -----------------------------------
*/
#p7PMnav {
	margin: 0px 0 20px;
	padding:4px 0;
}
#p7PMnav li {
	list-style-type: none;
	margin: 0;
	padding: 0;
}
#p7PMnav ul {
	margin: 0;
	padding: 0;
	position: absolute;
	left: -9000px;
	z-index: 10000;
}
#p7PMnav a, #p7PMnav ul a {
	display: block;
	text-decoration: none;
	padding: 2px 4px;
	color: #FFFFFF;
	line-height:1;
	border-right-width: 1px;
	border-right-style: solid;
	border-right-color: #FFFFFF;
	font-weight: bold;
	text-align: center;
}
#p7PMnav a:hover, #p7PMnav a:active, #p7PMnav a:focus {
	color: #FFFFFF;
}

/* ------ the current page marker style ------ */
#p7PMnav .p7PMmark {
	color: #F99FFF;
	font-weight: normal;
}
/* ------ the trigger link styles ------- */

/*the normal trigger links */
#p7PMnav ul .p7PMtrg {
}
/* the active trigger link style */
#p7PMnav .p7PMon {
	color: #FFFFFF;
}
#p7PMnav ul .p7PMon {
	background-repeat:	no-repeat;
	background-position: right center;
}
/*the submenu classes */

#p7PMnav .p7PMhide {
	left: -9000px;
	border: 0;
}
#p7PMnav .p7PMshow {
	left: auto;
	z-index: 20000 !important;
}
/* Top level menu width */
#p7PMnav li {
	float: left;
	width: 90px;
}
/* 2nd and subsequent Submenu widths */
#p7PMnav ul, #p7PMnav ul li {
	width: 170px;
	padding-top: 5px;
	padding-bottom: 5px;
	font-size:11px;
	text-align:left;	background-color: #1C0941;

}
#pmmcrumb {
	font-weight: normal;
	margin-bottom: 16px;
	color: #333333;
}
#pmmcrumb a, #pmmcrumb a:visited {
	font-weight: normal;
	color: #535FAC;
}
#pmmcrumb a:hover, #pmmcrumb a:active, #pmmcrumb a:focus {
	font-weight: normal;
	color: #333333;
}
#outerWrapper #header #nav #p7PMnav ul a, #outerWrapper #header #nav #p7PMnav ul a:link {
	font-weight: normal;
	border-right:none;
	letter-spacing: 0.1em;
	padding-right: 4px;
	padding-left: 4px;
	font-weight: normal;
	padding-top: 0px;
	padding-bottom: 0px;
	font-size: 12px;	background-color: #1C0941;
	text-align:left;
}
#outerWrapper #contentWrapper #innerwrapper #rightColumn1 #subnav li {
	list-style-type: none;

}
#outerWrapper #contentWrapper #innerwrapper #rightColumn1 #subnav {
	margin: 0px 0px 12px;
	padding: 0px;
}
#outerWrapper #contentWrapper #innerwrapper #rightColumn1 #subnav a {
	color: #330066;
	display: block;
	padding: 8px 15px 12px 0px;
	border-bottom-width: 1px;
	border-bottom-style: dashed;
	border-botom-color: #674D8E;
	border-bottom-color: #996633;
}
#outerWrapper #contentWrapper #innerwrapper #rightColumn1 #subnav a:hover {
	color: #330066;
	font-weight: bold;
	background-image: url(siteimages/hoverbullet.jpg);
	background-repeat: no-repeat;
	background-position: right center;
}
#outerWrapper #contentWrapper #footer li {
	float: left;
	padding: 0px 3px 0px 4px;
	border-right-width: 1px;
	border-right-style: solid;
	border-right-color: #FE8D01;
	margin: 5px;
	text-align: center;
	list-style-type: none;
}
#outerWrapper #contentWrapper #footer #contact {
	border-right-style: none;
}
#outerWrapper #contentWrapper #content .rtflt {

	padding-right: 0px;
	float: right;
	padding-left: 15px;
	padding-bottom: 8px;
	color: #996633;
	text-align: center;
	width: 220px;
}
#outerWrapper #contentWrapper #innerwrapper #content .quote {
	color: #3C375F;
	font-family: Georgia, "Times New Roman", Times, serif;
	padding: 15px 15px 38px;
	margin: 12px 0px 12px 5px;
	background-position: right bottom;
	background-repeat: no-repeat;
	background-image: url(quoteback.jpg);
}#outerWrapper #contentWrapper #innerwrapper #content .quotecredit {
	padding-left: 0px;
	color: #333333;
	font-family: Georgia, "Times New Roman", Times, serif;
	font-size: 10px;
	font-style: italic;
	line-height: normal;
	font-weight: bold;
	color: #333333;
	text-align: right;
	margin: 0;
	padding-right: 30px;
	padding-top: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
}
#outerWrapper #contentWrapper #innerwrapper #content .quote p {
	font-size: 13px;
	font-style: italic;
	padding-bottom: 12px;
	line-height: 1.33em;
	color: #393568;
	margin-bottom: 0px;
}
#outerWrapper #contentWrapper #content .more {
	text-align: left;
	font-size: 95%;
	border-bottom-width: 1px;
	border-bottom-style: dotted;
	border-bottom-color: #877B91;
	padding-top: 0px;
	padding-bottom: 8px;
}
#outerWrapper #contentWrapper #innerwrapper #rightColumn1 img {
	border-top-style: none;
	border-right-style: none;
	border-bottom-style: none;
	border-left-style: none;
}
#outerWrapper #contentWrapper #innerwrapper #rightColumn1 form {
	margin-top: 8px;
	margin-bottom: 8px;
}
#outerWrapper #contentWrapper #innerwrapper #content h3 {
	margin-bottom: 6px;
	color: #584573;
}
#outerWrapper #contentWrapper #innerwrapper #rightColumn1 .booktext {
	font-size: 90%;
	padding-right: 8px;
	padding-left: 8px;
	line-height: normal;
}
#outerWrapper #contentWrapper #innerwrapper #content #poem {
	background-image: url(siteimages/poemback.jpg);
	background-repeat: repeat-y;
	background-position: center;
}
.error {
	color: #FF0000;
}
#content form {
	margin: 0; /* zeros the margin for a level playing field */
	padding: 0 0 10px; /* floating this form element keeps the internal clearing BR's within the form from clearing the external floated side column. */
	width: 500px;
	margin-left: 35px;
}	
#content fieldset {
	border: 1px solid #CCCCCC; /* defines a border around each fieldset */
	margin: 0 0 10px; /* keeps the fieldset's bottom border 10px off the next element */
	padding: 5px 0 15px 15px; /* creates padding to keep the elements inside away from the edge of the fieldset */
}
#content legend {
	border: 1px solid #BE9E6F; /* creates a defined box/border around the legend */
	color: #fff; /* contrasting text color */
	background: #250449; /* gives the legend the same background as the feature headings */
	padding: 1px 5px 2px; /* keeps the borders away from the text by these specified amounts */
	margin-bottom: 5px; /* creates 5px of space from the bottom of the legend */
	font: bold normal 1em Arial, Helvetica, sans-serif;  /* styles the text within */
}
#content label {
	float: left; /* The label elements in the form are floated left, and the text inside is right aligned. */
 	width: 250px; /* All the labels have the same width, so their right edges line up vertically. */
  	clear: both;
	text-align: right;
	margin-top: 3px; /* this moves the text/label down away from the top of the input */
	}
#content input, #content textarea {
	color: #000; /* creates the text color */
	border: 1px solid #CFCFCF; /* gives the input and textarea a border */
	padding: 0px; /* creates a background color */
	margin: 3px 0px 0px 15px; /* These inputs and the textarea are floated next to the labels. */
	font-size: 11px;
	clear: right;
	font-family: Verdana, Arial, Helvetica, sans-serif;
}

/*\*/ /*/
#content input, #content textarea {
	float: none;
}
/* End show to IE Mac */
/* IEmac must not see these elements floated or it is buggy. That browser, however, is good without floating. The above hack can be read only by IEmac. Be sure you do not add any comments INSIDE the hack or it will close. */

#content input.sminp {
	width: 110px; /* for shorter input boxes. */
	margin-right: 160px; /* this keeps the shorter boxes aligned on the left with the wider ones. */
}

/* this selector changes the inputs and textareas when the cursor is inside in supported browsers */
#content input:focus, #content input:active, #content textarea:focus, #content textarea:active {
	color: #000;
}
#outerWrapper #contentWrapper #innerwrapper #content #contact #submit {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 14px;
	font-weight: bold;
	color: #FFFFFF;
	background-color: #230447;
}
#outerWrapper #contentWrapper #innerwrapper #content .errorbox {
	border: 1px solid #250548;
	padding: 8px 8px 2px;
	color: #FF0000;
	margin-bottom: 15px;
}
#outerWrapper #contentWrapper #innerwrapper #content img {
	border-top-style: none;
	border-right-style: none;
	border-bottom-style: none;
	border-left-style: none;
}
#lightbox{	position: absolute;	left: 0; width: 100%; z-index: 100; text-align: center; line-height: 0;}
#lightbox img{ width: auto; height: auto;}
#lightbox a img{ border: none; }

#outerImageContainer{ position: relative; background-color: #fff; width: 250px; height: 250px; margin: 0 auto; }
#imageContainer{ padding: 10px; }

#loading{ position: absolute; top: 40%; left: 0%; height: 25%; width: 100%; text-align: center; line-height: 0; }
#hoverNav{ position: absolute; top: 0; left: 0; height: 100%; width: 100%; z-index: 10; }
#imageContainer>#hoverNav{ left: 0;}
#hoverNav a{ outline: none;}

#prevLink, #nextLink{ width: 49%; height: 100%; background-image: url(data:image/gif;base64,AAAA); /* Trick IE into showing hover */ display: block; }
#prevLink { left: 0; float: left;}
#nextLink { right: 0; float: right;}
#prevLink:hover, #prevLink:visited:hover { background: url(images/prevlabel.gif) left 15% no-repeat; }
#nextLink:hover, #nextLink:visited:hover { background: url(images/nextlabel.gif) right 15% no-repeat; }

#imageDataContainer{ font: 10px Verdana, Helvetica, sans-serif; background-color: #fff; margin: 0 auto; line-height: 1.4em; overflow: auto; width: 100%	; }

#imageData{	padding:0 10px; color: #666; }
#imageData #imageDetails{ width: 70%; float: left; text-align: left; }	
#imageData #caption{ font-weight: bold;	}
#imageData #numberDisplay{ display: block; clear: left; padding-bottom: 1.0em;	}			
#imageData #bottomNavClose{ width: 66px; float: right;  padding-bottom: 0.7em; outline: none;}	 	

#overlay{ position: absolute; top: 0; left: 0; z-index: 90; width: 100%; height: 500px; background-color: #000; }
#outerWrapper #contentWrapper #innerwrapper #content .leftflt form {
	width: auto;
}
#outerWrapper #header #nav #p7PMnav #home {
	width: 68px;
}
#outerWrapper #contentWrapper #innerwrapper #rightColumn1 .notice {
	border: 1px solid #0003FB;
	background-image: url(noticeback.jpg);
	background-repeat: no-repeat;
	background-position: center top;
	padding-top: 35px;
	padding-right: 10px;
	padding-left: 10px;
	text-align: center;
	color: #0003FB;
}
#outerWrapper #contentWrapper #innerwrapper #rightColumn1 .notice p {
	margin: 0px;
	padding: 0px 0px 3px;
	font-size: 11px;
}
#outerWrapper #contentWrapper #innerwrapper #weekends {
	padding-right: 20px;
	padding-left: 20px;
	background-repeat: no-repeat;
	background-position: center top;
	text-align: center;
}
#outerWrapper #contentWrapper #innerwrapper #weekends h2 {
	font-size: 36px;
	line-height: normal;
	font-family: "Palatino Linotype", "Book Antiqua", Palatino, serif;
}
#outerWrapper #contentWrapper #innerwrapper #weekends .best {
	font-family: "Palatino Linotype", "Book Antiqua", Palatino, serif;
	font-style: italic;
	padding: 20px;
}
#outerWrapper #contentWrapper #innerwrapper #weekends .bigred {
	font-family: "Palatino Linotype", "Book Antiqua", Palatino, serif;
	font-size: 18px;
	line-height: normal;
	color: #FF0000;
	padding-right: 25px;
	padding-left: 25px;
	text-align: center;
}
#outerWrapper #contentWrapper #innerwrapper #weekends .pricesinfo {
	font-family: "Palatino Linotype", "Book Antiqua", Palatino, serif;
	font-size: 23px;
	line-height: normal;
}
#outerWrapper #contentWrapper #innerwrapper #weekends .bigred .smaller {
	font-size: 14px;
	color: #333333;
	padding-bottom: 12px;
}
#outerWrapper #contentWrapper #innerwrapper #weekends ul {
	text-align: left;
	margin-left: 20px;
}
#outerWrapper #contentWrapper #innerwrapper #weekends h3 {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 14px;
	color: #666;
}
#outerWrapper #contentWrapper #innerwrapper #weekends ul li {
	padding-bottom: 7px;
}
