
    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_bd71d64f773df815e891204f.woff')format("woff");}.ff1{font-family:ff1;line-height:0.682617;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_d53e52a6156100dddd3ae229.woff')format("woff");}.ff2{font-family:ff2;line-height:0.922852;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_19278efba46b280a58873111.woff')format("woff");}.ff3{font-family:ff3;line-height:0.922852;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_e7add1dd01126a1fbd77a375.woff')format("woff");}.ff4{font-family:ff4;line-height:1.082031;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_b55808209b12221a56531468.woff')format("woff");}.ff5{font-family:ff5;line-height:0.851000;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_079b1c1a6bd9315bc687a875.woff')format("woff");}.ff6{font-family:ff6;line-height:1.084961;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_b9feab2acf553ef004d9aaba.woff')format("woff");}.ff7{font-family:ff7;line-height:0.678223;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_82577022779004e27369c536.woff')format("woff");}.ff8{font-family:ff8;line-height:0.822000;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_f670c8164e03efe6caae9d3a.woff')format("woff");}.ff9{font-family:ff9;line-height:0.704000;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_b2c1811719c412879f7e2ab8.woff')format("woff");}.ffa{font-family:ffa;line-height:0.683594;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);}
.v3{vertical-align:-16.830000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:23.760000px;}
.v1{vertical-align:181.200000px;}
.ls23{letter-spacing:-2.664000px;}
.ls22{letter-spacing:-2.448000px;}
.ls24{letter-spacing:-2.232000px;}
.ls25{letter-spacing:-1.872000px;}
.ls2f{letter-spacing:-1.152000px;}
.ls29{letter-spacing:-0.936000px;}
.ls26{letter-spacing:-0.864000px;}
.ls1a{letter-spacing:-0.792000px;}
.ls27{letter-spacing:-0.720000px;}
.ls2d{letter-spacing:-0.648000px;}
.ls20{letter-spacing:-0.576000px;}
.ls12{letter-spacing:-0.504000px;}
.ls1d{letter-spacing:-0.432000px;}
.ls19{letter-spacing:-0.360000px;}
.ls31{letter-spacing:-0.336000px;}
.ls10{letter-spacing:-0.300000px;}
.ls2a{letter-spacing:-0.288000px;}
.ls32{letter-spacing:-0.240000px;}
.ls13{letter-spacing:-0.216000px;}
.ls1c{letter-spacing:-0.144000px;}
.ls17{letter-spacing:-0.072000px;}
.ls6{letter-spacing:0.000000px;}
.ls8{letter-spacing:0.060000px;}
.ls16{letter-spacing:0.072000px;}
.lse{letter-spacing:0.144000px;}
.ls1e{letter-spacing:0.216000px;}
.ls14{letter-spacing:0.288000px;}
.ls5{letter-spacing:0.300000px;}
.ls18{letter-spacing:0.360000px;}
.lsf{letter-spacing:0.432000px;}
.ls1b{letter-spacing:0.504000px;}
.ls15{letter-spacing:0.576000px;}
.lsc{letter-spacing:0.648000px;}
.ls11{letter-spacing:0.720000px;}
.lsd{letter-spacing:0.792000px;}
.ls28{letter-spacing:0.864000px;}
.lsb{letter-spacing:1.008000px;}
.lsa{letter-spacing:1.080000px;}
.ls2c{letter-spacing:1.656000px;}
.ls1{letter-spacing:2.850000px;}
.ls30{letter-spacing:2.928000px;}
.ls1f{letter-spacing:2.956800px;}
.ls3{letter-spacing:4.260000px;}
.ls34{letter-spacing:4.278000px;}
.ls4{letter-spacing:4.560000px;}
.ls2e{letter-spacing:4.752000px;}
.ls21{letter-spacing:7.344000px;}
.ls33{letter-spacing:8.100000px;}
.ls0{letter-spacing:8.436000px;}
.ls7{letter-spacing:8.460000px;}
.ls2b{letter-spacing:9.424800px;}
.ls9{letter-spacing:10.645186px;}
.ls2{letter-spacing:10.740000px;}
.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;}
}
.ws2{word-spacing:-25.320000px;}
.ws0{word-spacing:-25.296000px;}
.ws45{word-spacing:-23.274000px;}
.ws16{word-spacing:-20.232000px;}
.ws1{word-spacing:-18.867000px;}
.ws35{word-spacing:-18.576000px;}
.ws2b{word-spacing:-17.784000px;}
.ws3c{word-spacing:-17.424000px;}
.ws2a{word-spacing:-17.352000px;}
.ws29{word-spacing:-14.162400px;}
.ws41{word-spacing:-13.488000px;}
.ws3e{word-spacing:-12.336000px;}
.ws42{word-spacing:-11.856000px;}
.ws2d{word-spacing:-8.460000px;}
.wsc{word-spacing:-4.560000px;}
.ws1d{word-spacing:-2.016000px;}
.ws3a{word-spacing:-1.656000px;}
.ws1e{word-spacing:-1.584000px;}
.wsd{word-spacing:-1.080000px;}
.ws11{word-spacing:-1.008000px;}
.ws36{word-spacing:-0.864000px;}
.wse{word-spacing:-0.792000px;}
.wsf{word-spacing:-0.720000px;}
.ws12{word-spacing:-0.648000px;}
.ws1a{word-spacing:-0.576000px;}
.ws25{word-spacing:-0.504000px;}
.ws15{word-spacing:-0.432000px;}
.ws19{word-spacing:-0.360000px;}
.ws8{word-spacing:-0.300000px;}
.ws17{word-spacing:-0.288000px;}
.ws28{word-spacing:-0.216000px;}
.ws13{word-spacing:-0.144000px;}
.ws22{word-spacing:-0.072000px;}
.ws7{word-spacing:-0.060000px;}
.ws4{word-spacing:0.000000px;}
.ws18{word-spacing:0.072000px;}
.ws26{word-spacing:0.144000px;}
.ws14{word-spacing:0.216000px;}
.ws44{word-spacing:0.240000px;}
.ws39{word-spacing:0.288000px;}
.wsb{word-spacing:0.300000px;}
.ws43{word-spacing:0.336000px;}
.ws1b{word-spacing:0.360000px;}
.ws46{word-spacing:0.384000px;}
.ws27{word-spacing:0.432000px;}
.ws10{word-spacing:0.504000px;}
.ws2c{word-spacing:0.576000px;}
.ws3d{word-spacing:0.648000px;}
.ws34{word-spacing:0.720000px;}
.ws1c{word-spacing:0.792000px;}
.ws33{word-spacing:0.864000px;}
.ws38{word-spacing:0.936000px;}
.ws20{word-spacing:1.152000px;}
.ws47{word-spacing:1.440000px;}
.ws5{word-spacing:1.800000px;}
.ws31{word-spacing:1.872000px;}
.ws32{word-spacing:2.160000px;}
.ws30{word-spacing:2.232000px;}
.ws2e{word-spacing:2.448000px;}
.ws2f{word-spacing:2.664000px;}
.ws6{word-spacing:3.312000px;}
.ws40{word-spacing:3.360000px;}
.ws3{word-spacing:4.200000px;}
.ws1f{word-spacing:4.248000px;}
.ws21{word-spacing:4.464000px;}
.ws3f{word-spacing:5.040000px;}
.ws23{word-spacing:5.112000px;}
.ws3b{word-spacing:6.480000px;}
.wsa{word-spacing:7.140000px;}
.ws24{word-spacing:8.928000px;}
.ws37{word-spacing:10.152000px;}
.ws9{word-spacing:129.396000px;}
._0{margin-left:-948.820800px;}
._12{margin-left:-20.160000px;}
._b{margin-left:-18.408000px;}
._a{margin-left:-14.820000px;}
._14{margin-left:-13.226400px;}
._4{margin-left:-11.928000px;}
._d{margin-left:-8.811600px;}
._f{margin-left:-7.178400px;}
._1{margin-left:-5.964000px;}
._8{margin-left:-4.320000px;}
._6{margin-left:-2.472000px;}
._3{margin-left:-1.248000px;}
._2{width:1.878000px;}
._5{width:3.756000px;}
._9{width:5.157600px;}
._11{width:7.094400px;}
._7{width:8.232000px;}
._10{width:9.878400px;}
._e{width:10.980000px;}
._c{width:12.012000px;}
._15{width:13.194000px;}
._13{width:31.646100px;}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:35.700000px;}
.fs4{font-size:48.000000px;}
.fs6{font-size:50.400000px;}
.fs8{font-size:54.000000px;}
.fs1{font-size:57.000000px;}
.fs0{font-size:60.000000px;}
.fs3{font-size:72.000000px;}
.fs2{font-size:120.000000px;}
.fs5{font-size:426.053400px;}
.y0{bottom:0.000000px;}
.y22{bottom:55.500000px;}
.y1{bottom:72.000000px;}
.y186{bottom:116.238150px;}
.yaa{bottom:117.000000px;}
.y84{bottom:117.078000px;}
.y6b{bottom:117.168000px;}
.y15c{bottom:117.228000px;}
.yb8{bottom:117.258000px;}
.ye1{bottom:117.288000px;}
.yaf{bottom:118.188000px;}
.y128{bottom:119.766000px;}
.y21{bottom:120.793050px;}
.y46{bottom:120.976050px;}
.y103{bottom:121.896000px;}
.ydd{bottom:122.334000px;}
.ya9{bottom:132.000000px;}
.y15b{bottom:132.528000px;}
.y185{bottom:134.388150px;}
.y127{bottom:134.766000px;}
.y83{bottom:138.984000px;}
.y6a{bottom:139.074000px;}
.yb7{bottom:139.164000px;}
.ye0{bottom:139.194000px;}
.yae{bottom:140.094000px;}
.y20{bottom:140.143050px;}
.y45{bottom:143.620050px;}
.y102{bottom:144.252000px;}
.ydc{bottom:144.690000px;}
.ya8{bottom:147.000000px;}
.y15a{bottom:147.828000px;}
.y126{bottom:149.766000px;}
.y184{bottom:152.538150px;}
.y1f{bottom:159.493050px;}
.y82{bottom:160.890000px;}
.y69{bottom:160.980000px;}
.yb6{bottom:161.070000px;}
.ydf{bottom:161.100000px;}
.ya7{bottom:162.000000px;}
.y159{bottom:163.128000px;}
.y125{bottom:164.766000px;}
.y44{bottom:166.264050px;}
.y101{bottom:166.608000px;}
.ydb{bottom:167.046000px;}
.y183{bottom:170.688150px;}
.ya6{bottom:177.000000px;}
.y158{bottom:178.428000px;}
.y1e{bottom:178.843050px;}
.y81{bottom:182.796000px;}
.y68{bottom:182.886000px;}
.yb5{bottom:182.976000px;}
.yde{bottom:183.000000px;}
.yad{bottom:184.500000px;}
.y124{bottom:186.150000px;}
.y43{bottom:188.908050px;}
.y100{bottom:188.964000px;}
.yda{bottom:189.402000px;}
.ya5{bottom:192.000000px;}
.y157{bottom:193.728000px;}
.y1d{bottom:198.193050px;}
.y182{bottom:199.488150px;}
.y80{bottom:204.702000px;}
.y67{bottom:204.792000px;}
.yb4{bottom:204.882000px;}
.yac{bottom:207.000000px;}
.y156{bottom:209.028000px;}
.ya4{bottom:211.207500px;}
.yff{bottom:211.320000px;}
.y42{bottom:211.552050px;}
.yd9{bottom:211.758000px;}
.y1c{bottom:217.543050px;}
.y181{bottom:217.638150px;}
.y155{bottom:224.328000px;}
.y7f{bottom:226.608000px;}
.y66{bottom:226.698000px;}
.yb3{bottom:226.788000px;}
.yab{bottom:229.500000px;}
.y123{bottom:231.924000px;}
.yfe{bottom:233.676000px;}
.yd8{bottom:234.114000px;}
.y41{bottom:234.196050px;}
.y180{bottom:235.788150px;}
.y1b{bottom:236.893050px;}
.y154{bottom:239.628000px;}
.y7e{bottom:248.514000px;}
.y65{bottom:248.604000px;}
.yb2{bottom:248.694000px;}
.ya3{bottom:252.000000px;}
.y17f{bottom:253.938150px;}
.y122{bottom:254.424000px;}
.y153{bottom:254.928000px;}
.yfd{bottom:256.032000px;}
.y1a{bottom:256.243050px;}
.yd7{bottom:256.470000px;}
.y40{bottom:256.840050px;}
.y152{bottom:270.228000px;}
.y7d{bottom:270.420000px;}
.y64{bottom:270.510000px;}
.yb1{bottom:270.600000px;}
.ya2{bottom:274.500000px;}
.y121{bottom:276.924000px;}
.yfc{bottom:278.388000px;}
.yd6{bottom:278.826000px;}
.y3f{bottom:279.484050px;}
.y17e{bottom:282.738150px;}
.y19{bottom:284.098050px;}
.y151{bottom:285.528000px;}
.y7c{bottom:292.326000px;}
.y63{bottom:292.416000px;}
.yb0{bottom:292.500000px;}
.ya1{bottom:297.000000px;}
.y120{bottom:299.424000px;}
.yfb{bottom:300.744000px;}
.y150{bottom:300.828000px;}
.yd5{bottom:301.182000px;}
.y3e{bottom:302.128050px;}
.y7b{bottom:314.232000px;}
.y62{bottom:314.322000px;}
.y14f{bottom:316.128000px;}
.ya0{bottom:319.500000px;}
.y11f{bottom:321.924000px;}
.y17d{bottom:322.788150px;}
.yfa{bottom:323.100000px;}
.yd4{bottom:323.538000px;}
.y3d{bottom:324.772050px;}
.y18{bottom:330.298050px;}
.y14e{bottom:331.428000px;}
.y7a{bottom:336.138000px;}
.y61{bottom:336.228000px;}
.y17c{bottom:340.938150px;}
.y9f{bottom:342.000000px;}
.y11e{bottom:344.424000px;}
.yf9{bottom:345.456000px;}
.yd3{bottom:345.894000px;}
.y14d{bottom:346.728000px;}
.y3c{bottom:347.416050px;}
.y17{bottom:349.648050px;}
.y79{bottom:358.044000px;}
.y60{bottom:358.134000px;}
.y17b{bottom:359.088150px;}
.y14c{bottom:362.028000px;}
.y9e{bottom:364.500000px;}
.y11d{bottom:366.924000px;}
.yf8{bottom:367.812000px;}
.yd2{bottom:368.250000px;}
.y16{bottom:368.998050px;}
.y3b{bottom:370.060050px;}
.y17a{bottom:377.238150px;}
.y14b{bottom:377.328000px;}
.y78{bottom:379.950000px;}
.y5f{bottom:380.040000px;}
.y9d{bottom:387.000000px;}
.y11c{bottom:389.424000px;}
.yf7{bottom:390.168000px;}
.yd1{bottom:390.606000px;}
.y14a{bottom:392.628000px;}
.y3a{bottom:392.704050px;}
.y179{bottom:395.388150px;}
.y15{bottom:396.850950px;}
.y77{bottom:401.856000px;}
.y5e{bottom:401.946000px;}
.y149{bottom:407.928000px;}
.y9c{bottom:409.500000px;}
.y11b{bottom:411.924000px;}
.yf6{bottom:412.524000px;}
.yd0{bottom:412.962000px;}
.y178{bottom:413.538150px;}
.y39{bottom:415.348050px;}
.y14{bottom:416.200950px;}
.y148{bottom:423.228000px;}
.y76{bottom:423.762000px;}
.y5d{bottom:423.852000px;}
.y177{bottom:431.688150px;}
.y9b{bottom:432.000000px;}
.y11a{bottom:434.424000px;}
.yf5{bottom:434.880000px;}
.ycf{bottom:435.318000px;}
.y13{bottom:435.550950px;}
.y38{bottom:437.992050px;}
.y147{bottom:438.528000px;}
.y75{bottom:445.668000px;}
.y5c{bottom:445.758000px;}
.y176{bottom:449.838150px;}
.y146{bottom:453.828000px;}
.y9a{bottom:454.500000px;}
.y12{bottom:454.900950px;}
.y119{bottom:456.924000px;}
.yf4{bottom:457.236000px;}
.yce{bottom:457.674000px;}
.y37{bottom:460.636050px;}
.y74{bottom:467.574000px;}
.y5b{bottom:467.664000px;}
.y175{bottom:467.988150px;}
.y145{bottom:469.128000px;}
.y11{bottom:474.250950px;}
.y99{bottom:477.000000px;}
.y118{bottom:479.424000px;}
.yf3{bottom:479.592000px;}
.ycd{bottom:480.030000px;}
.y36{bottom:483.280050px;}
.y144{bottom:484.428000px;}
.y174{bottom:486.138150px;}
.y73{bottom:489.480000px;}
.y5a{bottom:489.570000px;}
.y10{bottom:493.600950px;}
.y98{bottom:499.500000px;}
.y143{bottom:499.728000px;}
.y117{bottom:501.924000px;}
.yf2{bottom:501.948000px;}
.ycc{bottom:502.386000px;}
.y173{bottom:504.288150px;}
.y35{bottom:505.924050px;}
.y72{bottom:511.386000px;}
.y59{bottom:511.476000px;}
.yf{bottom:512.950950px;}
.y142{bottom:515.028000px;}
.y97{bottom:522.000000px;}
.y172{bottom:522.438150px;}
.yf1{bottom:524.304000px;}
.y116{bottom:524.424000px;}
.ycb{bottom:524.742000px;}
.y34{bottom:528.568050px;}
.y141{bottom:530.328000px;}
.ye{bottom:532.300950px;}
.y71{bottom:533.292000px;}
.y58{bottom:533.382000px;}
.y171{bottom:540.588150px;}
.y96{bottom:544.500000px;}
.y140{bottom:545.628000px;}
.yf0{bottom:546.660000px;}
.y115{bottom:546.924000px;}
.yca{bottom:547.098000px;}
.y33{bottom:551.212050px;}
.yd{bottom:551.650950px;}
.y70{bottom:555.198000px;}
.y57{bottom:555.288000px;}
.y170{bottom:558.738150px;}
.y13f{bottom:560.928000px;}
.y95{bottom:567.000000px;}
.yef{bottom:569.016000px;}
.y114{bottom:569.424000px;}
.yc9{bottom:569.454000px;}
.yc{bottom:571.000950px;}
.y32{bottom:573.856050px;}
.y16f{bottom:576.888150px;}
.y6f{bottom:577.104000px;}
.y56{bottom:577.194000px;}
.y13e{bottom:582.600000px;}
.y94{bottom:589.500000px;}
.yb{bottom:590.350950px;}
.yee{bottom:591.372000px;}
.yc8{bottom:591.810000px;}
.y113{bottom:591.924000px;}
.y16e{bottom:595.038150px;}
.y31{bottom:596.500050px;}
.y6e{bottom:599.010000px;}
.y55{bottom:599.100000px;}
.y93{bottom:612.000000px;}
.y16d{bottom:613.188150px;}
.yed{bottom:613.728000px;}
.yc7{bottom:614.166000px;}
.y112{bottom:614.424000px;}
.ya{bottom:618.205950px;}
.y30{bottom:619.144050px;}
.y6d{bottom:620.916000px;}
.y54{bottom:621.000000px;}
.y13d{bottom:628.200000px;}
.y16c{bottom:631.338150px;}
.y92{bottom:634.500000px;}
.yec{bottom:636.084000px;}
.yc6{bottom:636.522000px;}
.y111{bottom:636.924000px;}
.y2f{bottom:641.788050px;}
.y6c{bottom:642.822000px;}
.y13c{bottom:643.500000px;}
.y16b{bottom:649.488150px;}
.y91{bottom:657.000000px;}
.yeb{bottom:658.440000px;}
.y13b{bottom:658.800000px;}
.yc5{bottom:658.878000px;}
.y110{bottom:659.424000px;}
.y2e{bottom:664.432050px;}
.y9{bottom:664.691700px;}
.y53{bottom:664.728000px;}
.y16a{bottom:667.638150px;}
.y13a{bottom:674.100000px;}
.y90{bottom:679.500000px;}
.yea{bottom:680.796000px;}
.yc4{bottom:681.234000px;}
.y10f{bottom:681.924000px;}
.y169{bottom:685.788150px;}
.y52{bottom:686.634000px;}
.y2d{bottom:687.076050px;}
.y8{bottom:687.791700px;}
.y139{bottom:689.400000px;}
.y8f{bottom:702.000000px;}
.ye9{bottom:703.152000px;}
.yc3{bottom:703.590000px;}
.y168{bottom:703.938150px;}
.y10e{bottom:704.424000px;}
.y138{bottom:704.700000px;}
.y51{bottom:708.540000px;}
.y2c{bottom:709.720050px;}
.y137{bottom:720.000000px;}
.y167{bottom:722.088150px;}
.y8e{bottom:724.500000px;}
.ye8{bottom:725.508000px;}
.yc2{bottom:725.946000px;}
.y10d{bottom:726.924000px;}
.y50{bottom:730.446000px;}
.y2b{bottom:732.364050px;}
.y7{bottom:734.277600px;}
.y136{bottom:735.300000px;}
.y166{bottom:740.238150px;}
.y8d{bottom:747.000000px;}
.ye7{bottom:747.864000px;}
.yc1{bottom:748.302000px;}
.y10c{bottom:749.424000px;}
.y135{bottom:750.600000px;}
.y4f{bottom:752.352000px;}
.y28{bottom:754.996050px;}
.y2a{bottom:755.008050px;}
.y6{bottom:757.377450px;}
.y165{bottom:758.388150px;}
.y134{bottom:765.900000px;}
.y8c{bottom:769.500000px;}
.ye6{bottom:770.220000px;}
.yc0{bottom:770.658000px;}
.y10b{bottom:771.924000px;}
.y4e{bottom:774.258000px;}
.y164{bottom:776.538150px;}
.y29{bottom:777.652050px;}
.y133{bottom:781.200000px;}
.y8b{bottom:792.000000px;}
.ye5{bottom:792.576000px;}
.ybf{bottom:793.014000px;}
.y10a{bottom:794.424000px;}
.y163{bottom:794.688150px;}
.y4d{bottom:796.164000px;}
.y132{bottom:796.500000px;}
.y131{bottom:811.800000px;}
.y162{bottom:812.538150px;}
.y8a{bottom:814.500000px;}
.ye4{bottom:814.932000px;}
.ybe{bottom:815.370000px;}
.y109{bottom:816.924000px;}
.y4c{bottom:818.070000px;}
.y5{bottom:825.123150px;}
.y130{bottom:827.100000px;}
.y161{bottom:830.388150px;}
.y89{bottom:837.000000px;}
.ye3{bottom:837.288000px;}
.ybd{bottom:837.726000px;}
.y108{bottom:839.424000px;}
.y4b{bottom:839.976000px;}
.y12f{bottom:842.400000px;}
.y27{bottom:845.446050px;}
.y160{bottom:848.238150px;}
.y4{bottom:855.723150px;}
.y12e{bottom:857.700000px;}
.y88{bottom:859.500000px;}
.ye2{bottom:859.644000px;}
.ybc{bottom:860.082000px;}
.y107{bottom:861.618000px;}
.y4a{bottom:861.882000px;}
.y26{bottom:864.196050px;}
.y12d{bottom:873.000000px;}
.y15f{bottom:878.844150px;}
.y87{bottom:882.000000px;}
.ybb{bottom:882.438000px;}
.y49{bottom:883.788000px;}
.y106{bottom:883.812000px;}
.y3{bottom:886.323150px;}
.y12c{bottom:888.300000px;}
.y25{bottom:891.450000px;}
.y12b{bottom:903.600000px;}
.y86{bottom:904.500000px;}
.yba{bottom:904.794000px;}
.y48{bottom:905.694000px;}
.y105{bottom:906.006000px;}
.y15e{bottom:909.300000px;}
.y24{bottom:910.800000px;}
.y12a{bottom:918.900000px;}
.y85{bottom:927.000000px;}
.yb9{bottom:927.150000px;}
.y15d{bottom:927.300000px;}
.y47{bottom:927.600000px;}
.y104{bottom:927.750000px;}
.y23{bottom:930.150000px;}
.y129{bottom:934.200000px;}
.y2{bottom:940.023150px;}
.h8{height:24.630908px;}
.hc{height:33.117188px;}
.hb{height:39.072000px;}
.h2{height:39.326660px;}
.h9{height:40.757812px;}
.h1{height:41.396484px;}
.hd{height:45.852539px;}
.ha{height:49.675781px;}
.h4{height:50.580000px;}
.h6{height:50.947266px;}
.h5{height:61.136719px;}
.h3{height:101.894531px;}
.h7{height:298.237380px;}
.h0{height:1017.000000px;}
.w0{width:720.000000px;}
.x0{left:0.000000px;}
.x4{left:67.500000px;}
.x8{left:82.394850px;}
.x6{left:97.260000px;}
.x2{left:112.500000px;}
.x7{left:114.470850px;}
.x9{left:127.386000px;}
.x5{left:135.000000px;}
.x3{left:142.263750px;}
.x1{left:625.781250px;}
@media print{
.v3{vertical-align:-14.960000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:21.120000pt;}
.v1{vertical-align:161.066667pt;}
.ls23{letter-spacing:-2.368000pt;}
.ls22{letter-spacing:-2.176000pt;}
.ls24{letter-spacing:-1.984000pt;}
.ls25{letter-spacing:-1.664000pt;}
.ls2f{letter-spacing:-1.024000pt;}
.ls29{letter-spacing:-0.832000pt;}
.ls26{letter-spacing:-0.768000pt;}
.ls1a{letter-spacing:-0.704000pt;}
.ls27{letter-spacing:-0.640000pt;}
.ls2d{letter-spacing:-0.576000pt;}
.ls20{letter-spacing:-0.512000pt;}
.ls12{letter-spacing:-0.448000pt;}
.ls1d{letter-spacing:-0.384000pt;}
.ls19{letter-spacing:-0.320000pt;}
.ls31{letter-spacing:-0.298667pt;}
.ls10{letter-spacing:-0.266667pt;}
.ls2a{letter-spacing:-0.256000pt;}
.ls32{letter-spacing:-0.213333pt;}
.ls13{letter-spacing:-0.192000pt;}
.ls1c{letter-spacing:-0.128000pt;}
.ls17{letter-spacing:-0.064000pt;}
.ls6{letter-spacing:0.000000pt;}
.ls8{letter-spacing:0.053333pt;}
.ls16{letter-spacing:0.064000pt;}
.lse{letter-spacing:0.128000pt;}
.ls1e{letter-spacing:0.192000pt;}
.ls14{letter-spacing:0.256000pt;}
.ls5{letter-spacing:0.266667pt;}
.ls18{letter-spacing:0.320000pt;}
.lsf{letter-spacing:0.384000pt;}
.ls1b{letter-spacing:0.448000pt;}
.ls15{letter-spacing:0.512000pt;}
.lsc{letter-spacing:0.576000pt;}
.ls11{letter-spacing:0.640000pt;}
.lsd{letter-spacing:0.704000pt;}
.ls28{letter-spacing:0.768000pt;}
.lsb{letter-spacing:0.896000pt;}
.lsa{letter-spacing:0.960000pt;}
.ls2c{letter-spacing:1.472000pt;}
.ls1{letter-spacing:2.533333pt;}
.ls30{letter-spacing:2.602667pt;}
.ls1f{letter-spacing:2.628267pt;}
.ls3{letter-spacing:3.786667pt;}
.ls34{letter-spacing:3.802667pt;}
.ls4{letter-spacing:4.053333pt;}
.ls2e{letter-spacing:4.224000pt;}
.ls21{letter-spacing:6.528000pt;}
.ls33{letter-spacing:7.200000pt;}
.ls0{letter-spacing:7.498667pt;}
.ls7{letter-spacing:7.520000pt;}
.ls2b{letter-spacing:8.377600pt;}
.ls9{letter-spacing:9.462387pt;}
.ls2{letter-spacing:9.546667pt;}
.ws2{word-spacing:-22.506667pt;}
.ws0{word-spacing:-22.485333pt;}
.ws45{word-spacing:-20.688000pt;}
.ws16{word-spacing:-17.984000pt;}
.ws1{word-spacing:-16.770667pt;}
.ws35{word-spacing:-16.512000pt;}
.ws2b{word-spacing:-15.808000pt;}
.ws3c{word-spacing:-15.488000pt;}
.ws2a{word-spacing:-15.424000pt;}
.ws29{word-spacing:-12.588800pt;}
.ws41{word-spacing:-11.989333pt;}
.ws3e{word-spacing:-10.965333pt;}
.ws42{word-spacing:-10.538667pt;}
.ws2d{word-spacing:-7.520000pt;}
.wsc{word-spacing:-4.053333pt;}
.ws1d{word-spacing:-1.792000pt;}
.ws3a{word-spacing:-1.472000pt;}
.ws1e{word-spacing:-1.408000pt;}
.wsd{word-spacing:-0.960000pt;}
.ws11{word-spacing:-0.896000pt;}
.ws36{word-spacing:-0.768000pt;}
.wse{word-spacing:-0.704000pt;}
.wsf{word-spacing:-0.640000pt;}
.ws12{word-spacing:-0.576000pt;}
.ws1a{word-spacing:-0.512000pt;}
.ws25{word-spacing:-0.448000pt;}
.ws15{word-spacing:-0.384000pt;}
.ws19{word-spacing:-0.320000pt;}
.ws8{word-spacing:-0.266667pt;}
.ws17{word-spacing:-0.256000pt;}
.ws28{word-spacing:-0.192000pt;}
.ws13{word-spacing:-0.128000pt;}
.ws22{word-spacing:-0.064000pt;}
.ws7{word-spacing:-0.053333pt;}
.ws4{word-spacing:0.000000pt;}
.ws18{word-spacing:0.064000pt;}
.ws26{word-spacing:0.128000pt;}
.ws14{word-spacing:0.192000pt;}
.ws44{word-spacing:0.213333pt;}
.ws39{word-spacing:0.256000pt;}
.wsb{word-spacing:0.266667pt;}
.ws43{word-spacing:0.298667pt;}
.ws1b{word-spacing:0.320000pt;}
.ws46{word-spacing:0.341333pt;}
.ws27{word-spacing:0.384000pt;}
.ws10{word-spacing:0.448000pt;}
.ws2c{word-spacing:0.512000pt;}
.ws3d{word-spacing:0.576000pt;}
.ws34{word-spacing:0.640000pt;}
.ws1c{word-spacing:0.704000pt;}
.ws33{word-spacing:0.768000pt;}
.ws38{word-spacing:0.832000pt;}
.ws20{word-spacing:1.024000pt;}
.ws47{word-spacing:1.280000pt;}
.ws5{word-spacing:1.600000pt;}
.ws31{word-spacing:1.664000pt;}
.ws32{word-spacing:1.920000pt;}
.ws30{word-spacing:1.984000pt;}
.ws2e{word-spacing:2.176000pt;}
.ws2f{word-spacing:2.368000pt;}
.ws6{word-spacing:2.944000pt;}
.ws40{word-spacing:2.986667pt;}
.ws3{word-spacing:3.733333pt;}
.ws1f{word-spacing:3.776000pt;}
.ws21{word-spacing:3.968000pt;}
.ws3f{word-spacing:4.480000pt;}
.ws23{word-spacing:4.544000pt;}
.ws3b{word-spacing:5.760000pt;}
.wsa{word-spacing:6.346667pt;}
.ws24{word-spacing:7.936000pt;}
.ws37{word-spacing:9.024000pt;}
.ws9{word-spacing:115.018667pt;}
._0{margin-left:-843.396267pt;}
._12{margin-left:-17.920000pt;}
._b{margin-left:-16.362667pt;}
._a{margin-left:-13.173333pt;}
._14{margin-left:-11.756800pt;}
._4{margin-left:-10.602667pt;}
._d{margin-left:-7.832533pt;}
._f{margin-left:-6.380800pt;}
._1{margin-left:-5.301333pt;}
._8{margin-left:-3.840000pt;}
._6{margin-left:-2.197333pt;}
._3{margin-left:-1.109333pt;}
._2{width:1.669333pt;}
._5{width:3.338667pt;}
._9{width:4.584533pt;}
._11{width:6.306133pt;}
._7{width:7.317333pt;}
._10{width:8.780800pt;}
._e{width:9.760000pt;}
._c{width:10.677333pt;}
._15{width:11.728000pt;}
._13{width:28.129867pt;}
.fs7{font-size:31.733333pt;}
.fs4{font-size:42.666667pt;}
.fs6{font-size:44.800000pt;}
.fs8{font-size:48.000000pt;}
.fs1{font-size:50.666667pt;}
.fs0{font-size:53.333333pt;}
.fs3{font-size:64.000000pt;}
.fs2{font-size:106.666667pt;}
.fs5{font-size:378.714133pt;}
.y0{bottom:0.000000pt;}
.y22{bottom:49.333333pt;}
.y1{bottom:64.000000pt;}
.y186{bottom:103.322800pt;}
.yaa{bottom:104.000000pt;}
.y84{bottom:104.069333pt;}
.y6b{bottom:104.149333pt;}
.y15c{bottom:104.202667pt;}
.yb8{bottom:104.229333pt;}
.ye1{bottom:104.256000pt;}
.yaf{bottom:105.056000pt;}
.y128{bottom:106.458667pt;}
.y21{bottom:107.371600pt;}
.y46{bottom:107.534267pt;}
.y103{bottom:108.352000pt;}
.ydd{bottom:108.741333pt;}
.ya9{bottom:117.333333pt;}
.y15b{bottom:117.802667pt;}
.y185{bottom:119.456133pt;}
.y127{bottom:119.792000pt;}
.y83{bottom:123.541333pt;}
.y6a{bottom:123.621333pt;}
.yb7{bottom:123.701333pt;}
.ye0{bottom:123.728000pt;}
.yae{bottom:124.528000pt;}
.y20{bottom:124.571600pt;}
.y45{bottom:127.662267pt;}
.y102{bottom:128.224000pt;}
.ydc{bottom:128.613333pt;}
.ya8{bottom:130.666667pt;}
.y15a{bottom:131.402667pt;}
.y126{bottom:133.125333pt;}
.y184{bottom:135.589467pt;}
.y1f{bottom:141.771600pt;}
.y82{bottom:143.013333pt;}
.y69{bottom:143.093333pt;}
.yb6{bottom:143.173333pt;}
.ydf{bottom:143.200000pt;}
.ya7{bottom:144.000000pt;}
.y159{bottom:145.002667pt;}
.y125{bottom:146.458667pt;}
.y44{bottom:147.790267pt;}
.y101{bottom:148.096000pt;}
.ydb{bottom:148.485333pt;}
.y183{bottom:151.722800pt;}
.ya6{bottom:157.333333pt;}
.y158{bottom:158.602667pt;}
.y1e{bottom:158.971600pt;}
.y81{bottom:162.485333pt;}
.y68{bottom:162.565333pt;}
.yb5{bottom:162.645333pt;}
.yde{bottom:162.666667pt;}
.yad{bottom:164.000000pt;}
.y124{bottom:165.466667pt;}
.y43{bottom:167.918267pt;}
.y100{bottom:167.968000pt;}
.yda{bottom:168.357333pt;}
.ya5{bottom:170.666667pt;}
.y157{bottom:172.202667pt;}
.y1d{bottom:176.171600pt;}
.y182{bottom:177.322800pt;}
.y80{bottom:181.957333pt;}
.y67{bottom:182.037333pt;}
.yb4{bottom:182.117333pt;}
.yac{bottom:184.000000pt;}
.y156{bottom:185.802667pt;}
.ya4{bottom:187.740000pt;}
.yff{bottom:187.840000pt;}
.y42{bottom:188.046267pt;}
.yd9{bottom:188.229333pt;}
.y1c{bottom:193.371600pt;}
.y181{bottom:193.456133pt;}
.y155{bottom:199.402667pt;}
.y7f{bottom:201.429333pt;}
.y66{bottom:201.509333pt;}
.yb3{bottom:201.589333pt;}
.yab{bottom:204.000000pt;}
.y123{bottom:206.154667pt;}
.yfe{bottom:207.712000pt;}
.yd8{bottom:208.101333pt;}
.y41{bottom:208.174267pt;}
.y180{bottom:209.589467pt;}
.y1b{bottom:210.571600pt;}
.y154{bottom:213.002667pt;}
.y7e{bottom:220.901333pt;}
.y65{bottom:220.981333pt;}
.yb2{bottom:221.061333pt;}
.ya3{bottom:224.000000pt;}
.y17f{bottom:225.722800pt;}
.y122{bottom:226.154667pt;}
.y153{bottom:226.602667pt;}
.yfd{bottom:227.584000pt;}
.y1a{bottom:227.771600pt;}
.yd7{bottom:227.973333pt;}
.y40{bottom:228.302267pt;}
.y152{bottom:240.202667pt;}
.y7d{bottom:240.373333pt;}
.y64{bottom:240.453333pt;}
.yb1{bottom:240.533333pt;}
.ya2{bottom:244.000000pt;}
.y121{bottom:246.154667pt;}
.yfc{bottom:247.456000pt;}
.yd6{bottom:247.845333pt;}
.y3f{bottom:248.430267pt;}
.y17e{bottom:251.322800pt;}
.y19{bottom:252.531600pt;}
.y151{bottom:253.802667pt;}
.y7c{bottom:259.845333pt;}
.y63{bottom:259.925333pt;}
.yb0{bottom:260.000000pt;}
.ya1{bottom:264.000000pt;}
.y120{bottom:266.154667pt;}
.yfb{bottom:267.328000pt;}
.y150{bottom:267.402667pt;}
.yd5{bottom:267.717333pt;}
.y3e{bottom:268.558267pt;}
.y7b{bottom:279.317333pt;}
.y62{bottom:279.397333pt;}
.y14f{bottom:281.002667pt;}
.ya0{bottom:284.000000pt;}
.y11f{bottom:286.154667pt;}
.y17d{bottom:286.922800pt;}
.yfa{bottom:287.200000pt;}
.yd4{bottom:287.589333pt;}
.y3d{bottom:288.686267pt;}
.y18{bottom:293.598267pt;}
.y14e{bottom:294.602667pt;}
.y7a{bottom:298.789333pt;}
.y61{bottom:298.869333pt;}
.y17c{bottom:303.056133pt;}
.y9f{bottom:304.000000pt;}
.y11e{bottom:306.154667pt;}
.yf9{bottom:307.072000pt;}
.yd3{bottom:307.461333pt;}
.y14d{bottom:308.202667pt;}
.y3c{bottom:308.814267pt;}
.y17{bottom:310.798267pt;}
.y79{bottom:318.261333pt;}
.y60{bottom:318.341333pt;}
.y17b{bottom:319.189467pt;}
.y14c{bottom:321.802667pt;}
.y9e{bottom:324.000000pt;}
.y11d{bottom:326.154667pt;}
.yf8{bottom:326.944000pt;}
.yd2{bottom:327.333333pt;}
.y16{bottom:327.998267pt;}
.y3b{bottom:328.942267pt;}
.y17a{bottom:335.322800pt;}
.y14b{bottom:335.402667pt;}
.y78{bottom:337.733333pt;}
.y5f{bottom:337.813333pt;}
.y9d{bottom:344.000000pt;}
.y11c{bottom:346.154667pt;}
.yf7{bottom:346.816000pt;}
.yd1{bottom:347.205333pt;}
.y14a{bottom:349.002667pt;}
.y3a{bottom:349.070267pt;}
.y179{bottom:351.456133pt;}
.y15{bottom:352.756400pt;}
.y77{bottom:357.205333pt;}
.y5e{bottom:357.285333pt;}
.y149{bottom:362.602667pt;}
.y9c{bottom:364.000000pt;}
.y11b{bottom:366.154667pt;}
.yf6{bottom:366.688000pt;}
.yd0{bottom:367.077333pt;}
.y178{bottom:367.589467pt;}
.y39{bottom:369.198267pt;}
.y14{bottom:369.956400pt;}
.y148{bottom:376.202667pt;}
.y76{bottom:376.677333pt;}
.y5d{bottom:376.757333pt;}
.y177{bottom:383.722800pt;}
.y9b{bottom:384.000000pt;}
.y11a{bottom:386.154667pt;}
.yf5{bottom:386.560000pt;}
.ycf{bottom:386.949333pt;}
.y13{bottom:387.156400pt;}
.y38{bottom:389.326267pt;}
.y147{bottom:389.802667pt;}
.y75{bottom:396.149333pt;}
.y5c{bottom:396.229333pt;}
.y176{bottom:399.856133pt;}
.y146{bottom:403.402667pt;}
.y9a{bottom:404.000000pt;}
.y12{bottom:404.356400pt;}
.y119{bottom:406.154667pt;}
.yf4{bottom:406.432000pt;}
.yce{bottom:406.821333pt;}
.y37{bottom:409.454267pt;}
.y74{bottom:415.621333pt;}
.y5b{bottom:415.701333pt;}
.y175{bottom:415.989467pt;}
.y145{bottom:417.002667pt;}
.y11{bottom:421.556400pt;}
.y99{bottom:424.000000pt;}
.y118{bottom:426.154667pt;}
.yf3{bottom:426.304000pt;}
.ycd{bottom:426.693333pt;}
.y36{bottom:429.582267pt;}
.y144{bottom:430.602667pt;}
.y174{bottom:432.122800pt;}
.y73{bottom:435.093333pt;}
.y5a{bottom:435.173333pt;}
.y10{bottom:438.756400pt;}
.y98{bottom:444.000000pt;}
.y143{bottom:444.202667pt;}
.y117{bottom:446.154667pt;}
.yf2{bottom:446.176000pt;}
.ycc{bottom:446.565333pt;}
.y173{bottom:448.256133pt;}
.y35{bottom:449.710267pt;}
.y72{bottom:454.565333pt;}
.y59{bottom:454.645333pt;}
.yf{bottom:455.956400pt;}
.y142{bottom:457.802667pt;}
.y97{bottom:464.000000pt;}
.y172{bottom:464.389467pt;}
.yf1{bottom:466.048000pt;}
.y116{bottom:466.154667pt;}
.ycb{bottom:466.437333pt;}
.y34{bottom:469.838267pt;}
.y141{bottom:471.402667pt;}
.ye{bottom:473.156400pt;}
.y71{bottom:474.037333pt;}
.y58{bottom:474.117333pt;}
.y171{bottom:480.522800pt;}
.y96{bottom:484.000000pt;}
.y140{bottom:485.002667pt;}
.yf0{bottom:485.920000pt;}
.y115{bottom:486.154667pt;}
.yca{bottom:486.309333pt;}
.y33{bottom:489.966267pt;}
.yd{bottom:490.356400pt;}
.y70{bottom:493.509333pt;}
.y57{bottom:493.589333pt;}
.y170{bottom:496.656133pt;}
.y13f{bottom:498.602667pt;}
.y95{bottom:504.000000pt;}
.yef{bottom:505.792000pt;}
.y114{bottom:506.154667pt;}
.yc9{bottom:506.181333pt;}
.yc{bottom:507.556400pt;}
.y32{bottom:510.094267pt;}
.y16f{bottom:512.789467pt;}
.y6f{bottom:512.981333pt;}
.y56{bottom:513.061333pt;}
.y13e{bottom:517.866667pt;}
.y94{bottom:524.000000pt;}
.yb{bottom:524.756400pt;}
.yee{bottom:525.664000pt;}
.yc8{bottom:526.053333pt;}
.y113{bottom:526.154667pt;}
.y16e{bottom:528.922800pt;}
.y31{bottom:530.222267pt;}
.y6e{bottom:532.453333pt;}
.y55{bottom:532.533333pt;}
.y93{bottom:544.000000pt;}
.y16d{bottom:545.056133pt;}
.yed{bottom:545.536000pt;}
.yc7{bottom:545.925333pt;}
.y112{bottom:546.154667pt;}
.ya{bottom:549.516400pt;}
.y30{bottom:550.350267pt;}
.y6d{bottom:551.925333pt;}
.y54{bottom:552.000000pt;}
.y13d{bottom:558.400000pt;}
.y16c{bottom:561.189467pt;}
.y92{bottom:564.000000pt;}
.yec{bottom:565.408000pt;}
.yc6{bottom:565.797333pt;}
.y111{bottom:566.154667pt;}
.y2f{bottom:570.478267pt;}
.y6c{bottom:571.397333pt;}
.y13c{bottom:572.000000pt;}
.y16b{bottom:577.322800pt;}
.y91{bottom:584.000000pt;}
.yeb{bottom:585.280000pt;}
.y13b{bottom:585.600000pt;}
.yc5{bottom:585.669333pt;}
.y110{bottom:586.154667pt;}
.y2e{bottom:590.606267pt;}
.y9{bottom:590.837067pt;}
.y53{bottom:590.869333pt;}
.y16a{bottom:593.456133pt;}
.y13a{bottom:599.200000pt;}
.y90{bottom:604.000000pt;}
.yea{bottom:605.152000pt;}
.yc4{bottom:605.541333pt;}
.y10f{bottom:606.154667pt;}
.y169{bottom:609.589467pt;}
.y52{bottom:610.341333pt;}
.y2d{bottom:610.734267pt;}
.y8{bottom:611.370400pt;}
.y139{bottom:612.800000pt;}
.y8f{bottom:624.000000pt;}
.ye9{bottom:625.024000pt;}
.yc3{bottom:625.413333pt;}
.y168{bottom:625.722800pt;}
.y10e{bottom:626.154667pt;}
.y138{bottom:626.400000pt;}
.y51{bottom:629.813333pt;}
.y2c{bottom:630.862267pt;}
.y137{bottom:640.000000pt;}
.y167{bottom:641.856133pt;}
.y8e{bottom:644.000000pt;}
.ye8{bottom:644.896000pt;}
.yc2{bottom:645.285333pt;}
.y10d{bottom:646.154667pt;}
.y50{bottom:649.285333pt;}
.y2b{bottom:650.990267pt;}
.y7{bottom:652.691200pt;}
.y136{bottom:653.600000pt;}
.y166{bottom:657.989467pt;}
.y8d{bottom:664.000000pt;}
.ye7{bottom:664.768000pt;}
.yc1{bottom:665.157333pt;}
.y10c{bottom:666.154667pt;}
.y135{bottom:667.200000pt;}
.y4f{bottom:668.757333pt;}
.y28{bottom:671.107600pt;}
.y2a{bottom:671.118267pt;}
.y6{bottom:673.224400pt;}
.y165{bottom:674.122800pt;}
.y134{bottom:680.800000pt;}
.y8c{bottom:684.000000pt;}
.ye6{bottom:684.640000pt;}
.yc0{bottom:685.029333pt;}
.y10b{bottom:686.154667pt;}
.y4e{bottom:688.229333pt;}
.y164{bottom:690.256133pt;}
.y29{bottom:691.246267pt;}
.y133{bottom:694.400000pt;}
.y8b{bottom:704.000000pt;}
.ye5{bottom:704.512000pt;}
.ybf{bottom:704.901333pt;}
.y10a{bottom:706.154667pt;}
.y163{bottom:706.389467pt;}
.y4d{bottom:707.701333pt;}
.y132{bottom:708.000000pt;}
.y131{bottom:721.600000pt;}
.y162{bottom:722.256133pt;}
.y8a{bottom:724.000000pt;}
.ye4{bottom:724.384000pt;}
.ybe{bottom:724.773333pt;}
.y109{bottom:726.154667pt;}
.y4c{bottom:727.173333pt;}
.y5{bottom:733.442800pt;}
.y130{bottom:735.200000pt;}
.y161{bottom:738.122800pt;}
.y89{bottom:744.000000pt;}
.ye3{bottom:744.256000pt;}
.ybd{bottom:744.645333pt;}
.y108{bottom:746.154667pt;}
.y4b{bottom:746.645333pt;}
.y12f{bottom:748.800000pt;}
.y27{bottom:751.507600pt;}
.y160{bottom:753.989467pt;}
.y4{bottom:760.642800pt;}
.y12e{bottom:762.400000pt;}
.y88{bottom:764.000000pt;}
.ye2{bottom:764.128000pt;}
.ybc{bottom:764.517333pt;}
.y107{bottom:765.882667pt;}
.y4a{bottom:766.117333pt;}
.y26{bottom:768.174267pt;}
.y12d{bottom:776.000000pt;}
.y15f{bottom:781.194800pt;}
.y87{bottom:784.000000pt;}
.ybb{bottom:784.389333pt;}
.y49{bottom:785.589333pt;}
.y106{bottom:785.610667pt;}
.y3{bottom:787.842800pt;}
.y12c{bottom:789.600000pt;}
.y25{bottom:792.400000pt;}
.y12b{bottom:803.200000pt;}
.y86{bottom:804.000000pt;}
.yba{bottom:804.261333pt;}
.y48{bottom:805.061333pt;}
.y105{bottom:805.338667pt;}
.y15e{bottom:808.266667pt;}
.y24{bottom:809.600000pt;}
.y12a{bottom:816.800000pt;}
.y85{bottom:824.000000pt;}
.yb9{bottom:824.133333pt;}
.y15d{bottom:824.266667pt;}
.y47{bottom:824.533333pt;}
.y104{bottom:824.666667pt;}
.y23{bottom:826.800000pt;}
.y129{bottom:830.400000pt;}
.y2{bottom:835.576133pt;}
.h8{height:21.894141pt;}
.hc{height:29.437500pt;}
.hb{height:34.730667pt;}
.h2{height:34.957031pt;}
.h9{height:36.229167pt;}
.h1{height:36.796875pt;}
.hd{height:40.757812pt;}
.ha{height:44.156250pt;}
.h4{height:44.960000pt;}
.h6{height:45.286458pt;}
.h5{height:54.343750pt;}
.h3{height:90.572917pt;}
.h7{height:265.099893pt;}
.h0{height:904.000000pt;}
.w0{width:640.000000pt;}
.x0{left:0.000000pt;}
.x4{left:60.000000pt;}
.x8{left:73.239867pt;}
.x6{left:86.453333pt;}
.x2{left:100.000000pt;}
.x7{left:101.751867pt;}
.x9{left:113.232000pt;}
.x5{left:120.000000pt;}
.x3{left:126.456667pt;}
.x1{left:556.250000pt;}
}




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