


/*

Variables
==========

Variables to customize the look and feel of Loc.gov

*/
/*

##Headings

Headings examples ranging from H1-H4.

```
<h1>Heading 1</h1>
<h2>Heading 2</h2>
<h3>Heading 3</h3>
<h4>Heading 4</h4>
```

*/
/*

##Colors

*/
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
nav,
section,
summary {
  display: block;
}
audio,
canvas,
video {
  display: inline-block;
}
audio:not([controls]) {
  display: none;
  height: 0;
}
[hidden] {
  display: none;
}
html {
  font-family: sans-serif;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
}
body {
  margin: 0;
}
a:focus {
  outline: thin dotted;
}
a:active,
a:hover {
  outline: 0;
}
h1 {
  font-size: 2em;
  margin: 0.67em 0;
}
abbr[title] {
  border-bottom: 1px dotted;
}
b,
strong {
  font-weight: bold;
}
dfn {
  font-style: italic;
}
hr {
  -moz-box-sizing: content-box;
  box-sizing: content-box;
  height: 0;
  color: #ccc;
  background-color: #ccc;
  margin-bottom: 20px;
}
mark {
  background: #ff0;
  color: #000;
}
code,
kbd,
pre,
samp {
  font-family: monospace, serif;
  font-size: 1em;
}
pre {
  white-space: pre-wrap;
}
q {
  quotes: "\201C" "\201D" "\2018" "\2019";
}
small {
  font-size: 80%;
}
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}
sup {
  top: -0.5em;
}
sub {
  bottom: -0.25em;
}
img {
  border: 0;
}
svg:not(:root) {
  overflow: hidden;
}
figure {
  margin: 0;
}
fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em;
}
legend {
  border: 0;
  padding: 0;
}
button,
input,
select,
textarea {
  font-family: inherit;
  font-size: 100%;
  margin: 0;
}
button,
input {
  line-height: normal;
}
button,
select {
  text-transform: none;
}
button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
  -webkit-appearance: button;
  cursor: pointer;
}
button[disabled],
html input[disabled] {
  cursor: default;
}
input[type="checkbox"],
input[type="radio"] {
  box-sizing: border-box;
  padding: 0;
}
input[type="search"] {
  -webkit-appearance: textfield;
  -moz-box-sizing: content-box;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
}
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}
button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0;
}
textarea {
  overflow: auto;
  vertical-align: top;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
/*

#Typography
 
##Base

Refer to _config.less for body font style.

```
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Phasellus ultrices, risus facilisis vestibulum viverra, lectus leo pharetra tortor, sed congue nisl libero ut turpis. Integer consequat, purus non pharetra suscipit, metus lorem egestas urna, eu mattis est augue a justo. Vestibulum eget justo rhoncus, commodo magna id, egestas purus. In porta erat erat, nec dapibus neque vestibulum ullamcorper. Pellentesque dapibus, nibh eget aliquet maximus, magna mauris lacinia lorem, vel consectetur orci ipsum vel tellus. Vestibulum sodales bibendum ornare. Phasellus odio velit, malesuada non sollicitudin vitae, fringilla vel justo.</p>
```

*/
body {
  font-family: Arial, Helvetica, sans_serif;
  font-size: 12px;
  color: #333333;
  line-height: 18px;
  background-color: #efefef;
}
::-moz-selection {
  background: #003366;
  color: #ffffff;
  text-shadow: none;
}
::selection {
  background: #003366;
  color: #ffffff;
  text-shadow: none;
}
/*
 
##Links

```
<a href="">Default Link</a>
<a href="" class="white">Link white text</a>
<a href="" class="gray">Link gray text</a>
```

*/
a:link {
  color: #0078ae;
  text-decoration: none;
}
a:visited {
  color: #0078ae;
  text-decoration: none;
}
a:hover,
a:focus {
  color: #00202f;
  text-decoration: underline;
}
a:hover,
a:active {
  outline: 0;
}
.white:link {
  color: #ffffff;
  text-decoration: none;
}
.white:visited {
  color: #cccccc;
  text-decoration: none;
}
.white:hover,
.white:focus {
  color: #bfbfbf;
  text-decoration: underline;
}
.gray {
  color: #666666;
  text-decoration: none;
}
.gray:visited {
  color: #666666;
  text-decoration: none;
}
.gray:hover,
.gray:focus {
  color: #00202f;
  text-decoration: underline;
}
/*
 
##Message options

```
<h2 class="mute"><code>mute</code> is used to suppress headings or other html elements to base font style</h2>
<p class="text-warning"><code>text-warning</code> indicates caution should be taken with this action</p>
<p class="text-alert"><code>text-alert</code> is for informational alert messages, Loc.gov homepage for example</p>
<p class="text-error"><code>text-error</code> indicates error or potentially negative action</p>
<p class="text-info"><code>text-info</code> is for informational alert messages</p>
<p class="text-success"><code>text-success</code> indicates a successful or positive action</p>
<p class="back-to-top"><code>back-to-top</code> is no longer used on Loc.gov, is replaced with persistent back to top link</p>
```

*/
.mute {
  font-size: 12px;
  line-height: 18px;
  font-weight: normal;
  color: #666666;
}
.text-warning {
  color: #ff6600;
}
.text-alert {
  color: #990000;
}
.text-alert a {
  color: #990000 !important;
  text-decoration: underline !important;
}
.text-error {
  color: #dd4b39;
}
.text-info {
  color: #0066cc;
}
.text-success {
  color: #008000;
}
.back-to-top {
  text-align: right;
}
/*
 
##Headings

```
<h1>h1 heading</h1>
<h2>h2 heading</h2>
<h3>h3 heading</h3>
<h4>h4 heading</h4>
<h5>h5 heading</h5>
<h6>h6 heading</h6>
```

*/
h1 {
  font-family: Arial, Helvetica, sans_serif;
  color: #666666;
}
h2 {
  font-family: Arial, Helvetica, sans_serif;
  color: #333333;
}
h3 {
  font-family: Arial, Helvetica, sans_serif;
  color: #333333;
}
h4 {
  font-family: Arial, Helvetica, sans_serif;
  color: #333333;
}
h5 {
  font-family: Arial, Helvetica, sans_serif;
  color: #333333;
}
h6 {
  font-family: Arial, Helvetica, sans_serif;
  color: #333333;
}
/*
 
##Headings - Alternative style

```
<h1 class="alt">h1 heading</h1>
<h2 class="alt">h2 heading</h2>
<h3 class="alt">h3 heading</h3>
<h4 class="alt">h4 heading</h4>
<h5 class="alt">h5 heading</h5>
<h6 class="alt">h6 heading</h6>
```

*/
h1.alt {
  font-family: Georgia, "Times New Roman", Times, serif;
  color: #333333;
}
h2.alt {
  font-family: Georgia, "Times New Roman", Times, serif;
  color: #333333;
}
h3.alt {
  font-family: Georgia, "Times New Roman", Times, serif;
  color: #333333;
}
h4.alt {
  font-family: Georgia, "Times New Roman", Times, serif;
  color: #333333;
}
h5.alt {
  font-family: Georgia, "Times New Roman", Times, serif;
  color: #333333;
}
h6.alt {
  font-family: Georgia, "Times New Roman", Times, serif;
  color: #333333;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  line-height: 18px;
  margin: 0 0 4.5px;
}
/*
 
##small in headings

```
<h1>h1 heading <small>iamsmall</small></h1>
<h1>h1 heading <small class="block">iamsmall</small></h1>
<h2>h2 heading <small>iamsmall</small></h2>
<h2>h2 heading <small class="block">iamsmall</small></h2>
<h3>h3 heading <small>iamsmall</small></h3>
<h3>h3 heading <small class="block">iamsmall</small></h3>
```

*/
.small-in-heading {
  font-weight: normal;
  line-height: 1;
  color: #666;
  font-size: 12px;
}
@media screen and (max-width: 480px) {
  .small-in-heading {
    display: block;
    margin-top: 5px;
  }
}
.small-in-heading.block {
  display: block;
  margin-top: 5px;
}
h1,
.mimic-h1 {
  font-size: 24px;
  line-height: 27px;
  font-weight: bold;
}
h1 small,
.mimic-h1 small {
  font-weight: normal;
  line-height: 1;
  color: #666;
  font-size: 12px;
}
@media screen and (max-width: 480px) {
  h1 small,
  .mimic-h1 small {
    display: block;
    margin-top: 5px;
  }
}
h1 small.block,
.mimic-h1 small.block {
  display: block;
  margin-top: 5px;
}
h1 small span,
.mimic-h1 small span {
  font-weight: bold;
}
h1 small.match-header,
.mimic-h1 small.match-header {
  font-size: 24px;
  line-height: 27px;
}
h2,
.mimic-h2 {
  font-size: 18px;
  line-height: 22.5px;
  font-weight: bold;
}
h2 small,
.mimic-h2 small {
  font-weight: normal;
  line-height: 1;
  color: #666;
  font-size: 12px;
}
@media screen and (max-width: 480px) {
  h2 small,
  .mimic-h2 small {
    display: block;
    margin-top: 5px;
  }
}
h2 small.block,
.mimic-h2 small.block {
  display: block;
  margin-top: 5px;
}
h3,
.mimic-h3 {
  font-size: 13.5px;
  line-height: 18.900000000000002px;
  font-weight: bold;
}
h3 small,
.mimic-h3 small {
  font-weight: normal;
  line-height: 1;
  color: #666;
  font-size: 12px;
}
@media screen and (max-width: 480px) {
  h3 small,
  .mimic-h3 small {
    display: block;
    margin-top: 5px;
  }
}
h3 small.block,
.mimic-h3 small.block {
  display: block;
  margin-top: 5px;
}
h4,
.mimic-h4 {
  font-size: 12px;
  line-height: 18px;
  font-weight: bold;
}
h4 small,
.mimic-h4 small {
  font-weight: normal;
  line-height: 1;
  color: #666;
  font-size: 12px;
}
@media screen and (max-width: 480px) {
  h4 small,
  .mimic-h4 small {
    display: block;
    margin-top: 5px;
  }
}
h4 small.block,
.mimic-h4 small.block {
  display: block;
  margin-top: 5px;
}
h5,
.mimic-h5 {
  font-size: 10.2px;
  line-height: 13.5px;
  font-weight: bold;
}
h6,
.mimic-h6 {
  font-size: 10.2px;
  line-height: 13.5px;
  font-weight: normal;
}
/*
 
##small in headings

```
<h1>h1 heading <small>iamsmall</small></h1>
<h1>h1 heading <small class="block">iamsmall</small></h1>
<h2>h2 heading <small>iamsmall</small></h2>
<h2>h2 heading <small class="block">iamsmall</small></h2>
<h3>h3 heading <small>iamsmall</small></h3>
<h3>h3 heading <small class="block">iamsmall</small></h3>
```

*/
.bordered-bottom {
  border-bottom: 1px solid #cccccc;
  padding-bottom: 5px;
}
.base-font-size {
  font-size: 12px;
  line-height: 18px;
  margin-bottom: 0;
  font-weight: normal;
}
.base-font-size-smaller {
  font-size: 10.8px;
  line-height: 15.299999999999999px;
  margin-bottom: 0;
  font-weight: normal;
}
.page-head {
  margin-bottom: 18px;
}
hr {
  width: 100%;
  height: 1px;
  background-color: #cccccc;
  color: #cccccc;
  border: none;
  margin: 0 0 18px;
}
section,
article,
hgroup,
nav,
figure,
aside,
table,
form,
pre,
p,
dl,
ul,
ol {
  margin: 0 0 18px;
}
.footnote li:target {
  background-color: #ddedfd;
}
ul,
ol {
  padding: 0;
  margin-left: 25px;
}
ul ul,
ul ol,
ol ol,
ol ul {
  margin-bottom: 0;
}
.plain {
  margin-left: 0;
  list-style: none;
}
.plain .plain {
  margin-left: 25px;
  list-style: none;
}
.inside {
  margin-left: 0;
  list-style-position: inside;
}
.inline {
  margin-left: 0;
  list-style: none;
}
.inline > li {
  display: inline-block;
  *display: inline;
  padding-right: 15px;
  *zoom: 1;
  line-height: 12px;
  margin: 4px 0;
}
.inline > li:first-child {
  padding-left: 0;
  border-left: 0;
}
.dividers > li {
  border-right: 1px solid #ccc;
  padding-right: 12px;
  margin-right: 8px;
}
.dividers > li:last-child {
  padding-right: 0;
  margin-right: 0;
  border-right: 0;
}
.plain-2-column-list {
  margin-left: 0;
  list-style: none;
  -moz-column-count: 2;
  -moz-column-gap: 20px;
  -webkit-column-count: 2;
  -webkit-column-gap: 20px;
}
@media screen and (max-width: 650px) {
  .plain-2-column-list {
    -moz-column-count: 1;
    -moz-column-gap: 0;
    -webkit-column-count: 1;
    -webkit-column-gap: 0;
  }
}
.margin-bottom-onehalf-li > li {
  margin-bottom: 27px;
}
.margin-bottom-quad-li > li {
  margin-bottom: 18px;
}
.margin-bottom-double-li > li {
  margin-bottom: 9px;
}
.margin-bottom-single-li > li {
  margin-bottom: 4.5px;
}
dl > dt {
  font-weight: bold;
  margin-bottom: 2.25px;
}
dl dd {
  margin: 0 0 2.25px 25px;
}
dl.alt > dt {
  margin: 18px 0 2.25px;
}
dl.alt > dt:first-child {
  margin-top: 0;
}
dl.alt > dd {
  margin: 0 0 2.25px;
}
dl.inline dt {
  font-weight: bold;
  display: inline;
  margin: 0 5px 0 0;
  float: left;
  clear: left;
}
dl.inline dd {
  margin: 0 0 4.5px;
  clear: right;
}
blockquote {
  margin: 0 0 0 25px;
}
blockquote.plain {
  margin: 0;
}
pre.prenowrap {
  white-space: pre;
}
abbr {
  cursor: help;
}
.margin-bottom-single {
  margin-bottom: 4.5px;
}
.margin-bottom-double {
  margin-bottom: 9px;
}
.margin-bottom-triple {
  margin-bottom: 13.5px;
}
.margin-bottom-quad {
  margin-bottom: 18px;
}
.margin-bottom-onehalf {
  margin-bottom: 27px;
}
.margin-bottom-half {
  margin-bottom: 2.25px;
}
.margin-bottom-none {
  margin-bottom: 0 !important;
}
figure .default img {
  display: block;
  max-width: 100%;
  height: auto;
  width: auto\9;
  /* ie8 */

}
figure .default figcaption {
  margin-top: 5px;
  color: #999999;
  caption-side: bottom;
}
figure.right-align {
  float: right;
  margin: 0 0 15px 15px;
}
figure.right-align img {
  display: block;
  max-width: 100%;
  height: auto;
  width: auto\9;
  /* ie8 */

}
figure.right-align figcaption {
  margin-top: 5px;
  color: #999999;
  caption-side: bottom;
}
figure.center-align {
  float: none;
  margin: 0 auto 15px;
}
figure.center-align img {
  display: block;
  max-width: 100%;
  height: auto;
  width: auto\9;
  /* ie8 */

}
figure.center-align figcaption {
  margin-top: 5px;
  color: #999999;
  caption-side: bottom;
}
figure.center-align img {
  margin: 0 auto;
}
figure.left-align {
  float: left;
  margin: 0 15px 15px 0;
}
figure.left-align img {
  display: block;
  max-width: 100%;
  height: auto;
  width: auto\9;
  /* ie8 */

}
figure.left-align figcaption {
  margin-top: 5px;
  color: #999999;
  caption-side: bottom;
}
figure.width-30 {
  width: 30%;
}
figure.width-40 {
  width: 40%;
}
figure.width-50 {
  width: 50%;
}
figure.width-60 {
  width: 60%;
}
figure.width-70 {
  width: 70%;
}
.banner-with-caption a {
  text-decoration: none;
}
.banner-with-caption img {
  display: block;
  max-width: 100%;
  height: auto;
  width: auto\9;
  /* ie8 */

}
.banner-with-caption figcaption {
  color: #888888;
  margin: 3px 0 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  text-align: right;
}
.container {
  width: 980px;
  background-color: transparent;
  margin: 0 auto;
  clear: both;
}
.branding {
  display: none;
  position: absolute;
  top: -50px;
}
.wrapper {
  border: 1px solid #cccccc;
  -webkit-box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
  -moz-box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
  background-color: #ffffff;
  border-top: 0;
}
.content {
  -ms-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  background-color: transparent;
  clear: both;
  padding: 0 2.127659574468085% 2.127659574468085%;
}
.table-row {
  margin: 0;
  padding: 0;
  display: table;
  table-layout: fixed;
  width: 100%;
}
.table-row .table-cell {
  display: table-cell;
  text-align: left;
  vertical-align: top;
}
.image-box .image-box-image {
  background-color: #efefef;
  margin-bottom: 18px;
  margin-bottom: 0 !important;
}
.image-box .image-box-image img {
  display: block;
  max-width: 100%;
  height: auto;
  width: auto\9;
  /* ie8 */

}
.image-box .image-box-content {
  background-color: #efefef;
  margin-bottom: 18px;
}
.thumb-list {
  padding: 0;
  margin-left: 0;
  list-style: none;
}
.thumb-list > li {
  clear: both;
  overflow: hidden;
  padding: 0;
  margin: 0;
}
.thumb-list > li img {
  height: auto;
  float: left;
  display: block;
  margin-bottom: 18px;
  width: 30%;
}
.thumb-list > li > .info {
  padding-left: 33%;
}
.thumb-list.thumb-list-width-20 > li img {
  width: 20%;
}
.thumb-list.thumb-list-width-20 > li > .info {
  padding-left: 22%;
}
.thumb-list-with-gallery {
  padding: 0;
  margin-left: 0;
  list-style: none;
}
.thumb-list-with-gallery > li {
  clear: both;
  overflow: hidden;
  padding: 0;
  margin-bottom: 18px;
}
.thumb-list-with-gallery > li img {
  height: auto;
  float: left;
  display: block;
  margin-bottom: 18px;
  width: 30%;
}
.thumb-list-with-gallery > li > .info {
  padding-left: 33%;
}
.gallery1 {
  clear: both;
  -ms-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  text-align: left;
  font-size: 0px;
  letter-spacing: 0px;
  word-spacing: 0px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.gallery1 > li {
  padding: 0;
  list-style: none;
  width: 100%;
  margin-left: 2.127659574468085%;
  display: inline-block;
  vertical-align: top;
  font-size: 12px;
  letter-spacing: normal;
  word-spacing: normal;
}
.gallery1 img {
  max-width: 100%;
  height: auto;
  width: auto\9;
  display: block;
  margin-bottom: 5px;
}
.gallery2 {
  clear: both;
  -ms-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  text-align: left;
  font-size: 0px;
  letter-spacing: 0px;
  word-spacing: 0px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.gallery2 > li {
  padding: 0;
  list-style: none;
  width: 100%;
  margin-left: 2.127659574468085%;
  display: inline-block;
  vertical-align: top;
  font-size: 12px;
  letter-spacing: normal;
  word-spacing: normal;
}
.gallery2 img {
  max-width: 100%;
  height: auto;
  width: auto\9;
  display: block;
  margin-bottom: 5px;
}
.gallery2 > li {
  width: 48.93617021276596%;
  margin-left: 2.127659574468085%;
}
.gallery2 > li:nth-child(2n+1) {
  margin-left: 0;
}
.gallery3 {
  clear: both;
  -ms-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  text-align: left;
  font-size: 0px;
  letter-spacing: 0px;
  word-spacing: 0px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.gallery3 > li {
  padding: 0;
  list-style: none;
  width: 100%;
  margin-left: 2.127659574468085%;
  display: inline-block;
  vertical-align: top;
  font-size: 12px;
  letter-spacing: normal;
  word-spacing: normal;
}
.gallery3 img {
  max-width: 100%;
  height: auto;
  width: auto\9;
  display: block;
  margin-bottom: 5px;
}
.gallery3 > li {
  width: 31.914893617021278%;
  margin-left: 2.127659574468085%;
}
.gallery3 > li:nth-child(3n+1) {
  margin-left: 0;
}
.gallery4 {
  clear: both;
  -ms-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  text-align: left;
  font-size: 0px;
  letter-spacing: 0px;
  word-spacing: 0px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.gallery4 > li {
  padding: 0;
  list-style: none;
  width: 100%;
  margin-left: 2.127659574468085%;
  display: inline-block;
  vertical-align: top;
  font-size: 12px;
  letter-spacing: normal;
  word-spacing: normal;
}
.gallery4 img {
  max-width: 100%;
  height: auto;
  width: auto\9;
  display: block;
  margin-bottom: 5px;
}
.gallery4 > li {
  width: 23.404255319148938%;
  margin-left: 2.127659574468085%;
}
.gallery4 > li:nth-child(4n+1) {
  margin-left: 0;
}
@media screen and (max-width: 480px) {
  .gallery4 > li {
    width: 31.914893617021278%;
    margin-left: 2.127659574468085%;
  }
  .gallery4 > li:nth-child(4n+1) {
    margin-left: 2.127659574468085%;
  }
  .gallery4 > li:nth-child(3n+1) {
    margin-left: 0;
  }
}
.row {
  clear: both;
  -ms-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
.row .span1,
.row .span2,
.row .span3,
.row .span4,
.row .span5,
.row .span6,
.row .span7,
.row .span8,
.row .span9,
.row .span10,
.row .span11,
.row .span12,
.row .span13,
.row .span14,
.row .span15,
.row .span16,
.row .span17,
.row .span18,
.row .span19,
.row .span20,
.row .span21,
.row .span22,
.row .span23,
.row .span24 {
  -ms-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  float: left;
}
.row > .span1 {
  width: 2.127659574468085%;
  margin-left: 2.127659574468085%;
}
.row > .span2 {
  width: 6.382978723404255%;
  margin-left: 2.127659574468085%;
}
.row > .span3 {
  width: 10.638297872340425%;
  margin-left: 2.127659574468085%;
}
.row > .span4 {
  width: 14.893617021276595%;
  margin-left: 2.127659574468085%;
}
.row > .span5 {
  width: 19.148936170212767%;
  margin-left: 2.127659574468085%;
}
.row > .span6 {
  width: 23.404255319148938%;
  margin-left: 2.127659574468085%;
}
.row > .span7 {
  width: 27.659574468085108%;
  margin-left: 2.127659574468085%;
}
.row > .span8 {
  width: 31.914893617021278%;
  margin-left: 2.127659574468085%;
}
.row > .span9 {
  width: 36.17021276595745%;
  margin-left: 2.127659574468085%;
}
.row > .span10 {
  width: 40.42553191489361%;
  margin-left: 2.127659574468085%;
}
.row > .span11 {
  width: 44.680851063829785%;
  margin-left: 2.127659574468085%;
}
.row > .span12 {
  width: 48.93617021276596%;
  margin-left: 2.127659574468085%;
}
.row > .span12 .span6 {
  width: 47.82608695652174%;
  margin-left: 4.3478260869565215%;
}
.row > .span12 .span4 {
  width: 30.434782608695656%;
  margin-left: 4.3478260869565215%;
}
.row > .span12 .gallery3 > li {
  width: 30.434782608695656%;
  margin-left: 4.3478260869565215%;
}
.row > .span12 .gallery3 > li:nth-child(3n+1) {
  margin-left: 0;
}
.row > .span13 {
  width: 53.191489361702125%;
  margin-left: 2.127659574468085%;
}
.row > .span14 {
  width: 57.446808510638306%;
  margin-left: 2.127659574468085%;
}
.row > .span15 {
  width: 61.702127659574465%;
  margin-left: 2.127659574468085%;
}
.row > .span16 {
  width: 65.95744680851064%;
  margin-left: 2.127659574468085%;
}
.row > .span17 {
  width: 70.2127659574468%;
  margin-left: 2.127659574468085%;
}
.row > .span18 {
  width: 74.46808510638297%;
  margin-left: 2.127659574468085%;
}
.row > .span18 .span6 {
  width: 31.428571428571427%;
  margin-left: 2.857142857142857%;
}
.row > .span18 .span9 {
  width: 48.57142857142857%;
  margin-left: 2.857142857142857%;
}
.row > .span18 .span12 {
  width: 65.71428571428571%;
  margin-left: 2.857142857142857%;
}
.row > .span19 {
  width: 78.72340425531915%;
  margin-left: 2.127659574468085%;
}
.row > .span19 .span6 {
  width: 29.72972972972973%;
  margin-left: 2.7027027027027026%;
}
.row > .span19 .span13 {
  width: 67.56756756756756%;
  margin-left: 2.7027027027027026%;
}
.row > .span20 {
  width: 82.97872340425532%;
  margin-left: 2.127659574468085%;
}
.row > .span21 {
  width: 87.2340425531915%;
  margin-left: 2.127659574468085%;
}
.row > .span22 {
  width: 91.48936170212765%;
  margin-left: 2.127659574468085%;
}
.row > .span23 {
  width: 95.74468085106383%;
  margin-left: 2.127659574468085%;
}
.row > .span24 {
  width: 100%;
  margin-left: 2.127659574468085%;
  float: none;
}
.row .colleft {
  float: left;
  margin-left: 0 !important;
}
.row .colright {
  float: right;
}
.row .span1:first-child,
.row .span2:first-child,
.row .span3:first-child,
.row .span4:first-child,
.row .span5:first-child,
.row .span6:first-child,
.row .span7:first-child,
.row .span8:first-child,
.row .span9:first-child,
.row .span10:first-child,
.row .span11:first-child,
.row .span12:first-child,
.row .span13:first-child,
.row .span14:first-child,
.row .span15:first-child,
.row .span16:first-child,
.row .span17:first-child,
.row .span18:first-child,
.row .span19:first-child,
.row .span20:first-child,
.row .span21:first-child,
.row .span22:first-child,
.row .span23:first-child,
.row .span24:first-child {
  margin-left: 0;
}
.clear {
  height: 0;
  clear: both;
}
.clear-block {
  clear: both;
}
.clear-share {
  clear: both;
  height: 10px;
}
.clear-share2 {
  clear: both;
  height: 20px;
}
@media screen and (max-width: 980px) {
  .container {
    width: 100%;
  }
  .wrapper {
    border: 0;
  }
}
@media screen and (max-width: 810px) {
  
}
@media screen and (max-width: 650px) {
  .row.responsive01 > .span12,
  .row.responsive01 > .span18,
  .row.responsive01 > .span6,
  .row.responsive01 > .span19,
  .row.responsive01 > .span5 {
    width: 100%;
    float: none;
    margin: 0;
  }
  .responsive-gallery3-thumb-list-span24 .gallery3 > li {
    width: 47.82608695652174%;
    margin-left: 4.3478260869565215%;
  }
  .responsive-gallery3-thumb-list-span24 .gallery3 > li:nth-child(3n+1) {
    margin-left: 4.3478260869565215%;
  }
  .responsive-gallery3-thumb-list-span24 .gallery3 > li:nth-child(2n+1) {
    margin-left: 0;
  }
}
@media screen and (max-width: 480px) {
  .image-box {
    margin: 0 0 18px !important;
    display: table;
    table-layout: fixed;
    width: 100%;
  }
  .image-box .image-box-image,
  .image-box .image-box-content {
    display: table-cell;
    text-align: left;
    vertical-align: top;
  }
  .image-box .image-box-image {
    padding: 1.8085106382978722% 2.127659574468085% 0.6382978723404255% 2.127659574468085%;
    width: 35%;
  }
  .image-box .image-box-content {
    width: 65%;
  }
  .thumb-list > li img,
  .thumb-list.thumb-list-width-20 > li img {
    width: 30%;
  }
  .thumb-list > li > .info,
  .thumb-list.thumb-list-width-20 > li > .info {
    padding-left: 33%;
  }
  .gallery2.thumb-list > li {
    display: block;
    width: auto;
    margin-left: 0;
  }
  .responsive-gallery3-thumb-list-span24 .gallery3 > li {
    width: 100%;
    margin-left: 4.3478260869565215%;
  }
  .responsive-gallery3-thumb-list-span24 .gallery3 > li:nth-child(2n+1) {
    margin-left: 4.3478260869565215%;
  }
  .responsive-gallery3-thumb-list-span24 .gallery3 > li:nth-child(1n+1) {
    margin-left: 0;
  }
  .row.responsive01 .span12 .span6,
  .row.responsive01 .span12 .span4 {
    width: 100%;
    float: none;
    margin: 0;
  }
  .row.responsive01 .span12 .gallery3 > li {
    width: 47.82608695652174%;
    margin-left: 4.3478260869565215%;
  }
  .row.responsive01 .span12 .gallery3 > li:nth-child(3n+1) {
    margin-left: 4.3478260869565215%/px;
  }
  .row.responsive01 .span12 .gallery3 > li:nth-child(2n+1) {
    margin-left: 0;
  }
  .row.responsive01 .span8 {
    width: 100%;
    float: none;
    margin: 0;
  }
  .row.responsive01 .span18 .span6,
  .row.responsive01 .span18 .span12,
  .row.responsive01 .span18 .span9 {
    width: 100%;
    float: none;
    margin: 0;
  }
  .row.responsive01 .span19 .span6,
  .row.responsive01 .span19 .span13 {
    width: 100%;
    float: none;
    margin: 0;
  }
}
@media print {
  
}
/*

#Table
 
##No style

```
<table summary="summary of table info">
  <thead>
    <tr>
      <th scope="col">Table Header 1</th>
      <th scope="col">Table Header 2</th>
      <th scope="col">Table Header 3</th>
    </tr>
  </thead>
  <tbody>
    <tr>
      <td>Division 1</td>
      <td>Division 2</td>
      <td>Division 3</td>
    </tr>
    <tr>
      <td>Division 1</td>
      <td>Division 2</td>
      <td>Division 3</td>
    </tr>
    <tr>
      <td>Division 1</td>
      <td>Division 2</td>
      <td>Division 3</td>
    </tr>
  </tbody>
</table>
```

*/
table {
  background-color: transparent;
  border-collapse: collapse;
  border-spacing: 0;
}
table thead tr th,
table thead tr td {
  text-align: left;
  vertical-align: top;
}
table tbody tr:hover,
table tbody tr:focus,
table tbody tr:hover,
table tbody tr:focus {
  background-color: #efefef;
}
table tbody tr th,
table tbody tr td {
  text-align: left;
  vertical-align: top;
}
/*
 
##.table-bordered

```
<table class="table-bordered" summary="summary of table info">
  <thead>
    <tr>
      <th scope="col">Table Header 1</th>
      <th scope="col">Table Header 2</th>
      <th scope="col">Table Header 3</th>
    </tr>
  </thead>
  <tbody>
    <tr>
      <td>Division 1</td>
      <td>Division 2</td>
      <td>Division 3</td>
    </tr>
    <tr>
      <td>Division 1</td>
      <td>Division 2</td>
      <td>Division 3</td>
    </tr>
    <tr>
      <td>Division 1</td>
      <td>Division 2</td>
      <td>Division 3</td>
    </tr>
  </tbody>
</table>
```

*/
.table-bordered th,
.table-bordered td {
  border: 1px solid #d8d8d8;
}
/*
 
##.table-bordered-top

```
<table class="table-bordered-top" summary="summary of table info">
  <thead>
    <tr>
      <th scope="col">Table Header 1</th>
      <th scope="col">Table Header 2</th>
      <th scope="col">Table Header 3</th>
    </tr>
  </thead>
  <tbody>
    <tr>
      <td>Division 1</td>
      <td>Division 2</td>
      <td>Division 3</td>
    </tr>
    <tr>
      <td>Division 1</td>
      <td>Division 2</td>
      <td>Division 3</td>
    </tr>
    <tr>
      <td>Division 1</td>
      <td>Division 2</td>
      <td>Division 3</td>
    </tr>
  </tbody>
</table>
```

*/
.table-bordered-top {
  border-bottom: 1px solid #d8d8d8;
}
.table-bordered-top th,
.table-bordered-top td {
  border-top: 1px solid #d8d8d8;
}
/*
 
##.table-bordered + .table-padded

```
<table class="table-bordered table-padded" summary="summary of table info">
  <thead>
    <tr>
      <th scope="col">Table Header 1</th>
      <th scope="col">Table Header 2</th>
      <th scope="col">Table Header 3</th>
    </tr>
  </thead>
  <tbody>
    <tr>
      <td>Division 1</td>
      <td>Division 2</td>
      <td>Division 3</td>
    </tr>
    <tr>
      <td>Division 1</td>
      <td>Division 2</td>
      <td>Division 3</td>
    </tr>
    <tr>
      <td>Division 1</td>
      <td>Division 2</td>
      <td>Division 3</td>
    </tr>
  </tbody>
</table>
```

*/
.table-padded th,
.table-padded td {
  padding: 8px;
}
/*
 
##.table-bordered + .table-padded + .table-full-width = .default

```
<table class="default" summary="summary of table info">
  <thead>
    <tr>
      <th scope="col">Table Header 1</th>
      <th scope="col">Table Header 2</th>
      <th scope="col">Table Header 3</th>
    </tr>
  </thead>
  <tbody>
    <tr>
      <td>Division 1</td>
      <td>Division 2</td>
      <td>Division 3</td>
    </tr>
    <tr>
      <td>Division 1</td>
      <td>Division 2</td>
      <td>Division 3</td>
    </tr>
    <tr>
      <td>Division 1</td>
      <td>Division 2</td>
      <td>Division 3</td>
    </tr>
  </tbody>
</table>
```

*/
.table-full-width {
  width: 100%;
}
.default {
  width: 100%;
}
.default th,
.default td {
  border: 1px solid #d8d8d8;
}
.default th,
.default td {
  padding: 8px;
}
/*
 
##.table-bordered + .table-padded + .table-full-width + .table-striped = .default-striped
Not supported in IE8.

```
<table class="default-striped" summary="summary of table info">
  <thead>
    <tr>
      <th scope="col">Table Header 1</th>
      <th scope="col">Table Header 2</th>
      <th scope="col">Table Header 3</th>
    </tr>
  </thead>
  <tbody>
    <tr>
      <td>Division 1</td>
      <td>Division 2</td>
      <td>Division 3</td>
    </tr>
    <tr>
      <td>Division 1</td>
      <td>Division 2</td>
      <td>Division 3</td>
    </tr>
    <tr>
      <td>Division 1</td>
      <td>Division 2</td>
      <td>Division 3</td>
    </tr>
  </tbody>
</table>
```

*/
.table-striped tbody tr:nth-child(even) {
  background-color: #f5f5f5;
}
.default-striped {
  width: 100%;
}
.default-striped th,
.default-striped td {
  border: 1px solid #d8d8d8;
}
.default-striped th,
.default-striped td {
  padding: 8px;
}
.default-striped tbody tr:nth-child(even) {
  background-color: #f5f5f5;
}
/*
 
##.nowrap-headers
Forces the content inside `thead > th` should not wrap

```
<table class="default nowrap-headers" summary="summary of table info">
  <thead>
    <tr>
      <th scope="col">Table Header 1</th>
      <th scope="col">Table Header 2</th>
      <th scope="col">Table Header 3</th>
    </tr>
  </thead>
  <tbody>
    <tr>
      <td>Division 1</td>
      <td>Division 2</td>
      <td>Division 3</td>
    </tr>
    <tr>
      <td>Division 1</td>
      <td>Division 2</td>
      <td>Division 3</td>
    </tr>
  </tbody>
</table>
```

*/
.nowrap-headers thead th {
  white-space: nowrap;
}
/*
 
##Sortable table
Not supported in IE8.

```
<table class="default sortable-table" summary="summary of table info">
  <thead>
    <tr>
      <th scope="col">Table Header 1</th>
      <th scope="col">Table Header 2</th>
      <th scope="col">Table Header 3</th>
    </tr>
  </thead>
  <tbody>
    <tr>
      <td>Division 1</td>
      <td>Division 2</td>
      <td>Division 3</td>
    </tr>
    <tr>
      <td>Division 1</td>
      <td>Division 2</td>
      <td>Division 3</td>
    </tr>
    <tr>
      <td>Division 1</td>
      <td>Division 2</td>
      <td>Division 3</td>
    </tr>
  </tbody>
</table>
```

*/
.sortable-table {
  border-bottom: 1px solid #d8d8d8;
  width: 100%;
}
.sortable-table th,
.sortable-table td {
  border-top: 1px solid #d8d8d8;
}
.sortable-table th,
.sortable-table td {
  padding: 8px;
}
.sortable-table .tablesorter-header {
  cursor: pointer;
}
.sortable-table .tablesorter-header .tablesorter-header-inner {
  padding-left: 13px;
  position: relative;
}
.sortable-table .tablesorter-header .tablesorter-header-inner i {
  display: inline-block;
  width: 16px;
  height: 16px;
  vertical-align: text-top;
  background-image: url("/static/images/sprite-loc.png");
  background-position: 0 0;
  background-repeat: no-repeat;
  width: 7px;
  height: 12px;
  background-position: -171px -16px;
  position: absolute;
  left: 0;
  top: 3px;
}
.sortable-table .tablesorter-header.tablesorter-headerAsc .tablesorter-header-inner i {
  background-position: -171px -28px;
}
.sortable-table .tablesorter-header.tablesorter-headerDesc .tablesorter-header-inner i {
  background-position: -171px -40px;
}
.width-10-percent {
  width: 10%;
}
@media screen and (max-width: 650px) {
  .width-10-percent {
    width: 70%;
  }
}
@media screen and (max-width: 480px) {
  .width-10-percent {
    width: 100%;
  }
}
.width-20-percent {
  width: 20%;
}
@media screen and (max-width: 650px) {
  .width-20-percent {
    width: 70%;
  }
}
@media screen and (max-width: 480px) {
  .width-20-percent {
    width: 100%;
  }
}
.width-30-percent {
  width: 30%;
}
@media screen and (max-width: 650px) {
  .width-30-percent {
    width: 70%;
  }
}
@media screen and (max-width: 480px) {
  .width-30-percent {
    width: 100%;
  }
}
.width-40-percent {
  width: 40%;
}
@media screen and (max-width: 650px) {
  .width-40-percent {
    width: 70%;
  }
}
@media screen and (max-width: 480px) {
  .width-40-percent {
    width: 100%;
  }
}
.width-50-percent {
  width: 50%;
}
@media screen and (max-width: 650px) {
  .width-50-percent {
    width: 100%;
  }
}
.width-60-percent {
  width: 60%;
}
@media screen and (max-width: 650px) {
  .width-60-percent {
    width: 100%;
  }
}
.width-70-percent {
  width: 70%;
}
@media screen and (max-width: 650px) {
  .width-70-percent {
    width: 100%;
  }
}
.width-80-percent {
  width: 80%;
}
@media screen and (max-width: 650px) {
  .width-80-percent {
    width: 100%;
  }
}
.width-90-percent {
  width: 90%;
}
@media screen and (max-width: 650px) {
  .width-90-percent {
    width: 100%;
  }
}
.width-100-percent {
  width: 100%;
}
.ui-datepicker-trigger {
  padding-left: 3px;
  vertical-align: middle;
}
@media screen and (max-width: 650px) {
  .ui-datepicker-trigger {
    display: none;
  }
}
.form-row {
  margin: 0 0 18px;
}
.required {
  color: #990000;
}
.help-text {
  color: #999999;
}
fieldset {
  padding: 0;
  margin: 0 0 36px;
  border: 0;
}
legend {
  color: #333333;
  display: block;
  width: 100%;
  padding: 0;
  margin-bottom: 9px;
  border: 0;
  font-size: 18px;
  line-height: 22.5px;
  font-weight: bold;
}
legend small {
  font-weight: normal;
  line-height: 1;
  color: #666;
  font-size: 12px;
}
@media screen and (max-width: 480px) {
  legend small {
    display: block;
    margin-top: 5px;
  }
}
legend small.block {
  display: block;
  margin-top: 5px;
}
legend small {
  font-size: 12px;
  color: #333333;
  font-weight: normal;
  display: block;
}
select,
textarea,
input[type="text"],
input[type="password"],
input[type="datetime"],
input[type="datetime-local"],
input[type="date"],
input[type="month"],
input[type="time"],
input[type="week"],
input[type="number"],
input[type="email"],
input[type="url"],
input[type="search"],
input[type="tel"],
input[type="color"] {
  font-size: 12px;
  line-height: 18px;
  -ms-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding: 5px;
}
textarea {
  height: auto;
}
textarea,
input,
select {
  background-color: #ffffff;
  border: 1px solid #cccccc;
  /*-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
     -moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
          box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);*/

  -webkit-transition: border linear 0.2s, box-shadow linear 0.2s;
  -moz-transition: border linear 0.2s, box-shadow linear 0.2s;
  -o-transition: border linear 0.2s, box-shadow linear 0.2s;
  transition: border linear 0.2s, box-shadow linear 0.2s;
}
textarea:focus,
input:focus {
  border-color: rgba(82, 168, 236, 0.8);
  outline: 0;
  outline: thin dotted \9;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(82, 168, 236, 0.6);
  -moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(82, 168, 236, 0.6);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(82, 168, 236, 0.6);
}
input[type="radio"],
input[type="checkbox"] {
  margin: 4px 0 0;
  margin-top: 1px \9;
  *margin-top: 0;
  line-height: normal;
  border: 0;
}
input[type="file"],
input[type="image"],
input[type="submit"],
input[type="reset"],
input[type="button"],
input[type="radio"],
input[type="checkbox"] {
  width: auto;
}
select[multiple],
select[size] {
  height: auto;
}
select:focus,
input[type="file"]:focus,
input[type="radio"]:focus,
input[type="checkbox"]:focus {
  outline: thin dotted #333;
  outline: 5px auto -webkit-focus-ring-color;
  outline-offset: -2px;
}
input:-moz-placeholder,
textarea:-moz-placeholder {
  color: #999999;
}
input:-ms-input-placeholder,
textarea:-ms-input-placeholder {
  color: #999999;
}
input::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
  color: #999999;
}
.radio,
.checkbox {
  min-height: 20px;
  padding-left: 20px;
}
.radio input[type="radio"],
.checkbox input[type="checkbox"] {
  float: left;
  margin-left: -20px;
}
.controls > .radio:first-child,
.controls > .checkbox:first-child {
  padding-top: 5px;
}
.radio.inline,
.checkbox.inline {
  display: inline-block;
  padding-top: 5px;
  margin-bottom: 0;
  vertical-align: middle;
}
.radio.inline + .radio.inline,
.checkbox.inline + .checkbox.inline {
  margin-left: 10px;
}
input[class*="span"],
select[class*="span"],
textarea[class*="span"],
.uneditable-input[class*="span"],
.row-fluid input[class*="span"],
.row-fluid select[class*="span"],
.row-fluid textarea[class*="span"],
.row-fluid .uneditable-input[class*="span"] {
  float: none;
  margin-left: 0;
}
.input-append input[class*="span"],
.input-append .uneditable-input[class*="span"],
.input-prepend input[class*="span"],
.input-prepend .uneditable-input[class*="span"],
.row-fluid input[class*="span"],
.row-fluid select[class*="span"],
.row-fluid textarea[class*="span"],
.row-fluid .uneditable-input[class*="span"],
.row-fluid .input-prepend [class*="span"],
.row-fluid .input-append [class*="span"] {
  display: inline-block;
}
input,
textarea,
.uneditable-input {
  margin-left: 0;
}
input[disabled],
select[disabled],
textarea[disabled],
input[readonly],
select[readonly],
textarea[readonly] {
  cursor: not-allowed;
  background-color: #eeeeee;
}
input[type="radio"][disabled],
input[type="checkbox"][disabled],
input[type="radio"][readonly],
input[type="checkbox"][readonly] {
  background-color: transparent;
}
.box-error * {
  color: #dd4b39;
}
.error > span:first-child {
  color: #dd4b39;
}
.error select,
.error textarea,
.error input[type="text"],
.error input[type="password"],
.error input[type="datetime"],
.error input[type="datetime-local"],
.error input[type="date"],
.error input[type="month"],
.error input[type="time"],
.error input[type="week"],
.error input[type="number"],
.error input[type="email"],
.error input[type="url"],
.error input[type="search"],
.error input[type="tel"],
.error input[type="color"] {
  border-color: #dd4b39;
}
.custom-select-menu .label {
  float: left;
  padding-right: 5px;
  height: 28px;
  line-height: 28px;
  -ms-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
.custom-select-menu .select {
  border: 1px solid #cccccc;
  background-color: #ffffff;
  float: left;
  padding: 0 3px 0 10px;
  height: 28px;
  line-height: 26px;
  -ms-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
.custom-select-menu .select select {
  border: none;
  color: #666666;
  margin: 0 !important;
  padding: 0;
  vertical-align: baseline;
}
@media screen and (-webkit-min-device-pixel-ratio:0) {
  .custom-select-menu .select select {
    -webkit-appearance: none;
    padding-right: 15px;
    background: transparent url(/static/images/sprite-globalnav.png) 100% -342px no-repeat;
  }
}
.custom-select-menu .button {
  float: left;
}
.custom-select-menu .button button,
.custom-select-menu .button input {
  height: 28px;
  border: 1px solid #cccccc;
  background-color: #cccccc;
  color: #333;
  padding: 0 10px;
  border: 0;
  display: inline-block;
  text-decoration: none;
  font-weight: bold;
  background-image: none;
  border-radius: 0;
  outline: 0;
  overflow: visible;
  text-shadow: none;
}
.custom-select-menu .button button:hover,
.custom-select-menu .button input:hover,
.custom-select-menu .button button:focus,
.custom-select-menu .button input:focus {
  background-image: none;
  background-color: #333333;
  border-color: #333333;
  color: #ffffff;
}
.timeline {
  margin: 15px 0 0;
  padding: 0;
  list-style: none;
}
.timeline li {
  margin: 0;
  padding: 20px 0 0;
  list-style: none;
  border-top: 1px dotted #ccc;
  clear: both;
  overflow: hidden;
  min-height: 50px;
}
.timeline li .timeline-body {
  float: left;
  width: 70%;
  position: relative;
}
.timeline li .timeline-body p,
.timeline li .timeline-body h3,
.timeline li .timeline-body h4,
.timeline li .timeline-body ul {
  padding-left: 135px;
  padding-right: 20px;
}
@media screen and (max-width: 810px) {
  .timeline li .timeline-body p,
  .timeline li .timeline-body h3,
  .timeline li .timeline-body h4,
  .timeline li .timeline-body ul {
    padding-left: 0;
  }
}
.timeline li .timeline-body h3.timeline-head {
  position: absolute;
  left: 0;
  top: 0;
  padding: 0;
  font-size: 1em;
}
@media screen and (max-width: 810px) {
  .timeline li .timeline-body h3.timeline-head {
    position: static;
    padding: 0;
  }
}
.timeline li .timeline-img {
  float: left;
  width: 30%;
}
.timeline li .timeline-img figure {
  margin-bottom: 18px;
}
.timeline li .timeline-img figure img {
  max-width: 100%;
  height: auto;
  width: auto\9;
  /* ie8 */

  display: block;
  width: 100%;
  margin: 0 0 5px;
}
.timeline li .timeline-img figure figcaption {
  color: #888888;
  line-height: 1.3em;
}
.timeline.date-detail li {
  position: relative;
}
.timeline.date-detail li p,
.timeline.date-detail li h2,
.timeline.date-detail li h3,
.timeline.date-detail li h4,
.timeline.date-detail li h5,
.timeline.date-detail li ul {
  padding-left: 165px;
}
@media screen and (max-width: 480px) {
  .timeline.date-detail li p,
  .timeline.date-detail li h2,
  .timeline.date-detail li h3,
  .timeline.date-detail li h4,
  .timeline.date-detail li h5,
  .timeline.date-detail li ul {
    padding-left: 0;
  }
}
.timeline.date-detail li h3.timeline-head {
  position: absolute;
  left: 0;
  top: 20px;
  padding: 0;
}
@media screen and (max-width: 480px) {
  .timeline.date-detail li h3.timeline-head {
    position: static;
  }
}
.sections-menu-anchor {
  display: none;
  padding-top: 5px;
}
.sections-menu-anchor a {
  border: 1px solid #0078ae;
  border-radius: 5px;
  padding: 3px 10px;
  display: block;
}
.sections-menu-anchor i {
  float: right;
  font-style: normal;
}
@media screen and (max-width: 650px) {
  .sections-menu-anchor i {
    display: block;
  }
}
/* will be retired */
.leftnav {
  margin-bottom: 18px;
  letter-spacing: 1px;
}
.leftnav h2 {
  color: #666666 !important;
}
.leftnav ul {
  color: #666666 !important;
}
.leftnav a {
  color: #333333;
}
.leftnav a:visited {
  color: #333333;
}
.leftnav .box {
  padding: 0 0;
  border-bottom: 1px solid #cccccc;
}
.leftnav .box.box-selected {
  background-color: #ddedfd;
}
.leftnav .box.first,
.leftnav .box:first-child {
  border-top: 1px solid #cccccc;
}
.leftnav .selected {
  background-color: #0078ae;
  color: #ffffff;
  text-decoration: none;
  cursor: text;
}
.leftnav .selected a:hover,
.leftnav .selected a:focus,
.leftnav .selected a:link,
.leftnav .selected a:visited,
.leftnav .selected a:active {
  color: #ffffff;
  text-decoration: none;
  cursor: text;
}
.leftnav h1 {
  padding-bottom: 5px;
  margin: 0;
  font-weight: normal;
  font-size: 12px;
  line-height: 18px;
}
.leftnav h2 {
  font-size: 12px;
  line-height: 18px;
  background: transparent;
  padding: 0;
  margin: 0;
  font-weight: normal;
}
.leftnav h2 a {
  font-weight: bold;
}
.leftnav ul.menu,
.leftnav ul.submenu {
  list-style: none;
  padding: 0 0 8px;
  padding: 0;
  margin: 0;
  font-weight: bold;
}
.leftnav ul.submenu {
  font-weight: normal;
}
.leftnav h2 {
  padding: 7px 10px;
  display: block;
}
.leftnav ul.menu a,
.leftnav ul.submenu a {
  padding: 7px 10px;
  display: block;
}
.leftnav ul.menu > li > ul.menu > li {
  padding-left: 10px;
}
.leftnav ul.submenu > li {
  padding-left: 10px;
}
@media screen and (max-width: 650px) {
  .leftnav {
    margin-top: 2em;
    border-top: 5px solid #0078ae;
  }
}
.leftnav-new {
  margin-bottom: 18px;
  letter-spacing: 1px;
}
.leftnav-new .box {
  border-bottom: 1px solid #cccccc;
}
.leftnav-new .box h1 {
  padding-bottom: 5px;
  font-size: 12px;
  line-height: 18px;
  margin-bottom: 0;
  font-weight: normal;
}
.leftnav-new .box h2 {
  color: #666666 !important;
  border-top: 1px solid #cccccc;
  padding: 7px 10px;
  font-size: 12px;
  line-height: 18px;
  margin-bottom: 0;
  font-weight: normal;
}
.leftnav-new .box h2.selected {
  background-color: #0078ae;
  color: #ffffff;
  text-decoration: none;
  cursor: text;
}
.leftnav-new .box h2.selected a {
  color: #ffffff;
  text-decoration: none;
  cursor: text;
  font-weight: bold;
}
.leftnav-new .box h2.selected.subselected {
  background-color: #ddedfd;
}
.leftnav-new .box h2.selected.subselected a {
  color: #333333;
  cursor: auto;
}
.leftnav-new .box h2.selected.subselected a:focus,
.leftnav-new .box h2.selected.subselected a:hover {
  text-decoration: underline;
}
.leftnav-new .box ul {
  color: #666666 !important;
}
.leftnav-new .box ul.submenu {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 12px;
  line-height: 18px;
  margin-bottom: 0;
  font-weight: normal;
  background-color: #ddedfd;
}
.leftnav-new .box ul.submenu > li {
  padding: 7px 10px 7px 20px;
  margin: 0;
}
.leftnav-new .box ul.submenu > li.selected {
  background-color: #0078ae;
  color: #ffffff;
  text-decoration: none;
  cursor: text;
}
.leftnav-new .box ul.submenu > li.selected > a {
  color: #ffffff;
  text-decoration: none;
  cursor: text;
  font-weight: bold;
}
.leftnav-new .box ul.submenu > li > .submenu-submenu {
  list-style: none;
  padding: 0;
  margin: 2px 0;
  font-size: 12px;
  line-height: 18px;
  margin-bottom: 0;
  letter-spacing: 0;
  font-weight: normal;
}
.leftnav-new .box ul.submenu > li > .submenu-submenu > li {
  padding: 2px 0 2px 20px;
  margin: 0;
}
.leftnav-new .box ul.submenu > li > .submenu-submenu > li a {
  color: #ffffff;
}
.leftnav-new .box ul.submenu > li > .submenu-submenu > li.selected {
  text-decoration: none;
  background-color: #006695;
}
.leftnav-new .box ul.submenu > li > .submenu-submenu > li.selected > a {
  color: #ffffff;
  cursor: text;
  font-weight: bold;
}
.leftnav-new .box a {
  color: #333333;
}
@media screen and (max-width: 650px) {
  .leftnav-new {
    margin-top: 2em;
    border-top: 5px solid #0078ae;
  }
}
.resources-nav {
  background-color: #efefef;
  padding: 7.7272727272727275% 9.090909090909092% 2.7272727272727275% 9.090909090909092%;
}
@media screen and (max-width: 650px) {
  .resources-nav {
    padding: 1.8085106382978722% 2.127659574468085% 0.6382978723404255% 2.127659574468085%;
  }
}
.resources-nav h3 {
  font-size: 12px;
  line-height: 18px;
  font-weight: bold;
  margin-bottom: 9px;
  color: #666666;
}
.resources-nav h3 small {
  font-weight: normal;
  line-height: 1;
  color: #666;
  font-size: 12px;
}
@media screen and (max-width: 480px) {
  .resources-nav h3 small {
    display: block;
    margin-top: 5px;
  }
}
.resources-nav h3 small.block {
  display: block;
  margin-top: 5px;
}
.resources-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.resources-nav ul li {
  margin-bottom: 4.5px;
}
.scalable-image img,
.scalable-image {
  display: block;
  max-width: 100%;
  height: auto;
  width: auto\9;
  /* ie8 */

}
.image-align-default {
  margin: 0;
  display: table;
  width: 200px\9;
  /* ie8 */

}
.image-align-default img {
  display: block;
  max-width: 100%;
  height: auto;
  width: auto\9;
  width: 200px\9;
  /* ie8 */

}
.image-align-default figcaption {
  padding: 5px 0 0;
  display: table-caption;
  caption-side: bottom;
  text-align: left;
  color: #999999;
  line-height: 1.3em;
}
@media screen and (max-width: 810px) {
  .image-align-default {
    max-width: 30%;
  }
}
.image-align-left {
  margin: 0;
  display: table;
  width: 200px\9;
  /* ie8 */

  margin: 0 25px 20px 0;
  float: left;
}
.image-align-left img {
  display: block;
  max-width: 100%;
  height: auto;
  width: auto\9;
  width: 200px\9;
  /* ie8 */

}
.image-align-left figcaption {
  padding: 5px 0 0;
  display: table-caption;
  caption-side: bottom;
  text-align: left;
  color: #999999;
  line-height: 1.3em;
}
@media screen and (max-width: 810px) {
  .image-align-left {
    max-width: 30%;
  }
}
.image-align-right {
  margin: 0;
  display: table;
  width: 200px\9;
  /* ie8 */

  margin: 0 0 20px 25px;
  float: right;
}
.image-align-right img {
  display: block;
  max-width: 100%;
  height: auto;
  width: auto\9;
  width: 200px\9;
  /* ie8 */

}
.image-align-right figcaption {
  padding: 5px 0 0;
  display: table-caption;
  caption-side: bottom;
  text-align: left;
  color: #999999;
  line-height: 1.3em;
}
@media screen and (max-width: 810px) {
  .image-align-right {
    max-width: 30%;
  }
}
.image-align-center {
  margin: 0;
  display: table;
  width: 200px\9;
  /* ie8 */

  margin: 0 auto 20px;
  float: none;
  clear: both;
}
.image-align-center img {
  display: block;
  max-width: 100%;
  height: auto;
  width: auto\9;
  width: 200px\9;
  /* ie8 */

}
.image-align-center figcaption {
  padding: 5px 0 0;
  display: table-caption;
  caption-side: bottom;
  text-align: left;
  color: #999999;
  line-height: 1.3em;
}
@media screen and (max-width: 810px) {
  .image-align-center {
    max-width: 30%;
  }
}
@media screen and (max-width: 810px) {
  .image-align-center {
    max-width: 90%;
  }
}
.image-group {
  clear: both;
  oveflow: hidden;
  margin-bottom: 18px;
  text-align: center;
}
.image-group img {
  display: block;
  max-width: 100%;
  width: auto\9;
  /* ie8 */

  display: inline-block;
  padding: 0 10px;
  max-width: 30%;
  height: auto;
  -ms-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
.image-group figcaption {
  padding: 5px 10% 0;
  text-align: center;
  color: #999999;
  line-height: 1.3em;
}
.header-wrapper.with-tabs {
  background-color: #ddedfd;
}
.header-wrapper.with-tabs h1 {
  padding: 1.8085106382978722% 2.127659574468085% 0.6382978723404255% 2.127659574468085%;
  margin-bottom: 9px;
}
.header-wrapper.no-tabs {
  margin: 0 0 27px;
}
.tab-links {
  background-color: #ddedfd;
  margin: 0 0 27px;
}
.tab-links ul {
  margin: 0;
  padding: 0;
  list-style: none;
  text-align: center;
  border-bottom: 2px solid #8fbbe4;
}
.tab-links ul li {
  margin: 4px 0 4px -4px;
  padding: 1px 15px 0;
  list-style: none;
  display: inline-block;
  border-left: 1px solid #8fbbe4;
  background-color: transparent;
}
.tab-links ul li strong {
  font-weight: normal;
}
.tab-links ul li a {
  color: #0078ae;
}
.tab-links ul li:first-child {
  border-left: none;
}
.tab-links ul li:last-child {
  border-right: none !important;
}
.tab-links ul li.selected {
  margin: 0 0 -2px;
  padding: 5px 15px 6px;
  border: 2px solid #8fbbe4 !important;
  border-bottom-color: #ffffff;
  border-bottom: none !important;
  border-radius: 4px 4px 0 0;
  background-color: #ffffff;
  color: #333333;
}
.tab-links ul li.selected strong {
  font-weight: bold;
}
.tab-links ul li.selected a {
  color: #333333;
  cursor: text;
}
.tab-links ul li.selected ~ li {
  border-left: none;
  border-right: 1px solid #8fbbe4;
}
@media screen and (max-width: 810px) {
  .tab-links ul li.selected ~ li {
    border: none;
  }
}
@media screen and (max-width: 810px) {
  .tab-links ul li.selected {
    border: 2px solid #8fbbe4 !important;
    border-radius: 4px;
    margin: 0;
  }
}
@media screen and (max-width: 810px) {
  .tab-links ul li {
    margin: 2px 0;
    padding: 4px 10px;
    border: none;
  }
}
@media screen and (max-width: 810px) {
  .tab-links ul {
    padding: 10px;
    text-align: left;
    border-bottom: none;
  }
}
/*@media screen and (max-width: 810px) {
  .tab-links ul {
    padding:10px;
    text-align:left;
    border-bottom:none;
        li {
            margin:2px 0;
            padding: 4px 10px;
            &.selected {
                border-bottom-color: @tab_links_active_border_color;
            };
        };
  }
}*/
.alpha-nav {
  margin: 0 0 18px;
}
.alpha-nav ol {
  margin: 0;
  padding: 0;
  list-style: none;
  background-color: #000000;
  font-size: 0px;
  letter-spacing: 0px;
  word-spacing: 0px;
  text-align: center;
}
.alpha-nav ol li {
  margin: 0;
  padding: 0;
  list-style: none;
  display: inline-block;
  letter-spacing: normal;
  word-spacing: normal;
}
.alpha-nav ol li a {
  width: 32px;
  height: 32px;
  line-height: 32px;
  display: block;
  padding: 0;
  margin: 0;
  text-align: center;
  color: #ffffff;
  text-transform: uppercase;
  border: 1px solid #000000;
  font-size: 12px;
}
.alpha-nav ol li a:hover,
.alpha-nav ol li a:focus {
  background-color: #efefef;
  border-color: #000000;
  color: #000000;
}
.alpha-nav ol li.selected a {
  background-color: #efefef;
  border-color: #d8d8d8;
  color: #000000;
  cursor: text;
}
.span18 .alpha-nav ol li a {
  width: 23px;
  height: 25px;
  line-height: 25px;
}
.bgcolored-box01 {
  background-color: #efefef;
  margin-bottom: 18px;
}
.bgcolored-box02 {
  background-color: #ddedfd;
  margin-bottom: 18px;
}
.bordered-box01 {
  border: 1px solid #cccccc;
  margin-bottom: 18px;
}
.bordered-box02 {
  border-top: 8px solid #cccccc;
  margin-bottom: 18px;
}
.standard-padding-span24 {
  padding: 1.8085106382978722% 2.127659574468085% 0.6382978723404255% 2.127659574468085%;
}
.standard-padding-span18 {
  padding: 2.4285714285714284% 2.857142857142857% 0.8571428571428571% 2.857142857142857%;
}
.standard-padding-span12 {
  padding: 3.695652173913043% 4.3478260869565215% 1.3043478260869563% 4.3478260869565215%;
}
.standard-padding-span9 {
  padding: 4.999999999999999% 5.88235294117647% 1.764705882352941% 5.88235294117647%;
}
.standard-padding-span8 {
  padding: 5.666666666666667% 6.666666666666667% 2% 6.666666666666667%;
}
.standard-padding-span6 {
  padding: 7.7272727272727275% 9.090909090909092% 2.7272727272727275% 9.090909090909092%;
}
@media screen and (max-width: 650px) {
  .row.responsive01 > .span12 .standard-padding-span12,
  .row.responsive01 > .span18 .standard-padding-span18,
  .row.responsive01 > .span6 > .standard-padding-span6 {
    padding: 1.8085106382978722% 2.127659574468085% 0.6382978723404255% 2.127659574468085%;
  }
}
@media screen and (max-width: 480px) {
  .row.responsive01 > .span18 > .row .span6 .standard-padding-span6 {
    padding: 1.8085106382978722% 2.127659574468085% 0.6382978723404255% 2.127659574468085%;
  }
}
.padding-off-top {
  padding-top: 0 !important;
}
.padding-off-right {
  padding-right: 0 !important;
}
.padding-off-bottom {
  padding-bottom: 0 !important;
}
.padding-off-left {
  padding-left: 0 !important;
}
.bordered {
  border: 1px solid #cccccc;
}
.drop-shadow-01 {
  -webkit-box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
  -moz-box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
}
.drop-shadow-02 {
  -webkit-box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.3);
  -moz-box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.3);
  box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.3);
}
.drop-shadow-03 {
  -webkit-box-shadow: 0 15px 15px -15px rgba(0, 0, 0, 0.3);
  -moz-box-shadow: 0 15px 15px -15px rgba(0, 0, 0, 0.3);
  box-shadow: 0 15px 15px -15px rgba(0, 0, 0, 0.3);
}
/*.columns(@colwidth: 250px, @colcount: 0, @colgap: 50px, @columnRuleColor: #EEE, @columnRuleStyle: solid, @columnRuleWidth: 1px) {
  -moz-column_width: @colwidth;
  -moz-column-count: @colcount;
  -moz-column-gap: @colgap;
  -moz-column-rule-color: @columnRuleColor;
  -moz-column-rule-style: @columnRuleStyle;
  -moz-column-rule-width: @columnRuleWidth;
  -webkit-column_width: @colwidth;
  -webkit-column-count: @colcount;
  -webkit-column-gap: @colgap;
  -webkit-column-rule-color: @columnRuleColor;
  -webkit-column-rule-style: @columnRuleStyle;
  -webkit-column-rule-width: @columnRuleWidth;
  column_width: @colwidth;
  column-count: @colcount;
  column-gap: @colgap;
  column-rule-color: @columnRuleColor;
  column-rule-style: @columnRuleStyle;
  column-rule-width: @columnRuleWidth;
}*/
.columns-3columns {
  -moz-column-count: 4;
  -moz-column-gap: 20px;
  -webkit-column-count: 4;
  -webkit-column-gap: 20px;
  column-count: 4;
  column-gap: 20px;
}
.vertical-align-middle * {
  vertical-align: middle;
}
div.locshare-toolbar {
  margin: 0 !important;
}
.aside-box {
  border: 1px solid #0078ae;
  margin-bottom: 18px;
  padding: 7.7272727272727275% 9.090909090909092% 2.7272727272727275% 9.090909090909092%;
}
@media screen and (max-width: 650px) {
  .aside-box {
    padding: 1.8085106382978722% 2.127659574468085% 0.6382978723404255% 2.127659574468085%;
  }
}
.aside-box h3 {
  font-size: 12px;
  line-height: 18px;
  font-weight: bold;
}
.aside-box h3 small {
  font-weight: normal;
  line-height: 1;
  color: #666;
  font-size: 12px;
}
@media screen and (max-width: 480px) {
  .aside-box h3 small {
    display: block;
    margin-top: 5px;
  }
}
.aside-box h3 small.block {
  display: block;
  margin-top: 5px;
}
.sister-site-box {
  border: 1px solid #0078ae;
  margin-bottom: 18px;
  padding: 7.7272727272727275% 9.090909090909092% 2.7272727272727275% 9.090909090909092%;
  background-color: #eff6fd;
  color: #000000;
}
@media screen and (max-width: 650px) {
  .sister-site-box {
    padding: 1.8085106382978722% 2.127659574468085% 0.6382978723404255% 2.127659574468085%;
  }
}
.sister-site-box h3 {
  font-size: 12px;
  line-height: 18px;
  font-weight: bold;
}
.sister-site-box h3 small {
  font-weight: normal;
  line-height: 1;
  color: #666;
  font-size: 12px;
}
@media screen and (max-width: 480px) {
  .sister-site-box h3 small {
    display: block;
    margin-top: 5px;
  }
}
.sister-site-box h3 small.block {
  display: block;
  margin-top: 5px;
}
.sister-site-box p {
  margin-bottom: 13.5px;
}
.related-resources-box {
  border: 1px solid #0078ae;
  margin-bottom: 18px;
  padding: 7.7272727272727275% 9.090909090909092% 2.7272727272727275% 9.090909090909092%;
  border-color: #cccccc;
}
@media screen and (max-width: 650px) {
  .related-resources-box {
    padding: 1.8085106382978722% 2.127659574468085% 0.6382978723404255% 2.127659574468085%;
  }
}
.related-resources-box h3 {
  font-size: 12px;
  line-height: 18px;
  font-weight: bold;
}
.related-resources-box h3 small {
  font-weight: normal;
  line-height: 1;
  color: #666;
  font-size: 12px;
}
@media screen and (max-width: 480px) {
  .related-resources-box h3 small {
    display: block;
    margin-top: 5px;
  }
}
.related-resources-box h3 small.block {
  display: block;
  margin-top: 5px;
}
.related-resources-box ul {
  margin-left: 0;
  list-style: none;
  margin-bottom: 13.5px;
}
.related-resources-box ul .plain {
  margin-left: 25px;
  list-style: none;
}
.related-resources-box ul > li {
  margin-bottom: 9px;
}
.related-resources-box h3 {
  margin-bottom: 9px;
}
.support-box {
  border: 1px solid #0078ae;
  margin-bottom: 18px;
  padding: 7.7272727272727275% 9.090909090909092% 2.7272727272727275% 9.090909090909092%;
}
@media screen and (max-width: 650px) {
  .support-box {
    padding: 1.8085106382978722% 2.127659574468085% 0.6382978723404255% 2.127659574468085%;
  }
}
.support-box h3 {
  font-size: 12px;
  line-height: 18px;
  font-weight: bold;
}
.support-box h3 small {
  font-weight: normal;
  line-height: 1;
  color: #666;
  font-size: 12px;
}
@media screen and (max-width: 480px) {
  .support-box h3 small {
    display: block;
    margin-top: 5px;
  }
}
.support-box h3 small.block {
  display: block;
  margin-top: 5px;
}
.support-box h3 {
  margin-bottom: 13.5px;
}
.generic {
  border: 1px solid #0078ae;
  margin-bottom: 18px;
  padding: 7.7272727272727275% 9.090909090909092% 2.7272727272727275% 9.090909090909092%;
  background-color: #eff6fd;
}
@media screen and (max-width: 650px) {
  .generic {
    padding: 1.8085106382978722% 2.127659574468085% 0.6382978723404255% 2.127659574468085%;
  }
}
.generic h3 {
  font-size: 12px;
  line-height: 18px;
  font-weight: bold;
}
.generic h3 small {
  font-weight: normal;
  line-height: 1;
  color: #666;
  font-size: 12px;
}
@media screen and (max-width: 480px) {
  .generic h3 small {
    display: block;
    margin-top: 5px;
  }
}
.generic h3 small.block {
  display: block;
  margin-top: 5px;
}
.abstract {
  background-color: #efefef;
  margin-bottom: 18px;
  padding: 1.8085106382978722% 2.127659574468085% 0.6382978723404255% 2.127659574468085%;
}
.span18 .abstract {
  padding: 2.4285714285714284% 2.857142857142857% 0.8571428571428571% 2.857142857142857%;
}
@media screen and (max-width: 650px) {
  .span18 .abstract {
    padding: 1.8085106382978722% 2.127659574468085% 0.6382978723404255% 2.127659574468085%;
  }
}
.article h2 {
  margin-bottom: 9px;
}
.span6 .article {
  padding: 7.7272727272727275% 9.090909090909092% 2.7272727272727275% 9.090909090909092%;
}
.article-in-body {
  border: none !important;
  padding: 0 !important;
  margin-bottom: 36px;
}
.aside-in-body {
  border: 1px solid #cccccc;
  margin-bottom: 18px;
  padding: 3.695652173913043% 4.3478260869565215% 1.3043478260869563% 4.3478260869565215%;
}
.aside-in-body h2 {
  margin-bottom: 9px;
}
.aside-in-body h2 {
  font-size: 13.5px;
  line-height: 18.900000000000002px;
  font-weight: bold;
}
.aside-in-body h2 small {
  font-weight: normal;
  line-height: 1;
  color: #666;
  font-size: 12px;
}
@media screen and (max-width: 480px) {
  .aside-in-body h2 small {
    display: block;
    margin-top: 5px;
  }
}
.aside-in-body h2 small.block {
  display: block;
  margin-top: 5px;
}
.aside-in-body article {
  border-top: 1px solid #cccccc;
  padding-top: 15px;
}
.aside-in-body article:first-child {
  border: none;
  padding: 0;
}
.span18 .aside-in-body {
  padding: 2.4285714285714284% 2.857142857142857% 0.8571428571428571% 2.857142857142857%;
}
.boxed-1-column-link-summary {
  border: 1px solid #cccccc;
  margin-bottom: 18px;
  padding: 3.695652173913043% 4.3478260869565215% 1.3043478260869563% 4.3478260869565215%;
}
.boxed-1-column-link-summary h2 {
  margin-bottom: 9px;
}
.boxed-1-column-link-summary h3 {
  font-size: 12px;
  line-height: 18px;
  margin-bottom: 0;
  font-weight: normal;
  font-weight: bold;
}
.boxed-1-column-link-summary > ul {
  padding: 0;
  margin-left: 0;
  margin-bottom: 9px;
  list-style: none;
}
.boxed-1-column-link-summary > ul > li {
  clear: both;
  overflow: hidden;
  padding: 0;
  margin: 0;
}
.boxed-1-column-link-summary > ul > li img {
  height: auto;
  float: left;
  display: block;
  margin-bottom: 18px;
  width: 30%;
  margin-top: 4px;
}
.boxed-1-column-link-summary > ul > li .info {
  padding-left: 33%;
}
.boxed-1-column-link-summary ul {
  clear: both;
  -ms-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  text-align: left;
  font-size: 0px;
  letter-spacing: 0px;
  word-spacing: 0px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.boxed-1-column-link-summary ul > li {
  padding: 0;
  list-style: none;
  width: 100%;
  margin-left: 2.127659574468085%;
  display: inline-block;
  vertical-align: top;
  font-size: 12px;
  letter-spacing: normal;
  word-spacing: normal;
}
.boxed-1-column-link-summary ul img {
  max-width: 100%;
  height: auto;
  width: auto\9;
  display: block;
  margin-bottom: 5px;
}
.boxed-1-column-link-summary ul li {
  margin-bottom: 18px;
}
.boxed-2-column-link-gallery {
  border: 1px solid #cccccc;
  margin-bottom: 18px;
  padding: 3.695652173913043% 4.3478260869565215% 1.3043478260869563% 4.3478260869565215%;
}
.boxed-2-column-link-gallery h2 {
  margin-bottom: 9px;
}
.boxed-2-column-link-gallery ul {
  clear: both;
  -ms-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  text-align: left;
  font-size: 0px;
  letter-spacing: 0px;
  word-spacing: 0px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.boxed-2-column-link-gallery ul > li {
  padding: 0;
  list-style: none;
  width: 100%;
  margin-left: 2.127659574468085%;
  display: inline-block;
  vertical-align: top;
  font-size: 12px;
  letter-spacing: normal;
  word-spacing: normal;
}
.boxed-2-column-link-gallery ul img {
  max-width: 100%;
  height: auto;
  width: auto\9;
  display: block;
  margin-bottom: 5px;
}
.boxed-2-column-link-gallery ul > li {
  width: 48.93617021276596%;
  margin-left: 2.127659574468085%;
}
.boxed-2-column-link-gallery ul > li:nth-child(2n+1) {
  margin-left: 0;
}
.boxed-2-column-link-gallery ul li {
  margin-bottom: 18px;
  width: 47.82608695652174%;
  margin-left: 4.3478260869565215%;
}
.boxed-2-column-link-gallery ul li h2,
.boxed-2-column-link-gallery ul li h3 {
  font-size: 12px;
  line-height: 18px;
  font-weight: bold;
}
.boxed-2-column-link-gallery ul li h2 small,
.boxed-2-column-link-gallery ul li h3 small {
  font-weight: normal;
  line-height: 1;
  color: #666;
  font-size: 12px;
}
@media screen and (max-width: 480px) {
  .boxed-2-column-link-gallery ul li h2 small,
  .boxed-2-column-link-gallery ul li h3 small {
    display: block;
    margin-top: 5px;
  }
}
.boxed-2-column-link-gallery ul li h2 small.block,
.boxed-2-column-link-gallery ul li h3 small.block {
  display: block;
  margin-top: 5px;
}
.boxed-2-column-link-list {
  border: 1px solid #cccccc;
  margin-bottom: 18px;
  padding: 3.695652173913043% 4.3478260869565215% 1.3043478260869563% 4.3478260869565215%;
}
.boxed-2-column-link-list h2 {
  margin-bottom: 9px;
}
.boxed-2-column-link-list h3 {
  font-size: 12px;
  line-height: 18px;
  margin-bottom: 0;
  font-weight: normal;
  font-weight: bold;
}
.boxed-2-column-link-list > ul {
  padding: 0;
  margin-left: 0;
  margin-bottom: 9px;
  list-style: none;
}
.boxed-2-column-link-list > ul > li {
  clear: both;
  overflow: hidden;
  padding: 0;
  margin: 0;
}
.boxed-2-column-link-list > ul > li img {
  height: auto;
  float: left;
  display: block;
  margin-bottom: 18px;
  width: 30%;
  margin-top: 4px;
}
.boxed-2-column-link-list > ul > li .info {
  padding-left: 33%;
}
.boxed-2-column-link-list ul {
  clear: both;
  -ms-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  text-align: left;
  font-size: 0px;
  letter-spacing: 0px;
  word-spacing: 0px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.boxed-2-column-link-list ul > li {
  padding: 0;
  list-style: none;
  width: 100%;
  margin-left: 2.127659574468085%;
  display: inline-block;
  vertical-align: top;
  font-size: 12px;
  letter-spacing: normal;
  word-spacing: normal;
}
.boxed-2-column-link-list ul img {
  max-width: 100%;
  height: auto;
  width: auto\9;
  display: block;
  margin-bottom: 5px;
}
.boxed-2-column-link-list ul > li {
  width: 48.93617021276596%;
  margin-left: 2.127659574468085%;
}
.boxed-2-column-link-list ul > li:nth-child(2n+1) {
  margin-left: 0;
}
.boxed-2-column-link-list ul li {
  margin-bottom: 18px;
  width: 47.82608695652174%;
  margin-left: 4.3478260869565215%;
}
.span24 .boxed-2-column-link-list {
  padding: 1.8085106382978722% 2.127659574468085% 0.6382978723404255% 2.127659574468085%;
}
.boxed-2-column-link-summary {
  border: 1px solid #cccccc;
  margin-bottom: 18px;
  padding: 3.695652173913043% 4.3478260869565215% 1.3043478260869563% 4.3478260869565215%;
}
.boxed-2-column-link-summary h2 {
  margin-bottom: 9px;
}
.boxed-2-column-link-summary h3 {
  font-size: 12px;
  line-height: 18px;
  margin-bottom: 0;
  font-weight: normal;
  font-weight: bold;
}
.boxed-2-column-link-summary > ul {
  padding: 0;
  margin-left: 0;
  margin-bottom: 9px;
  list-style: none;
}
.boxed-2-column-link-summary > ul > li {
  clear: both;
  overflow: hidden;
  padding: 0;
  margin: 0;
}
.boxed-2-column-link-summary > ul > li img {
  height: auto;
  float: left;
  display: block;
  margin-bottom: 18px;
  width: 30%;
  margin-top: 4px;
}
.boxed-2-column-link-summary > ul > li .info {
  padding-left: 33%;
}
.boxed-2-column-link-summary ul {
  clear: both;
  -ms-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  text-align: left;
  font-size: 0px;
  letter-spacing: 0px;
  word-spacing: 0px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.boxed-2-column-link-summary ul > li {
  padding: 0;
  list-style: none;
  width: 100%;
  margin-left: 2.127659574468085%;
  display: inline-block;
  vertical-align: top;
  font-size: 12px;
  letter-spacing: normal;
  word-spacing: normal;
}
.boxed-2-column-link-summary ul img {
  max-width: 100%;
  height: auto;
  width: auto\9;
  display: block;
  margin-bottom: 5px;
}
.boxed-2-column-link-summary ul > li {
  width: 48.93617021276596%;
  margin-left: 2.127659574468085%;
}
.boxed-2-column-link-summary ul > li:nth-child(2n+1) {
  margin-left: 0;
}
.boxed-2-column-link-summary ul li {
  margin-bottom: 18px;
}
.boxed-3-column-link-gallery {
  border: 1px solid #cccccc;
  margin-bottom: 18px;
  padding: 3.695652173913043% 4.3478260869565215% 1.3043478260869563% 4.3478260869565215%;
}
.boxed-3-column-link-gallery h2 {
  margin-bottom: 9px;
}
.boxed-3-column-link-gallery ul {
  clear: both;
  -ms-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  text-align: left;
  font-size: 0px;
  letter-spacing: 0px;
  word-spacing: 0px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.boxed-3-column-link-gallery ul > li {
  padding: 0;
  list-style: none;
  width: 100%;
  margin-left: 2.127659574468085%;
  display: inline-block;
  vertical-align: top;
  font-size: 12px;
  letter-spacing: normal;
  word-spacing: normal;
}
.boxed-3-column-link-gallery ul img {
  max-width: 100%;
  height: auto;
  width: auto\9;
  display: block;
  margin-bottom: 5px;
}
.boxed-3-column-link-gallery ul > li {
  width: 31.914893617021278%;
  margin-left: 2.127659574468085%;
}
.boxed-3-column-link-gallery ul > li:nth-child(3n+1) {
  margin-left: 0;
}
.boxed-3-column-link-gallery ul li {
  margin-bottom: 18px;
  width: 30.434782608695656%;
  margin-left: 4.3478260869565215%;
}
.boxed-3-column-link-gallery ul li h2,
.boxed-3-column-link-gallery ul li h3 {
  font-size: 12px;
  line-height: 18px;
  font-weight: bold;
}
.boxed-3-column-link-gallery ul li h2 small,
.boxed-3-column-link-gallery ul li h3 small {
  font-weight: normal;
  line-height: 1;
  color: #666;
  font-size: 12px;
}
@media screen and (max-width: 480px) {
  .boxed-3-column-link-gallery ul li h2 small,
  .boxed-3-column-link-gallery ul li h3 small {
    display: block;
    margin-top: 5px;
  }
}
.boxed-3-column-link-gallery ul li h2 small.block,
.boxed-3-column-link-gallery ul li h3 small.block {
  display: block;
  margin-top: 5px;
}
.span18 .boxed-3-column-link-gallery {
  padding: 2.4285714285714284% 2.857142857142857% 0.8571428571428571% 2.857142857142857%;
}
.boxed-3-column-link-list {
  border: 1px solid #cccccc;
  margin-bottom: 18px;
  padding: 3.695652173913043% 4.3478260869565215% 1.3043478260869563% 4.3478260869565215%;
}
.boxed-3-column-link-list h2 {
  margin-bottom: 9px;
}
.boxed-3-column-link-list h3 {
  font-size: 12px;
  line-height: 18px;
  margin-bottom: 0;
  font-weight: normal;
  font-weight: bold;
}
.boxed-3-column-link-list > ul {
  padding: 0;
  margin-left: 0;
  margin-bottom: 9px;
  list-style: none;
}
.boxed-3-column-link-list > ul > li {
  clear: both;
  overflow: hidden;
  padding: 0;
  margin: 0;
}
.boxed-3-column-link-list > ul > li img {
  height: auto;
  float: left;
  display: block;
  margin-bottom: 18px;
  width: 30%;
  margin-top: 4px;
}
.boxed-3-column-link-list > ul > li .info {
  padding-left: 33%;
}
.boxed-3-column-link-list ul {
  clear: both;
  -ms-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  text-align: left;
  font-size: 0px;
  letter-spacing: 0px;
  word-spacing: 0px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.boxed-3-column-link-list ul > li {
  padding: 0;
  list-style: none;
  width: 100%;
  margin-left: 2.127659574468085%;
  display: inline-block;
  vertical-align: top;
  font-size: 12px;
  letter-spacing: normal;
  word-spacing: normal;
}
.boxed-3-column-link-list ul img {
  max-width: 100%;
  height: auto;
  width: auto\9;
  display: block;
  margin-bottom: 5px;
}
.boxed-3-column-link-list ul > li {
  width: 31.914893617021278%;
  margin-left: 2.127659574468085%;
}
.boxed-3-column-link-list ul > li:nth-child(3n+1) {
  margin-left: 0;
}
.boxed-3-column-link-list ul li {
  margin-bottom: 18px;
  width: 30.434782608695656%;
  margin-left: 4.3478260869565215%;
}
.boxed-3-column-article {
  border: 1px solid #cccccc;
  margin-bottom: 18px;
  padding: 3.695652173913043% 4.3478260869565215% 1.3043478260869563% 4.3478260869565215%;
}
.boxed-3-column-article h2 {
  margin-bottom: 9px;
}
.boxed-3-column-article h3 {
  font-size: 12px;
  line-height: 18px;
  margin-bottom: 0;
  font-weight: normal;
  font-weight: bold;
}
.boxed-3-column-article > ul {
  padding: 0;
  margin-left: 0;
  margin-bottom: 9px;
  list-style: none;
}
.boxed-3-column-article > ul > li {
  clear: both;
  overflow: hidden;
  padding: 0;
  margin: 0;
}
.boxed-3-column-article > ul > li img {
  height: auto;
  float: left;
  display: block;
  margin-bottom: 18px;
  width: 30%;
  margin-top: 4px;
}
.boxed-3-column-article > ul > li .info {
  padding-left: 33%;
}
.boxed-3-column-article ul {
  clear: both;
  -ms-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  text-align: left;
  font-size: 0px;
  letter-spacing: 0px;
  word-spacing: 0px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.boxed-3-column-article ul > li {
  padding: 0;
  list-style: none;
  width: 100%;
  margin-left: 2.127659574468085%;
  display: inline-block;
  vertical-align: top;
  font-size: 12px;
  letter-spacing: normal;
  word-spacing: normal;
}
.boxed-3-column-article ul img {
  max-width: 100%;
  height: auto;
  width: auto\9;
  display: block;
  margin-bottom: 5px;
}
.boxed-3-column-article ul > li {
  width: 31.914893617021278%;
  margin-left: 2.127659574468085%;
}
.boxed-3-column-article ul > li:nth-child(3n+1) {
  margin-left: 0;
}
.boxed-3-column-article ul li {
  margin-bottom: 18px;
  width: 30.434782608695656%;
  margin-left: 4.3478260869565215%;
}
.boxed-3-column-article ul li ul li,
.boxed-3-column-article ul li ol li {
  list-style: none;
  width: 100%;
}
.boxed-article {
  border: 1px solid #cccccc;
  margin-bottom: 18px;
  padding: 3.695652173913043% 4.3478260869565215% 1.3043478260869563% 4.3478260869565215%;
}
.boxed-article h2 {
  margin-bottom: 9px;
}
.span18 .boxed-article {
  padding: 2.4285714285714284% 2.857142857142857% 0.8571428571428571% 2.857142857142857%;
}
.boxed-blurb {
  border: 1px solid #cccccc;
  margin-bottom: 18px;
  padding: 3.695652173913043% 4.3478260869565215% 1.3043478260869563% 4.3478260869565215%;
}
.boxed-blurb h2 {
  margin-bottom: 9px;
}
.boxed-blurb h3 {
  font-size: 12px;
  line-height: 18px;
  margin-bottom: 0;
  font-weight: normal;
  font-weight: bold;
}
.boxed-blurb > ul {
  padding: 0;
  margin-left: 0;
  margin-bottom: 9px;
  list-style: none;
}
.boxed-blurb > ul > li {
  clear: both;
  overflow: hidden;
  padding: 0;
  margin: 0;
}
.boxed-blurb > ul > li img {
  height: auto;
  float: left;
  display: block;
  margin-bottom: 18px;
  width: 30%;
  margin-top: 4px;
}
.boxed-blurb > ul > li .info {
  padding-left: 33%;
}
.span9 .boxed-blurb-list > ul > li img {
  width: 40%;
}
.span9 .boxed-blurb-list > ul > li .info {
  padding-left: 43%;
}
.boxed-blurb-list {
  padding: 3.695652173913043% 4.3478260869565215% 1.3043478260869563% 4.3478260869565215%;
  border: 1px solid #cccccc;
  margin-bottom: 18px;
}
.boxed-blurb-list h2 {
  margin-bottom: 9px;
}
.boxed-blurb-list h3 {
  font-size: 12px;
  line-height: 18px;
  margin-bottom: 0;
  font-weight: normal;
  font-weight: bold;
}
.boxed-blurb-list > ul {
  padding: 0;
  margin-left: 0;
  margin-bottom: 9px;
  list-style: none;
}
.boxed-blurb-list > ul > li {
  clear: both;
  overflow: hidden;
  padding: 0;
  margin: 0;
}
.boxed-blurb-list > ul > li img {
  height: auto;
  float: left;
  display: block;
  margin-bottom: 18px;
  width: 30%;
  margin-top: 4px;
}
.boxed-blurb-list > ul > li .info {
  padding-left: 33%;
}
.boxed-blurb-list h2 {
  margin-bottom: 9px;
}
.span18 .boxed-blurb-list {
  padding: 2.4285714285714284% 2.857142857142857% 0.8571428571428571% 2.857142857142857%;
}
.span18 .span12 .boxed-blurb-list {
  padding: 3.695652173913043% 4.3478260869565215% 1.3043478260869563% 4.3478260869565215%;
}
.boxed-blurb-list-2-column {
  padding: 3.695652173913043% 4.3478260869565215% 1.3043478260869563% 4.3478260869565215%;
  border: 1px solid #cccccc;
  margin-bottom: 18px;
  padding: 1.8085106382978722% 2.127659574468085% 0.6382978723404255% 2.127659574468085%;
}
.boxed-blurb-list-2-column h2 {
  margin-bottom: 9px;
}
.boxed-blurb-list-2-column h3 {
  font-size: 12px;
  line-height: 18px;
  margin-bottom: 0;
  font-weight: normal;
  font-weight: bold;
}
.boxed-blurb-list-2-column > ul {
  padding: 0;
  margin-left: 0;
  margin-bottom: 9px;
  list-style: none;
}
.boxed-blurb-list-2-column > ul > li {
  clear: both;
  overflow: hidden;
  padding: 0;
  margin: 0;
}
.boxed-blurb-list-2-column > ul > li img {
  height: auto;
  float: left;
  display: block;
  margin-bottom: 18px;
  width: 30%;
  margin-top: 4px;
}
.boxed-blurb-list-2-column > ul > li .info {
  padding-left: 33%;
}
.boxed-blurb-list-2-column h2 {
  margin-bottom: 9px;
}
.boxed-blurb-list-2-column ul {
  clear: both;
  -ms-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  text-align: left;
  font-size: 0px;
  letter-spacing: 0px;
  word-spacing: 0px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.boxed-blurb-list-2-column ul > li {
  padding: 0;
  list-style: none;
  width: 100%;
  margin-left: 2.127659574468085%;
  display: inline-block;
  vertical-align: top;
  font-size: 12px;
  letter-spacing: normal;
  word-spacing: normal;
}
.boxed-blurb-list-2-column ul img {
  max-width: 100%;
  height: auto;
  width: auto\9;
  display: block;
  margin-bottom: 5px;
}
.boxed-blurb-list-2-column ul > li {
  width: 48.93617021276596%;
  margin-left: 2.127659574468085%;
}
.boxed-blurb-list-2-column ul > li:nth-child(2n+1) {
  margin-left: 0;
}
.boxed-blurb-list-2-column ul li {
  margin-bottom: 18px;
  width: 47.82608695652174%;
  margin-left: 4.3478260869565215%;
}
@media screen and (max-width: 650px) {
  .boxed-blurb-list-2-column ul li {
    width: 100%;
    margin-left: 4.3478260869565215%;
    margin-left: 0;
  }
}
.boxed-blurb-with-banner {
  border: 1px solid #cccccc;
  margin-bottom: 18px;
  padding: 3.695652173913043% 4.3478260869565215% 1.3043478260869563% 4.3478260869565215%;
}
.boxed-blurb-with-banner h2 {
  margin-bottom: 9px;
}
.boxed-blurb-with-banner h3 {
  font-size: 12px;
  line-height: 18px;
  margin-bottom: 0;
  font-weight: normal;
  font-weight: bold;
}
.boxed-blurb-with-banner > ul {
  padding: 0;
  margin-left: 0;
  margin-bottom: 9px;
  list-style: none;
}
.boxed-blurb-with-banner > ul > li {
  clear: both;
  overflow: hidden;
  padding: 0;
  margin: 0;
}
.boxed-blurb-with-banner > ul > li img {
  height: auto;
  float: left;
  display: block;
  margin-bottom: 18px;
  width: 30%;
  margin-top: 4px;
}
.boxed-blurb-with-banner > ul > li .info {
  padding-left: 33%;
}
.boxed-blog-recent-posts-blurb {
  border: 1px solid #cccccc;
  margin-bottom: 18px;
  padding: 3.695652173913043% 4.3478260869565215% 1.3043478260869563% 4.3478260869565215%;
}
.boxed-blog-recent-posts-blurb h2 {
  margin-bottom: 9px;
}
.boxed-blog-recent-posts-blurb h3 {
  font-size: 12px;
  line-height: 18px;
  margin-bottom: 0;
  font-weight: normal;
  font-weight: bold;
}
.boxed-blog-recent-posts-blurb > ul {
  padding: 0;
  margin-left: 0;
  margin-bottom: 9px;
  list-style: none;
}
.boxed-blog-recent-posts-blurb > ul > li {
  clear: both;
  overflow: hidden;
  padding: 0;
  margin: 0;
}
.boxed-blog-recent-posts-blurb > ul > li img {
  height: auto;
  float: left;
  display: block;
  margin-bottom: 18px;
  width: 30%;
  margin-top: 4px;
}
.boxed-blog-recent-posts-blurb > ul > li .info {
  padding-left: 33%;
}
.boxed-exhibit-with-slider {
  padding: 2.4285714285714284% 2.857142857142857% 0.8571428571428571% 2.857142857142857%;
  border: 1px solid #cccccc;
  margin-bottom: 18px;
  border-width: 4px;
}
.boxed-exhibit-with-slider h3 {
  border-bottom: 1px solid #cccccc;
  padding-bottom: 5px;
  margin-bottom: 18px;
}
.boxed-exhibit-with-slider .image {
  padding: 2.4285714285714284% 2.857142857142857% 0.8571428571428571% 2.857142857142857%;
  background-color: #efefef;
  margin-bottom: 18px;
}
.boxed-exhibit-with-slider .image img {
  display: block;
  max-width: 100%;
  height: auto;
  width: auto\9;
  /* ie8 */

  margin-bottom: 9px;
}
.form-in-body input[type="text"],
.form-in-body input[type="password"],
.form-in-body input[type="email"],
.form-in-body input[type="url"],
.form-in-body input[type="search"],
.form-in-body input[type="color"] {
  width: 50%;
}
@media screen and (max-width: 650px) {
  .form-in-body input[type="text"],
  .form-in-body input[type="password"],
  .form-in-body input[type="email"],
  .form-in-body input[type="url"],
  .form-in-body input[type="search"],
  .form-in-body input[type="color"] {
    width: 100%;
  }
}
.form-in-body input[type="datetime"],
.form-in-body input[type="datetime-local"],
.form-in-body input[type="date"],
.form-in-body input[type="month"],
.form-in-body input[type="time"],
.form-in-body input[type="week"],
.form-in-body input[type="number"],
.form-in-body input[type="tel"] {
  width: 30%;
}
@media screen and (max-width: 650px) {
  .form-in-body input[type="datetime"],
  .form-in-body input[type="datetime-local"],
  .form-in-body input[type="date"],
  .form-in-body input[type="month"],
  .form-in-body input[type="time"],
  .form-in-body input[type="week"],
  .form-in-body input[type="number"],
  .form-in-body input[type="tel"] {
    width: 70%;
  }
}
@media screen and (max-width: 480px) {
  .form-in-body input[type="datetime"],
  .form-in-body input[type="datetime-local"],
  .form-in-body input[type="date"],
  .form-in-body input[type="month"],
  .form-in-body input[type="time"],
  .form-in-body input[type="week"],
  .form-in-body input[type="number"],
  .form-in-body input[type="tel"] {
    width: 100%;
  }
}
.form-in-body textarea {
  width: 70%;
}
@media screen and (max-width: 650px) {
  .form-in-body textarea {
    width: 100%;
  }
}
.form-in-body input.narrower {
  width: 10%;
}
@media screen and (max-width: 650px) {
  .form-in-body input.narrower {
    width: 70%;
  }
}
@media screen and (max-width: 480px) {
  .form-in-body input.narrower {
    width: 100%;
  }
}
.featured-recordings .featured-recording {
  background-color: #efefef;
}
.featured-recordings h2 {
  margin-bottom: 9px;
}
.featured-recordings ul {
  margin-left: 0;
  list-style: none;
  display: table;
  table-layout: fixed;
}
.featured-recordings ul .plain {
  margin-left: 25px;
  list-style: none;
}
.featured-recordings ul li {
  display: table-cell;
  width: 33.3333333%;
  padding: 10px;
}
.featured-recordings ul li.selected {
  background-color: #efefef;
}
.featured-recordings ul li .featured-recording-title {
  font-size: 12px;
  line-height: 18px;
  font-weight: bold;
  color: #333333;
}
.featured-recordings ul li .featured-recording-title small {
  font-weight: normal;
  line-height: 1;
  color: #666;
  font-size: 12px;
}
@media screen and (max-width: 480px) {
  .featured-recordings ul li .featured-recording-title small {
    display: block;
    margin-top: 5px;
  }
}
.featured-recordings ul li .featured-recording-title small.block {
  display: block;
  margin-top: 5px;
}
.toggle_featured_wrapper {
  text-align: right;
  margin-top: -18px;
  line-height: 1em;
}
.toggle_featured_wrapper a {
  padding: 0 27px 0 0;
  display: inline-block;
  position: relative;
}
.toggle_featured_wrapper a.toggle_featured {
  font-size: 13.5px;
  line-height: 18.900000000000002px;
  font-weight: bold;
  margin: 0 0 7px;
  background: transparent url(/static/images/img-ui/ui_sprite_widget.png) 100% -428px no-repeat;
}
.toggle_featured_wrapper a.toggle_featured small {
  font-weight: normal;
  line-height: 1;
  color: #666;
  font-size: 12px;
}
@media screen and (max-width: 480px) {
  .toggle_featured_wrapper a.toggle_featured small {
    display: block;
    margin-top: 5px;
  }
}
.toggle_featured_wrapper a.toggle_featured small.block {
  display: block;
  margin-top: 5px;
}
.toggle_featured_wrapper a.toggle_featured.off {
  margin: 0;
  background-position: 100% -386px;
}
#tabs_landing_wrapper {
  background-color: #e8e8e4;
  margin-bottom: 30px;
}
#featured_container.featured_item_carousel {
  background-color: #ffffff !important;
  padding: 0 !important;
  margin: 0 !important;
}
#featured_container.featured_item_carousel .sharetool_wrapper {
  margin: 5px -10px 0 0;
}
#featured_container.featured_item_carousel .sharetool_wrapper.addmargin {
  margin: 5px -10px 10px 0;
}
#featured_container.featured_item_carousel .head_wrapper {
  position: relative;
}
#featured_container.featured_item_carousel .head_wrapper h1 {
  padding-right: 200px;
}
#featured_container.featured_item_carousel .wrapper_carousel {
  width: 100%;
  height: auto;
  -ms-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  position: relative;
  color: #666666;
  padding: 10px 45px 20px;
  margin: 0 0 20px !important;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 11px;
  font-size: 12px;
  line-height: 18px;
  margin-bottom: 0;
  font-weight: normal;
  line-height: 16.2px;
  background-color: #333333;
}
@media screen and (max-width: 810px) {
  #featured_container.featured_item_carousel .wrapper_carousel {
    padding: 10px 35px 20px;
  }
}
#featured_container.featured_item_carousel .wrapper_carousel h1.quiet {
  color: #ffffff;
  font-size: 14px;
  margin-bottom: 5px;
  margin-left: -25px;
}
@media screen and (max-width: 810px) {
  #featured_container.featured_item_carousel .wrapper_carousel h1.quiet {
    margin-left: -15px;
  }
}
#featured_container.featured_item_carousel .wrapper_carousel .button {
  cursor: pointer;
  position: absolute;
  text-decoration: none;
  width: 22px;
  height: 37px;
  top: 50%;
  margin-top: -17px;
  background-image: url("/static/images/sprite-loc.png");
}
#featured_container.featured_item_carousel .wrapper_carousel .button.prev {
  left: 20px;
  background-position: -36px -68px;
}
@media screen and (max-width: 810px) {
  #featured_container.featured_item_carousel .wrapper_carousel .button.prev {
    left: 10px;
  }
}
#featured_container.featured_item_carousel .wrapper_carousel .button.next {
  right: 20px;
  background-position: -58px -68px;
}
@media screen and (max-width: 810px) {
  #featured_container.featured_item_carousel .wrapper_carousel .button.next {
    right: 10px;
  }
}
#featured_container.featured_item_carousel .wrapper_carousel .list_carousel {
  background-color: transparent;
  margin: 0;
  width: auto;
}
#featured_container.featured_item_carousel .wrapper_carousel .list_carousel .clearfix {
  float: none;
  clear: both;
}
#featured_container.featured_item_carousel .wrapper_carousel .list_carousel ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: block;
  overflow: hidden;
}
#featured_container.featured_item_carousel .wrapper_carousel .list_carousel ul li {
  color: #cccccc;
  width: 155px;
  overflow: hidden;
  /*min-height:200px;
            background:yellow;*/

  padding: 0;
  margin: 0 20px;
  display: block;
  float: left;
}
@media screen and (max-width: 980px) {
  #featured_container.featured_item_carousel .wrapper_carousel .list_carousel ul li {
    width: 125px;
    margin: 0 15px;
  }
}
@media screen and (max-width: 810px) {
  #featured_container.featured_item_carousel .wrapper_carousel .list_carousel ul li {
    width: 100px;
    margin: 0 10px;
  }
}
@media screen and (max-width: 480px) {
  #featured_container.featured_item_carousel .wrapper_carousel .list_carousel ul li {
    width: 80px;
    margin: 0 10px;
  }
}
#featured_container.featured_item_carousel .wrapper_carousel .list_carousel ul li a {
  color: #cccccc;
  text-decoration: none;
  -webkit-transition: all 0.2s ease-in;
  -moz-transition: all 0.2s ease-in;
  -o-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
}
#featured_container.featured_item_carousel .wrapper_carousel .list_carousel ul li a:hover,
#featured_container.featured_item_carousel .wrapper_carousel .list_carousel ul li a:focus {
  text-decoration: underline;
}
#featured_container.featured_item_carousel .wrapper_carousel .list_carousel ul li a:hover img,
#featured_container.featured_item_carousel .wrapper_carousel .list_carousel ul li a:focus img {
  border-color: #ffffff;
}
#featured_container.featured_item_carousel .wrapper_carousel .list_carousel ul li a img {
  margin-bottom: 5px;
  border: 1px solid #333333;
  -ms-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
@media screen and (max-width: 980px) {
  #featured_container.featured_item_carousel .wrapper_carousel .list_carousel ul li a img {
    width: 125px;
    height: 125px;
  }
}
@media screen and (max-width: 810px) {
  #featured_container.featured_item_carousel .wrapper_carousel .list_carousel ul li a img {
    width: 100px;
    height: 100px;
  }
}
@media screen and (max-width: 480px) {
  #featured_container.featured_item_carousel .wrapper_carousel .list_carousel ul li a img {
    width: 80px;
    height: 80px;
  }
}
#featured_container.featured_item_carousel .wrapper_carousel .list_carousel ul li a span {
  display: block;
}
.plain-2-column-link-list ul {
  margin-left: 0;
  list-style: none;
  -moz-column-count: 2;
  -moz-column-gap: 20px;
  -webkit-column-count: 2;
  -webkit-column-gap: 20px;
}
@media screen and (max-width: 650px) {
  .plain-2-column-link-list ul {
    -moz-column-count: 1;
    -moz-column-gap: 0;
    -webkit-column-count: 1;
    -webkit-column-gap: 0;
  }
}
.plain-2-column-link-list ul > li {
  margin-bottom: 9px;
}
.plain-4-column-link-gallery ul {
  clear: both;
  -ms-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  text-align: left;
  font-size: 0px;
  letter-spacing: 0px;
  word-spacing: 0px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.plain-4-column-link-gallery ul > li {
  padding: 0;
  list-style: none;
  width: 100%;
  margin-left: 2.127659574468085%;
  display: inline-block;
  vertical-align: top;
  font-size: 12px;
  letter-spacing: normal;
  word-spacing: normal;
}
.plain-4-column-link-gallery ul img {
  max-width: 100%;
  height: auto;
  width: auto\9;
  display: block;
  margin-bottom: 5px;
}
.plain-4-column-link-gallery ul > li {
  width: 23.404255319148938%;
  margin-left: 2.127659574468085%;
}
.plain-4-column-link-gallery ul > li:nth-child(4n+1) {
  margin-left: 0;
}
@media screen and (max-width: 480px) {
  .plain-4-column-link-gallery ul > li {
    width: 31.914893617021278%;
    margin-left: 2.127659574468085%;
  }
  .plain-4-column-link-gallery ul > li:nth-child(4n+1) {
    margin-left: 2.127659574468085%;
  }
  .plain-4-column-link-gallery ul > li:nth-child(3n+1) {
    margin-left: 0;
  }
}
.plain-4-column-link-gallery ul li {
  margin-bottom: 18px;
}
.plain-4-column-link-gallery ul li h2,
.plain-4-column-link-gallery ul li h3 {
  font-size: 12px;
  line-height: 18px;
  font-weight: bold;
}
.plain-4-column-link-gallery ul li h2 small,
.plain-4-column-link-gallery ul li h3 small {
  font-weight: normal;
  line-height: 1;
  color: #666;
  font-size: 12px;
}
@media screen and (max-width: 480px) {
  .plain-4-column-link-gallery ul li h2 small,
  .plain-4-column-link-gallery ul li h3 small {
    display: block;
    margin-top: 5px;
  }
}
.plain-4-column-link-gallery ul li h2 small.block,
.plain-4-column-link-gallery ul li h3 small.block {
  display: block;
  margin-top: 5px;
}
.plain-3-column-link-gallery ul {
  clear: both;
  -ms-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  text-align: left;
  font-size: 0px;
  letter-spacing: 0px;
  word-spacing: 0px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.plain-3-column-link-gallery ul > li {
  padding: 0;
  list-style: none;
  width: 100%;
  margin-left: 2.127659574468085%;
  display: inline-block;
  vertical-align: top;
  font-size: 12px;
  letter-spacing: normal;
  word-spacing: normal;
}
.plain-3-column-link-gallery ul img {
  max-width: 100%;
  height: auto;
  width: auto\9;
  display: block;
  margin-bottom: 5px;
}
.plain-3-column-link-gallery ul > li {
  width: 31.914893617021278%;
  margin-left: 2.127659574468085%;
}
.plain-3-column-link-gallery ul > li:nth-child(3n+1) {
  margin-left: 0;
}
.plain-3-column-link-gallery ul li {
  margin-bottom: 18px;
}
.plain-3-column-link-gallery ul li h2,
.plain-3-column-link-gallery ul li h3 {
  font-size: 12px;
  line-height: 18px;
  font-weight: bold;
}
.plain-3-column-link-gallery ul li h2 small,
.plain-3-column-link-gallery ul li h3 small {
  font-weight: normal;
  line-height: 1;
  color: #666;
  font-size: 12px;
}
@media screen and (max-width: 480px) {
  .plain-3-column-link-gallery ul li h2 small,
  .plain-3-column-link-gallery ul li h3 small {
    display: block;
    margin-top: 5px;
  }
}
.plain-3-column-link-gallery ul li h2 small.block,
.plain-3-column-link-gallery ul li h3 small.block {
  display: block;
  margin-top: 5px;
}
.plain-blurb-in-body {
  border: none !important;
  padding: 0 !important;
  margin-bottom: 36px;
}
.plain-blurb-in-body h3 {
  font-size: 12px;
  line-height: 18px;
  margin-bottom: 0;
  font-weight: normal;
  font-weight: bold;
}
.plain-blurb-in-body ul {
  padding: 0;
  margin-left: 0;
  margin-bottom: 0;
  list-style: none;
}
.plain-blurb-in-body ul li {
  clear: both;
  overflow: hidden;
  padding: 0;
  margin: 0;
}
.plain-blurb-in-body ul li img {
  height: auto;
  float: left;
  display: block;
  margin-bottom: 18px;
  width: 20%;
  margin-top: 4px;
}
.plain-blurb-in-body ul li .info {
  padding-left: 22%;
}
.subsections-menu {
  background-color: #ddedfd;
  margin-bottom: 18px;
  padding: 1.8085106382978722% 2.127659574468085% 0.6382978723404255% 2.127659574468085%;
}
.subsections-menu ul {
  margin-left: 0;
  list-style: none;
  margin-bottom: 10px;
}
.subsections-menu ul > li {
  display: inline-block;
  *display: inline;
  padding-right: 15px;
  *zoom: 1;
  line-height: 12px;
  margin: 4px 0;
}
.subsections-menu ul > li:first-child {
  padding-left: 0;
  border-left: 0;
}
.subsections-menu ul > li {
  border-right: 1px solid #ccc;
  padding-right: 12px;
  margin-right: 8px;
}
.subsections-menu ul > li:last-child {
  padding-right: 0;
  margin-right: 0;
  border-right: 0;
}
.media-links {
  padding: 4.999999999999999% 5.88235294117647% 1.764705882352941% 5.88235294117647%;
  background-color: #efefef;
  margin-bottom: 18px;
}
.media-links header {
  padding-bottom: 8px;
}
.media-links header h2 {
  font-size: 13.5px;
  line-height: 18.900000000000002px;
  font-weight: bold;
}
.media-links header h2 small {
  font-weight: normal;
  line-height: 1;
  color: #666;
  font-size: 12px;
}
@media screen and (max-width: 480px) {
  .media-links header h2 small {
    display: block;
    margin-top: 5px;
  }
}
.media-links header h2 small.block {
  display: block;
  margin-top: 5px;
}
.media-links header a {
  float: right;
  color: #666666;
  text-decoration: none;
}
.media-links header a:visited {
  color: #666666;
  text-decoration: none;
}
.media-links header a:hover,
.media-links header a:focus {
  color: #00202f;
  text-decoration: underline;
}
.media-links figure {
  clear: both;
  border-top: 1px solid #cccccc;
  border-bottom: 1px solid #cccccc;
  padding: 7% 15%;
}
.media-links figure .play-image {
  position: relative;
}
.media-links figure .play-image i {
  width: 20px;
  height: 20px;
  border: 6px solid red;
  position: absolute;
  top: 50%;
  left: 50%;
  margin-top: -13px;
  margin-left: -13px;
}
.media-links figure img {
  display: block;
  max-width: 100%;
  height: auto;
  width: auto\9;
  /* ie8 */

}
.media-links figure figcaption {
  margin-top: 5px;
}
.media-links ul {
  margin-bottom: 0 !important;
}
.jump-menu {
  background-color: #eff6fd;
  padding: 2.4285714285714284% 2.857142857142857% 0.8571428571428571% 2.857142857142857%;
}
.jump-menu h1 {
  font-size: 13.5px;
  line-height: 18.900000000000002px;
  font-weight: bold;
  font-weight: normal;
  margin-bottom: 9px;
}
.jump-menu h1 small {
  font-weight: normal;
  line-height: 1;
  color: #666;
  font-size: 12px;
}
@media screen and (max-width: 480px) {
  .jump-menu h1 small {
    display: block;
    margin-top: 5px;
  }
}
.jump-menu h1 small.block {
  display: block;
  margin-top: 5px;
}
.jump-menu h1 i {
  display: inline-block;
  width: 16px;
  height: 16px;
  vertical-align: text-top;
  background-image: url("/static/images/sprite-loc.png");
  background-position: 0 0;
  background-repeat: no-repeat;
  width: 10px;
  height: 12px;
  background-position: -178px -16px;
  margin-top: 2px;
}
.jump-menu ul {
  margin-left: 0;
  list-style: none;
}
.jump-menu ul > li {
  display: inline-block;
  *display: inline;
  padding-right: 15px;
  *zoom: 1;
  line-height: 12px;
  margin: 4px 0;
}
.jump-menu ul > li:first-child {
  padding-left: 0;
  border-left: 0;
}
.jump-menu ul > li {
  border-right: 1px solid #ccc;
  padding-right: 12px;
  margin-right: 8px;
}
.jump-menu ul > li:last-child {
  padding-right: 0;
  margin-right: 0;
  border-right: 0;
}
.floor-plan {
  position: relative;
}
.floor-plan img {
  display: block;
  max-width: 100%;
  height: auto;
  width: auto\9;
  /* ie8 */

}
.marker {
  color: #FF0000;
  font: bold 5em Verdana, Arial, Helvetica, sans-serif;
  position: absolute;
}
@media screen and (max-width: 980px) {
  span.marker {
    font-size: 4em;
  }
}
@media screen and (max-width: 810px) {
  span.marker {
    font-size: 3em;
  }
}
@media screen and (max-width: 650px) {
  span.marker {
    font-size: 2.5em;
  }
}
@media screen and (max-width: 480px) {
  span.marker {
    font-size: 2em;
  }
}
.floor-plan.bob-hope-gallery .marker {
  top: 66.5%;
  left: 13.5%;
}
.floor-plan.bibles-gallery .marker {
  top: 61.5%;
  left: 47%;
}
.floor-plan.exploring-early-americas .marker {
  top: 68.5%;
  left: 33%;
}
.floor-plan.geography-and-map-corridor .marker {
  top: 63%;
  left: 47%;
}
.floor-plan.gershwin-room .marker {
  top: 66.5%;
  left: 20.5%;
}
.floor-plan.graphic-arts-galleries .marker {
  top: 66.5%;
  left: 73.5%;
}
.floor-plan.main-reading-room-visitor-gallery .marker {
  top: 52.5%;
  left: 47%;
}
.floor-plan.minerva-mosaic .marker {
  top: 55.5%;
  left: 47%;
}
.floor-plan.north-exhibition-gallery .marker {
  top: 75%;
  left: 37%;
}
.floor-plan.south-exhibition-gallery .marker {
  top: 59%;
  left: 83%;
}
.floor-plan.southwest-exhibition-gallery .marker {
  top: 69%;
  left: 61%;
}
.floor-plan.thomas-jeffersons-library .marker {
  top: 69%;
  left: 78%;
}
.floor-plan.young-readers-center .marker {
  top: 20%;
  left: 13%;
}
.floor-plan.visitor-tours .marker {
  top: 72%;
  left: 39%;
}
.floor-plan.main-reading-room .marker {
  top: 31%;
  left: 47%;
}
.floor-plan.african-and-middle-eastern .marker {
  top: 61%;
  left: 10.5%;
}
.floor-plan.american-folklife-center .marker {
  top: 34%;
  left: 84%;
}
.floor-plan.asian .marker {
  top: 64%;
  left: 80%;
}
.floor-plan.childrens-literature .marker {
  top: 19%;
  left: 13.5%;
}
.floor-plan.european .marker {
  top: 17%;
  left: 78%;
}
.floor-plan.geography-and-map .marker {
  top: 65%;
  left: 47%;
}
.floor-plan.federal-research-division .marker {
  top: 60%;
  left: 20%;
}
.floor-plan.hispanic .marker {
  top: 20%;
  left: 63%;
}
.floor-plan.kluge-center .marker {
  top: 38%;
  left: 11%;
}
.floor-plan.law-library .marker {
  top: 40%;
  left: 40%;
}
.floor-plan.learning-and-training-center .marker {
  top: 59%;
  left: 41%;
}
.floor-plan.local-history-and-genealogy .marker {
  top: 20.5%;
  left: 67.5%;
}
.floor-plan.manuscript .marker {
  top: 41%;
  left: 45%;
}
.floor-plan.microform .marker {
  top: 10%;
  left: 57.5%;
}
.floor-plan.motion-picture-and-television .marker {
  top: 38%;
  left: 32%;
}
.floor-plan.newspaper-and-current-periodical .marker {
  top: 42%;
  left: 29%;
}
.floor-plan.performing-arts .marker {
  top: 42%;
  left: 66.5%;
}
.floor-plan.prints-and-photographs .marker {
  top: 39.5%;
  left: 28.5%;
}
.floor-plan.rare-book-and-special-collections .marker {
  top: 20%;
  left: 47%;
}
.floor-plan.recorded-sound .marker {
  top: 25%;
  left: 73%;
}
.floor-plan.science-and-business .marker {
  top: 42%;
  left: 65%;
}
.floor-plan.coolidge-auditorium .marker {
  top: 56%;
  left: 21%;
}
.floor-plan.dining-room-a .marker {
  top: 13%;
  left: 65%;
}
.floor-plan.montpelier-room .marker {
  top: 15%;
  left: 69%;
}
.floor-plan.mumford-room .marker {
  top: 47%;
  left: 48%;
}
.floor-plan.pickford-theater .marker {
  top: 42%;
  left: 47%;
}
.floor-plan.whittall-pavilion .marker {
  top: 59.5%;
  left: 35%;
}
.floor-plan.reader-registration .marker {
  top: 65%;
  left: 35%;
}
.floor-plan.visitor-information-desk-1 .marker {
  top: 60%;
  left: 47%;
}
.floor-plan.visitor-information-desk-2 .marker {
  top: 67%;
  left: 37%;
}
.floor-plan.visitor-information-desk-3 .marker {
  top: 68.5%;
  left: 57.5%;
}
.floor-plan.madison-visitor-information-desk .marker {
  top: 62%;
  left: 47.5%;
}
.floor-plan.carriage-entrance-cloak-room .marker {
  top: 66%;
  left: 57%;
}
.floor-plan.researcher-entrance-cloak-room .marker {
  top: 13.5%;
  left: 54%;
}
.floor-plan.madison-cloak-room .marker {
  top: 66.5%;
  left: 36.5%;
}
.floor-plan.lost-and-found .marker {
  top: 41%;
  left: 66%;
}
.floor-plan.library-shop .marker {
  top: 74%;
  left: 57%;
}
.floor-plan.madison-main-cafeteria .marker {
  top: 25%;
  left: 47%;
}
.floor-plan.madison-ground-floor-cafeteria .marker {
  top: 74%;
  left: 28.5%;
}
.floor-plan.adams-cafeteria .marker {
  top: 57%;
  left: 82%;
}
.volunteer-form {
  padding: 2px 0;
}
.volunteer-form .volunteer-form-day {
  width: 19%;
}
.volunteer-form .volunteer-form-shift {
  width: 27%;
}
.tab-navigation {
  background-color: #ddedfd;
  margin: 0 0 27px;
}
.tab-navigation ul {
  margin: 0;
  padding: 0;
  list-style: none;
  text-align: center;
  border-bottom: 2px solid #8fbbe4;
}
.tab-navigation ul li {
  margin: 4px 0 4px -4px;
  padding: 1px 15px 0;
  list-style: none;
  display: inline-block;
  border-left: 1px solid #8fbbe4;
  background-color: transparent;
}
.tab-navigation ul li strong {
  font-weight: normal;
}
.tab-navigation ul li a {
  color: #0078ae;
}
.tab-navigation ul li:first-child {
  border-left: none;
}
.tab-navigation ul li:last-child {
  border-right: none !important;
}
.tab-navigation ul li.selected {
  margin: 0 0 -2px;
  padding: 5px 15px 6px;
  border: 2px solid #8fbbe4 !important;
  border-bottom-color: #ffffff;
  border-bottom: none !important;
  border-radius: 4px 4px 0 0;
  background-color: #ffffff;
  color: #333333;
}
.tab-navigation ul li.selected strong {
  font-weight: bold;
}
.tab-navigation ul li.selected a {
  color: #333333;
  cursor: text;
}
.tab-navigation ul li.selected ~ li {
  border-left: none;
  border-right: 1px solid #8fbbe4;
}
@media screen and (max-width: 810px) {
  .tab-navigation ul li.selected ~ li {
    border: none;
  }
}
@media screen and (max-width: 810px) {
  .tab-navigation ul li.selected {
    border: 2px solid #8fbbe4 !important;
    border-radius: 4px;
    margin: 0;
  }
}
@media screen and (max-width: 810px) {
  .tab-navigation ul li {
    margin: 2px 0;
    padding: 4px 10px;
    border: none;
  }
}
@media screen and (max-width: 810px) {
  .tab-navigation ul {
    padding: 10px;
    text-align: left;
    border-bottom: none;
  }
}
.search-results-heading {
  padding: 0 0 8px;
  border-bottom: 1px solid #efefef;
}
.search-results-heading h1 {
  font-size: 18px;
  line-height: 22.5px;
  font-weight: bold;
  margin: 0;
}
.search-results-heading h1 small {
  font-weight: normal;
  line-height: 1;
  color: #666;
  font-size: 12px;
}
@media screen and (max-width: 480px) {
  .search-results-heading h1 small {
    display: block;
    margin-top: 5px;
  }
}
.search-results-heading h1 small.block {
  display: block;
  margin-top: 5px;
}
.search-results-heading h1 small span {
  font-weight: bold;
}
.search-results {
  list-style: none;
  padding: 0;
  margin: 0;
}
.search-results > li {
  word-wrap: break-word;
  margin-bottom: 18px;
}
.search-results > li figure {
  margin: 0;
  padding: 0;
  text-align: center;
}
.search-results > li figure img {
  display: block;
  max-width: 100%;
  height: auto;
  width: auto\9;
  /* ie8 */

  display: inline-block;
  margin: 0;
}
.search-results > li .description {
  margin-bottom: 18px;
}
.search-results > li .description.no-icon {
  padding-left: 0 !important;
}
.search-results > li .description h2 {
  font-size: 12px;
  line-height: 18px;
  margin-bottom: 0;
  font-weight: normal;
  margin-bottom: 9px;
  font-weight: bold;
  line-height: 16px;
}
.search-results > li .description h3 {
  font-size: 12px;
  line-height: 18px;
  margin-bottom: 0;
  font-weight: normal;
  margin-bottom: 9px;
  line-height: 16px;
}
.search-results > li .description > ul {
  list-style: none;
  padding: 0;
  margin: 0;
  margin-bottom: 9px;
}
.search-results > li .description > ul > li {
  margin-bottom: 4.5px;
  line-height: 16px;
}
.search-results > li .description p {
  margin-bottom: 9px;
  line-height: 16px;
}
.search-results.list-view {
  margin-bottom: 18px;
  overflow: hidden;
}
.search-results.list-view > li {
  padding-top: 20px;
  border-top: 1px solid #efefef;
  clear: left;
  overflow: hidden;
  clear: both;
  width: 100%;
}
.search-results.list-view > li:first-child {
  border: none;
  padding-top: 5px;
}
.search-results.list-view > li figure {
  clear: left;
  width: 22%;
  height: 100%;
  overflow: hidden;
  margin-bottom: 18px;
  float: left;
}
@media screen and (max-width: 650px) {
  .search-results.list-view > li figure {
    width: 27%;
  }
}
.search-results.list-view > li .description {
  clear: right;
  padding-left: 25%;
}
@media screen and (max-width: 650px) {
  .search-results.list-view > li .description {
    padding-left: 30%;
  }
}
.search-results.list-view > li .description h2 {
  font-size: 13.5px;
  line-height: 18.900000000000002px;
  font-weight: bold;
}
.search-results.list-view > li .description h2 small {
  font-weight: normal;
  line-height: 1;
  color: #666;
  font-size: 12px;
}
@media screen and (max-width: 480px) {
  .search-results.list-view > li .description h2 small {
    display: block;
    margin-top: 5px;
  }
}
.search-results.list-view > li .description h2 small.block {
  display: block;
  margin-top: 5px;
}
.search-results.list-view > li .description p.items-count {
  display: inline-block;
  margin-bottom: 0 !important;
}
.search-results.list-view > li .description p.items-count a {
  display: block;
  border: 1px solid #0078ae;
  padding: 5px 10px;
}
.search-results.list-view > li .description > ul {
  -ms-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
.search-results.list-view > li .description > ul > li {
  margin: 0;
  padding: 0;
  display: table;
  table-layout: fixed;
  width: 100%;
}
.search-results.list-view > li .description > ul > li .table-cell {
  display: table-cell;
  text-align: left;
  vertical-align: top;
}
.search-results.list-view > li .description > ul > li strong {
  display: table-cell;
  text-align: left;
  vertical-align: top;
  width: 95px;
  padding-right: 5px;
}
.search-results.list-view > li .description > ul > li span {
  display: table-cell;
  text-align: left;
  vertical-align: top;
}
.search-results.list-view.no-figure > li {
  padding-left: 0;
}
.search-results.list-view.no-figure figure {
  display: none;
}
.search-results.list-view.multi-image-viewer {
  padding-top: 30px;
}
.search-results.list-view.multi-image-viewer > li {
  border-color: #666666;
}
.search-results.list-view.multi-image-viewer > li .description h2,
.search-results.list-view.multi-image-viewer > li .description ul,
.search-results.list-view.multi-image-viewer > li .description p,
.search-results.list-view.multi-image-viewer > li .description h3,
.search-results.list-view.multi-image-viewer > li .description a {
  color: #ffffff;
}
.search-results.gallery-view {
  margin-left: -0.5%;
  margin-right: -0.5%;
  margin: 0\9;
}
.search-results.gallery-view > li {
  margin-bottom: 0 !important;
  border: 1px solid #efefef;
  padding: 2.5% 2.5% 1%;
  -ms-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
.search-results.gallery-view > li:hover {
  border-color: #666;
  z-index: 3000;
}
.search-results.gallery-view > li figure {
  overflow: hidden;
  margin-bottom: 4.5px;
  position: relative;
}
.search-results.gallery-view > li figure img {
  display: inline-block;
  margin-bottom: 0 !important;
}
.search-results.gallery-view > li.item {
  width: 24%;
  margin: 1% .5%;
}
@media screen and (max-width: 810px) {
  .search-results.gallery-view > li.item {
    width: 32.3333333%;
  }
}
@media screen and (max-width: 480px) {
  .search-results.gallery-view > li.item {
    width: 49%;
  }
}
.search-results.gallery-view > li.item.landscape {
  width: 24%;
}
.search-results.gallery-view.related-items > li.item {
  width: 15.666666%;
  margin: 1% .5%;
}
@media screen and (max-width: 810px) {
  .search-results.gallery-view.related-items > li.item {
    width: 32.3333333%;
    width: 24%;
  }
}
@media screen and (max-width: 480px) {
  .search-results.gallery-view.related-items > li.item {
    width: 49%;
    width: 32.3333333%;
  }
}
.search-results.gallery-view.related-items > li.item.landscape {
  width: 24%;
}
.search-results.gallery-view.one-column > li.item {
  width: 19%;
  margin: 1% .5%;
}
@media screen and (max-width: 980px) {
  .search-results.gallery-view.one-column > li.item {
    width: 24%;
  }
}
@media screen and (max-width: 810px) {
  .search-results.gallery-view.one-column > li.item {
    width: 32.3333333%;
  }
}
@media screen and (max-width: 480px) {
  .search-results.gallery-view.one-column > li.item {
    width: 49%;
  }
}
.search-results.gallery-view.one-column > li.item.landscape {
  width: 24%;
}
.search-results.gallery-view.collections > li .description {
  margin-bottom: 9px;
}
.search-results.gallery-view.collections > li .description ul,
.search-results.gallery-view.collections > li .description p {
  display: none;
}
.search-results.gallery-view.collections > li .description p.items-count {
  display: block;
  text-align: center;
  margin-bottom: 0 !important;
}
.search-results.gallery-view.collections > li .description p.items-count a {
  display: block;
  border: 1px solid #0078ae;
  padding: 5px;
}
.search-results.gallery-view.multi-image-viewer > li {
  border: 1px solid #000000;
  padding: 1.8% 1.8% 0.5%;
}
.search-results.gallery-view.multi-image-viewer > li:hover {
  border-color: #666;
}
.search-results.gallery-view.multi-image-viewer > li.item {
  width: 19%;
}
@media screen and (max-width: 810px) {
  .search-results.gallery-view.multi-image-viewer > li.item {
    width: 32.3333333%;
  }
}
@media screen and (max-width: 480px) {
  .search-results.gallery-view.multi-image-viewer > li.item {
    width: 49%;
  }
}
.search-results.gallery-view.multi-image-viewer > li.item.landscape {
  width: 24%;
}
.search-results.gallery-view.multi-image-viewer > li .description h2,
.search-results.gallery-view.multi-image-viewer > li .description ul,
.search-results.gallery-view.multi-image-viewer > li .description p,
.search-results.gallery-view.multi-image-viewer > li .description h3,
.search-results.gallery-view.multi-image-viewer > li .description a {
  color: #ffffff;
}
.search-results.grid-view {
  margin-left: -0.5%;
  margin-right: -0.5%;
  margin: 0\9;
}
.search-results.grid-view > li {
  width: 19%;
  margin: .5%;
  -ms-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
@media screen and (max-width: 980px) {
  .search-results.grid-view > li {
    width: 24%;
  }
}
@media screen and (max-width: 810px) {
  .search-results.grid-view > li {
    width: 32.333333333%;
  }
}
@media screen and (max-width: 650px) {
  .search-results.grid-view > li {
    width: 32.333333333%;
  }
}
@media screen and (max-width: 480px) {
  .search-results.grid-view > li {
    width: 49%;
  }
}
.search-results.grid-view > li .description {
  display: none;
  position: relative;
}
.search-results.grid-view > li .description h3,
.search-results.grid-view > li .description ul,
.search-results.grid-view > li .description p {
  display: none;
}
.search-results.grid-view > li .description h2 {
  display: none;
}
.search-results.grid-view > li:hover .description {
  display: block;
}
.search-results.grid-view > li:hover .description h2 {
  display: block;
  text-overflow: ellipsis;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: #000000;
  background-color: rgba(0, 0, 0, 0.9);
  margin: 0;
  padding: 2px;
  font-weight: normal;
}
.search-results.grid-view > li:hover .description h2 a {
  color: white;
  text-decoration: none;
}
.search-results.slideshow-view {
  max-height: 590px;
}
.search-results.slideshow-view.rsFullscreen {
  max-height: none !important;
}
.search-results.slideshow-view.rsDefault .rsArrow {
  width: 48px;
}
.search-results.slideshow-view.rsDefault .rsArrow .rsArrowIcn {
  border-radius: 0;
  background-image: url("/static/images/sprite-loc.png");
  background-position: -35px -105px;
  background-color: rgba(0, 0, 0, 0.5);
  width: 45px;
  height: 66px;
  margin-top: -33px;
  margin-left: -22.5px;
}
.search-results.slideshow-view.rsDefault.rsHor .rsArrow.rsArrowLeft .rsArrowIcn {
  background-position: 0 -105px;
}
.search-results.slideshow-view.rsDefault .rsFullscreenBtn {
  width: 41px;
  height: 41px;
  right: 0;
  top: 0;
}
.search-results.slideshow-view.rsDefault .rsFullscreenBtn .rsFullscreenIcn {
  border-radius: 0;
  background-image: url("/static/images/sprite-loc.png");
  background-position: -202px -105px;
  background-color: rgba(0, 0, 0, 0.5);
  margin: 0;
  width: 41px;
  height: 41px;
}
.search-results.slideshow-view li figure {
  position: relative;
}
.search-results.slideshow-view li figure img.catalogrecord {
  position: absolute;
  top: 5px;
  left: 5px;
}
.search-results.slideshow-view li .description {
  margin-bottom: 0 !important;
}
.search-results.slideshow-view li .description h2 {
  font-size: 12px;
  line-height: 18px;
  font-weight: bold;
  margin-bottom: 0 !important;
  color: #ffffff;
}
.search-results.slideshow-view li .description h2 small {
  font-weight: normal;
  line-height: 1;
  color: #666;
  font-size: 12px;
}
@media screen and (max-width: 480px) {
  .search-results.slideshow-view li .description h2 small {
    display: block;
    margin-top: 5px;
  }
}
.search-results.slideshow-view li .description h2 small.block {
  display: block;
  margin-top: 5px;
}
.search-results.slideshow-view li .description h2 a {
  color: #ffffff;
}
.search-results.slideshow-view li .description h3 {
  font-size: 12px;
  line-height: 18px;
  margin-bottom: 0;
  font-weight: normal;
  margin-bottom: 9px;
  line-height: 16px;
  color: #ffffff;
}
@media screen and (max-width: 650px) {
  .search-results.slideshow-view li .description h3 {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
}
.search-results.slideshow-view li .description ul {
  display: none;
}
.search-results.slideshow-view li .description a {
  color: #d4e9ff;
}
.inverted-row-with-paginations {
  background-color: #000000;
  padding: 0 20px;
  margin: 0;
}
.inverted-row-with-paginations .search-results {
  border-bottom: 1px solid #666666;
}
.inverted-row-with-paginations .search-results.list-view {
  margin-bottom: 0 !important;
}
.inverted-row-with-paginations .search-results.grid-view {
  padding-top: 2.5%;
  padding-bottom: 2.5%;
}
.rsDefault,
.rsDefault .rsOverflow,
.rsDefault .rsSlide,
.rsDefault .rsVideoFrameHolder,
.rsDefault .rsThumbs {
  background: #000000 !important;
}
/*pagination-new*/
.pagination-new {
  float: right;
}
.nav-common {
  border-bottom: 1px solid #efefef;
  padding: 8px 0;
  clear: both;
  background-color: transparent;
}
.nav-results {
  border-bottom: 1px solid #efefef;
  padding: 8px 0;
  clear: both;
  background-color: transparent;
}
.nav-controls {
  border-bottom: 1px solid #efefef;
  padding: 8px 0;
  clear: both;
  background-color: transparent;
  margin-bottom: 18px;
}
.nav-controls form {
  margin: 0;
}
.nav-controls .view {
  float: right;
}
.view {
  padding: 2px 0;
}
.view .pag-list {
  margin-left: 0;
  padding: 0 4px;
  height: 24px;
  line-height: 24px;
  color: #0078AE;
  border: 1px solid transparent;
  display: inline-block;
  -ms-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
@media screen and (max-width: 810px) {
  .view .pag-list span {
    display: none;
  }
}
.view .pag-list i {
  background: transparent url(/static/images/sprite-loc.png) -147px -16px no-repeat;
  display: inline-block;
  width: 13px;
  height: 13px;
  vertical-align: text-top;
  margin: 0 2px 0 0;
}
@media screen and (max-width: 810px) {
  .view .pag-list i {
    margin: 0;
  }
}
.view .pag-list:hover,
.view .pag-list:focus,
.view .pag-list .selected {
  background-color: #eee;
  border: 1px solid #ddd;
}
.view .pag-list.pag-selected {
  background-color: #eee;
  border: 1px solid #ddd;
  color: #666;
}
.view .pag-list.pag-selected i {
  background-position: -147px -29px;
}
.view .pag-gallery {
  margin-left: 0;
  padding: 0 4px;
  height: 24px;
  line-height: 24px;
  color: #0078AE;
  border: 1px solid transparent;
  display: inline-block;
  -ms-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
@media screen and (max-width: 810px) {
  .view .pag-gallery span {
    display: none;
  }
}
.view .pag-gallery i {
  background: transparent url(/static/images/sprite-loc.png) -147px -16px no-repeat;
  display: inline-block;
  width: 13px;
  height: 13px;
  vertical-align: text-top;
  margin: 0 2px 0 0;
}
@media screen and (max-width: 810px) {
  .view .pag-gallery i {
    margin: 0;
  }
}
.view .pag-gallery:hover,
.view .pag-gallery:focus,
.view .pag-gallery .selected {
  background-color: #eee;
  border: 1px solid #ddd;
}
.view .pag-gallery.pag-selected {
  background-color: #eee;
  border: 1px solid #ddd;
  color: #666;
}
.view .pag-gallery.pag-selected i {
  background-position: -147px -29px;
}
.view .pag-gallery i {
  background-position: -121px -16px;
}
.view .pag-gallery.pag-selected i {
  background-position: -121px -29px;
}
.view .pag-grid {
  margin-left: 0;
  padding: 0 4px;
  height: 24px;
  line-height: 24px;
  color: #0078AE;
  border: 1px solid transparent;
  display: inline-block;
  -ms-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
@media screen and (max-width: 810px) {
  .view .pag-grid span {
    display: none;
  }
}
.view .pag-grid i {
  background: transparent url(/static/images/sprite-loc.png) -147px -16px no-repeat;
  display: inline-block;
  width: 13px;
  height: 13px;
  vertical-align: text-top;
  margin: 0 2px 0 0;
}
@media screen and (max-width: 810px) {
  .view .pag-grid i {
    margin: 0;
  }
}
.view .pag-grid:hover,
.view .pag-grid:focus,
.view .pag-grid .selected {
  background-color: #eee;
  border: 1px solid #ddd;
}
.view .pag-grid.pag-selected {
  background-color: #eee;
  border: 1px solid #ddd;
  color: #666;
}
.view .pag-grid.pag-selected i {
  background-position: -147px -29px;
}
.view .pag-grid i {
  background-position: -134px -16px;
}
.view .pag-grid.pag-selected i {
  background-position: -134px -29px;
}
.view .pag-slideshow {
  margin-left: 0;
  padding: 0 4px;
  height: 24px;
  line-height: 24px;
  color: #0078AE;
  border: 1px solid transparent;
  display: inline-block;
  -ms-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
@media screen and (max-width: 810px) {
  .view .pag-slideshow span {
    display: none;
  }
}
.view .pag-slideshow i {
  background: transparent url(/static/images/sprite-loc.png) -147px -16px no-repeat;
  display: inline-block;
  width: 13px;
  height: 13px;
  vertical-align: text-top;
  margin: 0 2px 0 0;
}
@media screen and (max-width: 810px) {
  .view .pag-slideshow i {
    margin: 0;
  }
}
.view .pag-slideshow:hover,
.view .pag-slideshow:focus,
.view .pag-slideshow .selected {
  background-color: #eee;
  border: 1px solid #ddd;
}
.view .pag-slideshow.pag-selected {
  background-color: #eee;
  border: 1px solid #ddd;
  color: #666;
}
.view .pag-slideshow.pag-selected i {
  background-position: -147px -29px;
}
.view .pag-slideshow i {
  background-position: -108px -16px;
}
.view .pag-slideshow.pag-selected i {
  background-position: -108px -29px;
}
.paginations {
  clear: both;
  margin-top: 18px;
  border-top: 1px solid #efefef;
  padding: 8px 0;
}
.paginations a {
  display: inline-block;
  color: #0078ae;
  padding: 0 10px;
  border: 1px solid transparent;
  font-size: 14px;
  height: 30px;
  line-height: 30px;
  font-weight: bold;
  text-decoration: none;
}
.paginations a:hover,
.paginations a:focus {
  text-decoration: underline;
}
.paginations a.off,
.paginations a.selected {
  color: #666666;
  cursor: text;
  text-decoration: none !important;
  background: transparent;
  border-color: transparent;
}
.paginations a.prev {
  border: 1px solid #0078ae;
  text-decoration: none;
  padding-left: 15px;
  padding-right: 15px;
  margin-right: 10px;
}
.paginations a.prev i {
  width: 6px;
  height: 11px;
  display: inline-block;
  background: transparent url(/static/images/sprite-loc.png) -24px -68px no-repeat;
}
.paginations a.prev.off {
  color: #666666;
  cursor: text;
  text-decoration: none !important;
  border-color: #cccccc;
}
.paginations a.prev.off i {
  background-position: -24px -79px;
}
.paginations a.prev span {
  position: absolute;
  left: 0;
  top: -5000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.paginations a.next {
  border: 1px solid #0078ae;
  text-decoration: none;
  padding-left: 15px;
  padding-right: 15px;
  margin-left: 10px;
}
.paginations a.next i {
  width: 6px;
  height: 11px;
  display: inline-block;
  background: transparent url(/static/images/sprite-loc.png) -30px -68px no-repeat;
}
.paginations a.next.off {
  color: #666666;
  cursor: text;
  text-decoration: none !important;
  border-color: #cccccc;
}
.paginations a.next.off i {
  background-position: -30px -79px;
}
.paginations a.next span {
  position: absolute;
  left: 0;
  top: -5000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.paginations.inverted {
  background-color: #000000;
  padding: 20px 20px 20px;
  margin-top: 0;
}
.paginations.inverted a {
  color: #ffffff;
}
.paginations.inverted a.off,
.paginations.inverted a.selected {
  color: #666666;
}
.paginations.inverted a.prev {
  border-color: #ffffff;
}
.paginations.inverted a.prev i {
  background-position: -24px -79px;
}
.paginations.inverted a.prev.off {
  border-color: #666666;
}
.paginations.inverted a.prev.off i {
  opacity: .50;
}
.paginations.inverted a.next {
  border-color: #ffffff;
}
.paginations.inverted a.next i {
  background-position: -30px -79px;
}
.paginations.inverted a.next.off {
  border-color: #666666;
}
.paginations.inverted a.next.off i {
  opacity: .50;
}
.paginations.inverted label {
  color: #ffffff;
}
.facet-heading {
  font-size: 13.5px;
  line-height: 18.900000000000002px;
  font-weight: bold;
  margin: 0;
  padding: 13px 0;
}
.facet-heading small {
  font-weight: normal;
  line-height: 1;
  color: #666;
  font-size: 12px;
}
@media screen and (max-width: 480px) {
  .facet-heading small {
    display: block;
    margin-top: 5px;
  }
}
.facet-heading small.block {
  display: block;
  margin-top: 5px;
}
.facet-trail {
  border-bottom: 1px solid #efefef;
  padding: 7px 0;
  clear: both;
  background-color: transparent;
}
.facet-trail h2 {
  display: inline-block;
  font-weight: normal;
  font-size: 1em;
  margin-right: 3px;
  height: 28px;
  line-height: 28px;
}
.facet-trail a.blue-lozenge {
  text-decoration: none;
  vertical-align: top;
  display: inline-block;
  border: 1px solid #cccccc;
  height: 28px;
  line-height: 26px;
  -ms-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding: 0 8px 0 10px;
  margin: 1px;
}
.facet-trail a.blue-lozenge > span {
  vertical-align: middle;
  display: inline-block;
  max-width: 250px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.expert-resources-box,
.teaching-resources-box {
  border: 1px solid #0078ae;
  margin-bottom: 18px;
  padding: 7.7272727272727275% 9.090909090909092% 2.7272727272727275% 9.090909090909092%;
  border-color: #cccccc;
}
@media screen and (max-width: 650px) {
  .expert-resources-box,
  .teaching-resources-box {
    padding: 1.8085106382978722% 2.127659574468085% 0.6382978723404255% 2.127659574468085%;
  }
}
.expert-resources-box h3,
.teaching-resources-box h3 {
  font-size: 12px;
  line-height: 18px;
  font-weight: bold;
}
.expert-resources-box h3 small,
.teaching-resources-box h3 small {
  font-weight: normal;
  line-height: 1;
  color: #666;
  font-size: 12px;
}
@media screen and (max-width: 480px) {
  .expert-resources-box h3 small,
  .teaching-resources-box h3 small {
    display: block;
    margin-top: 5px;
  }
}
.expert-resources-box h3 small.block,
.teaching-resources-box h3 small.block {
  display: block;
  margin-top: 5px;
}
.expert-resources-box ul,
.teaching-resources-box ul {
  margin-left: 0;
  list-style: none;
  margin-bottom: 13.5px;
}
.expert-resources-box ul .plain,
.teaching-resources-box ul .plain {
  margin-left: 25px;
  list-style: none;
}
.expert-resources-box ul > li,
.teaching-resources-box ul > li {
  margin-bottom: 9px;
}
.expert-resources-box h3,
.teaching-resources-box h3 {
  margin-bottom: 9px;
}
#facet_nav #supplements {
  margin-top: 20px;
}
.boxed-supplement {
  border: 1px solid #cccccc;
  margin-bottom: 18px;
  padding: 5.666666666666667% 6.666666666666667% 2% 6.666666666666667%;
}
.resource-wrapper-new {
  padding-top: 5px;
}
.resource-wrapper-new .resource-new {
  color: #ffffff;
}
.resource-wrapper-new .resource-new .preview-image {
  background-color: #333333;
  float: left;
  -ms-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  width: 70%;
  text-align: center;
}
.resource-wrapper-new .resource-new .preview-image img {
  display: block;
  max-width: 100%;
  height: auto;
  width: auto\9;
  /* ie8 */

  min-width: 50%;
  margin: auto;
}
.resource-wrapper-new .resource-new .preview-image .views-new {
  margin: 5px 0 0;
  color: #cccccc;
  text-align: center;
}
.resource-wrapper-new .resource-new .preview-files {
  color: #ffffff;
  background-color: yellow;
  float: left;
  -ms-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  width: 30%;
}
.item-resource a {
  color: #0078ae !important;
}
.item-resource .wrapper_carousel {
  background-color: #efefef !important;
}
.item-resource li {
  width: 700px !important;
}
.item-resource .plain li {
  margin: 0 0 4.5px !important;
}
.item-supplements .more-like-this,
.item-supplements .related-items {
  margin-bottom: 18px;
}
#viewer-container.image-pane {
  height: 600px !important;
}
@media screen and (max-width: 980px) {
  #viewer-container.image-pane {
    height: 600px !important;
  }
}
@media screen and (max-width: 810px) {
  #viewer-container.image-pane {
    height: 500px !important;
  }
}
@media screen and (max-width: 650px) {
  #viewer-container.image-pane {
    height: 400px !important;
  }
}
@media screen and (max-width: 480px) {
  #viewer-container.image-pane {
    height: 300px !important;
  }
}
#viewer-container.image-pane.fullpage {
  height: 95% !important;
}
.multi-image-viewer-controls {
  background-color: #eee;
  padding: 10px 20px;
  overflow: hidden;
}
@media screen and (max-width: 480px) {
  .multi-image-viewer-controls {
    padding: 10px;
  }
}
.multi-image-viewer-controls .control-section {
  display: inline-block;
  vertical-align: top;
  float: left;
  padding: 0 20px;
  border-left: 1px solid #fff;
  border-right: 1px solid #ccc;
}
@media screen and (max-width: 980px) {
  .multi-image-viewer-controls .control-section {
    border: none;
  }
}
@media screen and (max-width: 650px) {
  .multi-image-viewer-controls .control-section {
    padding: 0 10px;
  }
}
@media screen and (max-width: 480px) {
  .multi-image-viewer-controls .control-section {
    padding: 0 5px;
  }
}
@media screen and (max-width: 980px) {
  .multi-image-viewer-controls .control-section .label {
    display: block;
    float: none;
    height: auto;
    line-height: 18px;
  }
}
@media screen and (max-width: 650px) {
  .multi-image-viewer-controls .control-section .label {
    float: left;
    height: 28px;
    line-height: 28px;
  }
}
.multi-image-viewer-controls .control-section form {
  margin: 0 !important;
  display: inline-block;
  float: left;
}
.multi-image-viewer-controls .control-section form select {
  max-width: 120px;
  max-width: none\9;
}
.multi-image-viewer-controls .control-section form.view {
  padding: 0;
}
.multi-image-viewer-controls .control-section:first-child,
.multi-image-viewer-controls .control-section.first-control {
  padding-left: 0;
  border-left: none;
}
.multi-image-viewer-controls .control-section:last-child,
.multi-image-viewer-controls .control-section:last-of-type {
  padding-right: 0;
  border-right: none !important;
}
@media screen and (max-width: 480px) {
  .multi-image-viewer-controls .control-section.control-section-view .label {
    display: none;
  }
}
@media screen and (max-width: 480px) {
  .multi-image-viewer-controls .control-section.control-section-page .label {
    display: none;
  }
}
@media screen and (max-width: 650px) {
  .multi-image-viewer-controls .control-section.control-section-download {
    display: none;
  }
}
.multi-image-viewer-controls .control-section.control-section-text h3 {
  padding: 0;
  margin: 0;
  font-weight: normal;
  font-size: 12px;
  height: 26px;
  line-height: 26px;
  -ms-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
@media screen and (max-width: 480px) {
  .multi-image-viewer-controls .control-section.control-section-text h3 span.control-section-text-head {
    display: none;
  }
}
.multi-image-viewer-controls .control-section.control-section-text h3 span.control-section-text-button {
  display: inline-block;
  border: 1px solid #0078ae;
  margin-left: 3px;
  padding: 0 8px;
  -ms-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
.multi-image-viewer-controls .control-section.control-section-text h3 span.control-section-text-button i {
  font-size: 18px;
  font-style: normal;
  font-family: Times;
  vertical-align: bottom;
}
.multi-image-viewer-controls .control-section.control-section-text h3 .text-selected span.control-section-text-button {
  background-color: #0078ae;
  color: #ffffff;
}
.multi-image-viewer-controls .control-section.control-section-text h3 .text-unavailable {
  color: #cccccc;
  cursor: text;
  text-decoration: none;
}
.multi-image-viewer-controls .control-section.control-section-text h3 .text-unavailable span.control-section-text-button {
  color: #cccccc;
  border-color: #cccccc;
}
.multi-image-viewer-controls .paginations {
  display: inline-block;
  vertical-align: top;
  clear: none;
  margin: 0 0 0 10px;
}
@media screen and (max-width: 980px) {
  .multi-image-viewer-controls .paginations {
    display: none;
  }
}
.multi-image-viewer-controls .paginations a {
  height: 26px;
  line-height: 26px;
  padding: 0 12px;
  margin: 0;
}
.multi-image-viewer-controls .paginations a.prev {
  margin-right: 5px;
}
.multi-image-viewer-controls.fullpage {
  -ms-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 99999999;
  margin: 0;
  width: 100%;
  border: 0;
}
.multi-image-viewer-controls.single-image-viewer-controls .control-section form select {
  max-width: 200px;
}
@media screen and (max-width: 650px) {
  .multi-image-viewer-controls.single-image-viewer-controls .control-section.control-section-download {
    display: inline-block;
  }
}
@media screen and (max-width: 480px) {
  .multi-image-viewer-controls.single-image-viewer-controls .control-section.control-section-download .label {
    display: none;
  }
}
.image-pane {
  background-color: #000000;
  vertical-align: middle;
  position: relative !important;
  -ms-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding: 5px;
}
.image-pane .button {
  cursor: pointer;
  position: absolute;
  text-decoration: none;
  width: 45px;
  height: 66px;
  top: 50%;
  z-index: 6000;
  margin-top: -33px;
  background-image: url("/static/images/sprite-loc.png");
  background-color: rgba(0, 0, 0, 0.5);
  text-indent: -5000em;
}
.image-pane .button.prev {
  left: 10px;
  background-position: 0 -105px;
}
@media screen and (max-width: 810px) {
  .image-pane .button.prev {
    left: 0;
    top: auto;
    margin-top: 0;
    bottom: 0;
  }
}
.image-pane .button.next {
  right: 10px;
  background-position: -35px -105px;
}
@media screen and (max-width: 810px) {
  .image-pane .button.next {
    right: 0;
    top: auto;
    margin-top: 0;
    bottom: 0;
  }
}
.text-image-split-view {
  border-top: 1px solid #ffffff;
  margin: 0;
  padding: 0;
  position: relative;
  margin-bottom: 18px;
}
.text-image-split-view .image-pane {
  width: 50%;
  position: relative;
  -ms-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  float: left;
  display: block;
}
@media screen and (max-width: 650px) {
  .text-image-split-view .image-pane {
    display: block;
    width: 100%;
  }
}
.text-image-split-view .text-pane {
  vertical-align: top;
  width: 50%;
  -ms-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  background-color: #f5f5f5;
  padding: 20px;
  float: left;
  display: block;
}
.text-image-split-view .text-pane > div {
  height: 560px;
  overflow: auto;
  margin: 0;
}
@media screen and (max-width: 810px) {
  .text-image-split-view .text-pane > div {
    height: 460px;
  }
}
@media screen and (max-width: 650px) {
  .text-image-split-view .text-pane > div {
    height: auto;
  }
}
@media screen and (max-width: 650px) {
  .text-image-split-view .text-pane {
    display: block;
    width: 100%;
  }
}
.multi-image-viewer-buttons {
  position: absolute;
  z-index: 6000;
  width: 54px;
  height: 53px;
  background-image: url("/static/images/sprite-loc.png");
  background-color: rgba(0, 0, 0, 0.5);
}
.multi-image-viewer-buttons.zoom-in {
  background-position: -158px -105px;
  left: 10px;
  top: 10px;
}
@media screen and (max-width: 810px) {
  .multi-image-viewer-buttons.zoom-in {
    left: 0;
    top: 0;
  }
}
.multi-image-viewer-buttons.zoom-out {
  background-position: -114px -105px;
  left: 10px;
  top: 63px;
}
@media screen and (max-width: 810px) {
  .multi-image-viewer-buttons.zoom-out {
    left: 0;
    top: 53px;
  }
}
.multi-image-viewer-buttons.fit-screen {
  background-position: -70px -105px;
  left: 10px;
  top: 116px;
}
@media screen and (max-width: 810px) {
  .multi-image-viewer-buttons.fit-screen {
    left: 0;
    top: 106px;
  }
}
.multi-image-viewer-buttons.full-screen {
  background-position: -202px -105px;
  top: 10px;
  left: auto;
  right: 10px;
  width: 41px;
  height: 41px;
}
@media screen and (max-width: 810px) {
  .multi-image-viewer-buttons.full-screen {
    right: 0;
    top: 0;
  }
}
.multi-image-viewer-buttons:focus {
  outline: 0;
}
.multi-image-viewer-buttons span {
  position: absolute;
  left: 0;
  top: -5000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.thumb-list {
  padding: 0;
  margin-left: 0;
  margin-bottom: 0;
  list-style: none;
}
.thumb-list .section,
.thumb-list li {
  clear: both;
  overflow: hidden;
  padding: 0;
  margin: 0;
}
.thumb-list .section img,
.thumb-list li img {
  height: auto;
  float: left;
  display: block;
  margin-bottom: 18px;
  width: 30%;
  margin-top: 5px;
}
.thumb-list .section .info,
.thumb-list li .info {
  padding-left: 33%;
}
.thumb-list.thumb-list-width-20 .section img,
.thumb-list.thumb-list-width-20 li img {
  width: 20%;
}
.thumb-list.thumb-list-width-20 .section .info,
.thumb-list.thumb-list-width-20 li .info {
  padding-left: 22%;
}
.intersite-nav {
  text-align: right;
  overflow: hidden;
  font-family: Arial, Helvetica, sans_serif;
  font-size: 11px;
  color: #666666;
  padding: 0 2px;
  margin: 0;
}
.intersite-nav a {
  color: #666666;
  text-decoration: none;
}
.intersite-nav a:visited {
  color: #666666;
  text-decoration: none;
}
.intersite-nav a:hover,
.intersite-nav a:focus,
.intersite-nav a:active {
  color: #333333;
  text-decoration: underline;
}
.intersite-nav .nav {
  display: inline-block;
  float: left;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.intersite-nav .nav ul {
  padding: 0;
  margin: 0;
  list-style: none;
  overflow: hidden;
}
.intersite-nav .nav ul li {
  float: left;
  margin: 0;
  padding: 9px 20px 6px 0;
  list-style: none;
  color: #333333;
}
.intersite-nav .nav ul li a {
  display: inline-block;
}
.intersite-nav .nav ul li.selected {
  font-weight: bold;
  background: transparent url(/static/images/sprite-globalnav.png) 66% 100% no-repeat;
}
.intersite-nav .info {
  display: inline-block;
  padding-top: 6px;
}
.intersite-nav .info .txt {
  display: inline-block;
  vertical-align: top;
  padding-top: 2px;
  letter-spacing: 1px;
}
.intersite-nav .info a.loc {
  display: inline-block;
  margin-left: 0px;
  width: 134px;
  height: 17px;
  background: transparent url(/static/images/sprite-globalnav.png) 0 0 no-repeat;
}
.intersite-nav .info a.loc:hover,
.intersite-nav .info a.loc:focus {
  background-position: 0 -34px;
}
.intersite-nav .info a.loc span {
  position: absolute;
  left: 0;
  top: -5000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
@media screen and (max-width: 980px) {
  .intersite-nav {
    padding: 0 15px;
  }
}
@media screen and (max-width: 810px) {
  
}
@media screen and (max-width: 650px) {
  .intersite-nav .info {
    display: none;
  }
}
@media screen and (max-width: 480px) {
  .intersite-nav {
    display: none;
  }
}
@media print {
  .intersite-nav {
    display: none !important;
  }
}
.loc-global-header {
  font-family: Arial, Helvetica, sans_serif;
  font-size: 12px;
  color: #333333;
  line-height: 18px;
  position: relative;
  border-top: 2px solid #999999;
}
.loc-global-header .padding-all {
  padding: 2.127659574468085%;
}
.loc-global-header .padding-trl {
  padding: 2.127659574468085% 2.127659574468085% 0;
}
.loc-global-header .padding-rl {
  padding: 0 2.127659574468085%;
}
.loc-global-header .padding-rlb {
  padding: 0 2.127659574468085% 2.127659574468085%;
}
.loc-global-header .bg-colored {
  background-color: #ffffff;
}
.loc-global-header .head-more {
  text-align: right;
  clear: both;
}
.loc-global-header .head-more a {
  display: inline-block;
  border: 1px solid #cccccc;
  padding: 3px 10px;
}
.loc-global-header .shadow-bottom {
  -webkit-box-shadow: 0 15px 15px -15px rgba(0, 0, 0, 0.3);
  -moz-box-shadow: 0 15px 15px -15px rgba(0, 0, 0, 0.3);
  box-shadow: 0 15px 15px -15px rgba(0, 0, 0, 0.3);
}
.loc-global-header .loc-global-header-logo {
  padding: 1.2515644555694618% 2.127659574468085%;
}
.loc-global-header .loc-global-header-logo h1 {
  margin: 0;
  padding: 0;
}
.loc-global-header .loc-global-header-logo .loc-logo {
  display: block;
  height: 32px;
  width: 375px;
}
.loc-global-header .loc-global-header-logo .loc-logo img {
  display: block;
}
.loc-global-header .loc-global-header-menu-link {
  display: none;
}
.loc-global-header .loc-global-header-menu-link a {
  color: #ffffff;
  padding: 5px 2.127659574468085%;
  background-color: #0078ae;
  font-weight: bold;
  font-size: 12px;
  display: block;
}
.loc-global-header .loc-global-header-submenu {
  position: absolute;
  right: 2.127659574468085%;
  top: 0;
}
.loc-global-header .loc-global-header-submenu > ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.loc-global-header .loc-global-header-submenu > ul > li {
  list-style: none;
  display: inline-block;
  border-left: 1px solid #cccccc;
  padding: 4px 5px 2px 8px;
}
.loc-global-header .loc-global-header-submenu > ul > li:first-child {
  border-left: none;
}
.loc-global-header .loc-global-header-submenu > ul > li a {
  color: #666666;
  text-decoration: none;
}
.loc-global-header .loc-global-header-submenu > ul > li a:visited {
  color: #666666;
  text-decoration: none;
}
.loc-global-header .loc-global-header-submenu > ul > li a:hover,
.loc-global-header .loc-global-header-submenu > ul > li a:focus {
  color: #333333;
  text-decoration: underline;
}
.loc-global-header .loc-global-header-submenu > ul > li a:hover,
.loc-global-header .loc-global-header-submenu > ul > li a:active {
  outline: 0;
}
.loc-global-header .loc-global-header-menu {
  margin: 0 7px 7px;
}
.loc-global-header .loc-global-header-menu .sectionDivider {
  padding-left: 10px;
  border-left: 1px solid #cccccc;
}
.loc-global-header .loc-global-header-menu > ul {
  margin: 0;
  padding: 0;
  list-style: none;
  background-color: #0078ae;
  text-align: center;
  position: relative;
}
.loc-global-header .loc-global-header-menu > ul > li {
  margin: 0;
  padding: 5px 15px;
  list-style: none;
  display: inline-block;
  border: 1px solid transparent;
}
.loc-global-header .loc-global-header-menu > ul > li.hover {
  color: #333;
  background: #fff;
  border: 1px solid #ccc;
  border-bottom-color: #fff;
}
.loc-global-header .loc-global-header-menu > ul > li.hover > a {
  color: #333;
}
.loc-global-header .loc-global-header-menu > ul > li.hover .loc-global-header-dropdown {
  top: auto;
  z-index: 5000;
}
.loc-global-header .loc-global-header-menu > ul > li a.menu {
  font-size: 13.5px;
}
.loc-global-header .loc-global-header-menu > ul > li > a {
  color: #fff;
  font-weight: bold;
  text-decoration: none;
}
.loc-global-header .loc-global-header-menu > ul > li h2 {
  font-size: 12px;
  line-height: 18px;
  color: #0078ae;
  text-transform: uppercase;
}
.loc-global-header .loc-global-header-menu > ul > li img {
  max-width: 100%;
  width: auto\9;
}
.loc-global-header .loc-global-header-menu > ul > li ul {
  margin-left: 0;
  padding: 0;
  list-style: none;
}
.loc-global-header .loc-global-header-menu > ul > li ul li {
  margin: 0;
  padding: 0;
  list-style: none;
}
.loc-global-header .loc-global-header-menu > ul > li ul li a {
  color: #333333;
  text-decoration: none;
  display: inline-block;
  padding: 2px 0;
}
.loc-global-header .loc-global-header-menu > ul > li ul li a:hover {
  color: #ffffff;
  background-color: #0078ae;
}
.loc-global-header .loc-global-header-menu > ul > li .loc-global-header-dropdown {
  margin: 4px auto;
  position: absolute;
  left: 0;
  text-align: left;
  padding: 0 2px;
  border-bottom: 8px solid #0078ae;
  width: 100%;
  background-color: #efefef;
  display: none;
  -webkit-box-shadow: 0 10px 15px rgba(0, 0, 0, 0.5);
  -moz-box-shadow: 0 10px 15px rgba(0, 0, 0, 0.5);
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.5);
  -ms-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
html.touch .loc-global-header .loc-global-header-menu > ul > li.hover .loc-global-header-dropdown,
html.touch .loc-global-header .loc-global-header-menu > ul > li.focus .loc-global-header-dropdown {
  display: none;
}
html.touch .loc-global-header .loc-global-header-menu > ul > li .loc-global-header-dropdown {
  display: none;
}
.loc-global-header .loc-global-header-search {
  background-color: #efefef;
  padding: 1.2515644555694618% 2.127659574468085%;
  margin: 0 7px 7px;
}
.loc-global-header .loc-global-header-search .search-menu {
  border: 2px solid #0078ae;
  border-radius: 5px;
  width: 67%;
  margin: 0 auto;
  background-color: #ffffff;
}
.loc-global-header .loc-global-header-search .search-menu form {
  margin: 0;
  padding: 0;
}
.loc-global-header .loc-global-header-search .search-menu form label {
  display: none;
}
.loc-global-header .loc-global-header-search .search-menu form .form-wrapper {
  border: 2px solid #ffffff;
  border-radius: 2px;
  overflow: hidden;
}
.loc-global-header .loc-global-header-search .search-menu form .form-wrapper input,
.loc-global-header .loc-global-header-search .search-menu form .form-wrapper button,
.loc-global-header .loc-global-header-search .search-menu form .form-wrapper select {
  width: 100%;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 12px;
}
.loc-global-header .loc-global-header-search .search-menu form .formats {
  -ms-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  width: 30%;
  float: left;
  border-radius: 3px;
  background-color: #efefef;
}
.loc-global-header .loc-global-header-search .search-menu form .formats select {
  border: none;
  color: #333333;
  padding: 4px;
  margin: 0;
  background-color: transparent;
}
.loc-global-header .loc-global-header-search .search-menu form .search-input {
  -ms-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  width: 63%;
  float: left;
}
.loc-global-header .loc-global-header-search .search-menu form .search-input input {
  font-size: 12px;
  background-color: transparent;
  border: none;
  -webkit-appearance: textfield;
  border-radius: 0;
  -moz-border-radius: 0;
  -webkit-border-radius: 0;
  margin: 0;
  padding: 5px;
}
.loc-global-header .loc-global-header-search .search-menu form .submit {
  -ms-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  width: 7%;
  float: left;
}
.loc-global-header .loc-global-header-search .search-menu form .submit button {
  font-weight: bold;
  font-size: 13px;
  color: #ffffff;
  background-image: none;
  border: none;
  overflow: visible;
  cursor: pointer;
  padding: 5px;
  border-radius: 3px;
  text-transform: uppercase;
  background-color: #666;
}
.loc-crumb-nav {
  background-color: #efefef;
  padding: 1.0638297872340425% 2.127659574468085%;
  margin: 0 7px 7px;
}
@media screen and (-webkit-min-device-pixel-ratio: 0) {
  .loc-global-header .loc-global-header-search .search-menu form .formats select {
    -webkit-appearance: none;
    padding-right: 15px;
    background: transparent url(/static/images/sprite-globalnav.png) 100% -338px no-repeat;
  }
  .loc-global-header .loc-global-header-search .search-menu form .form-wrapper input,
  .loc-global-header .loc-global-header-search .search-menu form .form-wrapper button,
  .loc-global-header .loc-global-header-search .search-menu form .form-wrapper select {
    line-height: 18px;
  }
}
@media screen and (max-width: 650px) {
  .loc-global-header .loc-global-header-menu-link {
    display: block;
  }
  .loc-global-header .loc-global-header-menu-link .menu-link {
    font-size: 13.5px;
    line-height: 18.900000000000002px;
    font-weight: bold;
  }
  .loc-global-header .loc-global-header-menu-link .menu-link small {
    font-weight: normal;
    line-height: 1;
    color: #666;
    font-size: 12px;
  }
  .loc-global-header .loc-global-header-menu-link .menu-link small.block {
    display: block;
    margin-top: 5px;
  }
  .loc-global-header .loc-global-header-menu-link .menu-link i {
    float: right;
    font-style: normal;
    font-size: 18px;
    line-height: 20px;
    height: 20px;
    width: 21px;
    text-align: center;
  }
  .loc-global-header .loc-global-header-menu-link.on-off .menu-link i {
    background-color: #006695;
  }
  .loc-global-header .loc-global-header-menu,
  .loc-global-header .loc-global-header-submenu {
    margin: 0;
    display: none;
    position: static;
  }
  .loc-global-header .loc-global-header-menu.on-off,
  .loc-global-header .loc-global-header-submenu.on-off {
    display: block;
  }
  .loc-global-header .loc-global-header-menu > ul,
  .loc-global-header .loc-global-header-submenu > ul {
    position: static;
    background-color: transparent;
  }
  .loc-global-header .loc-global-header-menu > ul > li,
  .loc-global-header .loc-global-header-submenu > ul > li {
    display: block;
    text-align: left;
    border: none;
    font-size: 12px;
    font-weight: normal;
    padding: 0;
    margin: 0;
  }
  .loc-global-header .loc-global-header-menu > ul > li:hover,
  .loc-global-header .loc-global-header-submenu > ul > li:hover {
    border: none;
  }
  .loc-global-header .loc-global-header-menu > ul > li > a,
  .loc-global-header .loc-global-header-submenu > ul > li > a {
    color: #ffffff;
    padding: 5px 2.127659574468085%;
    border-top: 1px solid #0078ae;
    background-color: #006695;
    display: block;
    text-decoration: none;
    font-size: 13.5px;
    line-height: 18.900000000000002px;
    font-weight: bold;
  }
  .loc-global-header .loc-global-header-menu > ul > li > a small,
  .loc-global-header .loc-global-header-submenu > ul > li > a small {
    font-weight: normal;
    line-height: 1;
    color: #666;
    font-size: 12px;
  }
  .loc-global-header .loc-global-header-menu > ul > li > a small.block,
  .loc-global-header .loc-global-header-submenu > ul > li > a small.block {
    display: block;
    margin-top: 5px;
  }
  .loc-global-header .loc-global-header-menu > ul > li > a:visited,
  .loc-global-header .loc-global-header-submenu > ul > li > a:visited {
    color: #ffffff;
  }
  .loc-global-header .loc-global-header-menu > ul > li > a:hover,
  .loc-global-header .loc-global-header-submenu > ul > li > a:hover,
  .loc-global-header .loc-global-header-menu > ul > li > a.focus,
  .loc-global-header .loc-global-header-submenu > ul > li > a.focus {
    color: #ffffff;
    text-decoration: underline;
  }
  .loc-global-header .loc-global-header-menu > ul > li .loc-global-header-dropdown,
  .loc-global-header .loc-global-header-submenu > ul > li .loc-global-header-dropdown {
    display: none;
  }
  .loc-global-header .loc-global-header-search {
    margin: 0 0 7px;
  }
  .loc-global-header .loc-global-header-search .search-menu {
    width: 100%;
  }
  .loc-global-header .loc-global-header-search .search-menu form .search-input {
    width: 60%;
  }
  .loc-global-header .loc-global-header-search .search-menu form .submit {
    width: 10%;
  }
  .loc-global-header .loc-global-header-logo .loc-logo {
    width: 100%;
    padding: 5px 0;
  }
  .loc-global-header .loc-global-header-logo .loc-logo img {
    margin: 0 auto;
    max-width: 100%;
    height: auto;
  }
  .loc-crumb-nav {
    margin: -7px 0 7px;
  }
}
@media screen and (max-width: 650px) and screen and (max-width: 480px) {
  .loc-global-header .loc-global-header-menu-link .menu-link h3 small,
  .loc-global-header .loc-global-header-menu-link .menu-link .mimic-h3 small {
    display: block;
    margin-top: 5px;
  }
}
@media screen and (max-width: 650px) and screen and (max-width: 480px) {
  .loc-global-header .loc-global-header-menu > ul > li > a h3 small,
  .loc-global-header .loc-global-header-submenu > ul > li > a h3 small,
  .loc-global-header .loc-global-header-menu > ul > li > a .mimic-h3 small,
  .loc-global-header .loc-global-header-submenu > ul > li > a .mimic-h3 small {
    display: block;
    margin-top: 5px;
  }
}
.row-head {
  clear: both;
  overflow: hidden;
  -ms-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
.row-head .span1,
.row-head .span2,
.row-head .span3,
.row-head .span4,
.row-head .span5,
.row-head .span6,
.row-head .span7,
.row-head .span8,
.row-head .span9,
.row-head .span10,
.row-head .span11,
.row-head .span12,
.row-head .span13,
.row-head .span14,
.row-head .span15,
.row-head .span16,
.row-head .span17,
.row-head .span18,
.row-head .span19,
.row-head .span20,
.row-head .span21,
.row-head .span22,
.row-head .span23,
.row-head .span24 {
  -ms-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  float: left;
}
.row-head .span1 {
  width: 2.127659574468085%;
  margin-left: 2.127659574468085%;
}
.row-head .span2 {
  width: 6.382978723404255%;
  margin-left: 2.127659574468085%;
}
.row-head .span3 {
  width: 10.638297872340425%;
  margin-left: 2.127659574468085%;
}
.row-head .span4 {
  width: 14.893617021276595%;
  margin-left: 2.127659574468085%;
}
.row-head .span5 {
  width: 19.148936170212767%;
  margin-left: 2.127659574468085%;
}
.row-head .span6 {
  width: 23.404255319148938%;
  margin-left: 2.127659574468085%;
}
.row-head .span7 {
  width: 27.659574468085108%;
  margin-left: 2.127659574468085%;
}
.row-head .span8 {
  width: 31.914893617021278%;
  margin-left: 2.127659574468085%;
}
.row-head .span8 .span4 {
  width: 46.666666666666664%;
  margin-left: 6.666666666666667%;
}
.row-head .span9 {
  width: 36.17021276595745%;
  margin-left: 2.127659574468085%;
}
.row-head .span10 {
  width: 40.42553191489361%;
  margin-left: 2.127659574468085%;
}
.row-head .span11 {
  width: 44.680851063829785%;
  margin-left: 2.127659574468085%;
}
.row-head .span12 {
  width: 48.93617021276596%;
  margin-left: 2.127659574468085%;
}
.row-head .span12 .span6 {
  width: 47.82608695652174%;
  margin-left: 4.3478260869565215%;
}
.row-head .span12 .span4 {
  width: 30.434782608695656%;
  margin-left: 4.3478260869565215%;
}
.row-head .span13 {
  width: 53.191489361702125%;
  margin-left: 2.127659574468085%;
}
.row-head .span14 {
  width: 57.446808510638306%;
  margin-left: 2.127659574468085%;
}
.row-head .span15 {
  width: 61.702127659574465%;
  margin-left: 2.127659574468085%;
}
.row-head .span16 {
  width: 65.95744680851064%;
  margin-left: 2.127659574468085%;
}
.row-head .span17 {
  width: 70.2127659574468%;
  margin-left: 2.127659574468085%;
}
.row-head .span18 {
  width: 74.46808510638297%;
  margin-left: 2.127659574468085%;
}
.row-head .span18 .span6 {
  width: 31.428571428571427%;
  margin-left: 2.857142857142857%;
}
.row-head .span18 .span9 {
  width: 48.57142857142857%;
  margin-left: 2.857142857142857%;
}
.row-head .span18 .span12 {
  width: 65.71428571428571%;
  margin-left: 2.857142857142857%;
}
.row-head .span19 {
  width: 78.72340425531915%;
  margin-left: 2.127659574468085%;
}
.row-head .span20 {
  width: 82.97872340425532%;
  margin-left: 2.127659574468085%;
}
.row-head .span21 {
  width: 87.2340425531915%;
  margin-left: 2.127659574468085%;
}
.row-head .span22 {
  width: 91.48936170212765%;
  margin-left: 2.127659574468085%;
}
.row-head .span23 {
  width: 95.74468085106383%;
  margin-left: 2.127659574468085%;
}
.row-head .span24 {
  width: 100%;
  margin-left: 2.127659574468085%;
  float: none;
}
.row-head .colleft {
  float: left;
}
.row-head .colright {
  float: right;
}
.row-head .span1:first-child,
.row-head .span2:first-child,
.row-head .span3:first-child,
.row-head .span4:first-child,
.row-head .span5:first-child,
.row-head .span6:first-child,
.row-head .span7:first-child,
.row-head .span8:first-child,
.row-head .span9:first-child,
.row-head .span10:first-child,
.row-head .span11:first-child,
.row-head .span12:first-child,
.row-head .span13:first-child,
.row-head .span14:first-child,
.row-head .span15:first-child,
.row-head .span16:first-child,
.row-head .span17:first-child,
.row-head .span18:first-child,
.row-head .span19:first-child,
.row-head .span20:first-child,
.row-head .span21:first-child,
.row-head .span22:first-child,
.row-head .span23:first-child,
.row-head .span24:first-child {
  margin-left: 0;
}
.locfoot {
  font-family: Arial, Helvetica, sans_serif;
  font-size: 12px;
  color: #333333;
  line-height: 18px;
}
.locfoot a {
  color: #666666;
  text-decoration: none;
}
.locfoot a:visited {
  color: #666666;
  text-decoration: underline;
}
.locfoot a:hover,
.locfoot a:focus {
  color: #666666;
  text-decoration: underline;
}
.locfoot a:hover,
.locfoot a:active {
  outline: 0;
}
.locfoot-logo {
  padding: 20px 2.127659574468085%;
  text-align: center;
  -webkit-box-shadow: 0 15px 15px -15px rgba(0, 0, 0, 0.3);
  -moz-box-shadow: 0 15px 15px -15px rgba(0, 0, 0, 0.3);
  box-shadow: 0 15px 15px -15px rgba(0, 0, 0, 0.3);
  border-bottom: 1px solid #d8d8d8;
}
.locfoot-menu {
  padding: 20px 2.127659574468085%;
  -webkit-box-shadow: 0 15px 15px -15px rgba(0, 0, 0, 0.3);
  -moz-box-shadow: 0 15px 15px -15px rgba(0, 0, 0, 0.3);
  box-shadow: 0 15px 15px -15px rgba(0, 0, 0, 0.3);
  border-bottom: 1px solid #d8d8d8;
}
.locfoot-menu h2 {
  font-size: 12px;
  line-height: 18px;
  color: #666666;
  margin: 0 0 4.5px;
}
.locfoot-menu ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.locfoot-menu ul li {
  margin: 0 0 4.5px;
  padding: 0;
  list-style: none;
}
.locfoot-submenu {
  padding: 20px 2.127659574468085%;
}
.locfoot-submenu ul.foot-inline {
  margin: 0;
  padding: 0;
  list-style: none;
}
.locfoot-submenu ul.foot-inline li {
  margin: 0 13px 0 0;
  padding: 0;
  list-style: none;
  display: inline-block;
}
.locfoot a.intersite-loc,
.locfoot a.intersite-congress,
.locfoot a.intersite-copyright {
  display: inline-block;
  margin-left: 0px;
  width: 146px;
  height: 37px;
  background: transparent url(/static/images/sprite-globalnav.png) 0 -100px no-repeat;
}
.locfoot .intersite-logos {
  text-align: center;
}
.locfoot a.intersite-congress {
  width: 115px;
  height: 25px;
  background-position: 0 -200px;
}
.locfoot a.intersite-copyright {
  width: 89px;
  height: 25px;
  background-position: 0 -275px;
}
.locfoot a.intersite-loc:hover,
.locfoot a.intersite-loc:focus {
  background-position: 0 -137px;
}
.locfoot a.intersite-congress:hover,
.locfoot a.intersite-congress:focus {
  background-position: 0 -225px;
}
.locfoot a.intersite-copyright:hover,
.locfoot a.intersite-copyright:focus {
  background-position: 0 -300px;
}
.locfoot a.intersite-loc span,
.locfoot a.intersite-congress span,
.locfoot a.intersite-copyright span {
  position: absolute;
  left: 0;
  top: -5000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.row-foot {
  clear: both;
  -ms-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  overflow: hidden;
}
.row-foot .span1,
.row-foot .span2,
.row-foot .span3,
.row-foot .span4,
.row-foot .span5,
.row-foot .span6,
.row-foot .span7,
.row-foot .span8,
.row-foot .span9,
.row-foot .span10,
.row-foot .span11,
.row-foot .span12,
.row-foot .span13,
.row-foot .span14,
.row-foot .span15,
.row-foot .span16,
.row-foot .span17,
.row-foot .span18,
.row-foot .span19,
.row-foot .span20,
.row-foot .span21,
.row-foot .span22,
.row-foot .span23,
.row-foot .span24 {
  -ms-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  float: left;
}
.row-foot .span1 {
  width: 2.127659574468085%;
  margin-left: 2.127659574468085%;
}
.row-foot .span2 {
  width: 6.382978723404255%;
  margin-left: 2.127659574468085%;
}
.row-foot .span3 {
  width: 10.638297872340425%;
  margin-left: 2.127659574468085%;
}
.row-foot .span4 {
  width: 14.893617021276595%;
  margin-left: 2.127659574468085%;
}
.row-foot .span5 {
  width: 19.148936170212767%;
  margin-left: 2.127659574468085%;
}
.row-foot .span6 {
  width: 23.404255319148938%;
  margin-left: 2.127659574468085%;
}
.row-foot .span7 {
  width: 27.659574468085108%;
  margin-left: 2.127659574468085%;
}
.row-foot .span8 {
  width: 31.914893617021278%;
  margin-left: 2.127659574468085%;
}
.row-foot .span8 .span4 {
  width: 46.666666666666664%;
  margin-left: 6.666666666666667%;
}
.row-foot .span9 {
  width: 36.17021276595745%;
  margin-left: 2.127659574468085%;
}
.row-foot .span10 {
  width: 40.42553191489361%;
  margin-left: 2.127659574468085%;
}
.row-foot .span11 {
  width: 44.680851063829785%;
  margin-left: 2.127659574468085%;
}
.row-foot .span12 {
  width: 48.93617021276596%;
  margin-left: 2.127659574468085%;
}
.row-foot .span12 .span6 {
  width: 47.82608695652174%;
  margin-left: 4.3478260869565215%;
}
.row-foot .span12 .span4 {
  width: 30.434782608695656%;
  margin-left: 4.3478260869565215%;
}
.row-foot .span13 {
  width: 53.191489361702125%;
  margin-left: 2.127659574468085%;
}
.row-foot .span14 {
  width: 57.446808510638306%;
  margin-left: 2.127659574468085%;
}
.row-foot .span15 {
  width: 61.702127659574465%;
  margin-left: 2.127659574468085%;
}
.row-foot .span16 {
  width: 65.95744680851064%;
  margin-left: 2.127659574468085%;
}
.row-foot .span17 {
  width: 70.2127659574468%;
  margin-left: 2.127659574468085%;
}
.row-foot .span18 {
  width: 74.46808510638297%;
  margin-left: 2.127659574468085%;
}
.row-foot .span18 .span6 {
  width: 31.428571428571427%;
  margin-left: 2.857142857142857%;
}
.row-foot .span18 .span9 {
  width: 48.57142857142857%;
  margin-left: 2.857142857142857%;
}
.row-foot .span18 .span12 {
  width: 65.71428571428571%;
  margin-left: 2.857142857142857%;
}
.row-foot .span19 {
  width: 78.72340425531915%;
  margin-left: 2.127659574468085%;
}
.row-foot .span20 {
  width: 82.97872340425532%;
  margin-left: 2.127659574468085%;
}
.row-foot .span21 {
  width: 87.2340425531915%;
  margin-left: 2.127659574468085%;
}
.row-foot .span22 {
  width: 91.48936170212765%;
  margin-left: 2.127659574468085%;
}
.row-foot .span23 {
  width: 95.74468085106383%;
  margin-left: 2.127659574468085%;
}
.row-foot .span24 {
  width: 100%;
  margin-left: 2.127659574468085%;
  float: none;
}
.row-foot .colleft {
  float: left;
}
.row-foot .colright {
  float: right;
}
.row-foot .span1:first-child,
.row-foot .span2:first-child,
.row-foot .span3:first-child,
.row-foot .span4:first-child,
.row-foot .span5:first-child,
.row-foot .span6:first-child,
.row-foot .span7:first-child,
.row-foot .span8:first-child,
.row-foot .span9:first-child,
.row-foot .span10:first-child,
.row-foot .span11:first-child,
.row-foot .span12:first-child,
.row-foot .span13:first-child,
.row-foot .span14:first-child,
.row-foot .span15:first-child,
.row-foot .span16:first-child,
.row-foot .span17:first-child,
.row-foot .span18:first-child,
.row-foot .span19:first-child,
.row-foot .span20:first-child,
.row-foot .span21:first-child,
.row-foot .span22:first-child,
.row-foot .span23:first-child,
.row-foot .span24:first-child {
  margin-left: 0;
}
.clear {
  height: 0;
  clear: both;
}
@media screen and (max-width: 650px) {
  .locfoot .intersite-logos {
    display: none;
  }
  .locfoot-menu .connect,
  .locfoot-menu .special,
  .locfoot-menu .formats {
    padding-bottom: 1em;
  }
  .locfoot-menu ul {
    display: inline;
  }
  .locfoot-menu ul li {
    margin: 0 13px 0 0;
    padding: 0;
    list-style: none;
    display: inline-block;
  }
  .row-foot .span1,
  .row-foot .span2,
  .row-foot .span3,
  .row-foot .span4,
  .row-foot .span5,
  .row-foot .span6,
  .row-foot .span7,
  .row-foot .span8,
  .row-foot .span9,
  .row-foot .span10,
  .row-foot .span11,
  .row-foot .span12,
  .row-foot .span13,
  .row-foot .span14,
  .row-foot .span15,
  .row-foot .span16,
  .row-foot .span17,
  .row-foot .span18,
  .row-foot .span19,
  .row-foot .span20,
  .row-foot .span21,
  .row-foot .span22,
  .row-foot .span23,
  .row-foot .span24 {
    float: none !important;
    width: 100% !important;
    margin: 0 !important;
  }
  .row-foot .span8 .span4 {
    display: inline;
  }
}
@media screen and (max-width: 480px) {
  .locfoot-logo {
    display: none;
  }
}
.top-link {
  height: 50px;
}
.top-link a {
  display: block;
  position: fixed;
  z-index: 99999;
  bottom: 10px;
  right: 10px;
  text-align: center;
  color: #fff;
  text-decoration: none;
  background-color: #0078ae;
  background-color: rgba(0, 120, 174, 0.85);
  padding: 0 15px 0 13px;
}
.top-link a i {
  display: inline-block;
  width: 9px;
  height: 10px;
  margin-right: 4px;
  padding: 0;
  background: transparent url(/static/images/sprite-loc.png) -99px -16px no-repeat;
}
.top-link a span {
  display: inline-block;
  height: 40px;
  line-height: 40px;
}
.top-link a:hover,
.top-link a:focus {
  background-color: #0078ae;
}
.icon {
  display: inline-block;
  width: 16px;
  height: 16px;
  vertical-align: text-top;
  background-image: url("/static/images/sprite-loc.png");
  background-position: 0 0;
  background-repeat: no-repeat;
}
.icon.facebook {
  background-position: 0 0;
}
.icon.twitter {
  background-position: -16px 0;
}
.icon.youtube {
  background-position: -32px 0;
}
.icon.flickr {
  background-position: -48px 0;
}
.icon.pinterest {
  background-position: -64px 0;
}
.icon.linkedin {
  background-position: -81px 0;
}
.icon.instagram {
  background-position: -97px 0;
}
.icon.itunesu {
  background-position: -113px 0;
}
.icon.double-caret-left {
  background-position: 0 -16px;
  width: 5px;
  height: 5px;
  margin-top: 5px;
}
.icon.double-caret-left.gray {
  background-position: 0 -21px;
}
.icon.double-caret-left.white {
  background-position: 0 -26px;
}
.icon.double-caret-left.alt {
  background-position: 0 -31px;
}
.icon.double-caret-right {
  background-position: -5px -16px;
  width: 5px;
  height: 5px;
  margin-top: 5px;
}
.icon.double-caret-right.gray {
  background-position: -5px -21px;
}
.icon.double-caret-right.white {
  background-position: -5px -26px;
}
.icon.double-caret-right.alt {
  background-position: -5px -31px;
}
.icon.audio {
  background-position: -10px -16px;
  width: 11px;
  height: 11px;
  margin-top: 2px;
}
.icon.audio.gray {
  background-position: -10px -27px;
}
.icon.audio.white {
  background-position: -10px -38px;
}
.icon.audio.alt {
  background-position: -10px -49px;
}
.icon.external {
  background-position: -21px -16px;
  width: 8px;
  height: 8px;
  margin-top: 3px;
}
.icon.external.gray {
  background-position: -21px -24px;
}
.icon.external.white {
  background-position: -21px -32px;
}
.icon.external.alt {
  background-position: -21px -40px;
}
.icon.times {
  background-position: -160px -16px;
  width: 11px;
  height: 11px;
  margin-top: 2px;
}
.icon.times.gray {
  background-position: -160px -24px;
}
.icon.times.white {
  background-position: -160px -32px;
}
.icon.times.alt {
  background-position: -160px -40px;
}
.icon.external span,
.icon.times span {
  position: absolute;
  left: 0;
  top: -5000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.icon.video {
  background-position: -29px -16px;
  width: 13px;
  height: 9px;
  margin-top: 3px;
}
.icon.video.gray {
  background-position: -29px -25px;
}
.icon.video.white {
  background-position: -29px -34px;
}
.icon.video.alt {
  background-position: -29px -43px;
}
.icon.circle-arrow-up {
  background-position: -42px -16px;
  width: 9px;
  height: 9px;
  margin-top: 3px;
}
.icon.circle-arrow-up.gray {
  background-position: -42px -25px;
}
.icon.circle-arrow-up.white {
  background-position: -42px -34px;
}
.icon.circle-arrow-up.alt {
  background-position: -42px -43px;
}
.icon.circle-arrow-down {
  background-position: -51px -16px;
  width: 9px;
  height: 9px;
  margin-top: 3px;
}
.icon.circle-arrow-down.gray {
  background-position: -51px -25px;
}
.icon.circle-arrow-down.white {
  background-position: -51px -34px;
}
.icon.circle-arrow-down.alt {
  background-position: -51px -43px;
}
.icon.zoom-in {
  background-position: -60px -16px;
  width: 13px;
  height: 13px;
  margin-top: 1px;
}
.icon.zoom-in.gray {
  background-position: -60px -29px;
}
.icon.zoom-in.white {
  background-position: -60px -42px;
}
.icon.zoom-in.alt {
  background-position: -60px -55px;
}
.icon.zoom-out {
  background-position: -73px -16px;
  width: 13px;
  height: 13px;
  margin-top: 1px;
}
.icon.zoom-out.gray {
  background-position: -73px -29px;
}
.icon.zoom-out.white {
  background-position: -73px -42px;
}
.icon.zoom-out.alt {
  background-position: -73px -55px;
}
.icon.search {
  background-position: -86px -16px;
  width: 13px;
  height: 13px;
  margin-top: 1px;
}
.icon.search.gray {
  background-position: -86px -29px;
}
.icon.search.white {
  background-position: -86px -42px;
}
.icon.search.alt {
  background-position: -86px -55px;
}
.videoobject {
  text-align: center;
  height: 585px;
  background-color: #555555;
}
.videoobject object {
  height: 585px !important;
}
@media screen and (max-width: 980px) {
  .videoobject {
    height: 450px;
  }
  .videoobject object {
    height: 450px !important;
  }
}
@media screen and (max-width: 810px) {
  .videoobject {
    height: 450px;
  }
  .videoobject object {
    height: 450px !important;
  }
}
@media screen and (max-width: 650px) {
  .videoobject {
    height: 450px;
  }
  .videoobject object {
    height: 450px !important;
  }
}
@media screen and (max-width: 480px) {
  .videoobject {
    height: 400px;
  }
  .videoobject object {
    height: 400px !important;
  }
}
@media screen and (max-width: 320px) {
  .videoobject {
    height: 300px;
  }
  .videoobject object {
    height: 300px !important;
  }
}
.featured-webcasts {
  /*text-align: center;
    height: 339px;*/

}
.featured-webcasts object {
  /*height: 339px !important;*/

}
/*
@media screen and (max-width: 980px){
    .featured-webcasts{ height: 339px; }
    .featured-webcasts object{ 
        height: 339px !important; 
        background-image: none !important;
        background-color: @charcoal !important;
    }
}
@media screen and (max-width: 810px){
    .featured-webcasts{ height: 239px; }
    .featured-webcasts object{ 
        height: 239px !important; 
        background-image: none !important;
        background-color: @charcoal !important;
    }
}
@media screen and (max-width: 650px){
    .featured-webcasts{ height: 300px; }
    .featured-webcasts object{ 
        height: 300px !important; 
    }
}
@media screen and (max-width: 480px) {
    .featured-webcasts{ height: 350px; }
    .featured-webcasts object{ 
    height: 350px !important;
    width: 100% !important;
}
}
@media screen and (max-width: 320px) {
    .featured-webcasts{ height: 350px; }
    .featured-webcasts object{ 
    height: 350px !important; }
}*/.loc-home {
  color: #555555;
}
.loc-home a:link {
  color: #555555;
  text-decoration: none;
}
.loc-home a:visited {
  color: #555555;
  text-decoration: none;
}
.loc-home a:hover,
.loc-home a:focus {
  color: #0078ae;
  text-decoration: underline;
}
.main-column {
  padding: 0 1.25%;
}
.border-left-980 {
  border-left: 1px solid #d8d8d8;
  padding-left: 1em;
}
.border-right-980 {
  border-right: 1px solid #d8d8d8;
  padding-right: 1em;
}
.royalSlider > .rsContent {
  display: none;
}
.royalSlider {
  overflow: hidden;
}
.homeSlider {
  margin-bottom: 1.5em;
}
.collection {
  margin-bottom: 1.5em;
}
.collection .gallery3 > li {
  width: 32%;
  margin: 0 0 2% 2%;
}
.collection .gallery3 > li:nth-child(3n+1) {
  margin-left: 0;
}
.collection .highlights {
  width: 68%;
  padding: 0 0 0 0;
}
.collection .highlights li {
  position: relative;
}
.collection .highlights li img {
  display: block;
  max-width: 100%;
  height: auto;
  width: auto\9;
  /* ie8 */

}
.collection .highlights li span {
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 7px;
  display: block;
  width: 100%;
  font-weight: bold;
  -ms-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  line-height: 1.1;
  text-shadow: 0 0 5px #333333;
}
.collection .highlights li a {
  color: #ffffff;
}
.collection .highlights li a:hover span,
.collection .highlights li a:focus span {
  text-decoration: underline;
  background-color: #000000;
  background-color: rgba(0, 0, 0, 0.5);
}
.collection .highlights li a:focus {
  outline: thin dotted;
}
.collection .topics {
  width: 32%;
  padding: 0 0 0 1em;
}
.webcasts .video {
  width: 69%;
  padding: 0;
}
.webcasts .video-lists {
  width: 31%;
  padding: 0;
}
.webcasts .video-lists li {
  padding: 10px;
}
.webcasts .video-lists li.selected {
  background-color: #efefef;
}
.webcasts .video-lists li a.video_link {
  font-size: 13.5px;
  line-height: 18.900000000000002px;
  font-weight: bold;
}
.webcasts .video-lists li a.video_link small {
  font-weight: normal;
  line-height: 1;
  color: #666;
  font-size: 12px;
}
@media screen and (max-width: 480px) {
  .webcasts .video-lists li a.video_link small {
    display: block;
    margin-top: 5px;
  }
}
.webcasts .video-lists li a.video_link small.block {
  display: block;
  margin-top: 5px;
}
.webcasts .video-lists .more-webcasts {
  padding-left: 10px;
}
.gallery3.discover > li {
  width: 32%;
  margin: 0 0 1em 2%;
}
.gallery3.discover > li:nth-child(3n+1) {
  margin-left: 0;
}
.discover-header {
  position: relative;
}
.discover-header h3 {
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 7px;
  width: 100%;
  font-weight: bold;
  -ms-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  line-height: 1.1;
  font-size: 12px;
  text-shadow: 0 0 5px #000000;
  color: #ffffff;
}
a .discover-header {
  color: #ffffff;
}
a:hover .discover-header h3,
a:focus .discover-header h3 {
  text-decoration: underline;
  background-color: #000000;
  /* The Fallback */

  background-color: rgba(0, 0, 0, 0.5);
}
.external-sites li {
  background-color: #efefef;
  margin-bottom: 10px;
  margin-right: -21px;
  padding: 1em 3.25em 1em 1em;
  line-height: 1;
  -ms-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border: 1px solid #efefef;
  position: relative;
}
.external-sites li.congress {
  background-color: #fcfbf3;
}
.external-sites li.congress a {
  color: #666666;
}
.external-sites li.congress img {
  padding: 2px 0;
}
.external-sites li.copyright a {
  color: #0078ae;
}
.external-sites li.copyright img {
  max-width: 73%;
}
.external-sites li.catalog {
  background-color: #f3f7fb;
}
.external-sites li.catalog a {
  color: #527290;
}
.external-sites li.catalog img {
  max-width: 79%;
}
.external-sites li img {
  display: block;
  max-width: 100%;
  height: auto;
  width: auto\9;
  /* ie8 */

}
.external-sites li small {
  display: block;
  margin-top: 5px;
}
.external-sites li i {
  display: inline-block;
  width: 11px;
  height: 21px;
  background-image: url("/static/images/sprite-loc.png");
  background-position: -11px -68px;
  background-repeat: no-repeat;
  position: absolute;
  margin-top: -10px;
  top: 50%;
  right: 10px;
}
@media screen and (max-width: 980px) {
  .border-left-980,
  .border-right-980 {
    border: none;
    padding: 0;
  }
  .external-sites li {
    margin-right: 0;
    padding-right: 1em;
  }
  .external-sites li i {
    display: none;
  }
  .webcasts .video {
    display: block;
    width: 100%;
    padding: 0;
    background-color: #efefef;
    position: relative;
    overflow: hidden;
    height: 335px;
  }
  .webcasts .video #lcVideo {
    display: inline-block;
    width: 330px;
    height: 335px;
    position: absolute;
    margin-left: -165px;
    top: 0;
    left: 50%;
  }
  .webcasts .video-lists {
    display: table;
    width: 100%;
    padding: 0;
  }
  .webcasts .video-lists li {
    width: 33.33%;
    display: table-cell;
  }
  .webcasts .video-lists .more-webcasts {
    padding-left: 0;
  }
}
@media screen and (max-width: 810px) {
  .collection {
    margin-bottom: 0;
  }
  .collection .highlights,
  .collection .topics {
    width: 100%;
    padding: 0;
    display: block;
  }
  .collection .topics ul > li {
    display: inline-block;
    *display: inline;
    padding-right: 15px;
    *zoom: 1;
    line-height: 12px;
    margin: 4px 0;
  }
  .gallery3.discover > li {
    width: 49%;
  }
  .gallery3.discover > li:nth-child(3n+1) {
    margin-left: 2%;
  }
  .gallery3.discover > li:nth-child(2n+1) {
    margin-left: 0;
  }
}
@media screen and (max-width: 650px) {
  .mainColumn {
    padding: 1.8085106382978722% 2.127659574468085% 0.6382978723404255% 2.127659574468085%;
    padding-top: 0;
    padding-bottom: 0;
  }
  .mobile-column-650-left {
    width: 48%;
    float: left;
    margin-right: 2%;
  }
  .mobile-column-650-right {
    width: 48%;
    float: left;
    margin-left: 2%;
  }
  .external-sites li {
    width: 48%;
    float: left;
    margin-left: 4%;
  }
  .external-sites li:first-child,
  .external-sites li:nth-child(2n+1) {
    margin-left: 0;
  }
  .border-left-980 {
    clear: both;
  }
}
@media screen and (max-width: 480px) {
  .homeSlider {
    width: 65%;
    margin: 0 auto 1.5em;
  }
  .mobile-column-650-left,
  .mobile-column-650-right {
    width: 100%;
    float: none;
    margin: 0;
  }
  .external-sites li {
    width: 100%;
    float: none;
    margin-left: 0;
  }
  .external-sites li i {
    display: inline-block;
  }
  .external-sites li.congress img {
    max-width: 75%;
  }
  .external-sites li.copyright img {
    max-width: 48%;
  }
  .external-sites li.catalog img {
    max-width: 50%;
  }
}
.event {
  border-top: 1px solid #cccccc;
  margin-top: 5px;
}
.event .image {
  width: 15%;
  padding: 1em 0 0;
}
.event .image img {
  display: block;
  max-width: 100%;
  height: auto;
  width: auto\9;
  /* ie8 */

}
.event .description {
  width: 60%;
  padding: 1em 1em 0;
}
.event .info {
  width: 25%;
  padding: 1em 1em 0;
  background-color: #efefef;
}
@media screen and (max-width: 480px) {
  .event .image {
    display: none;
  }
  .event .description {
    width: 60%;
    padding: 1em 1em 0 0;
  }
  .event .info {
    width: 40%;
  }
  .archive .description {
    width: 65%;
  }
  .archive .archive .webcast {
    width: 45%;
  }
}
.search-by-standards.accordion-wrapper .switch {
  text-align: right;
  margin: 0 0 10px;
}
.search-by-standards.accordion-wrapper .switch a {
  display: inline-block;
  border-left: 1px solid #cccccc;
  padding: 0 5px;
}
.search-by-standards.accordion-wrapper .switch a:first-child {
  border-left: none;
}
.search-by-standards.accordion-wrapper ul {
  list-style: none;
}
.search-by-standards.accordion-wrapper ul li {
  list-style: none;
}
.search-by-standards.accordion-wrapper h2,
.search-by-standards.accordion-wrapper h3,
.search-by-standards.accordion-wrapper h4,
.search-by-standards.accordion-wrapper h5,
.search-by-standards.accordion-wrapper h6 {
  position: relative;
}
@media screen and (max-width: 480px) {
  .search-by-standards.accordion-wrapper h2 small,
  .search-by-standards.accordion-wrapper h3 small,
  .search-by-standards.accordion-wrapper h4 small,
  .search-by-standards.accordion-wrapper h5 small,
  .search-by-standards.accordion-wrapper h6 small {
    display: inline !important;
    margin-top: 0 !important;
  }
}
.search-by-standards.accordion-wrapper h2,
.search-by-standards.accordion-wrapper h3 {
  font-size: 18px;
  line-height: 22.5px;
  font-weight: bold;
  margin: 0;
  font-weight: normal;
}
.search-by-standards.accordion-wrapper h2 small,
.search-by-standards.accordion-wrapper h3 small {
  font-weight: normal;
  line-height: 1;
  color: #666;
  font-size: 12px;
}
@media screen and (max-width: 480px) {
  .search-by-standards.accordion-wrapper h2 small,
  .search-by-standards.accordion-wrapper h3 small {
    display: block;
    margin-top: 5px;
  }
}
.search-by-standards.accordion-wrapper h2 small.block,
.search-by-standards.accordion-wrapper h3 small.block {
  display: block;
  margin-top: 5px;
}
.search-by-standards.accordion-wrapper h2 em,
.search-by-standards.accordion-wrapper h3 em {
  font-style: normal;
  font-weight: bold;
}
.search-by-standards.accordion-wrapper h2 small,
.search-by-standards.accordion-wrapper h3 small {
  font-size: 12px;
}
.search-by-standards.accordion-wrapper h2 a em,
.search-by-standards.accordion-wrapper h3 a em {
  color: #666666;
}
.search-by-standards.accordion-wrapper h2 a small,
.search-by-standards.accordion-wrapper h3 a small {
  color: #666666;
}
.search-by-standards.accordion-wrapper h3 em,
.search-by-standards.accordion-wrapper h4 em,
.search-by-standards.accordion-wrapper h5 em,
.search-by-standards.accordion-wrapper h6 em {
  font-style: normal;
  font-weight: bold;
}
.search-by-standards.accordion-wrapper h3 small,
.search-by-standards.accordion-wrapper h4 small,
.search-by-standards.accordion-wrapper h5 small,
.search-by-standards.accordion-wrapper h6 small {
  font-size: 12px;
}
.search-by-standards.accordion-wrapper h3 a,
.search-by-standards.accordion-wrapper h4 a,
.search-by-standards.accordion-wrapper h5 a,
.search-by-standards.accordion-wrapper h6 a {
  color: #000000;
}
.search-by-standards.accordion-wrapper h3 a em,
.search-by-standards.accordion-wrapper h4 a em,
.search-by-standards.accordion-wrapper h5 a em,
.search-by-standards.accordion-wrapper h6 a em {
  color: #666666;
}
.search-by-standards.accordion-wrapper h3 a small,
.search-by-standards.accordion-wrapper h4 a small,
.search-by-standards.accordion-wrapper h5 a small,
.search-by-standards.accordion-wrapper h6 a small {
  color: #666666;
}
.search-by-standards.accordion-wrapper h4,
.search-by-standards.accordion-wrapper h5,
.search-by-standards.accordion-wrapper h6 {
  font-size: 12px;
  line-height: 18px;
  font-weight: bold;
  margin: 0;
}
.search-by-standards.accordion-wrapper h4 small,
.search-by-standards.accordion-wrapper h5 small,
.search-by-standards.accordion-wrapper h6 small {
  font-weight: normal;
  line-height: 1;
  color: #666;
  font-size: 12px;
}
@media screen and (max-width: 480px) {
  .search-by-standards.accordion-wrapper h4 small,
  .search-by-standards.accordion-wrapper h5 small,
  .search-by-standards.accordion-wrapper h6 small {
    display: block;
    margin-top: 5px;
  }
}
.search-by-standards.accordion-wrapper h4 small.block,
.search-by-standards.accordion-wrapper h5 small.block,
.search-by-standards.accordion-wrapper h6 small.block {
  display: block;
  margin-top: 5px;
}
.search-by-standards.accordion-wrapper .trigger {
  display: block;
}
.search-by-standards.accordion-wrapper .trigger i {
  background-image: url("http://search.dev.loctest.gov/static/images/sprite-loc.png");
  background-position: -110px -68px;
  position: absolute;
  left: 17px;
  top: 21px;
  width: 27px;
  height: 14px;
  display: inline-block;
}
.search-by-standards.accordion-wrapper .trigger.open i {
  background-position: -110px -82px;
}
.search-by-standards.accordion-wrapper .classroom-materials {
  position: relative;
  padding-right: 190px;
  min-height: 30px;
}
@media screen and (max-width: 650px) {
  .search-by-standards.accordion-wrapper .classroom-materials {
    padding-right: 140px;
  }
}
@media screen and (max-width: 480px) {
  .search-by-standards.accordion-wrapper .classroom-materials {
    padding-right: 110px;
  }
}
.search-by-standards.accordion-wrapper .classroom-materials .classroom-materials-button {
  display: inline-block;
  border: 1px solid #0078ae;
  width: 150px;
  padding: 5px 10px;
  line-height: 14px;
  text-align: center;
  position: absolute;
  right: 16px;
  top: 16px;
}
@media screen and (max-width: 650px) {
  .search-by-standards.accordion-wrapper .classroom-materials .classroom-materials-button {
    width: 100px;
  }
}
@media screen and (max-width: 480px) {
  .search-by-standards.accordion-wrapper .classroom-materials .classroom-materials-button {
    width: 75px;
  }
}
.search-by-standards.accordion-wrapper > ul {
  margin: 0;
  padding: 0;
}
.search-by-standards.accordion-wrapper > ul > li {
  margin: 0 0 16px;
  padding: 0;
  border: 1px solid #8fbbe4;
}
.search-by-standards.accordion-wrapper > ul > li > h2 {
  margin: 0;
  padding: 16px 16px 16px 62px;
  padding-right: 126px;
  background-color: #ddedfd;
}
@media screen and (max-width: 650px) {
  .search-by-standards.accordion-wrapper > ul > li > h2 {
    padding: 16px 16px 16px 62px;
  }
}
.search-by-standards.accordion-wrapper > ul > li > h2 .trigger i {
  background-position: -80px -68px;
  left: 16px;
  top: 21px;
  width: 30px;
  height: 15px;
}
.search-by-standards.accordion-wrapper > ul > li > h2 .trigger.open i {
  background-position: -80px -83px;
}
.search-by-standards.accordion-wrapper > ul > li > h2 .count {
  position: absolute;
  width: 100px;
  right: 16px;
  top: 20px;
  text-align: right;
}
@media screen and (max-width: 650px) {
  .search-by-standards.accordion-wrapper > ul > li > h2 .count {
    position: static;
    width: auto;
    top: auto;
    right: auto;
    text-align: left;
    display: block !important;
    margin-top: 2px !important;
  }
}
.search-by-standards.accordion-wrapper > ul > li > div > div > ul {
  margin: 0;
  padding: 0;
}
.search-by-standards.accordion-wrapper > ul > li > div > div > ul > li {
  border-top: 1px dotted #cccccc;
}
.search-by-standards.accordion-wrapper > ul > li > div > div > ul > li:first-child {
  border-top: none;
}
.search-by-standards.accordion-wrapper > ul > li > div > div > ul > li > h3 {
  padding: 16px 16px 16px 62px;
}
.search-by-standards.accordion-wrapper > ul > li > div > div > ul > li > div > div > ul {
  margin: 0 0 0 0;
  padding: 0;
  border-top: 1px dotted #cccccc;
}
.search-by-standards.accordion-wrapper > ul > li > div > div > ul > li > div > div > ul > li > h4 {
  padding: 16px 16px 16px 62px;
}
.search-by-standards.accordion-wrapper > ul > li > div > div > ul > li > div > div > ul > li .classroom-materials-button {
  margin-left: 62px;
}
.search-by-standards.accordion-wrapper > ul > li > div > div > ul > li > div > div > ul > li > div > div > ul {
  margin: 0;
  padding: 0;
}
.search-by-standards.accordion-wrapper > ul > li > div > div > ul > li > div > div > ul > li > div > div > ul > li > h5 {
  padding: 16px 16px 16px 82px;
}
.search-by-standards.accordion-wrapper > ul > li > div > div > ul > li > div > div > ul > li > div > div > ul > li .classroom-materials-button {
  margin-left: 62px;
}
.search-classroom-materials-by-standards {
  border: 1px solid #8fbbe4;
  margin: 0;
  padding: 0;
  display: table;
  table-layout: fixed;
  width: 100%;
}
.search-classroom-materials-by-standards .table-cell {
  display: table-cell;
  text-align: left;
  vertical-align: top;
}
@media screen and (max-width: 650px) {
  .search-classroom-materials-by-standards {
    display: block;
  }
}
.search-classroom-materials-by-standards ul {
  margin: 0;
  padding: 0;
  list-style: none;
  -ms-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  display: table-cell;
  text-align: left;
  vertical-align: top;
  width: 30%;
  background-color: #f5f5f5;
}
@media screen and (max-width: 650px) {
  .search-classroom-materials-by-standards ul {
    margin: 0;
    padding: 0;
    display: table;
    table-layout: fixed;
    width: 100%;
  }
  .search-classroom-materials-by-standards ul .table-cell {
    display: table-cell;
    text-align: left;
    vertical-align: top;
  }
}
.search-classroom-materials-by-standards ul li {
  -ms-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  font-size: 18px;
  line-height: 22.5px;
  font-weight: bold;
  white-space: nowrap;
  font-weight: normal;
  border-top: 1px solid #d8d8d8;
  border-right: 1px solid #d8d8d8;
  padding: 22px 20px;
  background-color: #f5f5f5;
}
.search-classroom-materials-by-standards ul li small {
  font-weight: normal;
  line-height: 1;
  color: #666;
  font-size: 12px;
}
@media screen and (max-width: 480px) {
  .search-classroom-materials-by-standards ul li small {
    display: block;
    margin-top: 5px;
  }
}
.search-classroom-materials-by-standards ul li small.block {
  display: block;
  margin-top: 5px;
}
.search-classroom-materials-by-standards ul li a {
  color: #999999;
}
.search-classroom-materials-by-standards ul li.ui-tabs-active {
  background-color: #ffffff;
  font-weight: bold;
  border-right-color: #ffffff;
}
.search-classroom-materials-by-standards ul li.ui-tabs-active a {
  color: #000000;
}
.search-classroom-materials-by-standards ul li:first-child {
  border-top: none;
}
@media screen and (max-width: 650px) {
  .search-classroom-materials-by-standards ul li {
    display: table-cell;
    text-align: left;
    vertical-align: top;
    font-size: 13.5px;
    line-height: 18.900000000000002px;
    font-weight: bold;
    padding: 15px 5px;
    vertical-align: middle;
    white-space: normal;
    font-weight: normal;
    width: 33.33333333333%;
    text-align: center;
    border: none;
    border-left: 1px solid #d8d8d8;
    border-bottom: 1px solid #d8d8d8;
  }
  .search-classroom-materials-by-standards ul li small {
    font-weight: normal;
    line-height: 1;
    color: #666;
    font-size: 12px;
  }
  .search-classroom-materials-by-standards ul li small.block {
    display: block;
    margin-top: 5px;
  }
  .search-classroom-materials-by-standards ul li:first-child {
    border-left: none;
  }
  .search-classroom-materials-by-standards ul li.ui-tabs-active {
    border-bottom-color: #ffffff;
  }
}
@media screen and (max-width: 650px) and screen and (max-width: 480px) {
  .search-classroom-materials-by-standards ul li h3 small,
  .search-classroom-materials-by-standards ul li .mimic-h3 small {
    display: block;
    margin-top: 5px;
  }
}
.search-classroom-materials-by-standards .panel {
  -ms-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding: 30px 40px;
  display: table-cell;
  text-align: left;
  vertical-align: top;
  width: 70%;
  background-color: #ffffff;
}
@media screen and (max-width: 650px) {
  .search-classroom-materials-by-standards .panel {
    display: block;
    width: 100%;
    padding: 30px 20px;
  }
}
.search-classroom-materials-by-standards .panel form {
  margin: 0;
  padding: 0;
  display: table;
  table-layout: fixed;
  width: 100%;
}
.search-classroom-materials-by-standards .panel form .table-cell {
  display: table-cell;
  text-align: left;
  vertical-align: top;
}
.search-classroom-materials-by-standards .panel form p {
  margin-bottom: 13.5px;
}
.search-classroom-materials-by-standards .panel form .box-elements {
  display: table-cell;
  text-align: left;
  vertical-align: top;
  width: 70%;
  vertical-align: bottom;
}
.search-classroom-materials-by-standards .panel form .box-elements label {
  display: inline-block;
  width: 60px;
  height: 30px;
  line-height: 30px;
}
.search-classroom-materials-by-standards .panel form .box-elements select {
  height: 30px;
  line-height: 30px;
}
@media screen and (max-width: 650px) {
  .search-classroom-materials-by-standards .panel form .box-elements {
    width: 100%;
    display: block;
  }
}
.search-classroom-materials-by-standards .panel form .box-button {
  display: table-cell;
  text-align: left;
  vertical-align: top;
  width: 30%;
  vertical-align: bottom;
  text-align: right;
}
.search-classroom-materials-by-standards .panel form .box-button input[type="submit"] {
  background-color: #0078ae;
  color: #ffffff;
  font-size: 18px;
  line-height: 22.5px;
  font-weight: bold;
  border: none;
  padding: 0 15px;
  height: 35px;
}
.search-classroom-materials-by-standards .panel form .box-button input[type="submit"] small {
  font-weight: normal;
  line-height: 1;
  color: #666;
  font-size: 12px;
}
@media screen and (max-width: 480px) {
  .search-classroom-materials-by-standards .panel form .box-button input[type="submit"] small {
    display: block;
    margin-top: 5px;
  }
}
.search-classroom-materials-by-standards .panel form .box-button input[type="submit"] small.block {
  display: block;
  margin-top: 5px;
}
@media screen and (max-width: 650px) {
  .search-classroom-materials-by-standards .panel form .box-button {
    width: 100%;
    display: block;
  }
}

/*! jQuery UI - v1.10.2 - 2013-05-01
* http://jqueryui.com
* Includes: jquery.ui.core.css, jquery.ui.resizable.css, jquery.ui.selectable.css, jquery.ui.accordion.css, jquery.ui.autocomplete.css, jquery.ui.button.css, jquery.ui.datepicker.css, jquery.ui.dialog.css, jquery.ui.menu.css, jquery.ui.progressbar.css, jquery.ui.slider.css, jquery.ui.spinner.css, jquery.ui.tabs.css, jquery.ui.tooltip.css
* To view and modify this theme, visit http://jqueryui.com/themeroller/?ffDefault=Arial%2C%20Helvetica%2C%20sans-serif&fwDefault=normal&fsDefault=1em&cornerRadius=0&bgColorHeader=%23cccccc&bgTextureHeader=flat&bgImgOpacityHeader=100&borderColorHeader=%23cccccc&fcHeader=%23333333&iconColorHeader=%23333333&bgColorContent=%23ffffff&bgTextureContent=flat&bgImgOpacityContent=100&borderColorContent=%23cccccc&fcContent=%23333333&iconColorContent=%23333333&bgColorDefault=%23eeeeee&bgTextureDefault=flat&bgImgOpacityDefault=100&borderColorDefault=%23dddddd&fcDefault=%23666666&iconColorDefault=%23888888&bgColorHover=%23eeeeee&bgTextureHover=flat&bgImgOpacityHover=100&borderColorHover=%23999999&fcHover=%23333333&iconColorHover=%23333333&bgColorActive=%23ffffff&bgTextureActive=flat&bgImgOpacityActive=100&borderColorActive=%23cccccc&fcActive=%23333333&iconColorActive=%23333333&bgColorHighlight=%23fbf9ee&bgTextureHighlight=glass&bgImgOpacityHighlight=55&borderColorHighlight=%23fcefa1&fcHighlight=%23363636&iconColorHighlight=%232e83ff&bgColorError=%23fef1ec&bgTextureError=glass&bgImgOpacityError=95&borderColorError=%23cd0a0a&fcError=%23cd0a0a&iconColorError=%23cd0a0a&bgColorOverlay=%23aaaaaa&bgTextureOverlay=flat&bgImgOpacityOverlay=0&opacityOverlay=30&bgColorShadow=%23aaaaaa&bgTextureShadow=flat&bgImgOpacityShadow=0&opacityShadow=30&thicknessShadow=8px&offsetTopShadow=-8px&offsetLeftShadow=-8px&cornerRadiusShadow=8px&zThemeParams=5d00000100ef05000000000000003d8888d844329a8dfe02723de3e5700bbb34ecf36cd860b0b15c401619a7e924a16722e66e3e2a2945dabbdb3cb54cf95e9d49d626ee5ce67245f727ef682c200e494d70eb38204c605fb69d3ded8fb25c65cbcc29f42471975a772d1931b5bd5acb9552851c6a1e55174c7c160f404fdc7b7ad5381e18c48d3bf7147a5dd0a20e5a8b469c380ce15e3d8bdc938ac514514b1f022191a3c25ec6e447729d46167ac48a19011ff933e2f964da7d27f92eb7bae7d3f76a07e820bfe28ac212fe0d8229bc4eead42e23eeb950b2355cc57e430b840be416309aac84e20bbc3eb99b08a0fe4d3fa00200890bcb2ef096c8055721ea640a4b8ea31c2dae8c62ed37eed779cd3056ec23886a92060a5121281d8bb62ffdb1fdb769781c506fc14c8a0c19f00b8c9762ad8ccc0946c9f00bf554c843efc9482bd793f8aa24198e78a6d5b0529fb94200344cf1e6c53aa8c70210855c8ac5ca36236f7564b6c8f8994f12f75baae38746cb478b1ea8c32223b7c509e15d8f22ae7184b6bfb44dd5996a0a3cb8c5e049c9c4237f8bbb84b7ad5a3f6a475337336b6f881def3609bcececb4f01933885e1898ebe70cff07a4ffd710295b
* Copyright 2013 jQuery Foundation and other contributors Licensed MIT */

/* Layout helpers
----------------------------------*/
.ui-helper-hidden {
	display: none;
}
.ui-helper-hidden-accessible {
	border: 0;
	clip: rect(0 0 0 0);
	height: 1px;
	margin: -1px;
	overflow: hidden;
	padding: 0;
	position: absolute;
	width: 1px;
}
.ui-helper-reset {
	margin: 0;
	padding: 0;
	border: 0;
	outline: 0;
	line-height: 1.3;
	text-decoration: none;
	font-size: 100%;
	list-style: none;
}
.ui-helper-clearfix:before,
.ui-helper-clearfix:after {
	content: "";
	display: table;
	border-collapse: collapse;
}
.ui-helper-clearfix:after {
	clear: both;
}
.ui-helper-clearfix {
	min-height: 0; /* support: IE7 */
}
.ui-helper-zfix {
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	position: absolute;
	opacity: 0;
	filter:Alpha(Opacity=0);
}

.ui-front {
	z-index: 100;
}


/* Interaction Cues
----------------------------------*/
.ui-state-disabled {
	cursor: default !important;
}


/* Icons
----------------------------------*/

/* states and images */
.ui-icon {
	display: block;
	text-indent: -99999px;
	overflow: hidden;
	background-repeat: no-repeat;
}


/* Misc visuals
----------------------------------*/

/* Overlays */
.ui-widget-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
.ui-resizable {
	position: relative;
}
.ui-resizable-handle {
	position: absolute;
	font-size: 0.1px;
	display: block;
}
.ui-resizable-disabled .ui-resizable-handle,
.ui-resizable-autohide .ui-resizable-handle {
	display: none;
}
.ui-resizable-n {
	cursor: n-resize;
	height: 7px;
	width: 100%;
	top: -5px;
	left: 0;
}
.ui-resizable-s {
	cursor: s-resize;
	height: 7px;
	width: 100%;
	bottom: -5px;
	left: 0;
}
.ui-resizable-e {
	cursor: e-resize;
	width: 7px;
	right: -5px;
	top: 0;
	height: 100%;
}
.ui-resizable-w {
	cursor: w-resize;
	width: 7px;
	left: -5px;
	top: 0;
	height: 100%;
}
.ui-resizable-se {
	cursor: se-resize;
	width: 12px;
	height: 12px;
	right: 1px;
	bottom: 1px;
}
.ui-resizable-sw {
	cursor: sw-resize;
	width: 9px;
	height: 9px;
	left: -5px;
	bottom: -5px;
}
.ui-resizable-nw {
	cursor: nw-resize;
	width: 9px;
	height: 9px;
	left: -5px;
	top: -5px;
}
.ui-resizable-ne {
	cursor: ne-resize;
	width: 9px;
	height: 9px;
	right: -5px;
	top: -5px;
}
.ui-selectable-helper {
	position: absolute;
	z-index: 100;
	border: 1px dotted black;
}
.ui-accordion .ui-accordion-header {
	display: block;
	cursor: pointer;
	position: relative;
	margin-top: 2px;
	padding: .5em .5em .5em .7em;
	min-height: 0; /* support: IE7 */
}
.ui-accordion .ui-accordion-icons {
	padding-left: 2.2em;
}
.ui-accordion .ui-accordion-noicons {
	padding-left: .7em;
}
.ui-accordion .ui-accordion-icons .ui-accordion-icons {
	padding-left: 2.2em;
}
.ui-accordion .ui-accordion-header .ui-accordion-header-icon {
	position: absolute;
	left: .5em;
	top: 50%;
	margin-top: -8px;
}
.ui-accordion .ui-accordion-content {
	padding: 1em 2.2em;
	border-top: 0;
	overflow: auto;
}
.ui-autocomplete {
	position: absolute;
	top: 0;
	left: 0;
	cursor: default;
}
.ui-button {
	display: inline-block;
	position: relative;
	padding: 0;
	line-height: normal;
	margin-right: .1em;
	cursor: pointer;
	vertical-align: middle;
	text-align: center;
	overflow: visible; /* removes extra width in IE */
}
.ui-button,
.ui-button:link,
.ui-button:visited,
.ui-button:hover,
.ui-button:active {
	text-decoration: none;
}
/* to make room for the icon, a width needs to be set here */
.ui-button-icon-only {
	width: 2.2em;
}
/* button elements seem to need a little more width */
button.ui-button-icon-only {
	width: 2.4em;
}
.ui-button-icons-only {
	width: 3.4em;
}
button.ui-button-icons-only {
	width: 3.7em;
}

/* button text element */
.ui-button .ui-button-text {
	display: block;
	line-height: normal;
}
.ui-button-text-only .ui-button-text {
	padding: .4em 1em;
}
.ui-button-icon-only .ui-button-text,
.ui-button-icons-only .ui-button-text {
	padding: .4em;
	text-indent: -9999999px;
}
.ui-button-text-icon-primary .ui-button-text,
.ui-button-text-icons .ui-button-text {
	padding: .4em 1em .4em 2.1em;
}
.ui-button-text-icon-secondary .ui-button-text,
.ui-button-text-icons .ui-button-text {
	padding: .4em 2.1em .4em 1em;
}
.ui-button-text-icons .ui-button-text {
	padding-left: 2.1em;
	padding-right: 2.1em;
}
/* no icon support for input elements, provide padding by default */
input.ui-button {
	padding: .4em 1em;
}

/* button icon element(s) */
.ui-button-icon-only .ui-icon,
.ui-button-text-icon-primary .ui-icon,
.ui-button-text-icon-secondary .ui-icon,
.ui-button-text-icons .ui-icon,
.ui-button-icons-only .ui-icon {
	position: absolute;
	top: 50%;
	margin-top: -8px;
}
.ui-button-icon-only .ui-icon {
	left: 50%;
	margin-left: -8px;
}
.ui-button-text-icon-primary .ui-button-icon-primary,
.ui-button-text-icons .ui-button-icon-primary,
.ui-button-icons-only .ui-button-icon-primary {
	left: .5em;
}
.ui-button-text-icon-secondary .ui-button-icon-secondary,
.ui-button-text-icons .ui-button-icon-secondary,
.ui-button-icons-only .ui-button-icon-secondary {
	right: .5em;
}

/* button sets */
.ui-buttonset {
	margin-right: 7px;
}
.ui-buttonset .ui-button {
	margin-left: 0;
	margin-right: -.3em;
}

/* workarounds */
/* reset extra padding in Firefox, see h5bp.com/l */
input.ui-button::-moz-focus-inner,
button.ui-button::-moz-focus-inner {
	border: 0;
	padding: 0;
}
.ui-datepicker {
	width: 17em;
	padding: .2em .2em 0;
	display: none;
}
.ui-datepicker .ui-datepicker-header {
	position: relative;
	padding: .2em 0;
}
.ui-datepicker .ui-datepicker-prev,
.ui-datepicker .ui-datepicker-next {
	position: absolute;
	top: 2px;
	width: 1.8em;
	height: 1.8em;
}
.ui-datepicker .ui-datepicker-prev-hover,
.ui-datepicker .ui-datepicker-next-hover {
	top: 1px;
}
.ui-datepicker .ui-datepicker-prev {
	left: 2px;
}
.ui-datepicker .ui-datepicker-next {
	right: 2px;
}
.ui-datepicker .ui-datepicker-prev-hover {
	left: 1px;
}
.ui-datepicker .ui-datepicker-next-hover {
	right: 1px;
}
.ui-datepicker .ui-datepicker-prev span,
.ui-datepicker .ui-datepicker-next span {
	display: block;
	position: absolute;
	left: 50%;
	margin-left: -8px;
	top: 50%;
	margin-top: -8px;
}
.ui-datepicker .ui-datepicker-title {
	margin: 0 2.3em;
	line-height: 1.8em;
	text-align: center;
}
.ui-datepicker .ui-datepicker-title select {
	font-size: 1em;
	margin: 1px 0;
}
.ui-datepicker select.ui-datepicker-month-year {
	width: 100%;
}
.ui-datepicker select.ui-datepicker-month,
.ui-datepicker select.ui-datepicker-year {
	width: 49%;
}
.ui-datepicker table {
	width: 100%;
	font-size: .9em;
	border-collapse: collapse;
	margin: 0 0 .4em;
}
.ui-datepicker th {
	padding: .7em .3em;
	text-align: center;
	font-weight: bold;
	border: 0;
}
.ui-datepicker td {
	border: 0;
	padding: 1px;
}
.ui-datepicker td span,
.ui-datepicker td a {
	display: block;
	padding: .2em;
	text-align: right;
	text-decoration: none;
}
.ui-datepicker .ui-datepicker-buttonpane {
	background-image: none;
	margin: .7em 0 0 0;
	padding: 0 .2em;
	border-left: 0;
	border-right: 0;
	border-bottom: 0;
}
.ui-datepicker .ui-datepicker-buttonpane button {
	float: right;
	margin: .5em .2em .4em;
	cursor: pointer;
	padding: .2em .6em .3em .6em;
	width: auto;
	overflow: visible;
}
.ui-datepicker .ui-datepicker-buttonpane button.ui-datepicker-current {
	float: left;
}

/* with multiple calendars */
.ui-datepicker.ui-datepicker-multi {
	width: auto;
}
.ui-datepicker-multi .ui-datepicker-group {
	float: left;
}
.ui-datepicker-multi .ui-datepicker-group table {
	width: 95%;
	margin: 0 auto .4em;
}
.ui-datepicker-multi-2 .ui-datepicker-group {
	width: 50%;
}
.ui-datepicker-multi-3 .ui-datepicker-group {
	width: 33.3%;
}
.ui-datepicker-multi-4 .ui-datepicker-group {
	width: 25%;
}
.ui-datepicker-multi .ui-datepicker-group-last .ui-datepicker-header,
.ui-datepicker-multi .ui-datepicker-group-middle .ui-datepicker-header {
	border-left-width: 0;
}
.ui-datepicker-multi .ui-datepicker-buttonpane {
	clear: left;
}
.ui-datepicker-row-break {
	clear: both;
	width: 100%;
	font-size: 0;
}

/* RTL support */
.ui-datepicker-rtl {
	direction: rtl;
}
.ui-datepicker-rtl .ui-datepicker-prev {
	right: 2px;
	left: auto;
}
.ui-datepicker-rtl .ui-datepicker-next {
	left: 2px;
	right: auto;
}
.ui-datepicker-rtl .ui-datepicker-prev:hover {
	right: 1px;
	left: auto;
}
.ui-datepicker-rtl .ui-datepicker-next:hover {
	left: 1px;
	right: auto;
}
.ui-datepicker-rtl .ui-datepicker-buttonpane {
	clear: right;
}
.ui-datepicker-rtl .ui-datepicker-buttonpane button {
	float: left;
}
.ui-datepicker-rtl .ui-datepicker-buttonpane button.ui-datepicker-current,
.ui-datepicker-rtl .ui-datepicker-group {
	float: right;
}
.ui-datepicker-rtl .ui-datepicker-group-last .ui-datepicker-header,
.ui-datepicker-rtl .ui-datepicker-group-middle .ui-datepicker-header {
	border-right-width: 0;
	border-left-width: 1px;
}
.ui-dialog {
	position: absolute;
	top: 0;
	left: 0;
	padding: .2em;
	outline: 0;
}
.ui-dialog .ui-dialog-titlebar {
	padding: .4em 1em;
	position: relative;
}
.ui-dialog .ui-dialog-title {
	float: left;
	margin: .1em 0;
	white-space: nowrap;
	width: 90%;
	overflow: hidden;
	text-overflow: ellipsis;
}
.ui-dialog .ui-dialog-titlebar-close {
	position: absolute;
	right: .3em;
	top: 50%;
	width: 21px;
	margin: -10px 0 0 0;
	padding: 1px;
	height: 20px;
}
.ui-dialog .ui-dialog-content {
	position: relative;
	border: 0;
	padding: .5em 1em;
	background: none;
	overflow: auto;
}
.ui-dialog .ui-dialog-buttonpane {
	text-align: left;
	border-width: 1px 0 0 0;
	background-image: none;
	margin-top: .5em;
	padding: .3em 1em .5em .4em;
}
.ui-dialog .ui-dialog-buttonpane .ui-dialog-buttonset {
	float: right;
}
.ui-dialog .ui-dialog-buttonpane button {
	margin: .5em .4em .5em 0;
	cursor: pointer;
}
.ui-dialog .ui-resizable-se {
	width: 12px;
	height: 12px;
	right: -5px;
	bottom: -5px;
	background-position: 16px 16px;
}
.ui-draggable .ui-dialog-titlebar {
	cursor: move;
}
.ui-menu {
	list-style: none;
	padding: 2px;
	margin: 0;
	display: block;
	outline: none;
}
.ui-menu .ui-menu {
	margin-top: -3px;
	position: absolute;
}
.ui-menu .ui-menu-item {
	margin: 0;
	padding: 0;
	width: 100%;
}
.ui-menu .ui-menu-divider {
	margin: 5px -2px 5px -2px;
	height: 0;
	font-size: 0;
	line-height: 0;
	border-width: 1px 0 0 0;
}
.ui-menu .ui-menu-item a {
	text-decoration: none;
	display: block;
	padding: 2px .4em;
	line-height: 1.5;
	min-height: 0; /* support: IE7 */
	font-weight: normal;
}
.ui-menu .ui-menu-item a.ui-state-focus,
.ui-menu .ui-menu-item a.ui-state-active {
	font-weight: normal;
	margin: -1px;
}

.ui-menu .ui-state-disabled {
	font-weight: normal;
	margin: .4em 0 .2em;
	line-height: 1.5;
}
.ui-menu .ui-state-disabled a {
	cursor: default;
}

/* icon support */
.ui-menu-icons {
	position: relative;
}
.ui-menu-icons .ui-menu-item a {
	position: relative;
	padding-left: 2em;
}

/* left-aligned */
.ui-menu .ui-icon {
	position: absolute;
	top: .2em;
	left: .2em;
}

/* right-aligned */
.ui-menu .ui-menu-icon {
	position: static;
	float: right;
}
.ui-progressbar {
	height: 2em;
	text-align: left;
	overflow: hidden;
}
.ui-progressbar .ui-progressbar-value {
	margin: -1px;
	height: 100%;
}
.ui-progressbar .ui-progressbar-overlay {
	background: url("images/animated-overlay.gif");
	height: 100%;
	filter: alpha(opacity=25);
	opacity: 0.25;
}
.ui-progressbar-indeterminate .ui-progressbar-value {
	background-image: none;
}
.ui-slider {
	position: relative;
	text-align: left;
}
.ui-slider .ui-slider-handle {
	position: absolute;
	z-index: 2;
	width: 1.2em;
	height: 1.2em;
	cursor: default;
}
.ui-slider .ui-slider-range {
	position: absolute;
	z-index: 1;
	font-size: .7em;
	display: block;
	border: 0;
	background-position: 0 0;
}

/* For IE8 - See #6727 */
.ui-slider.ui-state-disabled .ui-slider-handle,
.ui-slider.ui-state-disabled .ui-slider-range {
	filter: inherit;
}

.ui-slider-horizontal {
	height: .8em;
}
.ui-slider-horizontal .ui-slider-handle {
	top: -.3em;
	margin-left: -.6em;
}
.ui-slider-horizontal .ui-slider-range {
	top: 0;
	height: 100%;
}
.ui-slider-horizontal .ui-slider-range-min {
	left: 0;
}
.ui-slider-horizontal .ui-slider-range-max {
	right: 0;
}

.ui-slider-vertical {
	width: .8em;
	height: 100px;
}
.ui-slider-vertical .ui-slider-handle {
	left: -.3em;
	margin-left: 0;
	margin-bottom: -.6em;
}
.ui-slider-vertical .ui-slider-range {
	left: 0;
	width: 100%;
}
.ui-slider-vertical .ui-slider-range-min {
	bottom: 0;
}
.ui-slider-vertical .ui-slider-range-max {
	top: 0;
}
.ui-spinner {
	position: relative;
	display: inline-block;
	overflow: hidden;
	padding: 0;
	vertical-align: middle;
}
.ui-spinner-input {
	border: none;
	background: none;
	color: inherit;
	padding: 0;
	margin: .2em 0;
	vertical-align: middle;
	margin-left: .4em;
	margin-right: 22px;
}
.ui-spinner-button {
	width: 16px;
	height: 50%;
	font-size: .5em;
	padding: 0;
	margin: 0;
	text-align: center;
	position: absolute;
	cursor: default;
	display: block;
	overflow: hidden;
	right: 0;
}
/* more specificity required here to overide default borders */
.ui-spinner a.ui-spinner-button {
	border-top: none;
	border-bottom: none;
	border-right: none;
}
/* vertical centre icon */
.ui-spinner .ui-icon {
	position: absolute;
	margin-top: -8px;
	top: 50%;
	left: 0;
}
.ui-spinner-up {
	top: 0;
}
.ui-spinner-down {
	bottom: 0;
}

/* TR overrides */
.ui-spinner .ui-icon-triangle-1-s {
	/* need to fix icons sprite */
	background-position: -65px -16px;
}
.ui-tabs {
	position: relative;/* position: relative prevents IE scroll bug (element with position: relative inside container with overflow: auto appear as "fixed") */
	padding: .2em;
}
.ui-tabs .ui-tabs-nav {
	margin: 0;
	padding: .2em .2em 0;
}
.ui-tabs .ui-tabs-nav li {
	list-style: none;
	float: left;
	position: relative;
	top: 0;
	margin: 1px .2em 0 0;
	border-bottom-width: 0;
	padding: 0;
	white-space: nowrap;
}
.ui-tabs .ui-tabs-nav li a {
	float: left;
	padding: .5em 1em;
	text-decoration: none;
}
.ui-tabs .ui-tabs-nav li.ui-tabs-active {
	margin-bottom: -1px;
	padding-bottom: 1px;
}
.ui-tabs .ui-tabs-nav li.ui-tabs-active a,
.ui-tabs .ui-tabs-nav li.ui-state-disabled a,
.ui-tabs .ui-tabs-nav li.ui-tabs-loading a {
	cursor: text;
}
.ui-tabs .ui-tabs-nav li a, /* first selector in group seems obsolete, but required to overcome bug in Opera applying cursor: text overall if defined elsewhere... */
.ui-tabs-collapsible .ui-tabs-nav li.ui-tabs-active a {
	cursor: pointer;
}
.ui-tabs .ui-tabs-panel {
	display: block;
	border-width: 0;
	padding: 1em 1.4em;
	background: none;
}
.ui-tooltip {
	padding: 8px;
	position: absolute;
	z-index: 9999;
	max-width: 300px;
	-webkit-box-shadow: 0 0 5px #aaa;
	box-shadow: 0 0 5px #aaa;
}
body .ui-tooltip {
	border-width: 2px;
}

/* Component containers
----------------------------------*/
.ui-widget {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 1em;
}
.ui-widget .ui-widget {
	font-size: 1em;
}
.ui-widget input,
.ui-widget select,
.ui-widget textarea,
.ui-widget button {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 1em;
}
.ui-widget-content {
	border: 1px solid #cccccc;
	background: #ffffff url(/static/css/jquery-ui/ui-bg_flat_100_ffffff_40x100.png) 50% 50% repeat-x;
	color: #333333;
}
.ui-widget-content a {
	color: #333333;
}
.ui-widget-header {
	border: 1px solid #cccccc;
	background: #cccccc url(/static/css/jquery-ui/ui-bg_flat_100_cccccc_40x100.png) 50% 50% repeat-x;
	color: #333333;
	font-weight: bold;
}
.ui-widget-header a {
	color: #333333;
}

/* Interaction states
----------------------------------*/
.ui-state-default,
.ui-widget-content .ui-state-default,
.ui-widget-header .ui-state-default {
	border: 1px solid #dddddd;
	background: #eeeeee url(/static/css/jquery-ui/ui-bg_flat_100_eeeeee_40x100.png) 50% 50% repeat-x;
	font-weight: normal;
	color: #666666;
}
.ui-state-default a,
.ui-state-default a:link,
.ui-state-default a:visited {
	color: #666666;
	text-decoration: none;
}
.ui-state-hover,
.ui-widget-content .ui-state-hover,
.ui-widget-header .ui-state-hover,
.ui-state-focus,
.ui-widget-content .ui-state-focus,
.ui-widget-header .ui-state-focus {
	border: 1px solid #999999;
	background: #eeeeee url(/static/css/jquery-ui/ui-bg_flat_100_eeeeee_40x100.png) 50% 50% repeat-x;
	font-weight: normal;
	color: #333333;
}
.ui-state-hover a,
.ui-state-hover a:hover,
.ui-state-hover a:link,
.ui-state-hover a:visited {
	color: #333333;
	text-decoration: none;
}
.ui-state-active,
.ui-widget-content .ui-state-active,
.ui-widget-header .ui-state-active {
	border: 1px solid #cccccc;
	background: #ffffff url(/static/css/jquery-ui/ui-bg_flat_100_ffffff_40x100.png) 50% 50% repeat-x;
	font-weight: normal;
	color: #333333;
}
.ui-state-active a,
.ui-state-active a:link,
.ui-state-active a:visited {
	color: #333333;
	text-decoration: none;
}

/* Interaction Cues
----------------------------------*/
.ui-state-highlight,
.ui-widget-content .ui-state-highlight,
.ui-widget-header .ui-state-highlight {
	border: 1px solid #fcefa1;
	background: #fbf9ee url(/static/css/jquery-ui/ui-bg_glass_55_fbf9ee_1x400.png) 50% 50% repeat-x;
	color: #363636;
}
.ui-state-highlight a,
.ui-widget-content .ui-state-highlight a,
.ui-widget-header .ui-state-highlight a {
	color: #363636;
}
.ui-state-error,
.ui-widget-content .ui-state-error,
.ui-widget-header .ui-state-error {
	border: 1px solid #cd0a0a;
	background: #fef1ec url(/static/css/jquery-ui/ui-bg_glass_95_fef1ec_1x400.png) 50% 50% repeat-x;
	color: #cd0a0a;
}
.ui-state-error a,
.ui-widget-content .ui-state-error a,
.ui-widget-header .ui-state-error a {
	color: #cd0a0a;
}
.ui-state-error-text,
.ui-widget-content .ui-state-error-text,
.ui-widget-header .ui-state-error-text {
	color: #cd0a0a;
}
.ui-priority-primary,
.ui-widget-content .ui-priority-primary,
.ui-widget-header .ui-priority-primary {
	font-weight: bold;
}
.ui-priority-secondary,
.ui-widget-content .ui-priority-secondary,
.ui-widget-header .ui-priority-secondary {
	opacity: .7;
	filter:Alpha(Opacity=70);
	font-weight: normal;
}
.ui-state-disabled,
.ui-widget-content .ui-state-disabled,
.ui-widget-header .ui-state-disabled {
	opacity: .35;
	filter:Alpha(Opacity=35);
	background-image: none;
}
.ui-state-disabled .ui-icon {
	filter:Alpha(Opacity=35); /* For IE8 - See #6059 */
}

/* Icons
----------------------------------*/

/* states and images */
.ui-icon {
	width: 16px;
	height: 16px;
}
.ui-icon,
.ui-widget-content .ui-icon {
	background-image: url(/static/css/jquery-ui/ui-icons_333333_256x240.png);
}
.ui-widget-header .ui-icon {
	background-image: url(/static/css/jquery-ui/ui-icons_333333_256x240.png);
}
.ui-state-default .ui-icon {
	background-image: url(/static/css/jquery-ui/ui-icons_888888_256x240.png);
}
.ui-state-hover .ui-icon,
.ui-state-focus .ui-icon {
	background-image: url(/static/css/jquery-ui/ui-icons_333333_256x240.png);
}
.ui-state-active .ui-icon {
	background-image: url(/static/css/jquery-ui/ui-icons_333333_256x240.png);
}
.ui-state-highlight .ui-icon {
	background-image: url(/static/css/jquery-ui/ui-icons_2e83ff_256x240.png);
}
.ui-state-error .ui-icon,
.ui-state-error-text .ui-icon {
	background-image: url(/static/css/jquery-ui/ui-icons_cd0a0a_256x240.png);
}

/* positioning */
.ui-icon-blank { background-position: 16px 16px; }
.ui-icon-carat-1-n { background-position: 0 0; }
.ui-icon-carat-1-ne { background-position: -16px 0; }
.ui-icon-carat-1-e { background-position: -32px 0; }
.ui-icon-carat-1-se { background-position: -48px 0; }
.ui-icon-carat-1-s { background-position: -64px 0; }
.ui-icon-carat-1-sw { background-position: -80px 0; }
.ui-icon-carat-1-w { background-position: -96px 0; }
.ui-icon-carat-1-nw { background-position: -112px 0; }
.ui-icon-carat-2-n-s { background-position: -128px 0; }
.ui-icon-carat-2-e-w { background-position: -144px 0; }
.ui-icon-triangle-1-n { background-position: 0 -16px; }
.ui-icon-triangle-1-ne { background-position: -16px -16px; }
.ui-icon-triangle-1-e { background-position: -32px -16px; }
.ui-icon-triangle-1-se { background-position: -48px -16px; }
.ui-icon-triangle-1-s { background-position: -64px -16px; }
.ui-icon-triangle-1-sw { background-position: -80px -16px; }
.ui-icon-triangle-1-w { background-position: -96px -16px; }
.ui-icon-triangle-1-nw { background-position: -112px -16px; }
.ui-icon-triangle-2-n-s { background-position: -128px -16px; }
.ui-icon-triangle-2-e-w { background-position: -144px -16px; }
.ui-icon-arrow-1-n { background-position: 0 -32px; }
.ui-icon-arrow-1-ne { background-position: -16px -32px; }
.ui-icon-arrow-1-e { background-position: -32px -32px; }
.ui-icon-arrow-1-se { background-position: -48px -32px; }
.ui-icon-arrow-1-s { background-position: -64px -32px; }
.ui-icon-arrow-1-sw { background-position: -80px -32px; }
.ui-icon-arrow-1-w { background-position: -96px -32px; }
.ui-icon-arrow-1-nw { background-position: -112px -32px; }
.ui-icon-arrow-2-n-s { background-position: -128px -32px; }
.ui-icon-arrow-2-ne-sw { background-position: -144px -32px; }
.ui-icon-arrow-2-e-w { background-position: -160px -32px; }
.ui-icon-arrow-2-se-nw { background-position: -176px -32px; }
.ui-icon-arrowstop-1-n { background-position: -192px -32px; }
.ui-icon-arrowstop-1-e { background-position: -208px -32px; }
.ui-icon-arrowstop-1-s { background-position: -224px -32px; }
.ui-icon-arrowstop-1-w { background-position: -240px -32px; }
.ui-icon-arrowthick-1-n { background-position: 0 -48px; }
.ui-icon-arrowthick-1-ne { background-position: -16px -48px; }
.ui-icon-arrowthick-1-e { background-position: -32px -48px; }
.ui-icon-arrowthick-1-se { background-position: -48px -48px; }
.ui-icon-arrowthick-1-s { background-position: -64px -48px; }
.ui-icon-arrowthick-1-sw { background-position: -80px -48px; }
.ui-icon-arrowthick-1-w { background-position: -96px -48px; }
.ui-icon-arrowthick-1-nw { background-position: -112px -48px; }
.ui-icon-arrowthick-2-n-s { background-position: -128px -48px; }
.ui-icon-arrowthick-2-ne-sw { background-position: -144px -48px; }
.ui-icon-arrowthick-2-e-w { background-position: -160px -48px; }
.ui-icon-arrowthick-2-se-nw { background-position: -176px -48px; }
.ui-icon-arrowthickstop-1-n { background-position: -192px -48px; }
.ui-icon-arrowthickstop-1-e { background-position: -208px -48px; }
.ui-icon-arrowthickstop-1-s { background-position: -224px -48px; }
.ui-icon-arrowthickstop-1-w { background-position: -240px -48px; }
.ui-icon-arrowreturnthick-1-w { background-position: 0 -64px; }
.ui-icon-arrowreturnthick-1-n { background-position: -16px -64px; }
.ui-icon-arrowreturnthick-1-e { background-position: -32px -64px; }
.ui-icon-arrowreturnthick-1-s { background-position: -48px -64px; }
.ui-icon-arrowreturn-1-w { background-position: -64px -64px; }
.ui-icon-arrowreturn-1-n { background-position: -80px -64px; }
.ui-icon-arrowreturn-1-e { background-position: -96px -64px; }
.ui-icon-arrowreturn-1-s { background-position: -112px -64px; }
.ui-icon-arrowrefresh-1-w { background-position: -128px -64px; }
.ui-icon-arrowrefresh-1-n { background-position: -144px -64px; }
.ui-icon-arrowrefresh-1-e { background-position: -160px -64px; }
.ui-icon-arrowrefresh-1-s { background-position: -176px -64px; }
.ui-icon-arrow-4 { background-position: 0 -80px; }
.ui-icon-arrow-4-diag { background-position: -16px -80px; }
.ui-icon-extlink { background-position: -32px -80px; }
.ui-icon-newwin { background-position: -48px -80px; }
.ui-icon-refresh { background-position: -64px -80px; }
.ui-icon-shuffle { background-position: -80px -80px; }
.ui-icon-transfer-e-w { background-position: -96px -80px; }
.ui-icon-transferthick-e-w { background-position: -112px -80px; }
.ui-icon-folder-collapsed { background-position: 0 -96px; }
.ui-icon-folder-open { background-position: -16px -96px; }
.ui-icon-document { background-position: -32px -96px; }
.ui-icon-document-b { background-position: -48px -96px; }
.ui-icon-note { background-position: -64px -96px; }
.ui-icon-mail-closed { background-position: -80px -96px; }
.ui-icon-mail-open { background-position: -96px -96px; }
.ui-icon-suitcase { background-position: -112px -96px; }
.ui-icon-comment { background-position: -128px -96px; }
.ui-icon-person { background-position: -144px -96px; }
.ui-icon-print { background-position: -160px -96px; }
.ui-icon-trash { background-position: -176px -96px; }
.ui-icon-locked { background-position: -192px -96px; }
.ui-icon-unlocked { background-position: -208px -96px; }
.ui-icon-bookmark { background-position: -224px -96px; }
.ui-icon-tag { background-position: -240px -96px; }
.ui-icon-home { background-position: 0 -112px; }
.ui-icon-flag { background-position: -16px -112px; }
.ui-icon-calendar { background-position: -32px -112px; }
.ui-icon-cart { background-position: -48px -112px; }
.ui-icon-pencil { background-position: -64px -112px; }
.ui-icon-clock { background-position: -80px -112px; }
.ui-icon-disk { background-position: -96px -112px; }
.ui-icon-calculator { background-position: -112px -112px; }
.ui-icon-zoomin { background-position: -128px -112px; }
.ui-icon-zoomout { background-position: -144px -112px; }
.ui-icon-search { background-position: -160px -112px; }
.ui-icon-wrench { background-position: -176px -112px; }
.ui-icon-gear { background-position: -192px -112px; }
.ui-icon-heart { background-position: -208px -112px; }
.ui-icon-star { background-position: -224px -112px; }
.ui-icon-link { background-position: -240px -112px; }
.ui-icon-cancel { background-position: 0 -128px; }
.ui-icon-plus { background-position: -16px -128px; }
.ui-icon-plusthick { background-position: -32px -128px; }
.ui-icon-minus { background-position: -48px -128px; }
.ui-icon-minusthick { background-position: -64px -128px; }
.ui-icon-close { background-position: -80px -128px; }
.ui-icon-closethick { background-position: -96px -128px; }
.ui-icon-key { background-position: -112px -128px; }
.ui-icon-lightbulb { background-position: -128px -128px; }
.ui-icon-scissors { background-position: -144px -128px; }
.ui-icon-clipboard { background-position: -160px -128px; }
.ui-icon-copy { background-position: -176px -128px; }
.ui-icon-contact { background-position: -192px -128px; }
.ui-icon-image { background-position: -208px -128px; }
.ui-icon-video { background-position: -224px -128px; }
.ui-icon-script { background-position: -240px -128px; }
.ui-icon-alert { background-position: 0 -144px; }
.ui-icon-info { background-position: -16px -144px; }
.ui-icon-notice { background-position: -32px -144px; }
.ui-icon-help { background-position: -48px -144px; }
.ui-icon-check { background-position: -64px -144px; }
.ui-icon-bullet { background-position: -80px -144px; }
.ui-icon-radio-on { background-position: -96px -144px; }
.ui-icon-radio-off { background-position: -112px -144px; }
.ui-icon-pin-w { background-position: -128px -144px; }
.ui-icon-pin-s { background-position: -144px -144px; }
.ui-icon-play { background-position: 0 -160px; }
.ui-icon-pause { background-position: -16px -160px; }
.ui-icon-seek-next { background-position: -32px -160px; }
.ui-icon-seek-prev { background-position: -48px -160px; }
.ui-icon-seek-end { background-position: -64px -160px; }
.ui-icon-seek-start { background-position: -80px -160px; }
/* ui-icon-seek-first is deprecated, use ui-icon-seek-start instead */
.ui-icon-seek-first { background-position: -80px -160px; }
.ui-icon-stop { background-position: -96px -160px; }
.ui-icon-eject { background-position: -112px -160px; }
.ui-icon-volume-off { background-position: -128px -160px; }
.ui-icon-volume-on { background-position: -144px -160px; }
.ui-icon-power { background-position: 0 -176px; }
.ui-icon-signal-diag { background-position: -16px -176px; }
.ui-icon-signal { background-position: -32px -176px; }
.ui-icon-battery-0 { background-position: -48px -176px; }
.ui-icon-battery-1 { background-position: -64px -176px; }
.ui-icon-battery-2 { background-position: -80px -176px; }
.ui-icon-battery-3 { background-position: -96px -176px; }
.ui-icon-circle-plus { background-position: 0 -192px; }
.ui-icon-circle-minus { background-position: -16px -192px; }
.ui-icon-circle-close { background-position: -32px -192px; }
.ui-icon-circle-triangle-e { background-position: -48px -192px; }
.ui-icon-circle-triangle-s { background-position: -64px -192px; }
.ui-icon-circle-triangle-w { background-position: -80px -192px; }
.ui-icon-circle-triangle-n { background-position: -96px -192px; }
.ui-icon-circle-arrow-e { background-position: -112px -192px; }
.ui-icon-circle-arrow-s { background-position: -128px -192px; }
.ui-icon-circle-arrow-w { background-position: -144px -192px; }
.ui-icon-circle-arrow-n { background-position: -160px -192px; }
.ui-icon-circle-zoomin { background-position: -176px -192px; }
.ui-icon-circle-zoomout { background-position: -192px -192px; }
.ui-icon-circle-check { background-position: -208px -192px; }
.ui-icon-circlesmall-plus { background-position: 0 -208px; }
.ui-icon-circlesmall-minus { background-position: -16px -208px; }
.ui-icon-circlesmall-close { background-position: -32px -208px; }
.ui-icon-squaresmall-plus { background-position: -48px -208px; }
.ui-icon-squaresmall-minus { background-position: -64px -208px; }
.ui-icon-squaresmall-close { background-position: -80px -208px; }
.ui-icon-grip-dotted-vertical { background-position: 0 -224px; }
.ui-icon-grip-dotted-horizontal { background-position: -16px -224px; }
.ui-icon-grip-solid-vertical { background-position: -32px -224px; }
.ui-icon-grip-solid-horizontal { background-position: -48px -224px; }
.ui-icon-gripsmall-diagonal-se { background-position: -64px -224px; }
.ui-icon-grip-diagonal-se { background-position: -80px -224px; }


/* Misc visuals
----------------------------------*/

/* Corner radius */
.ui-corner-all,
.ui-corner-top,
.ui-corner-left,
.ui-corner-tl {
	border-top-left-radius: 0;
}
.ui-corner-all,
.ui-corner-top,
.ui-corner-right,
.ui-corner-tr {
	border-top-right-radius: 0;
}
.ui-corner-all,
.ui-corner-bottom,
.ui-corner-left,
.ui-corner-bl {
	border-bottom-left-radius: 0;
}
.ui-corner-all,
.ui-corner-bottom,
.ui-corner-right,
.ui-corner-br {
	border-bottom-right-radius: 0;
}

/* Overlays */
.ui-widget-overlay {
	background: #aaaaaa url(/static/css/jquery-ui/ui-bg_flat_0_aaaaaa_40x100.png) 50% 50% repeat-x;
	opacity: .3;
	filter: Alpha(Opacity=30);
}
.ui-widget-shadow {
	margin: -8px 0 0 -8px;
	padding: 8px;
	background: #aaaaaa url(/static/css/jquery-ui/ui-bg_flat_0_aaaaaa_40x100.png) 50% 50% repeat-x;
	opacity: .3;
	filter: Alpha(Opacity=30);
	border-radius: 8px;
}

/* global */
.ui-widget-header {
	background-image:none;
	background-color:transparent;
}
.ui-state-active, 
.ui-widget-content .ui-state-active, 
.ui-widget-header .ui-state-active {
	font-weight:bold;
}

/* autocomplete */
.ui-autocomplete {
	max-height: 200px;
    overflow-y: auto;
    overflow-x: hidden;
}
.ui-autocomplete.ui-widget-content .ui-state-hover,
.ui-autocomplete.ui-widget-content .ui-state-focus {
	background: #ddd;
	border-color:transparent;
}

/* autocomplete */
.ui-button-text-only .ui-button-text {
	padding: 6px 13px;
}

/* accordion */
.ui-accordion .ui-accordion-header {
	padding: 7px 22px;
}
.ui-accordion .ui-accordion-header .ui-accordion-header-icon {
	left: 5px;
}
.ui-accordion .ui-accordion-content {
	padding: 15px 15px 5px;
}
.ui-accordion .ui-state-active {
	border-bottom-color:#eee;
}

/* tabs */
.ui-tabs,
.ui-tabs .ui-tabs-nav {
	padding: 0;
}
.ui-tabs .ui-widget-header,
.ui-tabs.ui-widget-content {
	border:0;
}
.ui-tabs .ui-tabs-panel {
	border:1px solid #ccc;
	padding: 15px 15px 5px;
}
.ui-tabs .ui-tabs-nav li a {
	padding: 7px 15px;
}

/* dialog */
.ui-dialog {
	padding:0;
}
.ui-dialog .ui-widget-header {
	border-color: white;
	background: #eee;
	font-size:1.125em;
	padding: 10px 15px;
	color:#333;
}
.ui-dialog .ui-widget-content {
	border:none;
	padding:15px;
}
.ui-dialog .ui-dialog-titlebar-close {
	right:15px;
}
.ui-dialog .ui-dialog-buttonpane {
	margin:0;
}
.ui-widget-overlay {
	background: url('/static/css/jquery-ui/locui_overlay.png');
}
	
/* slider & progressbar */
.ui-slider .ui-widget-header,
.ui-progressbar .ui-widget-header {
	background-color:#36c;
}

/* datepicker */
.ui-datepicker .ui-widget-header {
	border:0;
}

/* datepicker for ie */
.ui-datepicker table.ui-datepicker-calendar tbody .ui-state-disabled .ui-state-default {
	background-color:#f7f7f7\9;
	background-image:none\9;
	border-color:#f7f7f7\9;
	color:#c3c3c3\9;
}
.ui-datepicker .ui-widget-header .ui-state-disabled {
	display:none\9 ;
}
/* shadow */
.ui-dialog,
.ui-datepicker {
	box-shadow: 0 0 15px #999;
}

/* dialog */
.ui-dialog .ui-widget-header {
	text-shadow: 0 1px 0 rgba(255, 255, 255, 0.6);
}

/* buttons */
.ui-button {
	-webkit-transition: all 250ms ease-in-out;
	-moz-transition: all 250ms ease-in-out;
	-o-transition: all 250ms ease-in-out;
	transition: all 250ms ease-in-out;
}

/* buttons */
.ui-state-default, 
.ui-widget-content .ui-state-default, 
.ui-widget-header .ui-state-default {
	text-shadow: 0 1px 0 rgba(255, 255, 255, 0.6);
	background: -moz-linear-gradient(top, #f5f5f5 0%, #e5e5e5 100%); /* FF3.6+ */
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#f5f5f5), color-stop(100%,#e5e5e5)); /* Chrome,Safari4+ */
	background: -webkit-linear-gradient(top, #f5f5f5 0%,#e5e5e5 100%); /* Chrome10+,Safari5.1+ */
	background: -o-linear-gradient(top, #f5f5f5 0%,#e5e5e5 100%); /* Opera11.10+ */
	background: -ms-linear-gradient(top, #f5f5f5 0%,#e5e5e5 100%); /* IE10+ */
	background: linear-gradient(top, #f5f5f5 0%,#e5e5e5 100%); /* W3C */
}
.ui-state-active, 
.ui-widget-content .ui-state-active, 
.ui-widget-header .ui-state-active {
	text-shadow: none;
	background: #fff;
}

/************************ 
LOC SHARE TOOLBAR
1.9.14
************************/
.locshare-email-tab-form-field-message {resize: none;}

div.locshare-toolbar,
div.locshare-toolbar span.locshare-print-button,
div.locshare-toolbar span.locshare-subscribe-button,
div.locshare-toolbar span.locshare-share-button {
background:none !important;
border: none !important;
clear: none !important;
color: #000 !important;
display: block !important;
font:normal normal normal 11px/17px Verdana, Arial, Helvetica, sans-serif !important;
float: none !important;
letter-spacing: normal !important;
line-height:17px !important;
margin:0 10px !important;
outline: none !important;
overflow: hidden !important;
padding: 0 !important;
position: static !important;
text-align: right !important;
text-decoration: none !important;
text-indent: 0 !important;
text-transform: none !important;
vertical-align: top !important;
white-space: normal !important;
word-spacing: normal !important;
/* Undefined styles
height:;
max-height:;
max-width:;
min-height:;
min-width:;
text-shadow:;
visibility:;
width:;
z-index:;*/
}
div.locshare-toolbar {
overflow: visible !important;
}
div.locshare-toolbar span.locshare-print-button,
div.locshare-toolbar span.locshare-subscribe-button,
div.locshare-toolbar span.locshare-share-button {
display: inline !important;
text-align: left !important;
margin:0 !important;
}
*:first-child+html div.locshare-toolbar span.locshare-print-button,
*:first-child+html div.locshare-toolbar span.locshare-subscribe-button,
*:first-child+html div.locshare-toolbar span.locshare-share-button {
margin: 0 1px !important;
}
div.locshare-toolbar.left {text-align: left !important;}
div.locshare-toolbar.center {text-align: center !important;}
div.locshare-toolbar.right {text-align: right !important;}
div.locshare-toolbar a,
div.locshare-toolbar a:link,
div.locshare-toolbar a:active,
div.locshare-toolbar a:visited {
background:none !important;
border: none !important;
clear: none !important;
color: #036 !important;
display:inline !important;
font:normal normal normal 11px/17px Verdana, Arial, Helvetica, sans-serif !important;
float: none !important;
letter-spacing: normal !important;
line-height:17px !important;
margin:0 !important;
outline: none !important;
overflow: hidden !important;
padding: 0 !important;
position: static !important;
text-align: left !important;
text-decoration: underline !important;
text-indent: 0 !important;
text-transform: none !important;
vertical-align: top !important;
white-space: normal !important;
word-spacing: normal !important;
/* Undefined styles
height:;
max-height:;
max-width:;
min-height:;
min-width:;
text-shadow:;
visibility:;
width:;
z-index:;*/
}
*:first-child+html div.locshare-toolbar a  {
zoom:1 !important;
}
div.locshare-toolbar a:hover,
div.locshare-toolbar a:focus {
color:#f60 !important;
}
div.locshare-toolbar .locshare-print-button a,
div.locshare-toolbar .locshare-print-button a:link,
div.locshare-toolbar .locshare-print-button a:active,
div.locshare-toolbar .locshare-print-button a:visited {
background: transparent url("/static/images/share/print.gif") 0 1px no-repeat !important;
padding: 0px 6px 0px 16px !important;
color:#666 !important;
text-decoration:none !important;
}
div.locshare-toolbar .locshare-print-button a:hover,
div.locshare-toolbar .locshare-print-button a:focus {
color:#000 !important;
}
div.locshare-toolbar .locshare-subscribe-button a,
div.locshare-toolbar .locshare-subscribe-button a:link,
div.locshare-toolbar .locshare-subscribe-button a:active,
div.locshare-toolbar .locshare-subscribe-button a:visited {
background: transparent url("/static/images/share/rss.gif") 0 1px no-repeat !important;
padding: 0px 6px 0px 14px !important;
color:#666 !important;
text-decoration:none !important;
}
div.locshare-toolbar .locshare-subscribe-button a:hover,
div.locshare-toolbar .locshare-subscribe-button a:focus {
color:#000 !important;
}
div.locshare-toolbar .locshare-share-button a,
div.locshare-toolbar .locshare-share-button a:link,
div.locshare-toolbar .locshare-share-button a:active,
div.locshare-toolbar .locshare-share-button a:visited {
background: transparent url("/static/images/share/share.gif") 0 1px no-repeat !important;
padding: 0px 6px 0px 14px !important;
color:#666 !important;
text-decoration:none !important;
}
div.locshare-toolbar .locshare-share-button a:hover,
div.locshare-toolbar .locshare-share-button a:focus {
color:#000 !important;
}
div.locshare-toolbar .locshare-survey-button a,
div.locshare-toolbar .locshare-survey-button a:link,
div.locshare-toolbar .locshare-survey-button a:active,
div.locshare-toolbar .locshare-survey-button a:visited {
    background: transparent url("/static/images/share/feedback.png") 0 1px no-repeat !important;
    padding: 0px 0px 0px 14px !important;
    color:#666 !important;
    text-decoration:none !important;
}
div.locshare-toolbar .locshare-survey-button a:hover,
div.locshare-toolbar .locshare-survey-button a:focus {
    color:#000 !important;
}
*:first-child+html div.locshare-toolbar .locshare-print-button a,
*:first-child+html div.locshare-toolbar .locshare-print-button a:link,
*:first-child+html div.locshare-toolbar .locshare-print-button a:active,
*:first-child+html div.locshare-toolbar .locshare-print-button a:visited,
*:first-child+html div.locshare-toolbar .locshare-print-button a:hover,
*:first-child+html div.locshare-toolbar .locshare-print-button a:focus,
*:first-child+html div.locshare-toolbar .locshare-subscribe-button a,
*:first-child+html div.locshare-toolbar .locshare-subscribe-button a:link,
*:first-child+html div.locshare-toolbar .locshare-subscribe-button a:active,
*:first-child+html div.locshare-toolbar .locshare-subscribe-button a:visited,
*:first-child+html div.locshare-toolbar .locshare-subscribe-button a:hover,
*:first-child+html div.locshare-toolbar .locshare-subscribe-button a:focus,
*:first-child+html div.locshare-toolbar .locshare-share-button a,
*:first-child+html div.locshare-toolbar .locshare-share-button a:link,
*:first-child+html div.locshare-toolbar .locshare-share-button a:active,
*:first-child+html div.locshare-toolbar .locshare-share-button a:visited,
*:first-child+html div.locshare-toolbar .locshare-share-button a:hover,
*:first-child+html div.locshare-toolbar .locshare-share-button a:focus {
background-position: 0 50% !important;
}
div.locshare-toolbar .locshare-print-button a:focus,
div.locshare-toolbar .locshare-subscribe-button a:focus,
div.locshare-toolbar .locshare-share-button a:focus,
div.locshare-toolbar .locshare-survey-button a:focus {
    outline:thin dotted !important;
}
/************************ 
DIALOG
************************/
div.locshare-dialog,
div.locshare-dialog h2,
div.locshare-dialog h3,
div.locshare-dialog ul,
div.locshare-dialog li,
div.locshare-dialog p,
div.locshare-dialog img,
div.locshare-dialog span,
div.locshare-dialog form,
div.locshare-dialog input,
div.locshare-dialog select,
div.locshare-dialog button,
div.locshare-dialog textarea,
div.locshare-dialog label,
div.locshare-dialog div {
background: none;
border: none !important;
clear: none !important;
color: #000 !important;
font:normal normal normal 11px/17px Verdana, Arial, Helvetica, sans-serif !important;
float: none !important;
letter-spacing: normal !important;
line-height:17px !important;
margin:0 !important;
outline: none !important;
overflow: hidden !important;
padding: 0 !important;
position: static !important;
text-align: left !important;
text-decoration: none !important;
text-indent: 0 !important;
text-transform: none !important;
vertical-align: top !important;
white-space: normal !important;
word-spacing: normal !important;
-moz-border-radius: 0 !important;
/* Undefined styles
display:;
height:;
max-height:;
max-width:;
min-height:;
min-width:;
text-shadow:;
visibility:;
width:;
z-index:;*/
}
div.locshare-dialog h2,
div.locshare-dialog h3,
div.locshare-dialog ul,
div.locshare-dialog li,
div.locshare-dialog p,
div.locshare-dialog img,
div.locshare-dialog span,
div.locshare-dialog form,
div.locshare-dialog input,
div.locshare-dialog select,
div.locshare-dialog button,
div.locshare-dialog textarea,
div.locshare-dialog label,
div.locshare-dialog div {
background:none !important;
}
div.locshare-dialog h3 {margin-bottom:15px !important;}
div.locshare-dialog p {
margin-bottom:15px !important;
}
div.locshare-dialog ul,
div.locshare-dialog li {
list-style: none !important;
}
div.locshare-dialog {
background-color:transparent !important;
padding: 0px !important;
width: 510px !important;
position: absolute !important;
z-index:2147483647 !important;
box-shadow: none !important
}
div.locshare-dialog a,
div.locshare-dialog a:link,
div.locshare-dialog a:active,
div.locshare-dialog a:visited {
background:none !important;
border: none !important;
clear: none !important;
color: #036 !important;
display:inline !important;
font:normal normal normal 11px/17px Verdana, Arial, Helvetica, sans-serif !important;
float: none !important;
letter-spacing: normal !important;
line-height: 17px !important;
margin: 0 !important;
outline: none !important;
overflow: hidden !important;
padding: 0 !important;
position: static !important;
text-align: left !important;
text-decoration: underline !important;
text-indent: 0 !important;
text-transform: none !important;
vertical-align: top !important;
white-space: normal !important;
word-spacing: normal !important;
/* Undefined styles
height:;
max-height:;
max-width:;
min-height:;
min-width:;
text-shadow:;
visibility:;
width:;
z-index:;*/
}
div.locshare-dialog a:hover,
div.locshare-dialog a:focus {
color:#f60 !important;
}
	div.locshare-dialog div.locshare-dialog-inner {
	background-color:#fff !important;
	border: 5px solid #303030 !important;
	text-transform:none !important;
	text-align:left !important;
	overflow:hidden !important;
	width: 500px !important;
	}
		div.locshare-dialog div.locshare-dialog-content {
		padding:15px 0 !important;
		margin: 0 20px !important;
		border-top: 1px solid #ddd !important;
		border-bottom: 1px solid #ddd !important;
		overflow:hidden !important;
		width: 460px !important;
		}
		*html div.locshare-dialog div.locshare-dialog-content {height:1% !important;}
		/* REMOVED top border */
		div.locshare-dialog div.locshare-share-tab div.locshare-dialog-content,
		div.locshare-dialog div.locshare-email-tab div.locshare-dialog-content,
		div.locshare-dialog div.locshare-save-tab div.locshare-dialog-content {
		border-top: none !important;
		}
		
/************************ 
SHARE TABS
************************/
div.locshare-dialog div.locshare-dialog-head {
background-color:#303030 !important;
color:#fff !important;
overflow:hidden !important; 
text-align:right !important;
min-height:24px !important;
}
*html div.locshare-dialog div.locshare-dialog-head {height:26px !important;}
div.locshare-dialog ul.locshare-dialog-menu { 
float: left !important;
padding-left:8px !important;
padding-top:3px !important;
}
div.locshare-dialog ul.locshare-dialog-menu li.locshare-dialog-menu-item { 
display:inline !important;
padding-right: 2px !important;
text-align:center !important;
float: left !important;
}
div.locshare-dialog ul.locshare-dialog-menu li.locshare-dialog-menu-item a:link,
div.locshare-dialog ul.locshare-dialog-menu li.locshare-dialog-menu-item a:active,
div.locshare-dialog ul.locshare-dialog-menu li.locshare-dialog-menu-item a:visited { 
float:left !important;
display:block !important;
width:auto !important;
color:#ccc !important; 
text-transform: uppercase !important; 
font-weight: normal !important;
text-decoration: none !important;
padding-left: 10px !important;
}
*html div.locshare-dialog ul.locshare-dialog-menu li.locshare-dialog-menu-item a:link,
*html div.locshare-dialog ul.locshare-dialog-menu li.locshare-dialog-menu-item a:active,
*html div.locshare-dialog ul.locshare-dialog-menu li.locshare-dialog-menu-item a:visited {
height:1% !important;
}
div.locshare-dialog ul.locshare-dialog-menu li.locshare-dialog-menu-item a:link span,
div.locshare-dialog ul.locshare-dialog-menu li.locshare-dialog-menu-item a:active span,
div.locshare-dialog ul.locshare-dialog-menu li.locshare-dialog-menu-item a:visited span { 
color:#ccc !important;
cursor: pointer !important;  
float: left !important;
padding: 3px 10px 3px 0px !important;
letter-spacing:1px !important;
font-size:10px !important;
}
div.locshare-dialog ul.locshare-dialog-menu li.locshare-dialog-menu-item a:hover, 
div.locshare-dialog ul.locshare-dialog-menu li.locshare-dialog-menu-item a:focus { 
background: #666 url("/static/images/share/share-tab-hover-left.gif") no-repeat !important; 
color: #fff !important; 
}
div.locshare-dialog ul.locshare-dialog-menu li.locshare-dialog-menu-item a:hover span, 
div.locshare-dialog ul.locshare-dialog-menu li.locshare-dialog-menu-item a:focus span { 
background: #666 url("/static/images/share/share-tab-hover-right.gif") right top no-repeat !important;
color: #fff !important; 
}
/***
OVERWRITING JQUERY UI TABS
ui-tabs-selected - Pre-jquery-ui 1.10.2
ui-tabs-active - For jquery-ui 1.10.2+
***/
div.locshare-dialog ul.locshare-dialog-menu li.ui-tabs-selected a:link,
div.locshare-dialog ul.locshare-dialog-menu li.ui-tabs-selected a:active,
div.locshare-dialog ul.locshare-dialog-menu li.ui-tabs-selected a:visited,
div.locshare-dialog ul.locshare-dialog-menu li.ui-tabs-active a:link,
div.locshare-dialog ul.locshare-dialog-menu li.ui-tabs-active a:active,
div.locshare-dialog ul.locshare-dialog-menu li.ui-tabs-active a:visited {
background: #fff url("/static/images/share/share-tab-hover-left.gif") no-repeat !important;
}

div.locshare-dialog ul.locshare-dialog-menu li.ui-tabs-selected a:link span,
div.locshare-dialog ul.locshare-dialog-menu li.ui-tabs-selected a:active span,
div.locshare-dialog ul.locshare-dialog-menu li.ui-tabs-selected a:visited span,
div.locshare-dialog ul.locshare-dialog-menu li.ui-tabs-active a:link span,
div.locshare-dialog ul.locshare-dialog-menu li.ui-tabs-active a:active span,
div.locshare-dialog ul.locshare-dialog-menu li.ui-tabs-active a:visited span {
color: #333 !important;
font-weight:bold !important;
background: #fff url("/static/images/share/share-tab-hover-right.gif") right top no-repeat !important;
}
div.locshare-dialog ul.locshare-dialog-menu li.ui-tabs-selected a:hover,
div.locshare-dialog ul.locshare-dialog-menu li.ui-tabs-selected a:focus,
div.locshare-dialog ul.locshare-dialog-menu li.ui-tabs-active a:hover,
div.locshare-dialog ul.locshare-dialog-menu li.ui-tabs-active a:focus {
    background-color:#fff !important;
}
div.locshare-dialog ul.locshare-dialog-menu li.ui-tabs-selected a:hover span,
div.locshare-dialog ul.locshare-dialog-menu li.ui-tabs-selected a:focus span,
div.locshare-dialog ul.locshare-dialog-menu li.ui-tabs-active a:hover span,
div.locshare-dialog ul.locshare-dialog-menu li.ui-tabs-active a:focus span {
    background-color:#fff !important;
}


/*** 
CLOSE BUTTON 
***/
div.locshare-dialog div.locshare-dialog-head a.locshare-dialog-close {
float:right !important;
display:block !important; 
background: transparent url("/static/images/share/btn-close.gif") left bottom no-repeat !important; 
text-indent:-5000em !important; 
width:45px !important; 
height:12px !important; 
padding: 4px 3px 0 0 !important; 
line-height:1% !important; 
}

/************************ 
CONTENT - SUBSCRIBE (RSS) 
************************/
div.locshare-dialog h2 {
font-size: 14px !important;
text-transform:uppercase !important;
font-weight:bold !important;
}
div.locshare-dialog h3 {
font-size: 11px !important;
font-weight:bold !important;
}
div.locshare-dialog h2, 
div.locshare-dialog h3 {
margin:0 0 2px 0 !important;
}
div.locshare-dialog div.locshare-dialog-title {
padding:15px 0 0 0 !important;
margin: 0 20px !important;
}
div.locshare-dialog div.locshare-dialog-content-scrolling {
height:190px !important;
overflow:auto !important;
}
*html div.locshare-dialog div.locshare-dialog-content-scrolling {height:190px !important;}
div.locshare-dialog div.locshare-dialog-content a.rss {
background:transparent url("/static/images/share/rss.gif") 13px 50% no-repeat !important;
padding: 3px 0px 3px 28px !important;
margin:0 !important;
}
div.locshare-dialog div.locshare-dialog-content a.email {
background:transparent url("/static/images/share/email.gif") 10px 50% no-repeat !important;
padding: 3px 0px 3px 28px !important;
margin:0 !important;
}
div.locshare-dialog div.locshare-dialog-content a.link {
background:transparent url("/static/images/share/icon-link.gif") 10px 50% no-repeat !important;
padding: 3px 0px 3px 28px !important;
margin:0 !important;
}
div.locshare-dialog a.link2 {
    background:transparent url("/static/images/share/i_external.gif") 100% 50% no-repeat !important;
    padding: 3px 11px 3px 0px !important;
    margin:0 !important;
}
/***
Subscribe Specific
***/
div.locshare-dialog div.locshare-dialog-close-hidden {
position:absolute !important;
top:-100px !important;
}
div.locshare-dialog div.locshare-dialog-loading {
background: transparent url("/static/images/share/loader.gif") 50% 50% no-repeat !important;
padding: 75px 0 15px 0 !important;
text-align:center !important;
color:#666 !important;
min-height:140px;
}

/************************ 
CONTENT - SHARE
************************/
div.locshare-dialog div.locshare-share-tab-link-list {
padding: 5px 0 !important;
}
*html div.locshare-dialog div.locshare-share-tab-link-list {height:1% !important;}
div.locshare-dialog div.locshare-share-tab-link-list div {
text-align: left !important; 
padding: 2px 5px 2px 20px !important;
margin: 7px 0 !important;
/*height:1% !important;*/
overflow:hidden !important;
vertical-align:middle !important;
white-space:nowrap !important;
float:left !important;
width:90px !important;
position:relative !important;
}
div.locshare-dialog div.locshare-share-tab-link-list div a img { 
border: 1px none #fff !important; 
width: 16px !important; 
height: 16px !important;
margin:0 !important;
position:absolute !important;
left:0px !important;
top:3px !important;
}
div.locshare-dialog div.locshare-share-tab-link-list div a,
div.locshare-dialog div.locshare-share-tab-link-list div a:link,
div.locshare-dialog div.locshare-share-tab-link-list div a:active,
div.locshare-dialog div.locshare-share-tab-link-list div a:visited {
color:#333 !important;
text-decoration:none !important;
}
div.locshare-dialog div.locshare-share-tab-link-list div a:hover,
div.locshare-dialog div.locshare-share-tab-link-list div a:focus {
color:#f60 !important;
text-decoration:underline !important;
}

/************************ 
CONTENT - EMAIL
************************/
div.locshare-dialog div.locshare-email-tab-input {
clear:both !important;
margin-bottom:10px !important;
}
*html div.locshare-dialog div.locshare-email-tab-input {height:1% !important;}
div.locshare-dialog div.locshare-email-tab-input-2col {
float:left !important;
margin-right:0 !important;
width: 223px !important; 
}
div.locshare-dialog div.email-instruction-text {
    color: #666 !important;
}
div.locshare-dialog div.locshare-email-tab-input-2col.first {
margin-right:13px !important;
float:left !important;
width: 223px !important;
}
div.locshare-dialog div.locshare-right {
text-align:right !important;
}
div.locshare-dialog div.locshare-email-tab form {
margin-bottom: 2px !important;
width:460px !important;
}
div.locshare-dialog div.locshare-email-tab form input,
div.locshare-dialog div.locshare-email-tab form select,
div.locshare-dialog div.locshare-email-tab form button { 
vertical-align: middle !important;
}

div.locshare-dialog div.locshare-email-tab form input { 
width: 217px; 
padding: 4px 2px !important;
border: 1px solid #ccc !important; 
background-color:#f5f5f5 !important;
line-height:11px !important;
font-weight: normal !important;
}
div.locshare-dialog div.locshare-email-tab form input.full-width {
	width: 97%;
}
div.locshare-dialog div.locshare-email-tab form textarea { 
width: 453px !important; 
height: 65px !important;
padding: 4px 2px !important;
border: 1px solid #ccc !important; 
background-color:#f5f5f5 !important;
white-space: pre !important;
overflow: auto !important;
}
div.locshare-dialog div.locshare-email-tab form input.locshare-error,
div.locshare-dialog div.locshare-email-tab form textarea.locshare-error { 
border-color: #f00 !important;
}
div.locshare-dialog div.locshare-email-tab form input:focus,
div.locshare-dialog div.locshare-email-tab form textarea:focus { 
border-color: #888 !important;
}
div.locshare-dialog div.locshare-email-tab form label { 
font-weight: bold !important;
color:#393939 !important;
width:auto !important;
display:block !important;
}
div.locshare-dialog div.locshare-email-tab form div.locshare-right {
margin-bottom:2px !important;
}
div.locshare-dialog div.locshare-email-tab form div.locshare-right input {
border:none !important;
background:none !important;
width: auto !important;
margin-right:0 !important;
display:inline !important;
vertical-align:middle !important;
}
div.locshare-dialog div.locshare-email-tab form div.locshare-right label {
display:inline !important;
font-weight:normal !important;
margin-right:15px !important;
vertical-align:middle !important;
}
div.locshare-dialog div.locshare-email-tab span {
font-size: 10px !important;
display: inline !important;
}
div.locshare-dialog div.locshare-email-tab form button.locshare-button {
cursor: pointer !important;
width:56px !important;
height:auto !important;
border:none !important; 
padding:0 !important;
margin:0 1px !important;
text-align:center !important;
}
div.locshare-dialog div.locshare-email-tab form button.locshare-button.locshare-button-text {
background-color: #666 !important;
color: #ccc !important;
font-weight:bold !important;
width: auto !important;
height: 20px !important;
padding: 0 10px !important;
line-height:20px;
*padding-top: 0;
*padding-bottom: 0;
font-size: 11px !important;
text-shadow: none !important;
/* gradients */
background-image: linear-gradient(top, #999 0%, #333 100%) !important;
background-image: -o-linear-gradient(top, #999 0%, #333 100%) !important;
background-image: -moz-linear-gradient(top, #999 0%, #333 100%) !important;
background-image: -webkit-linear-gradient(top, #999 0%, #333 100%) !important;
background-image: -ms-linear-gradient(top, #999 0%, #333 100%) !important;
background-image: -webkit-gradient(
	linear,
	left top,
	left bottom,
	color-stop(0, #999),
	color-stop(1, #333) 
	!important
);
}
div.locshare-dialog div.locshare-email-tab form input:focus.locshare-button-button {
border:none !important;
}
div.locshare-dialog div.locshare-email-tab form button.locshare-button-alt {
cursor: pointer !important;
width: 56px !important;
height:auto !important;
border:none !important; 
padding:0px !important;
margin:0 1px !important;
text-align:center !important;
}
/*** 
messages 
***/
div.locshare-dialog div.locshare-email-tab-form-container p.locshare-message-error,
div.locshare-dialog div.locshare-email-tab-form-container div.locshare-message-error {
color:#f00 !important;
font-weight:bold !important;
}
div.locshare-dialog div.locshare-email-tab-message p.locshare-message-success {
color:#063 !important;
font-weight:bold !important;
}
div.locshare-dialog div.locshare-email-tab-rcpt-message {
color:#666 !important;
clear: both !important;
line-height: 12px !important;
font-size: 10px !important;
padding-bottom: 8px !important;
}
div.locshare-dialog div.locshare-email-tab-wait-container {
padding: 5px 0 15px 0 !important;
}
div.locshare-dialog div.locshare-email-tab-wait-container div.locshare-email-tab-wait-box {
background: transparent url("/static/images/share/loader.gif") 50% 50% no-repeat !important;
padding: 75px 0 15px 0 !important;
text-align:center !important;
color:#666 !important;
}
div.locshare-dialog div.locshare-email-tab-confirm-container div.locshare-email-tab-confirm-box {
padding: 25px 0 15px 0 !important;
}
div.locshare-dialog div.locshare-email-tab-confirm-container div.locshare-email-tab-confirm-box p.locshare-email-tab-confirm-message {
color:#063 !important;
font-weight:bold !important;
text-align:left !important;
}
div.locshare-dialog div.locshare-email-tab-confirm-container div.locshare-email-tab-confirm-box .locshare-email-tab-confirm-button a:link,
div.locshare-dialog div.locshare-email-tab-confirm-container div.locshare-email-tab-confirm-box .locshare-email-tab-confirm-button a:active,
div.locshare-dialog div.locshare-email-tab-confirm-container div.locshare-email-tab-confirm-box .locshare-email-tab-confirm-button a:visited,
div.locshare-dialog div.locshare-email-tab-confirm-container div.locshare-email-tab-confirm-box .locshare-email-tab-confirm-button a:hover,
div.locshare-dialog div.locshare-email-tab-confirm-container div.locshare-email-tab-confirm-box .locshare-email-tab-confirm-button a:focus {
background: transparent url("/static/images/share/btn-continue.png") 50% 0 no-repeat !important;
width:auto !important;
height:20px !important;
border:none !important; 
padding:0 !important;
text-indent:-9000em !important;
overflow:hidden !important;
display:block !important;
text-align:center !important;
margin-top:0 !important;
}
div.locshare-dialog div.locshare-email-tab form label span.locshare-form-field-required,
div.locshare-dialog span.locshare-form-field-required {
color: #f00 !important;
}

/************************ 
CONTENT - SAVE
************************/
div.locshare-dialog div.locshare-save-tab p {
margin-left:15px !important;
}
div.locshare-dialog div.locshare-save-tab-link-list {
padding:0 !important;
margin:8px 0 2px 15px !important;
}
div.locshare-dialog div.locshare-save-tab-link-list span {
padding-left:0px !important;
font-weight:bold !important;
border-left:1px solid #999 !important;
padding:0px 4px 0px 7px !important;
}
div.locshare-dialog div.locshare-save-tab-link-list span.locshare-save-tab-link-list-first {
border:none !important;
padding-left:0 !important;
}
div.locshare-dialog div.locshare-save-tab-link-list span.locshare-selected a {
background-color:#fff !important;
color:#666 !important;
text-decoration:none !important;
cursor:text !important;
font-weight:bold !important;
}
div.locshare-dialog div.locshare-save-tab-links input.locshare-save-tab-copy-box {
border: 1px solid #ccc !important; 
background-color:#f5f5f5 !important;
padding:4px 2px !important;
width: 436px !important;
line-height:11px !important;
margin-bottom:14px !important;
font-weight:normal !important;
}
div.locshare-dialog div.locshare-save-tab-links .locshare-save-tab-link-instruction {
margin-bottom:0 !important;
margin-top:0 !important;
color:#666 !important;
}
/*** 
save 
***/
div.locshare-dialog div.locshare-save-tab-addfavorite p.locshare-save-tab-save-box {
overflow:hidden !important;
}
div.locshare-dialog div.locshare-save-tab-addfavorite p.locshare-save-tab-save-box em {
float:left !important;
font-style:normal !important;
margin: 1px 5px 0 0 !important;
}
div.locshare-dialog div.locshare-save-tab-addfavorite p.locshare-save-tab-save-box a {
background: transparent url("/static/images/share/btn-save.png") 0 0 no-repeat !important;
width:54px !important;
height:20px !important;
border:none !important; 
padding:0 !important;
text-indent:-9000em !important;
overflow:hidden !important;
display:block !important;
}
/*** 
downloads 
***/
div.locshare-dialog div.locshare-save-tab div.locshare-save-tab-downloads-scroll {
padding:0 !important;
margin:0 0 0 15px !important;
}
div.locshare-dialog div.locshare-save-tab div.locshare-save-tab-downloads p {
padding:0 0 0 10px !important;
margin:0px !important;
background: #fff url("/static/images/share/arrow-rt.gif") 0 5px no-repeat !important;
}
div.locshare-dialog div.locshare-save-tab div.locshare-save-tab-downloads .locshare-save-tab-downloads-scroll {
height:51px !important;
overflow:auto !important;
}

/************************ 
FOOTER
************************/
div.locshare-dialog div.locshare-dialog-footer {
padding:10px 0 17px 0 !important;
margin: 0 20px !important;
overflow:hidden !important;
clear:both !important;
border:none !important;
width: 460px !important;
}
*html div.locshare-share-tab div.locshare-dialog-footer {height:1% !important;}
div.locshare-dialog div.locshare-dialog-footer a,
div.locshare-dialog div.locshare-dialog-footer a:link,
div.locshare-dialog div.locshare-dialog-footer a:active,
div.locshare-dialog div.locshare-dialog-footer a:visited {
vertical-align: top !important;
}
div.locshare-dialog div.locshare-share-tab div.locshare-dialog-footer a,
div.locshare-dialog div.locshare-share-tab div.locshare-dialog-footer a:link,
div.locshare-dialog div.locshare-share-tab div.locshare-dialog-footer a:active,
div.locshare-dialog div.locshare-share-tab div.locshare-dialog-footer a:visited {
float:left !important;
display:block !important;
padding-right: 7px !important;
width:auto !important;
border-right: 1px solid #ccc !important;
}
div.locshare-dialog div.locshare-share-tab div.locshare-dialog-footer a.locshare-disclaimer,
div.locshare-dialog div.locshare-share-tab div.locshare-dialog-footer a.locshare-disclaimer:link,
div.locshare-dialog div.locshare-share-tab div.locshare-dialog-footer a.locshare-disclaimer:active,
div.locshare-dialog div.locshare-share-tab div.locshare-dialog-footer a.locshare-disclaimer:visited {
background:transparent url("/static/images/share/disclaimer.gif") 7px 0 no-repeat !important;
display:block !important;
text-indent:-8000em !important;
width:91px !important;
height:16px !important;
float:left !important;
clear:right !important;
padding-left: 5px !important;
border:0 !important;
}

/************************ 
HIDDEN ELEMENTS
************************/
div.locshare-dialog div.ui-dialog-titlebar {display:none !important;}
div.locshare-dialog div.ui-tabs-hide {display:none !important;}
div.locshare-this {display:none}

/************************ 
Corner radius
************************/
div.locshare-toolbar .ui-corner-tl,
div.locshare-toolbar .ui-corner-tr,
div.locshare-toolbar .ui-corner-bl,
div.locshare-toolbar .ui-corner-br,
div.locshare-toolbar .ui-corner-top,
div.locshare-toolbar .ui-corner-bottom,
div.locshare-toolbar .ui-corner-right,
div.locshare-toolbar .ui-corner-left,
div.locshare-toolbar .ui-corner-all { 
-moz-border-radius: 0 !important; 
-webkit-border-radius: 0 !important;
border-radius: 0 !important;
}


/* v1.0.5 */
/* Core RS CSS file. 95% of time you shouldn't change anything here. */
.royalSlider {
	width: 600px;
	height: 400px;
	position: relative;
	direction: ltr;
}
.royalSlider > * {
	float: left;
}

.rsWebkit3d .rsSlide {
	-webkit-transform: translateZ(0);
}


.rsWebkit3d .rsSlide,
.rsWebkit3d .rsContainer,
.rsWebkit3d .rsThumbs,
.rsWebkit3d .rsPreloader,
.rsWebkit3d img,
.rsWebkit3d .rsOverflow,
.rsWebkit3d .rsBtnCenterer,
.rsWebkit3d .rsAbsoluteEl,
.rsWebkit3d .rsABlock,
.rsWebkit3d .rsLink {
	-webkit-backface-visibility: hidden;
}
.rsFade.rsWebkit3d .rsSlide,
.rsFade.rsWebkit3d img,
.rsFade.rsWebkit3d .rsContainer {
    -webkit-transform: none;
}
.rsOverflow {
	width: 100%;
	height: 100%;
	position: relative;
	overflow: hidden;
	float: left;
	-webkit-tap-highlight-color:rgba(0,0,0,0);
}
.rsVisibleNearbyWrap {
	width: 100%;
	height: 100%;
	position: relative;
	overflow: hidden;
	left: 0;
	top: 0;
	-webkit-tap-highlight-color:rgba(0,0,0,0);
}
.rsVisibleNearbyWrap .rsOverflow {
	position: absolute;
	left: 0;
	top: 0;

}
.rsContainer {
	position: relative;
	width: 100%;
	height: 100%;
	-webkit-tap-highlight-color:rgba(0,0,0,0);
}

.rsArrow,
.rsThumbsArrow {
	cursor: pointer;
}

.rsThumb {
	float: left;
	position: relative;
}


.rsArrow,
.rsNav,
.rsThumbsArrow {
	opacity: 1;
	-webkit-transition:opacity 0.3s linear;
	-moz-transition:opacity 0.3s linear;
	-o-transition:opacity 0.3s linear;
	transition:opacity 0.3s linear;
}
.rsHidden {
	opacity: 0;
	visibility: hidden;
	-webkit-transition:visibility 0s linear 0.3s,opacity 0.3s linear;
	-moz-transition:visibility 0s linear 0.3s,opacity 0.3s linear;
	-o-transition:visibility 0s linear 0.3s,opacity 0.3s linear;
	transition:visibility 0s linear 0.3s,opacity 0.3s linear;
}


.rsGCaption {
	width: 100%;
	float: left;
	text-align: center;
}

/* Fullscreen options, very important ^^ */
.royalSlider.rsFullscreen {
	position: fixed !important;
	height: auto !important;
	width: auto !important;
	margin: 0 !important;
	padding: 0 !important;
	z-index: 2147483647 !important;
	top: 0 !important;
	left: 0 !important;
	bottom: 0 !important;
	right: 0 !important;
}

.royalSlider .rsSlide.rsFakePreloader {
	opacity: 1 !important;
	-webkit-transition: 0s;
	-moz-transition: 0s;
	-o-transition:  0s;
	transition:  0s;
	display: none;
}

.rsSlide {
	position: absolute;
	left: 0;
	top: 0;
	display: block;
	overflow: hidden;
	
	height: 100%;
	width: 100%;
}

.royalSlider.rsAutoHeight,
.rsAutoHeight .rsSlide {
	height: auto;
}

.rsContent {
	width: 100%;
	height: 100%;
	position: relative;
}

.rsPreloader {
	position:absolute;
	z-index: 0;	
}

.rsNav {
	-moz-user-select: -moz-none;
	-webkit-user-select: none;
	user-select: none;
}
.rsNavItem {
	-webkit-tap-highlight-color:rgba(0,0,0,0.25);
}

.rsThumbs {
	cursor: pointer;
	position: relative;
	overflow: hidden;
	float: left;
	z-index: 22;
}
.rsTabs {
	float: left;
	background: none !important;
}
.rsTabs,
.rsThumbs {
	-webkit-tap-highlight-color:rgba(0,0,0,0);
	-webkit-tap-highlight-color:rgba(0,0,0,0);
}


.rsVideoContainer {
	/*left: 0;
	top: 0;
	position: absolute;*/
	/*width: 100%;
	height: 100%;
	position: absolute;
	left: 0;
	top: 0;
	float: left;*/
	width: auto;
	height: auto;
	line-height: 0;
	position: relative;
}
.rsVideoFrameHolder {
	position: absolute;
	left: 0;
	top: 0;
	background: #141414;
	opacity: 0;
	-webkit-transition: .3s;
}
.rsVideoFrameHolder.rsVideoActive {
	opacity: 1;
}
.rsVideoContainer iframe,
.rsVideoContainer video,
.rsVideoContainer embed,
.rsVideoContainer .rsVideoObj {
	position: absolute;
	z-index: 50;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
}
/* ios controls over video bug, shifting video */
.rsVideoContainer.rsIOSVideo iframe,
.rsVideoContainer.rsIOSVideo video,
.rsVideoContainer.rsIOSVideo embed {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	padding-right: 44px;
}

.rsABlock {
	left: 0;
	top: 0;
	position: absolute;
	z-index: 15;
	
}

img.rsImg {
	max-width: none;
}

.grab-cursor {
	cursor:url(/static/css/royal-slider/grab.png) 8 8, move; 
}

.grabbing-cursor{ 
	cursor:url(/static/css/royal-slider/grabbing.png) 8 8, move;
}

.rsNoDrag {
	cursor: auto;
}

.rsLink {
	left:0;
	top:0;
	position:absolute;
	width:100%;
	height:100%;
	display:block;	
	z-index: 20;
	background: url(/static/css/royal-slider/blank.gif);
}

/******************************
*
*  RoyalSlider Default Skin 
*
*    1. Arrows 
*    2. Bullets
*    3. Thumbnails
*    4. Tabs
*    5. Fullscreen button
*    6. Play/close video button
*    7. Preloader
*    8. Caption
*    
*  Sprite: rs-default.png
*  Feel free to edit anything
*  If you don't some part - just delete it
* 
******************************/


/* Background */
.rsDefault,
.rsDefault .rsOverflow,
.rsDefault .rsSlide,
.rsDefault .rsVideoFrameHolder,
.rsDefault .rsThumbs {
	background: #151515;
	color: #FFF;
}


/***************
*
*  1. Arrows
*
****************/

.rsDefault .rsArrow {
	height: 100%;
	width: 44px;
	position: absolute;
	display: block;
	cursor: pointer;
	z-index: 21;
}
.rsDefault.rsVer .rsArrow {
	width: 100%;
	height: 44px;
	
}
.rsDefault.rsVer .rsArrowLeft { top: 0; left: 0; }
.rsDefault.rsVer .rsArrowRight { bottom: 0;  left: 0; }

.rsDefault.rsHor .rsArrowLeft { left: 0; top: 0; }
.rsDefault.rsHor .rsArrowRight { right: 0; top:0; }

.rsDefault .rsArrowIcn {		
	width: 32px;
	height: 32px;
	top: 50%;
	left: 50%;
	margin-top:-16px;	
	margin-left: -16px;

	position: absolute;	
	cursor: pointer;	
	background: url(/static/css/royal-slider/rs-default.png);

	background-color: #000;
	background-color: rgba(0,0,0,0.75);
	*background-color: #000;
	
	border-radius: 2px;
}
.rsDefault .rsArrowIcn:hover {
	background-color: rgba(0,0,0,0.9);
}

.rsDefault.rsHor .rsArrowLeft .rsArrowIcn { background-position: -64px -32px; }
.rsDefault.rsHor .rsArrowRight .rsArrowIcn { background-position: -64px -64px; }

.rsDefault.rsVer .rsArrowLeft .rsArrowIcn { background-position: -96px -32px; }
.rsDefault.rsVer .rsArrowRight .rsArrowIcn { background-position: -96px -64px; }

.rsDefault .rsArrowDisabled .rsArrowIcn { opacity: .2; filter: alpha(opacity=20);  *display: none; }


/***************
*
*  2. Bullets
*
****************/

.rsDefault .rsBullets {
	position: absolute;
	z-index: 35;
	left: 0;
	bottom: 0;
	width: 100%;
	height: auto;
	margin: 0 auto; 

	background: #000;
	background: rgba(0,0,0,0.75);

	text-align: center;
	line-height: 8px;
	overflow: hidden;
}
.rsDefault .rsBullet {
	width: 8px;
	height: 8px;
	display: inline-block;
	*display:inline; 
	*zoom:1;
	padding: 6px 5px 6px;
}
.rsDefault .rsBullet span {
	display: block;
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: #777;
	background: rgba(255,255,255,0.5);
}
.rsDefault .rsBullet.rsNavSelected span {
	background-color: #FFF;
}





/***************
*
*  3. Thumbnails
*
****************/

.rsDefault .rsThumbsHor {
	width: 100%;
	height: auto;
}
.rsDefault .rsThumbsVer {
	width: 96px;
	height: 100%;
	position: absolute;
	top: 0;
	right: 0;
}
.rsDefault.rsWithThumbsHor .rsThumbsContainer {
	position: relative;
	height: 100%;
}
.rsDefault.rsWithThumbsVer .rsThumbsContainer {
	position: relative;
	width: 100%;
}
.rsDefault .rsThumb {
	float: left;
	overflow: hidden;
	width: 96px;
	height: 72px;
}
.rsDefault .rsThumb img {
	width: 100%;
	height: 100%;
}
.rsDefault .rsThumb.rsNavSelected {
	background: #02874a;
}
.rsDefault .rsThumb.rsNavSelected img {
	opacity: 0.3;
	filter: alpha(opacity=30);
}
.rsDefault .rsTmb {
	display: block;
}

/* Thumbnails with text */
.rsDefault .rsTmb h5 {
	font-size: 16px;
	margin: 0;
	padding: 0;
	line-height: 20px;
	color: #FFF;
}
.rsDefault .rsTmb span {
	color: #DDD;
	margin: 0;
	padding: 0;
	font-size: 13px;
	line-height: 18px;
}



/* Thumbnails arrow icons */
.rsDefault .rsThumbsArrow {
	height: 100%;
	width: 20px;
	position: absolute;
	display: block;
	cursor: pointer;	
	z-index: 21;	
	background: #000;
	background: rgba(0,0,0,0.75);
}
.rsDefault .rsThumbsArrow:hover {
	background: rgba(0,0,0,0.9);
}
.rsDefault.rsWithThumbsVer .rsThumbsArrow {
	width: 100%;
	height: 20px;
}
.rsDefault.rsWithThumbsVer .rsThumbsArrowLeft { top: 0; left: 0; }
.rsDefault.rsWithThumbsVer .rsThumbsArrowRight { bottom: 0;  left: 0; }

.rsDefault.rsWithThumbsHor .rsThumbsArrowLeft { left: 0; top: 0; }
.rsDefault.rsWithThumbsHor .rsThumbsArrowRight { right: 0; top:0; }

.rsDefault .rsThumbsArrowIcn {		
	width: 16px;
	height: 16px;
	top: 50%;
	left: 50%;
	margin-top:-8px;	
	margin-left: -8px;
	position: absolute;	
	cursor: pointer;	
	background: url(/static/css/royal-slider/rs-default.png);
}

.rsDefault.rsWithThumbsHor .rsThumbsArrowLeft .rsThumbsArrowIcn { background-position: -128px -32px; }
.rsDefault.rsWithThumbsHor .rsThumbsArrowRight .rsThumbsArrowIcn { background-position: -128px -48px; }

.rsDefault.rsWithThumbsVer .rsThumbsArrowLeft .rsThumbsArrowIcn { background-position: -144px -32px; }
.rsDefault.rsWithThumbsVer .rsThumbsArrowRight .rsThumbsArrowIcn { background-position: -144px -48px; }

.rsDefault .rsThumbsArrowDisabled { display: none !important; }

/* Thumbnails resizing on smaller screens */
@media screen and (min-width: 0px) and (max-width: 800px) {
	.rsDefault .rsThumb {
		width: 59px;
		height: 44px;
	}
	.rsDefault .rsThumbsHor {
		height: 44px;
	}
	.rsDefault .rsThumbsVer {
		width: 59px;
	}
}




/***************
*
*  4. Tabs
*
****************/

.rsDefault .rsTabs {
	width: 100%;
	height: auto;
	margin: 0 auto;
	text-align:center;
	overflow: hidden; padding-top: 12px; position: relative;
}
.rsDefault .rsTab {
	display: inline-block;
	cursor: pointer;
	text-align: center;
	height: auto;
	width: auto;
	color: #333;
	padding: 5px 13px 6px;
	min-width: 72px;
	border: 1px solid #D9D9DD;
	border-right: 1px solid #f5f5f5;
	text-decoration: none;

	background-color: #FFF;
	background-image: -webkit-linear-gradient(top, #fefefe, #f4f4f4); 
	background-image:    -moz-linear-gradient(top, #fefefe, #f4f4f4);
	background-image:         linear-gradient(to bottom, #fefefe, #f4f4f4);

	-webkit-box-shadow: inset 1px 0 0 #fff;
	box-shadow: inset 1px 0 0 #fff;

	*display:inline; 
	*zoom:1;
}
.rsDefault .rsTab:first-child {
	-webkit-border-top-left-radius: 4px;
	border-top-left-radius: 4px;
	-webkit-border-bottom-left-radius: 4px;
	border-bottom-left-radius: 4px;
}
.rsDefault .rsTab:last-child { 
	-webkit-border-top-right-radius: 4px;
	border-top-right-radius: 4px;
	-webkit-border-bottom-right-radius: 4px;
	border-bottom-right-radius: 4px;

	border-right:  1px solid #cfcfcf;
}
.rsDefault .rsTab:active { 
	border: 1px solid #D9D9DD;   
	background-color: #f4f4f4;
	box-shadow:  0 1px 4px rgba(0, 0, 0, 0.2) inset;
}
.rsDefault .rsTab.rsNavSelected { 
	color: #FFF;
	border: 1px solid #999;
	text-shadow: 1px 1px #838383;
	box-shadow: 0 1px 9px rgba(102, 102, 102, 0.65) inset;
	background: #ACACAC;
	background-image: -webkit-linear-gradient(top, #ACACAC, #BBB);
	background-image: -moz-llinear-gradient(top, #ACACAC, #BBB);
	background-image: linear-gradient(to bottom, #ACACAC, #BBB);
}





/***************
*
*  5. Fullscreen button
*
****************/

.rsDefault .rsFullscreenBtn {
	right: 0;
	top: 0;
	width: 44px;
	height: 44px;
	z-index: 22;
	display: block;
	position: absolute;
	cursor: pointer;
	
}
.rsDefault .rsFullscreenIcn {
	display: block;
	margin: 6px;
	width: 32px;
	height: 32px;

	background: url(/static/css/royal-slider/rs-default.png) 0 0;
	background-color: #000;
	background-color: rgba(0,0,0,0.75);
	*background-color: #000;
	border-radius: 2px;

}
.rsDefault .rsFullscreenIcn:hover {
	background-color: rgba(0,0,0,0.9);
}
.rsDefault.rsFullscreen .rsFullscreenIcn {
	background-position: -32px 0;
}





/***************
*
*  6. Play/close video button
*
****************/

.rsDefault .rsPlayBtn {
	-webkit-tap-highlight-color:rgba(0,0,0,0.3);
	width:64px;
	height:64px;
	margin-left:-32px;
	margin-top:-32px;
	cursor: pointer;
}
.rsDefault .rsPlayBtnIcon {
	width:64px;
	display:block;
	height:64px;
	-webkit-border-radius: 4px;
	border-radius: 4px;
	
	-webkit-transition: .3s;
	-moz-transition: .3s;
	transition: .3s;

	background:url(/static/css/royal-slider/rs-default.png) no-repeat 0 -32px;
	background-color: #000;
	background-color: rgba(0,0,0,0.75);
	*background-color: #000;
}
.rsDefault .rsPlayBtn:hover .rsPlayBtnIcon {
	background-color: rgba(0,0,0,0.9);
}
.rsDefault .rsBtnCenterer {
	position:absolute;
	left:50%;
	top:50%;
}
.rsDefault .rsCloseVideoBtn {
	right: 0;
	top: 0;
	width: 44px;
	height: 44px;
	z-index: 500;
	position: absolute;
	cursor: pointer;
	-webkit-backface-visibility: hidden;
	-webkit-transform: translateZ(0);
	
}
.rsDefault .rsCloseVideoBtn.rsiOSBtn {
	top: -38px;
	right: -6px;
}

.rsDefault .rsCloseVideoIcn {
	margin: 6px;
	width: 32px;
	height: 32px;
	background: url(/static/css/royal-slider/rs-default.png) -64px 0;
	background-color: #000;
	background-color: rgba(0,0,0,0.75);
	*background-color: #000;
}
.rsDefault .rsCloseVideoIcn:hover {
	background-color: rgba(0,0,0,0.9);
}



/***************
*
*  7. Preloader
*
****************/

.rsDefault .rsPreloader {
	width:20px;
	height:20px;
	background-image:url(/static/css/royal-slider/preloader-white.gif);

	left:50%;
	top:50%;
	margin-left:-10px;
	margin-top:-10px;	
}




/***************
*
*  8. Global caption
*
****************/
.rsDefault .rsGCaption {
	position: absolute;
	float: none;
	bottom: 6px;
	left: 6px;
	text-align: left;

	background: rgb(0, 0, 0);
    background: rgba(0, 0, 0, 0.75);

	color: #FFF;
	padding: 2px 8px;
	width: auto;
	font-size: 12px;
	border-radius: 2px;
}
/******************************
*
*  RoyalSlider White Controls Skin
*
*    1. Arrows 
*    2. Bullets
*    3. Thumbnails
*    4. Tabs
*    5. Fullscreen button
*    6. Play/close video button
*    7. Preloader
*    8. Caption
*    
*  Sprite: 'rs-minimal-white.png'
*  Feel free to edit anything
*  If you don't some part - just delete it
* 
******************************/


/* Background */
.rsMinW,
.rsMinW .rsOverflow,
.rsMinW .rsSlide,
.rsMinW .rsVideoFrameHolder,
.rsMinW .rsThumbs {
	background: #000;
	color: #FFF;
}


/***************
*
*  1. Arrows
*
****************/

.rsMinW .rsArrow {
	height: 32px;
	width: 32px;
	position: absolute;
	display: block;
	cursor: pointer;
	z-index: 21;
}

.rsMinW .rsArrowLeft { right: 37px; bottom: 7px; }
.rsMinW .rsArrowRight { right: 7px; bottom: 7px; }

.rsMinW .rsArrowIcn {		
	width: 24px;
	height: 24px;
	margin-top: 3px;
	margin-left: 3px;
	position: absolute;
	cursor: pointer;	
	background: url('/static/css/royal-slider/rs-minimal-white.png') transparent;
	
	border-radius: 2px;
}
.rsMinW .rsArrowIcn:hover {

}


.rsMinW.rsHor .rsArrowLeft .rsArrowIcn { background-position: -68px -36px; }
.rsMinW.rsHor .rsArrowRight .rsArrowIcn { background-position: -68px -68px; }

.rsMinW.rsVer .rsArrowLeft .rsArrowIcn { background-position: -100px -36px; }
.rsMinW.rsVer .rsArrowRight .rsArrowIcn { background-position: -100px -68px; }

.rsMinW .rsArrowDisabled .rsArrowIcn { opacity: .3 !important; filter: alpha(opacity=30);  *display: none; }


/***************
*
*  2. Bullets
*
****************/

.rsMinW .rsBullets {
	position: absolute;
	bottom: 15px;
	right: 73px;
	z-index: 35;
	padding-top: 4px;
	height: auto;

	text-align: center;
	line-height: 6px;
	overflow: hidden;
}
.rsMinW .rsBullet {
	width: 6px;
	height: 6px;
	display: inline-block;
	*display:inline; 
	*zoom:1;
	padding: 6px 5px 6px 4px;
}
.rsMinW .rsBullet span {
	display: block;
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: #CCC;
	background: rgba(255,255,255,0.5);
	box-shadow: 0 0 1px 1px rgba(0, 0, 0, 0.1);
}
.rsMinW .rsBullet.rsNavSelected span {
	background: #FFF;
}





/***************
*
*  3. Thumbnails
*
****************/

.rsMinW .rsThumbsHor {
	width: 100%;
	height: auto;
}
.rsMinW .rsThumbsVer {
	width: 96px;
	height: 100%;
	position: absolute;
	top: 0;
	right: 0;
}
.rsMinW.rsWithThumbsHor .rsThumbsContainer {
	position: relative;
	height: 100%;
}
.rsMinW.rsWithThumbsVer .rsThumbsContainer {
	position: relative;
	width: 100%;
}
.rsMinW .rsThumb {
	float: left;
	overflow: hidden;
	width: 96px;
	height: 72px;
}
.rsMinW .rsThumb img {
	width: 100%;
	height: 100%;
}
.rsMinW .rsThumb.rsNavSelected {
	background: #333;
}
.rsMinW .rsThumb.rsNavSelected img {
	filter: alpha(opacity=40);
	opacity: 0.7;
}
.rsMinW .rsThumb.rsNavSelected span.thumbIco {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	border: 2px solid #FFF;
	border: 2px solid rgba(255,255,255,0.9);
	-webkit-backface-visibility: hidden;
} 
.rsMinW .rsTmb {
	display: block;
}




/* Thumbnails arrow icons */
.rsMinW .rsThumbsArrow {
	height: 100%;
	width: 20px;
	position: absolute;
	display: block;
	cursor: pointer;	
	z-index: 21;	
}
.rsMinW.rsWithThumbsVer .rsThumbsArrow {
	width: 100%;
	height: 20px;
}
.rsMinW.rsWithThumbsVer .rsThumbsArrowLeft { top: 0; left: 0; }
.rsMinW.rsWithThumbsVer .rsThumbsArrowRight { bottom: 0;  left: 0; }

.rsMinW.rsWithThumbsHor .rsThumbsArrowLeft { left: 0; top: 0; }
.rsMinW.rsWithThumbsHor .rsThumbsArrowRight { right: 0; top:0; }

.rsMinW .rsThumbsArrowIcn {		
	width: 16px;
	height: 16px;
	top: 50%;
	left: 50%;
	margin-top:-8px;	
	margin-left: -8px;
	position: absolute;	
	cursor: pointer;	
	background: url('/static/css/royal-slider/rs-minimal-white.png');
}

.rsMinW.rsWithThumbsHor .rsThumbsArrowLeft .rsThumbsArrowIcn { background-position: -128px -32px; }
.rsMinW.rsWithThumbsHor .rsThumbsArrowRight .rsThumbsArrowIcn { background-position: -128px -48px; }

.rsMinW.rsWithThumbsVer .rsThumbsArrowLeft .rsThumbsArrowIcn { background-position: -144px -32px; }
.rsMinW.rsWithThumbsVer .rsThumbsArrowRight .rsThumbsArrowIcn { background-position: -144px -48px; }

.rsMinW .rsThumbsArrowDisabled { display: none !important; }

/* Thumbnails resizing on smaller screens */
@media screen and (min-width: 0px) and (max-width: 800px) {
	.rsMinW .rsThumb {
		width: 59px;
		height: 44px;
	}
	.rsMinW .rsThumbsHor {
		height: 44px;
	}
	.rsMinW .rsThumbsVer {
		width: 59px;
	}
}




/***************
*
*  4. Tabs
*
****************/

.rsMinW .rsTabs {
	width: 100%;
	height: auto;
	margin: 0 auto;
	text-align:center;
	overflow: hidden; padding-top: 12px; position: relative;
}
.rsMinW .rsTab {
	display: inline-block;
	cursor: pointer;
	text-align: center;
	height: auto;
	width: auto;
	color: #333;
	padding: 5px 13px 6px;
	min-width: 72px;
	border: 1px solid #D9D9DD;
	border-right: 1px solid #f5f5f5;
	text-decoration: none;

	background-color: #000;
	background-image: -webkit-linear-gradient(top, #fefefe, #f4f4f4); 
	background-image:    -moz-linear-gradient(top, #fefefe, #f4f4f4);
	background-image:         linear-gradient(to bottom, #fefefe, #f4f4f4);

	*display:inline; 
	*zoom:1;
}
.rsMinW .rsTab:first-child {
	-webkit-border-top-left-radius: 4px;
	border-top-left-radius: 4px;
	-webkit-border-bottom-left-radius: 4px;
	border-bottom-left-radius: 4px;
}
.rsMinW .rsTab:last-child { 
	-webkit-border-top-right-radius: 4px;
	border-top-right-radius: 4px;
	-webkit-border-bottom-right-radius: 4px;
	border-bottom-right-radius: 4px;

	border-right:  1px solid #cfcfcf;
}
.rsMinW .rsTab:active { 
	border: 1px solid #D9D9DD;   
	background-color: #f4f4f4;
	box-shadow:  0 1px 4px rgba(0, 0, 0, 0.2) inset;
}
.rsMinW .rsTab.rsNavSelected { 
	color: #000;
	border: 1px solid #999;
	text-shadow: 1px 1px #838383;
	box-shadow: 0 1px 9px rgba(102, 102, 102, 0.65) inset;
	background: #ACACAC;
	background-image: -webkit-linear-gradient(top, #ACACAC, #BBB);
	background-image: -moz-llinear-gradient(top, #ACACAC, #BBB);
	background-image: linear-gradient(to bottom, #ACACAC, #BBB);
}





/***************
*
*  5. Fullscreen button
*
****************/

.rsMinW .rsFullscreenBtn {
	right: 0;
	top: 0;
	width: 44px;
	height: 44px;
	z-index: 22;
	display: block;
	position: absolute;
	cursor: pointer;
	
}
.rsMinW .rsFullscreenIcn {
	display: block;
	margin: 6px;
	width: 32px;
	height: 32px;

	background: url('/static/css/royal-slider/rs-minimal-white.png') 0 0 transparent;
}
.rsMinW .rsFullscreenIcn:hover {
	opacity: 0.8;
}
.rsMinW.rsFullscreen .rsFullscreenIcn {
	background-position: -32px 0;
}





/***************
*
*  6. Play/close video button
*
****************/

.rsMinW .rsPlayBtn {
	-webkit-tap-highlight-color:rgba(0,0,0,0.3);
	width:64px;
	height:64px;
	margin-left:-32px;
	margin-top:-32px;
	cursor: pointer;
}
.rsMinW .rsPlayBtnIcon {
	width:64px;
	display:block;
	height:64px;
	-webkit-border-radius: 4px;
	border-radius: 4px;
	
	-webkit-transition: .3s;
	-moz-transition: .3s;
	transition: .3s;

	background:url('/static/css/royal-slider/rs-minimal-white.png') no-repeat 0 -32px;
	background-color: #000;
	background-color: rgba(0,0,0,0.75);
	*background-color: #000;
}
.rsMinW .rsPlayBtn:hover .rsPlayBtnIcon {
	background-color: rgba(0,0,0,0.9);
}
.rsMinW .rsBtnCenterer {
	position:absolute;
	left:50%;
	top:50%;
	width: 20px;
	height: 20px;
}
.rsMinW .rsCloseVideoBtn {
	right: 0;
	top: 0;
	width: 44px;
	height: 44px;
	z-index: 500;
	position: absolute;
	cursor: pointer;
	-webkit-backface-visibility: hidden;
	-webkit-transform: translateZ(0);
	
}
.rsMinW .rsCloseVideoBtn.rsiOSBtn {
	top: -38px;
	right: -6px;
}

.rsMinW .rsCloseVideoIcn {
	margin: 6px;
	width: 32px;
	height: 32px;
	background: url('/static/css/royal-slider/rs-minimal-white.png') -64px 0;
	background-color: #000;
	background-color: rgba(0,0,0,0.75);
	*background-color: #000;
}
.rsMinW .rsCloseVideoIcn:hover {
	background-color: rgba(0,0,0,0.9);
}



/***************
*
*  7. Preloader
*
****************/

.rsMinW .rsPreloader {
	width:20px;
	height:20px;
	background-image:url(/static/css/royal-slider/preloader-white.gif);

	left:50%;
	top:50%;
	margin-left:-10px;
	margin-top:-10px;	
}




/***************
*
*  8. Global caption
*
****************/
.rsMinW .rsGCaption {
	position: absolute;
	float: none;
	bottom: 6px;
	left: 6px;
	text-align: left;

	background: #000;
    background: rgba(0,0,0, 0.75);

	color: #FFF;
	padding: 2px 8px;
	width: auto;
	font-size: 12px;
	border-radius: 2px;
}
/*******************
basic
*******************/

.locslider-basic {
	width: 100%;
	background-color:#fff;
	overflow:hidden;
}
.locslider-basic > .rsContent {display:none;}
.locslider-basic img {
	max-width: 100%;
	height: auto;
	display: block;
}
.locslider-basic.rsMinW .rsBullets {
	position:static;
	width:100%;
	padding-top:7px;
}
.locslider-basic.rsMinW .rsBullet {
	width: 12px;
	height: 12px;
	padding:0 2px;
}
.locslider-basic.rsMinW .rsBullet span {
	box-shadow: none;
	border:1px solid #ccc;
	width: 10px;
	height: 10px;
	background-color:transparent;
}
.locslider-basic.rsMinW .rsBullet.rsNavSelected span {
	background-color:#ccc;
}
.locslider-basic .rsContent {
	height: auto;
}

/*******************
basicanimated
*******************/

.locslider-basicanimated {
	width: 100%;
	background-color:transparent;
}
.locslider-basicanimated img {
	max-width: 100%;
	height: auto;
	display: block;
}
.locslider-basicanimated .infoBlock {
	position: absolute;
	top: 0;
	left: 20px;
	right: auto;
	max-width: 35%;
	height:100%;
	padding-bottom: 0;
	background: #FFF;
	background: rgba(255, 255, 255, 0.8);
	overflow: hidden;
	padding: 20px;
}
.locslider-basicanimated .infoBlockLeftBlack {
	color: #FFF;
	background: #000;
	background: rgba(0,0,0,0.75);
	left: 20px;
	right: auto;
}
.locslider-basicanimated .infoBlockRightBlack {
	color: #FFF;
	background: #000;
	background: rgba(0,0,0,0.75);
	left: 20px;
	right: auto;
}
.locslider-basicanimated .infoBlock h4 {
	font-size: 20px;
	line-height: 1.2;
	margin: 0;
	padding: 20px 0 3px;
	color:#fff;
}
.locslider-basicanimated .infoBlock p {
	font-size: 14px;
	margin: 4px 0 0;
}
.locslider-basicanimated .infoBlock p.description {
	color: #8fbbe4;
}
.locslider-basicanimated .infoBlock a {
	color: #FFF;
	text-decoration: underline;
}
.locslider-basicanimated.rsMinW .rsBullets {
	position:static;
	width:100%;
	padding-top:7px;
}
.locslider-basicanimated.rsMinW .rsBullet {
	width: 12px;
	height: 12px;
	padding:0 2px;
}
.locslider-basicanimated.rsMinW .rsBullet span {
	box-shadow: none;
	border:1px solid #ccc;
	width: 10px;
	height: 10px;
	background-color:transparent;
}
.locslider-basicanimated.rsMinW .rsBullet.rsNavSelected span {
	background-color:#ccc;
}
.locslider-basicanimated .rsContent {
	height: auto;
}

@media screen and (max-width: 810px) {
	.locslider-basicanimated .infoBlock {
		max-width: 35%;
	}
	.locslider-basicanimated .infoBlock h4 {
		padding-top: 0;
	}
}
@media screen and (max-width: 650px) {
	.locslider-basicanimated .infoBlock {
		max-width: 45%;
		padding:15px;
	}
	.locslider-basicanimated .infoBlockLeftBlack {
		left: 10px;
	}
	.locslider-basicanimated .infoBlockRightBlack {
		right: 10px;
	}
	.locslider-basicanimated .infoBlock h4 {
		font-size: 16px;
		padding-bottom: 2px;
	}
	.locslider-basicanimated .infoBlock p {
		font-size: 12px;
		margin-top: 2px;
	}
}
@media screen and (max-width: 480px) {
	.locslider-basicanimated .infoBlock {
		display:none;
		max-width:100%;
		width: 100%;
		height:auto;
		top: auto;
		bottom:0;
		left:0;
		right:0;
		padding:10px;
		-moz-box-sizing:border-box;
		-webkit-box-sizing:border-box;
		box-sizing:border-box;
	}
	.locslider-basicanimated .infoBlock p.description {
		display:none;
	}
	.locslider-basicanimated .infoBlock h4 {
		font-size: 14px;
		padding-bottom: 0;
	}
}


/*******************
content
*******************/

.locslider-content {
	width: 100%;
	background-color:transparent;
}
.locslider-content img {
	max-width: 100%;
	height: auto;
	display: block;
	margin:0 auto;
}
.locslider-content .rsSlideCount {
	display:block;
	clear:both;
	text-align:center;
	width:80%;
	padding: 1px 0 0;
	height: 20px;
	
	position:absolute;
	top: 0;
	left: 0;
	margin: 0 10%;
}
.locslider-content .rsContent {
	height: auto;
	padding-top: 30px;
}
.locslider-content.rsMinW, 
.locslider-content.rsMinW .rsOverflow, 
.locslider-content.rsMinW .rsSlide, 
.locslider-content.rsMinW .rsVideoFrameHolder, 
.locslider-content.rsMinW .rsThumbs {
	background: transparent;
	color: #333;
}
/* image */
.pic-box-alt {
	margin-bottom:1.25em;
	text-align:center;
}
	/* ie only */
	.loc-enlarge {
		display:block\9 !important;
	}

/* nav */
.locslider-content.rsMinW .rsArrow {
	width:16px;
	height:18px;
}

.locslider-content.rsMinW .rsArrowLeft { left: 0px; top: 0px; }
.locslider-content.rsMinW .rsArrowRight { right: 0px; top: 0px; }

.locslider-content.rsMinW .rsArrowIcn {
	border-radius: 0;
	margin:0;
	width:16px;
	height:18px;
	background: transparent url(/static/css/royal-slider/sprite_slider.png) 0 -160px no-repeat !important;	
}
.locslider-content.rsMinW .rsArrowRight .rsArrowIcn {
	background-position: -16px -160px !important;	
}


/*******************
gallery
*******************/

.locslider-gallery {
	width: 100%;
	-webkit-user-select: none;
	-moz-user-select: none;  
	user-select: none;
	background-color:#151515;
	padding:4px;
}
.locslider-gallery.rsDefault .rsThumb {
	width: 60px;
	height: 60px;
	border:2px solid transparent;
}
@media screen and (min-width: 0px) and (max-width: 800px) {
	.locslider-gallery.rsDefault .rsThumb {
		width: 44px;
		height: 44px;
	}
	.locslider-gallery.rsDefault .rsThumbsHor {
		height: 44px;
	}
	.locslider-gallery.rsDefault .rsThumbsVer {
		width: 44px;
	}
}
.locslider-gallery.rsDefault .rsThumb img {
	opacity: 0.5;
	filter: alpha(opacity=50);
}
.locslider-gallery.rsDefault .rsThumb.rsNavSelected {
	background: none;
	border-color:#fff;
}
.locslider-gallery.rsDefault .rsThumb.rsNavSelected img {
	opacity: 1.0;
	filter: alpha(opacity=100);
}

.locslider-gallery.rsDefault .rsGCaption {
	position: absolute;
	bottom: 0;
	left: 0;

	background: rgb(0, 0, 0);
    background: rgba(50, 50, 50, 0.65);

	padding: 15px 20px;
	width: 100%;
	
	-webkit-backface-visibility: hidden;
	
	-moz-box-sizing:border-box;
    -webkit-box-sizing:border-box;
    box-sizing:border-box;
}

.clear {
	height: 0;
	clear: both;
}


#featured_container {
    background-color: #DDEDFD !important;
    padding-top: 10px !important;
}

.locGlobalHeader .locGlobalHeaderSearch {
    margin-bottom: 0px;
}
.locCrumbNav {
    margin: 0 7px;
    padding: 5px 10px;
}

@media screen and (max-width: 650px) {
    .locCrumbNav {
        margin: 0 0;
    }
    .searchTips{
        float: none;
        margin: 3px 0;
    }
}

@media screen and (max-width: 480px) {
    .locCrumbNav {
        margin: 0 0;
    }
    .searchTips{
        float: none;
        margin: 3px 0;
    }
}



