/****** FILE: themes/psanz/css/reset.css *****/
/* CSS Document */

body,div,dl,dt,dd,ul,ol,li,h1,h2,h3,h4,h5,h6,pre,form,fieldset,input,textarea,p,blockquote { 
	margin:0;
	padding:0;
}
fieldset,img { 
	border:0;
}
address,caption,cite,code,dfn,em,strong,th,var {
	font-style:normal;
	font-weight:normal;
}
/*
Chris Bolt, commented out ol so that the type attribute can be used in content
ol,*/
ul {
	list-style:none;
}
caption,th {
	text-align:left;
}
h1,h2,h3,h4,h5,h6 {
	font-size:100%;
	font-weight:normal;
}
q:before,q:after {
	content:'';
}
abbr,acronym { border:0;
}
br {font-size: 0}

/****** FILE: themes/psanz/css/base.css *****/
/* CSS Document */

/* Chris Bolt - added a default line-height */
body {
	line-height: 1.35em;	
}
body * {
	line-height: inherit;
}
/* inline styles should inherit their line height */
span, cufon, strong, em, a, b, i {
	line-height: inherit;	
}
/* input elements should not have such a high line-height */
input, select, textarea {
	line-height: normal;	
}
/* End CHris Bolt

/* base.css, part of YUI's CSS Foundation */
h1 {
	/*18px via YUI Fonts CSS foundation*/
	font-size:138.5%;  
}
h2 {
	/*16px via YUI Fonts CSS foundation*/
	font-size:123.1%; 
}
h3 {
	/*14px via YUI Fonts CSS foundation*/
	font-size:108%;  
}
h1,h2,h3 {
	/* top & bottom margin based on font size */
	margin:1em 0;
}
h1,h2,h3,h4,h5,h6,strong {
	/*bringing boldness back to headers and the strong element*/
	font-weight:bold; 
	font-style: inherit;
}
abbr,acronym {
	/*indicating to users that more info is available */
	border-bottom:1px dotted #000;
	cursor:help;
} 
em {
	/*bringing italics back to the em element*/
	font-style:italic;
	font-weight: inherit;
}
blockquote,ul,ol,dl {
	/*giving blockquotes and lists room to breath*/
	margin:1em;
}
ol,ul,dl {
	/*bringing lists on to the page with breathing room */
	margin-left:2em;
}
ol {
	/*giving OL's LIs generated numbers*/
	/*list-style: decimal outside;	*/
}
ul {
	/*giving UL's LIs generated disc markers*/
	list-style: disc outside;
	margin-left: 1.4em;
}
dl dd {
	/*giving UL's LIs generated numbers*/
	margin-left:1em;
}
th,td {
	/*borders and padding to make the table readable*/
	/*border:1px solid #000;
	padding:.5em;*/
}
th {
	/*distinguishing table headers from data cells*/
	font-weight:bold;
	text-align:center;
}
caption {
	/*coordinated marking to match cell's padding*/
	margin-bottom:.5em;
	/*centered so it doesn't blend in to other content*/
	text-align:center;
}
p,fieldset,table {
	/*so things don't run into each other*/
	margin-bottom:1em;
}

/* Chris Bolt, added fix for image positioning */
img, iframe {
	vertical-align: bottom;
}

/* Chris Bolt, added fix for outlines */
a:focus, button:focus { 
    outline: none; 
}

/* add HTML 5 defaults */
video {
	background-color: #000;	
}
textarea,
input,
select {
  margin: 0;
  vertical-align: bottom;
}

/* Chris Bolt, br tags are funny in some browsers ?? */
br {
	font-size: 0;
	line-height: 0;	
}

/* Chris Bolt add support for new HTML 5 elements */
main {display:block;}

/****** FILE: themes/psanz/css/typography.css *****/
/* Font face example */
/*@font-face {
    font-family: 'AlrightSans';
    src: url('/themes/mytheme/webfonts/alrightsans-regular-v3-webfont.eot');
    src: url('/themes/mytheme/webfonts/alrightsans-regular-v3-webfont.eot?#iefix') format('embedded-opentype'),
         url('/themes/mytheme/webfonts/alrightsans-regular-v3-webfont.woff') format('woff'),
         url('/themes/mytheme/webfonts/alrightsans-regular-v3-webfont.ttf') format('truetype'),
         url('/themes/mytheme/webfonts/alrightsans-regular-v3-webfont.svg#alright_sansregular') format('svg');
    font-weight: normal;
    font-style: normal;
}*/

 
/* GENERIC STYLES 
-------------------------------------------- */

.typography {
	font-size: 18px;
}

/* PARAGRAPHS 
-------------------------------------------- */
.typography p { 
 	
}

.typography .small {
	font-size: 0.8em;	
}
.typography .large {
	font-size: 1.5em;	
}

.typography .leadin {
	text-align: center;
	max-width: 	800px;
	margin-left: auto;
	margin-right: auto;
}

.typography .marginbottom {
	margin-bottom: 1em !important
}
.typography .nomargins {
	margin: 0 !important;	
}


/* INLINE STYLES
-------------------------------------------- */
.typography b, .typography strong {
	font-weight: 500;
}

.typography .highlight {
	font-weight: 500;
}

/* TABLES
-------------------------------------------- */
.typography table {
	max-width: 100%;
	margin-top: 1em;
	font-size: inherit;
}
.typography table td, .typography table th {
	vertical-align: top;
	font-size: inherit;
}
.typography table td[valign='bottom'], .typography table th[valign='bottom'] {
	vertical-align: bottom;
}
.typography table td[valign='middle'], .typography table th[valign='middle'] {
	vertical-align: middle;
}
.typography table tr:last-child td p {
	margin-bottom: 0;	
}

/* base styles for tables with borders */
.typography table {
	border-collapse: collapse;	
	margin-top: 0;
}
.typography th, .typography td {
	text-align: left;
	padding: 5px 16px;	
	border: 2px solid #b5b7b9;	
}
.typography th {
	font-weight: 300;
	background: #6d6e70;
	border-color: #6d6e70;	
	color: #fff;
}
.typography thead th {
	font-family: "Roboto Condensed", Roboto, Arial, Helvetica, sans-serif;	
	font-weight: normal;
	font-size: 20px;
	line-height: 38px;
	color: #fff;
	padding: 0 16px;
	border-bottom-width: 0;
}
.typography thead + tbody > tr:first-child td {
	border-top-width: 0;
}


/* QUOTES
-------------------------------------------- */

/* LINKS 
-------------------------------------------- */

.typography a { 
 	text-decoration: none;
	color: #910028;
}
	.typography a:hover { 
 		text-decoration: underline;
	}
	
	.typography a img {
		border: 0;	
	}

.typography h1 a,
.typography h2 a,
.typography h3 a,
.typography h4 a,
.typography h5 a,
.typography h6 a { 
	color: inherit;
}
/* LIST STYLES 
-------------------------------------------- */
.typography ul, .typography ol {
	margin-top: 0;
}
.typography ul ul, .typography ol ol {
	margin-bottom: 0;	
}
.typography ul.contentList > li > ul, .typography ol.contentList > li > ol,
.typography ul.contentList > li > article > ul, .typography ol.contentList > li > article > ol,
.typography ul.contentList > li > div > ul, .typography ol.contentList > li > div > ol {
	margin-bottom: 1em;	
}

/* Make the bullet point on UL same as the AI design */
.typography ul,
.typography ol {
	list-style: none;
	margin-left: 0;
}
.typography ul ul,
.typography ol ul {
	list-style: none;
	padding-left: 1.5em;
	margin-left: 0;
}
.typography li {
	position: relative;
	padding-left: 0.75em;	
}
.typography li:before {
	content: "\2022";
	display: inline-block;
	position: absolute;
	left: 0;
	padding-right: 5px;
}
/* make ol lists the same so that we can position the number nicely when centered */
.typography ol {
	counter-reset: ol;
}
.typography ol ol {
	counter-reset: ol2;	
}
.typography ol ol,
.typography ul ol {
	padding-left: 1.5em;	
}
.typography ol > li {
	padding-left: 1.5em;	
}
.typography ol > li:before {
    counter-increment: ol;
    content: counter(ol)". ";
	width: 1.2em;
	text-align: right;
}
.typography ol ol > li:before {
	counter-increment: ol2;
    content: counter(ol2)". ";
}

/* Centered lists, make sure bullet and number is placed nicely */
.typography .center li,
.typography [style*="text-align: center"] li,
.typography li.center,
.typography li[style*="text-align: center"],
.typography .centeredContent li {
	margin: 0 auto;
}
.typography .center li:before,
.typography [style*="text-align: center"] li:before,
.typography li.center:before,
.typography li[style*="text-align: center"]:before,
.typography .centeredContent li:before {
	position: static;
}

.typography .centeredContent li[style*="text-align: left"]:before, .typography .centeredContent li[style*="text-align: justify"]:before {
	position: absolute;
}


/*
.typography .center ol li,
.typography ol.center li,
.typography ol li.center,
.typography .centeredContent ol li {
	list-style: none;
}
*/
		
/* HEADER STYLES 
-------------------------------------------- */

/* Common Header styles */
.typography h1,
.typography h2,
.typography h3,
.typography h4 {
	font-family: "Roboto Condensed", Roboto, Arial, Helvetica, sans-serif;
	font-weight: normal;
	line-height: 1.3em;
}

/* Individual styles */
.typography h1 {
	font-size: 30px;
	margin: 0 0 1.23em 0;
}
.typography h2 {
	font-size: 24px;
	margin: 0 0 0.87em 0;
}

.typography h3 {
	font-size: 20px;
	margin: 0;
}
.typography h3.barHeading {
	font-size: 20px;
	color: #fff;
	margin: 0 0 18px 0;
	line-height: 26px;
	padding: 6px 16px;
}
.typography p + h3.barHeading {
	margin-top: 28px;
}
.typography h4 {
	font-size: 100%;
	font-weight: 500;
	margin: 0;
}
.typography h5 {
	text-transform: uppercase;
	font-size: 100%;
	font-weight: 500;
	margin: 0;
}
.typography h6 {
	font-size: 100%;
	font-weight: 500;
	margin: 0;
}

/* WYSIWYG EDITOR ALIGNMENT CLASSES 
-------------------------------------------- */
.typography .left {
	text-align: left;
}
.typography .center {
	text-align: center;
}
.typography .right {
	text-align: right;
}

/* IMAGES 
-------------------------------------------- */
.typography img {
   /* border: 5px solid #d7d7d7;*/
   max-width: 100%; /* prevents width being wider than 100% */
   height: auto; /* resets the image height so that it maintains its aspect ratio when width is set */
   /*background: transparent url(../images/ajax-loader.gif) no-repeat center center;*/
   box-sizing: border-box;
}
.typography img.left {
    float: left;
    max-width: 50%;
    margin: 5px 20px 10px 0;
	border: 0;
}
.typography img.right {
    float: right;
    max-width: 50%; /* Responsive width */
    margin: 5px 0 10px 20px;
	border: 0;
}
.typography img.leftAlone {
    /*float: left;
    margin-right: 100%;
    margin-bottom: 10px;*/
    clear: both;
}
.typography img.center {
    float: none;
    margin-left: auto;
    margin-right: auto;
    display: block;
    margin-bottom: 10px;
    clear: both;
}
.typography .captionImage { width: 100%; margin-top: 5px; }
.typography .captionImage img { margin: 0; }
  .typography .captionImage.left {
    float: left;
    margin: 5px 30px 20px 0px;
  }
  .typography .captionImage.right{
    float: right;
    margin: 5px 0 20px 30px;
  }
  .typography .captionImage.left[style],
  .typography .captionImage.right[style] {
    max-width: 50%; /* Overides core width to make responsive */
  }
  .typography .captionImage.left img,
  .typography .captionImage.right img {
    float: none;
    max-width: none;
    width: 100%;
  }
  .typography .captionImage.left img {
    margin-right: -10px;
  }
  .typography .captionImage.right img {
    margin-left: -10px;
  }
  .typography .captionImage.right p {
    text-align: left;
    margin-left: -10px;
  }
.typography .captionImage.leftAlone{
  float:none;
  margin: 0 20px 20px 0px;
}
.typography .captionImage.center{
  margin: 0 auto 20px;
}
.typography .captionImage p {
  clear: both;
  margin: 5px 0;
  font-style: italic;
  color: #888;
}


/* Screen size specific stuff */

/* DESKTOP */
/* Desktop */
@media all and (min-width: 1184px) {
	
}


/* DEVICES */
/* ALL mobile and tablet devices */
@media all and (max-width: 1183px) {
	body, .typography {
		font-size: 16px;	
	}
	
	.typography h2 {
		font-size: 20px;
	}
	.typography h3 {
		font-size: 18px;
	}
	.typography h3.barHeading {
		font-size: 20px;
		margin: 0 0 16px 0;
	}
}

/* TABLET */
/* Tablet */
@media all and (min-width: 800px) and (max-width: 1183px) {
	.typography h1 {
		font-size: 28px;
	}
}

/* PHONE */
/* ALL phone sizes */
@media all and (max-width: 799px) {
	.typography h1 {
		font-size: 24px;
	}
	/*.typography .left, .typography .right {
		text-align: center;	
	}
	.typography li {
		margin: 0 auto;
	}
	.typography li:before {
		position: static;	
	}*/
}
/* Phone horizontal */
@media all and (min-width: 480px) and (max-width: 799px) {
	/* Generic Tables */
	.typography table {
		font-size: 14px;
	}
	.typography th, .typography td, .typography thead th {
		padding: 5px; 
		font-size: inherit;
		line-height: 1.3em;
	}
	
	
}
/* Phone vertical */
@media all and (max-width: 479px) {
	.typography table {
		font-size: 12px;
	}
	.typography th, .typography td, .typography thead th {
		padding: 5px; 
		font-size: inherit;
		line-height: 1.3em;
	}
}

/****** FILE: themes/psanz/css/layout.css *****/
/* CSS Document */
body {
	margin: 0;
	padding: 0;
	
	font-family: Roboto, Arial, Helvetica, sans-serif;
	color: #404041;
	font-size: 18px;
	font-weight: 300;
	line-height: 1.3em;
	
	background: #fff;
	
	-webkit-text-size-adjust: none;
}

/* msc, here so we can over-ride it below */
.tableWrapper {
	max-width: 100%;
	overflow: auto;	
	-webkit-overflow-scrolling: touch;
	margin-bottom: 1em;
	padding-left: 1px;
	padding-right: 1px;
}
.tableWrapper table {
	margin-bottom: 0;	
}
/* content list */
ul.contentList,
.ss-uploadfield ul,
.WidgetHolder ul,
form .field ul {
	list-style: none;
	margin: 0;
	padding: 0;	
}
ul.contentList > li,
.ss-uploadfield ul li,
.WidgetHolder ul li,
form .field ul li {
	list-style: none;
	padding-left: 0;
	width: auto;
}
ul.contentList > li:before,
.ss-uploadfield ul li:before,
.WidgetHolder ul li:before,
form .field ul li:before { 
	display: none;
}
/* misc */
.ErrorPage h1.seo {
	display: block;	
}
.urlSecurity h1.seo {
	display: block;	
}
.clear {
	clear: both;	
}
.seo {
	display: none;	
}
.hidden {
	visibility: hidden;	
}
/* General stuff, up here so can over-ride below */

.bordercolor {
	border-style: solid;	
	border-width: 0;
}

.pageWidth {
	margin: 0 auto;	
	/*transition: max-width .25s ease-out, padding .25s ease-out;*/
}

/* Arrows */
.arrow,
.ss-uploadfield .ss-ui-button,
.ss-uploadfield-item-actions button {
	line-height: 27px;
	display: inline-block;
	position: relative;
}
.arrow.before {
	padding-left: 36px;
}
.arrow.after,
.ss-uploadfield .ss-ui-button,
.ss-uploadfield-item-actions button {
	padding-right: 36px;
}
.arrow:before,
.arrow:after,
.ss-uploadfield .ss-ui-button:before,
.ss-uploadfield .ss-ui-button:after,
.ss-uploadfield-item-actions button:before,
.ss-uploadfield-item-actions button:after {
	content: "";
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	width: 27px;
	height: 27px;
	border-radius: 50%;
}
.arrow:after,
.ss-uploadfield .ss-ui-button:after,
.ss-uploadfield-item-actions button:after {
	background-image: url(../images/sprite.png);
	background-position: center -78px;
	background-size: 50px auto;
	background-repeat: no-repeat;
}
.retina .arrow:after,
.retina .ss-uploadfield .ss-ui-button:after,
.retina .ss-uploadfield-item-actions button:after {
	background-image: url(../images/sprite-retina.png);
}
.arrow.after:before,
.arrow.after:after,
.ss-uploadfield .ss-ui-button:before,
.ss-uploadfield .ss-ui-button:after,
.ss-uploadfield-item-actions button:before,
.ss-uploadfield-item-actions button:after {
	right: 0;
	left: auto;
}

.arrow.below:before,
.arrow.below:after {
	top: auto;
	bottom: 0;
	left: 50%;
	margin-left: -13px;
}

.arrow.prev:after {
	background-position: center -109px;
}
.arrow.up:after {
	background-position: -12px -162px;
}
.arrow.down:after {
	background-position: -12px -136px;
}
.arrow.close:after,
.ss-uploadfield .ss-uploadfield-item-remove.ss-ui-button:after,
.ss-uploadfield-item-actions button:after {
	background-position: -12px -393px;
	background-size: 50px auto !important;
}
.arrow.text,
.ss-uploadfield .ss-ui-button,
.ss-uploadfield-item-actions button {
	font-family: "Roboto Condensed", Roboto, Arial, Helvetica, sans-serif;
	font-weight: normal;
	text-transform: uppercase;	
	padding-left: 38px;
}
.arrow.after.text,
.ss-uploadfield .ss-ui-button,
.ss-uploadfield-item-actions button {
	padding-left: 0;
	padding-right: 38px;
}
.arrow.text.below {
	text-align: center;
	padding: 0 0 31px 0;
}
.arrow.notext {
	overflow: hidden;
	text-indent: -1000px;	
	width: 27px;
	height: 27px;
}

/* Other icon buttons */
.arrow.download:after {
	background-image: url(../images/download.png);
	background-position: center;
	background-size: 15px auto;
}
.retina .arrow.download:after {
	background-image: url(../images/download-retina.png);
}
.arrow.print:after {
	background-image: url(../images/print.png);
	background-position: center;
	background-size: 15px auto;
}
.retina .arrow.print:after {
	background-image: url(../images/print-retina.png);
}

/* Positioning */
.verticalCenter {
	position: relative;
	top: 50%;
	
	-webkit-transform: translateY(-50%);
  	-ms-transform: translateY(-50%);
	transform: translateY(-50%);	
}


/* Header 
-------------------------------------------- */
#HeaderLogo {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 200;
}
#HeaderLogo .pageWidth > div {
	position: relative;
}
#HeaderLogo a {
	position: absolute;
	top: 0;
	right: 0;
}
.mainSiteLinkLogo {
	display: block;
	width: 171px;
	height: 215px;
	margin: 0;
	padding: 0;
	background-image: url(../images/header-logo.png);
	background-position: center 22px;
	background-repeat: no-repeat;
	background-size: 125px auto;
	overflow: hidden;
	text-indent: -1000px;
}
.retina .mainSiteLinkLogo {
	background-image: url(../images/header-logo-retina.png);
}
.mainSiteLinkLogo:before,
.mainSiteLinkLogo:after {
	position: absolute;
	top: 179px;
	left: 72px;
}

/* show / header image */
.noSlides {
	padding-top: 100px;
	padding-bottom: 100px;	
}
#HeaderImages {
	border-bottom-width: 2px;	
}
#HeaderImages .slideshow a {
	display: block;	
}
#HeaderImages .slideshow img {
	width: 100%;
	height: auto;	
}
#HeaderImages .slideshow div:nth-child(n+2) {
	display: none;
}
.cycle-slideshow {
	
}

/* Navigation 
-------------------------------------------- */
/* social links, shared with navigation, footer and blog */
.socialLinks li {
	display: inline-block;	
	margin-right: 4px;
}
.socialLinks li:last-child {
	margin-right: 0;	
}
.socialLinks li a {
	display: inline-block;
	border: 3px solid #fff;
	border-radius: 50%;
	width: 50px;
	height: 50px;
	overflow: hidden;
	text-indent: -1000px;
	text-align: left;		
}
.socialLinks a.facebook:before, .socialLinks a.twitter:before {
	content: "";
	display: block;
	width: 100%;
	height: 100%;
	background-image: url(../images/sprite.png);
	background-position: center 7px;
	background-size: 50px auto;
}
.retina .socialLinks a.facebook:before, .retina .socialLinks a.twitter:before {
	background-image: url(../images/sprite-retina.png);
}
.socialLinks a.twitter:before {
	background-position: center -31px;
}

/* hide initially until JS has set which menu to display */
#Nav .pageWidth {
	display: none;
	position: relative;	
}
/* display once correct menu type has been chosen */
.desktop #Nav .pageWidth, .touch #Nav .pageWidth {
	display: block;	
}
/* for positioning */
#Nav .pageWidth > div {
	position: relative;	
}

#Nav {
	font-family: "Roboto Condensed", Roboto, Arial, Helvetica, sans-serif;
	font-size: 20px;
	line-height: 1.2em;
	
	min-height: 38px; /* needed to make it show intitally */
	
	color: #fff;
	border-top: 2px solid #fff;
	position: static;
	top: -2px;
	left: 0;
	z-index: 10;
	width: 100%;
	
	-webkit-box-shadow: 0px 3px 5px 0px rgba(0,0,0,0.4);
	-moz-box-shadow: 0px 3px 5px 0px rgba(0,0,0,0.4);
	box-shadow: 0px 3px 5px 0px rgba(0,0,0,0.4);
}
#HomeLink {
	position: absolute;
	top: 0;
	left: 0;
	z-index: 1;
}
#HomeLink a {
	display: block;
	height: 38px;
	width: 20px;
	padding: 0;
	text-indent: -1000px;
	background-image: url(../images/sprite.png);
	background-position: center -184px;
	background-size: 50px auto;
	overflow: hidden;
	text-indent: -1000px;
}
.retina #HomeLink a {
	background-image: url(../images/sprite-retina.png);
}
#SearchHeader {
	position: absolute;
	top: 0;
	right: 0;
	padding: 0;
	margin: 0;
	font-size: 16px;
	line-height: 38px;
	font-weight: 300;
	text-transform: uppercase;
	cursor: pointer;
	overflow: hidden;
	height: 38px;
	/*width: 14px;
	text-indent: -1000px;*/
	font-size: 0;
	z-index: 1;
}
#SearchHeader:after {
	content: "";
	display: inline-block;
	vertical-align: bottom;
	height: 38px;
	width: 18px;
	background-image: url(../images/sprite.png);
	background-position: center -214px;
	background-size: 50px auto;
	margin-left: 8px;
}
.retina #SearchHeader:after {
	background-image: url(../images/sprite-retina.png);
}
.searchActive #SearchHeader:after {
	background-position: center -278px;	
}
#Nav a {
	color: #fff;	
	text-decoration: none;
}

#Nav ul {
	margin: 0;
	padding: 0;
	list-style: none;	
}

#Nav ul.level1 {
	/*font-size: 0;	*/
}
#Nav ul.level1 > li {
	/*line-height: 32px;*/
}

#Nav ul.level1 > li > a {
	display: block;
	/*font-size: 24px;*/
	padding: 0 0 0 0;
}
#Nav ul.level1 > li.current > a,
#Nav ul.level1 > li.section > a {
	font-weight: bold;
}

#Nav ul.level2 {
	display: none;
}
#Nav ul.level2 > li > a {
	display: block;
	padding: 2px 0;
}

/* Level 3 */
#Nav ul.level3 > li > a {
	display: block;
	padding-left: 8px;
}
#Nav ul.level3 > li > a:before {
	content: "- ";
	position: relative;
	left: -8px;
}

/* Desktop non-touch device menu */
/* menu */
.desktop #Nav {
	min-height: 38px;
	overflow: visible !important;
}
.desktop #MenuHeader {
	display: none;	
}
.desktop #Nav ul.level1 {
	white-space: nowrap;
	line-height: 1.2em;
}

.desktop #Nav ul.level1 > li {
	display: inline-block;
	position: relative;	
	vertical-align: bottom;
	padding: 0;
	margin: 0 0 0 -5px;
}
.desktop #Nav ul.level1 > li:first-child {
	margin-left: 2em;
}
.desktop #Nav ul.level1 > li > a {
	padding: 0 0.75em;
	height: 38px;
	line-height: 38px;
}
.desktop #Nav ul.level2 {
	position: absolute;
	top: 38px;
	left: 0;	
	white-space: nowrap;
	min-width: 100%;
	padding: 0 0.75em 0.55em 0.75em;
	z-index: 5;
}
.desktop #Nav ul.level2 a.section,
.desktop #Nav ul.level2 a.current{
	font-weight: bold;
}

/* social */
.desktop #NavSocial {
	display: none;	
}


/* Touch Devices Menu (and all non-desktop devices) */
/*.touch #Nav a:hover {
	background-color: #343435;
}
.touch #Nav ul a,
.touch #Nav ul.level1 > li > a {
	margin-left: -10px;	
	margin-right: -10px;	
	padding-left: 10px;
	padding-right: 10px;
}*/
.touch .active #NavWrapper {
	overflow: hidden;
	padding-bottom: 3px;
}
.touch #Nav {
	min-height: 0;
	/*max-height: 100%;
	overflow: auto;*/
	-webkit-overflow-scrolling: touch;
}
.touch #Nav .pageWidth > div {
	cursor: pointer;	
}
.touch #Nav > .pageWidth > div {
	padding-top: 38px;
}
.touch #Nav > .pageWidth > div:before {
	content: "";
	display: block;
	width: 38px;
	height: 38px;
	background: url(../images/sprite.png) center -247px no-repeat;
	background-size: 50px auto;
	position: absolute;
	top: 0;
	left: 50%;
	margin-left: -19px;
}
.retina.touch #Nav > .pageWidth > div:before {
	background-image: url(../images/sprite-retina.png);
}
.touch #Nav.active .pageWidth > div:before {
	background-position: center -278px;	
}
.touch #Nav ul.level1 {
	padding-bottom: 4px;	
}
.touch #Nav ul.level1 > li {
	border-top-width: 2px;
	position: relative;
	cursor: pointer;
	padding-bottom: 11px;
}
.touch #Nav ul.level1 > li:last-child {
	border-bottom-width: 2px;
}
.touch #Nav ul.level1 > li > a {
	padding-top: 11px;
}
.touch #Nav ul.level1 > li.hasChildren:after {
	content: "";
	color: #fff;
	display: block;
	width: 46px;
	height: 46px;
	position: absolute;
	top: 0;
	right: 0;
	z-index: 1;
	background: url(../images/sprite.png) 10px -308px no-repeat;
	background-size: 50px auto;
}
.retina.touch #Nav ul.level1 > li.hasChildren:after {
	background-image: url(../images/sprite-retina.png);
}
.touch #Nav ul.level1 > li.section.hasChildren:after,
.touch #Nav ul.level1 > li.current.hasChildren:after {
	background-position: 10px -345px;
}
/* hide / show sub menu items */
.touch #Nav ul.level1 > li ul.level2 {
	display: none;	
}
.touch #Nav ul.level1 > li.section ul.level2,
.touch #Nav ul.level1 > li.current ul.level2 {
	display: block;	
}
/* social */
.touch #NavSocial {
	text-align: center;
	-ms-transform: scale(0.68,0.68); /* IE 9 */
    -webkit-transform: scale(0.68,0.68); /* Safari */
    transform: scale(0.68,0.68);
}

/* Footer 
-------------------------------------------- */
.gradientGrey, .typography thead th.gradientGrey {
	background: rgb(110,110,110); /* Old browsers */
	background: -moz-linear-gradient(left,  rgba(110,110,110,1) 0%, rgba(60,60,60,1) 100%); /* FF3.6-15 */
	background: -webkit-linear-gradient(left,  rgba(110,110,110,1) 0%,rgba(60,60,60,1) 100%); /* Chrome10-25,Safari5.1-6 */
	background: linear-gradient(to right,  rgba(110,110,110,1) 0%,rgba(60,60,60,1) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */	
	color: #fff;
}
.gradientGrey a,
.typography .gradientGrey a {
	color: #fff;	
}
#Footer {
	font-family: "Roboto Condensed", Roboto, Arial, Helvetica, sans-serif;
	font-weight: normal;
	
	font-size: 18px;
	line-height: 1.3em;
	padding-bottom: 1.5em;
	border-top: 2px solid #6d6e70;
}
#Footer:before {
	content: "";
	display: block;
	height: 2px;
	background: #fff;	
}
#Footer .pageWidth > div {
	position: relative;	
}
#Footer a {
	color: #fff;
	text-decoration: none;	
}
#Footer a:hover {
	text-decoration: underline;	
}
#FooterSocial {
	float: right;
	margin-top: -25px;	
}
#FooterText {
	padding-top: 1.5em;	
}
#FooterLinks li {
	display: inline-block;
	text-transform: uppercase;
}
#FooterLinks li:after {
	content: " | ";
	padding: 0 4px;
}
#FooterLinks li:last-child:after {
	display: none;
}
#Credit {
	font-size: 14px;
	position: absolute;
	right: 0;
	bottom: 0;	
}

/* Footer subsite */
.subsite #Footer .pageWidth > div {
	padding-left: 250px;
}
#FooterLogo {
	position: absolute;	
	top: 33px;
	left: 0;
}
#FooterLogo a {
	position: relative;
	display: block;
	height: 130px;
	width: 220px;
	overflow: hidden;
	text-indent: -1000px;
	background-image: url(../images/footer-logo.png);
	background-position: -20px -20px;
	background-repeat: no-repeat;
	background-size: 222px auto;	
}
.retina #FooterLogo a {
	background-image: url(../images/footer-logo-retina.png);
}
#FooterLogo a:after {
	content: "";
	display: block;
	position: absolute;
	top: 0;
	right: 0;
	width: 1px;
	height: 125px;
	border-right: 2px solid #fff;
}


/* Content  / Layout
-------------------------------------------- */
#Layout {
	/*min-height: 400px;*/
	padding-top: 1.83em;	
	padding-bottom: 2px;
}

/* Common Modules, other modules in their own CSS file */
.modules.noContent {
	/*margin-top: -32px;*/
}
.contentPadding {
	padding: 1.83em 0 2.3em 0;	
}
.contentPadding:after {
	content:'';
	display: block;
	clear: both;	
}
.textModule.noContent .contentPadding {
	padding-bottom: 0;
}
.contentPadding.noPaddingTop {
	padding-top: 0;	
}
/* Text Module */
.centeredContent {
	text-align: center;
	max-width: 	800px;
	margin: 0 auto;
}
.modules .textModule .contentPadding {
	border-top: 2px solid #b5b7b9;	
}

/* Image Module */
.imageRowModule {
	border-top: 2px solid #b5b7b9;	
	border-bottom: 2px solid #b5b7b9;
	margin-bottom: 3.3em;	
}
.typography .imageRowModule img {
	border: 0;
}

/* pagination, used in multiple places */
.pagination {
	border-top: 2px solid #b5b7b9;	
	padding-top: 15px;
	margin-bottom: 1em;	
	font-family: "Roboto Condensed", Roboto, Arial, Helvetica, sans-serif;
	font-weight: normal;
}
.pagination .pages a,
.pagination .pages span {
	display: inline-block;
	vertical-align: bottom;
	margin-right: 5px;
}

/* Notices */
.headerBar {
	color: #fff;
	height: 85px;
	margin-bottom: 32px;
}
.typography .headerBar h2 {
	color: #fff;
	margin: 0;
}
#Notices {
	padding-bottom: 63px;	
}
.contentList li.notice {
	padding-bottom: 10px;	
}
.contentList li.notice:last-child {
	border-bottom-width: 2px;	
}
.notice .more {
	margin-top: 1em;	
}

/* Screen size specific stuff */

/* DESKTOP */
/* Desktop */
@media all and (min-width: 1184px) {
	.pageWidth {
		max-width: 1120px;
		padding: 0 32px;
	}
	/* Notices */
	.notices {
		font-size: 0;	
	}
	.contentList li.notice {
		width: 540px;
		display: inline-block;
		vertical-align: top;
	}
	.contentList li.notice:nth-child(odd) {
		margin-right: 34px;	
	}
	.contentList li.notice:nth-last-child(2) {
		border-bottom-width: 2px;	
	}
}

/* DEVICES */
/* ALL mobile and tablet devices */
@media all and (max-width: 1183px) {
	body {
		font-size: 16px;	
	}
	.pageWidth {
		padding: 0 32px;
	}
	
	/* Navigation */
	.touch .active #NavWrapper {
		padding-bottom: 0;
	}
	#MenuLogo .mainSiteLinkLogo {
		margin: 0 auto;	
	}
	
	/* Footer */
	.subsite #Credit {
		display: none;	
	}
	
	/* Modules */
	.modules {
		margin-top: 32px;
		margin-bottom: 32px;	
	}
	.contentPadding {
		padding: 2em 0 0.8em 0;	
	}
	/* Text Module */
	
	/* Image Module */
	.imageRowModule {
		margin-bottom: 2em;	
	}
	
	/* Notices */
}

/* TABLET */
/* Tablet */
@media all and (min-width: 800px) and (max-width: 1183px) {
	.pageWidth {
		max-width: 736px;	
	}
}


/* PHONE */
/* ALL phone sizes */
@media all and (max-width: 799px) {
	body {
		text-align: center;
	}
	/* Header slides */
	#HeaderImages .slideshow img {
		content:attr(data-msrc url);
	}
	/* Nav */	
	#Nav {
		text-align: left;
	}
	#FooterSocial {
		float: none;	
	}
	#FooterLinks {
		margin-bottom: 2em;	
	}
	#Credit {
		position: static;	
	}
	/* Subsite footer */
	.subsite #Footer .pageWidth > div {
		padding: 0;
	}
	#FooterLogo {
		position: static;
		padding-top: 42px;
		padding-bottom: 4px;
	}
	#FooterLogo a {
		margin: 0 auto;
		background-position: center -21px;
	}
	#FooterLogo a:after {
		display: none;	
	}
	
	/* Modules */
	/* Image Module */
	.imageRowModule {
		margin-bottom: -2px;	
	}
	
}
/* Phone horizontal */
@media all and (min-width: 480px) and (max-width: 799px) {
	.pageWidth {
		padding: 0 28px;
		max-width: 736px;
	}
}
/* Phone vertical */
@media all and (max-width: 479px) {
	.pageWidth {
		padding: 0 15px;
	}
	#FooterLinks li {
		display: block;	
	}
	#FooterLinks li:after {
		display: none;	
	}
}

/* -------------
Put your layout changes above
These options are ONLY for hiding revealing things, only modify the sizes
MUST keep max and min sizes!
*/
/* Big Desktop Size */
@media all and (min-width: 1440px) {
	.bigDesktopHide {
		display: none !important;
	}
	.desktopHide {
		display: none !important;	
	}
}
/* Desktop Size / large tablets */
@media all and (min-width: 1184px) {
	.desktopHide {
		display: none !important;	
	}
}
/* Tablet size / very large phones */
@media all and (min-width: 800px) and (max-width: 1183px) {
	.tabletHide {
		display: none !important;	
	}
}
/* Mobile */
@media all and (max-width: 799px) {
	.mobileHide {
		display: none !important;	
	}
}


/****** FILE: themes/psanz/css/form.css *****/
/** ----------------------------------------------------------
 *
 * This stylesheet includes both generic form styles and 
 *    additional form styles for the User Defined Form Module.
 *
 ** ------------------------------------------------------- */


/* GENERIC FORMS
----------------------------------------------- */

form {
    
}
div.field {
    margin: 0 0 8px 0;
}
fieldset {
    border: 0;
    margin: 0;
    padding: 0;
}
form label {
    margin-bottom: 5px;
}
    form label.left {
        display: block;
    }
	.typography form label.right {
		/*text-align: left;*/
    }

form input.text,
form textarea,
form select {
    width: 100%;
    padding: 5px;
    background-color: #fff;
    border: 2px solid #b5b7b9;
	font-family: inherit;
	font-size: inherit;
	font-weight: inherit;
	box-sizing: border-box;
}
form input.text,
form textarea {
	border-radius: 0;
	-moz-appearance: none;
	-webkit-appearance: none;
	appearance: none;
}

form input.text:focus,
form textarea:focus,
form .textajaxuniquetext:focus,
form select:focus {
    outline:none;
}
form input[disabled], form textarea[disabled] {
    background-color: #f7f7f7;
    border: 1px solid #dad9d9;
}
textarea {
    resize: vertical; /* forces text area to be resized vertically only */
}


/* Radio and Checkbox */
.field .checkbox, .field .radio {
	vertical-align: middle;
	margin-bottom: 3px;
}
    .checkbox label.right,
    .radio label.right {
        display: inline;
    }

/* Chris Bolt, Options set field */
.optionset ul {
	list-style: none;
	margin: 0;
	padding: 0;
}
.optionset li {
	
}
.optionset.stacked li {
	float: none;
	clear: both;
}
.stacked {
	clear: left;
	float: none;
}

/* Messages */
.message {
	display: inline-block;
    background-color: #b5b7b9;
    padding: 5px 10px;
	color: #fff;
}
    .message.good {
        
    }
    .message.bad, .message.required {
        
    }
	

/* This code builds a label on the side form */
/*.middleColumn {
	display: block;
	margin: 0 0 10px 0;
	padding: 0;
	width: 70%;
	float: right;
}
.field {
	clear: both;	
}
label.left {
	width: 30%;
 	float:left; 
	margin: 6px 0 6px 0;
	color: inherit;
}*/
/* End label on the side form */


/* ACTIONS */
.Actions {
	margin-top: 1em;
	text-align: left;
}
    a.btn, .Actions button, .Actions input[type="submit"], .Actions .action, .ss-ui-button, .ss-uploadfield-item-actions button {
		border: 0;
		background: transparent;
		font-size: inherit;
		cursor: pointer;
		margin: 0 0 1em 0;
		
		border-radius: 0;
		-moz-appearance: none;
		-webkit-appearance: none;
		appearance: none;
		
		-webkit-box-shadow: none !important;
		-moz-box-shadow: none !important;
		box-shadow: none !important;
    }
    a.btn:hover, .Actions button:hover, .Actions input[type="submit"]:hover, .Actions .action:hover {
        
	}

/* AREA SPECIFIC */
    /* LOGIN and FORGOT PASSWORD */
    #Remember {
        min-height: 20px;
    }
    #ForgotPassword {
        clear: left;
    }

/* style placeholders */
::-webkit-input-placeholder {
	color: #666;	
    opacity: 1; 
}
:-moz-placeholder {
	color: #666;	
    opacity: 1; 
}
::-moz-placeholder {
	color: #666;	
    opacity: 1; 
}
:-ms-input-placeholder {
	color: #666;	
    opacity: 1; 
}
.labelTextFieldInactive {
	color: #666;	
    opacity: 1; 
}


/* Shop forms ??? */
.typography form h2, .typography form h3, .typography form h4, .typography form h5, .typography form h6 {
	margin-top: 1em;
	margin-bottom: 0.5em;
}
legend, .typography form h3 {
	/*padding: 0;
	font-size: 24px;
	line-height: 27px;
	font-weight: normal;
	margin: 0 0 15px 0;
	color: #f7931e;
	text-transform: uppercase;	*/
	display: block;
	
	font-family: "Roboto Condensed", Roboto, Arial, Helvetica, sans-serif;	
	font-weight: normal;
	color: #000;
	
	margin: 1em 0 8px 0;
	padding: 1em 0 0 0;
	font-size: 20px;
}
.typography form h3:first-child {
	margin-top: 0;	
}


/* SEARCH FORM */
#SearchForm_SearchForm {
	position: relative;
	padding-top: 6px;
}
#SearchForm_SearchForm input.text {
	border: 1px solid #fff;
	background: transparent;
	padding: 0 46px 1px 8px;
	box-sizing: border-box;
	width: 100%;
	float: none;
	color: #fff;
}
#SearchForm_SearchForm div.field {
	vertical-align: middle;
	margin: 0;
	padding: 0;	
}
#SearchForm_SearchForm div.action {
	position: absolute;
	top: 6px;
	right: 0;
	width: 26px;
}
#SearchForm_SearchForm div.action input[type=submit],
#SearchForm_SearchForm div.action button[type=submit] {
	display: inline-block;
	box-sizing: border-box;
	height: 28px;
	width: 18px;
	background-image: url(../images/sprite.png);
	background-position: center -219px;
	background-size: 50px auto;
	background-color: transparent;
	text-indent: -100px;
	overflow: hidden;
	border: 0;
	cursor: pointer;
}
.retina #SearchForm_SearchForm div.action input[type=submit],
.retina #SearchForm_SearchForm div.action button[type=submit] {
	background-image: url(../images/sprite-retina.png);
}

.desktop #SearchForm_SearchForm {
	padding-bottom: 11px;
	position: absolute;
	top: 38px;
	right: 0;
	overflow: hidden;
	display: none;
	height: 0;
	box-sizing: border-box;
}
.desktop #SearchForm_SearchForm input.text {
	width: 274px;
}
.touch #SearchForm_SearchForm {
	margin-bottom: 13px;	
}
.touch #SearchForm_SearchForm input.text {
	width: 100%;
}

/****** FILE: themes/psanz/combined/design-20.css *****/
.gradientVertical,.gradientVertical_before:before,.gradientVertical_after:after,.ss-ui-button:before,.ss-uploadfield-item-actions button:before {background:#e6782d; background:-moz-linear-gradient(top,#e6782d 0%, #e6462d 100%); background:-webkit-linear-gradient(top,#e6782d 0%,#e6462d 100%); background:linear-gradient(to bottom,#e6782d 0%,#e6462d 100%); }.gradientHorizontal,.gradientHorizontal_before:before,.gradientHorizontal_after:after {background:#e6782d; background:-moz-linear-gradient(left,#e6782d 0%, #e6462d 100%); background:-webkit-linear-gradient(left,#e6782d 0%,#e6462d 100%); background:linear-gradient(to right,#e6782d 0%,#e6462d 100%); }.txtcolor,.txtcolor_after:after,.txtcolor_before:before,.ss-ui-button,.ss-uploadfield-item-actions button,.accordion-group h2.accordion-toggle a:before,.accordion-group.current h2.accordion-toggle,.accordion-group.past h2.accordion-toggle {color:#e6782d;}.altcolor,.altcolor_after:after,.altcolor_before:before {color:#006eac;}.bgcolor,.bgcolor_after:after,.bgcolor_before:before,.message.bad, .message.required {background-color:#e6782d;}.bgcolor.dark,.bgcolor_after.dark:after,.bgcolor_before.dark:before {background-color:#e6462d;}.altbgcolor,.altbgcolor_after:after,.altbgcolor_before:before,.message.good {background-color:#006eac;}.bordercolor,.bordercolor_after:after,.bordercolor_before:before {border-color:#e6782d;}.bordercolor.dark,.bordercolor_after.dark:after,.bordercolor_before.dark:before {border-color:#e6462d;}.desktop #NavWrapper ul.level1 {font-size:100%;}.typography a,.typography .WidgetHolder a.current {color:#e6782d}.typography h1,.typography h2,.typography h3 {color:#006eac}.ss-uploadfield-dropzone {background:#e6782d !important;}.typography thead th {background:#e6782d;border-color:#e6782d;}

