/*
Theme Name: unseen-scroll
Theme URI: http://unseen.com.au/
Author: Jo Munt
Author URI: http://jomunt.com/
Description: Designed in 1999 for Unseen Theatre Company
Version: 1.0.0
License: Copyright Jo Munt
License URI: LICENSE
Text Domain: unseen-scroll
*/

/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
# Normalize
# Typography
# Elements
# Forms
# Navigation
	## Links
	## Menus
# Accessibility
# Alignments
# Clearings
# Widgets
# Content
	## Posts and pages
	## Comments
# Infinite scroll
# Media
	## Captions
	## Galleries
--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Normalize
--------------------------------------------------------------*/
html {
	font-family: sans-serif;
	-webkit-text-size-adjust: 100%;
	-ms-text-size-adjust:     100%;
}

body {
	margin: 0;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
main,
menu,
nav,
section,
summary {
	display: block;
}

audio,
canvas,
progress,
video {
	display: inline-block;
	vertical-align: baseline;
}

audio:not([controls]) {
	display: none;
	height: 0;
}

[hidden],
template {
	display: none;
}

a {
	background-color: transparent;
}

a:active,
a:hover {
	outline: 0;
}

abbr[title] {
	border-bottom: 1px dotted;
}

b,
strong {
	font-weight: bold;
}

dfn {
	font-style: italic;
}

h1 {
	font-size: 2em;
	margin: 0.67em 0;
    line-height: 1.2;
}

mark {
	background: #ff0;
	color: #000;
}

small {
	font-size: 80%;
}

sub,
sup {
	font-size: 75%;
	line-height: 0;
	position: relative;
	vertical-align: baseline;
}

sup {
	top: -0.5em;
}

sub {
	bottom: -0.25em;
}

img {
	border: 0;
}

svg:not(:root) {
	overflow: hidden;
}

figure {
	margin: 1em 40px;
}

hr {
	box-sizing: content-box;
	height: 0;
}

pre {
	overflow: auto;
}

code,
kbd,
pre,
samp {
	font-family: monospace, monospace;
	font-size: 1em;
}

button,
input,
optgroup,
select,
textarea {
	color: inherit;
	font: inherit;
	margin: 0;
}

button {
	overflow: visible;
}

button,
select {
	text-transform: none;
}

button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
	-webkit-appearance: button;
	cursor: pointer;
}

button[disabled],
html input[disabled] {
	cursor: default;
}

button::-moz-focus-inner,
input::-moz-focus-inner {
	border: 0;
	padding: 0;
}

input {
	line-height: normal;
}

input[type="checkbox"],
input[type="radio"] {
	box-sizing: border-box;
	padding: 0;
    width: 20px;
    height: 20px;
}

input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
	height: auto;
}

input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
	-webkit-appearance: none;
}

fieldset {
	border: 1px solid #c0c0c0;
	margin: 0 2px;
	padding: 0.35em 0.625em 0.75em;
}

legend {
	border: 0;
	padding: 0;
}

textarea {
	overflow: auto;
}

optgroup {
	font-weight: bold;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
}

td,
th {
	padding: 0;
}

/*--------------------------------------------------------------
# Typography
--------------------------------------------------------------*/
body,
button,
input,
select,
textarea {
	color: #404040;
	font-family: sans-serif;
	font-size: 16px;
	font-size: 1em;
	line-height: 1.5;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	clear: both;
}

p {
	margin-bottom: 1.5em;
}

dfn,
cite,
em,
i {
	font-style: italic;
}

blockquote {
	margin: 0 1.5em;
}

address {
	margin: 0 0 1.5em;
}

pre {
	background: #eee;
	font-family: "Courier 10 Pitch", Courier, monospace;
	font-size: 14px;
	font-size: 0.9375rem;
	line-height: 1.6;
	margin-bottom: 1.6em;
	max-width: 100%;
	overflow: auto;
	padding: 1.6em;
}

code,
kbd,
tt,
var {
	font-family: Monaco, Consolas, "Andale Mono", "DejaVu Sans Mono", monospace;
	font-size: 15px;
	font-size: 0.9375rem;
}

abbr,
acronym {
	border-bottom: 1px dotted #666;
	cursor: help;
}

mark,
ins {
	background: #fff9c0;
	text-decoration: none;
}

big {
	font-size: 125%;
}

/*--------------------------------------------------------------
# Elements
--------------------------------------------------------------*/
html {
	box-sizing: border-box;
}

*,
*:before,
*:after { /* Inherit box-sizing to make it easier to change the property for components that leverage other behavior; see http://css-tricks.com/inheriting-box-sizing-probably-slightly-better-best-practice/ */
	box-sizing: inherit;
}

body {
	background: #fff; /* Fallback for when there is no custom background color defined. */
}

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

blockquote,
q {
	quotes: "" "";
}

hr {
	background-color: #ccc;
	border: 0;
	height: 1px;
	margin-bottom: 1.5em;
}

ul,
ol {
	margin: 0 0 1.5em 3em;
}

ul {
	list-style: disc;
}

ol {
	list-style: decimal;
}

li > ul,
li > ol {
	margin-bottom: 0;
	margin-left: 1.5em;
}

dt {
	font-weight: bold;
}

dd {
	margin: 0 1.5em 1.5em;
}

img {
	height: auto; /* Make sure images are scaled correctly. */
	max-width: 100%; /* Adhere to container width. */
}

figure {
	margin: 1em 0; /* Extra wide images within figure tags don't overflow the content area. */
}

table {
	/*margin: 0 0 1.5em;*/
	/*width: 100%;*/
}

a:link, a:visited, a:hover, a.active {
	color: #996621; 
}

/*--------------------------------------------------------------
# Forms
--------------------------------------------------------------*/
button,
input[type="button"],
input[type="reset"],
input[type="submit"],
.edit-link a,
#mc_embed_signup input[type="submit"] {
	
	padding: 8px 30px;
	background: rgb(180, 52, 52);
	color: white;
	border-radius: 3px;
}

button:hover,
input[type="button"]:hover,
input[type="reset"]:hover,
input[type="submit"]:hover {
	border-color: #ccc #bbb #aaa;
}

button:focus,
input[type="button"]:focus,
input[type="reset"]:focus,
input[type="submit"]:focus,
button:active,
input[type="button"]:active,
input[type="reset"]:active,
input[type="submit"]:active {
	border-color: #aaa #bbb #bbb;
}

input[type="text"],
input[type="email"],
input[type="url"],
input[type="password"],
input[type="search"],
input[type="number"],
input[type="tel"],
input[type="range"],
input[type="date"],
input[type="month"],
input[type="week"],
input[type="time"],
input[type="datetime"],
input[type="datetime-local"],
input[type="color"],
textarea {
	color: #666;
	border: 1px solid #ccc;
	border-radius: 3px;
	padding: 3px;
}

select {
	border: 1px solid #ccc;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="password"]:focus,
input[type="search"]:focus,
input[type="number"]:focus,
input[type="tel"]:focus,
input[type="range"]:focus,
input[type="date"]:focus,
input[type="month"]:focus,
input[type="week"]:focus,
input[type="time"]:focus,
input[type="datetime"]:focus,
input[type="datetime-local"]:focus,
input[type="color"]:focus,
textarea:focus {
	color: #111;
}

textarea {
	width: 100%;
}

/*--------------------------------------------------------------
# Navigation
--------------------------------------------------------------*/
/*--------------------------------------------------------------
## Links
--------------------------------------------------------------*/


a:hover,
a:active {
	outline: 0;
}

/*--------------------------------------------------------------
## Menus
--------------------------------------------------------------*/
.main-navigation {
	clear: both;
	display: block;
	float: left;
	width: 100%;
}

.main-navigation ul {
	display: block;
	list-style: none;
	margin: 0;
	padding-left: 0;
}

.main-navigation li {
	float: left;
	position: relative;
}

.main-navigation a {
	display: block;
	text-decoration: none;
}

.main-navigation ul ul {
	box-shadow: 0 3px 3px rgba(0, 0, 0, 0.2);
	float: left;
	position: absolute;
	top: 1.5em;
	left: -999em;
	z-index: 99999;
}

.main-navigation ul ul ul {
	left: -999em;
	top: 0;
}

.main-navigation ul ul a {
	width: 200px;
}

.main-navigation ul ul li {

}

.main-navigation li:hover > a,
.main-navigation li.focus > a {
}

.main-navigation ul ul :hover > a,
.main-navigation ul ul .focus > a {
}

.main-navigation ul ul a:hover,
.main-navigation ul ul a.focus {
}

.main-navigation ul li:hover > ul,
.main-navigation ul li.focus > ul {
	left: auto;
}

.main-navigation ul ul li:hover > ul,
.main-navigation ul ul li.focus > ul {
	left: 100%;
}

.main-navigation .current_page_item > a,
.main-navigation .current-menu-item > a,
.main-navigation .current_page_ancestor > a,
.main-navigation .current-menu-ancestor > a {
}

/* Small menu. */
/*.menu-toggle,
.main-navigation.toggled ul {
	display: block;
}

@media screen and (min-width: 37.5em) {
	.menu-toggle {
		display: none;
	}
	.main-navigation ul {
		display: block;
	}
}*/

.site-main .comment-navigation,
.site-main .posts-navigation,
.site-main .post-navigation {
	margin: 40px 0;
	overflow: hidden;
}

.comment-navigation .nav-previous,
.posts-navigation .nav-previous,
.post-navigation .nav-previous {
	float: left;
	width: 50%;
}

.comment-navigation .nav-next,
.posts-navigation .nav-next,
.post-navigation .nav-next {
	float: right;
	text-align: right;
	width: 50%;
}

/*--------------------------------------------------------------
# Accessibility
--------------------------------------------------------------*/
/* Text meant only for screen readers. */
.screen-reader-text {
	clip: rect(1px, 1px, 1px, 1px);
	position: absolute !important;
	height: 1px;
	width: 1px;
	overflow: hidden;
	word-wrap: normal !important; /* Many screen reader and browser combinations announce broken words as they would appear visually. */
}

.screen-reader-text:focus {
	background-color: #f1f1f1;
	border-radius: 3px;
	box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
	clip: auto !important;
	color: #21759b;
	display: block;
	font-size: 14px;
	font-size: 0.875rem;
	font-weight: bold;
	height: auto;
	left: 5px;
	line-height: normal;
	padding: 15px 23px 14px;
	text-decoration: none;
	top: 5px;
	width: auto;
	z-index: 100000; /* Above WP toolbar. */
}

/* Do not show the outline on the skip link target. */
#content[tabindex="-1"]:focus {
	outline: 0;
}

/*--------------------------------------------------------------
# Alignments
--------------------------------------------------------------*/
.alignleft {
	display: inline;
	float: left;
	margin-right: 1.5em;
}

.alignright {
	display: inline;
	float: right;
	margin-left: 1.5em;
}

.aligncenter {
	clear: both;
	display: block;
	margin-left: auto;
	margin-right: auto;
}

/*--------------------------------------------------------------
# Clearings
--------------------------------------------------------------*/
.clear:before,
.clear:after,
.entry-content:before,
.entry-content:after,
.comment-content:before,
.comment-content:after,
.site-header:before,
.site-header:after,
.site-content:before,
.site-content:after,
.site-footer:before,
.site-footer:after {
	content: "";
	display: table;
	table-layout: fixed;
}

.clear:after,
.entry-content:after,
.comment-content:after,
.site-header:after,
.site-content:after,
.site-footer:after {
	clear: both;
}

/*--------------------------------------------------------------
# Widgets
--------------------------------------------------------------*/
.widget {
}

/* Make sure select elements fit in widgets. */
.widget select {
	max-width: 100%;
}

/*--------------------------------------------------------------
# Content
--------------------------------------------------------------*/
/*--------------------------------------------------------------
## Posts and pages
--------------------------------------------------------------*/
.sticky {
	display: block;
}

.hentry {
	margin: 0 0 1.5em;
}

.byline,
.updated:not(.published) {
	display: none;
}

.single .byline,
.group-blog .byline {
	display: inline;
}

.page-content,
.entry-content,
.entry-summary {
	margin: 1.5em 0 0;
}

.page-links {
	clear: both;
	margin: 0 0 1.5em;
}

/*--------------------------------------------------------------
## Comments
--------------------------------------------------------------*/
.comment-content a {
	word-wrap: break-word;
}

.bypostauthor {
	display: block;
}

/*--------------------------------------------------------------
# Infinite scroll
--------------------------------------------------------------*/
/* Globally hidden elements when Infinite Scroll is supported and in use. */
.infinite-scroll .posts-navigation, /* Older / Newer Posts Navigation (always hidden) */
.infinite-scroll.neverending .site-footer { /* Theme Footer (when set to scrolling) */
	display: none;
}

/* When Infinite Scroll has reached its end we need to re-display elements that were hidden (via .neverending) before. */
.infinity-end.neverending .site-footer {
	display: block;
}

/*--------------------------------------------------------------
# Media
--------------------------------------------------------------*/
.page-content .wp-smiley,
.entry-content .wp-smiley,
.comment-content .wp-smiley {
	border: none;
	margin-bottom: 0;
	margin-top: 0;
	padding: 0;
}

/* Make sure embeds and iframes fit their containers. */
embed,
iframe,
object {
	max-width: 100%;
}

/*--------------------------------------------------------------
## Captions
--------------------------------------------------------------*/
.wp-caption {
	margin-bottom: 1.5em;
	max-width: 100%;
}

.wp-caption img[class*="wp-image-"] {
	display: block;
	margin-left: auto;
	margin-right: auto;
}

.wp-caption .wp-caption-text {
	margin: 0.8075em 0;
}

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

/*--------------------------------------------------------------
## Galleries
--------------------------------------------------------------*/
.gallery {
	margin: 30px 0;
}

.gallery-item {
	display: inline-block;
	text-align: center;
	vertical-align: top;
	width: 100%;
}

.gallery-columns-2 .gallery-item {
	max-width: 50%;
}

.gallery-columns-3 .gallery-item {
	max-width: 33.33%;
}

.gallery-columns-4 .gallery-item {
	max-width: 25%;
}

.gallery-columns-5 .gallery-item {
	max-width: 20%;
}

.gallery-columns-6 .gallery-item {
	max-width: 16.66%;
}

.gallery-columns-7 .gallery-item {
	max-width: 14.28%;
}

.gallery-columns-8 .gallery-item {
	max-width: 12.5%;
}

.gallery-columns-9 .gallery-item {
	max-width: 11.11%;
}

.gallery-caption {
	display: block;
}





























/************************** Begin Unseen CSS *******************************/



/* CSS Document */

html {
	height: 100%;
}

BODY {

	color : #000000;
	}

td,tr,p,div {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 15px;
	line-height: 150%;
    
	}
#content td {
  padding: 8px;
  vertical-align: top;
}

div .shows-template-wrapper, .field-field-preview-dates, .field-field-openingnight-date {

  display: block;
}

div .field-field-show-notices p {

  margin-bottom: 1em;
  line-height: 200%;
  background: yellow;
}

.group-image-vid{
  border: none;
  margin: 0;
  padding: 0;
}

legend {
  color: #996621;
  font-weight: bold;
}

div .field-field-show-media-info p {
  margin-top: 0.1em;
}

div .field-field-show-media-release a {
  margin-top: 0.1em;
  font-weight: bold;
  background: none;
  text-align: left;
}


div .field-field-show-dates-all {
  margin-bottom: 1em;
}

div .field-field-review {
  float:left;
}

div .field-field-youtube-code {
  
  display: block;
  text-align: center;
  margin-top: 1em;

}

div .field-field-show-image img {

  margin-top: 1em;

}

div .field-field-show-image {

  display: block;
  text-align: center;

}





div .field-field-show-booknow {
  
  padding-top: 0.2em;
  padding-bottom: 0.2em;
  margin-bottom: 1em;
  text-align: center;

}

div .field-field-show-booknow a {
  color: white;  
  font-weight: bold;
  border: solid 1px saddleBrown;
  background: darkorange;
  text-decoration: none;
  line-height: 115%;

  padding-top: 0.2em;
  padding-bottom: 0.2em;
  padding-right: 1.7em;
  padding-left: 1.7em;
}


div .field-field-image-main {
  
  padding: 5px;
}


.field-field-review .field-item {
  background: lightYellow url('images/quoteleft.png') left top no-repeat;
  margin-top: 1.7em;
  padding: 1em;
  text-align: left;
  padding-left: 42px;
}



.date-display-start, .date-display-separator, .date-display-end, .date-display-single {
  color: darkred;
  font-weight: 700;
}










div .group-show-details {
  width: 25%;
  margin-left: 20px;
  float: right;
  margin-top: 0;
  background: ivory none repeat scroll 0 0
 }
div  .group-dashvideos {
 

}
div .group-videos {

  margin: 0 0 0 0;
  padding: 0;
  border: none;

  display: block;
}







.field-field-credits p {
  margin: 0;
}

div.field-field-credits  {
  padding-top: 1em;
  padding-bottom: 1em;
}


.redbuttons {
  float: left;
}

div.redbuttons, div.yellowbuttons {
  line-height: 2;
}

.redbuttons li a {
  color: white;  
  padding: 2px 6px;
  margin: 0.2em;
  border: solid 1px darkred;
  background: #B43434;
  text-decoration: none;
  line-height: 110%;
  -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -ms-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
}

#mainbuttons li a:hover, 
#mainbuttons li a:focus, 
#mainbuttons li a:active,
#mainbuttons .current-menu-item a {
	background: rgb(248, 168, 48);
    /*border: 1px solid rgb(253, 122, 9);*/
    color: black;
}

.redbuttons li {
  list-style-position: outside;
  list-style-image: none;
  list-style-type: none;
  display: inline-block;
}

#mainbuttons ul {
  margin: 0;
  padding: 0;
}

/* old code 
.yellowbuttons li {  display: block;  float: right;
  color: black;  padding-top: 4px;
  padding-bottom: 4px;
  padding-right: 6px;
  padding-left: 6px;
  margin: 0.2em;  border: solid 1px #FF6F00;
  /*background-image: url(http://www.unseen.com.au/parchdrk.gif) repeat: repeat-x;
  background: #F8A830;
  list-style-position: outside;
  list-style-image: none;
  list-style-type: none;}
*/
.yellowbuttons {
  float: right;
  max-width: 190px;
}

.yellowbuttons li a, .yellowbuttons li a:link, .yellowbuttons li a:visited {
    display: inline-block;
    float: right;
    color: rgb(239, 236, 236);
    padding: 2px 6px;
    margin: 0.2em;
    border: solid 1px rgb(1, 81, 148);
    background: rgb(4, 106, 191);
    text-decoration: none;
    line-height: 110%;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -ms-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
}

.yellowbuttons li {
  list-style-position: outside;
  list-style-image: none;
  list-style-type: none;
}

a:hover, a.active {
  text-decoration: underline;
  color: rgb(3, 97, 175);
}
.breadcrumb {
  padding-left: 1em;
  padding-top: 0.4em;
  padding-bottom: 0.4em;
  padding-right: 1em;
  vertical-align: middle; 
  text-align: left;
  background-image: none;
}
.welcome {
  padding-left: 1em;
  padding-top: 0.4em;
  padding-bottom: 0.4em;
  padding-right: 1em;
  text-align: left;
  vertical-align: middle;
  color: #3A9401;
}
.welcome a:link, .welcome a:visited, .welcome a:hover, .welcome a.active {
  color: #3A9401;
  text-decoration: underline;
}

#mainbuttons {
  padding: 0.5em;
  vertical-align: middle; 
  background-image: url(images/parchdrk.gif); 
  height: 2em;
  text-align: left;
}

#content, #tabs, #sidebar-right, #footer {
  padding: 20px;
  margin-bottom: 40px;
}

#content {
  padding: 5px 20px 20px 5px;
}

#footer {
  text-align: center;
  padding-bottom: 0;
}

#sidebar-right h2 {
  	font-family: Arial, Helvetica, sans-serif;
	color: rgb(0,0,0);
	font-size: 90%;
	line-height: 100%;
	margin-top: 0;
	margin-bottom: 0.5em;
}

div#logo-top-right,
div#logo-death {
	display: none;
}

div#logo-top-left {
	margin: -20px 0 20px 0;
}

@media only screen and (min-width: 768px) {
	#content {
		float: left;
		width: 70%;
	}
	div#sidebar-right {
		float: right;
		width: 29%;
	}
	div#sidebar-right aside {
	}
	div#logo-top-right {
		display: block;
		margin: 0 5px 10px 0;
	}
	div#logo-top-left {
		margin: 0 0 10px 0;
	}
}

@media only screen and (min-width: 600px) {
	div#logo-death {
		display: block;
	}
	div#logo-top-left {
		margin: 0 0 20px 0;
	}
}

tbody {
  border-top: 0;
  border-collapse: collapse;
}



h1
{
	font-family: Arial, Helvetica, sans-serif;
	color: rgb(0,0,0);
	font-size: 20pt;
}
h2
{
	font-family: Arial, Helvetica, sans-serif;
	color: rgb(0,0,0);
	font-size: 140%;
	line-height: 140%;
	margin-top: 0;
	margin-bottom: 0.5em;
}
h3
{
	font-family: Arial, Helvetica, sans-serif;
	color: rgb(0,0,0);
	font-size: 120%;
	line-height: 120%;
	margin-top: 0;
	margin-bottom: 0.5em;
}

.profile h3 {
  border-bottom: none;
  padding-bottom: 0;
}

h4
{
	font-family: Arial, Helvetica, sans-serif;
	color: rgb(0,0,0);
	font-size: 14pt;
}
h5
{
	font-family: Arial, Helvetica, sans-serif;
	color: rgb(0,0,0);
	font-size: 12pt;
}
h6
{
	font-family: Arial, Helvetica, sans-serif;
	color: rgb(0,0,0);
	font-size: 10pt;
}
hr
{
	height: 1
}

.clr {
	clear: both;
}

.node {
  padding-bottom: 2em;
  margin-bottom: 2em;
  padding-top: 0;
  border-bottom: 1px #D1C392 solid;
  clear: both;
}
div.node.panel-pane {
  border-bottom: 0;
}
.links {
  padding-top: 1em;
  padding-bottom: 1em;
}
.links li a{
  background: tan none repeat scroll 0 0;
  border: 1px solid peru;
  color: white;
  padding: 3px 10px;
  text-decoration: none;
  line-height: 210%;
}
ul.links li {
  padding:0;
  margin:0;
  padding-right: 0.5em;
  margin-bottom: 20px;
  display: inline;
}
.taxonomy li {
  padding:0;
  margin:0;
  padding-right: 0.5em;
}
.taxonomy li a {
  background:transparent none repeat scroll 0 0;
  border:medium none;
  color:darkBlue;
  padding:0;
  text-decoration:underline;
}
div.taxonomy {
  padding-bottom: 1em;
  padding-top: 1em;
}
.messages {
  background-color: lightGreen;
  border:1px solid darkGreen;
}
.messages, .preview {
  margin: 1em 0 3em 0;
  padding: 0.5em 1em;
}

div #block-views-Gallery-block_1  {
  display: inline;
}



.views-exposed-form .views-exposed-widget .form-submit {
  margin-top: 1em;
}

.book-navigation .menu {
  border-top:1px solid #D1C392;
  padding:1em 0 0 3em;
}
.book-navigation .page-links {
  border-bottom:1px solid #D1C392;
  border-top:1px solid #D1C392;
  background-image: url(images/parchdrk.gif);
  padding:0.5em;
  text-align:center;
}

ul.primary {
border-bottom:1px solid #BBBBBB;
border-collapse:collapse;
height:auto;
line-height:normal;
list-style-image:none;
list-style-position:outside;
list-style-type:none;
margin:5px;
padding:0 0 0 1em;
white-space:normal;
}

.profile dl {
margin:1em 1em 1.5em;
}

tr.even {
  background-color: #FFFBEB;
  border-bottom: 1px solid #E4D8A7;
padding:0.1em 0.6em;
}
tr.odd { /* darker colour */
  background-color: #EDE6CD;
  border-bottom: 1px solid #E4D8A7;
padding:0.1em 0.6em;
}

#cart-form-products {
  border: none;
margin-top:0.5em;
width:100%;
}

thead th {
border-bottom:2px solid #E4D8A7;
padding-right:1em;
  padding-bottom: 3px;
text-align:left;
}

#cart-form-buttons {
  border: none;
margin:0.5em 0;
text-align:right;
width:100%;
}
fieldset {
margin-bottom:1em;
  padding:1.1em;
  border: 1px solid #E4D8A7;
}
#checkout-form-bottom {
border:none;
text-align:right;
width:100%;
}
.cart-review {
  border:none;
}


#comment-form {
  /* border-bottom: 1px solid tan; */
  margin-bottom: 3em;
  padding-bottom: 3em;
  padding-left: 1em;
  padding-right: 1em;
}

div .comment-published {
  background: paleGoldenRod url(images/quill-comment.gif) no-repeat scroll left top;
  padding: 10px;
  padding-left: 52px;
  border: 1px solid tan;
}

div .picture {
  float: right;
  margin-left: 10px;
  margin-bottom: 20px;
}

div .box {
  margin-top: 25px;
}

/* #edit-subject-wrapper {
  visibility: hidden;
  height: 0;
} */

div .submitted a {
  font-weight: bold;
}

#tabs-wrapper {

}

#tabs li {
  display: inline;
  padding: 3px;
  background: none;
}

#tabs li.active a {
  text-decoration: none;
  font-weight: bold;
}

.new {
  color:red;
  font-weight:bold;
  padding-left:1.6em;
  padding-right:1.6em;
  background: yellow;
}

.title a h2 {
  color: saddleBrown;
  font-size: 130%;

}

#block-views-Shows_coming_soon-block_1 {
  border-bottom: 1px solid tan;
  margin-bottom: 2.5em;
  padding-bottom: 3em;
  clear: both;
}

#block-views-Shows_past-block_1 {
  clear: both;
}

view.view-shows-extra-photos.view-id-shows_extra_photos.view-display-id-default.view-dom-id-1 {
  border-bottom: 1px solid tan;
  margin-bottom: 2.5em;
  padding-bottom: 3em;
}

.views-field-title {
  font-weight: bold;
}

.field-field-show-media-info p {

}

.press-heading {
  font-weight: bold;
}


.imagecache-thumb_100, .imagecache-thumb_100_linked a {
  float: left;
  margin-right: 5px;
  margin-bottom: 5px;
}

ul.links.inline {
  display: inline;
}

.filefield-icon {
  display: inline;
  margin-right: 0.4em;
  float: none;
}

#sidebar-right .block {
  margin-bottom: 1.6em;
}


a.stbutton.stico_default {
  border: 0;
  color: orangeRed;
  padding: 0 0 0 20px;
  text-decoration: underline;
  line-height: 150%;
}

li.print_html a {
  border: 0;
  color: orangeRed;
  padding: 0;
  text-decoration: underline;
  background: none;
}

.print_html, .print_mail, .print_pdf {
 margin-left: 0;
}

a.print-page {
  color: orangeRed;
}

.print-link {
  display: block;
  padding-bottom: 0.5em;
  text-align: right;
}

.panel-pane {
  border: 1px solid tan;
  padding: 3px;
  margin: 3px;
}

.pane-content {
  padding: 0 10px 10px 10px;
}

a.pane-content {

}

#user-profile h2.pane-title {
background: tan;
color:#FFFFFF;
font-size:120%;
font-weight:bold;
padding:3px 0 3px 5px;
}

.view-Cast-crew-profile.view-display-id-page_1, .view-Cast-crew-profile.view-dom-id-1 {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.view-header p {
  font-style: italic;
}

.field-field-user-real-photo {
float:left;
margin-bottom:1em;
margin-left:0.2em;
margin-right:1em;
}

img.email-icon {
  padding:1px;
}

.block-simplenews {
  border: 1px dotted green;
  display: block;
  float:  left;
  margin: 0 20px 20px 0;
  width: 41%;
  padding: 15px;
}

#block-block-2 img {
  padding: 2px;
}

#block-block-2 p {
  margin: 0;
}




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

.subscribe-link {
  display: inline;
  vertical-align: baseline;
}

.views-field-comment p {
  border-bottom: 1px solid tan;
  margin-top: 0;
  padding-bottom: 3em;
}

.panels-flexible-row-1-1-inside {
padding-left:215px;
padding-right:0;
}

.view-About h2 a {
  color: black;
  text-decoration: none;
}

.view.view-About.view-id-About.view-display-id-attachment_1.view-dom-id-1 .view-header p {
  font-weight: bold;
  font-style: normal;
  color: darkRed;
  font-size: 150%;
  line-height: 160%;
}
#user-login-form li {
  list-style-image:none;
  list-style-position:outside;
  list-style-type:none;
  margin: 0;
}

/*-----------------------------Styles for the new site -------------------------------*/

/*Mobile*/
#shows-databox1 {
	display: none;
}

.shows-databox {
    width: 100%;
    float: none;
    margin: 0;
    padding: 1.1em;
    border: 1px solid rgb(228, 216, 167);
	background: rgb(255, 255, 240) none repeat scroll 0 0;
	/*background-image: url("images/parchmedium.png");*/
}

.shows-databox ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

#shows-databox2 {
	margin-bottom: 20px;
}

div.featured-image {
    text-align: center;
    margin: 10px 0 30px 0;
}

.shows div.featured-image {
    margin: 40px 0 30px 0; /*bottom margin needs less space because it's followed by a p with space*/
}


/*For tablets*/
@media only screen and (min-width: 600px) {
	.shows-databox {
	    width: 300px;
	    float: right;
	    margin: 0 0 1em 1em;
	}

	.people .featured-image {
		float: left;
		margin: 0px 20px 10px 0;
	}
}

/*For  wide laptops */
@media only screen and (min-width: 1000px) {
	#shows-databox1 {
		display: block;
	}

	#shows-databox2 {
		display: none;
	}

	.shows-databox {
	    width: 300px;
	    float: right;
	    margin: 0 0 2em 2em;
	}

	.shows div.featured-image {
	    /*display: block;*/
	    text-align: center;
	    margin: 40px 330px 30px 0; /*bottom margin needs less space because it's followed by a p with space*/
	}
}


div#review-snippets {
    overflow: auto;
}

.review-snippet {
	background: rgb(255, 255, 224) url(images/quoteleft.png) left top no-repeat;
    margin: 20px auto;
    padding: 1em;
    text-align: left;
    padding-left: 42px;
     /*width: 80%;*/
}

.review-snippet-source-all {
	font-style: italic;
	margin-top: 10px;
}

#gallery {
	clear: left;
}

.label {
	font-weight: 600;
}

.shows-databox > div,
.booking-instructions {
	padding-bottom: 1em;
}

.shows-date {
	color: rgb(139, 0, 0);
    font-weight: 700;
}

.shows-date-description {
	color: black;
	padding-left: 4px;
	font-weight: normal;
}

#shows-byline  {
  font-weight: normal;
  color: rgb(51, 92, 175);
  padding-top: 0;
  font-size: 1.5em;
  padding: 0;
  /*margin: -0.5em 0 6px 0;*/
  /*margin: 0 0 1em 0;*/
  margin: 0 0 10px 0;
}

#shows-season {
	margin-bottom: 10px;
}

div#shows-alert {
   background: rgb(248, 168, 48);
    padding: 3px 8px;
    color: rgb(33, 31, 29);
    display: inline-block;
    font-weight: 600;
    margin: 0em 0 1em 0;
}

.venue-address p {
	margin: 0;
}

article.post .main-image {
	margin: 0 0 1em 0;
}

@media only screen and (min-width: 600px) {
	article.post .main-image {
		float: left;
		margin: 0 1em 1em 0;
	}
}

article.post,
div.person,
article.reviews,
article#post-140 /*the About page */ {
	padding-bottom: 2.5em;
    margin-bottom: 2.5em;
    padding-top: 0;
    border-bottom: 1px rgb(209, 195, 146) solid;
    clear: both;
}

article.post:last-of-type,
div.person:last-of-type,
article.reviews:last-of-type,
.search-results article,
.search-results div.person {
	border-bottom: 0;
}

.home article.post:last-of-type {
	padding-bottom: 0;
}

.search-results article,
.search-results div.person,
.search-results article#post-140 /* the About page */ {
	border-bottom: 0;
	padding-bottom: 0;
}

#board-members article {
	margin: 0;
}

#board-members article p:last-of-type {
	margin-bottom: 0;
}

@media only screen and (min-width: 768px) {
	.person img {
		float: left;
		max-width: 200px;
		margin: 0 20px 20px 0;
	}
}

.person-position {
	font-weight: 600;
	font-size: 1.2em;
}

h1.recent-show, h1.latest-news {
	font-size: 16px;
	color: darkred;
}

.welcome-message {
    padding: 0 0 20px 0;
}

@media only screen and (min-width: 600px) {
	.welcome-message {
	    padding: 0 20px 30px 20px;
	}
}

.welcome-message p {
	margin: 0;
	padding: 0;
	font-size: 1.1em;
	color: rgb(51, 92, 175);
}

div.photos ul {
	list-style: none;
	margin: 0; padding:0;
}


li.photo-container {
    max-width: 23%;
    float: left;
    list-style: none;
    padding: 0 20px 20px 0;
    height: 500px;
    overflow: hidden;
}

li.photo-container {
	width: 23%;
	height: 200px; overflow: hidden;
}

li.photo-container img {
	/*width: 100%; height: auto;*/
}

#current-shows {
	padding: 0 0 2.2em 0;
}

.pagination.clearfix {
    clear: both;
}

.page-numbers {
    padding: 6px;
}

#photos-title {
	padding: 0 0 1em 0;
}

.widget ul {
	margin-left: 0; padding-left: 20px;
}

.downloads-header {

}

ul {
	margin: 0 0 1.5em 0;
}

.downloads {
	clear: left;
}

.downloads,
.related-content {
	margin-bottom: 20px;
}

.downloads ul,
.related-content ul {
	margin:0; padding: 0;
	list-style: none;
}

.downloads img.download-icon {
	max-width: 12px;
	height: auto;
}

nav.navigation {
	background: rgb(233, 221, 198);
	background-image: url(images/parchdrk.gif);
    padding: 10px 5px;
}


/*For laptops */
@media only screen and (min-width: 768px) {
	.related-content {
	    width: 30%;
	    float: left;
	    margin-right: 3%;
	}
}

.related-content-main-header {
	font-weight: 600;
	color: darkred;
	font-size: 1.1em;
	padding: 0 0 5px 0;
}

.edit-link  {
	padding: 20px 0;
	display: block;
}

.edit-link a{
	text-decoration: none;
}

span.posted-on {
    padding: 0 8px 0 0;
}

span.cat-links {
	padding: 0 0 0 8px;
}

.person .entry-title {
	clear: none;
}

h1.board-members-title {
    margin-bottom: 30px;
}



/*----------------------------- Shows archive page ----------------------------------------*/

/*For mobiles */
.show-column {
	width: 100%;
	float: none;
}

@media only screen and (max-width: 499px) {
	.show-column img {
		width: 100%;
		height: auto;
	}
	.shows-container article {
		margin-bottom: 40px;
	}
}

/*For tablets*/
@media only screen and (min-width: 500px) {
	.show-column {
		width: 45%;
	    float: left;
	    height: 320px;
	    overflow: scroll;
	    margin-right: 5%;
	}
	#current-shows .show-column {
		height: 300px; /*Because likely to be only one or two current shows and not going to look odd by overflowing*/
	}
	.post-type-archive-shows article {
		margin: 0; 
	}
}

@media only screen and (min-width: 600px) {
	.show-column {
		width: 30%;
	    float: left;
	    height: 320px;
	    overflow: scroll;
	    margin-right: 3%;
	}
	#current-shows .show-column {
		height: 300px; /*Because likely to be only one or two current shows and not going to look odd by overflowing*/
	}
	.post-type-archive-shows article {
		margin: 0; 
	}
}

/*For laptops */
@media only screen and (min-width: 1100px) {
	.show-column {
		width: 22%;
	    float: left;
	    height: 320px;
	    overflow: scroll;
	    margin-right: 3%;
	}
	#current-shows .show-column {
		height: 300px; /*Because likely to be only one or two current shows and not going to look odd by overflowing*/
	}
	.post-type-archive-shows article {
		margin: 0; 
	}
}

/*----------------------------- Shows single page ----------------------------------------*/


* {
    box-sizing: border-box;
}

.clearfix:after {
  content: "";
  display: table;
  clear: both;
}

#gallery .label {
	font-style: italic;
}

.booking-button  {
	padding: 20px 0;
    max-width: 250px;
    overflow: auto;
}

.shows-databox .booking-button {
	margin: 0 auto;
	padding: 0 0 20px 0;
}

.booking-button a {
	padding: 6px 25px;
    background: rgb(180, 52, 52);
    color: rgb(255, 255, 255);
    border-radius: 0;
    text-decoration: none;
    text-align: center;
    margin: 0 auto;
    display: block;
    border: 1px solid rgb(123, 15, 15);
    font-weight: 600;
}

.booking-button a:hover {
	background: rgb(255, 140, 0);
}

.edit-link a:hover {
	background: rgb(121, 177, 73);
}


.show-finished {
    font-size: 1.2em;
    font-weight: 600;
    color: rgb(251, 139, 24);
}

h1.entry-title {
	margin-bottom: 10px;
}

.shows .entry-content {
	margin-top: 0;
}

div#gallery {
    margin: 1em 0;
}

.shows-start-and-end-dates,
.dates-description {
	display: inline;
}

.frontpage-section-header,
.section-header {
	background: rgb(231, 223, 200);
	background-image: url(images/parchdrk.gif);
    padding: 0.5em;
    margin: 0 0 20px 0;
}

.frontpage-section-header.latest-news {
	background: transparent;
	padding: 0;
	margin: 0;
}


.review-snippet-source-all {
	text-align: right;
}


button.accordion {
    background-color: rgb(228, 227, 204);
    color: #444;
    cursor: pointer;
    padding: 18px;
    width: 100%;
    border: none;
    text-align: left;
    outline: none;
    font-size: 15px;
    transition: 0.4s;
}

button.accordion.active, button.accordion:hover {
    background-color: rgb(191, 190, 155);
}

button.accordion:before {
    content: '\002B';
    color: #777;
    font-weight: bold;
    float: left;
    margin-right: 15px;
}

button.accordion.active:before {
    content: "\2212";
}

div.panel {
    padding: 0 18px;
    /*background-color: white;*/
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.2s ease-out;
}

#faq ul {
	margin: 0 0 2em 0;
	padding: 0;
}


#bios div.credits,
#bios div.cast,
#bios div.crew {
	/*background: pink;*/
	margin: 40px 0;
}

#bios .credits-row,
#bios .cast-row,
#bios .crew-row {
	/*background: green;*/
	margin: 0 0 40px 0;
}

#bios .credits-roles,
#bios .cast-roles,
#bios .crew-roles {
	font-weight: 600;
}

#bios .credits-roles, #bios .credits-person,
#bios .cast-roles, #bios .cast-person,
#bios .crew-roles, #bios .crew-person {
	font-size: 1.2em;
}

.bio-image img {
	width: 150px;
	height: auto;
}

div.role-and-name {
	margin-bottom: 20px;
}

div.bio-image {
	float: none;
	margin: 0 0 10px 0;
}

@media only screen and (min-width: 600px) {
	div.bio-image {
		float: left;
		margin: 0 20px 10px 0;
	}
}

.entry-content p {
	margin-top: 0;
}

.entry-content p:last-of-type {
	margin-bottom: 0;
}

#sidebar-right .widget-area section {
	margin: 0 0 20px 0;
}

#sidebar-right .widget-area section form {
	margin: -20px 0 0 0;
	padding: 0 0 10px 0;
}

#sidebar-right .widget-area section:last-of-type {
	margin: 0;
}

.shows-widget p {
	margin: 0;
}

.nav-previous a::before {
	display: inline-block;
    width: 20px;
    height: 28px;
    margin-right: 10px;
    content: "";
    background: url("images/arrow-left.png") no-repeat 0 0;
    background-size: 100%;
    vertical-align: -40%;
}

.nav-next a::after {
	display: inline-block;
    width: 20px;
    height: 28px;
    margin-left: 10px;
    content: "";
    background: url("images/arrow-right.png") no-repeat 0 0;
    background-size: 100%;
    vertical-align: -40%;
}

#search-2 .searchform input, 
#mc_embed_signup input[type="text"], #mc_embed_signup input[type="email"], #mc_embed_signup input[type="url"],
#mc_embed_signup_scroll input[type="url"] {
    width: 100%;
    height: 40px;
    background: rgb(244, 238, 220);
    border: none;
    font-size: 14px;
    float: left;
    color: black;
    padding-left: 45px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
    box-sizing: border-box;
    -webkit-transition: all .4s ease;
    -moz-transition: all .4s ease;
    -ms-transition: all .4s ease;
    -o-transition: all .4s ease;
    transition: all .4s ease;
}

#search-2 input[type="submit"] {
	display: none;
}

#search-2 .searchform input:focus, 
.container-1 input#s:active {
    outline: none;
    background: white;
    color: black;
}

.icon.dashicons-before.dashicons-search {
    position: relative;
    top: 31px;
    padding: 0 0 0 10px;
    width: 10px;
}

section#search-2 {
    padding: 0 0 40px 0;
}

#mc_embed_signup input[type="text"], #mc_embed_signup input[type="email"], #mc_embed_signup_scroll input[type="url"] {
	background: white;
	padding: 0 16px;
	margin: 3px 0 15px 0;
	float: none;
	width: 100%;
}

@media only screen and (min-width: 768px) {
	#mc_embed_signup input[type="text"], #mc_embed_signup input[type="email"], #mc_embed_signup_scroll input[type="url"] { 
		width: 65%;
	}
}

#mc_embed_signup input:focus {
	outline: none;
}

#mc_embed_signup label {
	color: rgb(153, 102, 33);
	display: block;
}

#mc_embed_signup .inline-labels label {
	display: inline-block;
}

#mc_embed_signup ul {
	list-style: none;
	padding: 0;
	margin: -10px 0 20px 10px;
}

#mc_embed_signup ul li {
	padding: 4px 0;
}

#mc_embed_signup ul li label {
	padding-left: 10px;
}

div#mc_embed_signup {
	margin-bottom: 100px;
}

.tab-content {
    padding: 20px 4px;
}

.nav-tabs > li.active > a, .nav-tabs > li.active > a:hover, .nav-tabs > li.active > a:focus {
	background: rgb(203, 189, 151) !important;
	border: 1px solid rgb(203, 189, 151) !important;
	color: black !important;
}

.nav > li > a:hover, .nav > li > a:focus {
	background-color: rgb(228, 227, 204) !important;
}

.nav-tabs {
    border-bottom: 3px solid rgb(203, 189, 151) !important;
}

div#persons-credits-section {
    clear: left;
}

#persons-credits-section div.shows-year,
#persons-credits-section div.shows-title,
#persons-credits-section div.shows-roles {
	float: none;
	display: inline-block;

}

#persons-credits-section div.credits,
#persons-credits-section div.cast,
#persons-credits-section div.crew {
	margin: 30px 0;
}

#persons-credits-section .credits-row, #persons-credits-section div.credits>div.label,
#persons-credits-section .crew-row, #persons-credits-section div.crew>div.label,
#persons-credits-section .cast-row, #persons-credits-section div.cast>div.label {
    border-bottom: 1px rgb(209, 195, 146) solid;
    padding: 10px;
}

@media only screen and (min-width: 600px) {

	#persons-credits-section div.shows-year,
	#persons-credits-section div.shows-title,
	#persons-credits-section div.shows-roles {
		display: block;
		float: left;
	}

	#persons-credits-section div.shows-year {
		width: 10%;
	}

	#persons-credits-section div.shows-title {
		width: 40%;
	}

	#persons-credits-section div.shows-roles {
		width: 50%;
	}

}

p.bottom-space {
	margin-bottom: 700px;
}

div.spacer-div-34 {
	width: 34px;
	min-width:  34px;
}

.gallery img {
	padding: 10px;
}

.edit-link a:hover,
.edit-link a:focus {
	color: white;
}

#theme-my-login p {
	margin-bottom: 20px;
}
