
    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_844f4e4acd8baa085460185f.woff')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_6b55d91001110513f8eacd77.woff')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_65c7bfaa644e938d83c5d1b6.woff')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_be03dc40dc99ab005fd25f9b.woff')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_c0a800ac4d804b0169f43f76.woff')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_d89d604789e502bcf400d069.woff')format("woff");}.ff6{font-family:ff6;line-height:0.901000;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_0e230f7f0179d760dda7e2ae.woff')format("woff");}.ff7{font-family:ff7;line-height:0.705000;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);}
.me{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);}
.m1c{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);}
.m18{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);}
.m22{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);}
.m19{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);}
.m15{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);}
.mf{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);}
.m20{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);}
.m16{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);}
.m12{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.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);}
.mc{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);}
.m14{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);}
.md{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);}
.mb{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);}
.m1a{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);}
.m10{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);}
.m1d{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);}
.m7{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);}
.m4{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);}
.m13{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);}
.m1b{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);}
.m6{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);}
.m1f{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);}
.m11{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);}
.m21{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);}
.m9{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);}
.m3{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);}
.m17{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);}
.ma{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);}
.m8{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);}
.m1{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);}
.v0{vertical-align:0.000000px;}
.ls0{letter-spacing:0.000000px;}
.ls9{letter-spacing:20.094562px;}
.lsb{letter-spacing:21.600018px;}
.ls7{letter-spacing:21.665473px;}
.ls8{letter-spacing:21.730927px;}
.ls5{letter-spacing:21.796382px;}
.ls4{letter-spacing:21.861836px;}
.ls6{letter-spacing:23.105474px;}
.ls2{letter-spacing:24.021838px;}
.lsa{letter-spacing:26.050931px;}
.ls3{letter-spacing:30.305480px;}
.ls1{letter-spacing:32.727300px;}
.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;}
}
.ws7{word-spacing:-55.440046px;}
.ws9{word-spacing:-53.280044px;}
.ws8{word-spacing:-50.530951px;}
.ws5{word-spacing:-49.483678px;}
.ws22{word-spacing:-32.727300px;}
.ws6d{word-spacing:-22.811400px;}
.ws0{word-spacing:-22.687425px;}
.ws65{word-spacing:-17.803651px;}
.ws49{word-spacing:-17.410924px;}
.ws3d{word-spacing:-17.149105px;}
.ws6a{word-spacing:-17.018196px;}
.ws47{word-spacing:-16.560014px;}
.ws5d{word-spacing:-16.036377px;}
.ws38{word-spacing:-15.838205px;}
.ws1a{word-spacing:-15.752128px;}
.ws4d{word-spacing:-15.709104px;}
.ws41{word-spacing:-15.447286px;}
.ws5e{word-spacing:-15.316376px;}
.ws6b{word-spacing:-15.250922px;}
.ws39{word-spacing:-14.203648px;}
.ws25{word-spacing:-14.007284px;}
.ws44{word-spacing:-13.418193px;}
.ws40{word-spacing:-13.287284px;}
.ws42{word-spacing:-13.090920px;}
.ws59{word-spacing:-12.960011px;}
.ws5a{word-spacing:-12.698192px;}
.ws51{word-spacing:-12.632738px;}
.ws1b{word-spacing:-12.501829px;}
.ws68{word-spacing:-12.436374px;}
.ws67{word-spacing:-12.305465px;}
.ws4{word-spacing:-12.043646px;}
.wsa{word-spacing:-11.978192px;}
.ws2c{word-spacing:-11.389100px;}
.ws27{word-spacing:-11.323646px;}
.ws26{word-spacing:-11.258191px;}
.ws12{word-spacing:-11.192737px;}
.ws24{word-spacing:-11.127282px;}
.ws14{word-spacing:-11.061827px;}
.ws20{word-spacing:-10.996373px;}
.wse{word-spacing:-10.930918px;}
.wsd{word-spacing:-10.865464px;}
.ws2a{word-spacing:-10.800009px;}
.ws4e{word-spacing:-10.734554px;}
.ws3e{word-spacing:-10.669100px;}
.ws2e{word-spacing:-10.603645px;}
.ws50{word-spacing:-10.538191px;}
.ws17{word-spacing:-10.472736px;}
.ws2d{word-spacing:-10.407281px;}
.ws52{word-spacing:-10.145463px;}
.ws4a{word-spacing:-10.080008px;}
.ws13{word-spacing:-9.949099px;}
.ws5c{word-spacing:-9.818190px;}
.ws36{word-spacing:-9.621826px;}
.ws58{word-spacing:-9.556372px;}
.ws1c{word-spacing:-9.425462px;}
.ws15{word-spacing:-9.229099px;}
.ws4c{word-spacing:-9.163644px;}
.ws35{word-spacing:-8.770916px;}
.ws53{word-spacing:-8.574553px;}
.ws3b{word-spacing:-8.247280px;}
.ws31{word-spacing:-8.181825px;}
.ws29{word-spacing:-7.527279px;}
.ws19{word-spacing:-7.265461px;}
.ws33{word-spacing:-7.200006px;}
.ws57{word-spacing:-7.069097px;}
.ws5f{word-spacing:-6.676369px;}
.ws28{word-spacing:-6.414551px;}
.ws5b{word-spacing:-6.349096px;}
.ws32{word-spacing:-6.218187px;}
.ws2b{word-spacing:-6.152732px;}
.ws3a{word-spacing:-6.021823px;}
.ws43{word-spacing:-5.563641px;}
.ws11{word-spacing:-5.301823px;}
.ws16{word-spacing:-4.189094px;}
.ws48{word-spacing:-3.861821px;}
.ws37{word-spacing:-3.796367px;}
.ws6c{word-spacing:-3.665458px;}
.ws62{word-spacing:-3.600003px;}
.ws30{word-spacing:-3.534548px;}
.ws63{word-spacing:-3.338185px;}
.ws2f{word-spacing:-3.076366px;}
.ws61{word-spacing:-2.880002px;}
.ws4f{word-spacing:-2.225456px;}
.ws60{word-spacing:-1.898183px;}
.ws18{word-spacing:-1.440001px;}
.ws1f{word-spacing:-1.243637px;}
.ws54{word-spacing:-1.047274px;}
.ws55{word-spacing:-0.850910px;}
.ws69{word-spacing:-0.196364px;}
.ws23{word-spacing:-0.065455px;}
.ws2{word-spacing:0.000000px;}
.ws34{word-spacing:0.065455px;}
.wsf{word-spacing:1.243637px;}
.ws4b{word-spacing:2.160002px;}
.ws46{word-spacing:2.552729px;}
.ws56{word-spacing:3.665458px;}
.ws21{word-spacing:5.105459px;}
.ws6{word-spacing:6.218187px;}
.ws66{word-spacing:17.345469px;}
.ws1d{word-spacing:18.392743px;}
.ws45{word-spacing:21.010927px;}
.ws1e{word-spacing:21.076381px;}
.ws64{word-spacing:23.825474px;}
.ws3c{word-spacing:24.218202px;}
.ws1{word-spacing:27.975090px;}
.ws10{word-spacing:33.905483px;}
.wsc{word-spacing:70.690968px;}
.ws3f{word-spacing:226.407461px;}
.wsb{word-spacing:2058.481715px;}
.ws3{word-spacing:2137.971546px;}
._f{margin-left:-38.160032px;}
._21{margin-left:-36.392758px;}
._17{margin-left:-34.494574px;}
._9{margin-left:-32.727300px;}
._e{margin-left:-30.894571px;}
._20{margin-left:-10.865464px;}
._2{margin-left:-6.972253px;}
._1c{margin-left:-5.432732px;}
._0{margin-left:-3.843225px;}
._4{margin-left:-2.238007px;}
._1d{margin-left:-1.048166px;}
._29{width:1.255296px;}
._5{width:2.324084px;}
._1{width:3.719250px;}
._3c{width:5.610499px;}
._22{width:7.134551px;}
._48{width:10.080901px;}
._39{width:11.389993px;}
._d{width:15.970922px;}
._1e{width:18.352390px;}
._16{width:20.160017px;}
._12{width:21.861836px;}
._35{width:23.261485px;}
._34{width:24.506256px;}
._18{width:25.527294px;}
._43{width:27.143929px;}
._10{width:28.341842px;}
._a{width:29.454570px;}
._38{width:30.639258px;}
._7{width:32.007299px;}
._3b{width:34.048943px;}
._46{width:35.118865px;}
._44{width:36.773827px;}
._3d{width:38.203301px;}
._1f{width:39.712346px;}
._32{width:41.028376px;}
._6{width:42.218217px;}
._45{width:43.908378px;}
._47{width:45.537805px;}
._33{width:47.277277px;}
._11{width:48.698222px;}
._3a{width:50.535430px;}
._36{width:52.168208px;}
._37{width:54.851847px;}
._b{width:58.320049px;}
._31{width:60.623775px;}
._19{width:62.509143px;}
._13{width:64.112335px;}
._30{width:68.186250px;}
._42{width:70.917805px;}
._3{width:73.307016px;}
._14{width:91.047349px;}
._2c{width:118.747195px;}
._2b{width:121.639748px;}
._2a{width:149.421193px;}
._2d{width:157.352858px;}
._3f{width:164.152065px;}
._3e{width:183.293503px;}
._2e{width:223.134731px;}
._24{width:263.611668px;}
._2f{width:299.782068px;}
._28{width:340.769198px;}
._40{width:481.287674px;}
._41{width:513.033155px;}
._27{width:1122.864699px;}
._25{width:1166.741688px;}
._26{width:1207.060829px;}
._8{width:1410.886454px;}
._1a{width:1454.511499px;}
._15{width:1880.338504px;}
._c{width:1955.194357px;}
._1b{width:1958.630277px;}
._23{width:2048.467162px;}
.fc1{color:transparent;}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:65.454600px;}
.fs1{font-size:86.077200px;}
.fs0{font-size:123.975000px;}
.y0{bottom:0.000000px;}
.y22{bottom:175.056000px;}
.y5f{bottom:246.190500px;}
.y21{bottom:247.923000px;}
.y3f{bottom:249.967500px;}
.y83{bottom:256.435500px;}
.ybe{bottom:261.843000px;}
.y5e{bottom:266.514000px;}
.y82{bottom:276.759000px;}
.y9d{bottom:279.997500px;}
.yb8{bottom:281.566500px;}
.ybd{bottom:282.166500px;}
.y20{bottom:284.611500px;}
.y3e{bottom:284.937000px;}
.y5d{bottom:286.837500px;}
.y81{bottom:297.082500px;}
.yff{bottom:299.259000px;}
.y9c{bottom:300.322500px;}
.yb7{bottom:301.890000px;}
.ybc{bottom:302.491500px;}
.y5c{bottom:307.161000px;}
.y80{bottom:317.406000px;}
.yfe{bottom:319.582500px;}
.y3d{bottom:319.906500px;}
.y9b{bottom:320.646000px;}
.y1f{bottom:321.298500px;}
.yb6{bottom:322.213500px;}
.ybb{bottom:322.815000px;}
.y5b{bottom:327.484500px;}
.y7f{bottom:337.731000px;}
.yfd{bottom:339.906000px;}
.y3c{bottom:340.230000px;}
.y9a{bottom:340.969500px;}
.yb5{bottom:342.537000px;}
.y5a{bottom:347.808000px;}
.yd6{bottom:347.809500px;}
.y1e{bottom:357.985500px;}
.y7e{bottom:358.054500px;}
.y3b{bottom:360.553500px;}
.yb4{bottom:362.860500px;}
.y59{bottom:368.133000px;}
.y7d{bottom:378.378000px;}
.y3a{bottom:380.877000px;}
.yb3{bottom:383.184000px;}
.yfc{bottom:386.596500px;}
.y99{bottom:387.660000px;}
.y58{bottom:388.456500px;}
.y1d{bottom:394.672500px;}
.y7c{bottom:398.701500px;}
.yb2{bottom:403.509000px;}
.yd5{bottom:408.780000px;}
.y39{bottom:415.846500px;}
.y7b{bottom:419.025000px;}
.y57{bottom:423.193500px;}
.yd4{bottom:429.103500px;}
.y1c{bottom:431.361000px;}
.y4{bottom:434.581500px;}
.yb1{bottom:438.477000px;}
.y7a{bottom:439.350000px;}
.y56{bottom:443.517000px;}
.yfb{bottom:448.315500px;}
.y98{bottom:449.379000px;}
.yd3{bottom:449.427000px;}
.y1b{bottom:451.684500px;}
.y79{bottom:459.673500px;}
.y38{bottom:462.535500px;}
.yfa{bottom:468.639000px;}
.y97{bottom:469.702500px;}
.yd2{bottom:469.752000px;}
.y1a{bottom:472.008000px;}
.y55{bottom:478.252500px;}
.y78{bottom:479.997000px;}
.yb0{bottom:485.167500px;}
.yf9{bottom:488.964000px;}
.y96{bottom:490.027500px;}
.yd1{bottom:490.075500px;}
.y19{bottom:492.331500px;}
.y54{bottom:498.577500px;}
.y77{bottom:500.320500px;}
.yf8{bottom:509.287500px;}
.ye3{bottom:510.399000px;}
.y18{bottom:512.655000px;}
.y53{bottom:518.901000px;}
.y37{bottom:524.256000px;}
.yd0{bottom:524.472000px;}
.yf7{bottom:529.611000px;}
.ye2{bottom:530.722500px;}
.y17{bottom:532.980000px;}
.y95{bottom:536.716500px;}
.y52{bottom:539.224500px;}
.y36{bottom:544.579500px;}
.ycf{bottom:544.795500px;}
.yaf{bottom:546.886500px;}
.y76{bottom:547.011000px;}
.yf6{bottom:549.934500px;}
.ye1{bottom:551.046000px;}
.y16{bottom:553.303500px;}
.y51{bottom:559.548000px;}
.y35{bottom:564.903000px;}
.yce{bottom:565.119000px;}
.yae{bottom:567.211500px;}
.yf5{bottom:570.258000px;}
.ye0{bottom:571.371000px;}
.y15{bottom:573.627000px;}
.y50{bottom:579.871500px;}
.yad{bottom:587.535000px;}
.yf4{bottom:590.583000px;}
.ydf{bottom:591.694500px;}
.y94{bottom:598.437000px;}
.yac{bottom:607.858500px;}
.y75{bottom:608.730000px;}
.y14{bottom:610.314000px;}
.yf3{bottom:610.906500px;}
.y34{bottom:611.593500px;}
.ycd{bottom:611.809500px;}
.yde{bottom:612.018000px;}
.y4f{bottom:614.608500px;}
.y93{bottom:618.760500px;}
.yab{bottom:628.182000px;}
.y74{bottom:629.053500px;}
.yf2{bottom:631.230000px;}
.ydd{bottom:632.341500px;}
.y4e{bottom:634.932000px;}
.y92{bottom:639.084000px;}
.y13{bottom:647.002500px;}
.yaa{bottom:648.505500px;}
.yf1{bottom:651.553500px;}
.ydc{bottom:652.665000px;}
.y4d{bottom:655.257000px;}
.y91{bottom:659.407500px;}
.y73{bottom:664.023000px;}
.y12{bottom:667.326000px;}
.ya9{bottom:668.830500px;}
.yf0{bottom:671.877000px;}
.ycc{bottom:672.990000px;}
.y33{bottom:673.312500px;}
.y10c{bottom:675.769500px;}
.y90{bottom:679.732500px;}
.y72{bottom:684.346500px;}
.y11{bottom:687.649500px;}
.ya8{bottom:689.154000px;}
.y4c{bottom:689.992500px;}
.yef{bottom:692.200500px;}
.ycb{bottom:693.313500px;}
.y32{bottom:693.637500px;}
.y10b{bottom:696.093000px;}
.y8f{bottom:700.056000px;}
.y71{bottom:704.670000px;}
.y10{bottom:707.973000px;}
.ya7{bottom:709.477500px;}
.y4b{bottom:710.316000px;}
.yee{bottom:712.525500px;}
.yca{bottom:713.637000px;}
.y31{bottom:713.961000px;}
.y10a{bottom:716.416500px;}
.y8e{bottom:720.379500px;}
.y70{bottom:724.995000px;}
.yf{bottom:728.296500px;}
.yba{bottom:729.316500px;}
.ya6{bottom:729.801000px;}
.y4a{bottom:730.641000px;}
.yc9{bottom:733.960500px;}
.y30{bottom:734.284500px;}
.y109{bottom:736.740000px;}
.y6f{bottom:745.318500px;}
.yed{bottom:747.493500px;}
.ye{bottom:748.621500px;}
.yb9{bottom:749.640000px;}
.ya5{bottom:750.124500px;}
.y49{bottom:750.964500px;}
.yc8{bottom:754.284000px;}
.y2f{bottom:754.608000px;}
.y108{bottom:757.063500px;}
.y6e{bottom:765.642000px;}
.y8d{bottom:767.070000px;}
.yec{bottom:767.817000px;}
.yd{bottom:768.945000px;}
.ya4{bottom:770.449500px;}
.y48{bottom:771.288000px;}
.yc7{bottom:774.609000px;}
.y107{bottom:777.388500px;}
.y2e{bottom:785.094000px;}
.y6d{bottom:785.965500px;}
.yeb{bottom:788.142000px;}
.ya3{bottom:790.773000px;}
.y47{bottom:791.611500px;}
.yc6{bottom:794.932500px;}
.y2d{bottom:805.417500px;}
.yc{bottom:805.632000px;}
.y6c{bottom:806.289000px;}
.y106{bottom:807.873000px;}
.ya2{bottom:811.096500px;}
.y46{bottom:811.935000px;}
.yc5{bottom:815.256000px;}
.y3{bottom:818.409000px;}
.y2c{bottom:825.741000px;}
.yb{bottom:825.955500px;}
.y6b{bottom:826.614000px;}
.y105{bottom:828.198000px;}
.y8c{bottom:828.789000px;}
.ya1{bottom:831.420000px;}
.y45{bottom:832.260000px;}
.yea{bottom:834.831000px;}
.yc4{bottom:835.579500px;}
.y2b{bottom:846.066000px;}
.ya{bottom:846.279000px;}
.y6a{bottom:846.937500px;}
.y104{bottom:848.521500px;}
.y8b{bottom:849.112500px;}
.ya0{bottom:851.743500px;}
.y44{bottom:852.583500px;}
.yc3{bottom:855.903000px;}
.y26{bottom:865.581000px;}
.y2a{bottom:866.389500px;}
.y9{bottom:866.604000px;}
.y69{bottom:867.261000px;}
.y103{bottom:868.845000px;}
.y8a{bottom:869.436000px;}
.y2{bottom:869.854500px;}
.ydb{bottom:876.228000px;}
.y29{bottom:886.713000px;}
.y43{bottom:887.319000px;}
.y68{bottom:887.584500px;}
.y102{bottom:889.168500px;}
.y89{bottom:889.761000px;}
.yc2{bottom:890.299500px;}
.yda{bottom:896.551500px;}
.y8{bottom:903.291000px;}
.y28{bottom:907.036500px;}
.y42{bottom:907.644000px;}
.y67{bottom:907.908000px;}
.y88{bottom:910.084500px;}
.yc1{bottom:910.624500px;}
.ye9{bottom:916.875000px;}
.y101{bottom:919.654500px;}
.y10e{bottom:922.942500px;}
.y7{bottom:923.614500px;}
.y25{bottom:924.214500px;}
.y66{bottom:928.233000px;}
.y87{bottom:930.408000px;}
.yc0{bottom:930.948000px;}
.ye8{bottom:937.198500px;}
.y100{bottom:939.978000px;}
.y1{bottom:945.844500px;}
.y65{bottom:948.556500px;}
.yd9{bottom:951.271500px;}
.y24{bottom:952.749000px;}
.y27{bottom:953.727000px;}
.y41{bottom:954.333000px;}
.ye7{bottom:957.522000px;}
.y6{bottom:960.301500px;}
.y64{bottom:968.880000px;}
.yd8{bottom:971.595000px;}
.y86{bottom:977.098500px;}
.ybf{bottom:977.637000px;}
.ye6{bottom:977.847000px;}
.y10d{bottom:988.486500px;}
.y63{bottom:989.203500px;}
.ye5{bottom:998.170500px;}
.y62{bottom:1009.527000px;}
.yd7{bottom:1018.285500px;}
.ye4{bottom:1018.494000px;}
.y5{bottom:1025.847000px;}
.y85{bottom:1038.817500px;}
.y61{bottom:1044.496500px;}
.y84{bottom:1059.141000px;}
.y60{bottom:1079.466000px;}
.y9f{bottom:1087.911000px;}
.y40{bottom:1099.789500px;}
.y9e{bottom:1116.444000px;}
.y23{bottom:1120.113000px;}
.h4{height:49.090950px;}
.h3{height:64.557900px;}
.h2{height:92.981250px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xe{left:132.682500px;}
.x5{left:133.936500px;}
.x2{left:142.903500px;}
.xd{left:145.755000px;}
.xc{left:149.818500px;}
.x8{left:153.936000px;}
.x6{left:158.482500px;}
.xa{left:172.669500px;}
.x9{left:174.846000px;}
.xf{left:183.181500px;}
.x1{left:215.409000px;}
.x4{left:303.208500px;}
.x3{left:397.291500px;}
.xb{left:438.274500px;}
.x7{left:442.366500px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls9{letter-spacing:17.861833pt;}
.lsb{letter-spacing:19.200016pt;}
.ls7{letter-spacing:19.258198pt;}
.ls8{letter-spacing:19.316380pt;}
.ls5{letter-spacing:19.374562pt;}
.ls4{letter-spacing:19.432743pt;}
.ls6{letter-spacing:20.538199pt;}
.ls2{letter-spacing:21.352745pt;}
.lsa{letter-spacing:23.156383pt;}
.ls3{letter-spacing:26.938204pt;}
.ls1{letter-spacing:29.090933pt;}
.ws7{word-spacing:-49.280041pt;}
.ws9{word-spacing:-47.360039pt;}
.ws8{word-spacing:-44.916401pt;}
.ws5{word-spacing:-43.985491pt;}
.ws22{word-spacing:-29.090933pt;}
.ws6d{word-spacing:-20.276800pt;}
.ws0{word-spacing:-20.166600pt;}
.ws65{word-spacing:-15.825468pt;}
.ws49{word-spacing:-15.476377pt;}
.ws3d{word-spacing:-15.243649pt;}
.ws6a{word-spacing:-15.127285pt;}
.ws47{word-spacing:-14.720012pt;}
.ws5d{word-spacing:-14.254557pt;}
.ws38{word-spacing:-14.078404pt;}
.ws1a{word-spacing:-14.001891pt;}
.ws4d{word-spacing:-13.963648pt;}
.ws41{word-spacing:-13.730921pt;}
.ws5e{word-spacing:-13.614557pt;}
.ws6b{word-spacing:-13.556375pt;}
.ws39{word-spacing:-12.625465pt;}
.ws25{word-spacing:-12.450919pt;}
.ws44{word-spacing:-11.927283pt;}
.ws40{word-spacing:-11.810919pt;}
.ws42{word-spacing:-11.636373pt;}
.ws59{word-spacing:-11.520010pt;}
.ws5a{word-spacing:-11.287282pt;}
.ws51{word-spacing:-11.229100pt;}
.ws1b{word-spacing:-11.112737pt;}
.ws68{word-spacing:-11.054555pt;}
.ws67{word-spacing:-10.938191pt;}
.ws4{word-spacing:-10.705463pt;}
.wsa{word-spacing:-10.647282pt;}
.ws2c{word-spacing:-10.123645pt;}
.ws27{word-spacing:-10.065463pt;}
.ws26{word-spacing:-10.007281pt;}
.ws12{word-spacing:-9.949099pt;}
.ws24{word-spacing:-9.890917pt;}
.ws14{word-spacing:-9.832735pt;}
.ws20{word-spacing:-9.774554pt;}
.wse{word-spacing:-9.716372pt;}
.wsd{word-spacing:-9.658190pt;}
.ws2a{word-spacing:-9.600008pt;}
.ws4e{word-spacing:-9.541826pt;}
.ws3e{word-spacing:-9.483644pt;}
.ws2e{word-spacing:-9.425462pt;}
.ws50{word-spacing:-9.367281pt;}
.ws17{word-spacing:-9.309099pt;}
.ws2d{word-spacing:-9.250917pt;}
.ws52{word-spacing:-9.018189pt;}
.ws4a{word-spacing:-8.960007pt;}
.ws13{word-spacing:-8.843644pt;}
.ws5c{word-spacing:-8.727280pt;}
.ws36{word-spacing:-8.552734pt;}
.ws58{word-spacing:-8.494553pt;}
.ws1c{word-spacing:-8.378189pt;}
.ws15{word-spacing:-8.203643pt;}
.ws4c{word-spacing:-8.145461pt;}
.ws35{word-spacing:-7.796370pt;}
.ws53{word-spacing:-7.621825pt;}
.ws3b{word-spacing:-7.330915pt;}
.ws31{word-spacing:-7.272733pt;}
.ws29{word-spacing:-6.690915pt;}
.ws19{word-spacing:-6.458187pt;}
.ws33{word-spacing:-6.400005pt;}
.ws57{word-spacing:-6.283642pt;}
.ws5f{word-spacing:-5.934550pt;}
.ws28{word-spacing:-5.701823pt;}
.ws5b{word-spacing:-5.643641pt;}
.ws32{word-spacing:-5.527277pt;}
.ws2b{word-spacing:-5.469095pt;}
.ws3a{word-spacing:-5.352732pt;}
.ws43{word-spacing:-4.945459pt;}
.ws11{word-spacing:-4.712731pt;}
.ws16{word-spacing:-3.723639pt;}
.ws48{word-spacing:-3.432730pt;}
.ws37{word-spacing:-3.374548pt;}
.ws6c{word-spacing:-3.258185pt;}
.ws62{word-spacing:-3.200003pt;}
.ws30{word-spacing:-3.141821pt;}
.ws63{word-spacing:-2.967275pt;}
.ws2f{word-spacing:-2.734548pt;}
.ws61{word-spacing:-2.560002pt;}
.ws4f{word-spacing:-1.978183pt;}
.ws60{word-spacing:-1.687274pt;}
.ws18{word-spacing:-1.280001pt;}
.ws1f{word-spacing:-1.105455pt;}
.ws54{word-spacing:-0.930910pt;}
.ws55{word-spacing:-0.756364pt;}
.ws69{word-spacing:-0.174546pt;}
.ws23{word-spacing:-0.058182pt;}
.ws2{word-spacing:0.000000pt;}
.ws34{word-spacing:0.058182pt;}
.wsf{word-spacing:1.105455pt;}
.ws4b{word-spacing:1.920002pt;}
.ws46{word-spacing:2.269093pt;}
.ws56{word-spacing:3.258185pt;}
.ws21{word-spacing:4.538186pt;}
.ws6{word-spacing:5.527277pt;}
.ws66{word-spacing:15.418195pt;}
.ws1d{word-spacing:16.349105pt;}
.ws45{word-spacing:18.676379pt;}
.ws1e{word-spacing:18.734561pt;}
.ws64{word-spacing:21.178199pt;}
.ws3c{word-spacing:21.527291pt;}
.ws1{word-spacing:24.866747pt;}
.ws10{word-spacing:30.138207pt;}
.wsc{word-spacing:62.836416pt;}
.ws3f{word-spacing:201.251077pt;}
.wsb{word-spacing:1829.761525pt;}
.ws3{word-spacing:1900.419152pt;}
._f{margin-left:-33.920028pt;}
._21{margin-left:-32.349118pt;}
._17{margin-left:-30.661844pt;}
._9{margin-left:-29.090933pt;}
._e{margin-left:-27.461841pt;}
._20{margin-left:-9.658190pt;}
._2{margin-left:-6.197558pt;}
._1c{margin-left:-4.829095pt;}
._0{margin-left:-3.416200pt;}
._4{margin-left:-1.989340pt;}
._1d{margin-left:-0.931703pt;}
._29{width:1.115819pt;}
._5{width:2.065853pt;}
._1{width:3.306000pt;}
._3c{width:4.987110pt;}
._22{width:6.341823pt;}
._48{width:8.960801pt;}
._39{width:10.124438pt;}
._d{width:14.196375pt;}
._1e{width:16.313235pt;}
._16{width:17.920015pt;}
._12{width:19.432743pt;}
._35{width:20.676875pt;}
._34{width:21.783339pt;}
._18{width:22.690928pt;}
._43{width:24.127937pt;}
._10{width:25.192748pt;}
._a{width:26.181840pt;}
._38{width:27.234896pt;}
._7{width:28.450933pt;}
._3b{width:30.265727pt;}
._46{width:31.216769pt;}
._44{width:32.687846pt;}
._3d{width:33.958490pt;}
._1f{width:35.299863pt;}
._32{width:36.469667pt;}
._6{width:37.527304pt;}
._45{width:39.029669pt;}
._47{width:40.478049pt;}
._33{width:42.024246pt;}
._11{width:43.287309pt;}
._3a{width:44.920382pt;}
._36{width:46.371741pt;}
._37{width:48.757197pt;}
._b{width:51.840043pt;}
._31{width:53.887800pt;}
._19{width:55.563683pt;}
._13{width:56.988742pt;}
._30{width:60.610000pt;}
._42{width:63.038049pt;}
._3{width:65.161792pt;}
._14{width:80.930977pt;}
._2c{width:105.553062pt;}
._2b{width:108.124221pt;}
._2a{width:132.818838pt;}
._2d{width:139.869207pt;}
._3f{width:145.912947pt;}
._3e{width:162.927558pt;}
._2e{width:198.341983pt;}
._24{width:234.321483pt;}
._2f{width:266.472949pt;}
._28{width:302.905954pt;}
._40{width:427.811266pt;}
._41{width:456.029471pt;}
._27{width:998.101955pt;}
._25{width:1037.103723pt;}
._26{width:1072.942959pt;}
._8{width:1254.121292pt;}
._1a{width:1292.899110pt;}
._15{width:1671.412003pt;}
._c{width:1737.950539pt;}
._1b{width:1741.004691pt;}
._23{width:1820.859699pt;}
.fs2{font-size:58.181867pt;}
.fs1{font-size:76.513067pt;}
.fs0{font-size:110.200000pt;}
.y0{bottom:0.000000pt;}
.y22{bottom:155.605333pt;}
.y5f{bottom:218.836000pt;}
.y21{bottom:220.376000pt;}
.y3f{bottom:222.193333pt;}
.y83{bottom:227.942667pt;}
.ybe{bottom:232.749333pt;}
.y5e{bottom:236.901333pt;}
.y82{bottom:246.008000pt;}
.y9d{bottom:248.886667pt;}
.yb8{bottom:250.281333pt;}
.ybd{bottom:250.814667pt;}
.y20{bottom:252.988000pt;}
.y3e{bottom:253.277333pt;}
.y5d{bottom:254.966667pt;}
.y81{bottom:264.073333pt;}
.yff{bottom:266.008000pt;}
.y9c{bottom:266.953333pt;}
.yb7{bottom:268.346667pt;}
.ybc{bottom:268.881333pt;}
.y5c{bottom:273.032000pt;}
.y80{bottom:282.138667pt;}
.yfe{bottom:284.073333pt;}
.y3d{bottom:284.361333pt;}
.y9b{bottom:285.018667pt;}
.y1f{bottom:285.598667pt;}
.yb6{bottom:286.412000pt;}
.ybb{bottom:286.946667pt;}
.y5b{bottom:291.097333pt;}
.y7f{bottom:300.205333pt;}
.yfd{bottom:302.138667pt;}
.y3c{bottom:302.426667pt;}
.y9a{bottom:303.084000pt;}
.yb5{bottom:304.477333pt;}
.y5a{bottom:309.162667pt;}
.yd6{bottom:309.164000pt;}
.y1e{bottom:318.209333pt;}
.y7e{bottom:318.270667pt;}
.y3b{bottom:320.492000pt;}
.yb4{bottom:322.542667pt;}
.y59{bottom:327.229333pt;}
.y7d{bottom:336.336000pt;}
.y3a{bottom:338.557333pt;}
.yb3{bottom:340.608000pt;}
.yfc{bottom:343.641333pt;}
.y99{bottom:344.586667pt;}
.y58{bottom:345.294667pt;}
.y1d{bottom:350.820000pt;}
.y7c{bottom:354.401333pt;}
.yb2{bottom:358.674667pt;}
.yd5{bottom:363.360000pt;}
.y39{bottom:369.641333pt;}
.y7b{bottom:372.466667pt;}
.y57{bottom:376.172000pt;}
.yd4{bottom:381.425333pt;}
.y1c{bottom:383.432000pt;}
.y4{bottom:386.294667pt;}
.yb1{bottom:389.757333pt;}
.y7a{bottom:390.533333pt;}
.y56{bottom:394.237333pt;}
.yfb{bottom:398.502667pt;}
.y98{bottom:399.448000pt;}
.yd3{bottom:399.490667pt;}
.y1b{bottom:401.497333pt;}
.y79{bottom:408.598667pt;}
.y38{bottom:411.142667pt;}
.yfa{bottom:416.568000pt;}
.y97{bottom:417.513333pt;}
.yd2{bottom:417.557333pt;}
.y1a{bottom:419.562667pt;}
.y55{bottom:425.113333pt;}
.y78{bottom:426.664000pt;}
.yb0{bottom:431.260000pt;}
.yf9{bottom:434.634667pt;}
.y96{bottom:435.580000pt;}
.yd1{bottom:435.622667pt;}
.y19{bottom:437.628000pt;}
.y54{bottom:443.180000pt;}
.y77{bottom:444.729333pt;}
.yf8{bottom:452.700000pt;}
.ye3{bottom:453.688000pt;}
.y18{bottom:455.693333pt;}
.y53{bottom:461.245333pt;}
.y37{bottom:466.005333pt;}
.yd0{bottom:466.197333pt;}
.yf7{bottom:470.765333pt;}
.ye2{bottom:471.753333pt;}
.y17{bottom:473.760000pt;}
.y95{bottom:477.081333pt;}
.y52{bottom:479.310667pt;}
.y36{bottom:484.070667pt;}
.ycf{bottom:484.262667pt;}
.yaf{bottom:486.121333pt;}
.y76{bottom:486.232000pt;}
.yf6{bottom:488.830667pt;}
.ye1{bottom:489.818667pt;}
.y16{bottom:491.825333pt;}
.y51{bottom:497.376000pt;}
.y35{bottom:502.136000pt;}
.yce{bottom:502.328000pt;}
.yae{bottom:504.188000pt;}
.yf5{bottom:506.896000pt;}
.ye0{bottom:507.885333pt;}
.y15{bottom:509.890667pt;}
.y50{bottom:515.441333pt;}
.yad{bottom:522.253333pt;}
.yf4{bottom:524.962667pt;}
.ydf{bottom:525.950667pt;}
.y94{bottom:531.944000pt;}
.yac{bottom:540.318667pt;}
.y75{bottom:541.093333pt;}
.y14{bottom:542.501333pt;}
.yf3{bottom:543.028000pt;}
.y34{bottom:543.638667pt;}
.ycd{bottom:543.830667pt;}
.yde{bottom:544.016000pt;}
.y4f{bottom:546.318667pt;}
.y93{bottom:550.009333pt;}
.yab{bottom:558.384000pt;}
.y74{bottom:559.158667pt;}
.yf2{bottom:561.093333pt;}
.ydd{bottom:562.081333pt;}
.y4e{bottom:564.384000pt;}
.y92{bottom:568.074667pt;}
.y13{bottom:575.113333pt;}
.yaa{bottom:576.449333pt;}
.yf1{bottom:579.158667pt;}
.ydc{bottom:580.146667pt;}
.y4d{bottom:582.450667pt;}
.y91{bottom:586.140000pt;}
.y73{bottom:590.242667pt;}
.y12{bottom:593.178667pt;}
.ya9{bottom:594.516000pt;}
.yf0{bottom:597.224000pt;}
.ycc{bottom:598.213333pt;}
.y33{bottom:598.500000pt;}
.y10c{bottom:600.684000pt;}
.y90{bottom:604.206667pt;}
.y72{bottom:608.308000pt;}
.y11{bottom:611.244000pt;}
.ya8{bottom:612.581333pt;}
.y4c{bottom:613.326667pt;}
.yef{bottom:615.289333pt;}
.ycb{bottom:616.278667pt;}
.y32{bottom:616.566667pt;}
.y10b{bottom:618.749333pt;}
.y8f{bottom:622.272000pt;}
.y71{bottom:626.373333pt;}
.y10{bottom:629.309333pt;}
.ya7{bottom:630.646667pt;}
.y4b{bottom:631.392000pt;}
.yee{bottom:633.356000pt;}
.yca{bottom:634.344000pt;}
.y31{bottom:634.632000pt;}
.y10a{bottom:636.814667pt;}
.y8e{bottom:640.337333pt;}
.y70{bottom:644.440000pt;}
.yf{bottom:647.374667pt;}
.yba{bottom:648.281333pt;}
.ya6{bottom:648.712000pt;}
.y4a{bottom:649.458667pt;}
.yc9{bottom:652.409333pt;}
.y30{bottom:652.697333pt;}
.y109{bottom:654.880000pt;}
.y6f{bottom:662.505333pt;}
.yed{bottom:664.438667pt;}
.ye{bottom:665.441333pt;}
.yb9{bottom:666.346667pt;}
.ya5{bottom:666.777333pt;}
.y49{bottom:667.524000pt;}
.yc8{bottom:670.474667pt;}
.y2f{bottom:670.762667pt;}
.y108{bottom:672.945333pt;}
.y6e{bottom:680.570667pt;}
.y8d{bottom:681.840000pt;}
.yec{bottom:682.504000pt;}
.yd{bottom:683.506667pt;}
.ya4{bottom:684.844000pt;}
.y48{bottom:685.589333pt;}
.yc7{bottom:688.541333pt;}
.y107{bottom:691.012000pt;}
.y2e{bottom:697.861333pt;}
.y6d{bottom:698.636000pt;}
.yeb{bottom:700.570667pt;}
.ya3{bottom:702.909333pt;}
.y47{bottom:703.654667pt;}
.yc6{bottom:706.606667pt;}
.y2d{bottom:715.926667pt;}
.yc{bottom:716.117333pt;}
.y6c{bottom:716.701333pt;}
.y106{bottom:718.109333pt;}
.ya2{bottom:720.974667pt;}
.y46{bottom:721.720000pt;}
.yc5{bottom:724.672000pt;}
.y3{bottom:727.474667pt;}
.y2c{bottom:733.992000pt;}
.yb{bottom:734.182667pt;}
.y6b{bottom:734.768000pt;}
.y105{bottom:736.176000pt;}
.y8c{bottom:736.701333pt;}
.ya1{bottom:739.040000pt;}
.y45{bottom:739.786667pt;}
.yea{bottom:742.072000pt;}
.yc4{bottom:742.737333pt;}
.y2b{bottom:752.058667pt;}
.ya{bottom:752.248000pt;}
.y6a{bottom:752.833333pt;}
.y104{bottom:754.241333pt;}
.y8b{bottom:754.766667pt;}
.ya0{bottom:757.105333pt;}
.y44{bottom:757.852000pt;}
.yc3{bottom:760.802667pt;}
.y26{bottom:769.405333pt;}
.y2a{bottom:770.124000pt;}
.y9{bottom:770.314667pt;}
.y69{bottom:770.898667pt;}
.y103{bottom:772.306667pt;}
.y8a{bottom:772.832000pt;}
.y2{bottom:773.204000pt;}
.ydb{bottom:778.869333pt;}
.y29{bottom:788.189333pt;}
.y43{bottom:788.728000pt;}
.y68{bottom:788.964000pt;}
.y102{bottom:790.372000pt;}
.y89{bottom:790.898667pt;}
.yc2{bottom:791.377333pt;}
.yda{bottom:796.934667pt;}
.y8{bottom:802.925333pt;}
.y28{bottom:806.254667pt;}
.y42{bottom:806.794667pt;}
.y67{bottom:807.029333pt;}
.y88{bottom:808.964000pt;}
.yc1{bottom:809.444000pt;}
.ye9{bottom:815.000000pt;}
.y101{bottom:817.470667pt;}
.y10e{bottom:820.393333pt;}
.y7{bottom:820.990667pt;}
.y25{bottom:821.524000pt;}
.y66{bottom:825.096000pt;}
.y87{bottom:827.029333pt;}
.yc0{bottom:827.509333pt;}
.ye8{bottom:833.065333pt;}
.y100{bottom:835.536000pt;}
.y1{bottom:840.750667pt;}
.y65{bottom:843.161333pt;}
.yd9{bottom:845.574667pt;}
.y24{bottom:846.888000pt;}
.y27{bottom:847.757333pt;}
.y41{bottom:848.296000pt;}
.ye7{bottom:851.130667pt;}
.y6{bottom:853.601333pt;}
.y64{bottom:861.226667pt;}
.yd8{bottom:863.640000pt;}
.y86{bottom:868.532000pt;}
.ybf{bottom:869.010667pt;}
.ye6{bottom:869.197333pt;}
.y10d{bottom:878.654667pt;}
.y63{bottom:879.292000pt;}
.ye5{bottom:887.262667pt;}
.y62{bottom:897.357333pt;}
.yd7{bottom:905.142667pt;}
.ye4{bottom:905.328000pt;}
.y5{bottom:911.864000pt;}
.y85{bottom:923.393333pt;}
.y61{bottom:928.441333pt;}
.y84{bottom:941.458667pt;}
.y60{bottom:959.525333pt;}
.y9f{bottom:967.032000pt;}
.y40{bottom:977.590667pt;}
.y9e{bottom:992.394667pt;}
.y23{bottom:995.656000pt;}
.h4{height:43.636400pt;}
.h3{height:57.384800pt;}
.h2{height:82.650000pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xe{left:117.940000pt;}
.x5{left:119.054667pt;}
.x2{left:127.025333pt;}
.xd{left:129.560000pt;}
.xc{left:133.172000pt;}
.x8{left:136.832000pt;}
.x6{left:140.873333pt;}
.xa{left:153.484000pt;}
.x9{left:155.418667pt;}
.xf{left:162.828000pt;}
.x1{left:191.474667pt;}
.x4{left:269.518667pt;}
.x3{left:353.148000pt;}
.xb{left:389.577333pt;}
.x7{left:393.214667pt;}
}




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