
    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_b4b88b0b5d9034f8519a4abf.woff')format("woff");}.ff1{font-family:ff1;line-height:0.904297;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_177b099693834c6c8aad55f4.woff')format("woff");}.ff2{font-family:ff2;line-height:0.971191;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_0d16202e414271bd39e6db2d.woff')format("woff");}.ff3{font-family:ff3;line-height:0.666504;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_5bf9796781e73ac669daaa9e.woff')format("woff");}.ff4{font-family:ff4;line-height:0.861816;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_b00fe0f58fd3794e3319e24e.woff')format("woff");}.ff5{font-family:ff5;line-height:0.722656;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_fe54afed2769fd1dec64e69b.woff')format("woff");}.ff6{font-family:ff6;line-height:0.871094;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v3{vertical-align:-28.800000px;}
.v1{vertical-align:-7.780200px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:28.800000px;}
.ls1d{letter-spacing:-2.394000px;}
.ls1c{letter-spacing:-0.383040px;}
.ls38{letter-spacing:-0.360720px;}
.ls8{letter-spacing:-0.360000px;}
.ls3c{letter-spacing:-0.336960px;}
.ls5{letter-spacing:-0.324000px;}
.ls46{letter-spacing:-0.316800px;}
.ls22{letter-spacing:-0.288000px;}
.ls1a{letter-spacing:-0.287280px;}
.ls15{letter-spacing:-0.263520px;}
.ls27{letter-spacing:-0.241200px;}
.ls2e{letter-spacing:-0.240480px;}
.ls20{letter-spacing:-0.239040px;}
.ls33{letter-spacing:-0.216000px;}
.ls1e{letter-spacing:-0.191520px;}
.ls47{letter-spacing:-0.190080px;}
.ls3e{letter-spacing:-0.168480px;}
.lsc{letter-spacing:-0.167760px;}
.ls25{letter-spacing:-0.144720px;}
.ls29{letter-spacing:-0.144000px;}
.lsd{letter-spacing:-0.131760px;}
.ls2d{letter-spacing:-0.120240px;}
.ls37{letter-spacing:-0.108000px;}
.ls6{letter-spacing:-0.095760px;}
.ls1f{letter-spacing:-0.059760px;}
.ls3{letter-spacing:0.000000px;}
.ls45{letter-spacing:0.063360px;}
.ls9{letter-spacing:0.072000px;}
.ls7{letter-spacing:0.095760px;}
.ls26{letter-spacing:0.096480px;}
.ls0{letter-spacing:0.108000px;}
.ls21{letter-spacing:0.119520px;}
.ls32{letter-spacing:0.120240px;}
.lse{letter-spacing:0.131760px;}
.ls28{letter-spacing:0.144000px;}
.ls40{letter-spacing:0.167760px;}
.ls3d{letter-spacing:0.168480px;}
.ls16{letter-spacing:0.191520px;}
.ls4{letter-spacing:0.216000px;}
.ls2c{letter-spacing:0.240480px;}
.ls3f{letter-spacing:0.252720px;}
.lsf{letter-spacing:0.263520px;}
.ls1b{letter-spacing:0.287280px;}
.ls2{letter-spacing:0.288000px;}
.ls41{letter-spacing:0.324000px;}
.ls34{letter-spacing:0.324648px;}
.ls24{letter-spacing:0.337680px;}
.lsb{letter-spacing:0.360000px;}
.ls19{letter-spacing:0.419400px;}
.ls17{letter-spacing:0.670320px;}
.ls18{letter-spacing:0.671040px;}
.ls36{letter-spacing:0.756000px;}
.ls42{letter-spacing:0.961920px;}
.ls3b{letter-spacing:1.095120px;}
.ls11{letter-spacing:1.185840px;}
.ls44{letter-spacing:1.512000px;}
.ls43{letter-spacing:1.610496px;}
.ls13{letter-spacing:1.844640px;}
.ls12{letter-spacing:2.068632px;}
.ls14{letter-spacing:4.084560px;}
.ls3a{letter-spacing:18.532800px;}
.ls2a{letter-spacing:47.664000px;}
.ls30{letter-spacing:66.529440px;}
.ls2b{letter-spacing:106.930080px;}
.ls10{letter-spacing:111.600000px;}
.ls31{letter-spacing:112.536000px;}
.lsa{letter-spacing:115.884000px;}
.ls39{letter-spacing:119.879280px;}
.ls35{letter-spacing:119.915400px;}
.ls2f{letter-spacing:119.916000px;}
.ls1{letter-spacing:415.728000px;}
.ls23{letter-spacing:421.086960px;}
.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;}
}
.ws0{word-spacing:-97.632000px;}
.ws3c{word-spacing:-65.088000px;}
.ws23{word-spacing:-38.584800px;}
.ws76{word-spacing:-38.081520px;}
.ws22{word-spacing:-37.913760px;}
.ws21{word-spacing:-37.746000px;}
.ws49{word-spacing:-32.832000px;}
.ws41{word-spacing:-32.688000px;}
.ws40{word-spacing:-32.544000px;}
.ws47{word-spacing:-32.400000px;}
.ws4a{word-spacing:-32.256000px;}
.wsd{word-spacing:-30.041280px;}
.wsc{word-spacing:-29.909520px;}
.wse{word-spacing:-29.777760px;}
.wsb{word-spacing:-29.646000px;}
.ws1d{word-spacing:-29.514240px;}
.ws57{word-spacing:-27.414720px;}
.ws5c{word-spacing:-27.294480px;}
.ws54{word-spacing:-27.174240px;}
.ws56{word-spacing:-27.054000px;}
.ws55{word-spacing:-26.933760px;}
.ws6d{word-spacing:-26.813520px;}
.ws77{word-spacing:-24.732000px;}
.ws79{word-spacing:-24.624000px;}
.ws65{word-spacing:-24.516000px;}
.ws7a{word-spacing:-24.408000px;}
.ws66{word-spacing:-24.300000px;}
.ws5d{word-spacing:-24.192000px;}
.ws5e{word-spacing:-24.084000px;}
.ws29{word-spacing:-21.737520px;}
.ws24{word-spacing:-21.546000px;}
.ws2a{word-spacing:-21.450240px;}
.ws27{word-spacing:-21.354480px;}
.ws25{word-spacing:-21.258720px;}
.ws71{word-spacing:-19.290960px;}
.ws28{word-spacing:-19.247760px;}
.ws70{word-spacing:-18.869760px;}
.ws6f{word-spacing:-18.701280px;}
.ws2e{word-spacing:-16.488000px;}
.ws4{word-spacing:-16.344000px;}
.ws2d{word-spacing:-15.984000px;}
.ws3{word-spacing:-15.912000px;}
.ws26{word-spacing:-14.482080px;}
.ws7e{word-spacing:-14.002560px;}
.ws2c{word-spacing:-13.625280px;}
.ws2b{word-spacing:-13.446000px;}
.ws3e{word-spacing:-10.998720px;}
.ws3d{word-spacing:-10.757520px;}
.ws3f{word-spacing:-10.661040px;}
.ws64{word-spacing:-2.885760px;}
.ws4c{word-spacing:-2.304000px;}
.ws60{word-spacing:-2.164320px;}
.ws7b{word-spacing:-2.044080px;}
.ws75{word-spacing:-1.937520px;}
.ws7d{word-spacing:-1.923840px;}
.ws1c{word-spacing:-1.872000px;}
.ws58{word-spacing:-1.803600px;}
.ws42{word-spacing:-1.728000px;}
.ws84{word-spacing:-1.683360px;}
.ws1b{word-spacing:-1.584000px;}
.ws5{word-spacing:-1.512000px;}
.ws5b{word-spacing:-1.442880px;}
.ws5f{word-spacing:-1.202400px;}
.ws51{word-spacing:-1.082160px;}
.ws32{word-spacing:-1.053360px;}
.ws85{word-spacing:-1.008000px;}
.ws1f{word-spacing:-0.922320px;}
.ws19{word-spacing:-0.864000px;}
.ws34{word-spacing:-0.861840px;}
.ws2{word-spacing:-0.794808px;}
.ws13{word-spacing:-0.790560px;}
.ws4f{word-spacing:-0.721440px;}
.ws46{word-spacing:-0.720000px;}
.ws7f{word-spacing:-0.601200px;}
.ws59{word-spacing:-0.480960px;}
.ws82{word-spacing:-0.443520px;}
.ws61{word-spacing:-0.360720px;}
.ws7{word-spacing:-0.324000px;}
.ws81{word-spacing:-0.316800px;}
.ws48{word-spacing:-0.288000px;}
.ws33{word-spacing:-0.287280px;}
.ws11{word-spacing:-0.263520px;}
.ws53{word-spacing:-0.240480px;}
.ws3b{word-spacing:-0.216000px;}
.ws35{word-spacing:-0.191520px;}
.ws1a{word-spacing:-0.144000px;}
.ws12{word-spacing:-0.131760px;}
.ws67{word-spacing:-0.108000px;}
.ws38{word-spacing:-0.095760px;}
.ws6{word-spacing:0.000000px;}
.ws31{word-spacing:0.095760px;}
.ws6c{word-spacing:0.108000px;}
.ws72{word-spacing:0.120240px;}
.ws16{word-spacing:0.131760px;}
.ws43{word-spacing:0.144000px;}
.ws2f{word-spacing:0.167760px;}
.ws39{word-spacing:0.239040px;}
.ws63{word-spacing:0.240480px;}
.ws17{word-spacing:0.263520px;}
.ws30{word-spacing:0.287280px;}
.ws4d{word-spacing:0.288000px;}
.ws69{word-spacing:0.324000px;}
.wsf{word-spacing:0.335520px;}
.ws74{word-spacing:0.336960px;}
.ws62{word-spacing:0.360720px;}
.ws50{word-spacing:0.395280px;}
.ws80{word-spacing:0.432000px;}
.ws5a{word-spacing:0.480960px;}
.ws15{word-spacing:0.527040px;}
.ws7c{word-spacing:0.540000px;}
.ws9{word-spacing:0.574560px;}
.ws44{word-spacing:0.576000px;}
.ws8{word-spacing:0.648000px;}
.ws73{word-spacing:0.758160px;}
.ws1{word-spacing:0.842400px;}
.ws37{word-spacing:0.957600px;}
.ws6a{word-spacing:0.972000px;}
.ws45{word-spacing:1.006560px;}
.ws36{word-spacing:1.053360px;}
.ws6b{word-spacing:1.080000px;}
.ws3a{word-spacing:1.135440px;}
.ws4e{word-spacing:1.152000px;}
.ws1e{word-spacing:1.174320px;}
.ws14{word-spacing:1.185840px;}
.ws6e{word-spacing:1.202400px;}
.ws10{word-spacing:1.317600px;}
.ws78{word-spacing:1.404000px;}
.ws52{word-spacing:1.449360px;}
.ws68{word-spacing:1.836000px;}
.ws83{word-spacing:1.845360px;}
.ws18{word-spacing:2.348640px;}
.ws4b{word-spacing:3.355200px;}
.ws20{word-spacing:3.425760px;}
.wsa{word-spacing:4304.135400px;}
._9{margin-left:-161.591040px;}
._a{margin-left:-22.275936px;}
._8{margin-left:-8.403696px;}
._3{margin-left:-7.336800px;}
._7{margin-left:-5.987880px;}
._2{margin-left:-4.320000px;}
._6{margin-left:-2.578032px;}
._1{margin-left:-1.274400px;}
._0{width:1.144800px;}
._4{width:2.537352px;}
._5{width:4.627872px;}
.fc3{color:rgb(0,153,153);}
.fc5{color:rgb(127,127,127);}
.fc4{color:rgb(191,191,191);}
.fc2{color:rgb(0,0,0);}
.fc1{color:rgb(166,166,166);}
.fc0{color:rgb(255,255,255);}
.fsb{font-size:48.240000px;}
.fs9{font-size:59.760000px;}
.fse{font-size:63.360000px;}
.fs8{font-size:64.080000px;}
.fs4{font-size:72.000000px;}
.fsd{font-size:84.240000px;}
.fs3{font-size:95.760000px;}
.fs2{font-size:108.000000px;}
.fsc{font-size:120.240000px;}
.fs6{font-size:131.760000px;}
.fs7{font-size:144.000000px;}
.fs5{font-size:167.760000px;}
.fs1{font-size:216.000000px;}
.fsa{font-size:288.000000px;}
.fs0{font-size:432.000000px;}
.y0{bottom:0.000000px;}
.y27{bottom:27.990150px;}
.y7{bottom:33.791700px;}
.y26{bottom:45.992850px;}
.ybb{bottom:67.579800px;}
.y2a{bottom:82.312650px;}
.y6{bottom:84.881550px;}
.yc9{bottom:85.372800px;}
.yca{bottom:85.646550px;}
.y5f{bottom:86.668770px;}
.y9d{bottom:98.206500px;}
.y14{bottom:107.022750px;}
.yc8{bottom:114.172800px;}
.y81{bottom:117.213600px;}
.y45{bottom:117.290250px;}
.yb3{bottom:122.323650px;}
.y5e{bottom:122.680650px;}
.y25{bottom:133.456500px;}
.y9c{bottom:137.086500px;}
.y93{bottom:140.573250px;}
.y54{bottom:141.100650px;}
.y6a{bottom:148.702500px;}
.y75{bottom:149.537190px;}
.yb2{bottom:154.723650px;}
.y80{bottom:156.093600px;}
.y1d{bottom:156.808620px;}
.y13{bottom:158.862750px;}
.y44{bottom:160.490250px;}
.y5{bottom:161.056050px;}
.y24{bottom:162.256650px;}
.y92{bottom:168.117030px;}
.y9b{bottom:175.966500px;}
.y31{bottom:182.990250px;}
.y53{bottom:185.020650px;}
.y74{bottom:185.549070px;}
.y69{bottom:187.582500px;}
.y11{bottom:189.648870px;}
.y4{bottom:190.765050px;}
.yb1{bottom:193.603800px;}
.y7f{bottom:194.973600px;}
.y23{bottom:195.916650px;}
.y1c{bottom:196.402500px;}
.y43{bottom:203.690250px;}
.y39{bottom:208.910250px;}
.y5d{bottom:209.080650px;}
.y91{bottom:211.313250px;}
.y9a{bottom:214.846500px;}
.y73{bottom:221.560950px;}
.yba{bottom:221.683800px;}
.y30{bottom:226.190250px;}
.y68{bottom:227.182500px;}
.y10{bottom:229.242750px;}
.yb0{bottom:232.483650px;}
.y7e{bottom:233.853600px;}
.y1b{bottom:243.922500px;}
.y42{bottom:246.890250px;}
.y52{bottom:249.100650px;}
.y5c{bottom:252.280650px;}
.y99{bottom:254.446500px;}
.y90{bottom:254.513250px;}
.y4c{bottom:260.712300px;}
.y38{bottom:260.750250px;}
.yc5{bottom:260.840190px;}
.yb9{bottom:261.283650px;}
.y72{bottom:264.737190px;}
.yaf{bottom:264.883650px;}
.y2f{bottom:269.390250px;}
.y3c{bottom:269.390400px;}
.ya3{bottom:269.953650px;}
.y67{bottom:270.334980px;}
.y7d{bottom:272.733600px;}
.y88{bottom:275.579700px;}
.yf{bottom:276.762750px;}
.y98{bottom:279.830490px;}
.y41{bottom:290.090250px;}
.y1a{bottom:291.442500px;}
.y20{bottom:292.245900px;}
.y51{bottom:293.020650px;}
.y5b{bottom:295.480650px;}
.yc4{bottom:296.852070px;}
.y8f{bottom:297.713250px;}
.y3{bottom:300.196050px;}
.y71{bottom:300.568710px;}
.yb8{bottom:303.763800px;}
.y4b{bottom:303.912300px;}
.yae{bottom:304.483650px;}
.y66{bottom:306.346860px;}
.ya2{bottom:308.833650px;}
.y7c{bottom:311.613450px;}
.y37{bottom:312.590250px;}
.y3b{bottom:312.590400px;}
.ybf{bottom:313.861770px;}
.y97{bottom:315.842370px;}
.y87{bottom:318.779850px;}
.y1f{bottom:321.045750px;}
.y48{bottom:321.929250px;}
.ye{bottom:324.282750px;}
.yc3{bottom:332.863950px;}
.y40{bottom:333.290250px;}
.y70{bottom:336.760950px;}
.y5a{bottom:338.680650px;}
.y19{bottom:338.962500px;}
.y8e{bottom:340.913250px;}
.y65{bottom:342.358740px;}
.yb7{bottom:343.363650px;}
.y7b{bottom:344.013450px;}
.yad{bottom:346.963650px;}
.ya1{bottom:347.713650px;}
.ybe{bottom:349.873650px;}
.y96{bottom:351.854250px;}
.y1e{bottom:354.705900px;}
.y4a{bottom:355.752300px;}
.y36{bottom:355.790250px;}
.y50{bottom:357.100650px;}
.y86{bottom:361.979850px;}
.y82{bottom:362.880000px;}
.y3a{bottom:364.430250px;}
.y47{bottom:365.129250px;}
.y2{bottom:368.954250px;}
.yd{bottom:371.802750px;}
.y2e{bottom:373.070400px;}
.yc2{bottom:376.040190px;}
.y3f{bottom:376.490250px;}
.y64{bottom:378.370620px;}
.yac{bottom:379.363650px;}
.y6f{bottom:379.937190px;}
.y59{bottom:381.880650px;}
.y7a{bottom:382.893600px;}
.y8d{bottom:384.113250px;}
.yb6{bottom:385.843650px;}
.y18{bottom:386.488620px;}
.ya0{bottom:386.593650px;}
.ybd{bottom:393.049890px;}
.y95{bottom:395.042220px;}
.y49{bottom:398.952300px;}
.y4f{bottom:401.920650px;}
.y85{bottom:405.179850px;}
.y35{bottom:407.630250px;}
.yc1{bottom:412.052070px;}
.y63{bottom:414.382500px;}
.y6e{bottom:415.949070px;}
.y34{bottom:416.270250px;}
.y2d{bottom:416.270400px;}
.y46{bottom:416.969250px;}
.yab{bottom:418.243650px;}
.yc{bottom:419.328870px;}
.y79{bottom:421.773600px;}
.y58{bottom:425.080650px;}
.y9f{bottom:425.473650px;}
.y17{bottom:426.082500px;}
.y8c{bottom:427.313250px;}
.ybc{bottom:429.061770px;}
.y94{bottom:431.054100px;}
.y28{bottom:445.603800px;}
.y1{bottom:447.974100px;}
.yc0{bottom:448.063950px;}
.y84{bottom:448.367970px;}
.y29{bottom:449.280000px;}
.yb5{bottom:450.643650px;}
.y6d{bottom:451.960950px;}
.y78{bottom:454.173600px;}
.y62{bottom:457.558740px;}
.yaa{bottom:457.843650px;}
.yb{bottom:458.922750px;}
.y33{bottom:459.470250px;}
.y2c{bottom:459.470400px;}
.y9e{bottom:465.073650px;}
.ya6{bottom:466.950690px;}
.y57{bottom:468.280650px;}
.y4e{bottom:469.420650px;}
.y8b{bottom:470.513250px;}
.y16{bottom:473.608470px;}
.y3e{bottom:480.170250px;}
.y83{bottom:484.379850px;}
.y22{bottom:489.023850px;}
.yb4{bottom:490.243800px;}
.y61{bottom:493.570620px;}
.y77{bottom:493.773600px;}
.y6c{bottom:495.149070px;}
.ya9{bottom:500.323650px;}
.y32{bottom:502.670250px;}
.y2b{bottom:502.670400px;}
.ya5{bottom:502.962570px;}
.ya{bottom:506.448870px;}
.y8a{bottom:511.373250px;}
.y56{bottom:511.480650px;}
.y15{bottom:513.202350px;}
.y4d{bottom:514.240650px;}
.y21{bottom:522.683850px;}
.y60{bottom:529.582500px;}
.y6b{bottom:531.160950px;}
.y3d{bottom:532.010250px;}
.ya8{bottom:532.723650px;}
.y76{bottom:536.973600px;}
.y89{bottom:538.913250px;}
.ya4{bottom:538.974450px;}
.y12{bottom:543.342750px;}
.yc7{bottom:544.542600px;}
.y9{bottom:546.042750px;}
.yc6{bottom:549.719550px;}
.y55{bottom:554.680650px;}
.ya7{bottom:572.323650px;}
.y8{bottom:637.860000px;}
.hf{height:38.252812px;}
.hd{height:47.387813px;}
.h15{height:50.242500px;}
.h5{height:57.093750px;}
.hc{height:65.460938px;}
.h14{height:66.799687px;}
.h6{height:68.154488px;}
.h4{height:75.934688px;}
.hb{height:79.613437px;}
.h3{height:85.640625px;}
.h13{height:87.303164px;}
.h12{height:95.346562px;}
.ha{height:95.667539px;}
.h10{height:99.773438px;}
.h8{height:104.481562px;}
.h11{height:104.554688px;}
.h9{height:114.187500px;}
.h7{height:121.806211px;}
.h2{height:171.281250px;}
.he{height:228.375000px;}
.h1{height:313.664062px;}
.h0{height:810.000000px;}
.w0{width:1440.000000px;}
.x0{left:0.000000px;}
.x3{left:41.904600px;}
.x1e{left:74.934750px;}
.x4{left:86.244150px;}
.x25{left:90.048750px;}
.x2e{left:101.438700px;}
.x1b{left:105.948450px;}
.x1{left:108.000000px;}
.xd{left:109.027500px;}
.x21{left:110.242950px;}
.xf{left:111.480300px;}
.x27{left:115.188750px;}
.x16{left:117.459300px;}
.xc{left:118.800000px;}
.x1f{left:122.094750px;}
.x26{left:130.548750px;}
.x13{left:134.469000px;}
.x10{left:142.973850px;}
.x5{left:147.084000px;}
.xe{left:149.527500px;}
.x7{left:151.478700px;}
.x22{left:157.402950px;}
.x19{left:160.921350px;}
.x17{left:164.619150px;}
.x12{left:166.327800px;}
.x1c{left:168.488550px;}
.x14{left:174.969000px;}
.x11{left:183.473850px;}
.x6{left:187.584000px;}
.x8{left:191.978700px;}
.x15{left:194.244150px;}
.x23{left:197.902950px;}
.x1a{left:201.421350px;}
.x18{left:205.119150px;}
.x2{left:209.438700px;}
.x29{left:210.867150px;}
.xb{left:213.090000px;}
.x1d{left:215.648550px;}
.x28{left:244.518900px;}
.x9{left:382.099950px;}
.x2c{left:428.223750px;}
.xa{left:450.138900px;}
.x2d{left:467.247750px;}
.x24{left:764.922750px;}
.x2b{left:975.592650px;}
.x20{left:1098.596250px;}
.x2a{left:1122.024600px;}
@media print{
.v3{vertical-align:-25.600000pt;}
.v1{vertical-align:-6.915733pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:25.600000pt;}
.ls1d{letter-spacing:-2.128000pt;}
.ls1c{letter-spacing:-0.340480pt;}
.ls38{letter-spacing:-0.320640pt;}
.ls8{letter-spacing:-0.320000pt;}
.ls3c{letter-spacing:-0.299520pt;}
.ls5{letter-spacing:-0.288000pt;}
.ls46{letter-spacing:-0.281600pt;}
.ls22{letter-spacing:-0.256000pt;}
.ls1a{letter-spacing:-0.255360pt;}
.ls15{letter-spacing:-0.234240pt;}
.ls27{letter-spacing:-0.214400pt;}
.ls2e{letter-spacing:-0.213760pt;}
.ls20{letter-spacing:-0.212480pt;}
.ls33{letter-spacing:-0.192000pt;}
.ls1e{letter-spacing:-0.170240pt;}
.ls47{letter-spacing:-0.168960pt;}
.ls3e{letter-spacing:-0.149760pt;}
.lsc{letter-spacing:-0.149120pt;}
.ls25{letter-spacing:-0.128640pt;}
.ls29{letter-spacing:-0.128000pt;}
.lsd{letter-spacing:-0.117120pt;}
.ls2d{letter-spacing:-0.106880pt;}
.ls37{letter-spacing:-0.096000pt;}
.ls6{letter-spacing:-0.085120pt;}
.ls1f{letter-spacing:-0.053120pt;}
.ls3{letter-spacing:0.000000pt;}
.ls45{letter-spacing:0.056320pt;}
.ls9{letter-spacing:0.064000pt;}
.ls7{letter-spacing:0.085120pt;}
.ls26{letter-spacing:0.085760pt;}
.ls0{letter-spacing:0.096000pt;}
.ls21{letter-spacing:0.106240pt;}
.ls32{letter-spacing:0.106880pt;}
.lse{letter-spacing:0.117120pt;}
.ls28{letter-spacing:0.128000pt;}
.ls40{letter-spacing:0.149120pt;}
.ls3d{letter-spacing:0.149760pt;}
.ls16{letter-spacing:0.170240pt;}
.ls4{letter-spacing:0.192000pt;}
.ls2c{letter-spacing:0.213760pt;}
.ls3f{letter-spacing:0.224640pt;}
.lsf{letter-spacing:0.234240pt;}
.ls1b{letter-spacing:0.255360pt;}
.ls2{letter-spacing:0.256000pt;}
.ls41{letter-spacing:0.288000pt;}
.ls34{letter-spacing:0.288576pt;}
.ls24{letter-spacing:0.300160pt;}
.lsb{letter-spacing:0.320000pt;}
.ls19{letter-spacing:0.372800pt;}
.ls17{letter-spacing:0.595840pt;}
.ls18{letter-spacing:0.596480pt;}
.ls36{letter-spacing:0.672000pt;}
.ls42{letter-spacing:0.855040pt;}
.ls3b{letter-spacing:0.973440pt;}
.ls11{letter-spacing:1.054080pt;}
.ls44{letter-spacing:1.344000pt;}
.ls43{letter-spacing:1.431552pt;}
.ls13{letter-spacing:1.639680pt;}
.ls12{letter-spacing:1.838784pt;}
.ls14{letter-spacing:3.630720pt;}
.ls3a{letter-spacing:16.473600pt;}
.ls2a{letter-spacing:42.368000pt;}
.ls30{letter-spacing:59.137280pt;}
.ls2b{letter-spacing:95.048960pt;}
.ls10{letter-spacing:99.200000pt;}
.ls31{letter-spacing:100.032000pt;}
.lsa{letter-spacing:103.008000pt;}
.ls39{letter-spacing:106.559360pt;}
.ls35{letter-spacing:106.591467pt;}
.ls2f{letter-spacing:106.592000pt;}
.ls1{letter-spacing:369.536000pt;}
.ls23{letter-spacing:374.299520pt;}
.ws0{word-spacing:-86.784000pt;}
.ws3c{word-spacing:-57.856000pt;}
.ws23{word-spacing:-34.297600pt;}
.ws76{word-spacing:-33.850240pt;}
.ws22{word-spacing:-33.701120pt;}
.ws21{word-spacing:-33.552000pt;}
.ws49{word-spacing:-29.184000pt;}
.ws41{word-spacing:-29.056000pt;}
.ws40{word-spacing:-28.928000pt;}
.ws47{word-spacing:-28.800000pt;}
.ws4a{word-spacing:-28.672000pt;}
.wsd{word-spacing:-26.703360pt;}
.wsc{word-spacing:-26.586240pt;}
.wse{word-spacing:-26.469120pt;}
.wsb{word-spacing:-26.352000pt;}
.ws1d{word-spacing:-26.234880pt;}
.ws57{word-spacing:-24.368640pt;}
.ws5c{word-spacing:-24.261760pt;}
.ws54{word-spacing:-24.154880pt;}
.ws56{word-spacing:-24.048000pt;}
.ws55{word-spacing:-23.941120pt;}
.ws6d{word-spacing:-23.834240pt;}
.ws77{word-spacing:-21.984000pt;}
.ws79{word-spacing:-21.888000pt;}
.ws65{word-spacing:-21.792000pt;}
.ws7a{word-spacing:-21.696000pt;}
.ws66{word-spacing:-21.600000pt;}
.ws5d{word-spacing:-21.504000pt;}
.ws5e{word-spacing:-21.408000pt;}
.ws29{word-spacing:-19.322240pt;}
.ws24{word-spacing:-19.152000pt;}
.ws2a{word-spacing:-19.066880pt;}
.ws27{word-spacing:-18.981760pt;}
.ws25{word-spacing:-18.896640pt;}
.ws71{word-spacing:-17.147520pt;}
.ws28{word-spacing:-17.109120pt;}
.ws70{word-spacing:-16.773120pt;}
.ws6f{word-spacing:-16.623360pt;}
.ws2e{word-spacing:-14.656000pt;}
.ws4{word-spacing:-14.528000pt;}
.ws2d{word-spacing:-14.208000pt;}
.ws3{word-spacing:-14.144000pt;}
.ws26{word-spacing:-12.872960pt;}
.ws7e{word-spacing:-12.446720pt;}
.ws2c{word-spacing:-12.111360pt;}
.ws2b{word-spacing:-11.952000pt;}
.ws3e{word-spacing:-9.776640pt;}
.ws3d{word-spacing:-9.562240pt;}
.ws3f{word-spacing:-9.476480pt;}
.ws64{word-spacing:-2.565120pt;}
.ws4c{word-spacing:-2.048000pt;}
.ws60{word-spacing:-1.923840pt;}
.ws7b{word-spacing:-1.816960pt;}
.ws75{word-spacing:-1.722240pt;}
.ws7d{word-spacing:-1.710080pt;}
.ws1c{word-spacing:-1.664000pt;}
.ws58{word-spacing:-1.603200pt;}
.ws42{word-spacing:-1.536000pt;}
.ws84{word-spacing:-1.496320pt;}
.ws1b{word-spacing:-1.408000pt;}
.ws5{word-spacing:-1.344000pt;}
.ws5b{word-spacing:-1.282560pt;}
.ws5f{word-spacing:-1.068800pt;}
.ws51{word-spacing:-0.961920pt;}
.ws32{word-spacing:-0.936320pt;}
.ws85{word-spacing:-0.896000pt;}
.ws1f{word-spacing:-0.819840pt;}
.ws19{word-spacing:-0.768000pt;}
.ws34{word-spacing:-0.766080pt;}
.ws2{word-spacing:-0.706496pt;}
.ws13{word-spacing:-0.702720pt;}
.ws4f{word-spacing:-0.641280pt;}
.ws46{word-spacing:-0.640000pt;}
.ws7f{word-spacing:-0.534400pt;}
.ws59{word-spacing:-0.427520pt;}
.ws82{word-spacing:-0.394240pt;}
.ws61{word-spacing:-0.320640pt;}
.ws7{word-spacing:-0.288000pt;}
.ws81{word-spacing:-0.281600pt;}
.ws48{word-spacing:-0.256000pt;}
.ws33{word-spacing:-0.255360pt;}
.ws11{word-spacing:-0.234240pt;}
.ws53{word-spacing:-0.213760pt;}
.ws3b{word-spacing:-0.192000pt;}
.ws35{word-spacing:-0.170240pt;}
.ws1a{word-spacing:-0.128000pt;}
.ws12{word-spacing:-0.117120pt;}
.ws67{word-spacing:-0.096000pt;}
.ws38{word-spacing:-0.085120pt;}
.ws6{word-spacing:0.000000pt;}
.ws31{word-spacing:0.085120pt;}
.ws6c{word-spacing:0.096000pt;}
.ws72{word-spacing:0.106880pt;}
.ws16{word-spacing:0.117120pt;}
.ws43{word-spacing:0.128000pt;}
.ws2f{word-spacing:0.149120pt;}
.ws39{word-spacing:0.212480pt;}
.ws63{word-spacing:0.213760pt;}
.ws17{word-spacing:0.234240pt;}
.ws30{word-spacing:0.255360pt;}
.ws4d{word-spacing:0.256000pt;}
.ws69{word-spacing:0.288000pt;}
.wsf{word-spacing:0.298240pt;}
.ws74{word-spacing:0.299520pt;}
.ws62{word-spacing:0.320640pt;}
.ws50{word-spacing:0.351360pt;}
.ws80{word-spacing:0.384000pt;}
.ws5a{word-spacing:0.427520pt;}
.ws15{word-spacing:0.468480pt;}
.ws7c{word-spacing:0.480000pt;}
.ws9{word-spacing:0.510720pt;}
.ws44{word-spacing:0.512000pt;}
.ws8{word-spacing:0.576000pt;}
.ws73{word-spacing:0.673920pt;}
.ws1{word-spacing:0.748800pt;}
.ws37{word-spacing:0.851200pt;}
.ws6a{word-spacing:0.864000pt;}
.ws45{word-spacing:0.894720pt;}
.ws36{word-spacing:0.936320pt;}
.ws6b{word-spacing:0.960000pt;}
.ws3a{word-spacing:1.009280pt;}
.ws4e{word-spacing:1.024000pt;}
.ws1e{word-spacing:1.043840pt;}
.ws14{word-spacing:1.054080pt;}
.ws6e{word-spacing:1.068800pt;}
.ws10{word-spacing:1.171200pt;}
.ws78{word-spacing:1.248000pt;}
.ws52{word-spacing:1.288320pt;}
.ws68{word-spacing:1.632000pt;}
.ws83{word-spacing:1.640320pt;}
.ws18{word-spacing:2.087680pt;}
.ws4b{word-spacing:2.982400pt;}
.ws20{word-spacing:3.045120pt;}
.wsa{word-spacing:3825.898133pt;}
._9{margin-left:-143.636480pt;}
._a{margin-left:-19.800832pt;}
._8{margin-left:-7.469952pt;}
._3{margin-left:-6.521600pt;}
._7{margin-left:-5.322560pt;}
._2{margin-left:-3.840000pt;}
._6{margin-left:-2.291584pt;}
._1{margin-left:-1.132800pt;}
._0{width:1.017600pt;}
._4{width:2.255424pt;}
._5{width:4.113664pt;}
.fsb{font-size:42.880000pt;}
.fs9{font-size:53.120000pt;}
.fse{font-size:56.320000pt;}
.fs8{font-size:56.960000pt;}
.fs4{font-size:64.000000pt;}
.fsd{font-size:74.880000pt;}
.fs3{font-size:85.120000pt;}
.fs2{font-size:96.000000pt;}
.fsc{font-size:106.880000pt;}
.fs6{font-size:117.120000pt;}
.fs7{font-size:128.000000pt;}
.fs5{font-size:149.120000pt;}
.fs1{font-size:192.000000pt;}
.fsa{font-size:256.000000pt;}
.fs0{font-size:384.000000pt;}
.y0{bottom:0.000000pt;}
.y27{bottom:24.880133pt;}
.y7{bottom:30.037067pt;}
.y26{bottom:40.882533pt;}
.ybb{bottom:60.070933pt;}
.y2a{bottom:73.166800pt;}
.y6{bottom:75.450267pt;}
.yc9{bottom:75.886933pt;}
.yca{bottom:76.130267pt;}
.y5f{bottom:77.038907pt;}
.y9d{bottom:87.294667pt;}
.y14{bottom:95.131333pt;}
.yc8{bottom:101.486933pt;}
.y81{bottom:104.189867pt;}
.y45{bottom:104.258000pt;}
.yb3{bottom:108.732133pt;}
.y5e{bottom:109.049467pt;}
.y25{bottom:118.628000pt;}
.y9c{bottom:121.854667pt;}
.y93{bottom:124.954000pt;}
.y54{bottom:125.422800pt;}
.y6a{bottom:132.180000pt;}
.y75{bottom:132.921947pt;}
.yb2{bottom:137.532133pt;}
.y80{bottom:138.749867pt;}
.y1d{bottom:139.385440pt;}
.y13{bottom:141.211333pt;}
.y44{bottom:142.658000pt;}
.y5{bottom:143.160933pt;}
.y24{bottom:144.228133pt;}
.y92{bottom:149.437360pt;}
.y9b{bottom:156.414667pt;}
.y31{bottom:162.658000pt;}
.y53{bottom:164.462800pt;}
.y74{bottom:164.932507pt;}
.y69{bottom:166.740000pt;}
.y11{bottom:168.576773pt;}
.y4{bottom:169.568933pt;}
.yb1{bottom:172.092267pt;}
.y7f{bottom:173.309867pt;}
.y23{bottom:174.148133pt;}
.y1c{bottom:174.580000pt;}
.y43{bottom:181.058000pt;}
.y39{bottom:185.698000pt;}
.y5d{bottom:185.849467pt;}
.y91{bottom:187.834000pt;}
.y9a{bottom:190.974667pt;}
.y73{bottom:196.943067pt;}
.yba{bottom:197.052267pt;}
.y30{bottom:201.058000pt;}
.y68{bottom:201.940000pt;}
.y10{bottom:203.771333pt;}
.yb0{bottom:206.652133pt;}
.y7e{bottom:207.869867pt;}
.y1b{bottom:216.820000pt;}
.y42{bottom:219.458000pt;}
.y52{bottom:221.422800pt;}
.y5c{bottom:224.249467pt;}
.y99{bottom:226.174667pt;}
.y90{bottom:226.234000pt;}
.y4c{bottom:231.744267pt;}
.y38{bottom:231.778000pt;}
.yc5{bottom:231.857947pt;}
.yb9{bottom:232.252133pt;}
.y72{bottom:235.321947pt;}
.yaf{bottom:235.452133pt;}
.y2f{bottom:239.458000pt;}
.y3c{bottom:239.458133pt;}
.ya3{bottom:239.958800pt;}
.y67{bottom:240.297760pt;}
.y7d{bottom:242.429867pt;}
.y88{bottom:244.959733pt;}
.yf{bottom:246.011333pt;}
.y98{bottom:248.738213pt;}
.y41{bottom:257.858000pt;}
.y1a{bottom:259.060000pt;}
.y20{bottom:259.774133pt;}
.y51{bottom:260.462800pt;}
.y5b{bottom:262.649467pt;}
.yc4{bottom:263.868507pt;}
.y8f{bottom:264.634000pt;}
.y3{bottom:266.840933pt;}
.y71{bottom:267.172187pt;}
.yb8{bottom:270.012267pt;}
.y4b{bottom:270.144267pt;}
.yae{bottom:270.652133pt;}
.y66{bottom:272.308320pt;}
.ya2{bottom:274.518800pt;}
.y7c{bottom:276.989733pt;}
.y37{bottom:277.858000pt;}
.y3b{bottom:277.858133pt;}
.ybf{bottom:278.988240pt;}
.y97{bottom:280.748773pt;}
.y87{bottom:283.359867pt;}
.y1f{bottom:285.374000pt;}
.y48{bottom:286.159333pt;}
.ye{bottom:288.251333pt;}
.yc3{bottom:295.879067pt;}
.y40{bottom:296.258000pt;}
.y70{bottom:299.343067pt;}
.y5a{bottom:301.049467pt;}
.y19{bottom:301.300000pt;}
.y8e{bottom:303.034000pt;}
.y65{bottom:304.318880pt;}
.yb7{bottom:305.212133pt;}
.y7b{bottom:305.789733pt;}
.yad{bottom:308.412133pt;}
.ya1{bottom:309.078800pt;}
.ybe{bottom:310.998800pt;}
.y96{bottom:312.759333pt;}
.y1e{bottom:315.294133pt;}
.y4a{bottom:316.224267pt;}
.y36{bottom:316.258000pt;}
.y50{bottom:317.422800pt;}
.y86{bottom:321.759867pt;}
.y82{bottom:322.560000pt;}
.y3a{bottom:323.938000pt;}
.y47{bottom:324.559333pt;}
.y2{bottom:327.959333pt;}
.yd{bottom:330.491333pt;}
.y2e{bottom:331.618133pt;}
.yc2{bottom:334.257947pt;}
.y3f{bottom:334.658000pt;}
.y64{bottom:336.329440pt;}
.yac{bottom:337.212133pt;}
.y6f{bottom:337.721947pt;}
.y59{bottom:339.449467pt;}
.y7a{bottom:340.349867pt;}
.y8d{bottom:341.434000pt;}
.yb6{bottom:342.972133pt;}
.y18{bottom:343.545440pt;}
.ya0{bottom:343.638800pt;}
.ybd{bottom:349.377680pt;}
.y95{bottom:351.148640pt;}
.y49{bottom:354.624267pt;}
.y4f{bottom:357.262800pt;}
.y85{bottom:360.159867pt;}
.y35{bottom:362.338000pt;}
.yc1{bottom:366.268507pt;}
.y63{bottom:368.340000pt;}
.y6e{bottom:369.732507pt;}
.y34{bottom:370.018000pt;}
.y2d{bottom:370.018133pt;}
.y46{bottom:370.639333pt;}
.yab{bottom:371.772133pt;}
.yc{bottom:372.736773pt;}
.y79{bottom:374.909867pt;}
.y58{bottom:377.849467pt;}
.y9f{bottom:378.198800pt;}
.y17{bottom:378.740000pt;}
.y8c{bottom:379.834000pt;}
.ybc{bottom:381.388240pt;}
.y94{bottom:383.159200pt;}
.y28{bottom:396.092267pt;}
.y1{bottom:398.199200pt;}
.yc0{bottom:398.279067pt;}
.y84{bottom:398.549307pt;}
.y29{bottom:399.360000pt;}
.yb5{bottom:400.572133pt;}
.y6d{bottom:401.743067pt;}
.y78{bottom:403.709867pt;}
.y62{bottom:406.718880pt;}
.yaa{bottom:406.972133pt;}
.yb{bottom:407.931333pt;}
.y33{bottom:408.418000pt;}
.y2c{bottom:408.418133pt;}
.y9e{bottom:413.398800pt;}
.ya6{bottom:415.067280pt;}
.y57{bottom:416.249467pt;}
.y4e{bottom:417.262800pt;}
.y8b{bottom:418.234000pt;}
.y16{bottom:420.985307pt;}
.y3e{bottom:426.818000pt;}
.y83{bottom:430.559867pt;}
.y22{bottom:434.687867pt;}
.yb4{bottom:435.772267pt;}
.y61{bottom:438.729440pt;}
.y77{bottom:438.909867pt;}
.y6c{bottom:440.132507pt;}
.ya9{bottom:444.732133pt;}
.y32{bottom:446.818000pt;}
.y2b{bottom:446.818133pt;}
.ya5{bottom:447.077840pt;}
.ya{bottom:450.176773pt;}
.y8a{bottom:454.554000pt;}
.y56{bottom:454.649467pt;}
.y15{bottom:456.179867pt;}
.y4d{bottom:457.102800pt;}
.y21{bottom:464.607867pt;}
.y60{bottom:470.740000pt;}
.y6b{bottom:472.143067pt;}
.y3d{bottom:472.898000pt;}
.ya8{bottom:473.532133pt;}
.y76{bottom:477.309867pt;}
.y89{bottom:479.034000pt;}
.ya4{bottom:479.088400pt;}
.y12{bottom:482.971333pt;}
.yc7{bottom:484.037867pt;}
.y9{bottom:485.371333pt;}
.yc6{bottom:488.639600pt;}
.y55{bottom:493.049467pt;}
.ya7{bottom:508.732133pt;}
.y8{bottom:566.986667pt;}
.hf{height:34.002500pt;}
.hd{height:42.122500pt;}
.h15{height:44.660000pt;}
.h5{height:50.750000pt;}
.hc{height:58.187500pt;}
.h14{height:59.377500pt;}
.h6{height:60.581767pt;}
.h4{height:67.497500pt;}
.hb{height:70.767500pt;}
.h3{height:76.125000pt;}
.h13{height:77.602812pt;}
.h12{height:84.752500pt;}
.ha{height:85.037812pt;}
.h10{height:88.687500pt;}
.h8{height:92.872500pt;}
.h11{height:92.937500pt;}
.h9{height:101.500000pt;}
.h7{height:108.272187pt;}
.h2{height:152.250000pt;}
.he{height:203.000000pt;}
.h1{height:278.812500pt;}
.h0{height:720.000000pt;}
.w0{width:1280.000000pt;}
.x0{left:0.000000pt;}
.x3{left:37.248533pt;}
.x1e{left:66.608667pt;}
.x4{left:76.661467pt;}
.x25{left:80.043333pt;}
.x2e{left:90.167733pt;}
.x1b{left:94.176400pt;}
.x1{left:96.000000pt;}
.xd{left:96.913333pt;}
.x21{left:97.993733pt;}
.xf{left:99.093600pt;}
.x27{left:102.390000pt;}
.x16{left:104.408267pt;}
.xc{left:105.600000pt;}
.x1f{left:108.528667pt;}
.x26{left:116.043333pt;}
.x13{left:119.528000pt;}
.x10{left:127.087867pt;}
.x5{left:130.741333pt;}
.xe{left:132.913333pt;}
.x7{left:134.647733pt;}
.x22{left:139.913733pt;}
.x19{left:143.041200pt;}
.x17{left:146.328133pt;}
.x12{left:147.846933pt;}
.x1c{left:149.767600pt;}
.x14{left:155.528000pt;}
.x11{left:163.087867pt;}
.x6{left:166.741333pt;}
.x8{left:170.647733pt;}
.x15{left:172.661467pt;}
.x23{left:175.913733pt;}
.x1a{left:179.041200pt;}
.x18{left:182.328133pt;}
.x2{left:186.167733pt;}
.x29{left:187.437467pt;}
.xb{left:189.413333pt;}
.x1d{left:191.687600pt;}
.x28{left:217.350133pt;}
.x9{left:339.644400pt;}
.x2c{left:380.643333pt;}
.xa{left:400.123467pt;}
.x2d{left:415.331333pt;}
.x24{left:679.931333pt;}
.x2b{left:867.193467pt;}
.x20{left:976.530000pt;}
.x2a{left:997.355200pt;}
}




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