/**
 * HTML5 ✰ Boilerplate
 *
 * style.css contains a reset, font normalization and some base styles.
 *
 * Credit is left where credit is due.
 * Much inspiration was taken from these projects:
 * - yui.yahooapis.com/2.8.1/build/base/base.css
 * - camendesign.com/design/
 * - praegnanz.de/weblog/htmlcssjs-kickstart
 */


/**
 * html5doctor.com Reset Stylesheet (Eric Meyer's Reset Reloaded + HTML5 baseline)
 * v1.6.1 2010-09-17 | Authors: Eric Meyer & Richard Clark
 * html5doctor.com/html-5-reset-stylesheet/
 */

html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code, del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var, b, i, dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

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

blockquote, q { quotes: none; }

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

ins { background-color: #ff9; color: #000; text-decoration: none; }

mark { background-color: #ff9; color: #000; font-style: italic; font-weight: bold; }

del { text-decoration: line-through; }

abbr[title], dfn[title] { border-bottom: 1px dotted; cursor: help; }

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

hr { display: block; height: 1px; border: 0; border-top: 1px solid #ccc; margin: 1em 0; padding: 0; }

input, select { vertical-align: middle; }


/**
 * Font normalization inspired by YUI Library's fonts.css: developer.yahoo.com/yui/
 */

body { font:13px/1.231 sans-serif; *font-size:small; } /* Hack retained to preserve specificity */
select, input, textarea, button { font:99% sans-serif; }

/* Normalize monospace sizing:
   en.wikipedia.org/wiki/MediaWiki_talk:Common.css/Archive_11#Teletype_style_fix_for_Chrome */
pre, code, kbd, samp { font-family: monospace, sans-serif; }


/**
 * Minimal base styles.
 */

/* Always force a scrollbar in non-IE */
html { overflow-y: scroll; }

/* Accessible focus treatment: people.opera.com/patrickl/experiments/keyboard/test */
a:hover, a:active { outline: none; }

ul, ol { margin-left: 2em; }
ol { list-style-type: decimal; }

/* Remove margins for navigation lists */
nav ul, nav li { margin: 0; list-style:none; list-style-image: none; }

small { font-size: 85%; }
strong, th { font-weight: bold; }

td { vertical-align: top; }

/* Set sub, sup without affecting line-height: gist.github.com/413930 */
sub, sup { font-size: 75%; line-height: 0; position: relative; }
sup { top: -0.5em; }
sub { bottom: -0.25em; }

pre {
  /* www.pathf.com/blogs/2008/05/formatting-quoted-code-in-blog-posts-css21-white-space-pre-wrap/ */
  white-space: pre; white-space: pre-wrap; word-wrap: break-word;
  padding: 15px;
}

textarea { overflow: auto; } /* www.sitepoint.com/blogs/2010/08/20/ie-remove-textarea-scrollbars/ */

.ie6 legend, .ie7 legend { margin-left: -7px; } 

/* Align checkboxes, radios, text inputs with their label by: Thierry Koblentz tjkdesign.com/ez-css/css/base.css  */
input[type="radio"] { vertical-align: text-bottom; }
input[type="checkbox"] { vertical-align: bottom; }
.ie7 input[type="checkbox"] { vertical-align: baseline; }
.ie6 input { vertical-align: text-bottom; }

/* Hand cursor on clickable input elements */
label, input[type="button"], input[type="submit"], input[type="image"], button { cursor: pointer; }

/* Webkit browsers add a 2px margin outside the chrome of form elements */
button, input, select, textarea { margin: 0; }

/* Colors for form validity */
input:valid, textarea:valid   {  }
input:invalid, textarea:invalid {
   border-radius: 1px; -moz-box-shadow: 0px 0px 5px red; -webkit-box-shadow: 0px 0px 5px red; box-shadow: 0px 0px 5px red;
}
.no-boxshadow input:invalid, .no-boxshadow textarea:invalid { background-color: #f0dddd; }


/* These selection declarations have to be separate
   No text-shadow: twitter.com/miketaylr/status/12228805301
   Also: hot pink! */
::-moz-selection{ background: #000; color:#fff; text-shadow: none; }
::selection { background: #000; color:#fff; text-shadow: none; }

/* j.mp/webkit-tap-highlight-color */
a:link { -webkit-tap-highlight-color: #FF5E99; }

/* Make buttons play nice in IE:
   www.viget.com/inspire/styling-the-button-element-in-internet-explorer/ */
button {  width: auto; overflow: visible; }

/* Bicubic resizing for non-native sized IMG:
   code.flickr.com/blog/2008/11/12/on-ui-quality-the-little-things-client-side-image-resizing/ */
.ie7 img { -ms-interpolation-mode: bicubic; }

/**
 * You might tweak these..
 */

body, select, input, textarea {
  color: #E7E8E8;
  /* Set your base font here, to apply evenly */
  font-family: Arial, Helvetica, sans-serif;
  -webkit-font-smoothing: antialiased;
}

/* Headers (h1, h2, etc) have no default font-size or margin; define those yourself */
h1, h2, h3, h4, h5, h6 { font-weight: bold; }

a, a:active, a:visited { color: #75787A; }
a:hover { color: #51575B; }


/**
 * Primary styles
 *
 * Author: 
 */
body{
   text-align: center;
   background: #0C1317;
   background-image : -moz-linear-gradient(left top, rgb(12,21,27), rgb(12,12,12));
   background-image : -webkit-gradient(linear, left top, right bottom, from(rgb(12,21,27)), to(rgb(12,12,12)));
   background-image : linear-gradient(left top, rgb(12,21,27), rgb(12,12,12));
}
#container{
   width: 960px;
   margin: auto;
   text-align: left;
   padding: 0 51px;
}
#main-header{
   padding: 20px 0;
   border-bottom: 1px solid #181D21;
   margin-bottom: 40px;
   position: relative;
}
#main-header h1{
   float: left;
}
#main-header h3.tipped{
   text-indent: -5000px;
   width: 24px;
   height: 19px;
   background: url(../images/css/flag.png) right center no-repeat;
   position: absolute; top: 20px; right: 0;
}
/*style tooltip*/
div.t_ContentContainer{
   font-size: 123.1%;
   font-family: "adobe-caslon-pro-1",serif;
   font-weight: 100;
   font-style: italic;
   color: #68696A;
   letter-spacing:-0.05em;
   text-decoration: none;
   padding: 8px 10px 4px;
}

body.home #main-header{margin-bottom: 40px;}

p{padding: 0 0 1em;}
p em{font-style: italic;}

a.link-more{
   font-size: 123.1%;
   font-family: "adobe-caslon-pro-1",serif;
   font-weight: 100;
   font-style: italic;
   color: #E7E8E8;
   padding: 3px 20px 0 0;
   -webkit-font-smoothing: antialiased;
   letter-spacing:-0.05em;
   text-decoration: none;
   background: url(../images/css/link-arrow.png) center right no-repeat;
}

body.arts-programme a.link-more{
   color: #000;
   background: url(../images/css/link-arrow-dark.png) center right no-repeat;
}

/* Start Main Header */
#main-header h1{
   width: 200px;
   height: 15px;
   background: url(../images/logo-main.png) 0 0 no-repeat;
}
#main-header h1 a{
   display: block;
   width: 200px;
   height: 15px;
}
.ie6 #main-header h1{background: url(../images/logo-main.gif) 0 0 no-repeat;}
/* End Main Header */

/* Start Navigation */
#nav{
   float: left;
   margin-left: 110px;
   position: relative;
   z-index: 5;
}
#nav ul li{
   float: left;
   margin-left: 15px;
   position:relative;
}
#nav ul li a{
   font-size: 116%;
   font-family: "adobe-caslon-pro-1",serif;
   font-weight: 100;
   color: #7D7F80;
   text-decoration: none;
   display: block;
}
#nav ul li a:hover{/*text-decoration: underline;*/}
#nav ul li.selected a{
   color: #E7E8E8;
}
#nav ul li.selected a:hover{text-decoration: none;}


#nav ul li ul{
   background: #15191B;
   position: absolute;
   left:-9999px;
}
#nav ul li ul li{
   float:none;
   margin: 0;
}
#nav ul li ul li a{
   white-space:nowrap;
   padding: 8px 8px 0 8px;
}
#nav ul li:hover ul{
   left: -8px;
}
#nav ul li:hover a{
   color: #fff;
}
#nav ul li ul li:hover{
   border-bottom: 0;
}
#nav ul li:hover ul li a{
   text-decoration:none;
   color: #7D7F80;
}
#nav ul li ul li a span{
   display: block;
   border-bottom: 1px solid #212527;
   padding-bottom: 4px;
   min-width:100px;
   width:auto !important;
   width:100px;
}
#nav ul li ul li:last-child a span{border: 0;}
#nav ul li:hover ul li a:hover, #nav ul li ul li a:hover{
   background: #212527;
   color: #fff;
   position: relative;
   top: -1px;
   padding-top: 9px;
}
#nav ul li:hover ul li a:hover span, #nav ul li ul li a:hover span{
   padding-bottom: 3px;
}
/* End Navigation */

/* Start Sub Header */
#main header{
   padding-bottom: 20px;
   border-bottom: 1px solid #181F24;
   margin-bottom: 20px;
}
body.error-404 #main header{border-bottom: none;}
#main header hgroup{
   width: 635px;
   padding: 0 0 0 5px;
   float: right;
}
body.error-404 #main header hgroup{width:940px;}
#main header hgroup.no-nav{
   width: 100%;
   padding: 0;
   float: left;
}
#main header hgroup h1{
   font-size: 307.9%;
   font-family: "adobe-caslon-pro-1",serif;
   font-weight: 100;
   color: #fff;
   line-height: .9em;
   -webkit-font-smoothing: antialiased;
   text-rendering: optimizeLegibility;
}
.ie6 #main header hgroup h1, .ie7 #main header hgroup h1{line-height: 1.2em;}
#main header hgroup h2{
   font-size: 153.9%;
   font-family: "adobe-caslon-pro-1",serif;
   font-weight: 100;
   font-style: italic;
   color: #fff;
   padding: 0 0 20px;
   -webkit-font-smoothing: antialiased;
   text-rendering: optimizeLegibility;
   letter-spacing:-0.05em;
}

#main #secondary-nav{
   width: 310px;
   margin-bottom: 20px;
}
#main #secondary-nav ul{
   font-size: 123.1%;
   -webkit-font-smoothing: antialiased;
}
#main #secondary-nav ul li{
   background: url(../images/css/nav-border.png) bottom left no-repeat;
   padding: 2px 0;
}
#main #secondary-nav ul li a{
   font-family: "adobe-caslon-pro-1","adobe-caslon-pro-1",serif;
   color: #7D7F80;
   text-decoration: none;
}
#main #secondary-nav ul li a:hover{
   text-decoration: underline;
}
#main #secondary-nav ul li.selected a{
   color: #E7E8E8;
}
#main #secondary-nav ul li.selected a:hover{
   text-decoration: none;
}

#main #secondary-nav ul li.back-link{
   background: none;
}
#main #secondary-nav ul li.back-link a{
   padding: 6px 0 0 20px;
   background: url(../images/css/link-arrow-back.png) center left no-repeat;
}

a.back-link-home{
   float: right;
   padding: 6px 0 0 20px;
   background: url(../images/css/link-arrow-back.png) center left no-repeat;
   margin: 13px 0 0;
   font-size: 123.1%;
   color: #fff;
   text-decoration: none;
   font-family: "adobe-caslon-pro-1",serif;
   font-weight: 100;
   font-style: italic;
   -webkit-font-smoothing: antialiased;
   text-rendering: optimizeLegibility;
   letter-spacing:-0.05em;
   display: block;
}
/* End Sub Header */

/* Start Tertiary Navigation Carousel */
#main .tertiary-nav{
   width: 960px;
   position: relative;
}
#main .tertiary-nav ul{
   text-indent: 0;
   padding: 0;
   margin: 0;
   list-style: none;
   overflow: hidden;
}
#main .tertiary-nav ul li{
   width: 310px;
   padding-right: 15px;
   float: left;
}
/*#main .tertiary-nav ul li.last{padding-right: 0px;}*/
#main .tertiary-nav ul.split-1 li, #main .tertiary-nav ul.split-feature li{
   width: 960px;
   padding-right: 20px;
}
#main .tertiary-nav ul.split-1 li.last, #main .tertiary-nav ul.split-2 li.last, #main .tertiary-nav ul.split-3 li.last, #main .tertiary-nav ul.split-feature li.last{padding-right: 0;}
#main .tertiary-nav ul.split-2 li{
   width: 470px;
   padding-right: 20px;
}
#main .tertiary-nav ul.split-2 li.last{padding-right: 0;}

ul#bxSlider{z-index:10;}
#main .tertiary-nav ul li a.link-image, #main .tertiary-nav ul li a.link-image img{
   vertical-align:sub;
   line-height: 0;
}
#main .tertiary-nav ul li a.link-image{
   min-height:200px;
   height:auto !important;
   height:200px;
}
#main .tertiary-nav ul li div.slider-content{
   background: #191D1F;
   padding: 16px 20px 20px;
}

body.services div.slider-content p, body.developments div.slider-content p, body.collaborators div.slider-content p{
   min-height: 80px;
   height: auto !important;
   height: 80px;
}
body.developments div.split-2 div.slider-content p{
   min-height: 55px;
   height: auto !important;
   height: 55px;
}

#main .tertiary-nav ul li div.slider-content h3{
   font-size: 138.5%;
   font-family: "adobe-caslon-pro-1",serif;
   font-weight: 100;
   font-style: italic;
   color: #fff;
   padding: 0 0 10px;
   -webkit-font-smoothing: antialiased;
   letter-spacing:-0.05em;
}
#main .tertiary-nav ul li div.slider-content h3 a{
   color: #fff;
   text-decoration: none;
}

.tertiary-nav div.bx-wrapper{
   width: 960px;
   overflow: hidden;
   position: relative;
}
.split-1 div.controls, .split-2 div.controls, .split-3 div.controls{display: none !important;}
.tertiary-nav div.controls{
   width: 1062px;
   height: 39px;
   position: absolute; left: -51px; top: 45%;
}
.tertiary-nav div.controls a{
   width: 32px;
   height: 39px;
   background-image: url(../images/css/slider-nav.png);
}
.tertiary-nav div.controls a#go-next{
   float: right;
   background-position: bottom right;
}
.tertiary-nav div.controls a#go-prev{
   float: left;
   background-position: bottom left;
}
/* End Tertiary Navigation Carousel */

/* Start Content Carousel */
body.home #main .content-carousel #bxSlider, body.developments #main .development-item #bxSlider, body.services #main .content-carousel #bxSlider{
   width: 960px;
   height: 450px;
   overflow: hidden;
}
#main .content-carousel .slider-overlay{
   position: absolute; left: 30px; bottom: 30px;
   background: #000;
   z-index: 100;
   width: 240px;
   height: 350px;
   padding: 20px;
}
#main .content-carousel .slider-overlay ul{
   list-style: none outside none;
   margin-left: 0;
   padding-left: 11px;
   padding-bottom: 1em;
   text-indent: -11px;
}
#main .content-carousel .slider-overlay ul li{
   width: auto;
   list-style-image: none;
   list-style-type: none;
   padding: 0 0 .5em;
   font-size: 90%;
}
#main .content-carousel .slider-overlay ul li:before{
   content: "– ";
}
#main .content-carousel .slider-overlay a.overlay-minimize{
   width: 23px;
   height: 23px;
   position: absolute; top: 16px; right: 16px;
   background: url(../images/css/close.png) 0 0 no-repeat;
}

#main .content-carousel .slider-overlay a.link{
   font-size: 123.1%;
   display: inline-block;
   font-family: "adobe-caslon-pro-1",serif;
   font-weight: 100;
   font-style: italic;
   color: #E7E8E8;
   padding: 3px 20px 0 0;
   -webkit-font-smoothing: antialiased;
   letter-spacing:-0.05em;
   text-decoration: none;
   background: url(../images/css/link-arrow.png) center right no-repeat;
}

#main .content-carousel a.overlay-maximize{
   width: 23px;
   height: 23px;
   position: absolute; left: 30px; bottom: 30px;
   background: url(../images/css/close.png) top right no-repeat;
   z-index: 20;
}

#main .content-carousel .slider-overlay h3{
   font-size: 138.5%;
   font-family: "adobe-caslon-pro-1",serif;
   font-weight: 100;
   font-style: italic;
   color: #fff;
   padding: 0 20px 10px 0;
   -webkit-font-smoothing: antialiased;
   text-rendering: optimizeLegibility;
   letter-spacing:-0.05em;
}
#main .content-carousel .slider-overlay #bxPagination{
   display: block;
   width: 180px;
   text-align: center;
   position: absolute; left: 50px; bottom: 20px;
   z-index: 100;
}
#main .content-carousel .slider-overlay #bxPagination a{
   font-size: 116%;
   font-family: "adobe-caslon-pro-1",serif;
   font-weight: 100;
   font-style: italic;
   color: #535658;
   -webkit-font-smoothing: antialiased;
   text-rendering: optimizeLegibility;
   letter-spacing:-0.05em;
   text-decoration: none;
   padding: 4px;
}
#main .content-carousel .slider-overlay #bxPagination a.pager-active{
   color: #fff;
}

#main .content-carousel li{position: relative;}
#main .content-carousel .slider-title{
   position: absolute; right: 20px; bottom: 60px;
   z-index: 100;
   background: #000;
   padding: 1px 6px;
}
#main .content-carousel .slider-title h3{
   font-size: 182%;
   text-transform: uppercase;
   font-family: "proxima-nova-1", sans-serif;
   font-weight: normal;
   -webkit-font-smoothing: antialiased;
   text-rendering: optimizeLegibility;
}
#main .content-carousel .slider-link{
   position: absolute; right: 20px; bottom: 30px;
   z-index: 100;
   background: #000;
   padding: 0 6px 0 0;
}
#main .content-carousel .slider-link a{
   font-size: 123.1%;
   color: #fff;
   text-decoration: none;
   font-family: "adobe-caslon-pro-1",serif;
   font-weight: 100;
   font-style: italic;
   -webkit-font-smoothing: antialiased;
   text-rendering: optimizeLegibility;
   letter-spacing:-0.05em;
   display: block;
   padding: 5px 20px 0 6px;
   background: url(../images/css/link-arrow.png) center right no-repeat;
}
#main .content-carousel .slider-caption{
   display: block;
   padding: 10px 0 0;
}
#main .content-carousel .slider-caption p{
   font-size: 138.5%;
   color: #fff;
   text-decoration: none;
   font-family: "adobe-caslon-pro-1",serif;
   font-weight: 100;
   font-style: italic;
   -webkit-font-smoothing: antialiased;
   text-rendering: optimizeLegibility;
   letter-spacing:-0.05em;
   display: block;
   padding: 0 0 .5em;
   margin: 0;
   text-align: center;
}
#main .no-caption .slider-caption{display: none;}

.home #main .content-carousel div.controls{
   width: 1062px;
   height: 39px;
   position: absolute; left: -51px; top: 45%;
}
.home #main .content-carousel div.controls a{
   width: 32px;
   height: 39px;
   background-image: url(../images/css/slider-nav.png);
}
#main .content-carousel div.controls a#go-next{
   float: right;
   background-position: bottom right;
}
#main .content-carousel div.controls a#go-prev{
   float: left;
   background-position: bottom left;
}


#main .no-link .slider-title{
   bottom: 30px;
}
#main .no-link .slider-link{
   display: none;
}

#main .content-carousel{
   width: 960px;
   position: relative;
}
#main .content-carousel ul{
   text-indent: 0;
   padding: 0;
   margin: 0;
   list-style: none;
   overflow: hidden;
}
#main .content-carousel ul li{
   width: 960px;
   padding-right: 0px;
}

.content-carousel div.controls{
   width: 240px;
   height: 23px;
   position: absolute; left: 20px; bottom: 19px;
}

.content-carousel div.controls a{
   width: 23px;
   height: 23px;
   background-image: url(../images/css/slider-nav-sm.png);
}
.content-carousel div.controls a#go-next{
   float: right;
   background-position: bottom right;
}
.content-carousel div.controls a#go-prev{
   float: left;
   background-position: bottom left;
}
/* End Content Carousel */

/* Start Content Image Fader */
div.content-image-fader{
   width: 640px;
   position: relative;
}
div.content-image-fader ul{
   width: 640px;
   height: 340px;
   text-indent: 0;
   padding: 0;
   margin: 0;
   list-style: none;
   overflow: hidden;
}
div.content-image-fader ul li{
   width: 640px;
   height: 340px;
   overflow: hidden;
   padding: 0;
   margin: 0;
   float: left;
}
/* End Content Image Fader */

/* Start Content Column Layout */
body.column-layout div.content, body.about-us div.content, body.acquisitions div.content, body.contact div.content, body.pr div.content, body.register div.content{
   width: 640px;
   margin-left: 320px;
}
body.our-team div.content{
  width: 960px;
  margin-left: 0;
}
body.column-layout div.content img, body.acquisitions div.content img, body.contact div.content img{
   padding: 0 0 40px;
}

body.about-us div.content .content-image-fader, body.acquisitions div.content .content-image-fader{
  padding: 0 0 40px;
}

body.column-layout div.content div.content-copy, body.about-us div.content div.content-copy, body.acquisitions div.content div.content-copy, body.contact div.content div.content-copy, body.events div.content div.content-copy, body.venues-and-initiatives div.content div.content-copy{
   padding: 0 5px;
   -moz-column-count: 2;
   -moz-column-gap: 30px;
   -webkit-column-count: 2;
   -webkit-column-gap: 30px;
   column-count: 2;
   column-gap: 30px;
}
/* End Content Column Layout */

/* Start vCard */
div.vcard{
   padding: 0 5px 40px;
   font-family: "adobe-caslon-pro-1",serif;
   font-size: 123.1%;
}
div.vcard-holder{
   padding: 0 5px 40px;
   font-family: "adobe-caslon-pro-1",serif;
}
div.vcard div.column, div.vcard-holder div.column{
   width: 300px;
   float: left;
}
div.vcard .adr .street-address span, div.vcard .country{
   display: block;
}
div.vcard span.note{
   display: block;
   padding: 0 0 .8em 0;
   font-family: "adobe-caslon-pro-1",serif;
   font-weight: 100;
   font-style: italic;
   -webkit-font-smoothing: antialiased;
   letter-spacing:-0.05em;
   text-decoration: none;
   font-size: 116%;
}
div.vcard .directions{
   color: #7D7F80;
   font-style: oblique;
}
div.vcard div.vcard-link{
   padding: 1em 0 0;
}
div.vcard div.vcard-link a{
   display: inline-block;
   font-family: "adobe-caslon-pro-1",serif;
   font-weight: 100;
   font-style: italic;
   color: #E7E8E8;
   padding: 3px 20px 0 0;
   -webkit-font-smoothing: antialiased;
   letter-spacing:-0.05em;
   text-decoration: none;
   background: url(../images/css/link-arrow.png) center right no-repeat;
   float: left;
   clear: both;
}
/* End vCard */

/* Start Press */
.press-items{
   width: 652px;
   float: right;
   clear: none;
}
footer.press-items-footer{
   width: 635px;
   border-top: 1px solid #181F24;
   padding: 0;
   clear: both;
   float: right;
   margin: 0;
   position: relative; top: 5px;
   font-size: 123.1%;
}
div.pagination{
   float:right;
   position:relative; top: 20px;
   left:-50%;
   text-align:left;
   clear: both;
}
div.pagination ul.pagination{
   text-indent: 0;
   padding: 0;
   margin: 0;
   list-style:none; 
   position:relative;
   left:50%;
   
   font-size: 108%;
   font-family: "adobe-caslon-pro-1",serif;
   font-weight: 100;
   font-style: italic;
   color: #fff;
   -webkit-font-smoothing: antialiased;
   letter-spacing:-0.05em;
}

div.pagination li{float:left;position:relative;}/* ie needs position:relative here*/

div.pagination a{
   text-decoration:none;
   margin:0px;
   float:left;
   color:#6D6E6E;
   padding:2px 5px;
   text-align:center;
   white-space:nowrap;
}
div.pagination li.selected a{color: #fff;}
div.pagination li.disabled a{
   visibility: hidden;
}

body.calendar div.pagination li.selected a, body.all div.pagination li.selected a, body.archive div.pagination li.selected a, body.blog div.pagination li.selected a{
  color: #000;
}

div.pagination a.pagination-previous, div.pagination a.pagination-next{
   padding: 0;
   background-image: url("../images/css/slider-nav-sm.png");
   height: 23px;
   width: 23px;
   text-indent: -5000px;
   position: relative; top: -2px;
}
div.pagination a.pagination-previous{
   margin: 0 50px 0 0;
   background-position: left bottom;
}
div.pagination a.pagination-next{
   margin: 0 0 0 50px;
   background-position: right bottom;
}

div.date-filters{
   width: 200px;
   float: left;
   clear: none;
   font-family: "adobe-caslon-pro-1",serif;
   font-weight: 100;
   -webkit-font-smoothing: antialiased;
   letter-spacing:-0.05em;
}
div.date-filters div.block{
  padding-bottom: 15px;
}
div.date-filters h3{
   font-size: 153.9%;
   font-style: italic;
   font-weight: 100;
   color: #E7E8E8;
   padding: 0 0 10px 0;
}
div.date-filters ul{
   text-indent: 0;
   padding: 0;
   margin: 0;
   list-style:none;
   font-size: 116%;
   font-style: normal;
   color: #86888A;
}
div.date-filters ul li a{
   color: #86888A;
   padding: 0;
   text-decoration: none;
}
div.date-filters ul li a.selected{
   color: #fff;
}
div.date-filters ul li a:hover{
   text-decoration: underline;
}

div.date-filters ul li.top{
   padding-bottom: 10px;
}
div.date-filters ul li.bottom{
   padding-top: 10px;
}
/* End Press */

/* Start News */
.news-items{
   width: 635px;
   float: right;
   clear: none;
}
.news-items h2{
   font-family: "adobe-caslon-pro-1",serif;
   font-weight: 100;
   font-style: italic;
   font-size: 153.9%;
   color: #E7E8E8;
}
.news-items h3{
   font-family: "adobe-caslon-pro-1",serif;
   font-weight: 100;
   font-style: italic;
   font-size: 123.1%;
   color: #E7E8E8;
}
.news-items h3 a{
   text-decoration: none;
   color: #fff;
}
.news-items h4{
   font-family: Georgia,serif;
   font-weight: 100;
   font-style: normal;
   color: #E7E8E8;
   padding: 0 0 .8em 0;
}
.article{width: 640px !important;}
.article h1, .article h2, .article h3, .article h4, .article h5, .article p{
   padding-left: 5px;
}
.news-article img.article-image{
   display: block;
   padding: .5em 0 1.5em;
}

div#twitter-feed{
   width: 280px;
   float: left;
   clear: none;
   font-family: "adobe-caslon-pro-1",serif;
   font-weight: 100;
   -webkit-font-smoothing: antialiased;
   letter-spacing:-0.05em;
   font-size: 116%;
}
div#twitter-feed ul{
   text-indent: 0;
   padding: 0;
   margin: 0;
   list-style: none;
}
div#twitter-feed h3{
   font-style: italic;
   font-weight: 100;
   color: #E7E8E8;
   padding: 0 0 10px 0;
}

footer.news-items-footer{
   width: 635px;
   padding: 0;
   clear: both;
   float: right;
   margin: 0;
   margin-top: 0 !important;
   position: relative;
   border-top: none;
   font-size: 123.1%;
}
/* End News */

/* Start Press Transcript */
div.transcript-content{
   width: 635px;
   float: right;
   clear: none;
}
div.transcript-content header{zoom:1;}
div.transcript-content header:before,div.transcript-content header:after{content:"";display:table;}
div.transcript-content header:after{clear:both;}
div.transcript-content header div.image{
   width: 200px;
   float: left;
}
div.transcript-content header div.titles{
   width: 400px;
   float: left;
   margin-left: 20px;
}
div.transcript-content header h2{
   font-family: "adobe-caslon-pro-1",serif;
   font-weight: 100;
   font-style: italic;
   font-size: 153.9%;
   color: #E7E8E8;
   -webkit-font-smoothing: antialiased;
   text-rendering: optimizeLegibility;
   letter-spacing: -0.05em;
}
div.transcript-content header h3{
   font-size: 153.9%;
   font-family: "adobe-caslon-pro-1",serif;
   font-weight: 100;
   font-style: italic;
   color: white;
   padding: 0 0 .5em;
   -webkit-font-smoothing: antialiased;
   text-rendering: optimizeLegibility;
   letter-spacing: -0.05em;
}
div.transcript-content header h4{
   font-family: Georgia,serif;
   font-weight: 100;
   font-style: normal;
   color: #E7E8E8;
   padding: 0 0 .8em 0;
}
div.transcript-content header .asset-link{
   /*font-size: 123.1%;*/
   display: inline-block;
   font-family: "adobe-caslon-pro-1",serif;
   font-weight: 100;
   font-style: italic;
   color: #E7E8E8;
   padding: 3px 20px 0 0;
   -webkit-font-smoothing: antialiased;
   letter-spacing:-0.05em;
   text-decoration: none;
   background: url(../images/css/link-arrow.png) center right no-repeat;
}
div.transcript-content article{
   clear: both;
}
div.transcript-content article h1, div.transcript-content article h2, div.transcript-content article h3, div.transcript-content article h4{
   font-weight: 800;
   font-style: normal;
   color: #E7E8E8;
   padding: 0 0 .8em 0;
}
/* End Press Transcript */

/* Start Generic Items Rows */
ul.ul-items{
   text-indent: 0;
   padding: 0;
   margin: 0;
   list-style: none;
}
ul.ul-items li{
   width: 635px;
   float: left;
   text-indent: 0;
   padding: 0;
   padding: 0 0 15px 0;
   margin-bottom: 18px;
   list-style: none;
   border-bottom: 1px solid #181F24;
}
ul.ul-items li.last{
   margin-bottom: 3px;
}
ul.ul-items li a.image{
   width: 200px;
   height: 140px;
   overflow: hidden;
   float: left;
}
ul.ul-items li div.item-content{
   float: right;
   width: 415px;
}
ul.ul-items li div.item-content a.asset-link{
   font-size: 123.1%;
   display: inline-block;
   font-family: "adobe-caslon-pro-1",serif;
   font-weight: 100;
   font-style: italic;
   color: #E7E8E8;
   padding: 3px 20px 0 0;
   -webkit-font-smoothing: antialiased;
   letter-spacing:-0.05em;
   text-decoration: none;
   background: url(../images/css/link-arrow.png) center right no-repeat;
}
/* End Generic Items Rows */

/* Start Generic Items 3 Cols */
ul.ul-threecol{
   text-indent: 0;
   padding: 0;
   margin: 0;
   list-style: none;
}
ul.ul-threecol li{
   width: 200px;
   float: left;
   text-indent: 0;
   padding: 0;
   margin: 0 0 17px 17px;
   list-style: none;
   background: #191C1F;
}
ul.ul-threecol li a.image{
   width: 200px;
   height: 140px;
   overflow: hidden;
   position: relative;
   text-decoration: none;
   color: #fff;
}
ul.ul-threecol li a.image:hover{
   color: #fff;
}
ul.ul-threecol li a.image h4{
   position: absolute; left: 10px; bottom: 10px;
   background: #000;
   padding: 2px 3px;
   text-transform: uppercase;
   font-family: "proxima-nova-1",sans-serif;
   font-size: 100%;
   font-weight: normal;
   text-rendering: optimizelegibility;
   text-transform: uppercase;
}
ul.ul-threecol li div.item-content{
   padding: 10px;
}
ul.ul-threecol li div.item-content h3{
   font-family: "adobe-caslon-pro-1",serif;
   font-weight: 100;
   font-style: italic;
   font-size: 123.1%;
   color: #E7E8E8;
}
ul.ul-threecol li div.item-content h3 a{
   text-decoration: none;
   color: #fff;
}
ul.ul-threecol li div.item-content h4{
   font-family: Georgia,serif;
   font-weight: 100;
   font-style: normal;
   color: #E7E8E8;
   padding: 0 0 .8em 0;
}
ul.ul-threecol li div.item-content a.asset-link{
   display: inline-block;
   font-family: "adobe-caslon-pro-1",serif;
   font-weight: 100;
   font-style: italic;
   color: #E7E8E8;
   padding: 4px 20px 0 0;
   -webkit-font-smoothing: antialiased;
   letter-spacing:-0.05em;
   text-decoration: none;
   background: url(../images/css/link-arrow.png) center right no-repeat;
   margin-right: 10px;
}
/* End Generic Items 3 Cols */

/* Start Awards */
.awards-items{
   width: 652px;
   float: right;
   clear: none;
}
.awards-items ul.ul-awardsitems{
   text-indent: 0;
   padding: 0;
   margin: 0;
   list-style: none;
}
.awards-items ul.ul-awardsitems li{
   width: 200px;
   height: 280px;
   float: left;
   text-indent: 0;
   padding: 0;
   margin: 0 0 17px 17px;
   list-style: none;
   background: #191C1F;
   overflow: hidden;
}
.awards-items ul.ul-awardsitems li a{
   text-decoration: none;
}
.awards-items ul.ul-awardsitems li image{
   position: relative;
   display: block;
}
.awards-items ul.ul-awardsitems li div.item-content{
   padding: 10px;
   min-height:110px;
   height:auto !important;
   height:110px;
}
.awards-items ul.ul-awardsitems li div.item-content h3{
   font-family: "adobe-caslon-pro-1",serif;
   font-weight: 100;
   font-style: italic;
   font-size: 123.1%;
   color: #E7E8E8;
   padding: 0 0 .8em 0;
}
.awards-items ul.ul-awardsitems li div.item-content h4{
   font-family: Georgia,serif;
   font-weight: 100;
   font-style: normal;
   color: #E7E8E8;
   padding: 0 0 .8em 0;
}
.awards-items ul.ul-awardsitems li div.item-content h5{
   font-family: Helvetica,sans-serif;
   font-weight: 100;
   font-style: normal;
   color: #E7E8E8;
   padding: 0 0 0 0;
}
/* End Awards */

/* Start Body Copy Styles */
div.content-copy ul{
   list-style: none outside none;
   margin-left: 0;
   padding: 0 0 1em;
}
div.content-copy ul li{
   width: auto;
   list-style-image: none;
   list-style-type: none;
}
div.content-copy ul li:before{
   content: "– ";
}
/* End Body Copy Styles */

/* Start Footer */
footer{
   display: block;
   padding: 20px 0 10px;
   border-top: 1px solid #181D21;
   margin-top: 40px;
   color: #51575B;
   font-family: "adobe-caslon-pro-1",serif;
}
footer p.copyright{
   float: left;
}
footer p.credit{
   float: right;
}
body.home footer{margin-top: 15px;}
/* End Footer */

/* Start Video */
body.video{
   text-align: center;
   background: #000;
   background-image : -moz-linear-gradient(left top, rgb(6,10,14), rgb(0,0,0));
   background-image : -webkit-gradient(linear, left top, right bottom, from(rgb(6,10,14)), to(rgb(0,0,0)));
   background-image : linear-gradient(left top, rgb(6,10,14), rgb(0,0,0));
   overflow: hidden;
   height: 100%;
}
body.video #main-header{
   display: none;
}
body.video footer{display: none;}

a#intro-logo{
   width: 100%;
   height: 100%;
   display: block;
   text-decoration: none;
   z-index: 1000;
   position: absolute; left: 0; top: 0;
}
a#intro-logo div#logo-holder{
   width: 600px;
   height: 90px;
   position: absolute; top: 50%; left: 50%;
   margin: -45px 0 0 -300px;
   text-align: center;
   text-decoration: none;
   z-index: 1000;
}
a#intro-logo h1{
   width: 376px;
   height: 27px;
   background: url(../images/logo-main-big.png) 0 0 no-repeat;
   text-indent: -5000px;
   margin: 0 auto 20px;
   display: none;
}
a#intro-logo ul{
   padding: 0;
   margin: 0;
   list-style: none;
   display: none;
}
a#intro-logo li{
   font-size: 153.9%;
   color: #fff;
   text-decoration: none;
   font-family: "adobe-caslon-pro-1",serif;
   font-weight: 100;
   font-style: italic;
   -webkit-font-smoothing: antialiased;
   text-rendering: optimizeLegibility;
   letter-spacing:-0.05em;
   display: block;
   width: 100%;
   padding: 0;
   text-align: center;
}

#audio-player{z-index: 2000;}
/* End Video */

/* Start Homepage */
div.mini-features{
   display: block;
   padding: 20px 0 0;
   clear: both;
}
div.mini-features h3{
   padding: 0 0 10px 0;
}
div.mini-features h3 a.link-more{
   font-size: 138.5%;
}
div.mini-features div.feature-item{
   width: 270px;
   padding: 15px 20px 5px;
   background: #191C1E;
   float: left;
   margin-left: 15px;
}
div.mini-features div.feature-item div.feature-item-content{
   min-height:150px;
   height:auto !important;
   height:150px;
}
div.mini-features div#press-items{
   margin-left: 0;
}
div.mini-features div#press-items ul, div.mini-features div#twitter ul{
   text-indent: 0;
   padding: 0;
   margin: 0;
   list-style: none;
}
div.mini-features div#press-items ul li{
   padding: 0 0 10px 0;
}
div.mini-features div#press-items ul li a.image{
   float: left;
}
div.mini-features div#press-items ul li div.item-content{
   float: left;
   padding: 0 0 0 10px;
}
div.mini-features div#press-items ul li div.item-content h4{
   font-size: 116%;
   color: #fff;
   text-decoration: none;
   font-family: "adobe-caslon-pro-1",serif;
   font-weight: 100;
   font-style: italic;
   -webkit-font-smoothing: antialiased;
   text-rendering: optimizeLegibility;
   letter-spacing:-0.05em;
   display: block;
   padding: 0;
}
div.mini-features div#press-items ul li div.item-content h4 a{
   color: #fff;
   text-decoration: none;
}
div.mini-features div#press-items ul li div.item-content h5{
   font-family: Georgia,serif;
   font-weight: 100;
   font-style: normal;
   color: #fff;
   padding: 0;
}

div.home-extras{
  position: relative;
  border-top: 1px solid #181F24;
  margin-top: 5px;
  padding-top: 30px;
}
div.home-extras object{
  position: absolute;
  right: 0;
  bottom: 3px;
}
div.home-extras div.share-buttons{
  float: left;
}
div.home-extras div.home-extras-feature{
   width: 278px;
   float: left;
   padding: 0 20px;
   min-height: 120px;
   height: auto !important;
   height: 100px;
   margin-bottom: 10px;
}
div.home-extras div.home-extras-feature h4{
   font-size: 123.1%;
   font-family: "adobe-caslon-pro-1",serif;
   font-weight: 100;
   -webkit-font-smoothing: antialiased;
   text-rendering: optimizeLegibility;
   letter-spacing:-0.05em;
   padding: 0 0 .5em;
}
div.home-extras div.home-extras-feature h4 a{
   color: #fff;
   text-decoration: none;
   background: url(../images/css/link-arrow.png) center right no-repeat;
   padding: 6px 20px 0 0;
}
div.home-extras div.home-extras-feature h5{
   font-size: 123.1%;
   color: #fff;
   text-decoration: none;
   font-family: "adobe-caslon-pro-1",serif;
   font-weight: 100;
   font-style: italic;
   -webkit-font-smoothing: antialiased;
   text-rendering: optimizeLegibility;
   letter-spacing:-0.05em;
}
div.home-extras div.home-extras-feature h5 a{color: #fff;text-decoration:none;}
div.home-extras div.home-extras-feature div.text{
   font-family: Georgia,serif;
}
div.home-extras div.home-extras-feature div.text p{
   padding: 0;
}
div.home-extras div.home-extras-feature div.text p a{
   text-decoration: none;
}
div.home-extras div.center{
   margin: 0 2px;
   border-left: 1px solid #181B1E;
   border-right: 1px solid #181B1E;
}

footer object{
  float: right;
  margin: 0 0 0 10px;
  position: relative; top: -3px;
}
#galleria{
  width: 1062px;
  height: 500px;
  overflow: hidden;
  position: relative; left: -51px;
}
#galleria img{
  margin-bottom: 50px;
}
/* End Homepage */

/* Start Sharing */
div.share-buttons{padding: 18px 0 0; float: left;position: relative;}

.at300bs { background:none !important; }
#at20mc {position: absolute !important; left: 20px !important; top: 20px !important;}
body.home #at20mc {position: absolute !important; left: 40px !important; top: 460px !important;}
div.share-buttons a{
   float: left;
   position: relative;
   font-family: Georgia,serif;
   font-weight: 100;
   font-style: normal;
   color: #E7E8E8;
   padding: 1px 0 0 0;
   text-decoration: none;
}
div.share-buttons a:hover{text-decoration: underline;}
div.share-buttons div.featured-buttons{float: left; margin-left: 10px;}
div.share-buttons span.divider{
   float: left;
   margin: 0 4px;
}
div.share-buttons a span{display: none;}
div.share-buttons a.addthis_button_compact{
   font-size: 123.1%;
   color: #fff;
   text-decoration: none;
   font-family: "adobe-caslon-pro-1",serif;
   font-weight: 100;
   font-style: italic;
   -webkit-font-smoothing: antialiased;
   text-rendering: optimizeLegibility;
   letter-spacing:-0.05em;
   display: block;
   padding: 1px 0 0 20px;
   background: url(../images/css/share.png) left top no-repeat;
}
/* End Sharing */

/* Start Network Ticker */
.network{
   width: 960px;
   position: relative;
   padding: 20px 0 0 0;
}
.network h3{
   font-family: "adobe-caslon-pro-1",serif;
   font-size: 153.9%;
   font-style: italic;
   font-weight: 100;
   letter-spacing: -0.05em;
   padding: 0 0 5px;
   text-rendering: optimizelegibility;
}

.simply-scroll-container { 
	position: relative;
	padding: 20px 0 10px;
	border-top: 1px solid #181F24;
}
.simply-scroll-clip { 
	position: relative;
	overflow: hidden;
	z-index: 2;
}
.simply-scroll-list { 
	position: absolute;
	top: 0;
	left: 0;
	z-index: 1;
	overflow: hidden;
	margin: 0;
	padding: 0;
	list-style: none;
}	
.simply-scroll-list li {
	padding: 0;
	margin: 0;
	list-style: none;
}
.simply-scroll-list li img {
	border: none;
	display: block;
}

/* Container DIV */
.simply-scroll { 
	width: 960px;
	height: 75px;
}

/* Clip DIV */
.simply-scroll .simply-scroll-clip {
	width: 960px;
	height: 75px;
}
	
/* Explicitly set height/width of each list item */	
.simply-scroll .simply-scroll-list li {
	float: left; /* Horizontal scroll only */
	height: 75px;
	padding: 0 20px;
}
/* End Network Ticker */

/* Start Enquiries */
#contact-form{
  margin-left: 5px;
}
#contact-form div.form-block{
   display: block;
   padding: 0 0 .5em;
}
#contact-form div.form-block label{
   width: 100px;
   float: left;
}
#contact-form div.form-block input[type=text]{
   width: 180px;
   color: #000;
}
#contact-form div.form-block select{
   width: 186px;
   color: #000;
}
#contact-form fieldset.contact-info{
   display: block;
   width: 300px;
   float: left;
}
#contact-form fieldset.contact-info2{
   display: block;
    width: 300px;
    float: left;
    margin-left: 20px;
}
#contact-form fieldset.enquiry-info{
   display: block;
   width: 620px;
   float: left;
   margin-top: 20px;
}
#contact-form label.main-label{
   font-family: "adobe-caslon-pro-1",serif;
   font-size: 123.1%;
}
#contact-form textarea{
  width: 495px;
  height: 100px;
  padding: 5px;
  color: #000;
  margin-bottom: 10px;
}
#contact-form input#submit{
   clear: both;
   display: block;
   padding: 0;
   margin: 0 0 0 100px;
}
#contact-form div.error{
   color: #99000! important;
   border: 1px solid #990000;
   padding: .5em;
   margin: 0 0 1em;
}
#contact-form div.error ul{
   padding: 5px 0 0;
}
/* End Enquiries */

/* Start Register */
#register-form{
   margin-left: 5px;
}
#register-form div.form-block{
   display: block;
   padding: 0 0 .5em;
}
#register-form div.form-block label{
   width: 110px;
   float: left;
}
#register-form div.form-block input[type=text]{
   width: 200px;
   color: #000;
}
#register-form div.form-block input#postcode{
   width: 100px;
}
#register-form div.form-block select{
   width: 150px;
   color: #000;
}
#register-form fieldset.contact-info{
   display: block;
   width: 320px;
   float: left;
}
#register-form fieldset.contact-type{
   display: block;
   width: 280px;
   float: left;
   margin-left: 20px;
}
#register-form div.opt-in{padding: 10px 0 0;clear: both;}
#register-form div.opt-in input{
   width: auto;
   float: left;
   vertical-align: bottom;
   position: relative;
   top: 2px;
}
#register-form div.opt-in label{
   width: 250px;
   float; left;
   padding: 0 0 0 8px;
}
#register-form div.form-block div.check-row{
   display: block;
   clear: both;
}
#register-form div.form-block div.check-row label{
   float: left;
   padding: 0 0 0 8px;
}
#register-form div.form-block div.check-row input{
   float: left;
   vertical-align: bottom;
   position: relative;
   top: 2px;
}
#register-form label.main-label{
   font-family: "adobe-caslon-pro-1",serif;
   font-size: 123.1%;
}
#register-form div.interest label.main-label{padding: 0 0 5px;}
#register-form div.interest div.check-row{padding: 0 0 5px; float:left;}
#register-form input#submit{
   clear: both;
   display: block;
   padding: 30px 0 0;
}
#register-form div.error{
   color: #99000! important;
   border: 1px solid #990000;
   padding: .5em;
   margin: 0 0 1em;
}
#register-form div.error ul{
   padding: 5px 0 0;
}
div.post-success{
   padding: 0 0 0 5px;
}
div.error-focus input{
   background: #F0D9D9;
   border: 2px solid #990000;
}
div.error-focus select{
   background: #990000;
   color: #fff !important;
}
div.error-focus textarea{
   background: #F0D9D9;
   border: 2px solid #990000;
}
/* End Register */

/* Start Team */
div#team-members h2{
   font-size: 153.9%;
   font-family: "adobe-caslon-pro-1",serif;
   font-weight: 100;
   font-style: normal;
   color: #E7E8E8;
   padding: 3px 20px 0 0;
   -webkit-font-smoothing: antialiased;
   text-decoration: none;
   padding: 0 0 10px;
}
div#team-members div.row{padding-bottom: 10px;}
div#team-members ul{
   text-indent: 0;
   padding: 0;
   margin: 0;
   list-style: none;
   clear: both;
}
div#team-members ul li{
   float: left;
   width: 290px;
   padding: 10px;
   background: #191E20;
   margin: 0 15px 15px 0;
}
div#team-members ul li.last{margin-right: 0;}
div#team-members ul li img{
   float: left;
}
div#team-members ul li div.team-content{
   padding: 5px;
}

div#team-members ul li div.team-content h3{
   font-size: 138.5%;
   font-family: "adobe-caslon-pro-1",serif;
   font-weight: 100;
   font-style: italic;
   color: #E7E8E8;
   padding: 3px 20px 0 0;
   -webkit-font-smoothing: antialiased;
   letter-spacing:-0.05em;
   text-decoration: none;
}
div#team-members ul li div.team-content h4{
   padding: 0 0 10px;
}

div#team-members div.directors ul li{
   width: 310px;
   padding: 0;
}
div#team-members div.directors ul li div.team-content{width: auto;padding: 10px 15px 5px 15px;}
/* End Team */

/*** Start Arts Programme **/
body.arts-programme, body.events, body.calendar, body.blog{
   background: #F3F1ED url(../images/css/arts-header.png) 0 0 repeat-x;
   color: #000;
}
body.arts-programme #main-header, body.events #main-header, body.calendar #main-header, body.blog #main-header{border-bottom: none;}
body.arts-programme #main header, body.events #main header, body.calendar #main header{border-bottom: 1px solid #DAD8D5;}
body.arts-programme #main header hgroup h1, body.arts-programme #main header hgroup h2, body.events #main header hgroup h1, body.events #main header hgroup h2, body.calendar #main header hgroup h1, body.calendar #main header hgroup h2, body.blog #main header hgroup h1, body.blog #main header hgroup h2{color: #000;}
body.arts-programme #main #secondary-nav ul li, body.events #main #secondary-nav ul li, body.calendar #main #secondary-nav ul li, body.blog #main #secondary-nav ul li{background: url("../images/css/nav-border-light.png") no-repeat scroll left bottom transparent;}
body.arts-programme #main #secondary-nav ul li a, body.events #main #secondary-nav ul li a, body.calendar #main #secondary-nav ul li a, body.blog #main #secondary-nav ul li a{color: #797876;}
body.arts-programme #main #secondary-nav ul li.selected a, body.events #main #secondary-nav ul li.selected a, body.calendar #main #secondary-nav ul li.selected a, body.blog #main #secondary-nav ul li.selected a{color: #000;}

body.arts-programme #at16pcc, body.events #at16pcc, body.calendar #at16pcc, body.blog #at16pcc{color: #797876 !important;}
body.arts-programme div.share-buttons a, body.events div.share-buttons a, body.calendar div.share-buttons a, body.blog div.share-buttons a{color: #000;}
body.arts-programme footer, body.events footer, body.calendar footer, body.blog footer{border-top: 1px solid #DAD8D5;}

body.arts-programme form input, body.events form input, , body.blog form input{color:#797876;}

div.arts-registration, div.blog-registration{
   display: block;
   padding: 15px 0 0;
}
div.arts-registration label, div.arts-registration h3, div.blog-registration label, div.blog-registration h3{
   display: block;
   font-size: 123.1%;
   font-family: "adobe-caslon-pro-1",serif;
   font-weight: 100;
   font-style: italic;
   padding: 3px 20px 0 0;
   -webkit-font-smoothing: antialiased;
   letter-spacing:-0.05em;
   text-decoration: none;
}
div.arts-registration p.error, div.blog-registration p.error{
   font-size: 93%;
   font-weight: bold;
   color: #990000;
}
div.arts-registration input.error, div.blog-registration input.error{border: 2px solid #990000;}

body.arts-programme div.main-content, body.events div.main-content{
    clear: none;
    float: right;
    width: 635px;
}
body.calendar div.main-content, body.all div.main-content, body.archive div.main-content {
    clear: none;
    float: right;
    width: 652px;
}
body.arts-programme div.header-bar{
   background: #000;
   color: #fff;
   padding: 6px 10px;
   margin-bottom: 10px;
   clear: both;
}
body.arts-programme div.header-bar h2{
   font-size: 116%;
   text-transform: uppercase;
   font-family: "proxima-nova-1", sans-serif;
   font-weight: normal;
   -webkit-font-smoothing: antialiased;
   text-rendering: optimizeLegibility;
}
body.arts-programme div.header-bar h2 a{
   color: #fff;
   text-decoration: none;
   background: url(../images/css/link-arrow.png) center right no-repeat;
   padding: 0 18px 0 0;
}
body.arts-programme ul.ul-threecol, body.calendar ul.ul-threecol{
   padding: 0 0 15px;
}
body.arts-programme ul.ul-threecol li{
   margin: 0 17px 0 0;
   background: none;
}
body.arts-programme ul.ul-threecol li{
  background: none;
}

body.arts-programme ul.ul-threecol li, body.calendar ul.ul-threecol li{
   margin: 0 0 17px 17px;
   background: none;
}
div.now-showing ul.ul-threecol li, div.coming-up ul.ul-threecol li{
  margin: 0 17px 17px 0;
}

body.arts-programme div.date-filters ul li a.selected, body.arts-programme div.date-filters h3, body.blog div.date-filters h3, body.blog div.date-filters ul li a.selected{
   color: #000;
}

body.arts-programme ul.ul-threecol li.last, body.calendar ul.ul-threecol li.last{
   margin-right: 0;
}
body.arts-programme ul.ul-threecol li div.item-content, body.calendar ul.ul-threecol li div.item-content{
   background: #fff;
   min-height:165px;
   height:auto !important;
   height:165px;
   position: relative;
}
body.arts-programme ul.ul-threecol li div.item-content h3, body.arts-programme ul.ul-threecol li div.item-content h3 a, body.arts-programme ul.ul-threecol li div.item-content h4, body.arts-programme ul.ul-threecol li div.item-content h4 a{
   color: #000;
}

body.arts-programme a.asset-link, body.arts-programme ul.ul-threecol li div.item-content a.asset-link{
  font-size: 123.1%;
  display: inline-block;
  font-family: "adobe-caslon-pro-1",serif;
  font-weight: 100;
  font-style: italic;
  color: #000;
  padding: 3px 20px 0 0;
  -webkit-font-smoothing: antialiased;
  letter-spacing:-0.05em;
  text-decoration: none;
  background: url(../images/css/link-arrow-dark.png) center right no-repeat;
  position: absolute; left: 10px; bottom: 10px;
}

body.arts-programme .link-holder{
   position:relative; top: 20px;
   text-align:center;
   clear: both;
}
body.arts-programme a.pagination-link{
  color: #fff;
  float: none;
  text-decoration: none;
  padding: 4px 8px 0;
  background: #000;
}
body.arts-programme a.pagination-link span{
  padding: 2px 22px 0 0;
  background: url(../images/css/link-arrow.png) center right no-repeat;
}

.intro-content ul{
  text-indent: 0;
  padding: 0;
  margin: 0;
  list-style: none;
  overflow: hidden;
}
.intro-content ul li{
  clear: both;
}
.intro-content ul li h4{
  float: left;
  width: 150px;
}
.intro-content ul li span{
  float: left;
}
.intro-content ul li div.notes{
  margin-left: 150px;
}
div.event-feature, div.venue-feature{padding-bottom: 15px;}
div.event-feature ul, div.venue-feature ul{
  width: 640px;
  height: 340px;
  text-indent: 0;
  padding: 0;
  margin: 0;
  list-style: none;
  overflow: hidden;
}
div.venue-feature ul li{
  position: relative;
}
div.venue-feature ul li a{
  text-decoration: none;
}
div.venue-feature ul li h3{
  font-size: 182%;
  text-transform: uppercase;
  font-family: "proxima-nova-1", sans-serif;
  font-weight: normal;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  background: #000;
  color: #fff;
  position: absolute; right: 10px; bottom: 45px;
  padding: 0 6px;
}
div.venue-feature ul li h4{
  background: #000;
  position: absolute; right: 10px; bottom: 15px;
  font-size: 123.1%;
  color: #fff;
  text-decoration: none;
  font-family: "adobe-caslon-pro-1",serif;
  font-weight: 100;
  font-style: italic;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  letter-spacing:-0.05em;
  display: block;
  padding: 4px 6px 1px;
}

#main .content-carousel .slider-title h3{
   font-size: 182%;
   text-transform: uppercase;
   font-family: "proxima-nova-1", sans-serif;
   font-weight: normal;
   -webkit-font-smoothing: antialiased;
   text-rendering: optimizeLegibility;
   padding: 0 60px;
}
#main .content-carousel .slider-link{
   position: absolute; right: 20px; bottom: 30px;
   z-index: 100;
   background: #000;
   padding: 0 6px 0 0;
}
#main .content-carousel .slider-link a{
   font-size: 123.1%;
   color: #fff;
   text-decoration: none;
   font-family: "adobe-caslon-pro-1",serif;
   font-weight: 100;
   font-style: italic;
   -webkit-font-smoothing: antialiased;
   text-rendering: optimizeLegibility;
   letter-spacing:-0.05em;
   display: block;
   padding: 5px 20px 0 6px;
   background: url(../images/css/link-arrow.png) center right no-repeat;
}


ul.ul-venues{
  text-indent: 0;
  padding: 0;
  margin: 0;
  list-style: none;
}
ul.ul-venues li{
   width: 635px;
   height: 200px;
   float: left;
   text-indent: 0;
   padding: 0;
   padding: 0;
   margin-bottom: 18px;
   list-style: none;
   background: #fff;
}
ul.ul-venues li div.item-content{
  width: 290px;
  float: right;
  padding: 15px;
}
ul.ul-venues li div.item-content h2 a{
  text-decoration: none;
  color: #000;
}
ul.ul-venues li h2{
  font-size: 138.5%;
  text-decoration: none;
  font-family: "adobe-caslon-pro-1",serif;
  font-weight: 100;
  font-style: italic;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  letter-spacing:-0.05em;
  display: block;
  padding: 0;
}
ul.ul-venues li h4{
  font-family: Georgia,serif;
   font-weight: 100;
   font-style: normal;
   padding: 0 0 .8em 0;
}
/*** End Arts Programme **/

/*** Start Blog **/
body.blog div.main-content{
    clear: none;
    float: right;
    width: 640px;
}
body.blog div.main-content div.blog-entries article, body.blog div.main-content div.blog-entry article, body.blog div.main-content div.author{
  background: #fff;
  padding: 20px;
  margin: 0 0 20px;
}
body.blog div.main-content div.blog-entries article iframe, body.blog div.main-content div.blog-entry article iframe{
  margin-bottom: 10px;
}
body.blog header{
  position: relative;
}
body.blog header hgroup a#blog-rss{
  padding: 4px 22px 0 0;
  text-decoration: none;
  height: 16px;
  background: url(../images/css/feed-16x16.png) right center no-repeat;
  position: absolute; right: 0; bottom: 22px;
  font-family: "adobe-caslon-pro-1",serif;
  font-size: 108%;
  font-weight: 100;
  letter-spacing: -0.05em;
  text-rendering: optimizelegibility;
}

body.blog div.main-content article h2{
   font-family: "adobe-caslon-pro-1",serif;
   font-weight: 100;
   font-style: italic;
   font-size: 153.9%;
   color: #000;
   padding: 0 0 5px 0;
}
body.blog div.main-content article h2 a{
   text-decoration: none;
   color: #000;
}
body.blog div.main-content article header{
  border-bottom: none !important;
  padding: 0 0 15px !important;
  margin: 0 !important;
}
body.blog div.main-content article a.author-icon, body.blog div.main-content article img.author-icon{
  width: 36px;
  height: 36px;
  float: left;
}
body.blog div.main-content article div.post-meta, body.blog div.main-content article div.author-meta {
  float: left;
  width: 500px;
  margin-left: 10px;
}
body.blog div.main-content article div.author-meta h3, body.blog div.main-content article div.author-meta a{
   font-family: Georgia,serif;
   font-weight: 100;
   font-style: normal;
   color: #797876;
   padding: 0;
}
body.blog div.main-content article div.author-bio {
   padding: 0 0 1em;
}
body.blog div.main-content div.author-posts h3{
   font-size: 153.9%;
   font-family: "adobe-caslon-pro-1",serif;
   font-weight: 100;
   font-style: italic;
   padding: 0 0 10px;
   -webkit-font-smoothing: antialiased;
   text-rendering: optimizeLegibility;
   letter-spacing: -0.05em;
}
body.blog div.main-content div.author-posts ul li{
   padding: 0 0 12px;
}
body.blog div.main-content div.author-posts ul li h4 a{
   font-size: 123.1%;
   font-family: "adobe-caslon-pro-1",serif;
   font-weight: 100;
   font-style: italic;
   padding: 0 0 10px;
   -webkit-font-smoothing: antialiased;
   text-rendering: optimizeLegibility;
   letter-spacing: -0.05em;
   color: #000;
   text-decoration: none;
}
body.blog div.main-content div.author-posts footer{
   padding: 0;
   margin-top: 15px;
}
body.blog div.main-content div.author-posts ul li h5, body.blog div.main-content div.author-posts ul li p, body.blog div.main-content div.author-posts ul li p a{
   font-family: Georgia,serif;
   font-weight: 100;
   font-style: normal;
   color: #797876;
   padding: 0;
}
body.blog div.main-content div.author-posts ul{
   padding: 0;
   margin: 0;
   list-style: none;
   list-style-image: none;
}

body.blog div.main-content article div.post-meta p{
  font-family: Georgia,serif;
   font-weight: 100;
   font-style: normal;
   color: #797876;
   padding: 0;
}
body.blog div.main-content article div.post-meta p span{
  font-style: italic;
}
body.blog div.main-content article p.caption{
  font-family: Georgia,serif;
   font-weight: 100;
   font-style: italic;
   color: #797876;
   text-align: right;
}
/*** End Blog **/

/* ------------------------------------------------------------
	Site Map Styles
------------------------------------------------------------ */

/* ------------------------------------------------------------
	NUMBER OF COLUMNS: Adjust #primaryNav li to set the number
	of columns required in your site map. The default is 
	4 columns (25%). 5 columns would be 20%, 6 columns would 
	be 16.6%, etc. 
------------------------------------------------------------ */

.sitemap #primaryNav li {
	width:25%;
}

.sitemap #primaryNav li ul li {
	width:100% !important;
}

.sitemap #primaryNav.col1 li { width:99.9%; }
.sitemap #primaryNav.col2 li { width:50.0%; }
.sitemap #primaryNav.col3 li { width:33.3%; }
.sitemap #primaryNav.col4 li { width:25.0%; }
.sitemap #primaryNav.col5 li { width:20.0%; }
.sitemap #primaryNav.col6 li { width:16.6%; }
.sitemap #primaryNav.col7 li { width:14.2%; }
.sitemap #primaryNav.col8 li { width:12.5%; }
.sitemap #primaryNav.col9 li { width:11.1%; }
.sitemap #primaryNav.col10 li { width:10.0%; }

body.sitemap .content:before, body.sitemap .content:after{content: "\0020"; display: block; height: 0; overflow: hidden;}
body.sitemap .content:after{clear: both;}
body.sitemap .content{zoom: 1;}
.sitemap {
	margin: 0 0 40px 0;
	float: left;
	width: 100%;
	clear: both;
	background: #0C1216;
}

.sitemap a {
	text-decoration: none;
}
.sitemap ol, .sitemap ul {
	list-style: none;
	margin-left: 0;
}

/* --------	Top Level --------- */

.sitemap #primaryNav {
	margin: 0;
	float: left;
	width: 100%;
}
.sitemap #primaryNav #home {
	display: block;
	float: none;
	background: #0C1215 url('../images/sitemap/L1-left.png') center bottom no-repeat;
	position: relative;
	z-index: 2;
	padding: 0 0 30px 0;
}
.sitemap #primaryNav li {
	float: left;
	background: url('../images/sitemap/L1-center.png') center top no-repeat;
	padding: 30px 0;
	margin-top: -30px;
}
.sitemap #primaryNav li a {
  background-color: #14191C;
	margin: 0 20px 0 0;
	padding: 10px 0;
	display: block;
	font-size: 11px;
	text-align: center;
	color: #A3A5A6;
	border: 2px solid #242A2C;
}
.sitemap #primaryNav li a:hover {
	background-color: #1A1E21;
	border-color: #2C3033;
	color: #fff;
}
.sitemap #primaryNav li:last-child {
	background: url('../images/sitemap/L1-right.png') center top no-repeat;
}

/* --------	Second Level --------- */

.sitemap #primaryNav li li {
	width: 100%;
	clear: left;
	margin-top: 0;
	padding: 10px 0 0 0;
	background: url('../images/sitemap/vertical-line.png') center bottom repeat-y;
}
.sitemap #primaryNav li li.under{
  padding: 27px 0 0 0;
}
.sitemap #primaryNav li li:first-child {
	padding-top: 30px;
}
.sitemap #primaryNav li li:last-child {
	background: url('../images/sitemap/vertical-line.png') center bottom repeat-y;
}

/* --------	Third Level --------- */

.sitemap #primaryNav li li ul {
	margin: 10px 0 0 0;
	width: 100%;
	float: right;
	padding: 9px 0 0 0;
	background: #0C1215 url('../images/sitemap/L3-ul-top.png') center top no-repeat;
}
.sitemap #primaryNav li li li {
	background: url('../images/sitemap/L3-center.png') left center no-repeat;
	padding: 5px 0 0;
}
.sitemap #primaryNav li li li a {
	font-size: 11px;
	padding: 5px 0;
	width: 75%;
	float: right;
}
.sitemap #primaryNav li li li:first-child {
	padding: 15px 0 5px 0;
	background: url('../images/sitemap/L3-li-top.png') left center no-repeat;
}
.sitemap #primaryNav li li li:last-child {
	background: url('../images/sitemap/L3-bottom.png') left center no-repeat;
}


/* ------------------------------------------------------------
	Utility Navigation
------------------------------------------------------------ */

.sitemap #utilityNav {
	float: right;
	max-width: 50%;
	margin-right: 10px;
}
.sitemap #utilityNav li {
	float: left;
	margin-bottom: 10px;
}
.sitemap #utilityNav li a {
	margin: 0 10px 0 0;
	padding: 5px 10px;
	display: block;	
	border: 2px solid #242A2C;
	font-size: 11px;
	text-align: center;
	color: #A3A5A6;
	background: #14191C;
}
.sitemap #utilityNav li a:hover {
	background-color: #1A1E21;
	border-color: #2C3033;
	color: #FFF;
}
.sitemap #utilityNav li a:link:before,
.sitemap #utilityNav li a:visited:before {
	color: #ccae14;
	font-size: 9px;
	margin-bottom: 3px;
}

/**
 * Non-semantic helper classes: please define your styles before this section.
 */

/* For image replacement */
.ir { display: block; text-indent: -999em; overflow: hidden; background-repeat: no-repeat; text-align: left; direction: ltr; }

/* Hide for both screenreaders and browsers:
   css-discuss.incutio.com/wiki/Screenreader_Visibility */
.hidden { display: none; visibility: hidden; }

/* Hide only visually, but have it available for screenreaders: by Jon Neal.
  www.webaim.org/techniques/css/invisiblecontent/  &  j.mp/visuallyhidden */
.visuallyhidden { border: 0; clip: rect(0 0 0 0); height: 1px; margin: -0.05em; overflow: hidden; padding: 0; position: absolute; width: 1px; }
/* Extends the .visuallyhidden class to allow the element to be focusable when navigated to via the keyboard: drupal.org/node/897638 */
.visuallyhidden.focusable:active,
.visuallyhidden.focusable:focus { clip: auto; height: auto; margin: 0; overflow: visible; position: static; width: auto; }

/* Hide visually and from screenreaders, but maintain layout */
.invisible { visibility: hidden; }

/* The Magnificent Clearfix: Updated to prevent margin-collapsing on child elements.
   j.mp/bestclearfix */
.clearfix:before, .clearfix:after { content: "\0020"; display: block; height: 0; overflow: hidden; }
.clearfix:after { clear: both; }
/* Fix clearfix: blueprintcss.lighthouseapp.com/projects/15318/tickets/5-extra-margin-padding-bottom-of-page */
.clearfix { zoom: 1; }



/**
 * Media queries for responsive design.
 *
 * These follow after primary styles so they will successfully override.
 */

@media all and (orientation:portrait) {
  /* Style adjustments for portrait mode goes here */

}

@media all and (orientation:landscape) {
  /* Style adjustments for landscape mode goes here */

}

/* Grade-A Mobile Browsers (Opera Mobile, Mobile Safari, Android Chrome)
   consider this: www.cloudfour.com/css-media-query-for-mobile-is-fools-gold/ */
@media screen and (max-device-width: 480px) {


  /* Uncomment if you don't want iOS and WinMobile to mobile-optimize the text for you: j.mp/textsizeadjust */
  /* html { -webkit-text-size-adjust:none; -ms-text-size-adjust:none; } */
}


/**
 * Print styles.
 *
 * Inlined to avoid required HTTP connection: www.phpied.com/delay-loading-your-print-css/
 */
@media print {
  * { background: transparent !important; color: black !important; text-shadow: none !important; filter:none !important;
  -ms-filter: none !important; } /* Black prints faster: sanbeiji.com/archives/953 */
  a, a:visited { color: #444 !important; text-decoration: underline; }
  a[href]:after { content: " (" attr(href) ")"; }
  abbr[title]:after { content: " (" attr(title) ")"; }
  .ir a:after, a[href^="javascript:"]:after, a[href^="#"]:after { content: ""; }  /* Don't show links for images, or javascript/internal links */
  pre, blockquote { border: 1px solid #999; page-break-inside: avoid; }
  thead { display: table-header-group; } /* css-discuss.incutio.com/wiki/Printing_Tables */
  tr, img { page-break-inside: avoid; }
  @page { margin: 0.5cm; }
  p, h2, h3 { orphans: 3; widows: 3; }
  h2, h3{ page-break-after: avoid; }
}