
    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_d162655f246756438b589147.woff')format("woff");}.ff1{font-family:ff1;line-height:0.902000;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_363c132abb201ba0df610bf4.woff')format("woff");}.ff2{font-family:ff2;line-height:0.898000;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_f113ca00d388f0d01fed3d2b.woff')format("woff");}.ff3{font-family:ff3;line-height:0.894000;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_e9591358110c3f5b4deb8623.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_32fd4faebca499d711e2cfcd.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_67cad0c3766a5108cbdeb7a8.woff')format("woff");}.ff6{font-family:ff6;line-height:0.999000;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_15dd69bd4101f33bb1044f17.woff')format("woff");}.ff7{font-family:ff7;line-height:0.699000;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_687968830fcd5119adbb8344.woff')format("woff");}.ff8{font-family:ff8;line-height:0.922000;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_cc4ca32ec28c95c28b933250.woff')format("woff");}.ff9{font-family:ff9;line-height:0.889000;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_aeba0e3682f7c74d0a917f67.woff')format("woff");}.ffa{font-family:ffa;line-height:0.852000;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_3e671364e15706d39498a843.woff')format("woff");}.ffb{font-family:ffb;line-height:0.527000;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:ffc;src:url('chunks/assets/font_dea42448ed8566baf8811be5.woff')format("woff");}.ffc{font-family:ffc;line-height:0.482000;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:ffd;src:url('chunks/assets/font_55d521fa23cca4bca1586344.woff')format("woff");}.ffd{font-family:ffd;line-height:0.921000;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:ffe;src:url('chunks/assets/font_746b91845e6830d284c18ec4.woff')format("woff");}.ffe{font-family:ffe;line-height:0.723000;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:fff;src:url('chunks/assets/font_59875b00b40da63c850651b0.woff')format("woff");}.fff{font-family:fff;line-height:0.999000;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:ff10;src:url('chunks/assets/font_864f3e07a59f88d1d9342ede.woff')format("woff");}.ff10{font-family:ff10;line-height:1.800000;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:ff11;src:url('chunks/assets/font_4e440a29eb95e1a11ab76523.woff')format("woff");}.ff11{font-family:ff11;line-height:0.921000;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:ff12;src:url('chunks/assets/font_b15d8d1d7d4c9c9ae8ca4ae1.woff')format("woff");}.ff12{font-family:ff12;line-height:0.725000;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:ff13;src:url('chunks/assets/font_25a7dbcbeaf195743fa4e168.woff')format("woff");}.ff13{font-family:ff13;line-height:0.910000;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:ff14;src:url('chunks/assets/font_829dae16ecf303b04ca2443f.woff')format("woff");}.ff14{font-family:ff14;line-height:0.697000;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;}
.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);}
.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);}
.v7{vertical-align:-12.558000px;}
.v3{vertical-align:-8.964000px;}
.v8{vertical-align:-5.982000px;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:14.778000px;}
.v2{vertical-align:16.464000px;}
.v1{vertical-align:21.690000px;}
.v4{vertical-align:24.684000px;}
.v6{vertical-align:134.928000px;}
.ls4{letter-spacing:0.000000px;}
.lsd{letter-spacing:0.002065px;}
.ls16{letter-spacing:0.003416px;}
.ls17{letter-spacing:0.007555px;}
.ls1a{letter-spacing:2.570351px;}
.ls1b{letter-spacing:2.984525px;}
.ls1c{letter-spacing:2.988532px;}
.ls12{letter-spacing:3.120330px;}
.ls14{letter-spacing:3.126330px;}
.lse{letter-spacing:3.206086px;}
.ls15{letter-spacing:4.888500px;}
.ls13{letter-spacing:4.894500px;}
.lsf{letter-spacing:5.273276px;}
.lsc{letter-spacing:6.515540px;}
.ls6{letter-spacing:9.922750px;}
.ls11{letter-spacing:9.959607px;}
.ls7{letter-spacing:9.982525px;}
.ls10{letter-spacing:16.602538px;}
.lsa{letter-spacing:16.617617px;}
.lsb{letter-spacing:18.769538px;}
.ls9{letter-spacing:20.742133px;}
.ls5{letter-spacing:22.915409px;}
.ls19{letter-spacing:26.510525px;}
.ls1{letter-spacing:28.244160px;}
.ls18{letter-spacing:33.713438px;}
.ls8{letter-spacing:44.712149px;}
.ls0{letter-spacing:59.770022px;}
.ls3{letter-spacing:161.448998px;}
.ls2{letter-spacing:237.735130px;}
.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;}
}
.ws1e{word-spacing:-38.937826px;}
.ws36{word-spacing:-36.071827px;}
.ws47{word-spacing:-30.629017px;}
.ws2e{word-spacing:-28.955301px;}
.ws51{word-spacing:-28.432454px;}
.ws50{word-spacing:-28.378656px;}
.ws1f{word-spacing:-16.605662px;}
.ws63{word-spacing:-15.359443px;}
.ws1c{word-spacing:-6.623136px;}
.ws4c{word-spacing:-6.563361px;}
.ws3e{word-spacing:-3.156152px;}
.ws59{word-spacing:-2.985811px;}
.ws49{word-spacing:-2.080191px;}
.ws4a{word-spacing:-2.020415px;}
.ws2f{word-spacing:-0.071731px;}
.ws29{word-spacing:-0.059776px;}
.ws34{word-spacing:-0.047820px;}
.ws64{word-spacing:-0.035866px;}
.ws12{word-spacing:0.000000px;}
.ws24{word-spacing:0.011955px;}
.ws60{word-spacing:0.349690px;}
.ws66{word-spacing:0.564883px;}
.ws62{word-spacing:0.780077px;}
.ws61{word-spacing:1.371859px;}
.ws3f{word-spacing:1.566121px;}
.ws2d{word-spacing:1.685672px;}
.ws5{word-spacing:1.864999px;}
.ws5a{word-spacing:1.909843px;}
.ws23{word-spacing:2.283428px;}
.ws27{word-spacing:2.343204px;}
.ws7{word-spacing:2.402979px;}
.ws3{word-spacing:2.462755px;}
.ws56{word-spacing:2.535674px;}
.ws54{word-spacing:2.577516px;}
.ws1a{word-spacing:2.761633px;}
.ws16{word-spacing:3.039610px;}
.wsc{word-spacing:3.093408px;}
.ws9{word-spacing:3.299613px;}
.ws5b{word-spacing:3.308602px;}
.ws19{word-spacing:3.359389px;}
.ws26{word-spacing:3.598491px;}
.ws5f{word-spacing:3.631392px;}
.ws20{word-spacing:3.837594px;}
.ws4e{word-spacing:3.846586px;}
.ws53{word-spacing:4.115578px;}
.ws4{word-spacing:4.435350px;}
.ws22{word-spacing:4.674452px;}
.ws8{word-spacing:4.913554px;}
.ws2b{word-spacing:4.980115px;}
.ws43{word-spacing:5.092881px;}
.ws41{word-spacing:5.212432px;}
.ws6{word-spacing:5.272208px;}
.ws69{word-spacing:5.729530px;}
.ws38{word-spacing:6.046621px;}
.ws3a{word-spacing:6.048642px;}
.ws3c{word-spacing:6.052546px;}
.ws30{word-spacing:6.064962px;}
.ws68{word-spacing:6.321312px;}
.ws57{word-spacing:6.360106px;}
.ws55{word-spacing:6.401948px;}
.ws4b{word-spacing:6.467720px;}
.ws5d{word-spacing:6.590304px;}
.ws28{word-spacing:6.706822px;}
.ws48{word-spacing:6.886149px;}
.ws46{word-spacing:6.945925px;}
.ws58{word-spacing:6.966893px;}
.ws42{word-spacing:8.021886px;}
.ws45{word-spacing:8.798968px;}
.ws44{word-spacing:8.858744px;}
.ws40{word-spacing:9.157622px;}
.ws25{word-spacing:9.994480px;}
.ws2a{word-spacing:10.251486px;}
.ws2c{word-spacing:10.711788px;}
.ws65{word-spacing:11.109370px;}
.ws14{word-spacing:11.243866px;}
.wsa{word-spacing:11.668197px;}
.ws18{word-spacing:12.923485px;}
.ws67{word-spacing:14.337274px;}
.ws35{word-spacing:18.399053px;}
.ws21{word-spacing:18.901045px;}
.ws4f{word-spacing:20.443392px;}
.wsb{word-spacing:21.142771px;}
.ws15{word-spacing:21.196570px;}
.ws4d{word-spacing:22.057344px;}
.ws1b{word-spacing:22.547302px;}
.ws5e{word-spacing:22.918118px;}
.ws1{word-spacing:23.312640px;}
.ws5c{word-spacing:25.231450px;}
.wsd{word-spacing:28.190362px;}
.wse{word-spacing:30.987878px;}
.ws0{word-spacing:31.091012px;}
.ws2{word-spacing:32.192873px;}
.ws32{word-spacing:43.169938px;}
.ws10{word-spacing:59.740135px;}
.ws31{word-spacing:66.422647px;}
.ws33{word-spacing:89.675355px;}
.wsf{word-spacing:161.419111px;}
.ws13{word-spacing:231.548314px;}
.ws11{word-spacing:263.098087px;}
.ws17{word-spacing:320.576543px;}
.ws3d{word-spacing:390.652884px;}
.ws1d{word-spacing:401.464885px;}
.ws39{word-spacing:490.198884px;}
.ws3b{word-spacing:525.130884px;}
.ws37{word-spacing:580.246884px;}
.ws52{word-spacing:759.418214px;}
._e{margin-left:-28.244160px;}
._3{margin-left:-8.091257px;}
._5{margin-left:-5.021150px;}
._21{margin-left:-3.849538px;}
._0{margin-left:-2.685602px;}
._4{margin-left:-1.673717px;}
._6{width:1.673717px;}
._1{width:2.685602px;}
._23{width:4.249054px;}
._1f{width:9.587953px;}
._1e{width:15.661207px;}
._15{width:18.893389px;}
._9{width:20.080302px;}
._1a{width:21.196570px;}
._a{width:22.595177px;}
._19{width:24.328669px;}
._14{width:26.301264px;}
._b{width:28.297958px;}
._7{width:29.887800px;}
._11{width:31.860395px;}
._8{width:32.996131px;}
._22{width:36.116626px;}
._1d{width:37.961806px;}
._c{width:39.541824px;}
._1b{width:40.941986px;}
._1c{width:42.496152px;}
._10{width:46.565192px;}
._d{width:53.637005px;}
._18{width:73.344661px;}
._2{width:96.836850px;}
._24{width:164.111218px;}
._17{width:328.407146px;}
._13{width:358.294946px;}
._f{width:388.182746px;}
._16{width:418.070546px;}
._12{width:447.958346px;}
._20{width:538.898573px;}
.fc3{color:rgb(0,128,128);}
.fc1{color:rgb(0,0,255);}
.fc2{color:rgb(128,128,128);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:29.887800px;}
.fs7{font-size:35.865600px;}
.fs6{font-size:41.842800px;}
.fs4{font-size:53.798400px;}
.fs3{font-size:59.775600px;}
.fs1{font-size:71.731200px;}
.fs2{font-size:86.077200px;}
.fs0{font-size:103.292400px;}
.y0{bottom:0.000000px;}
.y37{bottom:63.168000px;}
.y81{bottom:112.932000px;}
.y36{bottom:117.724500px;}
.y35{bottom:132.621000px;}
.y34{bottom:147.519000px;}
.y33{bottom:162.415500px;}
.y32{bottom:177.313500px;}
.y31{bottom:192.210000px;}
.y30{bottom:207.108000px;}
.y2f{bottom:222.004500px;}
.y98{bottom:230.130000px;}
.y2e{bottom:236.902500px;}
.y109{bottom:247.795500px;}
.y2d{bottom:251.799000px;}
.y108{bottom:259.750500px;}
.y2c{bottom:266.697000px;}
.y107{bottom:271.705500px;}
.y2b{bottom:281.593500px;}
.y106{bottom:283.660500px;}
.y105{bottom:295.615500px;}
.y2a{bottom:296.491500px;}
.y104{bottom:309.738000px;}
.y29{bottom:311.388000px;}
.y103{bottom:321.693000px;}
.y28{bottom:326.286000px;}
.y102{bottom:333.648000px;}
.y100{bottom:341.121000px;}
.y27{bottom:341.182500px;}
.y101{bottom:345.603000px;}
.y26{bottom:356.080500px;}
.yff{bottom:357.558000px;}
.y25{bottom:370.977000px;}
.yfe{bottom:371.680500px;}
.yfd{bottom:383.635500px;}
.y24{bottom:385.875000px;}
.y80{bottom:393.438000px;}
.yfc{bottom:395.590500px;}
.y62{bottom:398.992500px;}
.y23{bottom:400.771500px;}
.yfa{bottom:403.063500px;}
.yfb{bottom:407.545500px;}
.y7f{bottom:411.372000px;}
.y22{bottom:415.669500px;}
.y61{bottom:416.925000px;}
.yf9{bottom:419.502000px;}
.y21{bottom:430.566000px;}
.yf8{bottom:433.623000px;}
.y60{bottom:434.857500px;}
.y7d{bottom:438.052500px;}
.y20{bottom:445.464000px;}
.yf7{bottom:445.578000px;}
.y79{bottom:452.142000px;}
.y5f{bottom:452.790000px;}
.y78{bottom:455.835000px;}
.y7c{bottom:455.985000px;}
.yf6{bottom:457.533000px;}
.y7a{bottom:458.974500px;}
.y1f{bottom:460.360500px;}
.yf4{bottom:465.006000px;}
.yf5{bottom:469.489500px;}
.y5e{bottom:470.722500px;}
.y7b{bottom:473.917500px;}
.y1e{bottom:475.258500px;}
.yc1{bottom:480.994500px;}
.yf3{bottom:481.444500px;}
.y7e{bottom:485.874000px;}
.y5d{bottom:488.656500px;}
.y1d{bottom:490.155000px;}
.yc0{bottom:492.951000px;}
.yf2{bottom:495.565500px;}
.y77{bottom:500.299500px;}
.ybf{bottom:504.906000px;}
.y1c{bottom:505.053000px;}
.y5c{bottom:506.589000px;}
.yf1{bottom:507.520500px;}
.ybd{bottom:512.377500px;}
.y97{bottom:516.153000px;}
.ybe{bottom:516.861000px;}
.yf0{bottom:519.477000px;}
.y1b{bottom:519.949500px;}
.y5b{bottom:524.521500px;}
.yee{bottom:526.948500px;}
.y76{bottom:527.884500px;}
.ybc{bottom:528.816000px;}
.yef{bottom:531.432000px;}
.y96{bottom:534.085500px;}
.y1a{bottom:534.847500px;}
.y5a{bottom:542.454000px;}
.ybb{bottom:542.938500px;}
.yed{bottom:543.387000px;}
.y19{bottom:549.744000px;}
.yba{bottom:554.893500px;}
.yec{bottom:557.508000px;}
.y59{bottom:560.386500px;}
.y18{bottom:564.642000px;}
.y94{bottom:566.281500px;}
.yb9{bottom:566.848500px;}
.yeb{bottom:569.464500px;}
.y75{bottom:573.699000px;}
.yb7{bottom:574.320000px;}
.y58{bottom:578.319000px;}
.yb8{bottom:578.803500px;}
.y17{bottom:579.538500px;}
.y90{bottom:580.371000px;}
.yea{bottom:581.419500px;}
.y8f{bottom:584.065500px;}
.y93{bottom:584.214000px;}
.y91{bottom:587.203500px;}
.ye8{bottom:588.891000px;}
.yb6{bottom:590.758500px;}
.ye9{bottom:593.374500px;}
.y16{bottom:594.436500px;}
.y57{bottom:596.253000px;}
.y92{bottom:602.148000px;}
.yb5{bottom:604.881000px;}
.ye7{bottom:605.329500px;}
.y15{bottom:609.333000px;}
.y95{bottom:614.103000px;}
.y56{bottom:614.185500px;}
.yb4{bottom:616.836000px;}
.ye6{bottom:619.450500px;}
.y14{bottom:624.231000px;}
.yb3{bottom:628.791000px;}
.ye5{bottom:631.407000px;}
.y55{bottom:632.118000px;}
.y8e{bottom:634.044000px;}
.yb1{bottom:636.262500px;}
.y13{bottom:639.127500px;}
.yb2{bottom:640.746000px;}
.ye4{bottom:643.362000px;}
.y54{bottom:650.050500px;}
.yb0{bottom:652.701000px;}
.y12{bottom:654.025500px;}
.ye3{bottom:655.317000px;}
.y8d{bottom:661.629000px;}
.yaf{bottom:666.823500px;}
.ye2{bottom:667.272000px;}
.y53{bottom:667.983000px;}
.y11{bottom:668.922000px;}
.yae{bottom:678.778500px;}
.y10{bottom:683.818500px;}
.y52{bottom:685.915500px;}
.yad{bottom:690.733500px;}
.ye1{bottom:691.213500px;}
.yab{bottom:698.205000px;}
.yf{bottom:698.716500px;}
.yac{bottom:702.688500px;}
.y51{bottom:703.849500px;}
.ye0{bottom:707.652000px;}
.y8c{bottom:708.393000px;}
.ye{bottom:713.613000px;}
.yaa{bottom:714.643500px;}
.y50{bottom:721.782000px;}
.ya9{bottom:728.766000px;}
.yd{bottom:735.100500px;}
.y4f{bottom:739.714500px;}
.ya8{bottom:740.721000px;}
.ydf{bottom:744.411000px;}
.ya7{bottom:752.676000px;}
.yc{bottom:757.516500px;}
.ya5{bottom:760.147500px;}
.yde{bottom:760.849500px;}
.ya6{bottom:764.631000px;}
.y4e{bottom:765.150000px;}
.yb{bottom:775.449000px;}
.ya4{bottom:776.586000px;}
.ya{bottom:793.381500px;}
.ya3{bottom:800.527500px;}
.y4d{bottom:802.956000px;}
.y9{bottom:811.314000px;}
.ydd{bottom:816.100500px;}
.ya2{bottom:816.966000px;}
.ydc{bottom:828.057000px;}
.y8{bottom:829.246500px;}
.ydb{bottom:840.012000px;}
.y4c{bottom:841.945500px;}
.y7{bottom:847.180500px;}
.yd9{bottom:847.483500px;}
.yda{bottom:851.967000px;}
.ya1{bottom:853.726500px;}
.y74{bottom:854.205000px;}
.y4b{bottom:856.843500px;}
.yd8{bottom:863.922000px;}
.y6{bottom:865.113000px;}
.ya0{bottom:870.165000px;}
.y4a{bottom:871.740000px;}
.y73{bottom:872.137500px;}
.yd7{bottom:878.043000px;}
.y5{bottom:883.045500px;}
.y49{bottom:886.638000px;}
.yd6{bottom:889.999500px;}
.y71{bottom:898.819500px;}
.y4{bottom:900.978000px;}
.y48{bottom:901.534500px;}
.yd5{bottom:901.954500px;}
.y9f{bottom:904.005000px;}
.yd3{bottom:909.426000px;}
.y6d{bottom:912.907500px;}
.yd4{bottom:913.909500px;}
.y47{bottom:916.432500px;}
.y6c{bottom:916.602000px;}
.y70{bottom:916.752000px;}
.y6e{bottom:919.741500px;}
.y9e{bottom:921.937500px;}
.yd2{bottom:925.864500px;}
.y46{bottom:931.329000px;}
.y6f{bottom:934.684500px;}
.y3{bottom:936.549000px;}
.y9d{bottom:939.870000px;}
.yd1{bottom:939.987000px;}
.y45{bottom:946.227000px;}
.y72{bottom:946.639500px;}
.yd0{bottom:951.942000px;}
.y9c{bottom:957.802500px;}
.y6b{bottom:961.066500px;}
.y44{bottom:961.123500px;}
.ycf{bottom:963.897000px;}
.ycd{bottom:971.368500px;}
.y9b{bottom:975.735000px;}
.yce{bottom:975.852000px;}
.y43{bottom:976.021500px;}
.ycc{bottom:987.807000px;}
.y6a{bottom:988.651500px;}
.y42{bottom:990.918000px;}
.y9a{bottom:993.667500px;}
.y8b{bottom:994.414500px;}
.y2{bottom:1000.912500px;}
.ycb{bottom:1001.929500px;}
.y41{bottom:1005.816000px;}
.y99{bottom:1011.601500px;}
.y8a{bottom:1012.347000px;}
.yca{bottom:1013.884500px;}
.y40{bottom:1020.712500px;}
.yc9{bottom:1025.839500px;}
.y69{bottom:1029.534000px;}
.yc7{bottom:1033.311000px;}
.y3f{bottom:1035.610500px;}
.yc8{bottom:1037.794500px;}
.y88{bottom:1044.544500px;}
.y68{bottom:1047.466500px;}
.yc6{bottom:1049.749500px;}
.y3e{bottom:1050.507000px;}
.y84{bottom:1058.632500px;}
.y67{bottom:1061.283000px;}
.y83{bottom:1062.327000px;}
.y87{bottom:1062.477000px;}
.y66{bottom:1065.399000px;}
.y3d{bottom:1065.405000px;}
.y85{bottom:1065.465000px;}
.yc5{bottom:1073.691000px;}
.y1{bottom:1077.126000px;}
.y3c{bottom:1080.301500px;}
.y86{bottom:1080.409500px;}
.y65{bottom:1083.331500px;}
.yc4{bottom:1090.129500px;}
.y89{bottom:1092.364500px;}
.y3b{bottom:1095.199500px;}
.y64{bottom:1101.265500px;}
.y3a{bottom:1110.096000px;}
.y82{bottom:1112.307000px;}
.y39{bottom:1124.994000px;}
.yc3{bottom:1126.890000px;}
.y63{bottom:1136.005500px;}
.y38{bottom:1139.890500px;}
.yc2{bottom:1143.328500px;}
.he{height:2.391024px;}
.hf{height:29.583798px;}
.h10{height:29.589798px;}
.h12{height:31.382100px;}
.h7{height:37.336090px;}
.h6{height:40.348800px;}
.h8{height:41.544042px;}
.h9{height:43.203199px;}
.h5{height:44.831700px;}
.h11{height:46.185199px;}
.hc{height:46.191199px;}
.hb{height:50.211840px;}
.h3{height:50.498765px;}
.h4{height:60.254040px;}
.ha{height:61.295700px;}
.h2{height:72.201388px;}
.hd{height:137.319024px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x7{left:82.885500px;}
.x6{left:87.970500px;}
.x3{left:108.000000px;}
.xa{left:116.967000px;}
.xc{left:119.955000px;}
.x4{left:130.416000px;}
.x25{left:157.819500px;}
.x19{left:170.263500px;}
.x20{left:174.630000px;}
.x13{left:181.519500px;}
.xb{left:236.431500px;}
.x9{left:243.238500px;}
.x21{left:252.372000px;}
.x14{left:256.041000px;}
.x1a{left:259.368000px;}
.xd{left:263.953500px;}
.x15{left:267.996000px;}
.x1b{left:271.323000px;}
.xe{left:275.908500px;}
.x27{left:313.482000px;}
.x1{left:321.249000px;}
.x5{left:329.265000px;}
.xf{left:368.271000px;}
.x1c{left:372.856500px;}
.x16{left:376.182000px;}
.x11{left:378.232500px;}
.x1e{left:382.819500px;}
.x10{left:384.045000px;}
.x2{left:385.488000px;}
.x1d{left:388.630500px;}
.x17{left:391.956000px;}
.x23{left:401.437500px;}
.x22{left:407.248500px;}
.x8{left:442.720500px;}
.x12{left:612.355500px;}
.x1f{left:616.942500px;}
.x18{left:620.268000px;}
.x24{left:623.937000px;}
.x26{left:712.167000px;}
@media print{
.v7{vertical-align:-11.162667pt;}
.v3{vertical-align:-7.968000pt;}
.v8{vertical-align:-5.317333pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:13.136000pt;}
.v2{vertical-align:14.634667pt;}
.v1{vertical-align:19.280000pt;}
.v4{vertical-align:21.941333pt;}
.v6{vertical-align:119.936000pt;}
.ls4{letter-spacing:0.000000pt;}
.lsd{letter-spacing:0.001836pt;}
.ls16{letter-spacing:0.003036pt;}
.ls17{letter-spacing:0.006716pt;}
.ls1a{letter-spacing:2.284756pt;}
.ls1b{letter-spacing:2.652911pt;}
.ls1c{letter-spacing:2.656473pt;}
.ls12{letter-spacing:2.773627pt;}
.ls14{letter-spacing:2.778960pt;}
.lse{letter-spacing:2.849855pt;}
.ls15{letter-spacing:4.345334pt;}
.ls13{letter-spacing:4.350667pt;}
.lsf{letter-spacing:4.687356pt;}
.lsc{letter-spacing:5.791591pt;}
.ls6{letter-spacing:8.820222pt;}
.ls11{letter-spacing:8.852984pt;}
.ls7{letter-spacing:8.873356pt;}
.ls10{letter-spacing:14.757812pt;}
.lsa{letter-spacing:14.771215pt;}
.lsb{letter-spacing:16.684034pt;}
.ls9{letter-spacing:18.437452pt;}
.ls5{letter-spacing:20.369253pt;}
.ls19{letter-spacing:23.564911pt;}
.ls1{letter-spacing:25.105920pt;}
.ls18{letter-spacing:29.967501pt;}
.ls8{letter-spacing:39.744132pt;}
.ls0{letter-spacing:53.128909pt;}
.ls3{letter-spacing:143.510221pt;}
.ls2{letter-spacing:211.320115pt;}
.ws1e{word-spacing:-34.611401pt;}
.ws36{word-spacing:-32.063846pt;}
.ws47{word-spacing:-27.225793pt;}
.ws2e{word-spacing:-25.738045pt;}
.ws51{word-spacing:-25.273293pt;}
.ws50{word-spacing:-25.225472pt;}
.ws1f{word-spacing:-14.760588pt;}
.ws63{word-spacing:-13.652838pt;}
.ws1c{word-spacing:-5.887232pt;}
.ws4c{word-spacing:-5.834099pt;}
.ws3e{word-spacing:-2.805468pt;}
.ws59{word-spacing:-2.654054pt;}
.ws49{word-spacing:-1.849059pt;}
.ws4a{word-spacing:-1.795925pt;}
.ws2f{word-spacing:-0.063761pt;}
.ws29{word-spacing:-0.053134pt;}
.ws34{word-spacing:-0.042507pt;}
.ws64{word-spacing:-0.031881pt;}
.ws12{word-spacing:0.000000pt;}
.ws24{word-spacing:0.010627pt;}
.ws60{word-spacing:0.310835pt;}
.ws66{word-spacing:0.502118pt;}
.ws62{word-spacing:0.693402pt;}
.ws61{word-spacing:1.219430pt;}
.ws3f{word-spacing:1.392107pt;}
.ws2d{word-spacing:1.498375pt;}
.ws5{word-spacing:1.657777pt;}
.ws5a{word-spacing:1.697638pt;}
.ws23{word-spacing:2.029714pt;}
.ws27{word-spacing:2.082848pt;}
.ws7{word-spacing:2.135981pt;}
.ws3{word-spacing:2.189115pt;}
.ws56{word-spacing:2.253932pt;}
.ws54{word-spacing:2.291126pt;}
.ws1a{word-spacing:2.454785pt;}
.ws16{word-spacing:2.701875pt;}
.wsc{word-spacing:2.749696pt;}
.ws9{word-spacing:2.932989pt;}
.ws5b{word-spacing:2.940979pt;}
.ws19{word-spacing:2.986123pt;}
.ws26{word-spacing:3.198659pt;}
.ws5f{word-spacing:3.227904pt;}
.ws20{word-spacing:3.411194pt;}
.ws4e{word-spacing:3.419187pt;}
.ws53{word-spacing:3.658291pt;}
.ws4{word-spacing:3.942533pt;}
.ws22{word-spacing:4.155068pt;}
.ws8{word-spacing:4.367604pt;}
.ws2b{word-spacing:4.426769pt;}
.ws43{word-spacing:4.527005pt;}
.ws41{word-spacing:4.633273pt;}
.ws6{word-spacing:4.686407pt;}
.ws69{word-spacing:5.092915pt;}
.ws38{word-spacing:5.374774pt;}
.ws3a{word-spacing:5.376570pt;}
.ws3c{word-spacing:5.380041pt;}
.ws30{word-spacing:5.391077pt;}
.ws68{word-spacing:5.618944pt;}
.ws57{word-spacing:5.653427pt;}
.ws55{word-spacing:5.690621pt;}
.ws4b{word-spacing:5.749084pt;}
.ws5d{word-spacing:5.858048pt;}
.ws28{word-spacing:5.961620pt;}
.ws48{word-spacing:6.121021pt;}
.ws46{word-spacing:6.174155pt;}
.ws58{word-spacing:6.192794pt;}
.ws42{word-spacing:7.130565pt;}
.ws45{word-spacing:7.821305pt;}
.ws44{word-spacing:7.874439pt;}
.ws40{word-spacing:8.140108pt;}
.ws25{word-spacing:8.883983pt;}
.ws2a{word-spacing:9.112432pt;}
.ws2c{word-spacing:9.521589pt;}
.ws65{word-spacing:9.874995pt;}
.ws14{word-spacing:9.994547pt;}
.wsa{word-spacing:10.371731pt;}
.ws18{word-spacing:11.487542pt;}
.ws67{word-spacing:12.744243pt;}
.ws35{word-spacing:16.354714pt;}
.ws21{word-spacing:16.800929pt;}
.ws4f{word-spacing:18.171904pt;}
.wsb{word-spacing:18.793574pt;}
.ws15{word-spacing:18.841395pt;}
.ws4d{word-spacing:19.606528pt;}
.ws1b{word-spacing:20.042047pt;}
.ws5e{word-spacing:20.371661pt;}
.ws1{word-spacing:20.722347pt;}
.ws5c{word-spacing:22.427955pt;}
.wsd{word-spacing:25.058099pt;}
.wse{word-spacing:27.544781pt;}
.ws0{word-spacing:27.636455pt;}
.ws2{word-spacing:28.615887pt;}
.ws32{word-spacing:38.373279pt;}
.ws10{word-spacing:53.102342pt;}
.ws31{word-spacing:59.042353pt;}
.ws33{word-spacing:79.711427pt;}
.wsf{word-spacing:143.483654pt;}
.ws13{word-spacing:205.820723pt;}
.ws11{word-spacing:233.864966pt;}
.ws17{word-spacing:284.956927pt;}
.ws3d{word-spacing:347.247008pt;}
.ws1d{word-spacing:356.857675pt;}
.ws39{word-spacing:435.732342pt;}
.ws3b{word-spacing:466.783008pt;}
.ws37{word-spacing:515.775008pt;}
.ws52{word-spacing:675.038413pt;}
._e{margin-left:-25.105920pt;}
._3{margin-left:-7.192228pt;}
._5{margin-left:-4.463245pt;}
._21{margin-left:-3.421811pt;}
._0{margin-left:-2.387202pt;}
._4{margin-left:-1.487748pt;}
._6{width:1.487748pt;}
._1{width:2.387202pt;}
._23{width:3.776937pt;}
._1f{width:8.522625pt;}
._1e{width:13.921073pt;}
._15{width:16.794124pt;}
._9{width:17.849157pt;}
._1a{width:18.841395pt;}
._a{width:20.084602pt;}
._19{width:21.625484pt;}
._14{width:23.378901pt;}
._b{width:25.153741pt;}
._7{width:26.566933pt;}
._11{width:28.320351pt;}
._8{width:29.329894pt;}
._22{width:32.103667pt;}
._1d{width:33.743827pt;}
._c{width:35.148288pt;}
._1b{width:36.392877pt;}
._1c{width:37.774357pt;}
._10{width:41.391282pt;}
._d{width:47.677338pt;}
._18{width:65.195254pt;}
._2{width:86.077200pt;}
._24{width:145.876638pt;}
._17{width:291.917463pt;}
._13{width:318.484397pt;}
._f{width:345.051330pt;}
._16{width:371.618263pt;}
._12{width:398.185197pt;}
._20{width:479.020954pt;}
.fs5{font-size:26.566933pt;}
.fs7{font-size:31.880533pt;}
.fs6{font-size:37.193600pt;}
.fs4{font-size:47.820800pt;}
.fs3{font-size:53.133867pt;}
.fs1{font-size:63.761067pt;}
.fs2{font-size:76.513067pt;}
.fs0{font-size:91.815467pt;}
.y0{bottom:0.000000pt;}
.y37{bottom:56.149333pt;}
.y81{bottom:100.384000pt;}
.y36{bottom:104.644000pt;}
.y35{bottom:117.885333pt;}
.y34{bottom:131.128000pt;}
.y33{bottom:144.369333pt;}
.y32{bottom:157.612000pt;}
.y31{bottom:170.853333pt;}
.y30{bottom:184.096000pt;}
.y2f{bottom:197.337333pt;}
.y98{bottom:204.560000pt;}
.y2e{bottom:210.580000pt;}
.y109{bottom:220.262667pt;}
.y2d{bottom:223.821333pt;}
.y108{bottom:230.889333pt;}
.y2c{bottom:237.064000pt;}
.y107{bottom:241.516000pt;}
.y2b{bottom:250.305333pt;}
.y106{bottom:252.142667pt;}
.y105{bottom:262.769333pt;}
.y2a{bottom:263.548000pt;}
.y104{bottom:275.322667pt;}
.y29{bottom:276.789333pt;}
.y103{bottom:285.949333pt;}
.y28{bottom:290.032000pt;}
.y102{bottom:296.576000pt;}
.y100{bottom:303.218667pt;}
.y27{bottom:303.273333pt;}
.y101{bottom:307.202667pt;}
.y26{bottom:316.516000pt;}
.yff{bottom:317.829333pt;}
.y25{bottom:329.757333pt;}
.yfe{bottom:330.382667pt;}
.yfd{bottom:341.009333pt;}
.y24{bottom:343.000000pt;}
.y80{bottom:349.722667pt;}
.yfc{bottom:351.636000pt;}
.y62{bottom:354.660000pt;}
.y23{bottom:356.241333pt;}
.yfa{bottom:358.278667pt;}
.yfb{bottom:362.262667pt;}
.y7f{bottom:365.664000pt;}
.y22{bottom:369.484000pt;}
.y61{bottom:370.600000pt;}
.yf9{bottom:372.890667pt;}
.y21{bottom:382.725333pt;}
.yf8{bottom:385.442667pt;}
.y60{bottom:386.540000pt;}
.y7d{bottom:389.380000pt;}
.y20{bottom:395.968000pt;}
.yf7{bottom:396.069333pt;}
.y79{bottom:401.904000pt;}
.y5f{bottom:402.480000pt;}
.y78{bottom:405.186667pt;}
.y7c{bottom:405.320000pt;}
.yf6{bottom:406.696000pt;}
.y7a{bottom:407.977333pt;}
.y1f{bottom:409.209333pt;}
.yf4{bottom:413.338667pt;}
.yf5{bottom:417.324000pt;}
.y5e{bottom:418.420000pt;}
.y7b{bottom:421.260000pt;}
.y1e{bottom:422.452000pt;}
.yc1{bottom:427.550667pt;}
.yf3{bottom:427.950667pt;}
.y7e{bottom:431.888000pt;}
.y5d{bottom:434.361333pt;}
.y1d{bottom:435.693333pt;}
.yc0{bottom:438.178667pt;}
.yf2{bottom:440.502667pt;}
.y77{bottom:444.710667pt;}
.ybf{bottom:448.805333pt;}
.y1c{bottom:448.936000pt;}
.y5c{bottom:450.301333pt;}
.yf1{bottom:451.129333pt;}
.ybd{bottom:455.446667pt;}
.y97{bottom:458.802667pt;}
.ybe{bottom:459.432000pt;}
.yf0{bottom:461.757333pt;}
.y1b{bottom:462.177333pt;}
.y5b{bottom:466.241333pt;}
.yee{bottom:468.398667pt;}
.y76{bottom:469.230667pt;}
.ybc{bottom:470.058667pt;}
.yef{bottom:472.384000pt;}
.y96{bottom:474.742667pt;}
.y1a{bottom:475.420000pt;}
.y5a{bottom:482.181333pt;}
.ybb{bottom:482.612000pt;}
.yed{bottom:483.010667pt;}
.y19{bottom:488.661333pt;}
.yba{bottom:493.238667pt;}
.yec{bottom:495.562667pt;}
.y59{bottom:498.121333pt;}
.y18{bottom:501.904000pt;}
.y94{bottom:503.361333pt;}
.yb9{bottom:503.865333pt;}
.yeb{bottom:506.190667pt;}
.y75{bottom:509.954667pt;}
.yb7{bottom:510.506667pt;}
.y58{bottom:514.061333pt;}
.yb8{bottom:514.492000pt;}
.y17{bottom:515.145333pt;}
.y90{bottom:515.885333pt;}
.yea{bottom:516.817333pt;}
.y8f{bottom:519.169333pt;}
.y93{bottom:519.301333pt;}
.y91{bottom:521.958667pt;}
.ye8{bottom:523.458667pt;}
.yb6{bottom:525.118667pt;}
.ye9{bottom:527.444000pt;}
.y16{bottom:528.388000pt;}
.y57{bottom:530.002667pt;}
.y92{bottom:535.242667pt;}
.yb5{bottom:537.672000pt;}
.ye7{bottom:538.070667pt;}
.y15{bottom:541.629333pt;}
.y95{bottom:545.869333pt;}
.y56{bottom:545.942667pt;}
.yb4{bottom:548.298667pt;}
.ye6{bottom:550.622667pt;}
.y14{bottom:554.872000pt;}
.yb3{bottom:558.925333pt;}
.ye5{bottom:561.250667pt;}
.y55{bottom:561.882667pt;}
.y8e{bottom:563.594667pt;}
.yb1{bottom:565.566667pt;}
.y13{bottom:568.113333pt;}
.yb2{bottom:569.552000pt;}
.ye4{bottom:571.877333pt;}
.y54{bottom:577.822667pt;}
.yb0{bottom:580.178667pt;}
.y12{bottom:581.356000pt;}
.ye3{bottom:582.504000pt;}
.y8d{bottom:588.114667pt;}
.yaf{bottom:592.732000pt;}
.ye2{bottom:593.130667pt;}
.y53{bottom:593.762667pt;}
.y11{bottom:594.597333pt;}
.yae{bottom:603.358667pt;}
.y10{bottom:607.838667pt;}
.y52{bottom:609.702667pt;}
.yad{bottom:613.985333pt;}
.ye1{bottom:614.412000pt;}
.yab{bottom:620.626667pt;}
.yf{bottom:621.081333pt;}
.yac{bottom:624.612000pt;}
.y51{bottom:625.644000pt;}
.ye0{bottom:629.024000pt;}
.y8c{bottom:629.682667pt;}
.ye{bottom:634.322667pt;}
.yaa{bottom:635.238667pt;}
.y50{bottom:641.584000pt;}
.ya9{bottom:647.792000pt;}
.yd{bottom:653.422667pt;}
.y4f{bottom:657.524000pt;}
.ya8{bottom:658.418667pt;}
.ydf{bottom:661.698667pt;}
.ya7{bottom:669.045333pt;}
.yc{bottom:673.348000pt;}
.ya5{bottom:675.686667pt;}
.yde{bottom:676.310667pt;}
.ya6{bottom:679.672000pt;}
.y4e{bottom:680.133333pt;}
.yb{bottom:689.288000pt;}
.ya4{bottom:690.298667pt;}
.ya{bottom:705.228000pt;}
.ya3{bottom:711.580000pt;}
.y4d{bottom:713.738667pt;}
.y9{bottom:721.168000pt;}
.ydd{bottom:725.422667pt;}
.ya2{bottom:726.192000pt;}
.ydc{bottom:736.050667pt;}
.y8{bottom:737.108000pt;}
.ydb{bottom:746.677333pt;}
.y4c{bottom:748.396000pt;}
.y7{bottom:753.049333pt;}
.yd9{bottom:753.318667pt;}
.yda{bottom:757.304000pt;}
.ya1{bottom:758.868000pt;}
.y74{bottom:759.293333pt;}
.y4b{bottom:761.638667pt;}
.yd8{bottom:767.930667pt;}
.y6{bottom:768.989333pt;}
.ya0{bottom:773.480000pt;}
.y4a{bottom:774.880000pt;}
.y73{bottom:775.233333pt;}
.yd7{bottom:780.482667pt;}
.y5{bottom:784.929333pt;}
.y49{bottom:788.122667pt;}
.yd6{bottom:791.110667pt;}
.y71{bottom:798.950667pt;}
.y4{bottom:800.869333pt;}
.y48{bottom:801.364000pt;}
.yd5{bottom:801.737333pt;}
.y9f{bottom:803.560000pt;}
.yd3{bottom:808.378667pt;}
.y6d{bottom:811.473333pt;}
.yd4{bottom:812.364000pt;}
.y47{bottom:814.606667pt;}
.y6c{bottom:814.757333pt;}
.y70{bottom:814.890667pt;}
.y6e{bottom:817.548000pt;}
.y9e{bottom:819.500000pt;}
.yd2{bottom:822.990667pt;}
.y46{bottom:827.848000pt;}
.y6f{bottom:830.830667pt;}
.y3{bottom:832.488000pt;}
.y9d{bottom:835.440000pt;}
.yd1{bottom:835.544000pt;}
.y45{bottom:841.090667pt;}
.y72{bottom:841.457333pt;}
.yd0{bottom:846.170667pt;}
.y9c{bottom:851.380000pt;}
.y6b{bottom:854.281333pt;}
.y44{bottom:854.332000pt;}
.ycf{bottom:856.797333pt;}
.ycd{bottom:863.438667pt;}
.y9b{bottom:867.320000pt;}
.yce{bottom:867.424000pt;}
.y43{bottom:867.574667pt;}
.ycc{bottom:878.050667pt;}
.y6a{bottom:878.801333pt;}
.y42{bottom:880.816000pt;}
.y9a{bottom:883.260000pt;}
.y8b{bottom:883.924000pt;}
.y2{bottom:889.700000pt;}
.ycb{bottom:890.604000pt;}
.y41{bottom:894.058667pt;}
.y99{bottom:899.201333pt;}
.y8a{bottom:899.864000pt;}
.yca{bottom:901.230667pt;}
.y40{bottom:907.300000pt;}
.yc9{bottom:911.857333pt;}
.y69{bottom:915.141333pt;}
.yc7{bottom:918.498667pt;}
.y3f{bottom:920.542667pt;}
.yc8{bottom:922.484000pt;}
.y88{bottom:928.484000pt;}
.y68{bottom:931.081333pt;}
.yc6{bottom:933.110667pt;}
.y3e{bottom:933.784000pt;}
.y84{bottom:941.006667pt;}
.y67{bottom:943.362667pt;}
.y83{bottom:944.290667pt;}
.y87{bottom:944.424000pt;}
.y66{bottom:947.021333pt;}
.y3d{bottom:947.026667pt;}
.y85{bottom:947.080000pt;}
.yc5{bottom:954.392000pt;}
.y1{bottom:957.445333pt;}
.y3c{bottom:960.268000pt;}
.y86{bottom:960.364000pt;}
.y65{bottom:962.961333pt;}
.yc4{bottom:969.004000pt;}
.y89{bottom:970.990667pt;}
.y3b{bottom:973.510667pt;}
.y64{bottom:978.902667pt;}
.y3a{bottom:986.752000pt;}
.y82{bottom:988.717333pt;}
.y39{bottom:999.994667pt;}
.yc3{bottom:1001.680000pt;}
.y63{bottom:1009.782667pt;}
.y38{bottom:1013.236000pt;}
.yc2{bottom:1016.292000pt;}
.he{height:2.125355pt;}
.hf{height:26.296709pt;}
.h10{height:26.302043pt;}
.h12{height:27.895200pt;}
.h7{height:33.187635pt;}
.h6{height:35.865600pt;}
.h8{height:36.928037pt;}
.h9{height:38.402844pt;}
.h5{height:39.850400pt;}
.h11{height:41.053510pt;}
.hc{height:41.058844pt;}
.hb{height:44.632747pt;}
.h3{height:44.887791pt;}
.h4{height:53.559147pt;}
.ha{height:54.485067pt;}
.h2{height:64.179011pt;}
.hd{height:122.061355pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x7{left:73.676000pt;}
.x6{left:78.196000pt;}
.x3{left:96.000000pt;}
.xa{left:103.970667pt;}
.xc{left:106.626667pt;}
.x4{left:115.925333pt;}
.x25{left:140.284000pt;}
.x19{left:151.345333pt;}
.x20{left:155.226667pt;}
.x13{left:161.350667pt;}
.xb{left:210.161333pt;}
.x9{left:216.212000pt;}
.x21{left:224.330667pt;}
.x14{left:227.592000pt;}
.x1a{left:230.549333pt;}
.xd{left:234.625333pt;}
.x15{left:238.218667pt;}
.x1b{left:241.176000pt;}
.xe{left:245.252000pt;}
.x27{left:278.650667pt;}
.x1{left:285.554667pt;}
.x5{left:292.680000pt;}
.xf{left:327.352000pt;}
.x1c{left:331.428000pt;}
.x16{left:334.384000pt;}
.x11{left:336.206667pt;}
.x1e{left:340.284000pt;}
.x10{left:341.373333pt;}
.x2{left:342.656000pt;}
.x1d{left:345.449333pt;}
.x17{left:348.405333pt;}
.x23{left:356.833333pt;}
.x22{left:361.998667pt;}
.x8{left:393.529333pt;}
.x12{left:544.316000pt;}
.x1f{left:548.393333pt;}
.x18{left:551.349333pt;}
.x24{left:554.610667pt;}
.x26{left:633.037333pt;}
}




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