
    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_ffe3a8dace48d4af0b6fc44e.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.002930;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_97d8be1c46460b974d2b4445.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.873535;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_fc1c742d5077376a1c4ae714.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.895996;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_eff74fe5af75feedca4d4c15.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.862793;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);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:1.457280px;}
.v2{vertical-align:12.983040px;}
.ls2c{letter-spacing:-1.656000px;}
.ls20{letter-spacing:-1.589760px;}
.ls2d{letter-spacing:-1.523520px;}
.ls21{letter-spacing:-1.457280px;}
.ls1f{letter-spacing:-0.927360px;}
.ls28{letter-spacing:-0.861120px;}
.ls7{letter-spacing:-0.794880px;}
.lsc{letter-spacing:-0.728640px;}
.lsb{letter-spacing:-0.662400px;}
.ls2f{letter-spacing:-0.596160px;}
.ls1d{letter-spacing:-0.529920px;}
.ls1c{letter-spacing:-0.463680px;}
.ls9{letter-spacing:-0.397440px;}
.ls8{letter-spacing:-0.331200px;}
.ls5{letter-spacing:-0.264960px;}
.ls30{letter-spacing:-0.198720px;}
.ls1e{letter-spacing:-0.132480px;}
.ls6{letter-spacing:-0.066240px;}
.ls2{letter-spacing:0.000000px;}
.ls33{letter-spacing:0.013248px;}
.ls35{letter-spacing:0.039744px;}
.ls32{letter-spacing:0.046368px;}
.lsa{letter-spacing:0.066240px;}
.ls39{letter-spacing:0.072864px;}
.ls34{letter-spacing:0.086112px;}
.ls0{letter-spacing:0.132480px;}
.ls38{letter-spacing:0.139104px;}
.ls3{letter-spacing:0.168480px;}
.ls2e{letter-spacing:0.192096px;}
.ls27{letter-spacing:0.198720px;}
.ls24{letter-spacing:0.251712px;}
.ls10{letter-spacing:0.264960px;}
.ls36{letter-spacing:0.324576px;}
.ls17{letter-spacing:0.331200px;}
.ls4{letter-spacing:0.360000px;}
.ls1{letter-spacing:0.377568px;}
.ls2a{letter-spacing:0.861120px;}
.ls1a{letter-spacing:1.589760px;}
.ls37{letter-spacing:2.185920px;}
.ls23{letter-spacing:2.318400px;}
.ls2b{letter-spacing:3.047040px;}
.lsd{letter-spacing:3.775680px;}
.ls25{letter-spacing:4.438080px;}
.ls13{letter-spacing:5.166720px;}
.ls14{letter-spacing:5.179968px;}
.ls18{letter-spacing:5.895360px;}
.ls12{letter-spacing:5.908608px;}
.ls31{letter-spacing:6.425280px;}
.ls11{letter-spacing:6.624000px;}
.ls19{letter-spacing:7.352640px;}
.lse{letter-spacing:8.809920px;}
.ls16{letter-spacing:10.200960px;}
.ls15{letter-spacing:10.929600px;}
.ls1b{letter-spacing:12.386880px;}
.ls22{letter-spacing:13.844160px;}
.ls26{letter-spacing:15.301440px;}
.ls29{letter-spacing:16.692480px;}
.lsf{letter-spacing:18.321984px;}
.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;}
}
.ws91{word-spacing:-15.301440px;}
.ws16{word-spacing:-15.235200px;}
.ws1{word-spacing:-15.102720px;}
.ws4{word-spacing:-15.036480px;}
.ws0{word-spacing:-14.970240px;}
.ws6{word-spacing:-14.904000px;}
.ws4b{word-spacing:-14.837760px;}
.ws90{word-spacing:-14.771520px;}
.ws3{word-spacing:-14.705280px;}
.ws98{word-spacing:-14.639040px;}
.ws2{word-spacing:-14.572800px;}
.ws18{word-spacing:-14.506560px;}
.ws19{word-spacing:-14.440320px;}
.ws99{word-spacing:-14.374080px;}
.ws17{word-spacing:-14.307840px;}
.ws5{word-spacing:-14.241600px;}
.ws93{word-spacing:-14.175360px;}
.ws8b{word-spacing:-14.109120px;}
.ws94{word-spacing:-14.042880px;}
.ws5d{word-spacing:-4.438080px;}
.ws6a{word-spacing:-4.106880px;}
.ws5c{word-spacing:-3.378240px;}
.ws6b{word-spacing:-3.179520px;}
.ws5e{word-spacing:-2.715840px;}
.ws31{word-spacing:-2.649600px;}
.ws57{word-spacing:-2.450880px;}
.ws30{word-spacing:-2.252160px;}
.ws71{word-spacing:-2.119680px;}
.ws69{word-spacing:-1.920960px;}
.ws7c{word-spacing:-1.722240px;}
.ws72{word-spacing:-1.523520px;}
.ws2f{word-spacing:-1.457280px;}
.ws61{word-spacing:-1.391040px;}
.ws73{word-spacing:-1.324800px;}
.ws2d{word-spacing:-1.192320px;}
.ws2e{word-spacing:-0.993600px;}
.ws8f{word-spacing:-0.927360px;}
.ws97{word-spacing:-0.861120px;}
.ws3b{word-spacing:-0.794880px;}
.ws9{word-spacing:-0.792000px;}
.ws10{word-spacing:-0.728640px;}
.ws12{word-spacing:-0.662400px;}
.wsf{word-spacing:-0.529920px;}
.ws8{word-spacing:-0.505440px;}
.ws96{word-spacing:-0.463680px;}
.ws95{word-spacing:-0.397440px;}
.ws14{word-spacing:-0.331200px;}
.ws25{word-spacing:-0.264960px;}
.ws8d{word-spacing:-0.198720px;}
.ws3a{word-spacing:-0.132480px;}
.ws56{word-spacing:-0.066240px;}
.ws7{word-spacing:0.000000px;}
.wse{word-spacing:0.066240px;}
.ws13{word-spacing:0.132480px;}
.wsb{word-spacing:0.198720px;}
.ws11{word-spacing:0.264960px;}
.ws8c{word-spacing:0.331200px;}
.wsa{word-spacing:0.397440px;}
.wsd{word-spacing:0.463680px;}
.ws36{word-spacing:0.596160px;}
.ws15{word-spacing:0.662400px;}
.ws5b{word-spacing:0.728640px;}
.ws47{word-spacing:0.794880px;}
.ws5f{word-spacing:0.861120px;}
.wsc{word-spacing:0.927360px;}
.ws92{word-spacing:0.993600px;}
.ws8e{word-spacing:1.059840px;}
.ws22{word-spacing:1.126080px;}
.ws7d{word-spacing:1.258560px;}
.ws23{word-spacing:1.324800px;}
.ws51{word-spacing:1.457280px;}
.ws87{word-spacing:1.523520px;}
.ws42{word-spacing:1.589760px;}
.ws41{word-spacing:1.656000px;}
.ws3c{word-spacing:1.854720px;}
.ws60{word-spacing:1.987200px;}
.ws70{word-spacing:2.053440px;}
.ws1f{word-spacing:2.185920px;}
.ws8a{word-spacing:2.252160px;}
.ws20{word-spacing:2.384640px;}
.ws1e{word-spacing:2.583360px;}
.ws6c{word-spacing:2.914560px;}
.ws1d{word-spacing:3.113280px;}
.ws1b{word-spacing:3.312000px;}
.ws4f{word-spacing:3.510720px;}
.ws62{word-spacing:3.643200px;}
.ws1a{word-spacing:3.841920px;}
.ws3d{word-spacing:4.040640px;}
.ws50{word-spacing:4.173120px;}
.ws4c{word-spacing:4.305600px;}
.ws4e{word-spacing:4.504320px;}
.ws4d{word-spacing:4.703040px;}
.ws2a{word-spacing:5.034240px;}
.ws29{word-spacing:5.232960px;}
.ws46{word-spacing:5.431680px;}
.ws27{word-spacing:5.961600px;}
.ws26{word-spacing:6.160320px;}
.ws5a{word-spacing:6.359040px;}
.ws7e{word-spacing:6.491520px;}
.ws4a{word-spacing:6.624000px;}
.ws28{word-spacing:6.690240px;}
.ws37{word-spacing:6.888960px;}
.ws65{word-spacing:7.087680px;}
.ws38{word-spacing:7.220160px;}
.ws74{word-spacing:7.418880px;}
.ws83{word-spacing:7.617600px;}
.ws6e{word-spacing:7.948800px;}
.ws6d{word-spacing:8.147520px;}
.ws39{word-spacing:8.280000px;}
.ws75{word-spacing:8.346240px;}
.ws1c{word-spacing:8.876160px;}
.ws21{word-spacing:9.074880px;}
.ws78{word-spacing:9.207360px;}
.ws79{word-spacing:9.604800px;}
.ws2b{word-spacing:9.803520px;}
.ws2c{word-spacing:10.068480px;}
.ws43{word-spacing:10.267200px;}
.ws33{word-spacing:10.465920px;}
.ws32{word-spacing:10.995840px;}
.ws34{word-spacing:11.194560px;}
.ws59{word-spacing:11.724480px;}
.ws45{word-spacing:12.453120px;}
.ws44{word-spacing:12.651840px;}
.ws52{word-spacing:13.181760px;}
.ws58{word-spacing:13.711680px;}
.ws53{word-spacing:13.910400px;}
.ws54{word-spacing:14.109120px;}
.ws7a{word-spacing:14.639040px;}
.ws64{word-spacing:14.970240px;}
.ws6f{word-spacing:15.367680px;}
.ws63{word-spacing:15.566400px;}
.ws55{word-spacing:16.030080px;}
.ws67{word-spacing:16.228800px;}
.ws49{word-spacing:16.626240px;}
.ws68{word-spacing:16.758720px;}
.ws66{word-spacing:16.957440px;}
.ws48{word-spacing:17.487360px;}
.ws24{word-spacing:18.216000px;}
.ws84{word-spacing:18.944640px;}
.ws35{word-spacing:19.143360px;}
.ws86{word-spacing:19.673280px;}
.ws85{word-spacing:19.872000px;}
.ws88{word-spacing:20.070720px;}
.ws89{word-spacing:21.792960px;}
.ws82{word-spacing:24.707520px;}
.ws7f{word-spacing:26.164800px;}
.ws80{word-spacing:26.363520px;}
.ws81{word-spacing:26.496000px;}
.ws7b{word-spacing:29.741760px;}
.ws3e{word-spacing:37.955520px;}
.ws3f{word-spacing:38.352960px;}
.ws40{word-spacing:39.081600px;}
.ws77{word-spacing:41.267520px;}
.ws76{word-spacing:41.466240px;}
._9{margin-left:-6.357600px;}
._5{margin-left:-3.600576px;}
._4{margin-left:-2.411136px;}
._0{margin-left:-1.246752px;}
._1{width:1.046592px;}
._8{width:2.221920px;}
._3{width:5.630400px;}
._7{width:8.288640px;}
._6{width:10.240704px;}
._2{width:17.719776px;}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:66.240000px;}
.fs2{font-size:72.000000px;}
.fs1{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y2{bottom:57.786480px;}
.y1{bottom:77.940000px;}
.y58{bottom:112.815360px;}
.y140{bottom:114.968160px;}
.y114{bottom:115.481520px;}
.y166{bottom:131.147280px;}
.ya6{bottom:132.240240px;}
.yc5{bottom:132.256800px;}
.y57{bottom:134.591760px;}
.y13f{bottom:134.956080px;}
.y113{bottom:135.635040px;}
.y2b{bottom:138.007440px;}
.yd3{bottom:144.312480px;}
.y81{bottom:144.329040px;}
.y165{bottom:151.300800px;}
.ya5{bottom:154.016640px;}
.yc4{bottom:154.033200px;}
.y13e{bottom:155.109600px;}
.y56{bottom:156.368160px;}
.yeb{bottom:156.401280px;}
.y2a{bottom:159.783840px;}
.y195{bottom:163.373040px;}
.yd2{bottom:166.088880px;}
.y80{bottom:166.105440px;}
.y112{bottom:167.678640px;}
.y102{bottom:168.258240px;}
.y178{bottom:171.454320px;}
.y13d{bottom:175.263120px;}
.ya4{bottom:175.793040px;}
.yc3{bottom:175.809600px;}
.y55{bottom:178.144560px;}
.yea{bottom:178.177680px;}
.y29{bottom:181.378080px;}
.y164{bottom:183.344400px;}
.y194{bottom:183.360960px;}
.y111{bottom:187.832160px;}
.yd1{bottom:187.865280px;}
.y7f{bottom:187.881840px;}
.y101{bottom:190.034640px;}
.yc2{bottom:197.586000px;}
.y54{bottom:199.738800px;}
.ye9{bottom:199.771920px;}
.y28{bottom:203.154480px;}
.y163{bottom:203.497920px;}
.y193{bottom:203.514480px;}
.y13c{bottom:207.488880px;}
.y110{bottom:207.985680px;}
.ya3{bottom:209.459520px;}
.y7e{bottom:209.476080px;}
.y100{bottom:211.811040px;}
.y53{bottom:221.515200px;}
.ye8{bottom:221.548320px;}
.y162{bottom:223.651440px;}
.y13b{bottom:227.642400px;}
.ya2{bottom:231.235920px;}
.y7d{bottom:231.252480px;}
.yff{bottom:233.587440px;}
.y192{bottom:235.740240px;}
.y27{bottom:236.986560px;}
.y10f{bottom:240.211440px;}
.y52{bottom:243.291600px;}
.ye7{bottom:243.324720px;}
.y177{bottom:243.804960px;}
.y13a{bottom:247.795920px;}
.ya1{bottom:253.012320px;}
.yc1{bottom:253.028880px;}
.yfe{bottom:255.363840px;}
.y161{bottom:255.877200px;}
.y191{bottom:255.893760px;}
.y26{bottom:258.580800px;}
.y10e{bottom:260.364960px;}
.y51{bottom:265.068000px;}
.y7c{bottom:265.084560px;}
.ye6{bottom:265.101120px;}
.ya0{bottom:274.788720px;}
.yc0{bottom:274.805280px;}
.y160{bottom:276.030720px;}
.y190{bottom:276.047280px;}
.yfd{bottom:276.958080px;}
.y139{bottom:279.839520px;}
.y10d{bottom:280.352880px;}
.y25{bottom:280.357200px;}
.y50{bottom:286.662240px;}
.y7b{bottom:286.678800px;}
.ye5{bottom:286.695360px;}
.y15f{bottom:296.184240px;}
.y18f{bottom:296.200800px;}
.y9f{bottom:296.382960px;}
.ybf{bottom:296.399520px;}
.yfc{bottom:298.734480px;}
.y138{bottom:299.993040px;}
.y10c{bottom:300.506400px;}
.y24{bottom:302.133600px;}
.y4f{bottom:308.438640px;}
.y7a{bottom:308.455200px;}
.y15e{bottom:316.172160px;}
.y18e{bottom:316.188720px;}
.y9e{bottom:318.159360px;}
.ybe{bottom:318.175920px;}
.y137{bottom:320.146560px;}
.ye4{bottom:320.527440px;}
.y176{bottom:328.227840px;}
.y4e{bottom:330.215040px;}
.y79{bottom:330.231600px;}
.yfb{bottom:332.400960px;}
.y10b{bottom:332.732160px;}
.y23{bottom:335.800080px;}
.y9d{bottom:339.935760px;}
.ybd{bottom:339.952320px;}
.y136{bottom:340.300080px;}
.ye3{bottom:342.303840px;}
.y175{bottom:348.381360px;}
.y15d{bottom:348.397920px;}
.y18d{bottom:348.414480px;}
.y78{bottom:352.008000px;}
.y10a{bottom:352.885680px;}
.yfa{bottom:354.177360px;}
.y22{bottom:357.576480px;}
.yd0{bottom:361.712160px;}
.y4d{bottom:363.881520px;}
.ye2{bottom:363.898080px;}
.y15c{bottom:368.551440px;}
.y18c{bottom:368.568000px;}
.y135{bottom:372.343680px;}
.y109{bottom:373.039200px;}
.y77{bottom:373.602240px;}
.ybc{bottom:373.618800px;}
.yf9{bottom:375.953760px;}
.y21{bottom:379.352880px;}
.y174{bottom:380.607120px;}
.ycf{bottom:383.306400px;}
.y4c{bottom:385.657920px;}
.ye1{bottom:385.674480px;}
.y15b{bottom:388.704960px;}
.y18b{bottom:388.721520px;}
.y134{bottom:392.497200px;}
.y108{bottom:393.192720px;}
.y76{bottom:395.378640px;}
.ybb{bottom:395.395200px;}
.yf8{bottom:397.730160px;}
.y173{bottom:400.760640px;}
.y20{bottom:400.947120px;}
.yce{bottom:405.082800px;}
.y4b{bottom:407.434320px;}
.ye0{bottom:407.450880px;}
.y18a{bottom:408.875040px;}
.y133{bottom:412.650720px;}
.y75{bottom:417.155040px;}
.yba{bottom:417.171600px;}
.yf7{bottom:419.324400px;}
.y15a{bottom:420.748560px;}
.y1f{bottom:422.723520px;}
.y107{bottom:426.859200px;}
.y4a{bottom:429.210720px;}
.ydf{bottom:429.227280px;}
.y132{bottom:432.804240px;}
.ycd{bottom:438.914880px;}
.y74{bottom:438.931440px;}
.yb9{bottom:438.948000px;}
.y159{bottom:440.902080px;}
.y189{bottom:440.918640px;}
.yf6{bottom:441.100800px;}
.y1e{bottom:444.499920px;}
.y49{bottom:450.804960px;}
.yde{bottom:450.821520px;}
.y131{bottom:452.957760px;}
.ycc{bottom:460.509120px;}
.y73{bottom:460.525680px;}
.y158{bottom:461.055600px;}
.y188{bottom:461.072160px;}
.yf5{bottom:462.877200px;}
.y1d{bottom:466.276320px;}
.y48{bottom:472.581360px;}
.y9c{bottom:472.597920px;}
.yb8{bottom:472.614480px;}
.y187{bottom:481.225680px;}
.ycb{bottom:482.285520px;}
.y72{bottom:482.302080px;}
.yf4{bottom:484.653600px;}
.y130{bottom:485.183520px;}
.y1c{bottom:488.052720px;}
.y157{bottom:493.281360px;}
.y47{bottom:494.357760px;}
.ydd{bottom:494.374320px;}
.yb7{bottom:494.390880px;}
.y186{bottom:501.379200px;}
.yca{bottom:504.061920px;}
.y71{bottom:504.078480px;}
.y12f{bottom:505.171440px;}
.y9b{bottom:506.430000px;}
.y1b{bottom:509.646960px;}
.y156{bottom:513.434880px;}
.y46{bottom:516.134160px;}
.ydc{bottom:516.150720px;}
.yb6{bottom:516.167280px;}
.y12e{bottom:525.324960px;}
.y70{bottom:525.854880px;}
.yf3{bottom:528.024240px;}
.y1a{bottom:531.423360px;}
.y155{bottom:533.588400px;}
.y185{bottom:533.604960px;}
.y45{bottom:537.728400px;}
.ydb{bottom:537.744960px;}
.yb5{bottom:537.761520px;}
.y9a{bottom:540.096480px;}
.y12d{bottom:545.478480px;}
.y6f{bottom:547.449120px;}
.yf2{bottom:549.800640px;}
.y19{bottom:553.199760px;}
.y154{bottom:553.576320px;}
.y184{bottom:553.592880px;}
.y44{bottom:559.504800px;}
.yb4{bottom:559.537920px;}
.y99{bottom:561.872880px;}
.y172{bottom:565.632000px;}
.yda{bottom:571.577040px;}
.y183{bottom:573.746400px;}
.y18{bottom:574.976160px;}
.y12c{bottom:577.704240px;}
.y43{bottom:581.281200px;}
.yb3{bottom:581.314320px;}
.y98{bottom:583.467120px;}
.y171{bottom:585.785520px;}
.y153{bottom:585.802080px;}
.yd9{bottom:593.353440px;}
.y182{bottom:593.899920px;}
.y17{bottom:596.570400px;}
.y12b{bottom:597.857760px;}
.y6e{bottom:603.057600px;}
.yb2{bottom:603.090720px;}
.y97{bottom:605.243520px;}
.y170{bottom:605.939040px;}
.y152{bottom:605.955600px;}
.y42{bottom:614.947680px;}
.y12a{bottom:618.011280px;}
.y6d{bottom:624.651840px;}
.yb1{bottom:624.684960px;}
.y151{bottom:626.109120px;}
.y181{bottom:626.125680px;}
.y96{bottom:627.019920px;}
.y16{bottom:630.402480px;}
.y41{bottom:636.724080px;}
.y16f{bottom:637.982640px;}
.y129{bottom:637.999200px;}
.y150{bottom:646.262640px;}
.y180{bottom:646.279200px;}
.y6c{bottom:646.428240px;}
.yf1{bottom:648.796320px;}
.y15{bottom:651.996720px;}
.y16e{bottom:658.136160px;}
.y128{bottom:658.152720px;}
.y40{bottom:658.500480px;}
.yb0{bottom:658.517040px;}
.y95{bottom:660.686400px;}
.y17f{bottom:666.432720px;}
.y6b{bottom:668.204640px;}
.yf0{bottom:670.390560px;}
.y14{bottom:673.773120px;}
.y16d{bottom:678.289680px;}
.y14f{bottom:678.306240px;}
.y3f{bottom:680.276880px;}
.yaf{bottom:680.293440px;}
.y94{bottom:682.462800px;}
.y6a{bottom:689.981040px;}
.y127{bottom:690.378480px;}
.yef{bottom:692.166960px;}
.y13{bottom:695.549520px;}
.y16c{bottom:698.443200px;}
.y14e{bottom:698.459760px;}
.y17e{bottom:698.476320px;}
.y3e{bottom:701.871120px;}
.yae{bottom:701.887680px;}
.y93{bottom:704.239200px;}
.y126{bottom:710.532000px;}
.y69{bottom:711.575280px;}
.yee{bottom:713.943360px;}
.y12{bottom:717.325920px;}
.y14d{bottom:718.613280px;}
.y17d{bottom:718.629840px;}
.y3d{bottom:723.647520px;}
.yad{bottom:723.664080px;}
.y92{bottom:726.015600px;}
.y16b{bottom:730.668960px;}
.y125{bottom:730.685520px;}
.y68{bottom:733.351680px;}
.yed{bottom:735.719760px;}
.y14c{bottom:738.766800px;}
.y17c{bottom:738.783360px;}
.y11{bottom:738.920160px;}
.y3c{bottom:745.423920px;}
.yac{bottom:745.440480px;}
.y91{bottom:747.609840px;}
.y16a{bottom:750.822480px;}
.y124{bottom:750.839040px;}
.yc9{bottom:755.128080px;}
.yec{bottom:757.314000px;}
.y17b{bottom:758.936880px;}
.y67{bottom:767.183760px;}
.y90{bottom:769.386240px;}
.y169{bottom:770.976000px;}
.y123{bottom:770.992560px;}
.y10{bottom:772.752240px;}
.y3b{bottom:779.090400px;}
.yab{bottom:779.106960px;}
.yc8{bottom:788.794560px;}
.y168{bottom:790.963920px;}
.y14b{bottom:790.980480px;}
.y8f{bottom:791.162640px;}
.y66{bottom:800.850240px;}
.y3a{bottom:800.866800px;}
.y122{bottom:803.036160px;}
.yf{bottom:806.418720px;}
.y14a{bottom:811.134000px;}
.yaa{bottom:812.939040px;}
.yc7{bottom:822.626640px;}
.y39{bottom:822.643200px;}
.y121{bottom:823.189680px;}
.y8e{bottom:824.829120px;}
.y149{bottom:831.287520px;}
.y65{bottom:834.516720px;}
.ye{bottom:840.250800px;}
.y120{bottom:843.343200px;}
.y38{bottom:844.419600px;}
.y8d{bottom:846.605520px;}
.y17a{bottom:851.441040px;}
.y64{bottom:856.293120px;}
.y106{bottom:856.309680px;}
.yd{bottom:862.027200px;}
.y11f{bottom:863.496720px;}
.y148{bottom:863.513280px;}
.y37{bottom:866.013840px;}
.y8c{bottom:868.381920px;}
.y63{bottom:878.069520px;}
.y105{bottom:878.086080px;}
.yc{bottom:883.621440px;}
.y147{bottom:883.666800px;}
.y36{bottom:887.790240px;}
.y8b{bottom:890.158320px;}
.y11e{bottom:895.540320px;}
.yc6{bottom:899.845920px;}
.y104{bottom:899.862480px;}
.y146{bottom:903.820320px;}
.yb{bottom:905.397840px;}
.y35{bottom:909.566640px;}
.y62{bottom:911.736000px;}
.y8a{bottom:911.752560px;}
.y11d{bottom:915.693840px;}
.y103{bottom:921.456720px;}
.y145{bottom:923.973840px;}
.ya{bottom:927.174240px;}
.yd8{bottom:931.343040px;}
.y61{bottom:933.512400px;}
.y89{bottom:933.528960px;}
.y11c{bottom:935.847360px;}
.y34{bottom:943.233120px;}
.y9{bottom:948.950640px;}
.yd7{bottom:952.937280px;}
.y60{bottom:955.288800px;}
.y88{bottom:955.305360px;}
.y11b{bottom:956.000880px;}
.y144{bottom:956.017440px;}
.y33{bottom:965.009520px;}
.yd6{bottom:974.713680px;}
.y11a{bottom:976.154400px;}
.y143{bottom:976.170960px;}
.y5f{bottom:977.065200px;}
.y87{bottom:977.081760px;}
.y8{bottom:982.617120px;}
.y32{bottom:986.785920px;}
.y142{bottom:996.324480px;}
.yd5{bottom:996.490080px;}
.y5e{bottom:998.659440px;}
.y86{bottom:998.676000px;}
.y31{bottom:1008.380160px;}
.y7{bottom:1016.283600px;}
.y141{bottom:1016.478000px;}
.yd4{bottom:1018.266480px;}
.y5d{bottom:1020.435840px;}
.y85{bottom:1020.452400px;}
.y119{bottom:1028.368080px;}
.y30{bottom:1030.156560px;}
.ya9{bottom:1032.508080px;}
.y6{bottom:1038.060000px;}
.y5c{bottom:1042.212240px;}
.y84{bottom:1042.228800px;}
.y118{bottom:1048.521600px;}
.y2f{bottom:1051.932960px;}
.ya8{bottom:1054.284480px;}
.y5{bottom:1060.380000px;}
.y5b{bottom:1063.988640px;}
.y83{bottom:1064.005200px;}
.y117{bottom:1068.675120px;}
.y2e{bottom:1073.709360px;}
.ya7{bottom:1075.878720px;}
.y167{bottom:1080.747360px;}
.y82{bottom:1085.599440px;}
.y179{bottom:1088.828640px;}
.y4{bottom:1096.917660px;}
.y5a{bottom:1097.655120px;}
.y116{bottom:1100.900880px;}
.y2d{bottom:1107.375840px;}
.y59{bottom:1119.431520px;}
.y115{bottom:1121.054400px;}
.y3{bottom:1136.700000px;}
.y2c{bottom:1141.207920px;}
.h5{height:46.057500px;}
.h2{height:54.628594px;}
.h3{height:58.573125px;}
.h6{height:59.057618px;}
.h4{height:59.378906px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:127.620000px;}
.x8{left:163.604880px;}
.x7{left:223.021440px;}
.x4{left:277.920000px;}
.x6{left:323.640000px;}
.x5{left:371.340000px;}
.xa{left:404.436960px;}
.x9{left:438.120000px;}
.x1{left:442.260000px;}
.x3{left:446.400000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:1.295360pt;}
.v2{vertical-align:11.540480pt;}
.ls2c{letter-spacing:-1.472000pt;}
.ls20{letter-spacing:-1.413120pt;}
.ls2d{letter-spacing:-1.354240pt;}
.ls21{letter-spacing:-1.295360pt;}
.ls1f{letter-spacing:-0.824320pt;}
.ls28{letter-spacing:-0.765440pt;}
.ls7{letter-spacing:-0.706560pt;}
.lsc{letter-spacing:-0.647680pt;}
.lsb{letter-spacing:-0.588800pt;}
.ls2f{letter-spacing:-0.529920pt;}
.ls1d{letter-spacing:-0.471040pt;}
.ls1c{letter-spacing:-0.412160pt;}
.ls9{letter-spacing:-0.353280pt;}
.ls8{letter-spacing:-0.294400pt;}
.ls5{letter-spacing:-0.235520pt;}
.ls30{letter-spacing:-0.176640pt;}
.ls1e{letter-spacing:-0.117760pt;}
.ls6{letter-spacing:-0.058880pt;}
.ls2{letter-spacing:0.000000pt;}
.ls33{letter-spacing:0.011776pt;}
.ls35{letter-spacing:0.035328pt;}
.ls32{letter-spacing:0.041216pt;}
.lsa{letter-spacing:0.058880pt;}
.ls39{letter-spacing:0.064768pt;}
.ls34{letter-spacing:0.076544pt;}
.ls0{letter-spacing:0.117760pt;}
.ls38{letter-spacing:0.123648pt;}
.ls3{letter-spacing:0.149760pt;}
.ls2e{letter-spacing:0.170752pt;}
.ls27{letter-spacing:0.176640pt;}
.ls24{letter-spacing:0.223744pt;}
.ls10{letter-spacing:0.235520pt;}
.ls36{letter-spacing:0.288512pt;}
.ls17{letter-spacing:0.294400pt;}
.ls4{letter-spacing:0.320000pt;}
.ls1{letter-spacing:0.335616pt;}
.ls2a{letter-spacing:0.765440pt;}
.ls1a{letter-spacing:1.413120pt;}
.ls37{letter-spacing:1.943040pt;}
.ls23{letter-spacing:2.060800pt;}
.ls2b{letter-spacing:2.708480pt;}
.lsd{letter-spacing:3.356160pt;}
.ls25{letter-spacing:3.944960pt;}
.ls13{letter-spacing:4.592640pt;}
.ls14{letter-spacing:4.604416pt;}
.ls18{letter-spacing:5.240320pt;}
.ls12{letter-spacing:5.252096pt;}
.ls31{letter-spacing:5.711360pt;}
.ls11{letter-spacing:5.888000pt;}
.ls19{letter-spacing:6.535680pt;}
.lse{letter-spacing:7.831040pt;}
.ls16{letter-spacing:9.067520pt;}
.ls15{letter-spacing:9.715200pt;}
.ls1b{letter-spacing:11.010560pt;}
.ls22{letter-spacing:12.305920pt;}
.ls26{letter-spacing:13.601280pt;}
.ls29{letter-spacing:14.837760pt;}
.lsf{letter-spacing:16.286208pt;}
.ws91{word-spacing:-13.601280pt;}
.ws16{word-spacing:-13.542400pt;}
.ws1{word-spacing:-13.424640pt;}
.ws4{word-spacing:-13.365760pt;}
.ws0{word-spacing:-13.306880pt;}
.ws6{word-spacing:-13.248000pt;}
.ws4b{word-spacing:-13.189120pt;}
.ws90{word-spacing:-13.130240pt;}
.ws3{word-spacing:-13.071360pt;}
.ws98{word-spacing:-13.012480pt;}
.ws2{word-spacing:-12.953600pt;}
.ws18{word-spacing:-12.894720pt;}
.ws19{word-spacing:-12.835840pt;}
.ws99{word-spacing:-12.776960pt;}
.ws17{word-spacing:-12.718080pt;}
.ws5{word-spacing:-12.659200pt;}
.ws93{word-spacing:-12.600320pt;}
.ws8b{word-spacing:-12.541440pt;}
.ws94{word-spacing:-12.482560pt;}
.ws5d{word-spacing:-3.944960pt;}
.ws6a{word-spacing:-3.650560pt;}
.ws5c{word-spacing:-3.002880pt;}
.ws6b{word-spacing:-2.826240pt;}
.ws5e{word-spacing:-2.414080pt;}
.ws31{word-spacing:-2.355200pt;}
.ws57{word-spacing:-2.178560pt;}
.ws30{word-spacing:-2.001920pt;}
.ws71{word-spacing:-1.884160pt;}
.ws69{word-spacing:-1.707520pt;}
.ws7c{word-spacing:-1.530880pt;}
.ws72{word-spacing:-1.354240pt;}
.ws2f{word-spacing:-1.295360pt;}
.ws61{word-spacing:-1.236480pt;}
.ws73{word-spacing:-1.177600pt;}
.ws2d{word-spacing:-1.059840pt;}
.ws2e{word-spacing:-0.883200pt;}
.ws8f{word-spacing:-0.824320pt;}
.ws97{word-spacing:-0.765440pt;}
.ws3b{word-spacing:-0.706560pt;}
.ws9{word-spacing:-0.704000pt;}
.ws10{word-spacing:-0.647680pt;}
.ws12{word-spacing:-0.588800pt;}
.wsf{word-spacing:-0.471040pt;}
.ws8{word-spacing:-0.449280pt;}
.ws96{word-spacing:-0.412160pt;}
.ws95{word-spacing:-0.353280pt;}
.ws14{word-spacing:-0.294400pt;}
.ws25{word-spacing:-0.235520pt;}
.ws8d{word-spacing:-0.176640pt;}
.ws3a{word-spacing:-0.117760pt;}
.ws56{word-spacing:-0.058880pt;}
.ws7{word-spacing:0.000000pt;}
.wse{word-spacing:0.058880pt;}
.ws13{word-spacing:0.117760pt;}
.wsb{word-spacing:0.176640pt;}
.ws11{word-spacing:0.235520pt;}
.ws8c{word-spacing:0.294400pt;}
.wsa{word-spacing:0.353280pt;}
.wsd{word-spacing:0.412160pt;}
.ws36{word-spacing:0.529920pt;}
.ws15{word-spacing:0.588800pt;}
.ws5b{word-spacing:0.647680pt;}
.ws47{word-spacing:0.706560pt;}
.ws5f{word-spacing:0.765440pt;}
.wsc{word-spacing:0.824320pt;}
.ws92{word-spacing:0.883200pt;}
.ws8e{word-spacing:0.942080pt;}
.ws22{word-spacing:1.000960pt;}
.ws7d{word-spacing:1.118720pt;}
.ws23{word-spacing:1.177600pt;}
.ws51{word-spacing:1.295360pt;}
.ws87{word-spacing:1.354240pt;}
.ws42{word-spacing:1.413120pt;}
.ws41{word-spacing:1.472000pt;}
.ws3c{word-spacing:1.648640pt;}
.ws60{word-spacing:1.766400pt;}
.ws70{word-spacing:1.825280pt;}
.ws1f{word-spacing:1.943040pt;}
.ws8a{word-spacing:2.001920pt;}
.ws20{word-spacing:2.119680pt;}
.ws1e{word-spacing:2.296320pt;}
.ws6c{word-spacing:2.590720pt;}
.ws1d{word-spacing:2.767360pt;}
.ws1b{word-spacing:2.944000pt;}
.ws4f{word-spacing:3.120640pt;}
.ws62{word-spacing:3.238400pt;}
.ws1a{word-spacing:3.415040pt;}
.ws3d{word-spacing:3.591680pt;}
.ws50{word-spacing:3.709440pt;}
.ws4c{word-spacing:3.827200pt;}
.ws4e{word-spacing:4.003840pt;}
.ws4d{word-spacing:4.180480pt;}
.ws2a{word-spacing:4.474880pt;}
.ws29{word-spacing:4.651520pt;}
.ws46{word-spacing:4.828160pt;}
.ws27{word-spacing:5.299200pt;}
.ws26{word-spacing:5.475840pt;}
.ws5a{word-spacing:5.652480pt;}
.ws7e{word-spacing:5.770240pt;}
.ws4a{word-spacing:5.888000pt;}
.ws28{word-spacing:5.946880pt;}
.ws37{word-spacing:6.123520pt;}
.ws65{word-spacing:6.300160pt;}
.ws38{word-spacing:6.417920pt;}
.ws74{word-spacing:6.594560pt;}
.ws83{word-spacing:6.771200pt;}
.ws6e{word-spacing:7.065600pt;}
.ws6d{word-spacing:7.242240pt;}
.ws39{word-spacing:7.360000pt;}
.ws75{word-spacing:7.418880pt;}
.ws1c{word-spacing:7.889920pt;}
.ws21{word-spacing:8.066560pt;}
.ws78{word-spacing:8.184320pt;}
.ws79{word-spacing:8.537600pt;}
.ws2b{word-spacing:8.714240pt;}
.ws2c{word-spacing:8.949760pt;}
.ws43{word-spacing:9.126400pt;}
.ws33{word-spacing:9.303040pt;}
.ws32{word-spacing:9.774080pt;}
.ws34{word-spacing:9.950720pt;}
.ws59{word-spacing:10.421760pt;}
.ws45{word-spacing:11.069440pt;}
.ws44{word-spacing:11.246080pt;}
.ws52{word-spacing:11.717120pt;}
.ws58{word-spacing:12.188160pt;}
.ws53{word-spacing:12.364800pt;}
.ws54{word-spacing:12.541440pt;}
.ws7a{word-spacing:13.012480pt;}
.ws64{word-spacing:13.306880pt;}
.ws6f{word-spacing:13.660160pt;}
.ws63{word-spacing:13.836800pt;}
.ws55{word-spacing:14.248960pt;}
.ws67{word-spacing:14.425600pt;}
.ws49{word-spacing:14.778880pt;}
.ws68{word-spacing:14.896640pt;}
.ws66{word-spacing:15.073280pt;}
.ws48{word-spacing:15.544320pt;}
.ws24{word-spacing:16.192000pt;}
.ws84{word-spacing:16.839680pt;}
.ws35{word-spacing:17.016320pt;}
.ws86{word-spacing:17.487360pt;}
.ws85{word-spacing:17.664000pt;}
.ws88{word-spacing:17.840640pt;}
.ws89{word-spacing:19.371520pt;}
.ws82{word-spacing:21.962240pt;}
.ws7f{word-spacing:23.257600pt;}
.ws80{word-spacing:23.434240pt;}
.ws81{word-spacing:23.552000pt;}
.ws7b{word-spacing:26.437120pt;}
.ws3e{word-spacing:33.738240pt;}
.ws3f{word-spacing:34.091520pt;}
.ws40{word-spacing:34.739200pt;}
.ws77{word-spacing:36.682240pt;}
.ws76{word-spacing:36.858880pt;}
._9{margin-left:-5.651200pt;}
._5{margin-left:-3.200512pt;}
._4{margin-left:-2.143232pt;}
._0{margin-left:-1.108224pt;}
._1{width:0.930304pt;}
._8{width:1.975040pt;}
._3{width:5.004800pt;}
._7{width:7.367680pt;}
._6{width:9.102848pt;}
._2{width:15.750912pt;}
.fs0{font-size:58.880000pt;}
.fs2{font-size:64.000000pt;}
.fs1{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:51.365760pt;}
.y1{bottom:69.280000pt;}
.y58{bottom:100.280320pt;}
.y140{bottom:102.193920pt;}
.y114{bottom:102.650240pt;}
.y166{bottom:116.575360pt;}
.ya6{bottom:117.546880pt;}
.yc5{bottom:117.561600pt;}
.y57{bottom:119.637120pt;}
.y13f{bottom:119.960960pt;}
.y113{bottom:120.564480pt;}
.y2b{bottom:122.673280pt;}
.yd3{bottom:128.277760pt;}
.y81{bottom:128.292480pt;}
.y165{bottom:134.489600pt;}
.ya5{bottom:136.903680pt;}
.yc4{bottom:136.918400pt;}
.y13e{bottom:137.875200pt;}
.y56{bottom:138.993920pt;}
.yeb{bottom:139.023360pt;}
.y2a{bottom:142.030080pt;}
.y195{bottom:145.220480pt;}
.yd2{bottom:147.634560pt;}
.y80{bottom:147.649280pt;}
.y112{bottom:149.047680pt;}
.y102{bottom:149.562880pt;}
.y178{bottom:152.403840pt;}
.y13d{bottom:155.789440pt;}
.ya4{bottom:156.260480pt;}
.yc3{bottom:156.275200pt;}
.y55{bottom:158.350720pt;}
.yea{bottom:158.380160pt;}
.y29{bottom:161.224960pt;}
.y164{bottom:162.972800pt;}
.y194{bottom:162.987520pt;}
.y111{bottom:166.961920pt;}
.yd1{bottom:166.991360pt;}
.y7f{bottom:167.006080pt;}
.y101{bottom:168.919680pt;}
.yc2{bottom:175.632000pt;}
.y54{bottom:177.545600pt;}
.ye9{bottom:177.575040pt;}
.y28{bottom:180.581760pt;}
.y163{bottom:180.887040pt;}
.y193{bottom:180.901760pt;}
.y13c{bottom:184.434560pt;}
.y110{bottom:184.876160pt;}
.ya3{bottom:186.186240pt;}
.y7e{bottom:186.200960pt;}
.y100{bottom:188.276480pt;}
.y53{bottom:196.902400pt;}
.ye8{bottom:196.931840pt;}
.y162{bottom:198.801280pt;}
.y13b{bottom:202.348800pt;}
.ya2{bottom:205.543040pt;}
.y7d{bottom:205.557760pt;}
.yff{bottom:207.633280pt;}
.y192{bottom:209.546880pt;}
.y27{bottom:210.654720pt;}
.y10f{bottom:213.521280pt;}
.y52{bottom:216.259200pt;}
.ye7{bottom:216.288640pt;}
.y177{bottom:216.715520pt;}
.y13a{bottom:220.263040pt;}
.ya1{bottom:224.899840pt;}
.yc1{bottom:224.914560pt;}
.yfe{bottom:226.990080pt;}
.y161{bottom:227.446400pt;}
.y191{bottom:227.461120pt;}
.y26{bottom:229.849600pt;}
.y10e{bottom:231.435520pt;}
.y51{bottom:235.616000pt;}
.y7c{bottom:235.630720pt;}
.ye6{bottom:235.645440pt;}
.ya0{bottom:244.256640pt;}
.yc0{bottom:244.271360pt;}
.y160{bottom:245.360640pt;}
.y190{bottom:245.375360pt;}
.yfd{bottom:246.184960pt;}
.y139{bottom:248.746240pt;}
.y10d{bottom:249.202560pt;}
.y25{bottom:249.206400pt;}
.y50{bottom:254.810880pt;}
.y7b{bottom:254.825600pt;}
.ye5{bottom:254.840320pt;}
.y15f{bottom:263.274880pt;}
.y18f{bottom:263.289600pt;}
.y9f{bottom:263.451520pt;}
.ybf{bottom:263.466240pt;}
.yfc{bottom:265.541760pt;}
.y138{bottom:266.660480pt;}
.y10c{bottom:267.116800pt;}
.y24{bottom:268.563200pt;}
.y4f{bottom:274.167680pt;}
.y7a{bottom:274.182400pt;}
.y15e{bottom:281.041920pt;}
.y18e{bottom:281.056640pt;}
.y9e{bottom:282.808320pt;}
.ybe{bottom:282.823040pt;}
.y137{bottom:284.574720pt;}
.ye4{bottom:284.913280pt;}
.y176{bottom:291.758080pt;}
.y4e{bottom:293.524480pt;}
.y79{bottom:293.539200pt;}
.yfb{bottom:295.467520pt;}
.y10b{bottom:295.761920pt;}
.y23{bottom:298.488960pt;}
.y9d{bottom:302.165120pt;}
.ybd{bottom:302.179840pt;}
.y136{bottom:302.488960pt;}
.ye3{bottom:304.270080pt;}
.y175{bottom:309.672320pt;}
.y15d{bottom:309.687040pt;}
.y18d{bottom:309.701760pt;}
.y78{bottom:312.896000pt;}
.y10a{bottom:313.676160pt;}
.yfa{bottom:314.824320pt;}
.y22{bottom:317.845760pt;}
.yd0{bottom:321.521920pt;}
.y4d{bottom:323.450240pt;}
.ye2{bottom:323.464960pt;}
.y15c{bottom:327.601280pt;}
.y18c{bottom:327.616000pt;}
.y135{bottom:330.972160pt;}
.y109{bottom:331.590400pt;}
.y77{bottom:332.090880pt;}
.ybc{bottom:332.105600pt;}
.yf9{bottom:334.181120pt;}
.y21{bottom:337.202560pt;}
.y174{bottom:338.317440pt;}
.ycf{bottom:340.716800pt;}
.y4c{bottom:342.807040pt;}
.ye1{bottom:342.821760pt;}
.y15b{bottom:345.515520pt;}
.y18b{bottom:345.530240pt;}
.y134{bottom:348.886400pt;}
.y108{bottom:349.504640pt;}
.y76{bottom:351.447680pt;}
.ybb{bottom:351.462400pt;}
.yf8{bottom:353.537920pt;}
.y173{bottom:356.231680pt;}
.y20{bottom:356.397440pt;}
.yce{bottom:360.073600pt;}
.y4b{bottom:362.163840pt;}
.ye0{bottom:362.178560pt;}
.y18a{bottom:363.444480pt;}
.y133{bottom:366.800640pt;}
.y75{bottom:370.804480pt;}
.yba{bottom:370.819200pt;}
.yf7{bottom:372.732800pt;}
.y15a{bottom:373.998720pt;}
.y1f{bottom:375.754240pt;}
.y107{bottom:379.430400pt;}
.y4a{bottom:381.520640pt;}
.ydf{bottom:381.535360pt;}
.y132{bottom:384.714880pt;}
.ycd{bottom:390.146560pt;}
.y74{bottom:390.161280pt;}
.yb9{bottom:390.176000pt;}
.y159{bottom:391.912960pt;}
.y189{bottom:391.927680pt;}
.yf6{bottom:392.089600pt;}
.y1e{bottom:395.111040pt;}
.y49{bottom:400.715520pt;}
.yde{bottom:400.730240pt;}
.y131{bottom:402.629120pt;}
.ycc{bottom:409.341440pt;}
.y73{bottom:409.356160pt;}
.y158{bottom:409.827200pt;}
.y188{bottom:409.841920pt;}
.yf5{bottom:411.446400pt;}
.y1d{bottom:414.467840pt;}
.y48{bottom:420.072320pt;}
.y9c{bottom:420.087040pt;}
.yb8{bottom:420.101760pt;}
.y187{bottom:427.756160pt;}
.ycb{bottom:428.698240pt;}
.y72{bottom:428.712960pt;}
.yf4{bottom:430.803200pt;}
.y130{bottom:431.274240pt;}
.y1c{bottom:433.824640pt;}
.y157{bottom:438.472320pt;}
.y47{bottom:439.429120pt;}
.ydd{bottom:439.443840pt;}
.yb7{bottom:439.458560pt;}
.y186{bottom:445.670400pt;}
.yca{bottom:448.055040pt;}
.y71{bottom:448.069760pt;}
.y12f{bottom:449.041280pt;}
.y9b{bottom:450.160000pt;}
.y1b{bottom:453.019520pt;}
.y156{bottom:456.386560pt;}
.y46{bottom:458.785920pt;}
.ydc{bottom:458.800640pt;}
.yb6{bottom:458.815360pt;}
.y12e{bottom:466.955520pt;}
.y70{bottom:467.426560pt;}
.yf3{bottom:469.354880pt;}
.y1a{bottom:472.376320pt;}
.y155{bottom:474.300800pt;}
.y185{bottom:474.315520pt;}
.y45{bottom:477.980800pt;}
.ydb{bottom:477.995520pt;}
.yb5{bottom:478.010240pt;}
.y9a{bottom:480.085760pt;}
.y12d{bottom:484.869760pt;}
.y6f{bottom:486.621440pt;}
.yf2{bottom:488.711680pt;}
.y19{bottom:491.733120pt;}
.y154{bottom:492.067840pt;}
.y184{bottom:492.082560pt;}
.y44{bottom:497.337600pt;}
.yb4{bottom:497.367040pt;}
.y99{bottom:499.442560pt;}
.y172{bottom:502.784000pt;}
.yda{bottom:508.068480pt;}
.y183{bottom:509.996800pt;}
.y18{bottom:511.089920pt;}
.y12c{bottom:513.514880pt;}
.y43{bottom:516.694400pt;}
.yb3{bottom:516.723840pt;}
.y98{bottom:518.637440pt;}
.y171{bottom:520.698240pt;}
.y153{bottom:520.712960pt;}
.yd9{bottom:527.425280pt;}
.y182{bottom:527.911040pt;}
.y17{bottom:530.284800pt;}
.y12b{bottom:531.429120pt;}
.y6e{bottom:536.051200pt;}
.yb2{bottom:536.080640pt;}
.y97{bottom:537.994240pt;}
.y170{bottom:538.612480pt;}
.y152{bottom:538.627200pt;}
.y42{bottom:546.620160pt;}
.y12a{bottom:549.343360pt;}
.y6d{bottom:555.246080pt;}
.yb1{bottom:555.275520pt;}
.y151{bottom:556.541440pt;}
.y181{bottom:556.556160pt;}
.y96{bottom:557.351040pt;}
.y16{bottom:560.357760pt;}
.y41{bottom:565.976960pt;}
.y16f{bottom:567.095680pt;}
.y129{bottom:567.110400pt;}
.y150{bottom:574.455680pt;}
.y180{bottom:574.470400pt;}
.y6c{bottom:574.602880pt;}
.yf1{bottom:576.707840pt;}
.y15{bottom:579.552640pt;}
.y16e{bottom:585.009920pt;}
.y128{bottom:585.024640pt;}
.y40{bottom:585.333760pt;}
.yb0{bottom:585.348480pt;}
.y95{bottom:587.276800pt;}
.y17f{bottom:592.384640pt;}
.y6b{bottom:593.959680pt;}
.yf0{bottom:595.902720pt;}
.y14{bottom:598.909440pt;}
.y16d{bottom:602.924160pt;}
.y14f{bottom:602.938880pt;}
.y3f{bottom:604.690560pt;}
.yaf{bottom:604.705280pt;}
.y94{bottom:606.633600pt;}
.y6a{bottom:613.316480pt;}
.y127{bottom:613.669760pt;}
.yef{bottom:615.259520pt;}
.y13{bottom:618.266240pt;}
.y16c{bottom:620.838400pt;}
.y14e{bottom:620.853120pt;}
.y17e{bottom:620.867840pt;}
.y3e{bottom:623.885440pt;}
.yae{bottom:623.900160pt;}
.y93{bottom:625.990400pt;}
.y126{bottom:631.584000pt;}
.y69{bottom:632.511360pt;}
.yee{bottom:634.616320pt;}
.y12{bottom:637.623040pt;}
.y14d{bottom:638.767360pt;}
.y17d{bottom:638.782080pt;}
.y3d{bottom:643.242240pt;}
.yad{bottom:643.256960pt;}
.y92{bottom:645.347200pt;}
.y16b{bottom:649.483520pt;}
.y125{bottom:649.498240pt;}
.y68{bottom:651.868160pt;}
.yed{bottom:653.973120pt;}
.y14c{bottom:656.681600pt;}
.y17c{bottom:656.696320pt;}
.y11{bottom:656.817920pt;}
.y3c{bottom:662.599040pt;}
.yac{bottom:662.613760pt;}
.y91{bottom:664.542080pt;}
.y16a{bottom:667.397760pt;}
.y124{bottom:667.412480pt;}
.yc9{bottom:671.224960pt;}
.yec{bottom:673.168000pt;}
.y17b{bottom:674.610560pt;}
.y67{bottom:681.941120pt;}
.y90{bottom:683.898880pt;}
.y169{bottom:685.312000pt;}
.y123{bottom:685.326720pt;}
.y10{bottom:686.890880pt;}
.y3b{bottom:692.524800pt;}
.yab{bottom:692.539520pt;}
.yc8{bottom:701.150720pt;}
.y168{bottom:703.079040pt;}
.y14b{bottom:703.093760pt;}
.y8f{bottom:703.255680pt;}
.y66{bottom:711.866880pt;}
.y3a{bottom:711.881600pt;}
.y122{bottom:713.809920pt;}
.yf{bottom:716.816640pt;}
.y14a{bottom:721.008000pt;}
.yaa{bottom:722.612480pt;}
.yc7{bottom:731.223680pt;}
.y39{bottom:731.238400pt;}
.y121{bottom:731.724160pt;}
.y8e{bottom:733.181440pt;}
.y149{bottom:738.922240pt;}
.y65{bottom:741.792640pt;}
.ye{bottom:746.889600pt;}
.y120{bottom:749.638400pt;}
.y38{bottom:750.595200pt;}
.y8d{bottom:752.538240pt;}
.y17a{bottom:756.836480pt;}
.y64{bottom:761.149440pt;}
.y106{bottom:761.164160pt;}
.yd{bottom:766.246400pt;}
.y11f{bottom:767.552640pt;}
.y148{bottom:767.567360pt;}
.y37{bottom:769.790080pt;}
.y8c{bottom:771.895040pt;}
.y63{bottom:780.506240pt;}
.y105{bottom:780.520960pt;}
.yc{bottom:785.441280pt;}
.y147{bottom:785.481600pt;}
.y36{bottom:789.146880pt;}
.y8b{bottom:791.251840pt;}
.y11e{bottom:796.035840pt;}
.yc6{bottom:799.863040pt;}
.y104{bottom:799.877760pt;}
.y146{bottom:803.395840pt;}
.yb{bottom:804.798080pt;}
.y35{bottom:808.503680pt;}
.y62{bottom:810.432000pt;}
.y8a{bottom:810.446720pt;}
.y11d{bottom:813.950080pt;}
.y103{bottom:819.072640pt;}
.y145{bottom:821.310080pt;}
.ya{bottom:824.154880pt;}
.yd8{bottom:827.860480pt;}
.y61{bottom:829.788800pt;}
.y89{bottom:829.803520pt;}
.y11c{bottom:831.864320pt;}
.y34{bottom:838.429440pt;}
.y9{bottom:843.511680pt;}
.yd7{bottom:847.055360pt;}
.y60{bottom:849.145600pt;}
.y88{bottom:849.160320pt;}
.y11b{bottom:849.778560pt;}
.y144{bottom:849.793280pt;}
.y33{bottom:857.786240pt;}
.yd6{bottom:866.412160pt;}
.y11a{bottom:867.692800pt;}
.y143{bottom:867.707520pt;}
.y5f{bottom:868.502400pt;}
.y87{bottom:868.517120pt;}
.y8{bottom:873.437440pt;}
.y32{bottom:877.143040pt;}
.y142{bottom:885.621760pt;}
.yd5{bottom:885.768960pt;}
.y5e{bottom:887.697280pt;}
.y86{bottom:887.712000pt;}
.y31{bottom:896.337920pt;}
.y7{bottom:903.363200pt;}
.y141{bottom:903.536000pt;}
.yd4{bottom:905.125760pt;}
.y5d{bottom:907.054080pt;}
.y85{bottom:907.068800pt;}
.y119{bottom:914.104960pt;}
.y30{bottom:915.694720pt;}
.ya9{bottom:917.784960pt;}
.y6{bottom:922.720000pt;}
.y5c{bottom:926.410880pt;}
.y84{bottom:926.425600pt;}
.y118{bottom:932.019200pt;}
.y2f{bottom:935.051520pt;}
.ya8{bottom:937.141760pt;}
.y5{bottom:942.560000pt;}
.y5b{bottom:945.767680pt;}
.y83{bottom:945.782400pt;}
.y117{bottom:949.933440pt;}
.y2e{bottom:954.408320pt;}
.ya7{bottom:956.336640pt;}
.y167{bottom:960.664320pt;}
.y82{bottom:964.977280pt;}
.y179{bottom:967.847680pt;}
.y4{bottom:975.037920pt;}
.y5a{bottom:975.693440pt;}
.y116{bottom:978.578560pt;}
.y2d{bottom:984.334080pt;}
.y59{bottom:995.050240pt;}
.y115{bottom:996.492800pt;}
.y3{bottom:1010.400000pt;}
.y2c{bottom:1014.407040pt;}
.h5{height:40.940000pt;}
.h2{height:48.558750pt;}
.h3{height:52.065000pt;}
.h6{height:52.495660pt;}
.h4{height:52.781250pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:113.440000pt;}
.x8{left:145.426560pt;}
.x7{left:198.241280pt;}
.x4{left:247.040000pt;}
.x6{left:287.680000pt;}
.x5{left:330.080000pt;}
.xa{left:359.499520pt;}
.x9{left:389.440000pt;}
.x1{left:393.120000pt;}
.x3{left:396.800000pt;}
}




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