/*------------------------------------------------------------------------------
>>>>  Default Blueprint CSS 
      This provides the styles for Blueprint's default templates.
      You can discard it entirely, or simply delete or comment out the irrelevant
      parts.
      
      This stylesheet is divided into several sections:
      + Reset (to give you a blank CSS canvas on which to work)
      + Sample colours and embellishments (the first bit you should delete - this
        provides tweaks to make the default templates look nice, and probably
        isn't relevent when you're putting together a fresh design)
      + Layout
      + Basic typography (in ems) with simple table styles
      + Mimetypes (presentation of download / view links for non-image assets)
      
      Following these sections, there are styles for each of the default blueprint
      modules. They are namespaced with the modge code (i.e. blg, evt, nws),
      which is is applied to the body in the main default layout.

      We're always keen to hear about things that might make the default templates
      easier to comprehend and to use.
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, font, img, ins, kbd, q, s, samp,
small, strike, sub, sup, tt, var,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td {
	margin: 0;
	padding: 0;
	border: 0;
	outline: 0;
	font-weight: inherit;
	font-style: inherit;
	font-family: inherit;
	vertical-align: baseline;
}

/* For IE */
img { -ms-interpolation-mode:bicubic; } 

a img {
  border: none;
}

a, a:link { text-decoration: none; }
a:visited { }
a:hover {text-decoration: underline; }
a:active { }


/*------------------------------------------------------------------------------
>>>> Sample site colours + layout + nudges + small embellishments 
     Beware: some of this stuff isn't IE-friendly.
     Commenting out this section will give you a vanilla canvas.
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/

body { 
  background: url(/static/images/background.jpg) repeat;
  color: #07181d; 
  border-top: 2px solid #FFFFFF;
  text-shadow: rgba(255, 255, 255, .01) 0px -1px 1px; 
  font-family: "Helvetica Neue", Arial, Helvetica, sans-serif;
	font-size: 83%;  
}

/* Link and link-like colours */
a, .textNav a { text-decoration: none; }
.gold a { color: #e3a000 }
.blue a { color: #2693cf }
.red a { color: #bf0036 }

#sidebar > h4:first-child { margin-top: 0px; }
#sidebar form.searchForm { margin-bottom: 2.5em; }


.sitemap a { color: #333; }
.sitemap a:hover { color: #222; text-decoration: none; }

#content p {
  margin-right: 20px;
}


/* Neatening subheadings in posts  */

.post h2, .newsPost h2 { margin-top: 0px;}
.post h2 + h3, .newsPost h2 + h3 {
  margin: -0.7em 0 0.6em 0;
}





/*------------------------------------------------------------------------------
>>>> Layout
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/

/* 
    The basic 960px grid layout is provided by Golden Grid (a separate stylesheet
      included in the head of the layout) 
*/

.wrapper {
    background: #FFFFFF;
    height: 100%;
}

.container {
  background: #FFFFFF;
  padding-bottom: 20px;
}

.main {
  background: #FFFFFF;
}

.footer {
  clear:both;
  font-size: 90%;
}

.footer .main {
  background-image:  url(/static/images/footerline.jpg);
  background-repeat: no-repeat;
}

.byline {
  padding-top: 0.5em;
  font-size: 90%;
  text-align: center;
}

/*------------------------------------------------------------------------------
>>>> Masthead, breadcrumbs & tabs
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/

.masthead {
  width: 100%;  
  overflow: hidden;  
  padding: 0;
  text-align: left;  
}
.masthead .title {
  background-image: url(/static/images/header3.jpg);
  background-repeat: no-repeat;
  background-position: center;
  height: 185px;
  text-indent: -99999px;
}
.masthead .main {
  padding-bottom: 10px;
}
.strap { /* Contains breadcrumbs and shoppping cart */
  height: 2.5em;
  padding-top: 0;
}
.breadcrumbs {
  padding: 0.5em 0;
  font-size: 0.9em;
}

li#home { /* The 'home' link in the main nav */ }

/* Tab-style nav */

ul.tabs, ul.tabs li {
	list-style: none;
	margin: 25px 0 0 0;
	padding: 0;
}
ul.tabs {
	padding: 5px 0 4px;
  text-align: center; /* Centres tabs in ul.tabs */
}
ul.tabs li {
	display: inline;
	margin-right: .75em;
}
ul.tabs li.last {
	margin-right: 0;
}
ul.tabs li a {
	padding: 7px 0;
	text-decoration: none;
}
ul.tabs li a span {
	padding: 7px 1em;
}
ul.tabs li a:hover span { }

/* Plain text-link style nav */

ul.textNav {
  display: block;
  list-style-type: none;
  margin: 0;
  padding: 0;
}
ul.textNav li {
  line-height: 100%;
  font-weight: bold;
  height: 2em;
  padding-top: 0.5em;
}
ul.textNav li#home {
  text-transform: uppercase;
}

/* nav link colours */

ul.textNav li a { color: #828282 } 

#nav1 a:hover, #nav1 a.active { color: #fab813 }
#nav2 a:hover, #nav2 a.active { color:  #ffd786 }
#nav3 a:hover, #nav3 a.active  { color: #7ed4ff }
#nav4 a:hover, #nav4 a.active  { color: #2693cf }
#nav5 a:hover, #nav5 a.active  { color: #f00060 }
#nav6 a:hover, #nav6 a.active  { color: #bf0036 }

#nav1 { border-top: 7px solid #fab813 }
#nav2 { border-top: 7px solid #ffd786 }
#nav3 { border-top: 7px solid #7ed4ff }
#nav4 { border-top: 7px solid #2693cf }
#nav5 { border-top: 7px solid #f00060 }
#nav6 { border-top: 7px solid #bf0036 }

/* Sidebar subnav */

.subnav {
  margin-bottom: 2em;
}

.gold .subnav ul {
  list-style-image: url(/static/images/arrow_gold.jpg);
}
.blue .subnav ul {
  list-style-image: url(/static/images/arrow_blue.jpg);
}
.red .subnav ul {
  list-style-image: url(/static/images/arrow_red.jpg);
}

.gold .subnav ul ul {
  list-style-image: url(/static/images/point_gold.jpg);
}
.blue .subnav ul ul{
  list-style-image: url(/static/images/point_blue.jpg);
}
.red .subnav ul ul{
  list-style-image: url(/static/images/point_red.jpg);
}

.subnav ul ul {
  margin-left: 1.4em;
  margin-top: 0.7em;
  margin-bottom: 0;  
/*  list-style-image: none !important;*/
}

.subnav a.active {
  text-decoration: underline;
}

/* sidebar buttons */
.sidebarButton {
  height: 80px;
  width: 148px;
  float:left;
  font-size: 15pt;
  line-height: 17pt;
  text-align: center;
  margin-bottom: 20px;
}

/* sidebar buttons */
.registerButton {
  background:  url(/static/images/register_button.png) no-repeat;
  float: left;
  height: 25px;
  width: 147px;
  text-transform: uppercase;
  font-size: 13px;
  vertical-align: middle;
  color: #e3a000;
  line-height: 25px;
  text-align: center;
  margin-bottom: 20px;
  margin-right: 15px;
}

.sidebarButton a {
  display: block;
}
.buttonLeft {
  background:   url(/static/images/button1.jpg) no-repeat;
}
.buttonRight {
  background:   url(/static/images/button2.jpg) no-repeat;
  margin-left: 10px;
}
.buttonLeft a {
  color: #e3a000;
  margin: 15px 0 0 0;
}
.buttonRight a {
  color: #7ed4ff;
  margin: 15px 0 0 0;
}


/*------------------------------------------------------------------------------
>>>> Basic Typography
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/

em, i {
  font-style:italic;
}
b, strong {
  font-weight: bold;
}

h1 {
  text-transform: uppercase;
  font-size:1.7em;
  margin: 0 0 0.5em 0;
  letter-spacing:0.05em;
  color: #828282;
}
h2 {
  font-size: 1.4em;
  margin-top: 1.8em;
  margin-bottom: 0.7em;
}
h2.first {
  margin-top: 0.5em;
  margin-bottom: 1.5em;
}
h3 {
  font-size: 1.0em;
  line-height: 1.25;
  margin-top: 1.8em;  
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 0.5em;
}

h4 {
  margin-top:1.4em;    
  font-size:1em;
  font-weight: bold;
  margin-bottom:0.5em;
}
h6 {
  font-size:1em;
  font-weight:bold;
}
p {
  line-height:150%;
  margin-bottom:1.0em;
}
ul, ol {
  padding: 0;
  margin:1.0em 3.0em 1.4em 0;
  /*list-style-position: inside;*/
  margin-left: 1.4em;
}
ul ul, ol ol {
  margin-left: 1.8em;
}
li {
  line-height:130%;
  margin-bottom:0.7em;
}
dl {
  line-height: 130%;
}
dt {
  font-weight: bold;
  margin-bottom: 0;
}
dd {
  margin-bottom: 2.0em;
}
blockquote {
  margin: 1.6em 0;
  padding: 0 2.0em;
  border-left: 1px solid #ccc;
}
blockquote p {
  padding:0;
  margin:0 0 1.0em 0;
}
blockquote cite {
  font-style:italic;
  font-weight: bold;
  font-size:0.9em;
}
table {
  border-collapse: collapse;
  margin: 1.0em 0;
  padding: 0;
  font-size: 0.9em;
  width: 100%;
}
table td {
  text-align: left;
  vertical-align: top;
  padding: 0.3em 1.0em 0.3em 0;
  border-bottom:1px solid #ddd;  
}
table th {
  padding: 0.3em 1.0em 0.3em 0;
  font-weight: bold;
  text-align: left;  
  border-bottom: 1px solid #222;
}
table p {
  margin: 0.5em 0;
}
hr {
  height: 1px;
  border: none;
  border-top: 1px solid #555;
}


/*  
  For convenience, the basic unit of all post-able blueprints is 'post'.
  Where there's a standard image associated with the post (products, people), the 
  post is further divided into .image and .body.
*/

div.post {
  margin-bottom:2.0em;
}
div.newsPost {
  margin-bottom:2.0em;
/*   margin-top: 1.0em;  */
/*   border-top: 1px solid #fab813; */
}

 
 

/*------------------------------------------------------------------------------
>>>> Blog and News (BLG, NWS) pagination + DBY years
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/

div.pagination {
  margin-top:4.0em;
  text-align:right;
  font-size: 90%;
}
.pagination ul {
  margin: 0;
  float: right;
  list-style: none;
}
.pagination ul li {
  border-right: 1px solid #444;
  padding: 0 0.4em;
  margin-top: 0.5em;
  float: left;
}
.pagination ul li.currentPage {
  font-weight: bold;
}
.pagination ul li.all {
  border-right: 0;
  padding-right: 0;
}




/*  >> Comments <<   */

p.commentInfo { /* Shows if comments are on or off, and how many */
  margin-top: 2.0em;
  text-align: right;
  font-size: 90%;
  font-weight: bold;
}
div.cmt {
  margin-bottom: 2.4em;
  font-size: 90%;
}
div.preview h4.commenter {
  margin-top: 0;
}
div.preview a.hide {
  color: red;
}

em.date {
 padding-left: 0.5em;
}


/*------------------------------------------------------------------------------
>>>> Events (EVT)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/

.calendarEntry {
  width: 150px;
  margin-right: 10px;
  float: left;
  border-top: 2px solid #adadad;
  padding-top: 4px;
}

.calendarEntry h3 {
  color: #828282;
  margin-bottom: 0.5em;
}

.calendarEntry h3 .day {
  font-size: 1.6em;
}

.calendarEntry h3 .weekDay {
  font-size: 0.9em;
}

/*------------------------------------------------------------------------------
>>>> Personell (PSL)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/

h2.psl {
  margin-bottom: 0.4em;
}

/*------------------------------------------------------------------------------
>>>> FAQ (FAQ)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/

dl.questions dt img {
  float: left;
  margin-top: 0.4em; 
  margin-right: 0.8em;
}


/*------------------------------------------------------------------------------
>>>> Search (SCH)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/

#search .searchForm {
  padding: 0px;
  margin: 5px 0;
  position: relative;
}
#search input[type="text"] {
  border: 1px solid #adadad;
  padding: 0;
  margin: 0;
  height: 19px;
  width: 280px;
  position: absolute;
  left: 20px;
  top: 0;
  color: #4a4a4a;
  padding-left: 5px;
}

#search input[type="submit"] {
  width: 21px; 
  height: 21px;
  position: absolute;
  left:0;
  top:0;
  }

/*------------------------------------------------------------------------------
>>>> Contact form (CTT)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/

.submitQuestion {
  width: 480px;
}

/*------------------------------------------------------------------------------
>>>> Gallery (GLY)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/

#gly div.image img {
  width: 100%;
}
#gly p.caption {
  margin-top: 1.0em;
  font-size: 90%;
}



/*------------------------------------------------------------------------------
>>>> Slideshow
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/

#slideshow div.placeholder {
  clear: both;
  width: 100%;
  overflow: hidden;
  background: url(/static/images/spinner.gif) center center no-repeat;
}
#slideshow #SS_caption {
  margin-top: 1.0em;
  font-size: 90%;
  height: 6.0em; /* You should set a height to stop the scrollbar flicker */
}
#slideshow ol li {
  display: block;
  padding: 0.1em 1.0em 0.1em 0;   
  float: left;
  cursor: pointer;
  font-size: 90%;
}
#slideshow ol li a {
  padding: 0.1em 1.0em 0.1em 0; 
}
#slideshow ol li#activeThumb { /* The active marker for the slideshow */ }


/*------------------------------------------------------------------------------
>>>> Graph Search (AHMGRP)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/

form.filter {
/*   border-top: 1px solid #adadad; */
/*   border-bottom: 1px solid #adadad; */
}

.filter fieldset{
  width: 182px;
  float:left;
  margin-right: 15px;
/*   background: #fdeac2; */
  padding: 5px;
  border: 1px solid #fab813;
}

.filter fieldset.last {
  margin-right: 0px;
  padding-right: 0px;
}

.filter label {
  display: block;
}

.filter legend {
/*   font-weight: bold; */
/*   letter-spacing: 0.1em; */
 font-size: 1.1em;
  color: #e3a000;
  line-height: 1.5em;
/*   padding-top: 20px; */
  margin-left: 3px;
}

.filter input[type="submit"] {
  margin-top: 10px;
  margin-bottom: 10px;
  border: none;
  background: #fab813 ;
  color: white;
  padding: 0.3em 0.5em;
}


.graphs {
/*   border-bottom: 1px solid #adadad; */
  width: 611px;
}
.graphs h3 {
    border-bottom: 1px solid #555;
    margin-bottom: 10px;
    line-height: 1.5em;
}

.graphs img {
  margin-bottom: 10px;
}
/*-----------------------------------------------------
                     >> Images <<
                     
Sizes
large: 440px
medium: 200px
small: 100px

Adjust accordingly!

-----------------------------------------------------*/

.captioned {
  margin-top: 0.7em;
  margin-bottom: 0.7em;
}
.captioned blockquote {
  background:none;
  margin: 6px 0 0 0;
  padding: 0;
  border: 0;
}
.captioned blockquote p {
  font-size: 0.85em;
  font-style: normal;
  line-height: 140%;
}
img.small, .smallCaptioned {
  float: left;
  width: 100px;
  margin: 0 18px 10px 0;
}
img.med, .medCaptioned {
  float: left;
  width: 200px;
  margin: 0 18px 10px 0;
}
img.med_right, .med_rightCaptioned {
  float: right;
  width: 200px;
  position: relative;
  margin-right: -210px;  
}
img.large, .largeCaptioned {
  width: 440px;
  margin: 0;
  padding: 0;
  border: 1px solid #ddd;
  background:#fff;  
}
.largeCaptioned {
  margin: 1.7em 0;
  border: none;
  padding: 0;
}

.medCaptioned img, 
.med_rightCaptioned img,
.smallCaptioned img,
.small_rightCaptioned img,
.largeCaptioned img {
  float: none;
  margin: 0;
}

p.submit {
  text-align:center;
  margin-top:10px;
  width:100%;
  overflow:hidden;
}

.submit input {
  font-size:16px;
}







/*------------------------------------------------------------------------------
>>>> Documents by year (DBY)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/

#dby table .downloadDate {
  width: 7.0em;
}
#dby table .downloadContent {
  width:27em;
}
#dby table .downloadLink {
  width: 7.0em;
  text-align: right;
}



/*------------------------------------------------------------------------------
>>>> Mime-type display - the default behaviour when a file is inserted in text
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/

a.download {
  display:block;
  overflow:hidden;
  border:1px solid #ccc;
  margin:0;
  padding:0;
  background:#eee;
  position:relative;
  text-decoration:none;
}
a.download:hover {
  background:#E6F1FF;
}
a.download label {
  margin:20px 0 0 0;
  padding:0;
  display:block;
  line-height:140%;
  float:left;
}
a.download label span {
  font-weight:bold;
  font-size:12px;
}
a.download img {
  float:left;
  margin:0;
  padding:3px 0;
  width:64px;
  height:64px
}

/*------------------------------------------------------------------------------
>>>> Generally helpful
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/

.error, .preview, .registrationErrors {
  border: 1px dashed red;
  padding: 1.0em 1.0em 0 1.0em;
  margin-bottom: 1.0em;
}

.notify {
  padding: 1.0em;
  margin-bottom: 1.0em;
}

.gold .notify {
  border: 1px solid #e3a000;
}

.skip { /* For hidden skip-to-content link */
  display: none;
}
.back { /* Used for back-to-page links for blg, nws, evt */
  clear: both;
  padding-top:2.0em;
}
.go { /* Link to post or extended article */
  text-align: right;
  padding-right: 30px;
}
.first { /* For the first item in series */
  margin-left: 0;
  padding-left: 0;
}
.last { /* For the last item in series */
  margin-right: 0;
  padding-right: 0;
}
.notFound { /* Where people / products don't have images */
  background: #ddd;
  text-align: center;
  padding: 3.5em 0;
  width: 100%;
}

.inline {
  display: inline;
}

/*------------------------------------------------------------------------------
>>>> Search and Tags
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/

.tagCloud a {
  margin-right: 2%;
}

.cloud1 { font-size: 100%; }
.cloud2 { font-size: 110%; }
.cloud3 { font-size: 120%; }
.cloud4 { font-size: 130%; }
.cloud5 { font-size: 140%; }
.cloud6 { font-size: 150%; }
.cloud7 { font-size: 160%; }



/*------------------------------------------------------------------------------
>>>> Sitemap
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/

ul.sitemap  {
  overflow:hidden;
  list-style-type:none; 
  list-style-image:none;
  padding: 0.7em 0;
}
ul.sitemap ul {
  padding:0;
  list-style-type:none;
  list-style-image:none;   
}
ul.sitemap li {
  float:left;
  padding-left:0px;
  padding: 0.5em 0;
  font-weight:bold;
}
ul.sitemap li span {
  display:block;
}
ul.sitemap ul {
  margin:8px 0 18px 0px;
}
ul.sitemap ul li {
  float:none;
  padding:0;
  margin-bottom: 2px;
  width:100%;
  font-weight:normal;
}

ul.sitemap a { color: #828282 }


/*------------------------------------------------------------------------------
>>>> Uniform overwrites (remove the .uniForm class from forms to disregard)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/

/* This is the main unit that contains our form elements */
.uniForm .ctrlHolder { padding: 0; }
.uniForm .buttonHolder { padding-top: 10px; }

.uniForm .inlineLabels label,
.uniForm .inlineLabels .label { 
  width: 40%; 
}
.uniForm .inlineLabels .textInput,
.uniForm .inlineLabels .fileUpload { 
  width: 54%; 
}

.uniForm .inlineLabels .selectInput,
.uniForm .inlineLabels select{ width: 54%;  }

.uniForm .inlineLabels textarea{  width: 54%; font-family: Helvetica, Arial, sans-serif; }

.uniForm .inlineLabels .formHint { 
  margin-top: 0; 
  margin-left: 42%; 
  font-size: .9em; 
  color: #777; 
  position: static; 
}
.uniForm .inlineLabels .multiField { 
  width: 54%; 
  margin: 0 0 .3em 0; 
}

.uniForm label.blockLabel { font-size: 90%; }
.uniForm .inlineLabels .blockLabel {
  width: 45%;
  margin-right: 5%;
/*  border: 1px solid red;*/
}
.uniForm .inlineLabels .expiry label.blockLabel { /* For credit card expiry date #shp */
  width: 46%;
}
.uniForm .inlineLabels .cc label.cardNumber { /* For credit card number #shp */
  width: 65%;
}
.uniForm .inlineLabels .cc label.cvv { /* For credit card expiry date #shp */
  width: 22%;
}
.uniForm .inlineLabels .address .textInput {
  width: 100%;
}
.uniForm .inlineLabels .address label {
  display: none;
}
.uniForm .ctrlHolder { 
  padding: 6px 0; 
  border-bottom: 1px solid #dfdfdf;
}
.uniForm .noBorder {
  border: 0;
}
.uniForm .inlineLabels p.formHint {
  font-size: 80%;
  padding-top: 0.8em;
  line-height: 130%;
}

