
    body { margin: 0; background: #f3f4f6; overflow-x: hidden; }
    #page-container { position: relative; margin: 0 auto; padding: 0; overflow: visible; max-width: 100%; }
    .scieee-lazy-chunk { display: block; width: 100%; max-width: 100%; margin: 0 auto 24px auto; overflow-x: hidden; overflow-y: visible; box-sizing: border-box; }
    .scieee-lazy-chunk-content { width: 100%; max-width: 100%; overflow-x: hidden; box-sizing: border-box; }
    .scieee-lazy-chunk style { display: none !important; }
    .scieee-lazy-placeholder { width: 100%; max-width: 900px; margin: 12px auto; padding: 18px; box-sizing: border-box; background: #fff; color: #6b7280; border: 1px solid #e5e7eb; font: 13px system-ui, sans-serif; text-align: center; }
    .scieee-lazy-chunk.is-loaded { min-height: 0 !important; }
    .scieee-lazy-chunk.is-loaded > .scieee-lazy-placeholder { display: none; }
    .pf { margin-left: auto !important; margin-right: auto !important; }
  



/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator {
    display:none;
  }
  .loading-indicator.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname" -> "#page-container .classname")
 */
.pf { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc {overflow:visible;}
  }
}
.c { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t:after { /* webkit #35443 */
  content: '';
}
.t:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
._ { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi { /* info for Javascript */
  display:none;
}
.l { /* annotation links */
}
/* transparent color - WebKit */
.d { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1;src:url('chunks/assets/font_1ab60db1f69a23581759791a.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.936000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_1c62dcb14693fc8ca54c49d7.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.946000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_eb66110460a6405c86a11b5b.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.958000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_81fc4ba6b454a3546b6750bc.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.946000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_353a677c6cec5bfd9e49f06b.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.938000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_1c62dcb14693fc8ca54c49d7.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.946000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_0907223dfce5d47aceadfd26.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.935000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_c9e6e3be53364c0658e17a38.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.958000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_685f184936384ef85b58a220.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.410000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_d2d4ecdbb5488d19c399499b.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.410000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_1c62dcb14693fc8ca54c49d7.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.946000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m3{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m25{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.m22{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.m2e{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.m24{transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);}
.m2b{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m28{transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);}
.m31{transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m12{transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);}
.m1c{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m21{transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);}
.m30{transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);}
.m26{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m33{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m1b{transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);}
.m1e{transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);}
.m2d{transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);}
.m2a{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m36{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m16{transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);}
.m32{transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);}
.m1f{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.m17{transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);}
.m35{transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);}
.m2c{transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);}
.m23{transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);}
.m29{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m11{transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m18{transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);}
.m19{transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);}
.m34{transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);}
.m1a{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.m20{transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);}
.m15{transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);}
.m1d{transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);}
.m2f{transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);}
.m37{transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);}
.m27{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.m14{transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m13{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.v1{vertical-align:-6.361278px;}
.v0{vertical-align:0.000000px;}
.ls1{letter-spacing:0.000000px;}
.ls2{letter-spacing:2.906535px;}
.ls0{letter-spacing:20.351474px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1c{word-spacing:-0.063666px;}
.ws3{word-spacing:-0.058142px;}
.ws4c{word-spacing:-0.052328px;}
.ws87{word-spacing:-0.040699px;}
.ws29{word-spacing:0.000000px;}
.wsae{word-spacing:6.959587px;}
.wsb5{word-spacing:7.000287px;}
.ws8b{word-spacing:7.244483px;}
.ws93{word-spacing:7.610777px;}
.ws1a{word-spacing:8.017770px;}
.wsa5{word-spacing:8.139868px;}
.wsb8{word-spacing:8.261966px;}
.ws82{word-spacing:8.302666px;}
.wsad{word-spacing:8.343365px;}
.ws98{word-spacing:8.384064px;}
.ws96{word-spacing:8.424764px;}
.ws7d{word-spacing:8.628260px;}
.wsb2{word-spacing:8.750358px;}
.ws83{word-spacing:8.953855px;}
.ws17{word-spacing:9.075953px;}
.ws95{word-spacing:9.279450px;}
.ws53{word-spacing:9.471409px;}
.ws67{word-spacing:9.523737px;}
.ws7f{word-spacing:9.564345px;}
.ws61{word-spacing:9.576065px;}
.ws91{word-spacing:9.645744px;}
.ws19{word-spacing:9.686443px;}
.ws9e{word-spacing:9.889940px;}
.ws7e{word-spacing:9.930639px;}
.ws6f{word-spacing:9.942363px;}
.ws97{word-spacing:9.971339px;}
.ws86{word-spacing:10.012038px;}
.ws90{word-spacing:10.052737px;}
.ws18{word-spacing:10.093437px;}
.ws15{word-spacing:10.134136px;}
.ws8f{word-spacing:10.174835px;}
.ws8c{word-spacing:10.215535px;}
.ws80{word-spacing:10.256234px;}
.ws16{word-spacing:10.296933px;}
.ws89{word-spacing:10.337633px;}
.ws75{word-spacing:10.360988px;}
.ws81{word-spacing:10.378332px;}
.ws77{word-spacing:10.413317px;}
.ws8d{word-spacing:10.419031px;}
.ws4d{word-spacing:10.465645px;}
.ws10{word-spacing:10.570301px;}
.wsa6{word-spacing:10.581829px;}
.wsa3{word-spacing:10.622528px;}
.ws5e{word-spacing:10.674958px;}
.wsa0{word-spacing:10.744626px;}
.ws3b{word-spacing:10.779614px;}
.ws7b{word-spacing:10.884271px;}
.ws6d{word-spacing:10.936599px;}
.wsb3{word-spacing:10.948123px;}
.wsc{word-spacing:11.041255px;}
.ws94{word-spacing:11.110920px;}
.ws66{word-spacing:11.145912px;}
.ws50{word-spacing:11.198240px;}
.ws30{word-spacing:11.250568px;}
.ws51{word-spacing:11.302896px;}
.wsa4{word-spacing:11.314417px;}
.ws65{word-spacing:11.355225px;}
.wsb7{word-spacing:11.395815px;}
.ws47{word-spacing:11.407553px;}
.ws48{word-spacing:11.459881px;}
.wsb4{word-spacing:11.477214px;}
.ws57{word-spacing:11.564538px;}
.ws1e{word-spacing:11.581932px;}
.ws40{word-spacing:11.616866px;}
.ws7{word-spacing:11.669194px;}
.ws9f{word-spacing:11.680711px;}
.ws1b{word-spacing:11.721522px;}
.ws45{word-spacing:11.773850px;}
.ws8e{word-spacing:11.802809px;}
.ws5f{word-spacing:11.878507px;}
.ws64{word-spacing:11.930835px;}
.ws63{word-spacing:11.983163px;}
.ws8a{word-spacing:12.006306px;}
.ws36{word-spacing:12.035492px;}
.ws69{word-spacing:12.087820px;}
.ws92{word-spacing:12.169103px;}
.ws60{word-spacing:12.192476px;}
.wsb1{word-spacing:12.209802px;}
.ws52{word-spacing:12.244804px;}
.ws7c{word-spacing:12.401789px;}
.ws46{word-spacing:12.506446px;}
.ws32{word-spacing:12.558774px;}
.ws24{word-spacing:12.611102px;}
.ws23{word-spacing:12.663430px;}
.ws44{word-spacing:12.715758px;}
.ws14{word-spacing:12.768087px;}
.ws6{word-spacing:12.820415px;}
.ws8{word-spacing:12.872743px;}
.wsb{word-spacing:12.925071px;}
.ws11{word-spacing:12.977400px;}
.ws5{word-spacing:13.029728px;}
.wsd{word-spacing:13.082056px;}
.wsac{word-spacing:13.105188px;}
.ws21{word-spacing:13.116887px;}
.ws2d{word-spacing:13.134384px;}
.ws1d{word-spacing:13.186713px;}
.wse{word-spacing:13.239041px;}
.ws3e{word-spacing:13.291369px;}
.ws26{word-spacing:13.343697px;}
.wsaa{word-spacing:13.349384px;}
.wsa9{word-spacing:13.390083px;}
.ws3a{word-spacing:13.396025px;}
.wsb0{word-spacing:13.430782px;}
.ws71{word-spacing:13.448354px;}
.wsab{word-spacing:13.471482px;}
.ws3f{word-spacing:13.500682px;}
.ws84{word-spacing:13.552881px;}
.ws38{word-spacing:13.553010px;}
.ws78{word-spacing:13.605338px;}
.ws42{word-spacing:13.709995px;}
.ws85{word-spacing:13.715678px;}
.ws56{word-spacing:13.762323px;}
.ws6c{word-spacing:13.814651px;}
.ws5c{word-spacing:13.919308px;}
.wsb6{word-spacing:13.959874px;}
.wsf{word-spacing:13.971636px;}
.ws76{word-spacing:14.023964px;}
.wsaf{word-spacing:14.041273px;}
.wsa{word-spacing:14.128621px;}
.ws39{word-spacing:14.180949px;}
.ws2a{word-spacing:14.285605px;}
.ws88{word-spacing:14.326168px;}
.ws43{word-spacing:14.337933px;}
.ws41{word-spacing:14.390262px;}
.ws4{word-spacing:14.477378px;}
.ws25{word-spacing:14.599575px;}
.ws73{word-spacing:14.651903px;}
.ws20{word-spacing:14.698355px;}
.ws28{word-spacing:14.756559px;}
.ws9b{word-spacing:14.773861px;}
.ws2c{word-spacing:14.913544px;}
.ws13{word-spacing:15.070529px;}
.ws62{word-spacing:15.122857px;}
.ws59{word-spacing:15.175185px;}
.ws31{word-spacing:15.227513px;}
.ws2f{word-spacing:15.279841px;}
.ws49{word-spacing:15.332170px;}
.ws4b{word-spacing:15.384498px;}
.ws3d{word-spacing:15.541483px;}
.ws72{word-spacing:15.646139px;}
.ws58{word-spacing:15.750795px;}
.ws5b{word-spacing:15.803124px;}
.ws4f{word-spacing:15.852806px;}
.ws12{word-spacing:15.855452px;}
.ws37{word-spacing:15.907780px;}
.ws68{word-spacing:15.916472px;}
.ws79{word-spacing:16.064765px;}
.ws5d{word-spacing:16.221750px;}
.ws6a{word-spacing:16.274078px;}
.ws35{word-spacing:16.326406px;}
.ws3c{word-spacing:16.378734px;}
.ws33{word-spacing:16.431062px;}
.ws4e{word-spacing:16.483391px;}
.ws9{word-spacing:16.588047px;}
.ws54{word-spacing:16.745032px;}
.ws74{word-spacing:16.797360px;}
.ws2e{word-spacing:16.849688px;}
.ws4a{word-spacing:16.902016px;}
.ws5a{word-spacing:16.954345px;}
.wsa1{word-spacing:16.971625px;}
.ws1f{word-spacing:16.977531px;}
.ws2b{word-spacing:17.163658px;}
.ws2{word-spacing:17.372970px;}
.ws34{word-spacing:17.529955px;}
.ws27{word-spacing:17.634612px;}
.ws6e{word-spacing:17.739268px;}
.ws7a{word-spacing:18.053237px;}
.ws55{word-spacing:18.262550px;}
.ws6b{word-spacing:18.524191px;}
.wsa2{word-spacing:18.884494px;}
.ws70{word-spacing:19.047474px;}
.ws99{word-spacing:19.087991px;}
.ws9a{word-spacing:20.227572px;}
.ws9d{word-spacing:20.431069px;}
.ws9c{word-spacing:20.715965px;}
.wsa8{word-spacing:24.094010px;}
.ws1{word-spacing:25.016950px;}
.ws0{word-spacing:25.117419px;}
.wsa7{word-spacing:25.884781px;}
.ws22{word-spacing:63.602224px;}
._8{margin-left:-6.227059px;}
._1{margin-left:-4.186258px;}
._4{margin-left:-3.035037px;}
._0{margin-left:-1.607515px;}
._3{width:1.308206px;}
._2{width:2.907104px;}
._5{width:10.727212px;}
._7{width:12.140148px;}
._b{width:23.239210px;}
._a{width:63.665889px;}
._9{width:1077.922043px;}
._6{width:2298.307908px;}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:31.978554px;}
.fs5{font-size:40.699341px;}
.fs8{font-size:42.443732px;}
.fs6{font-size:46.513783px;}
.fs3{font-size:52.328224px;}
.fs2{font-size:58.142082px;}
.fs4{font-size:63.665889px;}
.fs1{font-size:69.770966px;}
.fs0{font-size:100.469677px;}
.y0{bottom:0.000000px;}
.y1{bottom:53.649840px;}
.y29{bottom:123.509468px;}
.y28{bottom:135.137767px;}
.y41{bottom:139.497286px;}
.y27{bottom:146.766067px;}
.y40{bottom:155.486562px;}
.ye7{bottom:158.394367px;}
.y26{bottom:159.557197px;}
.ye6{bottom:170.022667px;}
.y3f{bottom:171.475839px;}
.y25{bottom:172.348327px;}
.ye5{bottom:181.650966px;}
.y24{bottom:183.976626px;}
.y3e{bottom:187.465116px;}
.ye4{bottom:193.279266px;}
.y23{bottom:195.604926px;}
.y3d{bottom:203.454393px;}
.ye3{bottom:204.907566px;}
.y22{bottom:207.233226px;}
.yc4{bottom:207.452077px;}
.ye2{bottom:216.535866px;}
.y21{bottom:218.862985px;}
.y3c{bottom:219.443670px;}
.ye1{bottom:228.165624px;}
.y20{bottom:230.491284px;}
.y3b{bottom:235.432947px;}
.y9a{bottom:239.430631px;}
.ye0{bottom:239.793924px;}
.y1f{bottom:242.119584px;}
.y3a{bottom:251.422224px;}
.ydf{bottom:263.050524px;}
.yc3{bottom:263.094294px;}
.y39{bottom:267.411501px;}
.yde{bottom:274.678823px;}
.y99{bottom:275.405410px;}
.y1e{bottom:278.559787px;}
.y38{bottom:283.400778px;}
.yc2{bottom:284.808721px;}
.ydd{bottom:286.307123px;}
.y98{bottom:291.394687px;}
.y1d{bottom:294.549063px;}
.ydc{bottom:297.935423px;}
.y37{bottom:299.388595px;}
.yc1{bottom:300.797998px;}
.y97{bottom:307.383963px;}
.ydb{bottom:309.563723px;}
.y1c{bottom:310.538340px;}
.y36{bottom:315.377872px;}
.yc0{bottom:316.787275px;}
.yda{bottom:321.192022px;}
.y96{bottom:323.373240px;}
.y1b{bottom:326.527617px;}
.y6e{bottom:331.367149px;}
.ybf{bottom:332.776552px;}
.yd9{bottom:332.821781px;}
.y35{bottom:335.364833px;}
.y95{bottom:339.362517px;}
.y1a{bottom:342.516894px;}
.yd8{bottom:344.450081px;}
.y6d{bottom:347.356426px;}
.ybe{bottom:348.765829px;}
.y94{bottom:355.351794px;}
.yd7{bottom:356.078380px;}
.y19{bottom:358.506171px;}
.y6c{bottom:363.345703px;}
.ybd{bottom:364.755106px;}
.yd6{bottom:367.706680px;}
.y93{bottom:371.341071px;}
.y34{bottom:372.161034px;}
.y18{bottom:374.495448px;}
.y6b{bottom:379.334980px;}
.ybc{bottom:380.744382px;}
.y33{bottom:386.695679px;}
.y92{bottom:387.328889px;}
.y17{bottom:390.484725px;}
.yd5{bottom:390.963280px;}
.y6a{bottom:395.324257px;}
.ybb{bottom:396.733659px;}
.y32{bottom:401.231783px;}
.yd4{bottom:402.591579px;}
.y91{bottom:403.318166px;}
.y16{bottom:406.472543px;}
.y69{bottom:411.313534px;}
.yba{bottom:412.721477px;}
.yd3{bottom:414.219879px;}
.y31{bottom:415.767887px;}
.y90{bottom:419.307443px;}
.y15{bottom:422.461820px;}
.yd2{bottom:425.848179px;}
.y68{bottom:427.302811px;}
.yb9{bottom:428.710754px;}
.y30{bottom:430.302533px;}
.y8f{bottom:435.296720px;}
.yd1{bottom:437.477938px;}
.y14{bottom:438.451096px;}
.y67{bottom:443.292088px;}
.yb8{bottom:444.700031px;}
.yd0{bottom:449.106237px;}
.y8e{bottom:451.285996px;}
.y13{bottom:454.440373px;}
.y66{bottom:459.281364px;}
.yb7{bottom:460.689308px;}
.ycf{bottom:460.734537px;}
.y8d{bottom:467.275273px;}
.y12{bottom:470.429650px;}
.yce{bottom:472.362837px;}
.y65{bottom:475.269182px;}
.yb6{bottom:476.678585px;}
.y8c{bottom:483.264550px;}
.ycd{bottom:483.991137px;}
.y2f{bottom:485.766750px;}
.y11{bottom:486.418927px;}
.y64{bottom:491.258459px;}
.yb5{bottom:492.667862px;}
.ycc{bottom:495.619436px;}
.y8b{bottom:499.253827px;}
.y2e{bottom:501.756027px;}
.y10{bottom:502.408204px;}
.y63{bottom:507.247736px;}
.yb4{bottom:508.657139px;}
.y8a{bottom:515.243104px;}
.yf{bottom:518.397481px;}
.ycb{bottom:518.876036px;}
.y2d{bottom:521.742988px;}
.y62{bottom:523.237013px;}
.yb3{bottom:524.646415px;}
.yca{bottom:530.504336px;}
.y89{bottom:531.232381px;}
.ye{bottom:534.386758px;}
.y61{bottom:539.226290px;}
.yc9{bottom:542.134094px;}
.yb2{bottom:546.360843px;}
.y88{bottom:547.220199px;}
.yd{bottom:550.376035px;}
.yc8{bottom:553.762394px;}
.y2c{bottom:554.372260px;}
.y60{bottom:555.215567px;}
.yb1{bottom:562.350120px;}
.y87{bottom:563.209476px;}
.yc7{bottom:565.390694px;}
.yc{bottom:566.363853px;}
.y2b{bottom:570.361537px;}
.y5f{bottom:571.204844px;}
.yc6{bottom:577.018994px;}
.yb0{bottom:578.337937px;}
.y86{bottom:579.198753px;}
.yb{bottom:582.353130px;}
.y2a{bottom:586.350813px;}
.y5e{bottom:587.194121px;}
.y10a{bottom:588.647293px;}
.y82{bottom:591.190345px;}
.yc5{bottom:592.644977px;}
.yaf{bottom:594.327214px;}
.y85{bottom:595.188029px;}
.y109{bottom:600.275593px;}
.ya{bottom:602.340090px;}
.y5d{bottom:603.183397px;}
.yae{bottom:610.316491px;}
.y84{bottom:611.177306px;}
.y108{bottom:611.903893px;}
.y5c{bottom:619.172674px;}
.y81{bottom:622.805606px;}
.y107{bottom:623.532192px;}
.yad{bottom:626.305768px;}
.y9{bottom:627.268714px;}
.y83{bottom:631.164267px;}
.y5b{bottom:635.160492px;}
.y80{bottom:638.794883px;}
.yac{bottom:642.295045px;}
.y106{bottom:646.790251px;}
.y5a{bottom:651.149769px;}
.y7f{bottom:654.784160px;}
.yab{bottom:658.284322px;}
.y105{bottom:658.418551px;}
.y59{bottom:667.139046px;}
.y104{bottom:670.046850px;}
.y7e{bottom:670.773437px;}
.yaa{bottom:674.273599px;}
.y103{bottom:681.675150px;}
.y58{bottom:683.128323px;}
.y7d{bottom:686.762714px;}
.ya9{bottom:690.262876px;}
.y102{bottom:693.303450px;}
.y57{bottom:699.117600px;}
.y7c{bottom:702.751991px;}
.y101{bottom:704.931750px;}
.ya8{bottom:706.252153px;}
.y56{bottom:715.106877px;}
.y100{bottom:716.560049px;}
.y7b{bottom:718.741267px;}
.ya7{bottom:722.241429px;}
.yff{bottom:728.188349px;}
.y55{bottom:731.096154px;}
.y7a{bottom:734.730544px;}
.ya6{bottom:738.229247px;}
.yfe{bottom:739.816649px;}
.y54{bottom:747.085430px;}
.y79{bottom:750.718362px;}
.yfd{bottom:751.446408px;}
.ya5{bottom:754.218524px;}
.y53{bottom:763.074707px;}
.y78{bottom:766.707639px;}
.ya4{bottom:770.207801px;}
.yfc{bottom:774.703007px;}
.y52{bottom:779.063984px;}
.y77{bottom:782.696916px;}
.ya3{bottom:786.197078px;}
.yfb{bottom:786.331307px;}
.y51{bottom:795.053261px;}
.yfa{bottom:797.959607px;}
.y76{bottom:798.686193px;}
.ya2{bottom:802.186355px;}
.yf9{bottom:809.587906px;}
.y50{bottom:811.041079px;}
.y75{bottom:814.675470px;}
.ya1{bottom:818.175632px;}
.yf8{bottom:821.216206px;}
.y4f{bottom:827.030356px;}
.y74{bottom:830.664747px;}
.yf7{bottom:832.844506px;}
.ya0{bottom:834.164909px;}
.y4e{bottom:843.019633px;}
.yf6{bottom:844.472805px;}
.y73{bottom:846.654024px;}
.y9f{bottom:850.154186px;}
.yf5{bottom:856.102564px;}
.y4d{bottom:859.008910px;}
.y9e{bottom:866.143462px;}
.y72{bottom:866.640984px;}
.yf4{bottom:867.730864px;}
.y4c{bottom:874.998187px;}
.yf3{bottom:879.359164px;}
.y9d{bottom:882.132739px;}
.y8{bottom:882.426000px;}
.y71{bottom:885.536607px;}
.y4b{bottom:890.987463px;}
.y7{bottom:899.868450px;}
.y9c{bottom:902.118241px;}
.yf2{bottom:902.615763px;}
.y70{bottom:904.432229px;}
.y4a{bottom:906.976740px;}
.yf1{bottom:914.244063px;}
.y6{bottom:917.310899px;}
.y9b{bottom:921.015323px;}
.y49{bottom:922.966017px;}
.y6f{bottom:923.329310px;}
.yf0{bottom:925.872363px;}
.y5{bottom:934.753349px;}
.yef{bottom:937.500662px;}
.y48{bottom:938.955294px;}
.yee{bottom:949.128962px;}
.yed{bottom:949.130421px;}
.y4{bottom:952.195799px;}
.y47{bottom:954.944571px;}
.yec{bottom:960.758721px;}
.y46{bottom:970.932389px;}
.yeb{bottom:972.387021px;}
.yea{bottom:984.015320px;}
.y45{bottom:986.921666px;}
.y3{bottom:986.946469px;}
.ye9{bottom:995.643620px;}
.y44{bottom:1002.910943px;}
.ye8{bottom:1007.271920px;}
.y2{bottom:1016.017218px;}
.y43{bottom:1018.900220px;}
.y42{bottom:1057.275068px;}
.he{height:24.175640px;}
.hd{height:28.408140px;}
.ha{height:28.489539px;}
.h9{height:28.815133px;}
.hf{height:30.050162px;}
.hc{height:32.931758px;}
.hb{height:33.489923px;}
.h8{height:37.048383px;}
.h6{height:37.676321px;}
.h5{height:41.164594px;}
.h7{height:45.839440px;}
.h4{height:49.397844px;}
.h3{height:70.127835px;}
.h2{height:1155.534900px;}
.h0{height:1262.834700px;}
.h1{height:1263.000000px;}
.w0{width:892.913400px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x23{left:55.970494px;}
.x1{left:78.503425px;}
.x20{left:83.223318px;}
.x1e{left:93.027857px;}
.x1f{left:96.297496px;}
.x21{left:101.013012px;}
.x12{left:102.590200px;}
.x5{left:110.190177px;}
.x1d{left:114.654744px;}
.x4{left:146.675609px;}
.x7{left:148.731352px;}
.x3{left:154.409814px;}
.x6{left:173.979498px;}
.x10{left:239.211780px;}
.x2{left:321.107400px;}
.x9{left:332.687552px;}
.xb{left:384.673493px;}
.x8{left:393.913395px;}
.xa{left:414.238846px;}
.x24{left:441.377868px;}
.x11{left:463.899127px;}
.x17{left:480.584351px;}
.x22{left:486.420386px;}
.x1b{left:525.634164px;}
.x1c{left:542.288749px;}
.xd{left:572.182380px;}
.xf{left:613.629900px;}
.xc{left:624.547663px;}
.xe{left:653.733674px;}
.x18{left:660.235017px;}
.x13{left:662.325776px;}
.x19{left:676.920241px;}
.x14{left:679.752177px;}
.x15{left:749.355648px;}
.x16{left:766.782049px;}
.x1a{left:801.024984px;}
@media print{
.v1{vertical-align:-5.654469pt;}
.v0{vertical-align:0.000000pt;}
.ls1{letter-spacing:0.000000pt;}
.ls2{letter-spacing:2.583587pt;}
.ls0{letter-spacing:18.090199pt;}
.ws1c{word-spacing:-0.056592pt;}
.ws3{word-spacing:-0.051682pt;}
.ws4c{word-spacing:-0.046514pt;}
.ws87{word-spacing:-0.036177pt;}
.ws29{word-spacing:0.000000pt;}
.wsae{word-spacing:6.186300pt;}
.wsb5{word-spacing:6.222477pt;}
.ws8b{word-spacing:6.439540pt;}
.ws93{word-spacing:6.765135pt;}
.ws1a{word-spacing:7.126907pt;}
.wsa5{word-spacing:7.235438pt;}
.wsb8{word-spacing:7.343970pt;}
.ws82{word-spacing:7.380147pt;}
.wsad{word-spacing:7.416324pt;}
.ws98{word-spacing:7.452502pt;}
.ws96{word-spacing:7.488679pt;}
.ws7d{word-spacing:7.669565pt;}
.wsb2{word-spacing:7.778096pt;}
.ws83{word-spacing:7.958982pt;}
.ws17{word-spacing:8.067514pt;}
.ws95{word-spacing:8.248400pt;}
.ws53{word-spacing:8.419030pt;}
.ws67{word-spacing:8.465544pt;}
.ws7f{word-spacing:8.501640pt;}
.ws61{word-spacing:8.512058pt;}
.ws91{word-spacing:8.573994pt;}
.ws19{word-spacing:8.610172pt;}
.ws9e{word-spacing:8.791058pt;}
.ws7e{word-spacing:8.827235pt;}
.ws6f{word-spacing:8.837656pt;}
.ws97{word-spacing:8.863412pt;}
.ws86{word-spacing:8.899589pt;}
.ws90{word-spacing:8.935766pt;}
.ws18{word-spacing:8.971944pt;}
.ws15{word-spacing:9.008121pt;}
.ws8f{word-spacing:9.044298pt;}
.ws8c{word-spacing:9.080475pt;}
.ws80{word-spacing:9.116652pt;}
.ws16{word-spacing:9.152830pt;}
.ws89{word-spacing:9.189007pt;}
.ws75{word-spacing:9.209767pt;}
.ws81{word-spacing:9.225184pt;}
.ws77{word-spacing:9.256281pt;}
.ws8d{word-spacing:9.261361pt;}
.ws4d{word-spacing:9.302795pt;}
.ws10{word-spacing:9.395823pt;}
.wsa6{word-spacing:9.406070pt;}
.wsa3{word-spacing:9.442247pt;}
.ws5e{word-spacing:9.488851pt;}
.wsa0{word-spacing:9.550779pt;}
.ws3b{word-spacing:9.581879pt;}
.ws7b{word-spacing:9.674907pt;}
.ws6d{word-spacing:9.721421pt;}
.wsb3{word-spacing:9.731665pt;}
.wsc{word-spacing:9.814449pt;}
.ws94{word-spacing:9.876373pt;}
.ws66{word-spacing:9.907477pt;}
.ws50{word-spacing:9.953991pt;}
.ws30{word-spacing:10.000505pt;}
.ws51{word-spacing:10.047019pt;}
.wsa4{word-spacing:10.057259pt;}
.ws65{word-spacing:10.093533pt;}
.wsb7{word-spacing:10.129614pt;}
.ws47{word-spacing:10.140047pt;}
.ws48{word-spacing:10.186561pt;}
.wsb4{word-spacing:10.201968pt;}
.ws57{word-spacing:10.279589pt;}
.ws1e{word-spacing:10.295051pt;}
.ws40{word-spacing:10.326103pt;}
.ws7{word-spacing:10.372617pt;}
.ws9f{word-spacing:10.382854pt;}
.ws1b{word-spacing:10.419131pt;}
.ws45{word-spacing:10.465645pt;}
.ws8e{word-spacing:10.491386pt;}
.ws5f{word-spacing:10.558673pt;}
.ws64{word-spacing:10.605187pt;}
.ws63{word-spacing:10.651701pt;}
.ws8a{word-spacing:10.672272pt;}
.ws36{word-spacing:10.698215pt;}
.ws69{word-spacing:10.744729pt;}
.ws92{word-spacing:10.816980pt;}
.ws60{word-spacing:10.837757pt;}
.wsb1{word-spacing:10.853158pt;}
.ws52{word-spacing:10.884271pt;}
.ws7c{word-spacing:11.023813pt;}
.ws46{word-spacing:11.116841pt;}
.ws32{word-spacing:11.163355pt;}
.ws24{word-spacing:11.209868pt;}
.ws23{word-spacing:11.256382pt;}
.ws44{word-spacing:11.302896pt;}
.ws14{word-spacing:11.349410pt;}
.ws6{word-spacing:11.395924pt;}
.ws8{word-spacing:11.442438pt;}
.wsb{word-spacing:11.488952pt;}
.ws11{word-spacing:11.535466pt;}
.ws5{word-spacing:11.581980pt;}
.wsd{word-spacing:11.628494pt;}
.wsac{word-spacing:11.649056pt;}
.ws21{word-spacing:11.659455pt;}
.ws2d{word-spacing:11.675008pt;}
.ws1d{word-spacing:11.721522pt;}
.wse{word-spacing:11.768036pt;}
.ws3e{word-spacing:11.814550pt;}
.ws26{word-spacing:11.861064pt;}
.wsaa{word-spacing:11.866119pt;}
.wsa9{word-spacing:11.902296pt;}
.ws3a{word-spacing:11.907578pt;}
.wsb0{word-spacing:11.938473pt;}
.ws71{word-spacing:11.954092pt;}
.wsab{word-spacing:11.974651pt;}
.ws3f{word-spacing:12.000606pt;}
.ws84{word-spacing:12.047005pt;}
.ws38{word-spacing:12.047120pt;}
.ws78{word-spacing:12.093634pt;}
.ws42{word-spacing:12.186662pt;}
.ws85{word-spacing:12.191714pt;}
.ws56{word-spacing:12.233176pt;}
.ws6c{word-spacing:12.279690pt;}
.ws5c{word-spacing:12.372718pt;}
.wsb6{word-spacing:12.408777pt;}
.wsf{word-spacing:12.419232pt;}
.ws76{word-spacing:12.465746pt;}
.wsaf{word-spacing:12.481131pt;}
.wsa{word-spacing:12.558774pt;}
.ws39{word-spacing:12.605288pt;}
.ws2a{word-spacing:12.698316pt;}
.ws88{word-spacing:12.734372pt;}
.ws43{word-spacing:12.744830pt;}
.ws41{word-spacing:12.791344pt;}
.ws4{word-spacing:12.868781pt;}
.ws25{word-spacing:12.977400pt;}
.ws73{word-spacing:13.023914pt;}
.ws20{word-spacing:13.065205pt;}
.ws28{word-spacing:13.116942pt;}
.ws9b{word-spacing:13.132321pt;}
.ws2c{word-spacing:13.256483pt;}
.ws13{word-spacing:13.396025pt;}
.ws62{word-spacing:13.442539pt;}
.ws59{word-spacing:13.489053pt;}
.ws31{word-spacing:13.535567pt;}
.ws2f{word-spacing:13.582081pt;}
.ws49{word-spacing:13.628595pt;}
.ws4b{word-spacing:13.675109pt;}
.ws3d{word-spacing:13.814651pt;}
.ws72{word-spacing:13.907679pt;}
.ws58{word-spacing:14.000707pt;}
.ws5b{word-spacing:14.047221pt;}
.ws4f{word-spacing:14.091384pt;}
.ws12{word-spacing:14.093735pt;}
.ws37{word-spacing:14.140249pt;}
.ws68{word-spacing:14.147975pt;}
.ws79{word-spacing:14.279791pt;}
.ws5d{word-spacing:14.419333pt;}
.ws6a{word-spacing:14.465847pt;}
.ws35{word-spacing:14.512361pt;}
.ws3c{word-spacing:14.558875pt;}
.ws33{word-spacing:14.605389pt;}
.ws4e{word-spacing:14.651903pt;}
.ws9{word-spacing:14.744931pt;}
.ws54{word-spacing:14.884473pt;}
.ws74{word-spacing:14.930987pt;}
.ws2e{word-spacing:14.977501pt;}
.ws4a{word-spacing:15.024015pt;}
.ws5a{word-spacing:15.070529pt;}
.wsa1{word-spacing:15.085889pt;}
.ws1f{word-spacing:15.091138pt;}
.ws2b{word-spacing:15.256584pt;}
.ws2{word-spacing:15.442640pt;}
.ws34{word-spacing:15.582182pt;}
.ws27{word-spacing:15.675210pt;}
.ws6e{word-spacing:15.768238pt;}
.ws7a{word-spacing:16.047322pt;}
.ws55{word-spacing:16.233378pt;}
.ws6b{word-spacing:16.465948pt;}
.wsa2{word-spacing:16.786217pt;}
.ws70{word-spacing:16.931088pt;}
.ws99{word-spacing:16.967103pt;}
.ws9a{word-spacing:17.980064pt;}
.ws9d{word-spacing:18.160950pt;}
.ws9c{word-spacing:18.414191pt;}
.wsa8{word-spacing:21.416898pt;}
.ws1{word-spacing:22.237288pt;}
.ws0{word-spacing:22.326595pt;}
.wsa7{word-spacing:23.008694pt;}
.ws22{word-spacing:56.535310pt;}
._8{margin-left:-5.535163pt;}
._1{margin-left:-3.721118pt;}
._4{margin-left:-2.697811pt;}
._0{margin-left:-1.428902pt;}
._3{width:1.162849pt;}
._2{width:2.584093pt;}
._5{width:9.535300pt;}
._7{width:10.791243pt;}
._b{width:20.657076pt;}
._a{width:56.591902pt;}
._9{width:958.152927pt;}
._6{width:2042.940363pt;}
.fs7{font-size:28.425381pt;}
.fs5{font-size:36.177192pt;}
.fs8{font-size:37.727762pt;}
.fs6{font-size:41.345584pt;}
.fs3{font-size:46.513977pt;}
.fs2{font-size:51.681851pt;}
.fs4{font-size:56.591902pt;}
.fs1{font-size:62.018636pt;}
.fs0{font-size:89.306380pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:47.688747pt;}
.y29{bottom:109.786194pt;}
.y28{bottom:120.122460pt;}
.y41{bottom:123.997587pt;}
.y27{bottom:130.458726pt;}
.y40{bottom:138.210278pt;}
.ye7{bottom:140.794993pt;}
.y26{bottom:141.828619pt;}
.ye6{bottom:151.131259pt;}
.y3f{bottom:152.422968pt;}
.y25{bottom:153.198513pt;}
.ye5{bottom:161.467526pt;}
.y24{bottom:163.534779pt;}
.y3e{bottom:166.635659pt;}
.ye4{bottom:171.803792pt;}
.y23{bottom:173.871045pt;}
.y3d{bottom:180.848349pt;}
.ye3{bottom:182.140059pt;}
.y22{bottom:184.207312pt;}
.yc4{bottom:184.401846pt;}
.ye2{bottom:192.476325pt;}
.y21{bottom:194.544875pt;}
.y3c{bottom:195.061040pt;}
.ye1{bottom:202.813888pt;}
.y20{bottom:204.881142pt;}
.y3b{bottom:209.273731pt;}
.y9a{bottom:212.827227pt;}
.ye0{bottom:213.150155pt;}
.y1f{bottom:215.217408pt;}
.y3a{bottom:223.486421pt;}
.ydf{bottom:233.822688pt;}
.yc3{bottom:233.861595pt;}
.y39{bottom:237.699112pt;}
.yde{bottom:244.158954pt;}
.y99{bottom:244.804809pt;}
.y1e{bottom:247.608699pt;}
.y38{bottom:251.911802pt;}
.yc2{bottom:253.163308pt;}
.ydd{bottom:254.495220pt;}
.y98{bottom:259.017499pt;}
.y1d{bottom:261.821390pt;}
.ydc{bottom:264.831487pt;}
.y37{bottom:266.123196pt;}
.yc1{bottom:267.375998pt;}
.y97{bottom:273.230190pt;}
.ydb{bottom:275.167753pt;}
.y1c{bottom:276.034080pt;}
.y36{bottom:280.335887pt;}
.yc0{bottom:281.588689pt;}
.yda{bottom:285.504020pt;}
.y96{bottom:287.442880pt;}
.y1b{bottom:290.246771pt;}
.y6e{bottom:294.548577pt;}
.ybf{bottom:295.801379pt;}
.yd9{bottom:295.841583pt;}
.y35{bottom:298.102074pt;}
.y95{bottom:301.655571pt;}
.y1a{bottom:304.459461pt;}
.yd8{bottom:306.177850pt;}
.y6d{bottom:308.761268pt;}
.ybe{bottom:310.014070pt;}
.y94{bottom:315.868261pt;}
.yd7{bottom:316.514116pt;}
.y19{bottom:318.672152pt;}
.y6c{bottom:322.973958pt;}
.ybd{bottom:324.226760pt;}
.yd6{bottom:326.850382pt;}
.y93{bottom:330.080952pt;}
.y34{bottom:330.809808pt;}
.y18{bottom:332.884843pt;}
.y6b{bottom:337.186649pt;}
.ybc{bottom:338.439451pt;}
.y33{bottom:343.729493pt;}
.y92{bottom:344.292346pt;}
.y17{bottom:347.097533pt;}
.yd5{bottom:347.522915pt;}
.y6a{bottom:351.399339pt;}
.ybb{bottom:352.652142pt;}
.y32{bottom:356.650474pt;}
.yd4{bottom:357.859182pt;}
.y91{bottom:358.505036pt;}
.y16{bottom:361.308927pt;}
.y69{bottom:365.612030pt;}
.yba{bottom:366.863535pt;}
.yd3{bottom:368.195448pt;}
.y31{bottom:369.571456pt;}
.y90{bottom:372.717727pt;}
.y15{bottom:375.521617pt;}
.yd2{bottom:378.531715pt;}
.y68{bottom:379.824721pt;}
.yb9{bottom:381.076226pt;}
.y30{bottom:382.491140pt;}
.y8f{bottom:386.930417pt;}
.yd1{bottom:388.869278pt;}
.y14{bottom:389.734308pt;}
.y67{bottom:394.037411pt;}
.yb8{bottom:395.288916pt;}
.yd0{bottom:399.205544pt;}
.y8e{bottom:401.143108pt;}
.y13{bottom:403.946999pt;}
.y66{bottom:408.250102pt;}
.yb7{bottom:409.501607pt;}
.ycf{bottom:409.541811pt;}
.y8d{bottom:415.355799pt;}
.y12{bottom:418.159689pt;}
.yce{bottom:419.878077pt;}
.y65{bottom:422.461495pt;}
.yb6{bottom:423.714298pt;}
.y8c{bottom:429.568489pt;}
.ycd{bottom:430.214344pt;}
.y2f{bottom:431.792667pt;}
.y11{bottom:432.372380pt;}
.y64{bottom:436.674186pt;}
.yb5{bottom:437.926988pt;}
.ycc{bottom:440.550610pt;}
.y8b{bottom:443.781180pt;}
.y2e{bottom:446.005357pt;}
.y10{bottom:446.585070pt;}
.y63{bottom:450.886877pt;}
.yb4{bottom:452.139679pt;}
.y8a{bottom:457.993870pt;}
.yf{bottom:460.797761pt;}
.ycb{bottom:461.223143pt;}
.y2d{bottom:463.771545pt;}
.y62{bottom:465.099567pt;}
.yb3{bottom:466.352369pt;}
.yca{bottom:471.559409pt;}
.y89{bottom:472.206561pt;}
.ye{bottom:475.010451pt;}
.y61{bottom:479.312258pt;}
.yc9{bottom:481.896973pt;}
.yb2{bottom:485.654082pt;}
.y88{bottom:486.417954pt;}
.yd{bottom:489.223142pt;}
.yc8{bottom:492.233239pt;}
.y2c{bottom:492.775342pt;}
.y60{bottom:493.524948pt;}
.yb1{bottom:499.866773pt;}
.y87{bottom:500.630645pt;}
.yc7{bottom:502.569506pt;}
.yc{bottom:503.434536pt;}
.y2b{bottom:506.988033pt;}
.y5f{bottom:507.737639pt;}
.yc6{bottom:512.905772pt;}
.yb0{bottom:514.078167pt;}
.y86{bottom:514.843336pt;}
.yb{bottom:517.647226pt;}
.y2a{bottom:521.200723pt;}
.y5e{bottom:521.950329pt;}
.y10a{bottom:523.242038pt;}
.y82{bottom:525.502529pt;}
.yc5{bottom:526.795535pt;}
.yaf{bottom:528.290857pt;}
.y85{bottom:529.056026pt;}
.y109{bottom:533.578305pt;}
.ya{bottom:535.413414pt;}
.y5d{bottom:536.163020pt;}
.yae{bottom:542.503548pt;}
.y84{bottom:543.268717pt;}
.y108{bottom:543.914571pt;}
.y5c{bottom:550.375711pt;}
.y81{bottom:553.604983pt;}
.y107{bottom:554.250838pt;}
.yad{bottom:556.716238pt;}
.y9{bottom:557.572190pt;}
.y83{bottom:561.034904pt;}
.y5b{bottom:564.587104pt;}
.y80{bottom:567.817674pt;}
.yac{bottom:570.928929pt;}
.y106{bottom:574.924668pt;}
.y5a{bottom:578.799795pt;}
.y7f{bottom:582.030364pt;}
.yab{bottom:585.141619pt;}
.y105{bottom:585.260934pt;}
.y59{bottom:593.012485pt;}
.y104{bottom:595.597200pt;}
.y7e{bottom:596.243055pt;}
.yaa{bottom:599.354310pt;}
.y103{bottom:605.933467pt;}
.y58{bottom:607.225176pt;}
.y7d{bottom:610.455745pt;}
.ya9{bottom:613.567001pt;}
.y102{bottom:616.269733pt;}
.y57{bottom:621.437866pt;}
.y7c{bottom:624.668436pt;}
.y101{bottom:626.606000pt;}
.ya8{bottom:627.779691pt;}
.y56{bottom:635.650557pt;}
.y100{bottom:636.942266pt;}
.y7b{bottom:638.881127pt;}
.ya7{bottom:641.992382pt;}
.yff{bottom:647.278533pt;}
.y55{bottom:649.863248pt;}
.y7a{bottom:653.093817pt;}
.ya6{bottom:656.203775pt;}
.yfe{bottom:657.614799pt;}
.y54{bottom:664.075938pt;}
.y79{bottom:667.305211pt;}
.yfd{bottom:667.952362pt;}
.ya5{bottom:670.416466pt;}
.y53{bottom:678.288629pt;}
.y78{bottom:681.517901pt;}
.ya4{bottom:684.629157pt;}
.yfc{bottom:688.624895pt;}
.y52{bottom:692.501319pt;}
.y77{bottom:695.730592pt;}
.ya3{bottom:698.841847pt;}
.yfb{bottom:698.961162pt;}
.y51{bottom:706.714010pt;}
.yfa{bottom:709.297428pt;}
.y76{bottom:709.943283pt;}
.ya2{bottom:713.054538pt;}
.yf9{bottom:719.633694pt;}
.y50{bottom:720.925404pt;}
.y75{bottom:724.155973pt;}
.ya1{bottom:727.267228pt;}
.yf8{bottom:729.969961pt;}
.y4f{bottom:735.138094pt;}
.y74{bottom:738.368664pt;}
.yf7{bottom:740.306227pt;}
.ya0{bottom:741.479919pt;}
.y4e{bottom:749.350785pt;}
.yf6{bottom:750.642494pt;}
.y73{bottom:752.581354pt;}
.y9f{bottom:755.692609pt;}
.yf5{bottom:760.980057pt;}
.y4d{bottom:763.563475pt;}
.y9e{bottom:769.905300pt;}
.y72{bottom:770.347542pt;}
.yf4{bottom:771.316324pt;}
.y4c{bottom:777.776166pt;}
.yf3{bottom:781.652590pt;}
.y9d{bottom:784.117991pt;}
.y8{bottom:784.378667pt;}
.y71{bottom:787.143650pt;}
.y4b{bottom:791.988856pt;}
.y7{bottom:799.883066pt;}
.y9c{bottom:801.882881pt;}
.yf2{bottom:802.325123pt;}
.y70{bottom:803.939759pt;}
.y4a{bottom:806.201547pt;}
.yf1{bottom:812.661389pt;}
.y6{bottom:815.387466pt;}
.y9b{bottom:818.680287pt;}
.y49{bottom:820.414238pt;}
.y6f{bottom:820.737165pt;}
.yf0{bottom:822.997656pt;}
.y5{bottom:830.891866pt;}
.yef{bottom:833.333922pt;}
.y48{bottom:834.626928pt;}
.yee{bottom:843.670189pt;}
.yed{bottom:843.671485pt;}
.y4{bottom:846.396265pt;}
.y47{bottom:848.839619pt;}
.yec{bottom:854.007752pt;}
.y46{bottom:863.051012pt;}
.yeb{bottom:864.344018pt;}
.yea{bottom:874.680285pt;}
.y45{bottom:877.263703pt;}
.y3{bottom:877.285750pt;}
.ye9{bottom:885.016551pt;}
.y44{bottom:891.476393pt;}
.ye8{bottom:895.352818pt;}
.y2{bottom:903.126416pt;}
.y43{bottom:905.689084pt;}
.y42{bottom:939.800060pt;}
.he{height:21.489457pt;}
.hd{height:25.251680pt;}
.ha{height:25.324034pt;}
.h9{height:25.613452pt;}
.hf{height:26.711255pt;}
.hc{height:29.272674pt;}
.hb{height:29.768821pt;}
.h8{height:32.931896pt;}
.h6{height:33.490064pt;}
.h5{height:36.590750pt;}
.h7{height:40.746169pt;}
.h4{height:43.909194pt;}
.h3{height:62.335853pt;}
.h2{height:1027.142133pt;}
.h0{height:1122.519733pt;}
.h1{height:1122.666667pt;}
.w0{width:793.700800pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x23{left:49.751550pt;}
.x1{left:69.780822pt;}
.x20{left:73.976283pt;}
.x1e{left:82.691428pt;}
.x1f{left:85.597774pt;}
.x21{left:89.789344pt;}
.x12{left:91.191289pt;}
.x5{left:97.946824pt;}
.x1d{left:101.915328pt;}
.x4{left:130.378319pt;}
.x7{left:132.205646pt;}
.x3{left:137.253168pt;}
.x6{left:154.648443pt;}
.x10{left:212.632693pt;}
.x2{left:285.428800pt;}
.x9{left:295.722269pt;}
.xb{left:341.931994pt;}
.x8{left:350.145240pt;}
.xa{left:368.212308pt;}
.x24{left:392.335883pt;}
.x11{left:412.354780pt;}
.x17{left:427.186090pt;}
.x22{left:432.373677pt;}
.x1b{left:467.230368pt;}
.x1c{left:482.034444pt;}
.xd{left:508.606560pt;}
.xf{left:545.448800pt;}
.xc{left:555.153478pt;}
.xe{left:581.096599pt;}
.x18{left:586.875570pt;}
.x13{left:588.734023pt;}
.x19{left:601.706881pt;}
.x14{left:604.224157pt;}
.x15{left:666.093909pt;}
.x16{left:681.584043pt;}
.x1a{left:712.022208pt;}
}




    .paper-inline-ad { box-sizing: border-box; margin: 13px auto; max-width: 100%; min-height: 120px; background: #fff; border: 1px solid #e5e7eb; overflow: hidden; }
    .paper-inline-ad-label { padding: 6px 10px 0 10px; font: 10px system-ui, sans-serif; color: #9ca3af; text-transform: uppercase; letter-spacing: .04em; }
    .paper-inline-ad-slot { min-height: 100px; }
    .paper-inline-ad--internal { padding: 0; }
    .paper-internal-promo { padding: 14px 16px 16px 16px; font: 13px system-ui, sans-serif; line-height: 1.45; color: #374151; }
    .paper-internal-promo-title { font-size: 17px; font-weight: 800; color: #111827; margin-bottom: 7px; }
    .paper-internal-promo-body { margin-bottom: 12px; }
    .paper-internal-promo-actions { display: flex; flex-wrap: wrap; gap: 8px; }
    .paper-internal-promo-actions a { display: inline-block; padding: 7px 10px; border: 1px solid #d1d5db; border-radius: 8px; text-decoration: none; color: #111827; background: #f9fafb; font-weight: 700; }
  