@media screen {

/*----- Reset -----*/
body,div,dl,dt,dd,ul,ol,li,h1,h2,h3,h4,h5,h6,pre,form,fieldset,input,textarea,p,blockquote,th,td { 
  margin:0;
  padding:0;
  }
table {
  border-collapse:collapse;
  border-spacing:0;
  }
fieldset,img { 
  border:0;
  }
address,caption,cite,code,dfn,em,strong,th,var {
  font-style:normal;
  font-weight:normal;
  }
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;
  }

/*----- Layout -----*/
div.row {
  float:left;
  width:100%;
  display:block;
  position:relative;
}
div.cell {
  position:relative;
  float:left;
  left:100%;
  }


/* Width classes. 
   For a given cell width, the calculation is: 
   width = (total cell width) * n - (column margins) 
   In this case: (6.25*n - 2.08333)% */
div.width-1  { width:  3.4375% }
div.width-2  { width: 9.875% }
div.width-3  { width: 16.3125% }
div.width-4  { width: 22.75% }
div.width-5  { width: 29.1875% }
div.width-6  { width: 35.625% }
div.width-7  { width: 42.0625% }
div.width-8  { width: 48.5% }
div.width-9  { width: 54.9375% }
div.width-10 { width: 61.375% }
div.width-11 { width: 67.8125% }
div.width-12 { width: 74.25% }
div.width-13 { width: 80.6875% }
div.width-14 { width: 87.125% }
div.width-15 { width: 93.5625% }
div.width-16 { width: 100% }

/* Positioning classes, these are subtracting from a rightmost 
   position, which is why they seem the wrong way around */
/* For a given position, the calculation is:
   -100 + (total cell width * n)
   In this case: margin-left: -100 + (6.25*n) */

div.position-0  { margin-left: -100%   }
div.position-1  { margin-left: -93.5625% }
div.position-2  { margin-left: -87.125%  }
div.position-3  { margin-left: -80.6875% }
div.position-4  { margin-left: -74.25%    }
div.position-5  { margin-left: -67.8125% }
div.position-6  { margin-left: -61.375%  }
div.position-7  { margin-left: -54.9375% }
div.position-8  { margin-left: -48.5%    }
div.position-9  { margin-left: -42.0625% }
div.position-10 { margin-left: -35.625%  }
div.position-11 { margin-left: -29.1875% }
div.position-12 { margin-left: -22.75%   }
div.position-13 { margin-left: -16.3125% }
div.position-14 { margin-left: -9.875%  }
div.position-15 { margin-left:  -3.375% }

/* End of the core Deco Grid System */

/* Convenience classes — ¼, ½, ¾ widths and ¼, ½, ¾ positions. 
   Not strictly necessary. */
div.width-1\3a 2 { width:    48.5% } /* .width-1:2 */
div.width-1\3a 4 { width:    22.75% } /* .width-1:4 */
div.width-3\3a 4 { width:    74.25% } /* .width-3:4 */
div.position-1\3a 4 {margin-left:    -74.25% } /* .position-1:4 */
div.position-1\3a 2 {margin-left:    -48.5% } /* .position-1:2 */
div.position-3\3a 4 {margin-left:    -22.75% } /* .position-3:4 */


/* Special classes for ⅓, ⅔ widths and ⅓, ⅔ positions. 
These do not strictly conform to the grid, but are useful for certain layouts. */
div.width-1\3a 3 { width: 31.333%; } /* .width-1:3 */
div.width-2\3a 3 { width: 65.666%; } /* .width-2:3 */
div.position-1\3a 3 {margin-left: -65.666%;} /* .position-1:3 */
div.position-2\3a 3 {margin-left: -31.233%;} /* .position-2:3 */

/* Full/leftmost are useful synonyms for full width and leftmost positioning */
div.position-leftmost  { margin-left: -100%   }
div.width-full { width: 100% }

/* Define classes for 1/5ths and 1/6ths widths and positions. */
div.width-1\3a 5 { width:    17.6%; } /* .width-1:5 */
div.position-1\3a 5 {margin-left:    -79.4%;} /* .position-1:5 */
div.position-2\3a 5 {margin-left:    -58.8%;} /* .position-2:5 */
div.position-3\3a 5 {margin-left:    -38.2%;} /* .position-3:5 */
div.position-4\3a 5 {margin-left:    -17.6%;} /* .position-4:5 */

div.width-1\3a 6 { width:    14.166%; } /* .width-1:6 */
div.position-1\3a 6 {margin-left:    -82.833%;} /* .position-1:6 */
div.position-5\3a 6 {margin-left:    -14.166%;} /* .position-5:6 */

/*----- General Styles -----*/
html {
  height:100%;
  }
@keyframes fade-in
{
0% {opacity:0;}
100% {opacity:1;}
}

@-moz-keyframes fade-in
{
0% {opacity:0;}
100% {opacity:1;}
}

@-webkit-keyframes fade-in
{
0% {opacity:0;}
100% {opacity:1;}
}

@-o-keyframes fade-in
{
0% {opacity:0;}
100% {opacity:1;}
}

body {
  animation:fade-in 2s;
  -moz-animation:fade-in 2s;
  -webkit-animation:fade-in 2s;
  -o-animation:fade-in 2s;
  background-color:#fff;
  -webkit-box-sizing:border-box;
  -moz-box-sizing:border-box;
  box-sizing:border-box;
  color:#231f20;
  height:100%;
  font:75%/1.5em Arial, Helvetica, sans-serif;
  padding:0 2.5em;
  }
body#content {
  font-size:;  /* fix to edit */
  margin:1em;
  padding:0;
  }
a {
  color:#000;
  text-decoration:none;
  }
#content a:hover {
  text-decoration:underline;
  }
h1 {
  clear:both;
  color:#231f20;
  margin-bottom:0.75em;
  text-transform:capitalize;
  }
.documentFirstHeading {
  text-transform:uppercase;
  }
h2 {
  color:#444;
  margin-top:1em;
  }
h3 {

  }

p {
  margin-bottom:0.5em;
  }
ol {
  list-style-type:decimal;
  margin:0 0 18px 27px;
  }
#content ul {
  list-style-type:disc;
  margin:6px 0 1em 22px;
  }
img {
  vertical-align:text-bottom;
  }
#content img,
.portletStaticText img {
  height:auto;
  max-width:100%;
  width:auto; /*fix to IE8*/
  }
#content li ul,
#content li ol {
  margin-top:0;
  margin-bottom:0;
  }
dl {
  margin:0 0 1em;
  }
dt {
  font-weight:bold;
  }
dd {
  margin:0 0 0.5em 27px;
  }
strong {
  font-weight:bold;
  }
pre {
  background-color:#222;
  color:#fff;
  font-size:12px;
  font-family:monospace;
  margin-bottom:1em;
  padding:1em;
  overflow-x:auto;
  }
  
/*----- Plone Elements -----*/
#content {

  }
#content-core {

  }
.documentDescription {
  line-height:1.3em;
  margin:1.5em 0 3em;
  text-align:justify;
  }
.template-folder_tabular_view .documentFirstHeading,
.template-folder_tabular_view .documentDescription {
  display:none;
  }
.discreet {
  color:#666;
  font-size:85%;
  }
.visualHighlight {
  background-color:#ffb;
  }
.pullquote {
  border-left:6px solid silver;
  clear:right;
  color:#444;
  float:right;
  font-size:1.17em;
  line-height:1.42em;
  margin:0 1em 1.5em 2.5em;
  padding-left:10px;
  width:35%;
  }
.callout {
  background-color:#eee;
  border-left:1em solid #ccc;
  padding:1em;
  }
.hiddenStructure {
  background:none;
  border:0;
  display:block;
  height:0.1em;
  margin:-0.1em 0 0 -0.1em;
  overflow:hidden;
  padding:0;
  position:absolute;
  width:1px;
  }
.visualClear {
  clear:both;
  }
.state-published {
  color:#1f1c1b !important;
  }
.two-columns {
  -moz-column-count:2;
  -webkit-column-count:2;
  column-count:2;
  }
.three-columns {
  -moz-column-count:3;
  -webkit-column-count:3;
  column-count:3;
  }
.two-columns,
.three-columns {
  -moz-column-gap:3.5em;
  -webkit-column-gap:3.5em;
  column-gap:3.5em;
  } 
  
/* Image alignment classes */
.image-left {
  clear:left;
  float:left;
  margin:0.5em 1em 0.5em 0;
  }
.image-right {
  clear:right;
  float:right;
  margin:0.5em 0 0.5em 1em;
  }
.image-inline {
  float:none;
  }
.image-caption {
  margin:0; 
  }
.newsImageContainer {
  float:right;
  margin:0 0 0.5em 1em;
  }
.newsImage {
  
  }
.tileImage {
  border:1px solid #000;
  float:right;
  margin:0 0 0.5em 0.5em;
  }

/*----- Forms -----*/
input {
  font:1em Arial, Helvetica, sans-serif;
  vertical-align:middle;
  }
input[type="checkbox"],
input[type="radio"] {
  margin-right:3px;
  }
textarea {
  
  }
.label {
  font-weight:bold;
  }
label {
  font-weight:bold;
  vertical-align:middle;
  }
fieldset {
  border-top:1px solid #ccc;
  margin:1em 0;
  padding:1em 0;
  }
.field {
  margin:0 0 1em;
  }
div.field.error {
  background-color:#fdc;
  border:1px solid red;
  margin:1em 0;
  padding:0.5em;
  }
.formControls {
  margin:1em 0;
  }
.formControls input {
  margin-right:4px;
  }
.context {
  margin-right:4px;
  padding:0 3px;
  }
.standalone {
  margin-right:4px;
  padding:0 3px;
  }
.destructive {
  margin-right:4px;
  padding:0 3px;
  }

/*----- General -----*/
#visual-portal-wrapper {
  min-height:100%;
  }
#portal-top {
  padding-top:22px;
  }
.fixed-header #portal-header-wrapper {
  background:#fff;
  -webkit-box-sizing:border-box;
  -moz-box-sizing:border-box;
  box-sizing:border-box;
  left:0;
  padding:0 2.5em;
  position:fixed;
  top:0;
  width:100%;
  }
#portal-header {
  font-size:0.833em;
  margin:auto;
  max-width:1280px;
  min-height:115px;
  padding-top:5px;
  position:relative;
  }
#portal-columns-wrapper {
  clear:both;
  margin:0 auto;
  max-width:1280px;
  }
#portal-columns {
  margin-top:51px;
  padding-bottom:3em;
  }
.fixed-header #portal-columns {
/*   margin-top:0; */
  padding-top:120px;
  }

/*----- Viewlets -----*/
/*----- Portal Site Actions -----*/
#portal-siteactions {
  
  }
#portal-siteactions li {
  display:inline;
  }

/*----- Portal Search Box -----*/
#portal-searchbox {
  clear:both;
  float:right;
  height:18px;
  position:relative;
  margin:-1px 3.5em 0 0;
  }
#search_glass {
  background:url(../images/search_glass.gif) no-repeat 0 0;
  border:0;
  cursor:pointer;
  height:0;
  overflow:hidden;
  padding-top:10px;
  position:absolute;
  right:5px;
  top:3px;
  width:10px;
  }
#portal-searchbox > form {
  width:145px;
  }
#portal-searchbox .searchField {
  background:transparent;
  border:1px solid #eaeaea;
  color:#888;
  float:right;
  padding:0.2em 2em 0.2em 0.2em;
  transition:border-color 0.5s linear;
  -moz-transition:border-color 0.5s linear;
  -webkit-transition:border-color 0.5s linear;
  -o-transition:border-color 0.5s linear;
  width:107px;
  }
#portal-searchbox .searchField:focus {
  border-color:#bbb;
  }
.js #portal-searchbox .searchField {
  display:none;
  }
#portal-searchbox .searchButton {
  background:transparent;
  border:0;
  height:0;
  opacity:0;
  overflow:hidden;
  width:0;
  }
.searchSection {
  display:none;
  }
.LSResult {
  position:relative;
  text-transform:uppercase;
  z-index:3;
  }
.livesearchContainer {
  background-color:#fff;
  border-color:#eaeaea;
  border-style:solid;
  border-width:0 0 1px 1px;
  margin:0.4em 0 0;
  padding:0;
  position:absolute;
  right:0;
  top:0;
  width:30em;
  }
#livesearchLegend {
  background-color:#fff;
  border-color:#eaeaea;
  border-style:solid;
  border-width:1px 1px 0;
  display:none;
  line-height:1.18em;
  margin-left:-1px;
  padding:4px 8px;
  position:absolute;
  top:-2em;
  }
.LSIEFix {
  padding:0 8px 10px;
  }
.LSIEFix .LSTable {
  margin-top:-4px;
  }
.LSDescr {
  display:none;
  margin-left:7px;
  }
.LSResult .LSRow a {
  background:transparent;
  display:block;
  padding:0;
  }
.LSResult .LSRow img {
  display: none;
  }
#search-results-bar .actionMenuHeader a {
  color:#1f1c1b;
  }

/*----- Portal Logo -----*/
#portal-logo {
  background:url(../images/logo.jpg) no-repeat 0 0;
  float:left;
  height:92px;
  margin:3px 5em 1em 0;
  width:182px;
  }
#portal-logo:lang(ru) {
  background-position:0 -194px;
  }
#portal-logo:lang(uk) {
  background-position:0 -97px;
  }
  
  
/*----- Portal Globalnav -----*/
#theme-globalnav {
  float:right;
  line-height:1.1em;
  position:relative;
  }
#theme-globalnav li {
  display:inline-block;
  position:relative;
  }
#theme-globalnav > li > a {
  display:none;
  }
#theme-globalnav ul.globalSectionsLevel1 a {
  color:#888;
  display:inline-block;
  margin:0 0.5em;
  padding:2px 2px 3px;
  text-transform:uppercase;
  }
#theme-globalnav ul.globalSectionsLevel1 .selected > a {
  color:#000;
  }
#theme-globalnav ul.globalSectionsLevel1 a:hover {
  color:#000;
  }

/*----- Portal horizontal dropdown menu second level -----*/
#theme-globalnav li ul.globalSectionsLevel2 {
  background:#fff;
  left:0;
  line-height:0.61em;
  opacity:0;
  position:absolute;
  top:100%;
  transition:opacity 0.5s linear;
  -moz-transition:opacity 0.5s linear;
  -webkit-transition:opacity 0.5s linear;
  -o-transition:opacity 0.5s linear;
  -moz-column-gap:1.5em;
  -webkit-column-gap:1.5em;
  column-gap:1.5em;
  padding-top:4px;
  visibility:hidden;
  }
#theme-globalnav ul li ul.globalSectionsLevel2.column2 {
  -moz-column-count:2;
  -webkit-column-count:2;
  column-count:2;
  }
#theme-globalnav ul li ul.globalSectionsLevel2.column3 {
  -moz-column-count:3;
  -webkit-column-count:3;
  column-count:3;
  }
#theme-globalnav ul li ul.globalSectionsLevel2.column4 {
  -moz-column-count:4;
  -webkit-column-count:4;
  column-count:4;
  }
#theme-globalnav ul li.selected ul.globalSectionsLevel2 {
  opacity:1;
  visibility:visible;
  }
#theme-globalnav:hover ul li.selected ul.globalSectionsLevel2 {
  opacity:0;
  visibility:hidden;
  }
#theme-globalnav:hover ul li.selected:hover ul.globalSectionsLevel2,
#theme-globalnav ul li:hover ul.globalSectionsLevel2 {
  opacity:1;
  visibility:visible;
  z-index:1;
  }
#theme-globalnav li ul.globalSectionsLevel2 li {
  display:block;
  }
#theme-globalnav li ul.globalSectionsLevel2 li a {
  display:block;
  white-space:nowrap;
  }

/*----- DropDown -----*/
#theme-globalnav li ul.globalSectionsLevel2 ul {
  display:none;
  }

/*----- Bread Crumbs -----*/
#portal-breadcrumbs {

  }

/*----- Personal Tools -----*/ 
#portal-personaltools-wrapper {
  position:absolute;
  right:0;
  top:25px;
  }
#portal-personaltools dt a {
  color:#75ad0a;
  font-weight:normal;
  margin:0;
  padding:0.4em 0 0 0.8em;
  }
#portal-personaltools dt a:before {
  border-left:2px solid transparent;
  border-right:2px solid transparent;
  border-top:3px solid #75ad0a;
  content:"";
  display:inline-block;
  height:0;
  left:0;
  position:absolute;
  top:12px;
  width:0;
  }
#anon-personalbar a {
  padding:0.4em 0;
  }
#portal-personaltools dd {
  background-color:#fff;
  margin:0;
  padding:0 5px 5px;
  right:0;
  text-align:right;
  top:100%;
  }
#portal-personaltools.activated .actionMenuContent {
  display:block;
  }
#portal-personaltools li a {
  color:#888;
  margin:0;
  }
#portal-personaltools li a:hover {
  background-color:transparent;
  text-decoration:underline;
  }

/*----- Language Selector -----*/
#choose-language {
  background:#fff;
  min-width:22px;
  padding:0.3em 0 0.5em 0.5em;
  position:absolute;
  right:0;
  top:0;
  z-index:3;
  }
#choose-language li a {
  color:#9f9894;
  text-transform:uppercase;
  }
#choose-language li:hover > a {
  color:#000;
  }
#portal-languageselector {
  display:none;
  }
#choose-language:hover #portal-languageselector {
  display:block;
  }

/*----- Carousel -----*/
.carousel {
  clear:both;
  }
.carousel-banners,
.carousel-slider,
.carousel-banner {
  max-width:100% !important;
  }
.carousel-image img {
  height:auto;
  width:100%;
  }

/*----- Footer -----*/

#portal-footer-wrapper {
  margin-top:-20px;
  }
#portal-footer {
  color:#9f9894;
  font-size:0.833em;
  line-height:1.5em;
  margin:auto;
  max-width:1280px;
  }

/*----- Portlets -----*/
.portlet {
  margin:0 0 10px;  
  }
.portletHeader {

  }
.portletHeader a {

  }
.portletItem {
  margin:0;
  padding:8px 10px;
  }
.portletFooter {
  margin:0;
  padding:6px 10px;
  }
.portletFooter a {

  }
.portletFooter a:hover {

  }
.tile {
  display:block;
  }
.portletItemDetails {
  display:block;
  }

/*----- Manage Portlets -----*/
.managePortletsLink {
  text-align:center;
  }
.managePortletsFallback {
  display:block;
  text-align:center;
  }
.managedPortletActions {
  float:right;
  }
.managedPortletActions a {
  margin:0 2px;
  }
  
/*----- Portlet Navigation -----*/
.portletNavigationTree {

  }
.portletNavigationTree .portletItem {
  padding:0;
  }
.portletNavigationTree .navTreeLevel0 ul {
  padding-left:2em;
  }
.portletItem .navTreeItem a {
  background:transparent;
  color:#1f1c1b;
  display:block;
  padding:0.1em 0;
  text-transform:uppercase;
  }
.portletItem .navTreeItem a img {
  display:none;
  }
.portletItem .navTreeItem a:hover,
.navTreeCurrentNode {
  color:#ff5a00 !important;
  }

/*----- Portlet News -----*/
.portletNews {

  }

/*----- Portlet Collection -----*/
.portletCollection  {

  }

/*----- Portlet Search -----*/


/*----- Portlet Static Text -----*/
div.portletStaticText {
  margin:0 0 10px;
  }
.portletStaticText ul {
  list-style-type:disc;
  margin:6px 0 1em 15px;
  }
.portletStaticText ol {
  margin:6px 0 1em 19px;
  }

/*----- Portlet Calendar -----*/
.ploneCalendar {
  width:100%;
  } 
.ploneCalendar th,
.ploneCalendar td {
  text-align:center;
  }
.ploneCalendar .event {

  }
.ploneCalendar .todayevent {

  }
.ploneCalendar .todaynoevent {

  }

/*----- Document Actions -----*/
.documentActions {
  font-size:0.92em;
  text-align:right;
  }
#content .documentActions ul {
  list-style-type:none;
  }
.documentActions li {
  display:inline;
  }
.documentActions a {
  padding:0 5px;
  text-decoration:none;
  }

/*----- Events -----*/
.eventDetails {
  clear:right;
  float:right;
  margin:0 0 0.5em 1em;
  }
#content .eventDetails {
  border:1px solid #ccc;
  margin-top:1em;
  width:22em;
  }
#content .eventDetails h2 {
  background-color:#ddd;
  font-size:100%;
  padding:0.5em 0.5em 0.5em 1em;
  }
#content .eventDetails .eventDetail {
  clear:both;
  }
#content .eventDetails .eventDetail h3,
#content .eventDetails .eventDetail div {
  padding:2%;
  }
#content .eventDetails .eventDetail h3 {
  float:left;
  font-size:100%;
  text-align:right;
  width:37%;
  }
#content .eventDetails .eventDetail div {
  float:left;
  width:55%;
  } 

/*----- Search Results -----*/
.highlightedSearchTerm {
  background-color:#ff9;
  padding:0 2px;
  }

/*----- Sculpture -----*/
.photoAlbum .photoAlbumSculpture {
  padding-bottom:1.85em;
  position:relative;
  }
#content .photoAlbumSculpture > a:hover {
  text-decoration:none;
  }
.template-sculpture_view .photoAlbumEntry {
  margin-bottom:0.5em;
  }
.photoAlbum .tooltipTitle,
.photoAlbum  .tooltipDate {
  bottom:0;
  color:#828282;
  font-size:0.833em;
  line-height:1.2em;
  opacity:0;
  position:absolute;
  left:0;
  text-transform:uppercase;
  transition:opacity 0.5s linear;
  -moz-transition:opacity 0.5s linear;
  -webkit-transition:opacity 0.5s linear;
  -o-transition:opacity 0.5s linear;
  visibility:hidden;
  }
.photoAlbum .tooltipTitle {
  bottom:10px;
  padding-top:2px;
  white-space:nowrap;
  }
.photoAlbum .photoAlbumSculpture:hover .tooltipTitle,
.photoAlbum .photoAlbumSculpture:hover .tooltipDate {
  opacity:1;
  visibility:visible;
  }
.template-sculpture_view #content-core label {
  display:none;
  }
.sculptureDetails {
  margin:1.2em 0;
  }
.photoAlbumEntryBody {
  line-height:1.3em;
  margin:1em 0 2.5em;
  }
.photoAlbumEntryMetaPrice {
  white-space:nowrap;
  }
.tooltip {
  display:none;
  }
.photoAlbumPreview img {
  margin-bottom:0.5em;
  }
.tooltipData .photoAlbumEntryTitle {
  font-weight:bold;
  }
.sculptureDetails .photoAlbumEntryDate,
.sculptureDetails .photoAlbumEntryMaterial,
.sculptureDetails .photoAlbumEntrySize,
.sculptureDetails .photoAlbumEntryCatalogueNumber,
.sculptureDetails .photoAlbumEntryLocation,
.sculptureDetails .photoAlbumEntryPrice,
.photoAlbumEntryMetaDate,
.photoAlbumEntryMetaMaterial,
.photoAlbumEntryMetaSize,
.photoAlbumEntryMetaCataloguenumber,
.photoAlbumEntryMetaSculpture_location,
.photoAlbumEntryMetaPrice,
.photoAlbumEntryDate span,
.photoAlbumEntryMaterial span,
.photoAlbumEntrySize span,
.photoAlbumEntryCatalogueNumber span,
.photoAlbumEntryLocation span,
.photoAlbumEntryPrice span {
  white-space:nowrap;
  }

/*----- Pretty Photo  -----*/
div.pp_overlay {
  background:#fff;
  opacity:0.95 !important;
  }
div.ppt,
.pp_top,
.pp_bottom {
  display:none !important;
  }
.sculptureMetaBlock {
  color:#888;
  line-height:1.2em;
  margin-top:1.5em;
  white-space:nowrap;
  }
.pp_details {
  color:#888;
  }
.sculptureMetaBlock .title-wrapper {
  margin-right:1.5em;
  white-space:nowrap;
  }
.sculptureMetaBlock .photoAlbumSculptureTitle {
  text-transform:uppercase;
  }
.sculptureMetaBlock .photoAlbumEntrySculptureTitle {
  border-bottom:1px solid #eceaea;
  color:#888;
  text-transform:uppercase;
  }
.sculptureMetaBlock .photoAlbumEntrySculptureTitle:hover {
  color:#000;
  }
.pp_content_container .pp_left,
.pp_content_container .pp_right {
  background:transparent !important;
  }
.pp_details {
  margin:0 !important;
  }
.pp_nav .currentTextHolder {
  font:1em/1.5em Arial,Helvetica,sans-serif !important;
  left:0 !important;
  padding:0 !important;
  letter-spacing:2px;
  }
a.pp_previous,
a.pp_next {
  background:url(../images/sprite.png) no-repeat 100% -1000px !important;
  }
a.pp_previous {
  margin-left:-30px;
  }
a.pp_next {
  margin-right:-30px;
  }
.pp_previous:after,
.pp_next:after {
  background:url(../images/sprite.png) no-repeat 100% -36px;
  content:"";
  height:20px;
  position:absolute;
  right:-33px;
  top:48%;
  width:30px;
  }
.pp_previous:after {
  background-position:0 -13px;
  left:-30px;
  right:auto;
  }
#pp_close_wrapper {
  height:30px;
  position:absolute;
  right:-12px;
  top:0;
  width:30px;
  z-index:10000;
  }
div.pp_default  a.pp_close {
  background:url(../images/sprite.png) no-repeat 100% -59px;
  height:15px;
  }
div.pp_default  a.pp_close:hover {
  opacity:1;
  }
a.pp_expand,
a.pp_contract {
  display:none !important;
  left:-16px;
  top:0;
  }
div.pp_default .pp_expand {
  background:url(../images/sprite.png) no-repeat 0 -75px;
  height:18px;
  }
div.pp_default .pp_expand:hover {
  background:url(../images/sprite.png) no-repeat 0 -75px;
  }
div.pp_default .pp_contract {
  background:url(../images/sprite.png) no-repeat 0 -93px;
  height:18px;
  }
div.pp_default .pp_contract:hover {
  background:url(../images/sprite.png) no-repeat 0 -93px;
  }






/*----- Editing -----*/
.fieldRequired {
  color:#fff;
  }
.fieldRequired:before {
  color:#f00;
  content:"■ ";
  }
.formPanel {
  padding:1em 2px;
  }
.formPanel textarea {
  width:100%;
  }
#title {
  font-size:2em;
  width:100%;
  }
#description {
  font-family:Arial, Helvetica, sans-serif;
  width:100%;
  }
.suppressVisualEditor {
  margin:0 !important;
  }
.fieldUploadFile {
  display:none;
  }
.formHelp {
  color:#aaa;
  font-weight:normal;
  margin:0 0 0.2em 0;
  }
.documentByLine {
  color:#76797c;
  font-size:85%;
  font-weight:normal;
  margin-bottom:0.5em;
  }
#category.documentByLine {
  display:none;
  }
ul.configlets,
#content ul.configlets {
  list-style:none;
  margin:1em 0;
  }
ul.configlets li {
  margin-bottom:1em;
  }
ul.configlets li a {
  text-decoration:none;
  }
#content ul.configletDetails {
  margin:0 1em 1em 4em;
  list-style:none;
  }
#content ul.configletDetails li {
  margin-bottom:1em;
  display:inline;
  }
#content ul.configletDetails li.configletDescription {
  display:block;
  color:#76797c;
  margin:0;
  }
#kss-spinner {
  background-position:50% 50%;
  display:none;
  height:20px;
  left:50%;
  margin:-10px 0 0 -10px;
  position:fixed;
  top:50%;
  width:20px;
  }
.formlibInlineEditable,
.inlineEditable {
  display:block;
  padding:1px;
  }
body.kssActive .inlineEditable:hover,
body.kssActive .formlibInlineEditable:hover {
  border:1px solid #ddd;
  border-color:#666 #ddd #ddd #666;
  cursor:text;
  padding:0;
  }
body.kssActive .inlineEditable a:hover,
body.kssActive .formlibInlineEditable a:hover {
  cursor:pointer;
  }
body.kssActive .formlibInlineForm:hover,
body.kssActive .formlibInlineForm a:hover {
  border:0;
  cursor:default;
  padding:1px;
  }
.inlineForm .formHelp,
.inlineForm .fieldRequired,
.inlineForm label {
  display:none;
  }
/* In inline selection widgets the label *must* be displayed, as
   otherwise you only see identical radio buttons without text. */
.inlineForm .ArchetypesSelectionWidget label {
  display: inline;
  }
.inlineForm #archetypes-fieldname-title input,
.inlineForm #archetypes-fieldname-title {
  font-size: 100%;
  }
/* Workaround for abnormally large buttons in the h1 tag */
h1 div.formControls input {
  font-size:55% !important;
  }

/*----- Edit Bar -----*/
#edit-bar {
  background-color:#75ad0a;
  min-height:1.73em;
  margin:0 0 1em;
  padding:3px;
  }
#content-views {
  background-color:#75ad0a;
  float:left;
  }
#content-views li {
  display:inline;
  }
#content-views a {
  color:#fff;
  display:inline-block;
  line-height:1.73em;
  padding:0 0.75em;
  text-decoration:none;
  }
#content-views li.selected a,
#content-views li a:hover {
  background:#fff;
  color:#000;
  }
#content-views li.selected a {
  font-weight:bold;
  }

/*----- Content pulldowns -----*/
#contentActionMenus {
  background-color:#75ad0a;
  float:right;
  margin-right:-3px;
  padding-right:3px;
  }
#contentActionMenus > li {
  display:inline;
  }
.actionMenu {
  float:right;
  margin:0 0 0 0.5em;
  position:relative;
  white-space:nowrap;
  }
.actionMenu dt {
  font-weight:normal;
  }
.actionMenu a {
  color:#fff;
  display:block;
  line-height:1.73em;
  text-decoration:none;
  }
.actionMenu dt a {
  padding:0 3px;  
  }
.arrowDownAlternative {
  font-size:80%;
  }
.actionMenu dd {
  background-color:#75ad0a;
  right:-3px;
  margin:0;
  min-width:100%;
  padding:0 3px 3px;
  position:absolute;
  width:auto;
  z-index:5;
  }
.actionMenu.deactivated dd {
  display:none;
  }
.actionMenu dd a:hover,
.actionMenu dd .actionMenuSelected {
  background-color:#fff;
  color:#666;
  }
.subMenuTitle {
  display:block;
  padding:0 3px;
  }

/*----- Form Tabs -----*/
#content .formTabs {
  background-color:#ddd;
  margin:0;
  padding:3px 3px 0;
  }
#content .formTab {
  display:inline;
  margin-right:0.25em;
  }
#content li.formTab a {
  display:inline-block;
  line-height:2em;
  padding:0 0.75em;
  text-decoration:none;
  }
#content li.formTab a.selected,
#content li.formTab a:hover {
  background:#fff;
  color:#000;
  }
#content li.formTab a.notify {
  background-color:red;
  color:#fff;
  }
#content li.formTab a.required span:after,
#content-core li.formTab a.required span:after,
div.field span.required:after {
  color:#f00;
  content:" ■";
  }
#content fieldset.formPanel {
  border:none;
}
#content fieldset.formPanel.hidden {
  display:none;
}
#content div.formControls input.hidden {
  display:none;
  }

/*----- Status messages -----*/
.portalMessage {
  background-color:#ffffe3;
  border:1px solid #996;
  clear:both;
  margin:1em 0;
  }
.portalMessage dl {
  margin:0;
  }
.portalMessage a {
  color:#000;
  }
.portalMessage dt {
  background-color:#996;
  color:#fff;
  font-weight:bold;
  float:left;
  line-height:1.25em;
  margin:0 0.5em 0 0;
  max-width:30%;
  padding:0.5em 0.75em;
  }
.portalMessage dd {
  line-height:1.25em;
  margin:0;
  padding:0.5em 0.5em;
  }
dl.warning {
  border-color:#d80;
  }
dl.warning dt {
  background-color:#d80;
  }
dl.warning dd {
  background-color: #fd7;
  }
dl.error {
  border-color:#d00;
  }
dl.error dt {
  background-color:#d00;
  }
dl.error dd {
  background-color:#fdc;
  }

/*----- Overlays -----*/
.overlay {
  display:none;
  height:auto;
  margin:1em;
  width:auto;
  }
.overlay-iframe,
.overlay-ajax {
  min-height:100px;
  width:600px;
  z-index:99;
  }
.overlay-iframe {
  height:60%;
  }
.overlaybg div.close,
.overlay div.close {
  background:url(../images/pb_close.png) no-repeat 0 0;
  cursor:pointer;
  height:30px;
  left:-14px;
  position:absolute;
  top:-14px;
  width:30px;
  }
.pb-ajax {
  overflow-y:auto;
  }
.pb-ajax,
.pb-image {
  background-color:#fff;
  border:1px solid #999;
  white-space:normal;
  box-shadow:0 0 3em 0.5em #666;
  -moz-box-shadow:0 0 3em 0.5em #666;
  -webkit-box-shadow:0 0 3em #666;
  }
.pb-ajax > div {
  padding:1em;
  }
.pb-ajax .documentActions {
  display:none;
  }
div.overlay div.close span {
  display:block;
  height:1px;
  margin:-1px 0 0 -1px;
  overflow:hidden;
  padding:0;
  width:1px;
  }
.overlay textarea {
  width:100%;
  }
.overlay .link-parent { display: none; }
.overlay #createGroup legend { display: none; }
.overlay #createGroup fieldset { border: none; }
.overlay p {
  margin-bottom:1em;
  }
.overlay label {
  margin-bottom:0.25em;
  }
.overlay a:hover {
  color:#75ad0a;
  }
.overlay a.selected {
  color: #000000;
  }
.overlay .formTab {
  margin-right:1em;
  font-weight: bold;
  }
.overlay .formTab.lastFormTab {
  margin-right:0em;
  }
.overlay .formControls a {
  display: block;
  margin: 0.75em;
  }

/*----- Login form -----*/
#fieldset-openid-login input,
#login-form input {
  font-size:150%;
  }
body.template-register #content input,
body.template-new-user #content input {
  font-size:150%;
  width:inherit;
  }
#fieldset-openid-login label,
#login-form label {
  display:inline-block;
  margin-right:0.5em;
  padding-top:0.2em;
  width:10em;
  }
#fieldset-openid-login .formControls,
#login-form .formControls {
  padding-left:10.7em;
  }

/*----- Content History -----*/
div.historyRecord {
  margin-bottom:1em;
  }
div.historyTools ul {
  float:right;
  margin:0.5em 1em;
  }
div.historyTools ul li {
  display:inline;
  padding:0 0.015em;
  }
div.historyTools form {
  display:inline;
  }
.historyByLine {
  background:#ddd;
  padding:0.5em;
  }
div.historyLinks {
  clear:right;
  float:right;
  margin:0.5em 1em 0 0;
  }
div.historyComment {
  border:1px solid #ddd;
  padding:0.5em 1em;
  }
div.historyComment p {
  margin:0;
  padding-top:1px;
  }
a.historyComparePrevious {
  border-top:1px dotted #ccc;
  display:block;
  margin-top:3em;
  text-align:center;
  }
a.historyComparePrevious span {
  background-color:white;
  position:relative;
  top:-0.75em;
  padding:0 0.5em;
  }

/*----- Data tables -----*/
table.listing,
table.plain {
  border-spacing:0;
  border-collapse:collapse;
  margin:0 0 0.75em;
  width:100%;
  }
table.invisible td,
table.invisible th,
table.plain td,
table.plain th,
table.listing td,
table.listing th {
  padding:0.5em 1em;
  vertical-align:top;
  }
table.plain th,
table.plain td {
  border:1px solid #ddd;
  }
table.listing td.listingCheckbox,
table.listing th.listingCheckbox {
  text-align:center;
  }
table.listing {
  border-left:1px solid #ddd;
  border-bottom:1px solid #ddd;
  }
table.listing .top {
  border-left:1px solid #ddd;
  border-top:1px solid #ddd;
  border-right:1px solid #ddd;
  }
table.listing th {
  background:#ddd;
  border:0.1em solid #e7e7e7;
  border-style:solid solid none;
  color:#666;
  text-align:left;
  }
table.listing tr.odd th {
  border:0.1em solid #fff;
  border-style:solid solid none none;
  }
table.listing tbody th {
  font-weight:bold;
  }
table.listing tbody tr {
  text-align:left;
  }
table.listing tbody tr.odd {
  background:#eee;
  }
table.listing tbody tr td {
  background:transparent;
  }
table.listing tbody tr.odd td {
  background:#eee;
  }
table.listing td {
  border-right:1px solid #ddd;
  }
table.listing a {
  border:none;
  display:inline-block;
  }
table.listing td.draggable {
  background:#ddd !important;
  border-bottom:1px solid white;
  padding:0.4em 0.4em 0 0.5em;
  text-shadow:#fff 1px 1px 1px;
  }

/* Vertical table data listings */
table.vertical th {
  text-align:right;
  }
table.vertical td {
  border-top:0.1em solid #e7e7e7;
  padding:0.5em;
  }

/* Grid table listings */
table.grid td,
table.grid th {
  border:1px solid #e7e7e7;
  padding:0.5em;
  }
.dragindicator {
  outline:2px solid #ffd700;
  }
#foldercontents-order-column {
  padding:0;
  }
  
/* Listing Bar */
.listingBar {
  margin:1em 0;
  text-align:center;
  }
.listingBar .previous {
  float:left;
  }
.listingBar .next {
  float:right;
  }
.listingBar .previous {
  display:inline-block;
  }
.listingBar a,
.listingBar .current {
  display:inline-block;
  padding:0.25em 0.5em;
  }

/*---------- DASHBOARD ----------*/
#dashboard-portlets1,
#dashboard-portlets2,
#dashboard-portlets3,
#dashboard-portlets4 {
  float:left;
  margin-right:1.3%;
  width:24%;
  }
#dashboard-portlets4 {
  margin-right:0;
  }

/*---------- ALBUM ----------*/
.photoAlbumEntry {
  display:inline-block;
  margin:0.5em 1em 0 0;
  }
.photoAlbumEntryTitle {
  display:none;
  }
.tooltipData .photoAlbumEntryTitle {
  display:block;
  }
/*.photoAlbumVisual {
  background: #f9f9f9;
  border-bottom: 1px solid #ededed;
  -webkit-border-radius: 12px;
  border-radius: 12px;
  display: inline-block;
  margin: 0 3px 6px 6px;
  padding: 0 0 1px;
  vertical-align: top;
  }
.photoAlbumShadow {
  background: #f3f3f3;
  border-bottom: 1px solid #e3e3e3;
  -webkit-border-radius: 10px;
  border-radius: 10px;
  padding: 0 0 1px;
  }
.photoAlbumEntry {
  background: #ededed;
  border-color: #d3d3d3 #e8e8e8;
  -webkit-border-radius: 8px;
  border-radius: 8px;
  border-style: solid;
  border-width: 0 1px 1px 0;
  display: inline-block;
  font-size: 0.92em;
  line-height: 1.36em;
  margin: 0 3px 6px 6px;
  vertical-align: top;
  width: 144px;
  }
.photoAlbumFolder {
  margin: 0;
  vertical-align: top;
  }
.photoAlbumEntry a {
  -webkit-border-radius: 8px;
  border-radius: 8px;
  border-color: #f8f8f8;
  border-style: solid;
  border-width: 0 1px 1px 0;
  display: block;
  height: 156px;
  overflow: hidden;
  padding: 8px 7px 8px 6px;
  position: relative;
  text-decoration: none;
  }
.photoAlbumEntry a:after {
  background-color:rgba(241, 241, 241, 0.4);
  bottom:0;
  content:"";
  height:8px;
  position:absolute;
  width:131px;
  }
.photoAlbumEntryWrapper {
  display:block;
  text-align:center;
  }
.photoAlbumEntry img {
  border:2px solid #fff;
  }
.photoAlbumEntryTitle {
  color:#757373;
  display:block;
  padding:4px 3px 0;
  width:126px;
  }
.photoAlbumEntry a:hover {
  overflow:visible;
  }
.photoAlbumEntry a:hover .photoAlbumEntryTitle  {
  background-color:rgb(241,241,241);
  background-color:rgba(241,241,241,0.8);
  bottom:0;
  min-height:50%;
  position:absolute;
  }*/

/*----- Accessibility elements, applied by JS -----*/
body.largeText {
  font-size:81%;
  }
body.smallText {
  font-size:56%;
  }

/*---------- COMMENTING ----------*/
.discussion .hide {
  display:none;
  }
.discussion {
  clear:both;
  font-size:1.09em;
  }
.comment {
  padding:0 0 9px;
  }
.commentImage {
  float:left;
  padding:5px 7px;
  }
.discussion .documentByLine {
  background-color:#f1f1f1;
  margin:0;
  padding:5px;
  }
.commentBody {
  border-color:#d9d9d9 #f1f1f1 #f1f1f1;
  border-style:solid;
  border-width:1px;
  clear:both;
  margin:0 0 5px;
  padding:5px;
  overflow:auto;
  }
.commentActions {
  text-align:right;
  }
.reply-to-comment-button {
  margin-left:11px;
  }
.reply {
  background-color:#f1f1f1;
  clear:both;
  font-size:1.09em;
  margin:35px 0 0;
  padding:5px 7px;
  position:relative;
  }
.reply fieldset {
  margin:0;
  }
.reply legend {
  font-weight:bold;
  position:absolute;
  top:-28px;
  }
.reply p {
  color:#76797c;
  font-size:0.92em;
  }
.reply textarea {
  min-height:50px;
  width:100%;
  }

/*----- Collapsible -----*/
dl.collapsible {
  border: 0.1em solid #8cacbb;
  margin: 1em 0;
  padding: 0;
  }
dl.collapsible dt.collapsibleHeader {
  display: block;
  float: left;
  background: White;
  line-height: 1.2em;
  vertical-align: middle;
  font-size: 90%;
  position: relative;
  top: -0.6em;
  width: auto;
  margin: 0 0 -0.6em 1em;
  padding: 0 0.5em;
  }
dl.collapsible dd.collapsibleContent {
  margin: 0;
  padding: 0 1em 0.4em;
  clear: left;
  }

/* for IE the following isn't needed, that's why the css2 selector is used */
dl.collapsible dd.collapsibleContent > dl {
  margin: 0;
  padding: 0;
  }
dl.expandedInlineCollapsible dt.collapsibleHeader,
dl.expandedBlockCollapsible dt.collapsibleHeader {
  background: url(../images/treeExpanded.png) no-repeat 0.5em 50% #fff;
  cursor: pointer;
  padding: 0 0.5em 0 2em;
  }
dl.collapsedBlockCollapsible {
  border: none;
  height: 1em;
  width: auto;
  }
dl.collapsedInlineCollapsible dt.collapsibleHeader,
dl.collapsedBlockCollapsible dt.collapsibleHeader {
  float: none;
  position: relative;
  margin: 0 0 0 1em;
  padding: 0 0.5em 0 2em;
  line-height: 1.2em;
  cursor: pointer;
  background: White url(../images/treeCollapsed.png) no-repeat 0.5em 50%;
  }
dl.collapsedInlineCollapsible dd.collapsibleContent,
dl.collapsedBlockCollapsible dd.collapsibleContent {
  display: none;
  }
dl.collapsedInlineCollapsible {
  border: 0;
  height: 1em;
  width: auto;
  display: inline;
  }
dl.collapsedInlineCollapsible dt.collapsibleHeader {
  position: static;
  float: none;
  margin: 0;
  padding: 0 0 0 2em;
  line-height: 1em;
  cursor: pointer;
  display: inline;
  }
.collapsible .collapser.collapsed:after {
  content:" ▶"
  }
.collapsible .collapser.expanded:after {
  content:" ▼"
  }
  
/*---------- CONTENT TYPE ICONS ----------*/
.icons-on .contenttype-folder {
  background:url(../images/icons-sprite.png) no-repeat 0 -1598px;
  display:inline-block;
  padding-left:19px;
  }
.icons-on .contenttype-document {
  background:url(../images/icons-sprite.png) no-repeat 0 -1799px;
  display:inline-block;
  padding-left:19px;
  }
.icons-on .contenttype-news-item {
  background:url(../images/icons-sprite.png) no-repeat 0 -1999px;
  display:inline-block;
  padding-left:19px;
  }
.icons-on .contenttype-event {
  background:url(../images/icons-sprite.png) no-repeat 0 -2199px;
  display:inline-block;
  padding-left:19px;
  }
.icons-on .contenttype-topic {
  background:url(../images/icons-sprite.png) no-repeat 0 -2400px;
  display:inline-block;
  padding-left:19px;
  }
.icons-on .contenttype-image {
  background:url(../images/icons-sprite.png) no-repeat 0 -2599px;
  display:inline-block;
  padding-left:19px;
  }
.icons-on .contenttype-link {
  background:url(../images/icons-sprite.png) no-repeat 0 -2995px;
  display:inline-block;
  padding-left:19px;
  }
.icons-on img[alt='File'] {
  margin-right:3px;
  }
/* Add new */
#plone-contentmenu-factories li a {
  background:url(../images/icons-sprite.png) no-repeat 1px -1199px;
  display:block;
  padding-left:17px;
  }
#plone-contentmenu-factories li a:hover {
  background-color:#fff;
  background-position:1px -2799px;
  }
#plone-contentmenu-factories li .contenttype-folder {
  background-position:1px 2px;
  }
#plone-contentmenu-factories li .contenttype-folder:hover {
  background-position:2px -1598px;
  }
#plone-contentmenu-factories li .contenttype-document {
  background-position:1px -199px;
  }
#plone-contentmenu-factories li .contenttype-document:hover {
  background-position:2px -1799px;
  }
#plone-contentmenu-factories li .contenttype-news-item {
  background-position:1px -399px;
  }
#plone-contentmenu-factories li .contenttype-news-item:hover {
  background-position:2px -1999px;
  }
#plone-contentmenu-factories li .contenttype-event {
  background-position:1px -599px;
  }
#plone-contentmenu-factories li .contenttype-event:hover {
  background-position:2px -2199px;
  }
#plone-contentmenu-factories li .contenttype-topic {
  background-position:1px -800px;
  }
#plone-contentmenu-factories li .contenttype-topic:hover {
  background-position:2px -2400px;
  }
#plone-contentmenu-factories li .contenttype-image {
  background-position:1px -999px;
  }
#plone-contentmenu-factories li .contenttype-image:hover {
  background-position:2px -2599px;
  }
#plone-contentmenu-factories li .contenttype-file {
  background-position:1px -1199px;
  }
#plone-contentmenu-factories li .contenttype-file:hover {
  background-position:2px -2799px;
  }
#plone-contentmenu-factories li .contenttype-link {
  background-position:1px -1395px;
  }
#plone-contentmenu-factories li .contenttype-link:hover {
  background-position:2px -2995px;
  }
#plone-contentmenu-factories #settings {
  background-image:none;
  padding:0;
  }

}

@media only screen and (max-width: 1024px) {
body {
  padding:0 1em;
  }
.fixed-header #portal-header-wrapper {
  padding:0 1em;
  }
#portal-logo {
  margin-right:0;
  }
#portal-searchbox .searchField {
  width:77px;
  }
#portal-searchbox > form {
  width:105px;
  }
}

 /*----- Smaller than standard 960 (devices and browsers) -----*/
@media only screen and (max-width: 959px) {

}

/*----- Tablet Portrait size to standard 960 (devices and browsers) -----*/
@media only screen and (min-width: 768px) and (max-width: 959px) {

}

/*----- All Mobile Sizes (devices and browser) -----*/
@media only screen and (max-width: 767px) {
body {
  padding:0 1em 0.5;
  }
div.row {
  float: none;
  width: auto;
  }
div.cell {
  float: none;
  left: auto;
  margin: 0 !important;
  width: auto !important;
  }
#portal-top {
  padding-top:0;
  }
.fixed-header #portal-header-wrapper {
  left:auto;
  padding:0;
  position:relative;
  top:0;
  width:100%;
  }
.fixed-header #portal-columns {
  padding-top:0;
  }
#portal-columns {
  margin-top:1em;
  }
#portal-header {
  text-align:center;
  }
#portal-searchbox {
  margin:6em auto 1em;
  }
#search_glass {
  background-position:4px 6px;
  padding-top:20px;
  right:0;
  top:0;
  width:20px;
  }
#portal-searchbox .searchField {
  padding:0.5em 2em 0.5em 0.5em;
  }
.livesearchContainer {
  text-align:left;
  }
#portal-languageselector {
  top:-27px;
  }
#choose-language li a {
  display:inline-block;
  padding:0.4em;
  }
#portal-personaltools-wrapper {
  position:absolute;
  right:45px;
  top:0;
  }
#portal-personaltools dd {
  left:0;
  right:auto;
  text-align:left;
  }
#theme-globalnav {
  display:none;
  }
#theme-globalnav > li {
  float:left;
  }
.globalSectionsLevel1 ul {
  display:none;
  }
#portal-globalnav-mobile {
  display:block;
  margin:auto;
  padding:0.3em;
  text-transform:uppercase;
  }
#edit-bar {
  clear:both;
  }
#portal-column-one,
#portal-column-two {
  margin-top:1em !important;
  }
/*a.pp_expand,
a.pp_contract {
  display:block !important;
  }*/
.two-columns,
.three-columns {
  -moz-column-gap:1.5em;
  -webkit-column-gap:1.5em;
  column-gap:1.5em;
  }
.sculptureMetaBlock {
  white-space:normal;
  }

}

@media only screen and (max-width: 650px) {
body {
  padding-top:1em;
  }
  
}


/*----- Mobile Portrait Size to Mobile Landscape Size (devices and browsers) ------*/
@media only screen and (max-width: 479px) and (orientation: portrait) {
.two-columns {
  -moz-column-count:1;
  -webkit-column-count:1;
  column-count:1;
  }
.three-columns {
  -moz-column-count:1;
  -webkit-column-count:1;
  column-count:1;
  }
.two-columns,
.three-columns {
  -moz-column-gap:0;
  -webkit-column-gap:0;
  column-gap:0;
  }

}

@media print {

body {
  font-family:"Lucida Grande", Verdana, Lucida, Helvetica, Arial, sans-serif;
  font-size:11pt;
  }
h1, h2, h3, h4, h5, h6 {
  font-weight:bold;
  line-height:125%;
  page-break-inside:avoid;
  page-break-after:avoid;
  }
a {
  border-bottom:0.5pt solid #000;
  color:#000;
  text-decoration:none;
  }
.documentDescription {
  font-weight:bold;
  }
pre {
  border:1pt dotted #000;
  font-size:8pt;
  overflow:auto;
  padding:1em;
  white-space:pre;
  }
table.listing,
table.listing td {
  border:1pt solid #000;
  border-collapse:collapse;
  }
table.listing td,
table.listing th {
  padding:6px;
  }
div.pageBreak {
  page-break-before:always;
  }
#content dt {
  margin:1em 0 0.625em;
  }
#content p, #content table {
  margin-bottom:0.625em;
  margin-top:0.625em;
  }
#content .documentDescription, #content #description {
  margin:0.5em 0 1.31em;
  }
div.top,
#portal-logo,
#portal-siteactions,
.hiddenStructure,
#portal-searchbox,
#theme-globalnav,
#portal-personaltools,
#portal-breadcrumbs,
#edit-bar,
.carousel,
#portlets-in-header,
#portal-column-one,
#portlets-above,
#portlets-below,
#portal-column-two,
#portlets-footer,
#portal-languageselector,
.contentViews,
.contentActions,
.help,
.legend,
.portalMessage,
.documentActions,
.netscape4,
#viewlet-below-content .reply,
#viewlet-below-content .discussion,
#portal-footer,
#portal-colophon,
.skipnav,
#kss-spinner,
#review-history,
#content-history,
.listingBar,
.link-presentation,
input.standalone,
.overlay,
.managePortletsFallback,
.close,
.link-parent,
.draggingHook,
#foldercontents-order-column,
input.context,
.visualNoPrint {
  display:none;
  }
.image-left {
  border:0.4pt solid #000;
  clear:left;
  float:left;
  margin:0.5em 1em 0.5em 0;
  }
.image-inline {
  float:none;
  }
.image-right {
  border:0.4pt solid #000;
  clear:right;
  float:right;
  margin:0.5em;
  }
dd.image-caption {
  margin:0;
  padding:0;
  text-align:left;
  }
dl.captioned {
  padding:0.8em;
  }
.newsImageContainer {
  float:right;
  margin:0 0 0.5em 1em;
  width:16em;
  }
.tileImage {
  border:0.4pt solid #000;
  float:right;
  margin:0 0 0.5em 0.5em;
  }
  
}