/* The default CSS is for mobile devices */

body {
  font-family: 'Lato', sans-serif;
  font-weight: lighter;
  font-size: 10pt;
  color: black;
  background-color: white;
  margin: 0 0 0 0;
  padding: 0;
}

.header {
  margin-top: 1.5em;
  margin-left: 3em;
  margin-bottom: 4em;
}
.header .artist {
  font-size: 20pt;
}
.header .navlinks {
  font-size: 12pt;
}
.header .navlinks ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}
.header .navlinks li {
  float: left;
}
.header .navlinks li a {
  display: block;
  margin-right: 1em;
}

.page-content {
  margin-left: 3em;
}

.captioned-image {
  display: inline-block;
  margin-left: 3em;
  margin-right: 2em;
  margin-bottom: 3.5em;
}
.captioned-image .imagebox {
}
.captioned-image .image {
  max-height: 300px;
  max-width: 350px;
  height: auto;
  width: auto;
}
.captioned-image .caption {
  max-width: 300px;
  margin-top: 3pt;
  font-size: 9pt;
}
.captioned-image .caption .caption-text{
  float: left;
}
.captioned-image .caption .caption-text .title {
  display: inline-block;
}
.captioned-image .caption .caption-text .year {
  display: inline-block;
}
.captioned-image .caption .caption-text .medium {
  display: inline-block;
}
.captioned-image .caption .caption-text .size {
  display: inline-block;
}
.captioned-image .caption .caption-glyph .sold {
  text-align: right;
}

/* This hides the lazyload img elements if scripts are disabled */
img:not([src]) {
  visibility: hidden;
  width: 0;
  height: 0;
}
.section {
  margin-bottom: 2em;
}
.section h2 {
  font-size: 12pt;
  font-weight: bold;
}

.resume {
}
.resume .intro-bio {
  margin-bottom: 2em;
}
.resume .section {
  margin-bottom: 2em;
}
.resume .section .h {
  font-size: 12pt;
  font-weight: bold;
  margin-bottom: 1em;
}
.resume .section .section-row {
  width: 100%;
  margin-bottom: .5em;
}
.resume .section .section-row .c1 {
  float: left;
  width: 5em;
  height: 100%;
  min-width: 5em;
  min-height: 1em;
}
.resume .section .section-row .c2 {
  margin-left: 5em;
}
.resume .publicart .section-row {
  width: 100%;
  height: 3em;
}
.resume .publicart .section-row .c1 {
}
.resume .publicart .section-row .c2 .title {
  font-style: italic;
  display: inline;
}
.resume .publicart .section-row .c2 .what {
  display: inline;
}
.resume .publicart .section-row .c2 .where {
}
.resume .collections .section-row .collection {
  display: inline;
}
.resume .collections .section-row .where {
  display: inline;
}

.contact {
  margin-top: 2em;
}
.contact .name {
  font-weight: bold;
}

a:link {text-decoration: none; color: blue;}
a:visited {text-decoration: none; color: blue;}
a:hover {text-decoration: none; color: blue;}
a:active {text-decoration: none; color: blue;}
a.current-page {
  color: black;
  pointer-events: none;
  cursor: default;
}

.tooltip {position: relative; display: inline-block;}
.tooltip .tooltiptext {visibility: hidden; width: 100%; background-color: white; text-align: left; padding: 0 0 6px 6px; position: absolute; right:0; top:0; z-index: 1;}
.tooltip:hover .tooltiptext {visibility: visible;}
.long {display:none}

/* For larger screen devices */
@media only screen and (min-width: 768px) {
  .header {
    margin-left: 5em;
  }
  .header .artist {
    margin-bottom: .25em;
  }
  .page-content {
    margin-left: 5em;
    margin-right: 5em;
  }
  .captioned-image {
    margin-left: 5em;
    margin-bottom: 4em;
  }
  .captioned-image .image {
    max-height: 350px;
    max-width: 420px;
  }
  .captioned-image .caption {
    max-width: 350px;
  }
}

/* Fixes Firefox anomaly during image load */
@-moz-document url-prefix() {
    img:-moz-loading {
        visibility: hidden;
    }
}

@