
    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_44dea744164b9a449d33d652.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.693848;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_e851edf1aa116679172b59d7.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.835938;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_31eb1de67167c56ed61694ce.woff2')format("woff");}.ff3{font-family:ff3;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;}
@font-face{font-family:ff4;src:url('chunks/assets/font_4f8475baf8627802e56e8862.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.001953;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_d6cffeea1f45534284ec7028.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.895996;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_4f3a7dc343da20d057ea5eb3.woff2')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;}
@font-face{font-family:ff7;src:url('chunks/assets/font_c38948d19f63f31b8989d9df.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.844727;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_6c9f05ee870de47df47c2568.woff2')format("woff");}.ff8{font-family:ff8;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;}
.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);}
.v1{vertical-align:-22.738800px;}
.v5{vertical-align:-17.814000px;}
.v3{vertical-align:-15.834600px;}
.v0{vertical-align:0.000000px;}
.v7{vertical-align:9.000973px;}
.v6{vertical-align:12.757776px;}
.v4{vertical-align:17.815798px;}
.v2{vertical-align:19.787400px;}
.ls10{letter-spacing:-3.598452px;}
.lsf{letter-spacing:-3.242194px;}
.ls11{letter-spacing:-2.380976px;}
.ls19{letter-spacing:-1.923982px;}
.ls1c{letter-spacing:-1.213884px;}
.ls1d{letter-spacing:-1.204288px;}
.ls3e{letter-spacing:-0.973986px;}
.ls3d{letter-spacing:-0.969188px;}
.ls3f{letter-spacing:-0.964390px;}
.ls40{letter-spacing:-0.954794px;}
.ls33{letter-spacing:-0.879819px;}
.ls2f{letter-spacing:-0.631526px;}
.ls34{letter-spacing:-0.550561px;}
.ls32{letter-spacing:-0.545164px;}
.ls1e{letter-spacing:-0.489392px;}
.ls1f{letter-spacing:-0.484594px;}
.ls1b{letter-spacing:-0.363442px;}
.ls1a{letter-spacing:-0.356246px;}
.ls42{letter-spacing:-0.278282px;}
.ls22{letter-spacing:-0.275281px;}
.ls29{letter-spacing:-0.269883px;}
.ls31{letter-spacing:-0.264485px;}
.ls3c{letter-spacing:-0.259088px;}
.ls27{letter-spacing:-0.139141px;}
.ls14{letter-spacing:-0.043182px;}
.ls13{letter-spacing:-0.033586px;}
.ls28{letter-spacing:-0.032386px;}
.ls2a{letter-spacing:-0.021591px;}
.ls41{letter-spacing:-0.019192px;}
.ls2b{letter-spacing:-0.016193px;}
.ls15{letter-spacing:-0.014394px;}
.ls17{letter-spacing:-0.011995px;}
.ls2e{letter-spacing:-0.010795px;}
.lsd{letter-spacing:-0.009596px;}
.ls18{letter-spacing:-0.005997px;}
.ls23{letter-spacing:-0.005398px;}
.ls12{letter-spacing:-0.004798px;}
.ls20{letter-spacing:-0.003598px;}
.lsc{letter-spacing:0.000000px;}
.ls21{letter-spacing:0.003598px;}
.ls25{letter-spacing:0.004798px;}
.lsb{letter-spacing:0.005398px;}
.ls8{letter-spacing:0.005997px;}
.ls0{letter-spacing:0.008396px;}
.ls26{letter-spacing:0.009596px;}
.ls24{letter-spacing:0.010795px;}
.ls36{letter-spacing:0.014394px;}
.ls30{letter-spacing:0.021591px;}
.ls2d{letter-spacing:0.026988px;}
.ls3a{letter-spacing:0.033586px;}
.ls35{letter-spacing:0.037784px;}
.ls3b{letter-spacing:0.043181px;}
.ls9{letter-spacing:0.881618px;}
.lsa{letter-spacing:1.084930px;}
.ls38{letter-spacing:1.281055px;}
.ls5{letter-spacing:1.429792px;}
.ls7{letter-spacing:1.434590px;}
.ls6{letter-spacing:1.439388px;}
.ls4{letter-spacing:1.444186px;}
.ls16{letter-spacing:1.709265px;}
.ls39{letter-spacing:2.638878px;}
.ls2c{letter-spacing:2.941725px;}
.ls3{letter-spacing:3.823974px;}
.ls37{letter-spacing:5.815128px;}
.ls1{letter-spacing:9.557506px;}
.ls2{letter-spacing:15.860800px;}
.lse{letter-spacing:62.015810px;}
.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;}
}
.ws3{word-spacing:-116.349948px;}
.ws1c{word-spacing:-90.842618px;}
.wsb{word-spacing:-61.683465px;}
.ws12{word-spacing:-59.968203px;}
.ws13{word-spacing:-59.962205px;}
.ws1d{word-spacing:-55.061530px;}
.ws4c{word-spacing:-54.014384px;}
.ws4e{word-spacing:-53.998191px;}
.ws20{word-spacing:-53.981998px;}
.ws23{word-spacing:-53.976600px;}
.ws21{word-spacing:-53.971202px;}
.ws35{word-spacing:-53.965805px;}
.ws2e{word-spacing:-53.960407px;}
.ws69{word-spacing:-53.794728px;}
.ws2c{word-spacing:-53.706717px;}
.ws3e{word-spacing:-53.431436px;}
.ws40{word-spacing:-53.426039px;}
.ws31{word-spacing:-53.345074px;}
.ws3f{word-spacing:-53.096781px;}
.ws0{word-spacing:-52.930929px;}
.ws6b{word-spacing:-50.618478px;}
.wsc{word-spacing:-49.423786px;}
.wse{word-spacing:-49.418988px;}
.ws10{word-spacing:-49.414190px;}
.wsd{word-spacing:-49.409392px;}
.ws6a{word-spacing:-49.260655px;}
.ws60{word-spacing:-47.989196px;}
.ws74{word-spacing:-47.984398px;}
.ws9{word-spacing:-47.979600px;}
.ws6{word-spacing:-47.974802px;}
.ws5{word-spacing:-47.970004px;}
.wsa{word-spacing:-47.965206px;}
.ws6c{word-spacing:-47.960408px;}
.ws7{word-spacing:-47.946014px;}
.ws8{word-spacing:-47.936418px;}
.ws76{word-spacing:-47.701318px;}
.ws1b{word-spacing:-47.495006px;}
.ws1a{word-spacing:-47.490208px;}
.ws5d{word-spacing:-47.024806px;}
.ws5c{word-spacing:-47.015210px;}
.ws19{word-spacing:-46.775312px;}
.ws18{word-spacing:-46.765716px;}
.ws1f{word-spacing:-46.581806px;}
.ws39{word-spacing:-46.490046px;}
.ws51{word-spacing:-46.241753px;}
.ws15{word-spacing:-46.055618px;}
.ws2d{word-spacing:-46.025847px;}
.ws27{word-spacing:-45.696590px;}
.ws53{word-spacing:-45.588636px;}
.ws36{word-spacing:-45.226993px;}
.ws47{word-spacing:-44.573876px;}
.ws48{word-spacing:-44.541490px;}
.ws4a{word-spacing:-44.357970px;}
.wsf{word-spacing:-42.850581px;}
.ws4b{word-spacing:-42.803444px;}
.ws2b{word-spacing:-41.880444px;}
.ws52{word-spacing:-41.864251px;}
.ws3b{word-spacing:-41.464824px;}
.ws73{word-spacing:-41.454374px;}
.ws30{word-spacing:-41.270508px;}
.ws4d{word-spacing:-41.254315px;}
.ws33{word-spacing:-41.022216px;}
.ws72{word-spacing:-40.964982px;}
.ws3a{word-spacing:-40.574210px;}
.ws56{word-spacing:-40.234158px;}
.ws6e{word-spacing:-40.182915px;}
.ws38{word-spacing:-40.180181px;}
.ws46{word-spacing:-40.104614px;}
.ws24{word-spacing:-40.083023px;}
.ws2f{word-spacing:-39.462292px;}
.ws58{word-spacing:-39.304888px;}
.ws64{word-spacing:-38.969031px;}
.ws63{word-spacing:-38.892264px;}
.ws32{word-spacing:-38.814573px;}
.ws28{word-spacing:-38.663439px;}
.ws6d{word-spacing:-38.196560px;}
.ws5b{word-spacing:-38.086206px;}
.ws26{word-spacing:-37.610895px;}
.ws61{word-spacing:-37.601613px;}
.ws29{word-spacing:-37.168287px;}
.ws66{word-spacing:-36.119043px;}
.ws25{word-spacing:-35.710919px;}
.ws16{word-spacing:-35.628154px;}
.ws17{word-spacing:-35.620958px;}
.ws62{word-spacing:-35.389753px;}
.ws1{word-spacing:-34.836664px;}
.ws11{word-spacing:-34.785000px;}
.ws5a{word-spacing:-34.641271px;}
.ws49{word-spacing:-34.323720px;}
.ws57{word-spacing:-34.188778px;}
.ws3c{word-spacing:-32.758399px;}
.ws45{word-spacing:-32.396755px;}
.ws50{word-spacing:-32.213235px;}
.ws70{word-spacing:-30.668560px;}
.ws42{word-spacing:-30.124340px;}
.ws3d{word-spacing:-29.919229px;}
.ws37{word-spacing:-28.818107px;}
.ws68{word-spacing:-28.509478px;}
.ws71{word-spacing:-28.283974px;}
.ws6f{word-spacing:-27.708219px;}
.ws34{word-spacing:-26.491715px;}
.ws43{word-spacing:-25.255651px;}
.ws55{word-spacing:-24.883213px;}
.ws59{word-spacing:-21.624406px;}
.ws2{word-spacing:-14.667364px;}
.ws22{word-spacing:-12.198712px;}
.ws4f{word-spacing:-11.939624px;}
.ws54{word-spacing:-11.934226px;}
.ws1e{word-spacing:-11.923431px;}
.ws77{word-spacing:-11.606265px;}
.ws4{word-spacing:-11.173193px;}
.ws44{word-spacing:-10.833794px;}
.ws78{word-spacing:-6.453256px;}
.ws14{word-spacing:-6.289128px;}
.ws67{word-spacing:-3.176250px;}
.ws2a{word-spacing:0.000000px;}
.ws41{word-spacing:1.041748px;}
.ws75{word-spacing:12.637827px;}
.ws65{word-spacing:12.714594px;}
.ws5e{word-spacing:16.567356px;}
.ws5f{word-spacing:60.334347px;}
._10{margin-left:-6.794188px;}
._8{margin-left:-5.534889px;}
._7{margin-left:-4.384127px;}
._2{margin-left:-3.085088px;}
._1{margin-left:-1.535342px;}
._4{width:1.745249px;}
._3{width:3.242194px;}
._5{width:4.318244px;}
._6{width:5.397540px;}
._d{width:7.232985px;}
._15{width:9.256987px;}
._c{width:10.412086px;}
._17{width:13.272846px;}
._b{width:14.303799px;}
._a{width:16.068834px;}
._11{width:17.267114px;}
._14{width:18.352044px;}
._12{width:20.343781px;}
._9{width:24.505376px;}
._13{width:28.823504px;}
._e{width:30.442802px;}
._19{width:60.708588px;}
._18{width:63.577768px;}
._0{width:658.283388px;}
._16{width:1703.678824px;}
._f{width:1704.700789px;}
.fc1{color:rgb(103,107,117);}
.fc0{color:rgb(35,31,32);}
.fs8{font-size:27.828000px;}
.fsb{font-size:31.306800px;}
.fs7{font-size:34.785000px;}
.fs4{font-size:35.984400px;}
.fs0{font-size:47.979600px;}
.fsa{font-size:53.976600px;}
.fs6{font-size:59.974200px;}
.fs1{font-size:83.964000px;}
.fs9{font-size:89.961000px;}
.fs2{font-size:95.958600px;}
.fs5{font-size:119.948400px;}
.fs3{font-size:191.917800px;}
.y0{bottom:0.000000px;}
.y49{bottom:48.689101px;}
.y48{bottom:60.685200px;}
.y7{bottom:67.426200px;}
.y6{bottom:80.920200px;}
.y2b{bottom:88.754175px;}
.y5{bottom:94.414200px;}
.y2a{bottom:102.248438px;}
.y4{bottom:115.405200px;}
.y84{bottom:115.735505px;}
.yb6{bottom:115.741201px;}
.y29{bottom:115.742700px;}
.y83{bottom:129.229655px;}
.yb5{bottom:129.235463px;}
.y82{bottom:142.723805px;}
.y81{bottom:156.217955px;}
.yb4{bottom:156.223988px;}
.y80{bottom:169.712105px;}
.yb3{bottom:169.718251px;}
.y46{bottom:183.210901px;}
.y3b{bottom:183.212251px;}
.yb2{bottom:183.212513px;}
.y7f{bottom:196.701755px;}
.y45{bottom:196.706401px;}
.y3a{bottom:196.707750px;}
.yb1{bottom:196.707975px;}
.y7e{bottom:210.195905px;}
.y39{bottom:210.201900px;}
.yb0{bottom:210.202238px;}
.y7d{bottom:223.690055px;}
.y44{bottom:223.694701px;}
.y38{bottom:223.696050px;}
.yaf{bottom:223.696500px;}
.y7c{bottom:237.184205px;}
.y43{bottom:237.188851px;}
.yae{bottom:250.675656px;}
.y7b{bottom:250.678355px;}
.y42{bottom:250.683001px;}
.y37{bottom:250.684350px;}
.y7a{bottom:264.172505px;}
.y41{bottom:264.177151px;}
.y36{bottom:264.178051px;}
.y79{bottom:277.666655px;}
.y40{bottom:277.671301px;}
.y35{bottom:277.672201px;}
.y3f{bottom:291.165451px;}
.y34{bottom:291.166351px;}
.yad{bottom:304.653605px;}
.y78{bottom:304.656304px;}
.y3e{bottom:304.660950px;}
.y33{bottom:304.661850px;}
.yac{bottom:318.147755px;}
.y3d{bottom:318.155100px;}
.yab{bottom:331.641905px;}
.y3c{bottom:331.649250px;}
.y32{bottom:331.650150px;}
.yaa{bottom:345.136055px;}
.y8b{bottom:345.143850px;}
.ya9{bottom:358.630205px;}
.y8a{bottom:358.638000px;}
.y89{bottom:372.132150px;}
.ya8{bottom:385.618505px;}
.y1e{bottom:399.118951px;}
.y1d{bottom:412.614413px;}
.y1c{bottom:426.108676px;}
.ya7{bottom:439.595105px;}
.y1b{bottom:439.602938px;}
.ya6{bottom:453.089255px;}
.ye1{bottom:453.090566px;}
.y1a{bottom:453.097201px;}
.ya5{bottom:466.583405px;}
.ye0{bottom:466.584829px;}
.y19{bottom:466.591463px;}
.ya4{bottom:480.077555px;}
.ydf{bottom:480.079091px;}
.y2e{bottom:480.084376px;}
.y18{bottom:480.085726px;}
.ya3{bottom:493.571705px;}
.yde{bottom:493.573354px;}
.y2d{bottom:493.578638px;}
.y17{bottom:493.579988px;}
.ya2{bottom:507.067205px;}
.ydd{bottom:507.068816px;}
.y2c{bottom:507.074100px;}
.y16{bottom:507.075450px;}
.ya1{bottom:520.561355px;}
.y15{bottom:520.569450px;}
.ya0{bottom:534.055505px;}
.ydc{bottom:534.057341px;}
.y9f{bottom:547.549655px;}
.ydb{bottom:547.551603px;}
.y14{bottom:547.555688px;}
.yda{bottom:561.045866px;}
.y13{bottom:561.049951px;}
.y9e{bottom:574.537955px;}
.yd9{bottom:574.540128px;}
.y12{bottom:574.544213px;}
.yd8{bottom:588.034391px;}
.y11{bottom:588.038476px;}
.y10{bottom:601.532738px;}
.y77{bottom:615.021754px;}
.yd7{bottom:615.024115px;}
.yf{bottom:615.028200px;}
.y76{bottom:628.515904px;}
.yd6{bottom:628.518378px;}
.ye{bottom:628.522462px;}
.y75{bottom:642.010054px;}
.yd5{bottom:642.012640px;}
.yd{bottom:642.016725px;}
.y74{bottom:655.504204px;}
.yc{bottom:655.510987px;}
.y73{bottom:668.998354px;}
.yd4{bottom:669.001165px;}
.yb{bottom:669.005250px;}
.y72{bottom:682.492504px;}
.y66{bottom:682.493854px;}
.yd3{bottom:682.495428px;}
.ya{bottom:682.499400px;}
.y71{bottom:695.986654px;}
.y65{bottom:695.988004px;}
.yd2{bottom:695.989690px;}
.y70{bottom:709.480804px;}
.y64{bottom:709.482154px;}
.yd1{bottom:709.483953px;}
.y6f{bottom:722.976304px;}
.y63{bottom:722.977653px;}
.yd0{bottom:722.979415px;}
.y6e{bottom:736.470454px;}
.y62{bottom:736.471803px;}
.ycf{bottom:736.473677px;}
.y6d{bottom:749.964604px;}
.y61{bottom:749.965953px;}
.y25{bottom:749.970787px;}
.y6c{bottom:763.458754px;}
.y60{bottom:763.460103px;}
.yce{bottom:763.462202px;}
.y24{bottom:767.423550px;}
.y6b{bottom:776.952904px;}
.y5f{bottom:776.954253px;}
.ycd{bottom:776.956465px;}
.y23{bottom:776.958787px;}
.y6a{bottom:790.447054px;}
.y5e{bottom:790.448403px;}
.ycc{bottom:790.450727px;}
.y22{bottom:794.411550px;}
.y69{bottom:803.941204px;}
.y5d{bottom:803.942553px;}
.ycb{bottom:803.944990px;}
.y21{bottom:807.905700px;}
.y68{bottom:817.435354px;}
.y5c{bottom:817.436703px;}
.yca{bottom:817.439252px;}
.y20{bottom:817.441006px;}
.y67{bottom:830.930853px;}
.yc9{bottom:830.934714px;}
.y1f{bottom:830.936700px;}
.y9d{bottom:844.425003px;}
.y5b{bottom:844.426352px;}
.yc8{bottom:844.428977px;}
.y9c{bottom:857.919153px;}
.y5a{bottom:857.920502px;}
.y9b{bottom:871.413303px;}
.y59{bottom:871.414652px;}
.yc7{bottom:871.417502px;}
.y88{bottom:871.418250px;}
.y30{bottom:871.418550px;}
.y9a{bottom:884.907453px;}
.y58{bottom:884.908802px;}
.yc6{bottom:884.911764px;}
.y87{bottom:884.912400px;}
.y99{bottom:898.401603px;}
.y57{bottom:898.402952px;}
.yc5{bottom:898.406027px;}
.y86{bottom:898.406550px;}
.y2f{bottom:898.406850px;}
.y98{bottom:911.895753px;}
.y56{bottom:911.897102px;}
.yc4{bottom:911.900289px;}
.y85{bottom:911.900700px;}
.y97{bottom:925.389903px;}
.y55{bottom:925.391252px;}
.y9{bottom:925.395960px;}
.y96{bottom:938.885402px;}
.y54{bottom:938.886752px;}
.yc3{bottom:938.890014px;}
.y95{bottom:952.379552px;}
.y53{bottom:952.380902px;}
.yc2{bottom:952.384276px;}
.y8{bottom:952.384350px;}
.y94{bottom:965.873702px;}
.y52{bottom:965.875052px;}
.yc1{bottom:965.878539px;}
.y93{bottom:979.367852px;}
.y51{bottom:979.369202px;}
.yc0{bottom:979.372801px;}
.y50{bottom:992.863352px;}
.ybf{bottom:992.867064px;}
.y92{bottom:1006.356152px;}
.y91{bottom:1019.850302px;}
.y4f{bottom:1019.851652px;}
.ybe{bottom:1019.855589px;}
.y90{bottom:1033.345802px;}
.ybd{bottom:1033.351051px;}
.y8f{bottom:1046.839952px;}
.ybc{bottom:1046.845313px;}
.y8e{bottom:1060.334102px;}
.ybb{bottom:1060.339576px;}
.y8d{bottom:1073.828252px;}
.y4e{bottom:1073.829601px;}
.y8c{bottom:1087.322402px;}
.y4d{bottom:1087.323751px;}
.yba{bottom:1087.328101px;}
.y4c{bottom:1100.817901px;}
.yb9{bottom:1100.822363px;}
.y31{bottom:1112.721150px;}
.y3{bottom:1113.075000px;}
.y4b{bottom:1114.313401px;}
.yb8{bottom:1114.316626px;}
.y4a{bottom:1127.808900px;}
.yb7{bottom:1127.810888px;}
.y28{bottom:1146.551450px;}
.y2{bottom:1153.380600px;}
.y27{bottom:1154.047900px;}
.y26{bottom:1161.544350px;}
.y47{bottom:1195.279950px;}
.y1{bottom:1198.503000px;}
.hc{height:19.050223px;}
.h6{height:24.633852px;}
.hd{height:24.932551px;}
.h15{height:32.798555px;}
.h5{height:33.243678px;}
.h14{height:34.227635px;}
.h9{height:34.438482px;}
.h12{height:37.398826px;}
.h10{height:38.742970px;}
.h11{height:39.507374px;}
.h16{height:41.846383px;}
.hb{height:43.896298px;}
.hf{height:44.514882px;}
.ha{height:44.755149px;}
.h13{height:45.603185px;}
.h1{height:46.506901px;}
.h8{height:49.461144px;}
.he{height:64.571616px;}
.h2{height:66.486940px;}
.h4{height:69.245701px;}
.h7{height:98.922289px;}
.h3{height:132.974296px;}
.h0{height:1263.000000px;}
.w1{width:892.500000px;}
.w0{width:892.830000px;}
.x0{left:0.000000px;}
.x3{left:73.102500px;}
.xa{left:76.145700px;}
.x2{left:77.284650px;}
.xc{left:106.610700px;}
.x11{left:133.242075px;}
.x1{left:434.445900px;}
.x7{left:446.265900px;}
.xd{left:459.371229px;}
.xe{left:489.121782px;}
.x12{left:515.755838px;}
.xf{left:567.919050px;}
.xb{left:621.865200px;}
.x9{left:662.844365px;}
.x8{left:664.055850px;}
.x6{left:736.780577px;}
.x5{left:738.902757px;}
.x10{left:740.066256px;}
.x4{left:742.494000px;}
@media print{
.v1{vertical-align:-20.212267pt;}
.v5{vertical-align:-15.834667pt;}
.v3{vertical-align:-14.075200pt;}
.v0{vertical-align:0.000000pt;}
.v7{vertical-align:8.000865pt;}
.v6{vertical-align:11.340245pt;}
.v4{vertical-align:15.836265pt;}
.v2{vertical-align:17.588800pt;}
.ls10{letter-spacing:-3.198624pt;}
.lsf{letter-spacing:-2.881951pt;}
.ls11{letter-spacing:-2.116423pt;}
.ls19{letter-spacing:-1.710206pt;}
.ls1c{letter-spacing:-1.079008pt;}
.ls1d{letter-spacing:-1.070478pt;}
.ls3e{letter-spacing:-0.865765pt;}
.ls3d{letter-spacing:-0.861500pt;}
.ls3f{letter-spacing:-0.857236pt;}
.ls40{letter-spacing:-0.848706pt;}
.ls33{letter-spacing:-0.782061pt;}
.ls2f{letter-spacing:-0.561357pt;}
.ls34{letter-spacing:-0.489388pt;}
.ls32{letter-spacing:-0.484590pt;}
.ls1e{letter-spacing:-0.435015pt;}
.ls1f{letter-spacing:-0.430750pt;}
.ls1b{letter-spacing:-0.323060pt;}
.ls1a{letter-spacing:-0.316663pt;}
.ls42{letter-spacing:-0.247361pt;}
.ls22{letter-spacing:-0.244694pt;}
.ls29{letter-spacing:-0.239896pt;}
.ls31{letter-spacing:-0.235098pt;}
.ls3c{letter-spacing:-0.230300pt;}
.ls27{letter-spacing:-0.123681pt;}
.ls14{letter-spacing:-0.038384pt;}
.ls13{letter-spacing:-0.029854pt;}
.ls28{letter-spacing:-0.028788pt;}
.ls2a{letter-spacing:-0.019192pt;}
.ls41{letter-spacing:-0.017059pt;}
.ls2b{letter-spacing:-0.014394pt;}
.ls15{letter-spacing:-0.012795pt;}
.ls17{letter-spacing:-0.010662pt;}
.ls2e{letter-spacing:-0.009596pt;}
.lsd{letter-spacing:-0.008530pt;}
.ls18{letter-spacing:-0.005331pt;}
.ls23{letter-spacing:-0.004798pt;}
.ls12{letter-spacing:-0.004265pt;}
.ls20{letter-spacing:-0.003199pt;}
.lsc{letter-spacing:0.000000pt;}
.ls21{letter-spacing:0.003199pt;}
.ls25{letter-spacing:0.004265pt;}
.lsb{letter-spacing:0.004798pt;}
.ls8{letter-spacing:0.005331pt;}
.ls0{letter-spacing:0.007463pt;}
.ls26{letter-spacing:0.008530pt;}
.ls24{letter-spacing:0.009596pt;}
.ls36{letter-spacing:0.012795pt;}
.ls30{letter-spacing:0.019192pt;}
.ls2d{letter-spacing:0.023990pt;}
.ls3a{letter-spacing:0.029854pt;}
.ls35{letter-spacing:0.033585pt;}
.ls3b{letter-spacing:0.038383pt;}
.ls9{letter-spacing:0.783660pt;}
.lsa{letter-spacing:0.964382pt;}
.ls38{letter-spacing:1.138716pt;}
.ls5{letter-spacing:1.270926pt;}
.ls7{letter-spacing:1.275191pt;}
.ls6{letter-spacing:1.279456pt;}
.ls4{letter-spacing:1.283721pt;}
.ls16{letter-spacing:1.519346pt;}
.ls39{letter-spacing:2.345669pt;}
.ls2c{letter-spacing:2.614866pt;}
.ls3{letter-spacing:3.399088pt;}
.ls37{letter-spacing:5.169002pt;}
.ls1{letter-spacing:8.495561pt;}
.ls2{letter-spacing:14.098489pt;}
.lse{letter-spacing:55.125165pt;}
.ws3{word-spacing:-103.422176pt;}
.ws1c{word-spacing:-80.748994pt;}
.wsb{word-spacing:-54.829746pt;}
.ws12{word-spacing:-53.305069pt;}
.ws13{word-spacing:-53.299738pt;}
.ws1d{word-spacing:-48.943582pt;}
.ws4c{word-spacing:-48.012785pt;}
.ws4e{word-spacing:-47.998392pt;}
.ws20{word-spacing:-47.983998pt;}
.ws23{word-spacing:-47.979200pt;}
.ws21{word-spacing:-47.974402pt;}
.ws35{word-spacing:-47.969604pt;}
.ws2e{word-spacing:-47.964806pt;}
.ws69{word-spacing:-47.817536pt;}
.ws2c{word-spacing:-47.739304pt;}
.ws3e{word-spacing:-47.494610pt;}
.ws40{word-spacing:-47.489812pt;}
.ws31{word-spacing:-47.417843pt;}
.ws3f{word-spacing:-47.197139pt;}
.ws0{word-spacing:-47.049715pt;}
.ws6b{word-spacing:-44.994203pt;}
.wsc{word-spacing:-43.932254pt;}
.wse{word-spacing:-43.927989pt;}
.ws10{word-spacing:-43.923724pt;}
.wsd{word-spacing:-43.919460pt;}
.ws6a{word-spacing:-43.787249pt;}
.ws60{word-spacing:-42.657063pt;}
.ws74{word-spacing:-42.652798pt;}
.ws9{word-spacing:-42.648533pt;}
.ws6{word-spacing:-42.644268pt;}
.ws5{word-spacing:-42.640004pt;}
.wsa{word-spacing:-42.635739pt;}
.ws6c{word-spacing:-42.631474pt;}
.ws7{word-spacing:-42.618679pt;}
.ws8{word-spacing:-42.610150pt;}
.ws76{word-spacing:-42.401172pt;}
.ws1b{word-spacing:-42.217783pt;}
.ws1a{word-spacing:-42.213518pt;}
.ws5d{word-spacing:-41.799828pt;}
.ws5c{word-spacing:-41.791298pt;}
.ws19{word-spacing:-41.578055pt;}
.ws18{word-spacing:-41.569525pt;}
.ws1f{word-spacing:-41.406050pt;}
.ws39{word-spacing:-41.324485pt;}
.ws51{word-spacing:-41.103781pt;}
.ws15{word-spacing:-40.938327pt;}
.ws2d{word-spacing:-40.911864pt;}
.ws27{word-spacing:-40.619191pt;}
.ws53{word-spacing:-40.523232pt;}
.ws36{word-spacing:-40.201772pt;}
.ws47{word-spacing:-39.621223pt;}
.ws48{word-spacing:-39.592436pt;}
.ws4a{word-spacing:-39.429307pt;}
.wsf{word-spacing:-38.089405pt;}
.ws4b{word-spacing:-38.047506pt;}
.ws2b{word-spacing:-37.227061pt;}
.ws52{word-spacing:-37.212668pt;}
.ws3b{word-spacing:-36.857621pt;}
.ws73{word-spacing:-36.848333pt;}
.ws30{word-spacing:-36.684896pt;}
.ws4d{word-spacing:-36.670503pt;}
.ws33{word-spacing:-36.464192pt;}
.ws72{word-spacing:-36.413318pt;}
.ws3a{word-spacing:-36.065965pt;}
.ws56{word-spacing:-35.763696pt;}
.ws6e{word-spacing:-35.718147pt;}
.ws38{word-spacing:-35.715716pt;}
.ws46{word-spacing:-35.648546pt;}
.ws24{word-spacing:-35.629354pt;}
.ws2f{word-spacing:-35.077593pt;}
.ws58{word-spacing:-34.937679pt;}
.ws64{word-spacing:-34.639139pt;}
.ws63{word-spacing:-34.570901pt;}
.ws32{word-spacing:-34.501843pt;}
.ws28{word-spacing:-34.367501pt;}
.ws6d{word-spacing:-33.952497pt;}
.ws5b{word-spacing:-33.854406pt;}
.ws26{word-spacing:-33.431907pt;}
.ws61{word-spacing:-33.423656pt;}
.ws29{word-spacing:-33.038477pt;}
.ws66{word-spacing:-32.105816pt;}
.ws25{word-spacing:-31.743039pt;}
.ws16{word-spacing:-31.669471pt;}
.ws17{word-spacing:-31.663073pt;}
.ws62{word-spacing:-31.457558pt;}
.ws1{word-spacing:-30.965923pt;}
.ws11{word-spacing:-30.920000pt;}
.ws5a{word-spacing:-30.792241pt;}
.ws49{word-spacing:-30.509973pt;}
.ws57{word-spacing:-30.390025pt;}
.ws3c{word-spacing:-29.118576pt;}
.ws45{word-spacing:-28.797116pt;}
.ws50{word-spacing:-28.633987pt;}
.ws70{word-spacing:-27.260943pt;}
.ws42{word-spacing:-26.777192pt;}
.ws3d{word-spacing:-26.594871pt;}
.ws37{word-spacing:-25.616095pt;}
.ws68{word-spacing:-25.341759pt;}
.ws71{word-spacing:-25.141310pt;}
.ws6f{word-spacing:-24.629528pt;}
.ws34{word-spacing:-23.548191pt;}
.ws43{word-spacing:-22.449468pt;}
.ws55{word-spacing:-22.118411pt;}
.ws59{word-spacing:-19.221694pt;}
.ws2{word-spacing:-13.037657pt;}
.ws22{word-spacing:-10.843299pt;}
.ws4f{word-spacing:-10.612999pt;}
.ws54{word-spacing:-10.608201pt;}
.ws1e{word-spacing:-10.598605pt;}
.ws77{word-spacing:-10.316680pt;}
.ws4{word-spacing:-9.931728pt;}
.ws44{word-spacing:-9.630039pt;}
.ws78{word-spacing:-5.736228pt;}
.ws14{word-spacing:-5.590336pt;}
.ws67{word-spacing:-2.823333pt;}
.ws2a{word-spacing:0.000000pt;}
.ws41{word-spacing:0.925999pt;}
.ws75{word-spacing:11.233624pt;}
.ws65{word-spacing:11.301861pt;}
.ws5e{word-spacing:14.726539pt;}
.ws5f{word-spacing:53.630531pt;}
._10{margin-left:-6.039278pt;}
._8{margin-left:-4.919902pt;}
._7{margin-left:-3.897002pt;}
._2{margin-left:-2.742301pt;}
._1{margin-left:-1.364749pt;}
._4{width:1.551333pt;}
._3{width:2.881951pt;}
._5{width:3.838439pt;}
._6{width:4.797813pt;}
._d{width:6.429320pt;}
._15{width:8.228433pt;}
._c{width:9.255188pt;}
._17{width:11.798085pt;}
._b{width:12.714488pt;}
._a{width:14.283408pt;}
._11{width:15.348546pt;}
._14{width:16.312928pt;}
._12{width:18.083360pt;}
._9{width:21.782557pt;}
._13{width:25.620893pt;}
._e{width:27.060269pt;}
._19{width:53.963189pt;}
._18{width:56.513572pt;}
._0{width:585.140789pt;}
._16{width:1514.381177pt;}
._f{width:1515.289591pt;}
.fs8{font-size:24.736000pt;}
.fsb{font-size:27.828267pt;}
.fs7{font-size:30.920000pt;}
.fs4{font-size:31.986133pt;}
.fs0{font-size:42.648533pt;}
.fsa{font-size:47.979200pt;}
.fs6{font-size:53.310400pt;}
.fs1{font-size:74.634667pt;}
.fs9{font-size:79.965333pt;}
.fs2{font-size:85.296533pt;}
.fs5{font-size:106.620800pt;}
.fs3{font-size:170.593600pt;}
.y0{bottom:0.000000pt;}
.y49{bottom:43.279200pt;}
.y48{bottom:53.942400pt;}
.y7{bottom:59.934400pt;}
.y6{bottom:71.929067pt;}
.y2b{bottom:78.892600pt;}
.y5{bottom:83.923733pt;}
.y2a{bottom:90.887500pt;}
.y4{bottom:102.582400pt;}
.y84{bottom:102.876005pt;}
.yb6{bottom:102.881067pt;}
.y29{bottom:102.882400pt;}
.y83{bottom:114.870805pt;}
.yb5{bottom:114.875967pt;}
.y82{bottom:126.865605pt;}
.y81{bottom:138.860405pt;}
.yb4{bottom:138.865767pt;}
.y80{bottom:150.855205pt;}
.yb3{bottom:150.860667pt;}
.y46{bottom:162.854134pt;}
.y3b{bottom:162.855334pt;}
.yb2{bottom:162.855567pt;}
.y7f{bottom:174.846004pt;}
.y45{bottom:174.850134pt;}
.y3a{bottom:174.851333pt;}
.yb1{bottom:174.851533pt;}
.y7e{bottom:186.840804pt;}
.y39{bottom:186.846133pt;}
.yb0{bottom:186.846433pt;}
.y7d{bottom:198.835604pt;}
.y44{bottom:198.839734pt;}
.y38{bottom:198.840933pt;}
.yaf{bottom:198.841333pt;}
.y7c{bottom:210.830404pt;}
.y43{bottom:210.834534pt;}
.yae{bottom:222.822805pt;}
.y7b{bottom:222.825204pt;}
.y42{bottom:222.829334pt;}
.y37{bottom:222.830533pt;}
.y7a{bottom:234.820004pt;}
.y41{bottom:234.824134pt;}
.y36{bottom:234.824934pt;}
.y79{bottom:246.814804pt;}
.y40{bottom:246.818934pt;}
.y35{bottom:246.819734pt;}
.y3f{bottom:258.813734pt;}
.y34{bottom:258.814534pt;}
.yad{bottom:270.803205pt;}
.y78{bottom:270.805604pt;}
.y3e{bottom:270.809733pt;}
.y33{bottom:270.810533pt;}
.yac{bottom:282.798005pt;}
.y3d{bottom:282.804533pt;}
.yab{bottom:294.792805pt;}
.y3c{bottom:294.799333pt;}
.y32{bottom:294.800133pt;}
.yaa{bottom:306.787605pt;}
.y8b{bottom:306.794533pt;}
.ya9{bottom:318.782405pt;}
.y8a{bottom:318.789333pt;}
.y89{bottom:330.784133pt;}
.ya8{bottom:342.772005pt;}
.y1e{bottom:354.772401pt;}
.y1d{bottom:366.768367pt;}
.y1c{bottom:378.763267pt;}
.ya7{bottom:390.751205pt;}
.y1b{bottom:390.758167pt;}
.ya6{bottom:402.746005pt;}
.ye1{bottom:402.747170pt;}
.y1a{bottom:402.753067pt;}
.ya5{bottom:414.740805pt;}
.ye0{bottom:414.742070pt;}
.y19{bottom:414.747967pt;}
.ya4{bottom:426.735605pt;}
.ydf{bottom:426.736970pt;}
.y2e{bottom:426.741667pt;}
.y18{bottom:426.742867pt;}
.ya3{bottom:438.730405pt;}
.yde{bottom:438.731870pt;}
.y2d{bottom:438.736567pt;}
.y17{bottom:438.737767pt;}
.ya2{bottom:450.726404pt;}
.ydd{bottom:450.727836pt;}
.y2c{bottom:450.732533pt;}
.y16{bottom:450.733733pt;}
.ya1{bottom:462.721204pt;}
.y15{bottom:462.728400pt;}
.ya0{bottom:474.716004pt;}
.ydc{bottom:474.717636pt;}
.y9f{bottom:486.710804pt;}
.ydb{bottom:486.712536pt;}
.y14{bottom:486.716167pt;}
.yda{bottom:498.707436pt;}
.y13{bottom:498.711067pt;}
.y9e{bottom:510.700404pt;}
.yd9{bottom:510.702336pt;}
.y12{bottom:510.705967pt;}
.yd8{bottom:522.697236pt;}
.y11{bottom:522.700867pt;}
.y10{bottom:534.695767pt;}
.y77{bottom:546.686004pt;}
.yd7{bottom:546.688102pt;}
.yf{bottom:546.691733pt;}
.y76{bottom:558.680804pt;}
.yd6{bottom:558.683002pt;}
.ye{bottom:558.686633pt;}
.y75{bottom:570.675604pt;}
.yd5{bottom:570.677902pt;}
.yd{bottom:570.681533pt;}
.y74{bottom:582.670404pt;}
.yc{bottom:582.676433pt;}
.y73{bottom:594.665204pt;}
.yd4{bottom:594.667702pt;}
.yb{bottom:594.671333pt;}
.y72{bottom:606.660004pt;}
.y66{bottom:606.661203pt;}
.yd3{bottom:606.662602pt;}
.ya{bottom:606.666133pt;}
.y71{bottom:618.654804pt;}
.y65{bottom:618.656003pt;}
.yd2{bottom:618.657502pt;}
.y70{bottom:630.649604pt;}
.y64{bottom:630.650803pt;}
.yd1{bottom:630.652402pt;}
.y6f{bottom:642.645603pt;}
.y63{bottom:642.646803pt;}
.yd0{bottom:642.648368pt;}
.y6e{bottom:654.640403pt;}
.y62{bottom:654.641603pt;}
.ycf{bottom:654.643268pt;}
.y6d{bottom:666.635203pt;}
.y61{bottom:666.636403pt;}
.y25{bottom:666.640700pt;}
.y6c{bottom:678.630003pt;}
.y60{bottom:678.631203pt;}
.yce{bottom:678.633068pt;}
.y24{bottom:682.154267pt;}
.y6b{bottom:690.624803pt;}
.y5f{bottom:690.626003pt;}
.ycd{bottom:690.627968pt;}
.y23{bottom:690.630033pt;}
.y6a{bottom:702.619603pt;}
.y5e{bottom:702.620803pt;}
.ycc{bottom:702.622868pt;}
.y22{bottom:706.143600pt;}
.y69{bottom:714.614403pt;}
.y5d{bottom:714.615603pt;}
.ycb{bottom:714.617768pt;}
.y21{bottom:718.138400pt;}
.y68{bottom:726.609203pt;}
.y5c{bottom:726.610403pt;}
.yca{bottom:726.612668pt;}
.y20{bottom:726.614227pt;}
.y67{bottom:738.605203pt;}
.yc9{bottom:738.608635pt;}
.y1f{bottom:738.610400pt;}
.y9d{bottom:750.600003pt;}
.y5b{bottom:750.601202pt;}
.yc8{bottom:750.603535pt;}
.y9c{bottom:762.594803pt;}
.y5a{bottom:762.596002pt;}
.y9b{bottom:774.589603pt;}
.y59{bottom:774.590802pt;}
.yc7{bottom:774.593335pt;}
.y88{bottom:774.594000pt;}
.y30{bottom:774.594267pt;}
.y9a{bottom:786.584403pt;}
.y58{bottom:786.585602pt;}
.yc6{bottom:786.588235pt;}
.y87{bottom:786.588800pt;}
.y99{bottom:798.579203pt;}
.y57{bottom:798.580402pt;}
.yc5{bottom:798.583135pt;}
.y86{bottom:798.583600pt;}
.y2f{bottom:798.583867pt;}
.y98{bottom:810.574003pt;}
.y56{bottom:810.575202pt;}
.yc4{bottom:810.578035pt;}
.y85{bottom:810.578400pt;}
.y97{bottom:822.568803pt;}
.y55{bottom:822.570002pt;}
.y9{bottom:822.574187pt;}
.y96{bottom:834.564802pt;}
.y54{bottom:834.566002pt;}
.yc3{bottom:834.568901pt;}
.y95{bottom:846.559602pt;}
.y53{bottom:846.560802pt;}
.yc2{bottom:846.563801pt;}
.y8{bottom:846.563867pt;}
.y94{bottom:858.554402pt;}
.y52{bottom:858.555602pt;}
.yc1{bottom:858.558701pt;}
.y93{bottom:870.549202pt;}
.y51{bottom:870.550402pt;}
.yc0{bottom:870.553601pt;}
.y50{bottom:882.545202pt;}
.ybf{bottom:882.548501pt;}
.y92{bottom:894.538802pt;}
.y91{bottom:906.533602pt;}
.y4f{bottom:906.534802pt;}
.ybe{bottom:906.538301pt;}
.y90{bottom:918.529602pt;}
.ybd{bottom:918.534267pt;}
.y8f{bottom:930.524402pt;}
.ybc{bottom:930.529167pt;}
.y8e{bottom:942.519202pt;}
.ybb{bottom:942.524067pt;}
.y8d{bottom:954.514002pt;}
.y4e{bottom:954.515201pt;}
.y8c{bottom:966.508802pt;}
.y4d{bottom:966.510001pt;}
.yba{bottom:966.513867pt;}
.y4c{bottom:978.504801pt;}
.yb9{bottom:978.508767pt;}
.y31{bottom:989.085467pt;}
.y3{bottom:989.400000pt;}
.y4b{bottom:990.500801pt;}
.yb8{bottom:990.503667pt;}
.y4a{bottom:1002.496800pt;}
.yb7{bottom:1002.498567pt;}
.y28{bottom:1019.156844pt;}
.y2{bottom:1025.227200pt;}
.y27{bottom:1025.820355pt;}
.y26{bottom:1032.483867pt;}
.y47{bottom:1062.471067pt;}
.y1{bottom:1065.336000pt;}
.hc{height:16.933531pt;}
.h6{height:21.896757pt;}
.hd{height:22.162267pt;}
.h15{height:29.154271pt;}
.h5{height:29.549936pt;}
.h14{height:30.424564pt;}
.h9{height:30.611984pt;}
.h12{height:33.243401pt;}
.h10{height:34.438195pt;}
.h11{height:35.117666pt;}
.h16{height:37.196785pt;}
.hb{height:39.018932pt;}
.hf{height:39.568784pt;}
.ha{height:39.782355pt;}
.h13{height:40.536165pt;}
.h1{height:41.339468pt;}
.h8{height:43.965462pt;}
.he{height:57.396992pt;}
.h2{height:59.099502pt;}
.h4{height:61.551734pt;}
.h7{height:87.930923pt;}
.h3{height:118.199374pt;}
.h0{height:1122.666667pt;}
.w1{width:793.333333pt;}
.w0{width:793.626667pt;}
.x0{left:0.000000pt;}
.x3{left:64.980000pt;}
.xa{left:67.685067pt;}
.x2{left:68.697467pt;}
.xc{left:94.765067pt;}
.x11{left:118.437400pt;}
.x1{left:386.174133pt;}
.x7{left:396.680800pt;}
.xd{left:408.329982pt;}
.xe{left:434.774917pt;}
.x12{left:458.449633pt;}
.xf{left:504.816933pt;}
.xb{left:552.769067pt;}
.x9{left:589.194991pt;}
.x8{left:590.271867pt;}
.x6{left:654.916068pt;}
.x5{left:656.802451pt;}
.x10{left:657.836672pt;}
.x4{left:659.994667pt;}
}




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