
    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_85f2bdc307c1d0db4facf035.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.000000;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_617cea95e32069194b6b7700.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.000000;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_b85950ca2af61e95344d8e65.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.905000;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_d94d0f00080c7083a95a8d5f.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.156000;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_11d6d4e754ec1eeb257a08a2.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.001000;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;}
.m5{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);}
.m1f{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);}
.m13{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);}
.m1{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);}
.m22{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);}
.m1e{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);}
.mb{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);}
.m17{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);}
.m25{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);}
.m9{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);}
.m11{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);}
.m1d{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);}
.m10{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);}
.m20{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);}
.mc{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);}
.mf{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);}
.m24{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);}
.md{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);}
.me{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);}
.m12{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);}
.m0{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);}
.m1a{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);}
.m1b{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);}
.m8{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);}
.ma{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);}
.m21{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);}
.m23{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);}
.m15{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);}
.m27{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);}
.m28{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);}
.m3{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);}
.m19{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);}
.m14{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);}
.m26{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);}
.m1c{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);}
.m16{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);}
.m4{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);}
.m2{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);}
.m6{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-26.040000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:26.040000px;}
.ls1{letter-spacing:0.000000px;}
.ls0{letter-spacing:4.015609px;}
.ls2{letter-spacing:23.932832px;}
.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;}
}
.ws4{word-spacing:-86.077200px;}
.ws1e{word-spacing:-71.731020px;}
.ws2e{word-spacing:-55.735003px;}
.ws35{word-spacing:-55.089423px;}
.ws5d{word-spacing:-54.945961px;}
.ws22{word-spacing:-54.587306px;}
.ws4c{word-spacing:-54.443844px;}
.ws68{word-spacing:-54.372113px;}
.ws7c{word-spacing:-54.156920px;}
.ws4a{word-spacing:-53.941727px;}
.ws5{word-spacing:-53.798250px;}
.ws34{word-spacing:-53.583072px;}
.ws1c{word-spacing:-53.439610px;}
.ws11{word-spacing:-53.367879px;}
.ws3{word-spacing:-53.367864px;}
.ws15{word-spacing:-53.224417px;}
.ws64{word-spacing:-53.009224px;}
.ws86{word-spacing:-52.794031px;}
.ws87{word-spacing:-52.650569px;}
.ws3f{word-spacing:-52.435376px;}
.ws6e{word-spacing:-52.004989px;}
.ws84{word-spacing:-51.969503px;}
.ws29{word-spacing:-51.646334px;}
.ws5f{word-spacing:-51.431141px;}
.ws77{word-spacing:-51.287679px;}
.ws40{word-spacing:-51.215948px;}
.ws17{word-spacing:-51.144217px;}
.ws32{word-spacing:-51.072486px;}
.ws75{word-spacing:-50.785562px;}
.ws28{word-spacing:-50.713831px;}
.ws83{word-spacing:-50.570369px;}
.ws70{word-spacing:-50.355176px;}
.ws54{word-spacing:-50.283445px;}
.ws76{word-spacing:-50.211714px;}
.ws26{word-spacing:-50.139983px;}
.ws16{word-spacing:-50.068252px;}
.ws57{word-spacing:-49.996521px;}
.ws69{word-spacing:-49.924790px;}
.ws78{word-spacing:-49.853059px;}
.ws33{word-spacing:-49.781328px;}
.ws2a{word-spacing:-49.709597px;}
.ws61{word-spacing:-49.637866px;}
.ws74{word-spacing:-49.566135px;}
.ws43{word-spacing:-49.350942px;}
.ws60{word-spacing:-49.279211px;}
.ws20{word-spacing:-49.207480px;}
.ws7a{word-spacing:-48.992287px;}
.wse{word-spacing:-48.848825px;}
.ws1a{word-spacing:-48.777094px;}
.wsb{word-spacing:-48.705363px;}
.ws18{word-spacing:-48.633632px;}
.ws25{word-spacing:-48.561901px;}
.ws41{word-spacing:-48.490170px;}
.ws19{word-spacing:-48.418439px;}
.ws6{word-spacing:-48.346707px;}
.ws88{word-spacing:-48.345243px;}
.ws82{word-spacing:-48.343182px;}
.ws1d{word-spacing:-48.343048px;}
.ws2b{word-spacing:-48.274976px;}
.ws21{word-spacing:-48.203245px;}
.wsf{word-spacing:-48.131514px;}
.ws24{word-spacing:-48.059783px;}
.ws1b{word-spacing:-47.988052px;}
.ws49{word-spacing:-47.916321px;}
.ws81{word-spacing:-47.864424px;}
.wsc{word-spacing:-47.844590px;}
.ws23{word-spacing:-47.820660px;}
.ws3d{word-spacing:-47.772859px;}
.ws65{word-spacing:-47.701128px;}
.ws6d{word-spacing:-47.629397px;}
.ws6b{word-spacing:-47.557666px;}
.ws55{word-spacing:-47.270742px;}
.ws37{word-spacing:-47.199011px;}
.ws80{word-spacing:-46.983818px;}
.ws4f{word-spacing:-46.912087px;}
.ws39{word-spacing:-46.840356px;}
.ws50{word-spacing:-46.696894px;}
.ws31{word-spacing:-46.625163px;}
.ws3a{word-spacing:-46.553432px;}
.ws38{word-spacing:-46.481701px;}
.ws67{word-spacing:-46.338239px;}
.ws5e{word-spacing:-46.266508px;}
.ws45{word-spacing:-46.194777px;}
.ws51{word-spacing:-46.123046px;}
.ws3e{word-spacing:-46.051315px;}
.ws4e{word-spacing:-45.907853px;}
.ws6c{word-spacing:-45.836122px;}
.ws10{word-spacing:-45.620929px;}
.wsd{word-spacing:-45.477467px;}
.ws2f{word-spacing:-45.405736px;}
.ws5c{word-spacing:-45.262274px;}
.ws7e{word-spacing:-45.047081px;}
.ws27{word-spacing:-44.975350px;}
.ws12{word-spacing:-44.903619px;}
.ws13{word-spacing:-44.831887px;}
.ws48{word-spacing:-44.760156px;}
.ws44{word-spacing:-44.688425px;}
.ws71{word-spacing:-44.616694px;}
.ws6f{word-spacing:-44.473232px;}
.ws79{word-spacing:-44.401501px;}
.ws1f{word-spacing:-44.258039px;}
.ws7d{word-spacing:-44.114577px;}
.ws46{word-spacing:-44.042846px;}
.ws42{word-spacing:-43.971115px;}
.ws52{word-spacing:-43.827653px;}
.ws7b{word-spacing:-43.684191px;}
.ws73{word-spacing:-43.612460px;}
.ws36{word-spacing:-43.540729px;}
.ws4d{word-spacing:-43.397267px;}
.ws6a{word-spacing:-43.253805px;}
.ws85{word-spacing:-43.110343px;}
.ws30{word-spacing:-43.038612px;}
.ws2c{word-spacing:-42.966881px;}
.ws4b{word-spacing:-42.823419px;}
.ws3c{word-spacing:-42.679957px;}
.ws47{word-spacing:-42.608226px;}
.ws5a{word-spacing:-42.536495px;}
.ws66{word-spacing:-42.177840px;}
.ws58{word-spacing:-42.034378px;}
.ws8{word-spacing:-41.245336px;}
.ws89{word-spacing:-41.030143px;}
.ws72{word-spacing:-40.886681px;}
.ws63{word-spacing:-40.528026px;}
.ws2d{word-spacing:-40.312833px;}
.ws9{word-spacing:-39.954178px;}
.ws53{word-spacing:-39.882447px;}
.ws5b{word-spacing:-39.738985px;}
.ws59{word-spacing:-39.523792px;}
.ws56{word-spacing:-39.165137px;}
.ws3b{word-spacing:-38.519558px;}
.ws62{word-spacing:-38.447827px;}
.ws7f{word-spacing:-38.232634px;}
.wsa{word-spacing:-37.730517px;}
.ws1{word-spacing:-29.457527px;}
.ws0{word-spacing:-29.455138px;}
.ws7{word-spacing:-26.662391px;}
.ws2{word-spacing:-8.464257px;}
.ws14{word-spacing:0.000000px;}
._11{margin-left:-9.755419px;}
._6{margin-left:-7.125282px;}
._5{margin-left:-5.422864px;}
._1{margin-left:-4.208218px;}
._0{margin-left:-2.630136px;}
._3{margin-left:-1.338978px;}
._9{width:1.678503px;}
._4{width:2.840548px;}
._7{width:4.017217px;}
._c{width:5.683858px;}
._f{width:16.302071px;}
._10{width:20.747416px;}
._2{width:22.523531px;}
._a{width:23.934249px;}
._b{width:25.034107px;}
._d{width:28.783269px;}
._8{width:31.523393px;}
._e{width:35.862963px;}
.fc2{color:rgb(0,0,0);}
.fc1{color:rgb(255,0,0);}
.fc0{color:rgb(0,0,255);}
.fs0{font-size:47.820660px;}
.fs3{font-size:50.211660px;}
.fs2{font-size:71.731020px;}
.fs1{font-size:86.077200px;}
.y0{bottom:0.000000px;}
.y21{bottom:57.723000px;}
.y20{bottom:71.919000px;}
.y7e{bottom:110.635500px;}
.y1f{bottom:110.734500px;}
.y95{bottom:122.217000px;}
.yaa{bottom:122.592000px;}
.y3c{bottom:131.184000px;}
.yb7{bottom:133.798500px;}
.y52{bottom:137.161500px;}
.y7d{bottom:143.139000px;}
.y62{bottom:146.128500px;}
.y1e{bottom:152.203500px;}
.y94{bottom:154.720500px;}
.ya9{bottom:155.094000px;}
.y3b{bottom:163.687500px;}
.y51{bottom:169.665000px;}
.yb6{bottom:175.269000px;}
.y7c{bottom:175.642500px;}
.y61{bottom:178.630500px;}
.y1d{bottom:184.707000px;}
.y93{bottom:187.224000px;}
.ya8{bottom:187.597500px;}
.y50{bottom:202.168500px;}
.y3a{bottom:205.156500px;}
.yb5{bottom:207.772500px;}
.y7b{bottom:208.146000px;}
.y60{bottom:211.134000px;}
.y1c{bottom:217.210500px;}
.ya7{bottom:220.101000px;}
.y92{bottom:228.693000px;}
.yab{bottom:234.670500px;}
.y39{bottom:237.660000px;}
.y7a{bottom:240.648000px;}
.y4f{bottom:243.637500px;}
.yb4{bottom:249.241500px;}
.y1b{bottom:249.714000px;}
.ya6{bottom:252.603000px;}
.y91{bottom:261.196500px;}
.y38{bottom:270.163500px;}
.y79{bottom:273.151500px;}
.y4e{bottom:276.141000px;}
.yb3{bottom:281.745000px;}
.y1a{bottom:282.216000px;}
.y5f{bottom:285.106500px;}
.y90{bottom:293.700000px;}
.y37{bottom:302.665500px;}
.y4d{bottom:308.643000px;}
.y78{bottom:314.620500px;}
.y19{bottom:314.719500px;}
.y5e{bottom:317.610000px;}
.yb2{bottom:323.214000px;}
.y8f{bottom:326.202000px;}
.ya5{bottom:326.577000px;}
.y36{bottom:335.169000px;}
.y4c{bottom:341.146500px;}
.yd4{bottom:343.762500px;}
.y77{bottom:347.124000px;}
.y18{bottom:347.223000px;}
.y5d{bottom:350.113500px;}
.yb1{bottom:355.717500px;}
.yc5{bottom:358.705500px;}
.ya4{bottom:359.079000px;}
.y8e{bottom:367.672500px;}
.y4b{bottom:373.650000px;}
.yd3{bottom:376.264500px;}
.y35{bottom:376.638000px;}
.y76{bottom:379.627500px;}
.y17{bottom:379.726500px;}
.y5c{bottom:382.615500px;}
.yc4{bottom:391.209000px;}
.ya3{bottom:391.582500px;}
.yb0{bottom:397.186500px;}
.y8d{bottom:400.176000px;}
.y4a{bottom:406.153500px;}
.y34{bottom:409.141500px;}
.y75{bottom:412.131000px;}
.y16{bottom:412.228500px;}
.y5b{bottom:415.119000px;}
.yd2{bottom:417.735000px;}
.yc3{bottom:423.712500px;}
.ya2{bottom:424.086000px;}
.yaf{bottom:429.690000px;}
.y8c{bottom:432.678000px;}
.y33{bottom:441.645000px;}
.y74{bottom:444.633000px;}
.y15{bottom:444.732000px;}
.y49{bottom:447.622500px;}
.yd1{bottom:450.237000px;}
.y8b{bottom:465.181500px;}
.ya1{bottom:465.555000px;}
.yae{bottom:471.159000px;}
.y32{bottom:474.148500px;}
.y14{bottom:477.235500px;}
.y48{bottom:480.126000px;}
.yd0{bottom:482.740500px;}
.y73{bottom:486.103500px;}
.y8a{bottom:497.685000px;}
.ya0{bottom:498.058500px;}
.yad{bottom:503.662500px;}
.y31{bottom:506.650500px;}
.y13{bottom:509.739000px;}
.y47{bottom:512.628000px;}
.y72{bottom:518.605500px;}
.yac{bottom:521.595000px;}
.ycf{bottom:524.209500px;}
.y89{bottom:530.188500px;}
.y9f{bottom:530.562000px;}
.y30{bottom:539.154000px;}
.y46{bottom:545.131500px;}
.y71{bottom:551.109000px;}
.y12{bottom:551.208000px;}
.y5a{bottom:554.098500px;}
.yce{bottom:556.713000px;}
.yc2{bottom:562.690500px;}
.y9e{bottom:563.064000px;}
.y2f{bottom:571.657500px;}
.y59{bottom:577.635000px;}
.y70{bottom:583.612500px;}
.y45{bottom:586.600500px;}
.yc1{bottom:595.194000px;}
.y9d{bottom:595.567500px;}
.ycd{bottom:598.183500px;}
.y11{bottom:599.187000px;}
.y88{bottom:604.161000px;}
.y2e{bottom:607.149000px;}
.y58{bottom:610.138500px;}
.y6f{bottom:616.116000px;}
.y44{bottom:619.104000px;}
.y9c{bottom:628.071000px;}
.y10{bottom:629.553000px;}
.yc0{bottom:630.685500px;}
.y87{bottom:636.663000px;}
.y57{bottom:642.640500px;}
.y2d{bottom:651.607500px;}
.yf{bottom:654.216000px;}
.y6e{bottom:657.585000px;}
.y9b{bottom:663.562500px;}
.y86{bottom:669.166500px;}
.ycc{bottom:672.156000px;}
.ybf{bottom:675.144000px;}
.y43{bottom:684.111000px;}
.ye{bottom:690.085500px;}
.y6d{bottom:690.088500px;}
.y2c{bottom:693.076500px;}
.y9a{bottom:696.066000px;}
.ycb{bottom:704.658000px;}
.ybe{bottom:707.647500px;}
.y85{bottom:710.635500px;}
.y42{bottom:716.613000px;}
.y6c{bottom:722.592000px;}
.yd{bottom:722.671500px;}
.y2b{bottom:725.580000px;}
.y99{bottom:728.569500px;}
.ybd{bottom:740.151000px;}
.y84{bottom:746.128500px;}
.y56{bottom:749.116500px;}
.yc{bottom:753.540000px;}
.y6b{bottom:755.094000px;}
.y2a{bottom:758.083500px;}
.y98{bottom:761.071500px;}
.ybc{bottom:772.653000px;}
.yca{bottom:778.630500px;}
.y55{bottom:781.620000px;}
.y6a{bottom:787.597500px;}
.yb{bottom:789.426000px;}
.y29{bottom:790.587000px;}
.y97{bottom:793.575000px;}
.yc9{bottom:811.134000px;}
.y54{bottom:814.123500px;}
.y69{bottom:820.101000px;}
.y28{bottom:823.089000px;}
.ya{bottom:825.115500px;}
.y96{bottom:826.078500px;}
.y53{bottom:846.625500px;}
.y83{bottom:849.615000px;}
.yc8{bottom:852.603000px;}
.y27{bottom:855.592500px;}
.y9{bottom:855.984000px;}
.y68{bottom:861.570000px;}
.ybb{bottom:879.129000px;}
.y82{bottom:882.118500px;}
.yc7{bottom:885.106500px;}
.y26{bottom:888.096000px;}
.y8{bottom:891.672000px;}
.y67{bottom:894.073500px;}
.y41{bottom:897.061500px;}
.yba{bottom:911.632500px;}
.y81{bottom:914.620500px;}
.yc6{bottom:917.610000px;}
.y25{bottom:920.598000px;}
.y7{bottom:924.259500px;}
.y66{bottom:926.577000px;}
.y40{bottom:929.565000px;}
.yb9{bottom:944.136000px;}
.y80{bottom:950.113500px;}
.y24{bottom:953.101500px;}
.y65{bottom:959.079000px;}
.y3f{bottom:962.068500px;}
.y6{bottom:969.913500px;}
.yb8{bottom:976.638000px;}
.y7f{bottom:982.615500px;}
.y23{bottom:985.605000px;}
.y64{bottom:991.582500px;}
.y3e{bottom:994.572000px;}
.y22{bottom:1018.108500px;}
.y5{bottom:1019.229000px;}
.y63{bottom:1024.086000px;}
.y3d{bottom:1027.074000px;}
.y4{bottom:1059.577500px;}
.y3{bottom:1094.526000px;}
.y2{bottom:1108.722000px;}
.y1{bottom:1122.919500px;}
.h1{height:35.865495px;}
.h4{height:38.876573px;}
.h5{height:50.498638px;}
.h2{height:60.598349px;}
.h3{height:64.916573px;}
.h0{height:1188.000000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x12{left:104.254500px;}
.x4{left:106.299000px;}
.x13{left:128.500500px;}
.x11{left:151.131000px;}
.x6{left:158.247000px;}
.x14{left:160.299000px;}
.xf{left:293.167500px;}
.xe{left:349.507500px;}
.x5{left:408.913500px;}
.x9{left:515.344500px;}
.xb{left:516.652500px;}
.xc{left:606.160500px;}
.x3{left:616.269000px;}
.xa{left:629.998500px;}
.x7{left:638.835000px;}
.x2{left:648.775500px;}
.xd{left:657.945000px;}
.x8{left:675.018000px;}
.x1{left:692.794500px;}
.x10{left:785.340000px;}
@media print{
.v2{vertical-align:-23.146667pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:23.146667pt;}
.ls1{letter-spacing:0.000000pt;}
.ls0{letter-spacing:3.569430pt;}
.ls2{letter-spacing:21.273629pt;}
.ws4{word-spacing:-76.513067pt;}
.ws1e{word-spacing:-63.760907pt;}
.ws2e{word-spacing:-49.542224pt;}
.ws35{word-spacing:-48.968376pt;}
.ws5d{word-spacing:-48.840855pt;}
.ws22{word-spacing:-48.522050pt;}
.ws4c{word-spacing:-48.394528pt;}
.ws68{word-spacing:-48.330767pt;}
.ws7c{word-spacing:-48.139485pt;}
.ws4a{word-spacing:-47.948202pt;}
.ws5{word-spacing:-47.820667pt;}
.ws34{word-spacing:-47.629397pt;}
.ws1c{word-spacing:-47.501875pt;}
.ws11{word-spacing:-47.438115pt;}
.ws3{word-spacing:-47.438101pt;}
.ws15{word-spacing:-47.310593pt;}
.ws64{word-spacing:-47.119310pt;}
.ws86{word-spacing:-46.928027pt;}
.ws87{word-spacing:-46.800505pt;}
.ws3f{word-spacing:-46.609223pt;}
.ws6e{word-spacing:-46.226657pt;}
.ws84{word-spacing:-46.195113pt;}
.ws29{word-spacing:-45.907853pt;}
.ws5f{word-spacing:-45.716570pt;}
.ws77{word-spacing:-45.589048pt;}
.ws40{word-spacing:-45.525287pt;}
.ws17{word-spacing:-45.461526pt;}
.ws32{word-spacing:-45.397766pt;}
.ws75{word-spacing:-45.142722pt;}
.ws28{word-spacing:-45.078961pt;}
.ws83{word-spacing:-44.951439pt;}
.ws70{word-spacing:-44.760156pt;}
.ws54{word-spacing:-44.696396pt;}
.ws76{word-spacing:-44.632635pt;}
.ws26{word-spacing:-44.568874pt;}
.ws16{word-spacing:-44.505113pt;}
.ws57{word-spacing:-44.441352pt;}
.ws69{word-spacing:-44.377591pt;}
.ws78{word-spacing:-44.313830pt;}
.ws33{word-spacing:-44.250069pt;}
.ws2a{word-spacing:-44.186308pt;}
.ws61{word-spacing:-44.122547pt;}
.ws74{word-spacing:-44.058787pt;}
.ws43{word-spacing:-43.867504pt;}
.ws60{word-spacing:-43.803743pt;}
.ws20{word-spacing:-43.739982pt;}
.ws7a{word-spacing:-43.548699pt;}
.wse{word-spacing:-43.421177pt;}
.ws1a{word-spacing:-43.357417pt;}
.wsb{word-spacing:-43.293656pt;}
.ws18{word-spacing:-43.229895pt;}
.ws25{word-spacing:-43.166134pt;}
.ws41{word-spacing:-43.102373pt;}
.ws19{word-spacing:-43.038612pt;}
.ws6{word-spacing:-42.974851pt;}
.ws88{word-spacing:-42.973549pt;}
.ws82{word-spacing:-42.971717pt;}
.ws1d{word-spacing:-42.971599pt;}
.ws2b{word-spacing:-42.911090pt;}
.ws21{word-spacing:-42.847329pt;}
.wsf{word-spacing:-42.783568pt;}
.ws24{word-spacing:-42.719807pt;}
.ws1b{word-spacing:-42.656047pt;}
.ws49{word-spacing:-42.592286pt;}
.ws81{word-spacing:-42.546155pt;}
.wsc{word-spacing:-42.528525pt;}
.ws23{word-spacing:-42.507253pt;}
.ws3d{word-spacing:-42.464764pt;}
.ws65{word-spacing:-42.401003pt;}
.ws6d{word-spacing:-42.337242pt;}
.ws6b{word-spacing:-42.273481pt;}
.ws55{word-spacing:-42.018437pt;}
.ws37{word-spacing:-41.954677pt;}
.ws80{word-spacing:-41.763394pt;}
.ws4f{word-spacing:-41.699633pt;}
.ws39{word-spacing:-41.635872pt;}
.ws50{word-spacing:-41.508350pt;}
.ws31{word-spacing:-41.444589pt;}
.ws3a{word-spacing:-41.380828pt;}
.ws38{word-spacing:-41.317068pt;}
.ws67{word-spacing:-41.189546pt;}
.ws5e{word-spacing:-41.125785pt;}
.ws45{word-spacing:-41.062024pt;}
.ws51{word-spacing:-40.998263pt;}
.ws3e{word-spacing:-40.934502pt;}
.ws4e{word-spacing:-40.806980pt;}
.ws6c{word-spacing:-40.743219pt;}
.ws10{word-spacing:-40.551937pt;}
.wsd{word-spacing:-40.424415pt;}
.ws2f{word-spacing:-40.360654pt;}
.ws5c{word-spacing:-40.233132pt;}
.ws7e{word-spacing:-40.041849pt;}
.ws27{word-spacing:-39.978088pt;}
.ws12{word-spacing:-39.914328pt;}
.ws13{word-spacing:-39.850567pt;}
.ws48{word-spacing:-39.786806pt;}
.ws44{word-spacing:-39.723045pt;}
.ws71{word-spacing:-39.659284pt;}
.ws6f{word-spacing:-39.531762pt;}
.ws79{word-spacing:-39.468001pt;}
.ws1f{word-spacing:-39.340479pt;}
.ws7d{word-spacing:-39.212958pt;}
.ws46{word-spacing:-39.149197pt;}
.ws42{word-spacing:-39.085436pt;}
.ws52{word-spacing:-38.957914pt;}
.ws7b{word-spacing:-38.830392pt;}
.ws73{word-spacing:-38.766631pt;}
.ws36{word-spacing:-38.702870pt;}
.ws4d{word-spacing:-38.575349pt;}
.ws6a{word-spacing:-38.447827pt;}
.ws85{word-spacing:-38.320305pt;}
.ws30{word-spacing:-38.256544pt;}
.ws2c{word-spacing:-38.192783pt;}
.ws4b{word-spacing:-38.065261pt;}
.ws3c{word-spacing:-37.937739pt;}
.ws47{word-spacing:-37.873979pt;}
.ws5a{word-spacing:-37.810218pt;}
.ws66{word-spacing:-37.491413pt;}
.ws58{word-spacing:-37.363891pt;}
.ws8{word-spacing:-36.662521pt;}
.ws89{word-spacing:-36.471239pt;}
.ws72{word-spacing:-36.343717pt;}
.ws63{word-spacing:-36.024912pt;}
.ws2d{word-spacing:-35.833630pt;}
.ws9{word-spacing:-35.514825pt;}
.ws53{word-spacing:-35.451064pt;}
.ws5b{word-spacing:-35.323542pt;}
.ws59{word-spacing:-35.132260pt;}
.ws56{word-spacing:-34.813455pt;}
.ws3b{word-spacing:-34.239607pt;}
.ws62{word-spacing:-34.175846pt;}
.ws7f{word-spacing:-33.984563pt;}
.wsa{word-spacing:-33.538237pt;}
.ws1{word-spacing:-26.184468pt;}
.ws0{word-spacing:-26.182345pt;}
.ws7{word-spacing:-23.699904pt;}
.ws2{word-spacing:-7.523784pt;}
.ws14{word-spacing:0.000000pt;}
._11{margin-left:-8.671483pt;}
._6{margin-left:-6.333584pt;}
._5{margin-left:-4.820323pt;}
._1{margin-left:-3.740638pt;}
._0{margin-left:-2.337899pt;}
._3{margin-left:-1.190203pt;}
._9{width:1.492003pt;}
._4{width:2.524931pt;}
._7{width:3.570860pt;}
._c{width:5.052318pt;}
._f{width:14.490730pt;}
._10{width:18.442148pt;}
._2{width:20.020916pt;}
._a{width:21.274888pt;}
._b{width:22.252539pt;}
._d{width:25.585128pt;}
._8{width:28.020794pt;}
._e{width:31.878189pt;}
.fs0{font-size:42.507253pt;}
.fs3{font-size:44.632587pt;}
.fs2{font-size:63.760907pt;}
.fs1{font-size:76.513067pt;}
.y0{bottom:0.000000pt;}
.y21{bottom:51.309333pt;}
.y20{bottom:63.928000pt;}
.y7e{bottom:98.342667pt;}
.y1f{bottom:98.430667pt;}
.y95{bottom:108.637333pt;}
.yaa{bottom:108.970667pt;}
.y3c{bottom:116.608000pt;}
.yb7{bottom:118.932000pt;}
.y52{bottom:121.921333pt;}
.y7d{bottom:127.234667pt;}
.y62{bottom:129.892000pt;}
.y1e{bottom:135.292000pt;}
.y94{bottom:137.529333pt;}
.ya9{bottom:137.861333pt;}
.y3b{bottom:145.500000pt;}
.y51{bottom:150.813333pt;}
.yb6{bottom:155.794667pt;}
.y7c{bottom:156.126667pt;}
.y61{bottom:158.782667pt;}
.y1d{bottom:164.184000pt;}
.y93{bottom:166.421333pt;}
.ya8{bottom:166.753333pt;}
.y50{bottom:179.705333pt;}
.y3a{bottom:182.361333pt;}
.yb5{bottom:184.686667pt;}
.y7b{bottom:185.018667pt;}
.y60{bottom:187.674667pt;}
.y1c{bottom:193.076000pt;}
.ya7{bottom:195.645333pt;}
.y92{bottom:203.282667pt;}
.yab{bottom:208.596000pt;}
.y39{bottom:211.253333pt;}
.y7a{bottom:213.909333pt;}
.y4f{bottom:216.566667pt;}
.yb4{bottom:221.548000pt;}
.y1b{bottom:221.968000pt;}
.ya6{bottom:224.536000pt;}
.y91{bottom:232.174667pt;}
.y38{bottom:240.145333pt;}
.y79{bottom:242.801333pt;}
.y4e{bottom:245.458667pt;}
.yb3{bottom:250.440000pt;}
.y1a{bottom:250.858667pt;}
.y5f{bottom:253.428000pt;}
.y90{bottom:261.066667pt;}
.y37{bottom:269.036000pt;}
.y4d{bottom:274.349333pt;}
.y78{bottom:279.662667pt;}
.y19{bottom:279.750667pt;}
.y5e{bottom:282.320000pt;}
.yb2{bottom:287.301333pt;}
.y8f{bottom:289.957333pt;}
.ya5{bottom:290.290667pt;}
.y36{bottom:297.928000pt;}
.y4c{bottom:303.241333pt;}
.yd4{bottom:305.566667pt;}
.y77{bottom:308.554667pt;}
.y18{bottom:308.642667pt;}
.y5d{bottom:311.212000pt;}
.yb1{bottom:316.193333pt;}
.yc5{bottom:318.849333pt;}
.ya4{bottom:319.181333pt;}
.y8e{bottom:326.820000pt;}
.y4b{bottom:332.133333pt;}
.yd3{bottom:334.457333pt;}
.y35{bottom:334.789333pt;}
.y76{bottom:337.446667pt;}
.y17{bottom:337.534667pt;}
.y5c{bottom:340.102667pt;}
.yc4{bottom:347.741333pt;}
.ya3{bottom:348.073333pt;}
.yb0{bottom:353.054667pt;}
.y8d{bottom:355.712000pt;}
.y4a{bottom:361.025333pt;}
.y34{bottom:363.681333pt;}
.y75{bottom:366.338667pt;}
.y16{bottom:366.425333pt;}
.y5b{bottom:368.994667pt;}
.yd2{bottom:371.320000pt;}
.yc3{bottom:376.633333pt;}
.ya2{bottom:376.965333pt;}
.yaf{bottom:381.946667pt;}
.y8c{bottom:384.602667pt;}
.y33{bottom:392.573333pt;}
.y74{bottom:395.229333pt;}
.y15{bottom:395.317333pt;}
.y49{bottom:397.886667pt;}
.yd1{bottom:400.210667pt;}
.y8b{bottom:413.494667pt;}
.ya1{bottom:413.826667pt;}
.yae{bottom:418.808000pt;}
.y32{bottom:421.465333pt;}
.y14{bottom:424.209333pt;}
.y48{bottom:426.778667pt;}
.yd0{bottom:429.102667pt;}
.y73{bottom:432.092000pt;}
.y8a{bottom:442.386667pt;}
.ya0{bottom:442.718667pt;}
.yad{bottom:447.700000pt;}
.y31{bottom:450.356000pt;}
.y13{bottom:453.101333pt;}
.y47{bottom:455.669333pt;}
.y72{bottom:460.982667pt;}
.yac{bottom:463.640000pt;}
.ycf{bottom:465.964000pt;}
.y89{bottom:471.278667pt;}
.y9f{bottom:471.610667pt;}
.y30{bottom:479.248000pt;}
.y46{bottom:484.561333pt;}
.y71{bottom:489.874667pt;}
.y12{bottom:489.962667pt;}
.y5a{bottom:492.532000pt;}
.yce{bottom:494.856000pt;}
.yc2{bottom:500.169333pt;}
.y9e{bottom:500.501333pt;}
.y2f{bottom:508.140000pt;}
.y59{bottom:513.453333pt;}
.y70{bottom:518.766667pt;}
.y45{bottom:521.422667pt;}
.yc1{bottom:529.061333pt;}
.y9d{bottom:529.393333pt;}
.ycd{bottom:531.718667pt;}
.y11{bottom:532.610667pt;}
.y88{bottom:537.032000pt;}
.y2e{bottom:539.688000pt;}
.y58{bottom:542.345333pt;}
.y6f{bottom:547.658667pt;}
.y44{bottom:550.314667pt;}
.y9c{bottom:558.285333pt;}
.y10{bottom:559.602667pt;}
.yc0{bottom:560.609333pt;}
.y87{bottom:565.922667pt;}
.y57{bottom:571.236000pt;}
.y2d{bottom:579.206667pt;}
.yf{bottom:581.525333pt;}
.y6e{bottom:584.520000pt;}
.y9b{bottom:589.833333pt;}
.y86{bottom:594.814667pt;}
.ycc{bottom:597.472000pt;}
.ybf{bottom:600.128000pt;}
.y43{bottom:608.098667pt;}
.ye{bottom:613.409333pt;}
.y6d{bottom:613.412000pt;}
.y2c{bottom:616.068000pt;}
.y9a{bottom:618.725333pt;}
.ycb{bottom:626.362667pt;}
.ybe{bottom:629.020000pt;}
.y85{bottom:631.676000pt;}
.y42{bottom:636.989333pt;}
.y6c{bottom:642.304000pt;}
.yd{bottom:642.374667pt;}
.y2b{bottom:644.960000pt;}
.y99{bottom:647.617333pt;}
.ybd{bottom:657.912000pt;}
.y84{bottom:663.225333pt;}
.y56{bottom:665.881333pt;}
.yc{bottom:669.813333pt;}
.y6b{bottom:671.194667pt;}
.y2a{bottom:673.852000pt;}
.y98{bottom:676.508000pt;}
.ybc{bottom:686.802667pt;}
.yca{bottom:692.116000pt;}
.y55{bottom:694.773333pt;}
.y6a{bottom:700.086667pt;}
.yb{bottom:701.712000pt;}
.y29{bottom:702.744000pt;}
.y97{bottom:705.400000pt;}
.yc9{bottom:721.008000pt;}
.y54{bottom:723.665333pt;}
.y69{bottom:728.978667pt;}
.y28{bottom:731.634667pt;}
.ya{bottom:733.436000pt;}
.y96{bottom:734.292000pt;}
.y53{bottom:752.556000pt;}
.y83{bottom:755.213333pt;}
.yc8{bottom:757.869333pt;}
.y27{bottom:760.526667pt;}
.y9{bottom:760.874667pt;}
.y68{bottom:765.840000pt;}
.ybb{bottom:781.448000pt;}
.y82{bottom:784.105333pt;}
.yc7{bottom:786.761333pt;}
.y26{bottom:789.418667pt;}
.y8{bottom:792.597333pt;}
.y67{bottom:794.732000pt;}
.y41{bottom:797.388000pt;}
.yba{bottom:810.340000pt;}
.y81{bottom:812.996000pt;}
.yc6{bottom:815.653333pt;}
.y25{bottom:818.309333pt;}
.y7{bottom:821.564000pt;}
.y66{bottom:823.624000pt;}
.y40{bottom:826.280000pt;}
.yb9{bottom:839.232000pt;}
.y80{bottom:844.545333pt;}
.y24{bottom:847.201333pt;}
.y65{bottom:852.514667pt;}
.y3f{bottom:855.172000pt;}
.y6{bottom:862.145333pt;}
.yb8{bottom:868.122667pt;}
.y7f{bottom:873.436000pt;}
.y23{bottom:876.093333pt;}
.y64{bottom:881.406667pt;}
.y3e{bottom:884.064000pt;}
.y22{bottom:904.985333pt;}
.y5{bottom:905.981333pt;}
.y63{bottom:910.298667pt;}
.y3d{bottom:912.954667pt;}
.y4{bottom:941.846667pt;}
.y3{bottom:972.912000pt;}
.y2{bottom:985.530667pt;}
.y1{bottom:998.150667pt;}
.h1{height:31.880440pt;}
.h4{height:34.556954pt;}
.h5{height:44.887678pt;}
.h2{height:53.865199pt;}
.h3{height:57.703621pt;}
.h0{height:1056.000000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x12{left:92.670667pt;}
.x4{left:94.488000pt;}
.x13{left:114.222667pt;}
.x11{left:134.338667pt;}
.x6{left:140.664000pt;}
.x14{left:142.488000pt;}
.xf{left:260.593333pt;}
.xe{left:310.673333pt;}
.x5{left:363.478667pt;}
.x9{left:458.084000pt;}
.xb{left:459.246667pt;}
.xc{left:538.809333pt;}
.x3{left:547.794667pt;}
.xa{left:559.998667pt;}
.x7{left:567.853333pt;}
.x2{left:576.689333pt;}
.xd{left:584.840000pt;}
.x8{left:600.016000pt;}
.x1{left:615.817333pt;}
.x10{left:698.080000pt;}
}




    .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; }
  