
    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_ea9b10a809af7c6ecdd8a8d4.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.432129;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_efa3bdc060cf7cb33fbffc96.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.691406;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_66901ed25b0e3075a57e75d0.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.432129;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_9cf4d19734520281e8048539.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.432129;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_c474f3a3218227f17a8786ac.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.432129;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_c1e0cbae1c04a241ae82c7ac.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.938965;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_cdd109c883716159bcfe4796.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.402354;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_a2c9fcd251771de299e0e2a8.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.432129;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_9df7ca5f58f877dbc3d58c33.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.432129;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_bdf4945723c41f91f6c54971.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.401855;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_bba1d121ced5a1ee5c1cfcec.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.372070;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);}
.m2{transform:matrix(0.257575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257575,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.259625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259625,0.000000,0.000000,0.250000,0,0);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:2.649600px;}
.ls33{letter-spacing:-1.937520px;}
.ls2f{letter-spacing:-1.275120px;}
.ls2a{letter-spacing:-0.800400px;}
.ls26{letter-spacing:-0.662400px;}
.ls48{letter-spacing:-0.629280px;}
.ls28{letter-spacing:-0.381432px;}
.ls3b{letter-spacing:-0.331200px;}
.ls39{letter-spacing:-0.282072px;}
.ls30{letter-spacing:-0.239016px;}
.ls2b{letter-spacing:-0.210864px;}
.ls4c{letter-spacing:-0.143520px;}
.ls25{letter-spacing:-0.140208px;}
.ls36{letter-spacing:-0.098256px;}
.ls4a{letter-spacing:-0.076728px;}
.ls2d{letter-spacing:-0.049018px;}
.ls27{letter-spacing:0.000000px;}
.ls45{letter-spacing:0.015898px;}
.ls50{letter-spacing:0.016560px;}
.ls46{letter-spacing:0.031795px;}
.ls2{letter-spacing:0.049018px;}
.ls4f{letter-spacing:0.066240px;}
.ls4d{letter-spacing:0.088320px;}
.ls14{letter-spacing:0.116582px;}
.ls47{letter-spacing:0.169464px;}
.ls49{letter-spacing:0.185472px;}
.ls16{letter-spacing:0.189888px;}
.ls4e{letter-spacing:0.201480px;}
.ls3e{letter-spacing:0.239016px;}
.ls0{letter-spacing:0.280858px;}
.ls29{letter-spacing:0.280968px;}
.ls41{letter-spacing:0.282072px;}
.ls37{letter-spacing:0.331200px;}
.lsa{letter-spacing:0.380218px;}
.ls38{letter-spacing:0.380328px;}
.ls31{letter-spacing:0.423384px;}
.ls3f{letter-spacing:0.472512px;}
.ls4b{letter-spacing:0.499560px;}
.ls2c{letter-spacing:0.527160px;}
.ls1d{letter-spacing:0.563040px;}
.ls3c{letter-spacing:0.612720px;}
.ls9{letter-spacing:0.613382px;}
.ls35{letter-spacing:0.712080px;}
.lsf{letter-spacing:0.850080px;}
.ls1{letter-spacing:0.852509px;}
.ls3d{letter-spacing:0.899760px;}
.ls34{letter-spacing:0.943920px;}
.ls40{letter-spacing:0.993600px;}
.ls3a{letter-spacing:1.230960px;}
.lse{letter-spacing:1.275782px;}
.ls43{letter-spacing:1.441382px;}
.ls32{letter-spacing:1.512480px;}
.ls1c{letter-spacing:1.514909px;}
.lsc{letter-spacing:1.938182px;}
.ls2e{letter-spacing:2.599920px;}
.ls44{letter-spacing:2.600582px;}
.lsd{letter-spacing:2.766182px;}
.ls42{letter-spacing:3.262982px;}
.ls15{letter-spacing:3.925382px;}
.ls18{letter-spacing:4.587782px;}
.ls17{letter-spacing:5.250182px;}
.lsb{letter-spacing:6.574982px;}
.ls1b{letter-spacing:7.237382px;}
.ls20{letter-spacing:7.899782px;}
.ls1f{letter-spacing:8.672582px;}
.ls1e{letter-spacing:9.886982px;}
.ls13{letter-spacing:10.549382px;}
.ls12{letter-spacing:11.211782px;}
.ls1a{letter-spacing:12.536582px;}
.ls7{letter-spacing:12.646982px;}
.ls21{letter-spacing:13.198982px;}
.ls6{letter-spacing:13.861382px;}
.ls19{letter-spacing:14.523782px;}
.ls8{letter-spacing:15.848582px;}
.ls4{letter-spacing:17.835782px;}
.ls5{letter-spacing:20.485382px;}
.ls24{letter-spacing:23.134982px;}
.ls10{letter-spacing:23.797382px;}
.ls11{letter-spacing:24.459782px;}
.ls22{letter-spacing:25.122182px;}
.ls3{letter-spacing:26.446982px;}
.ls23{letter-spacing:33.070982px;}
.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;}
}
.wsc{word-spacing:-17.884138px;}
.wsf{word-spacing:-16.796698px;}
.ws18{word-spacing:-16.515178px;}
.ws1e{word-spacing:-16.277818px;}
.ws1a{word-spacing:-16.183978px;}
.wse{word-spacing:-16.134298px;}
.ws12{word-spacing:-15.996298px;}
.ws21{word-spacing:-15.896938px;}
.ws14{word-spacing:-15.847258px;}
.ws1d{word-spacing:-15.756730px;}
.ws22{word-spacing:-15.707602px;}
.ws16{word-spacing:-15.664546px;}
.ws15{word-spacing:-15.615418px;}
.ws1f{word-spacing:-15.566290px;}
.ws1b{word-spacing:-15.523234px;}
.ws1c{word-spacing:-15.474106px;}
.wsa{word-spacing:-15.333235px;}
.ws9{word-spacing:-15.284218px;}
.wsb{word-spacing:-15.235200px;}
.ws13{word-spacing:-15.185962px;}
.wsd{word-spacing:-15.045202px;}
.ws17{word-spacing:-15.002146px;}
.ws19{word-spacing:-14.953018px;}
.ws2b{word-spacing:-14.095982px;}
.ws25{word-spacing:-14.079974px;}
.ws2a{word-spacing:-14.063966px;}
.ws11{word-spacing:-14.009098px;}
.ws29{word-spacing:-13.982822px;}
.ws27{word-spacing:-13.926298px;}
.ws23{word-spacing:-13.894502px;}
.ws2d{word-spacing:-13.827600px;}
.ws26{word-spacing:-13.817774px;}
.ws2c{word-spacing:-13.811040px;}
.ws28{word-spacing:-13.750982px;}
.ws10{word-spacing:-13.346698px;}
.ws24{word-spacing:-13.265222px;}
.ws7{word-spacing:-11.207698px;}
.ws8{word-spacing:-10.680538px;}
.ws4{word-spacing:-8.751739px;}
.ws3{word-spacing:-8.470771px;}
.ws0{word-spacing:-8.330563px;}
.ws6{word-spacing:-8.259907px;}
.ws2{word-spacing:-8.089339px;}
.ws1{word-spacing:-7.808371px;}
.ws5{word-spacing:-7.670371px;}
.ws20{word-spacing:0.000000px;}
._5{margin-left:-3.427258px;}
._7{margin-left:-2.300957px;}
._1{margin-left:-1.190112px;}
._0{width:1.364102px;}
._8{width:2.458166px;}
._11{width:4.424280px;}
._c{width:6.039542px;}
._3{width:8.083046px;}
._2{width:9.907958px;}
._4{width:11.723928px;}
._12{width:14.094989px;}
._e{width:16.821427px;}
._d{width:18.108912px;}
._f{width:19.561114px;}
._10{width:20.762486px;}
._a{width:22.029878px;}
._6{width:23.797382px;}
._9{width:25.692509px;}
._b{width:27.025258px;}
._14{width:28.358227px;}
._13{width:29.800272px;}
._15{width:31.027037px;}
._17{width:32.120438px;}
._16{width:33.584784px;}
._1a{width:475.868160px;}
._18{width:779.739302px;}
._19{width:2341.098000px;}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:30.470400px;}
.fs8{font-size:33.120000px;}
.fs1{font-size:38.419200px;}
.fs4{font-size:42.000000px;}
.fs7{font-size:44.380800px;}
.fs9{font-size:49.680000px;}
.fs3{font-size:54.979200px;}
.fsb{font-size:60.000000px;}
.fs2{font-size:60.940800px;}
.fs6{font-size:66.240000px;}
.fs5{font-size:71.539200px;}
.fsa{font-size:84.000000px;}
.y0{bottom:0.000000px;}
.y5{bottom:2.649600px;}
.y66{bottom:2.691000px;}
.y9d{bottom:2.815200px;}
.y7{bottom:2.980800px;}
.y5d{bottom:3.146400px;}
.y55{bottom:3.643200px;}
.ybe{bottom:3.974400px;}
.y5e{bottom:4.140000px;}
.y60{bottom:4.471200px;}
.y89{bottom:4.636800px;}
.y8b{bottom:4.802400px;}
.y5b{bottom:5.630400px;}
.y5a{bottom:5.796000px;}
.y85{bottom:5.961600px;}
.ya7{bottom:6.127200px;}
.y81{bottom:6.458400px;}
.y61{bottom:6.955200px;}
.y68{bottom:7.120800px;}
.yab{bottom:7.286400px;}
.y93{bottom:7.617600px;}
.y71{bottom:8.611200px;}
.y9b{bottom:9.439200px;}
.y63{bottom:9.480600px;}
.yca{bottom:9.770400px;}
.y96{bottom:10.432800px;}
.yb5{bottom:10.598400px;}
.yd5{bottom:12.585600px;}
.y58{bottom:13.248000px;}
.y73{bottom:14.076000px;}
.y4{bottom:14.241600px;}
.y8e{bottom:15.566400px;}
.y6c{bottom:15.732000px;}
.y64{bottom:15.773400px;}
.yd2{bottom:15.897600px;}
.y75{bottom:16.891200px;}
.y65{bottom:16.932600px;}
.y6d{bottom:17.056800px;}
.y9c{bottom:17.098200px;}
.yb8{bottom:18.878400px;}
.y7e{bottom:19.044000px;}
.y51{bottom:19.209600px;}
.y6a{bottom:19.540800px;}
.yba{bottom:20.037600px;}
.ya9{bottom:20.203200px;}
.yaa{bottom:21.528000px;}
.y80{bottom:22.356000px;}
.y54{bottom:22.687200px;}
.ya3{bottom:22.852800px;}
.y94{bottom:23.349600px;}
.y92{bottom:23.515200px;}
.y70{bottom:24.508800px;}
.y95{bottom:24.674400px;}
.yb4{bottom:24.840000px;}
.y3{bottom:25.668000px;}
.yd4{bottom:28.524600px;}
.y72{bottom:29.808000px;}
.y79{bottom:29.973600px;}
.y78{bottom:30.139200px;}
.y74{bottom:31.132800px;}
.ya0{bottom:31.298400px;}
.yd7{bottom:31.339800px;}
.y50{bottom:31.629600px;}
.yd1{bottom:31.836600px;}
.yc9{bottom:32.457600px;}
.ydc{bottom:34.776000px;}
.ye2{bottom:34.941600px;}
.y7d{bottom:34.969200px;}
.y2{bottom:37.094400px;}
.y83{bottom:37.618800px;}
.yb2{bottom:37.922400px;}
.ycc{bottom:38.419200px;}
.y99{bottom:38.750400px;}
.yb3{bottom:39.081600px;}
.y87{bottom:40.406400px;}
.y31{bottom:43.050000px;}
.y4f{bottom:44.077200px;}
.y9e{bottom:44.215200px;}
.yd3{bottom:44.256600px;}
.y9f{bottom:45.540000px;}
.yd6{bottom:45.581400px;}
.yaf{bottom:47.527200px;}
.ye4{bottom:50.673600px;}
.ye1{bottom:50.839200px;}
.y7c{bottom:50.866800px;}
.y82{bottom:51.860400px;}
.yc8{bottom:56.304000px;}
.y4e{bottom:56.497200px;}
.y30{bottom:58.050000px;}
.ye3{bottom:66.571200px;}
.ye0{bottom:66.736800px;}
.y4d{bottom:68.917200px;}
.y2f{bottom:73.050000px;}
.y4c{bottom:81.834000px;}
.y2e{bottom:83.550000px;}
.y4b{bottom:97.069200px;}
.y8{bottom:101.025000px;}
.y2d{bottom:190.798800px;}
.ya2{bottom:201.908520px;}
.ya5{bottom:220.786920px;}
.y2c{bottom:223.587600px;}
.y2b{bottom:239.816400px;}
.ya4{bottom:239.825400px;}
.yda{bottom:251.251800px;}
.y2a{bottom:255.921000px;}
.ya1{bottom:258.703800px;}
.yd9{bottom:270.627000px;}
.y29{bottom:272.149800px;}
.y98{bottom:278.741400px;}
.y28{bottom:304.607400px;}
.yd8{bottom:309.708600px;}
.y27{bottom:320.836200px;}
.yd0{bottom:328.918200px;}
.y26{bottom:336.568200px;}
.y9a{bottom:337.198200px;}
.y25{bottom:353.128200px;}
.y97{bottom:367.213200px;}
.y24{bottom:370.350600px;}
.y91{bottom:387.250800px;}
.ycf{bottom:387.416400px;}
.y23{bottom:402.808200px;}
.yce{bottom:406.460400px;}
.yf6{bottom:413.737800px;}
.y22{bottom:419.037000px;}
.y90{bottom:424.842000px;}
.yf5{bottom:431.125800px;}
.y8f{bottom:444.879600px;}
.yf4{bottom:448.679400px;}
.ycd{bottom:450.675600px;}
.y21{bottom:453.647400px;}
.y8d{bottom:463.592400px;}
.yf3{bottom:466.067400px;}
.yc7{bottom:470.713200px;}
.yf2{bottom:483.786600px;}
.y20{bottom:485.442600px;}
.y86{bottom:492.075600px;}
.yf1{bottom:502.665000px;}
.y1f{bottom:503.989800px;}
.y8c{bottom:511.119600px;}
.yf0{bottom:520.080600px;}
.ycb{bottom:522.214800px;}
.y8a{bottom:529.998000px;}
.y1e{bottom:535.978200px;}
.yef{bottom:537.799800px;}
.yc6{bottom:541.093200px;}
.y88{bottom:549.042000px;}
.yee{bottom:556.843800px;}
.yc5{bottom:561.130800px;}
.y84{bottom:567.920400px;}
.y1d{bottom:568.104600px;}
.y48{bottom:582.180600px;}
.y1c{bottom:586.486200px;}
.y7b{bottom:587.958000px;}
.yc4{bottom:594.250800px;}
.y47{bottom:598.409400px;}
.y1b{bottom:604.702200px;}
.yc3{bottom:614.316000px;}
.y7f{bottom:616.303200px;}
.y46{bottom:616.791000px;}
.y45{bottom:632.688600px;}
.yc2{bottom:634.353600px;}
.y1a{bottom:636.497400px;}
.y44{bottom:648.586200px;}
.y7a{bottom:652.900800px;}
.yc1{bottom:654.225600px;}
.y19{bottom:654.879000px;}
.y43{bottom:664.483800px;}
.y77{bottom:672.938400px;}
.y18{bottom:673.095000px;}
.yed{bottom:673.269600px;}
.y42{bottom:680.547000px;}
.y17{bottom:691.311000px;}
.yc0{bottom:691.982400px;}
.yec{bottom:692.313600px;}
.y41{bottom:696.444600px;}
.ybf{bottom:711.854400px;}
.y40{bottom:712.839000px;}
.y76{bottom:717.153600px;}
.y16{bottom:723.437400px;}
.yeb{bottom:725.433600px;}
.y3f{bottom:730.227000px;}
.ybd{bottom:730.567200px;}
.y6f{bottom:737.191200px;}
.y3e{bottom:744.303000px;}
.yea{bottom:745.305600px;}
.ybc{bottom:749.445600px;}
.y15{bottom:755.232600px;}
.y3d{bottom:760.366200px;}
.ye5{bottom:768.646200px;}
.ybb{bottom:769.483200px;}
.y14{bottom:773.655600px;}
.ye9{bottom:775.279200px;}
.y3c{bottom:776.305200px;}
.y6e{bottom:781.406400px;}
.yb9{bottom:788.196000px;}
.y13{bottom:792.037200px;}
.y3b{bottom:792.368400px;}
.ye8{bottom:794.654400px;}
.y69{bottom:801.278400px;}
.y3a{bottom:808.266000px;}
.ye7{bottom:814.029600px;}
.y6b{bottom:821.316000px;}
.y12{bottom:823.832400px;}
.y39{bottom:824.163600px;}
.ye6{bottom:832.908000px;}
.y38{bottom:840.061200px;}
.yb7{bottom:840.525600px;}
.y11{bottom:842.214000px;}
.y67{bottom:851.289600px;}
.y10{bottom:860.595600px;}
.y62{bottom:871.327200px;}
.y37{bottom:871.525200px;}
.yb6{bottom:873.024600px;}
.yf{bottom:878.811600px;}
.yde{bottom:885.104400px;}
.yad{bottom:885.766800px;}
.ydf{bottom:885.775800px;}
.yae{bottom:893.062200px;}
.ye{bottom:897.027600px;}
.y5f{bottom:901.342200px;}
.y36{bottom:903.486000px;}
.y35{bottom:919.383600px;}
.y5c{bottom:921.379800px;}
.yd{bottom:930.644400px;}
.y34{bottom:935.446800px;}
.y59{bottom:937.939800px;}
.yb1{bottom:945.226200px;}
.yc{bottom:948.363600px;}
.y33{bottom:951.344400px;}
.y57{bottom:957.811800px;}
.y52{bottom:961.942800px;}
.yb0{bottom:964.104600px;}
.yb{bottom:964.261200px;}
.ya{bottom:980.324400px;}
.y32{bottom:982.642800px;}
.y56{bottom:997.390200px;}
.ydd{bottom:1001.530200px;}
.yac{bottom:1003.517400px;}
.yff{bottom:1006.500000px;}
.ydb{bottom:1020.739800px;}
.y53{bottom:1021.567800px;}
.ya8{bottom:1023.555000px;}
.yfe{bottom:1029.000000px;}
.yfd{bottom:1044.000000px;}
.ya6{bottom:1057.999800px;}
.yfc{bottom:1059.000000px;}
.yfb{bottom:1074.000000px;}
.yfa{bottom:1089.000000px;}
.y9{bottom:1097.762400px;}
.y49{bottom:1097.928000px;}
.y4a{bottom:1098.737400px;}
.yf9{bottom:1113.000000px;}
.yf8{bottom:1137.000000px;}
.yf7{bottom:1161.000000px;}
.y1{bottom:1161.693000px;}
.y6{bottom:1218.162600px;}
.h4{height:12.751200px;}
.h17{height:15.732000px;}
.h24{height:17.553600px;}
.h2b{height:17.719200px;}
.h16{height:18.547200px;}
.h31{height:18.580320px;}
.h1a{height:18.712800px;}
.h15{height:22.687200px;}
.h22{height:27.025920px;}
.h25{height:28.483200px;}
.h19{height:28.516320px;}
.h1c{height:28.648800px;}
.h28{height:28.681920px;}
.h30{height:31.629600px;}
.h3{height:31.779675px;}
.h2f{height:31.795200px;}
.h2c{height:33.120000px;}
.h12{height:34.543125px;}
.h21{height:35.107200px;}
.h26{height:36.266400px;}
.hb{height:37.502902px;}
.h36{height:37.591200px;}
.h13{height:38.088000px;}
.h5{height:40.070025px;}
.h7{height:41.569481px;}
.h1d{height:42.724800px;}
.h34{height:42.890400px;}
.ha{height:43.804688px;}
.he{height:44.396325px;}
.h2{height:44.546400px;}
.h11{height:46.287788px;}
.h1b{height:48.686400px;}
.hc{height:48.798956px;}
.h33{height:50.011200px;}
.h2e{height:50.673600px;}
.h18{height:51.814688px;}
.h1f{height:54.844973px;}
.h37{height:54.979200px;}
.h1e{height:55.408725px;}
.h2a{height:55.476000px;}
.h29{height:57.132000px;}
.h35{height:57.165120px;}
.h8{height:57.341588px;}
.hd{height:59.991187px;}
.h3a{height:62.578125px;}
.h20{height:63.457920px;}
.h9{height:63.559350px;}
.hf{height:68.084282px;}
.h32{height:69.055200px;}
.h14{height:69.086250px;}
.h23{height:74.520000px;}
.h27{height:87.138720px;}
.h39{height:87.609375px;}
.h2d{height:88.761600px;}
.h38{height:96.048000px;}
.h10{height:109.163520px;}
.h6{height:1161.849600px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:54.515520px;}
.w15{width:82.468800px;}
.we{width:83.131200px;}
.w12{width:83.296800px;}
.w14{width:83.628000px;}
.w9{width:83.959200px;}
.w2{width:124.233120px;}
.wa{width:223.960200px;}
.wd{width:224.291400px;}
.wf{width:224.622600px;}
.w16{width:224.953800px;}
.wc{width:225.285000px;}
.w8{width:230.377200px;}
.w13{width:230.708400px;}
.w11{width:231.039600px;}
.w10{width:231.370800px;}
.wb{width:231.702000px;}
.w5{width:268.134000px;}
.w7{width:539.621400px;}
.w6{width:540.946200px;}
.w4{width:821.541588px;}
.w17{width:892.500000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:1.324800px;}
.x13{left:4.802400px;}
.x11{left:9.936000px;}
.x18{left:20.368800px;}
.x16{left:32.788800px;}
.x4{left:35.715012px;}
.x1b{left:38.088000px;}
.x1c{left:39.909600px;}
.x1a{left:41.896800px;}
.x3{left:52.992000px;}
.x21{left:54.000000px;}
.x9{left:55.500000px;}
.x19{left:60.272880px;}
.x14{left:65.406480px;}
.x1d{left:70.705680px;}
.x1e{left:73.355280px;}
.x5{left:117.443508px;}
.x6{left:143.768388px;}
.x12{left:151.999320px;}
.x7{left:166.289988px;}
.x8{left:168.608388px;}
.xa{left:203.218788px;}
.x20{left:205.845000px;}
.xb{left:245.612388px;}
.xc{left:270.452388px;}
.xd{left:364.554588px;}
.x15{left:383.709600px;}
.x1f{left:443.325000px;}
.x17{left:468.331200px;}
.x10{left:525.822000px;}
.xe{left:604.039788px;}
.x1{left:627.831600px;}
.xf{left:640.802988px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:2.355200pt;}
.ls33{letter-spacing:-1.722240pt;}
.ls2f{letter-spacing:-1.133440pt;}
.ls2a{letter-spacing:-0.711467pt;}
.ls26{letter-spacing:-0.588800pt;}
.ls48{letter-spacing:-0.559360pt;}
.ls28{letter-spacing:-0.339051pt;}
.ls3b{letter-spacing:-0.294400pt;}
.ls39{letter-spacing:-0.250731pt;}
.ls30{letter-spacing:-0.212459pt;}
.ls2b{letter-spacing:-0.187435pt;}
.ls4c{letter-spacing:-0.127573pt;}
.ls25{letter-spacing:-0.124629pt;}
.ls36{letter-spacing:-0.087339pt;}
.ls4a{letter-spacing:-0.068203pt;}
.ls2d{letter-spacing:-0.043571pt;}
.ls27{letter-spacing:0.000000pt;}
.ls45{letter-spacing:0.014131pt;}
.ls50{letter-spacing:0.014720pt;}
.ls46{letter-spacing:0.028262pt;}
.ls2{letter-spacing:0.043571pt;}
.ls4f{letter-spacing:0.058880pt;}
.ls4d{letter-spacing:0.078507pt;}
.ls14{letter-spacing:0.103629pt;}
.ls47{letter-spacing:0.150635pt;}
.ls49{letter-spacing:0.164864pt;}
.ls16{letter-spacing:0.168789pt;}
.ls4e{letter-spacing:0.179093pt;}
.ls3e{letter-spacing:0.212459pt;}
.ls0{letter-spacing:0.249651pt;}
.ls29{letter-spacing:0.249749pt;}
.ls41{letter-spacing:0.250731pt;}
.ls37{letter-spacing:0.294400pt;}
.lsa{letter-spacing:0.337971pt;}
.ls38{letter-spacing:0.338069pt;}
.ls31{letter-spacing:0.376341pt;}
.ls3f{letter-spacing:0.420011pt;}
.ls4b{letter-spacing:0.444053pt;}
.ls2c{letter-spacing:0.468587pt;}
.ls1d{letter-spacing:0.500480pt;}
.ls3c{letter-spacing:0.544640pt;}
.ls9{letter-spacing:0.545229pt;}
.ls35{letter-spacing:0.632960pt;}
.lsf{letter-spacing:0.755627pt;}
.ls1{letter-spacing:0.757786pt;}
.ls3d{letter-spacing:0.799787pt;}
.ls34{letter-spacing:0.839040pt;}
.ls40{letter-spacing:0.883200pt;}
.ls3a{letter-spacing:1.094187pt;}
.lse{letter-spacing:1.134029pt;}
.ls43{letter-spacing:1.281229pt;}
.ls32{letter-spacing:1.344427pt;}
.ls1c{letter-spacing:1.346586pt;}
.lsc{letter-spacing:1.722829pt;}
.ls2e{letter-spacing:2.311040pt;}
.ls44{letter-spacing:2.311629pt;}
.lsd{letter-spacing:2.458829pt;}
.ls42{letter-spacing:2.900429pt;}
.ls15{letter-spacing:3.489229pt;}
.ls18{letter-spacing:4.078029pt;}
.ls17{letter-spacing:4.666829pt;}
.lsb{letter-spacing:5.844429pt;}
.ls1b{letter-spacing:6.433229pt;}
.ls20{letter-spacing:7.022029pt;}
.ls1f{letter-spacing:7.708962pt;}
.ls1e{letter-spacing:8.788429pt;}
.ls13{letter-spacing:9.377229pt;}
.ls12{letter-spacing:9.966029pt;}
.ls1a{letter-spacing:11.143629pt;}
.ls7{letter-spacing:11.241762pt;}
.ls21{letter-spacing:11.732429pt;}
.ls6{letter-spacing:12.321229pt;}
.ls19{letter-spacing:12.910029pt;}
.ls8{letter-spacing:14.087629pt;}
.ls4{letter-spacing:15.854029pt;}
.ls5{letter-spacing:18.209229pt;}
.ls24{letter-spacing:20.564429pt;}
.ls10{letter-spacing:21.153229pt;}
.ls11{letter-spacing:21.742029pt;}
.ls22{letter-spacing:22.330829pt;}
.ls3{letter-spacing:23.508429pt;}
.ls23{letter-spacing:29.396429pt;}
.wsc{word-spacing:-15.897011pt;}
.wsf{word-spacing:-14.930398pt;}
.ws18{word-spacing:-14.680158pt;}
.ws1e{word-spacing:-14.469171pt;}
.ws1a{word-spacing:-14.385758pt;}
.wse{word-spacing:-14.341598pt;}
.ws12{word-spacing:-14.218931pt;}
.ws21{word-spacing:-14.130611pt;}
.ws14{word-spacing:-14.086451pt;}
.ws1d{word-spacing:-14.005982pt;}
.ws22{word-spacing:-13.962313pt;}
.ws16{word-spacing:-13.924041pt;}
.ws15{word-spacing:-13.880371pt;}
.ws1f{word-spacing:-13.836702pt;}
.ws1b{word-spacing:-13.798430pt;}
.ws1c{word-spacing:-13.754761pt;}
.wsa{word-spacing:-13.629542pt;}
.ws9{word-spacing:-13.585971pt;}
.wsb{word-spacing:-13.542400pt;}
.ws13{word-spacing:-13.498633pt;}
.wsd{word-spacing:-13.373513pt;}
.ws17{word-spacing:-13.335241pt;}
.ws19{word-spacing:-13.291571pt;}
.ws2b{word-spacing:-12.529762pt;}
.ws25{word-spacing:-12.515533pt;}
.ws2a{word-spacing:-12.501303pt;}
.ws11{word-spacing:-12.452531pt;}
.ws29{word-spacing:-12.429175pt;}
.ws27{word-spacing:-12.378931pt;}
.ws23{word-spacing:-12.350669pt;}
.ws2d{word-spacing:-12.291200pt;}
.ws26{word-spacing:-12.282466pt;}
.ws2c{word-spacing:-12.276480pt;}
.ws28{word-spacing:-12.223095pt;}
.ws10{word-spacing:-11.863731pt;}
.ws24{word-spacing:-11.791309pt;}
.ws7{word-spacing:-9.962398pt;}
.ws8{word-spacing:-9.493811pt;}
.ws4{word-spacing:-7.779324pt;}
.ws3{word-spacing:-7.529574pt;}
.ws0{word-spacing:-7.404945pt;}
.ws6{word-spacing:-7.342140pt;}
.ws2{word-spacing:-7.190524pt;}
.ws1{word-spacing:-6.940774pt;}
.ws5{word-spacing:-6.818108pt;}
.ws20{word-spacing:0.000000pt;}
._5{margin-left:-3.046451pt;}
._7{margin-left:-2.045295pt;}
._1{margin-left:-1.057877pt;}
._0{width:1.212535pt;}
._8{width:2.185037pt;}
._11{width:3.932693pt;}
._c{width:5.368482pt;}
._3{width:7.184930pt;}
._2{width:8.807074pt;}
._4{width:10.421269pt;}
._12{width:12.528879pt;}
._e{width:14.952380pt;}
._d{width:16.096811pt;}
._f{width:17.387657pt;}
._10{width:18.455543pt;}
._a{width:19.582114pt;}
._6{width:21.153229pt;}
._9{width:22.837786pt;}
._b{width:24.022451pt;}
._14{width:25.207313pt;}
._13{width:26.489131pt;}
._15{width:27.579588pt;}
._17{width:28.551501pt;}
._16{width:29.853141pt;}
._1a{width:422.993920pt;}
._18{width:693.101602pt;}
._19{width:2080.976000pt;}
.fs0{font-size:27.084800pt;}
.fs8{font-size:29.440000pt;}
.fs1{font-size:34.150400pt;}
.fs4{font-size:37.333333pt;}
.fs7{font-size:39.449600pt;}
.fs9{font-size:44.160000pt;}
.fs3{font-size:48.870400pt;}
.fsb{font-size:53.333333pt;}
.fs2{font-size:54.169600pt;}
.fs6{font-size:58.880000pt;}
.fs5{font-size:63.590400pt;}
.fsa{font-size:74.666667pt;}
.y0{bottom:0.000000pt;}
.y5{bottom:2.355200pt;}
.y66{bottom:2.392000pt;}
.y9d{bottom:2.502400pt;}
.y7{bottom:2.649600pt;}
.y5d{bottom:2.796800pt;}
.y55{bottom:3.238400pt;}
.ybe{bottom:3.532800pt;}
.y5e{bottom:3.680000pt;}
.y60{bottom:3.974400pt;}
.y89{bottom:4.121600pt;}
.y8b{bottom:4.268800pt;}
.y5b{bottom:5.004800pt;}
.y5a{bottom:5.152000pt;}
.y85{bottom:5.299200pt;}
.ya7{bottom:5.446400pt;}
.y81{bottom:5.740800pt;}
.y61{bottom:6.182400pt;}
.y68{bottom:6.329600pt;}
.yab{bottom:6.476800pt;}
.y93{bottom:6.771200pt;}
.y71{bottom:7.654400pt;}
.y9b{bottom:8.390400pt;}
.y63{bottom:8.427200pt;}
.yca{bottom:8.684800pt;}
.y96{bottom:9.273600pt;}
.yb5{bottom:9.420800pt;}
.yd5{bottom:11.187200pt;}
.y58{bottom:11.776000pt;}
.y73{bottom:12.512000pt;}
.y4{bottom:12.659200pt;}
.y8e{bottom:13.836800pt;}
.y6c{bottom:13.984000pt;}
.y64{bottom:14.020800pt;}
.yd2{bottom:14.131200pt;}
.y75{bottom:15.014400pt;}
.y65{bottom:15.051200pt;}
.y6d{bottom:15.161600pt;}
.y9c{bottom:15.198400pt;}
.yb8{bottom:16.780800pt;}
.y7e{bottom:16.928000pt;}
.y51{bottom:17.075200pt;}
.y6a{bottom:17.369600pt;}
.yba{bottom:17.811200pt;}
.ya9{bottom:17.958400pt;}
.yaa{bottom:19.136000pt;}
.y80{bottom:19.872000pt;}
.y54{bottom:20.166400pt;}
.ya3{bottom:20.313600pt;}
.y94{bottom:20.755200pt;}
.y92{bottom:20.902400pt;}
.y70{bottom:21.785600pt;}
.y95{bottom:21.932800pt;}
.yb4{bottom:22.080000pt;}
.y3{bottom:22.816000pt;}
.yd4{bottom:25.355200pt;}
.y72{bottom:26.496000pt;}
.y79{bottom:26.643200pt;}
.y78{bottom:26.790400pt;}
.y74{bottom:27.673600pt;}
.ya0{bottom:27.820800pt;}
.yd7{bottom:27.857600pt;}
.y50{bottom:28.115200pt;}
.yd1{bottom:28.299200pt;}
.yc9{bottom:28.851200pt;}
.ydc{bottom:30.912000pt;}
.ye2{bottom:31.059200pt;}
.y7d{bottom:31.083733pt;}
.y2{bottom:32.972800pt;}
.y83{bottom:33.438933pt;}
.yb2{bottom:33.708800pt;}
.ycc{bottom:34.150400pt;}
.y99{bottom:34.444800pt;}
.yb3{bottom:34.739200pt;}
.y87{bottom:35.916800pt;}
.y31{bottom:38.266667pt;}
.y4f{bottom:39.179733pt;}
.y9e{bottom:39.302400pt;}
.yd3{bottom:39.339200pt;}
.y9f{bottom:40.480000pt;}
.yd6{bottom:40.516800pt;}
.yaf{bottom:42.246400pt;}
.ye4{bottom:45.043200pt;}
.ye1{bottom:45.190400pt;}
.y7c{bottom:45.214933pt;}
.y82{bottom:46.098133pt;}
.yc8{bottom:50.048000pt;}
.y4e{bottom:50.219733pt;}
.y30{bottom:51.600000pt;}
.ye3{bottom:59.174400pt;}
.ye0{bottom:59.321600pt;}
.y4d{bottom:61.259733pt;}
.y2f{bottom:64.933333pt;}
.y4c{bottom:72.741333pt;}
.y2e{bottom:74.266667pt;}
.y4b{bottom:86.283733pt;}
.y8{bottom:89.800000pt;}
.y2d{bottom:169.598933pt;}
.ya2{bottom:179.474240pt;}
.ya5{bottom:196.255040pt;}
.y2c{bottom:198.744533pt;}
.y2b{bottom:213.170133pt;}
.ya4{bottom:213.178133pt;}
.yda{bottom:223.334933pt;}
.y2a{bottom:227.485333pt;}
.ya1{bottom:229.958933pt;}
.yd9{bottom:240.557333pt;}
.y29{bottom:241.910933pt;}
.y98{bottom:247.770133pt;}
.y28{bottom:270.762133pt;}
.yd8{bottom:275.296533pt;}
.y27{bottom:285.187733pt;}
.yd0{bottom:292.371733pt;}
.y26{bottom:299.171733pt;}
.y9a{bottom:299.731733pt;}
.y25{bottom:313.891733pt;}
.y97{bottom:326.411733pt;}
.y24{bottom:329.200533pt;}
.y91{bottom:344.222933pt;}
.ycf{bottom:344.370133pt;}
.y23{bottom:358.051733pt;}
.yce{bottom:361.298133pt;}
.yf6{bottom:367.766933pt;}
.y22{bottom:372.477333pt;}
.y90{bottom:377.637333pt;}
.yf5{bottom:383.222933pt;}
.y8f{bottom:395.448533pt;}
.yf4{bottom:398.826133pt;}
.ycd{bottom:400.600533pt;}
.y21{bottom:403.242133pt;}
.y8d{bottom:412.082133pt;}
.yf3{bottom:414.282133pt;}
.yc7{bottom:418.411733pt;}
.yf2{bottom:430.032533pt;}
.y20{bottom:431.504533pt;}
.y86{bottom:437.400533pt;}
.yf1{bottom:446.813333pt;}
.y1f{bottom:447.990933pt;}
.y8c{bottom:454.328533pt;}
.yf0{bottom:462.293867pt;}
.ycb{bottom:464.190933pt;}
.y8a{bottom:471.109333pt;}
.y1e{bottom:476.425067pt;}
.yef{bottom:478.044267pt;}
.yc6{bottom:480.971733pt;}
.y88{bottom:488.037333pt;}
.yee{bottom:494.972267pt;}
.yc5{bottom:498.782933pt;}
.y84{bottom:504.818133pt;}
.y1d{bottom:504.981867pt;}
.y48{bottom:517.493867pt;}
.y1c{bottom:521.321067pt;}
.y7b{bottom:522.629333pt;}
.yc4{bottom:528.222933pt;}
.y47{bottom:531.919467pt;}
.y1b{bottom:537.513067pt;}
.yc3{bottom:546.058667pt;}
.y7f{bottom:547.825067pt;}
.y46{bottom:548.258667pt;}
.y45{bottom:562.389867pt;}
.yc2{bottom:563.869867pt;}
.y1a{bottom:565.775467pt;}
.y44{bottom:576.521067pt;}
.y7a{bottom:580.356267pt;}
.yc1{bottom:581.533867pt;}
.y19{bottom:582.114667pt;}
.y43{bottom:590.652267pt;}
.y77{bottom:598.167467pt;}
.y18{bottom:598.306667pt;}
.yed{bottom:598.461867pt;}
.y42{bottom:604.930667pt;}
.y17{bottom:614.498667pt;}
.yc0{bottom:615.095467pt;}
.yec{bottom:615.389867pt;}
.y41{bottom:619.061867pt;}
.ybf{bottom:632.759467pt;}
.y40{bottom:633.634667pt;}
.y76{bottom:637.469867pt;}
.y16{bottom:643.055467pt;}
.yeb{bottom:644.829867pt;}
.y3f{bottom:649.090667pt;}
.ybd{bottom:649.393067pt;}
.y6f{bottom:655.281067pt;}
.y3e{bottom:661.602667pt;}
.yea{bottom:662.493867pt;}
.ybc{bottom:666.173867pt;}
.y15{bottom:671.317867pt;}
.y3d{bottom:675.881067pt;}
.ye5{bottom:683.241067pt;}
.ybb{bottom:683.985067pt;}
.y14{bottom:687.693867pt;}
.ye9{bottom:689.137067pt;}
.y3c{bottom:690.049067pt;}
.y6e{bottom:694.583467pt;}
.yb9{bottom:700.618667pt;}
.y13{bottom:704.033067pt;}
.y3b{bottom:704.327467pt;}
.ye8{bottom:706.359467pt;}
.y69{bottom:712.247467pt;}
.y3a{bottom:718.458667pt;}
.ye7{bottom:723.581867pt;}
.y6b{bottom:730.058667pt;}
.y12{bottom:732.295467pt;}
.y39{bottom:732.589867pt;}
.ye6{bottom:740.362667pt;}
.y38{bottom:746.721067pt;}
.yb7{bottom:747.133867pt;}
.y11{bottom:748.634667pt;}
.y67{bottom:756.701867pt;}
.y10{bottom:764.973867pt;}
.y62{bottom:774.513067pt;}
.y37{bottom:774.689067pt;}
.yb6{bottom:776.021867pt;}
.yf{bottom:781.165867pt;}
.yde{bottom:786.759467pt;}
.yad{bottom:787.348267pt;}
.ydf{bottom:787.356267pt;}
.yae{bottom:793.833067pt;}
.ye{bottom:797.357867pt;}
.y5f{bottom:801.193067pt;}
.y36{bottom:803.098667pt;}
.y35{bottom:817.229867pt;}
.y5c{bottom:819.004267pt;}
.yd{bottom:827.239467pt;}
.y34{bottom:831.508267pt;}
.y59{bottom:833.724267pt;}
.yb1{bottom:840.201067pt;}
.yc{bottom:842.989867pt;}
.y33{bottom:845.639467pt;}
.y57{bottom:851.388267pt;}
.y52{bottom:855.060267pt;}
.yb0{bottom:856.981867pt;}
.yb{bottom:857.121067pt;}
.ya{bottom:871.399467pt;}
.y32{bottom:873.460267pt;}
.y56{bottom:886.569067pt;}
.ydd{bottom:890.249067pt;}
.yac{bottom:892.015467pt;}
.yff{bottom:894.666667pt;}
.ydb{bottom:907.324267pt;}
.y53{bottom:908.060267pt;}
.ya8{bottom:909.826667pt;}
.yfe{bottom:914.666667pt;}
.yfd{bottom:928.000000pt;}
.ya6{bottom:940.444267pt;}
.yfc{bottom:941.333333pt;}
.yfb{bottom:954.666667pt;}
.yfa{bottom:968.000000pt;}
.y9{bottom:975.788800pt;}
.y49{bottom:975.936000pt;}
.y4a{bottom:976.655467pt;}
.yf9{bottom:989.333333pt;}
.yf8{bottom:1010.666667pt;}
.yf7{bottom:1032.000000pt;}
.y1{bottom:1032.616000pt;}
.y6{bottom:1082.811200pt;}
.h4{height:11.334400pt;}
.h17{height:13.984000pt;}
.h24{height:15.603200pt;}
.h2b{height:15.750400pt;}
.h16{height:16.486400pt;}
.h31{height:16.515840pt;}
.h1a{height:16.633600pt;}
.h15{height:20.166400pt;}
.h22{height:24.023040pt;}
.h25{height:25.318400pt;}
.h19{height:25.347840pt;}
.h1c{height:25.465600pt;}
.h28{height:25.495040pt;}
.h30{height:28.115200pt;}
.h3{height:28.248600pt;}
.h2f{height:28.262400pt;}
.h2c{height:29.440000pt;}
.h12{height:30.705000pt;}
.h21{height:31.206400pt;}
.h26{height:32.236800pt;}
.hb{height:33.335913pt;}
.h36{height:33.414400pt;}
.h13{height:33.856000pt;}
.h5{height:35.617800pt;}
.h7{height:36.950650pt;}
.h1d{height:37.977600pt;}
.h34{height:38.124800pt;}
.ha{height:38.937500pt;}
.he{height:39.463400pt;}
.h2{height:39.596800pt;}
.h11{height:41.144700pt;}
.h1b{height:43.276800pt;}
.hc{height:43.376850pt;}
.h33{height:44.454400pt;}
.h2e{height:45.043200pt;}
.h18{height:46.057500pt;}
.h1f{height:48.751088pt;}
.h37{height:48.870400pt;}
.h1e{height:49.252200pt;}
.h2a{height:49.312000pt;}
.h29{height:50.784000pt;}
.h35{height:50.813440pt;}
.h8{height:50.970300pt;}
.hd{height:53.325500pt;}
.h3a{height:55.625000pt;}
.h20{height:56.407040pt;}
.h9{height:56.497200pt;}
.hf{height:60.519362pt;}
.h32{height:61.382400pt;}
.h14{height:61.410000pt;}
.h23{height:66.240000pt;}
.h27{height:77.456640pt;}
.h39{height:77.875000pt;}
.h2d{height:78.899200pt;}
.h38{height:85.376000pt;}
.h10{height:97.034240pt;}
.h6{height:1032.755200pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:48.458240pt;}
.w15{width:73.305600pt;}
.we{width:73.894400pt;}
.w12{width:74.041600pt;}
.w14{width:74.336000pt;}
.w9{width:74.630400pt;}
.w2{width:110.429440pt;}
.wa{width:199.075733pt;}
.wd{width:199.370133pt;}
.wf{width:199.664533pt;}
.w16{width:199.958933pt;}
.wc{width:200.253333pt;}
.w8{width:204.779733pt;}
.w13{width:205.074133pt;}
.w11{width:205.368533pt;}
.w10{width:205.662933pt;}
.wb{width:205.957333pt;}
.w5{width:238.341333pt;}
.w7{width:479.663467pt;}
.w6{width:480.841067pt;}
.w4{width:730.259189pt;}
.w17{width:793.333333pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:1.177600pt;}
.x13{left:4.268800pt;}
.x11{left:8.832000pt;}
.x18{left:18.105600pt;}
.x16{left:29.145600pt;}
.x4{left:31.746678pt;}
.x1b{left:33.856000pt;}
.x1c{left:35.475200pt;}
.x1a{left:37.241600pt;}
.x3{left:47.104000pt;}
.x21{left:48.000000pt;}
.x9{left:49.333333pt;}
.x19{left:53.575893pt;}
.x14{left:58.139093pt;}
.x1d{left:62.849493pt;}
.x1e{left:65.204693pt;}
.x5{left:104.394229pt;}
.x6{left:127.794122pt;}
.x12{left:135.110507pt;}
.x7{left:147.813322pt;}
.x8{left:149.874122pt;}
.xa{left:180.638922pt;}
.x20{left:182.973333pt;}
.xb{left:218.322122pt;}
.xc{left:240.402122pt;}
.xd{left:324.048522pt;}
.x15{left:341.075200pt;}
.x1f{left:394.066667pt;}
.x17{left:416.294400pt;}
.x10{left:467.397333pt;}
.xe{left:536.924256pt;}
.x1{left:558.072533pt;}
.xf{left:569.602656pt;}
}




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