
    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_b137d10647b0bd43f383c029.woff')format("woff");}.ff1{font-family:ff1;line-height:1.104000;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_8b85a0a21f7a04c861b9b3da.woff')format("woff");}.ff2{font-family:ff2;line-height:0.716000;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_f238c44977dd8a5c58c50662.woff')format("woff");}.ff3{font-family:ff3;line-height:1.104000;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_7bd8231dc2b821deb4585187.woff')format("woff");}.ff4{font-family:ff4;line-height:1.037000;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_6153d850d322a9265fffc3b2.woff')format("woff");}.ff5{font-family:ff5;line-height:1.150000;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_097ff575e40b6a6ad9d68ad2.woff')format("woff");}.ff6{font-family:ff6;line-height:0.674316;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_b689a631e23193dd7a20ea11.woff')format("woff");}.ff7{font-family:ff7;line-height:1.089844;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_1da90556c738d1d616f3d343.woff')format("woff");}.ff8{font-family:ff8;line-height:0.919434;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_a222a41450ea0b7cc2316c08.woff')format("woff");}.ff9{font-family:ff9;line-height:0.919434;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_d2196904a31ee117ba3e4549.woff')format("woff");}.ffa{font-family:ffa;line-height:0.912598;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_f389b4a5fc43a7abfe7d3d56.woff')format("woff");}.ffb{font-family:ffb;line-height:0.953000;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:ffc;src:url('chunks/assets/font_73c1e58af1026d8b3f7b221b.woff')format("woff");}.ffc{font-family:ffc;line-height:0.963000;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:ffd;src:url('chunks/assets/font_1a0896b48a89c09cd6db22f2.woff')format("woff");}.ffd{font-family:ffd;line-height:0.674316;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:ffe;src:url('chunks/assets/font_ca43a2728892bffa1c66429b.woff')format("woff");}.ffe{font-family:ffe;line-height:0.935547;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:fff;src:url('chunks/assets/font_aeeb2bda635898cb4ca82d22.woff')format("woff");}.fff{font-family:fff;line-height:0.935059;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);}
.v4{vertical-align:-15.840000px;}
.v3{vertical-align:-12.000000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:19.800000px;}
.v2{vertical-align:31.800000px;}
.ls6{letter-spacing:-0.990000px;}
.ls1{letter-spacing:-0.960000px;}
.lsd{letter-spacing:-0.660000px;}
.ls2{letter-spacing:-0.480000px;}
.ls0{letter-spacing:0.000000px;}
.ls5{letter-spacing:0.014400px;}
.ls9{letter-spacing:0.023400px;}
.lsc{letter-spacing:0.025200px;}
.lsa{letter-spacing:0.032400px;}
.ls3{letter-spacing:0.055200px;}
.lse{letter-spacing:2.610000px;}
.ls10{letter-spacing:5.940000px;}
.ls7{letter-spacing:6.440400px;}
.ls4{letter-spacing:11.340600px;}
.lsf{letter-spacing:11.364000px;}
.ls8{letter-spacing:11.537400px;}
.ls12{letter-spacing:13.348800px;}
.ls11{letter-spacing:22.237200px;}
.lsb{letter-spacing:37.050600px;}
.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:-14.520000px;}
.ws19{word-spacing:-3.312000px;}
.ws5{word-spacing:-1.920000px;}
.ws2c{word-spacing:-1.872000px;}
.ws33{word-spacing:-1.188000px;}
.ws21{word-spacing:-0.768000px;}
.ws27{word-spacing:-0.672000px;}
.ws2e{word-spacing:-0.240000px;}
.ws6{word-spacing:-0.096000px;}
.ws1{word-spacing:0.000000px;}
.ws15{word-spacing:0.432000px;}
.ws2d{word-spacing:0.480000px;}
.ws34{word-spacing:0.660000px;}
.wsf{word-spacing:0.720000px;}
.ws23{word-spacing:0.912000px;}
.ws31{word-spacing:0.990000px;}
.ws4{word-spacing:1.248000px;}
.ws12{word-spacing:1.296000px;}
.ws26{word-spacing:1.392000px;}
.ws10{word-spacing:1.536000px;}
.ws1e{word-spacing:1.824000px;}
.wsa{word-spacing:1.968000px;}
.ws1d{word-spacing:2.880000px;}
.ws13{word-spacing:2.928000px;}
.ws2{word-spacing:3.744000px;}
.ws1a{word-spacing:3.792000px;}
.ws28{word-spacing:3.840000px;}
.ws1b{word-spacing:4.032000px;}
.wsb{word-spacing:4.272000px;}
.ws35{word-spacing:4.554000px;}
.ws14{word-spacing:4.944000px;}
.wsc{word-spacing:5.184000px;}
.ws24{word-spacing:5.232000px;}
.ws11{word-spacing:5.616000px;}
.ws25{word-spacing:6.432000px;}
.ws20{word-spacing:6.624000px;}
.wsd{word-spacing:6.672000px;}
.ws29{word-spacing:7.392000px;}
.ws2a{word-spacing:8.064000px;}
.ws1f{word-spacing:9.840000px;}
.ws1c{word-spacing:10.176000px;}
.wse{word-spacing:11.520000px;}
.ws8{word-spacing:11.808000px;}
.ws3{word-spacing:12.192000px;}
.ws9{word-spacing:12.240000px;}
.ws30{word-spacing:13.926000px;}
.ws32{word-spacing:14.388000px;}
.ws18{word-spacing:14.496000px;}
.ws22{word-spacing:14.640000px;}
.ws17{word-spacing:16.176000px;}
.ws7{word-spacing:17.328000px;}
.ws2f{word-spacing:17.820000px;}
.ws16{word-spacing:19.920000px;}
.ws2b{word-spacing:33.552000px;}
._15{margin-left:-6.337200px;}
._12{margin-left:-4.566000px;}
._1{margin-left:-3.552000px;}
._3{margin-left:-2.385600px;}
._0{margin-left:-1.300800px;}
._5{width:1.017600px;}
._b{width:2.088600px;}
._7{width:3.141600px;}
._8{width:4.402200px;}
._a{width:5.445000px;}
._9{width:6.943200px;}
._c{width:8.705400px;}
._e{width:10.553400px;}
._2{width:12.467640px;}
._11{width:13.489440px;}
._13{width:15.754200px;}
._6{width:17.252400px;}
._14{width:18.301800px;}
._1b{width:19.687800px;}
._17{width:21.014400px;}
._1a{width:22.360800px;}
._4{width:23.712000px;}
._10{width:25.179000px;}
._f{width:26.677200px;}
._d{width:27.845400px;}
._18{width:28.868400px;}
._22{width:29.883000px;}
._16{width:31.072800px;}
._1e{width:33.092400px;}
._1c{width:35.131800px;}
._1d{width:37.158000px;}
._19{width:39.052200px;}
._1f{width:40.656000px;}
._21{width:55.411800px;}
._20{width:81.178200px;}
.fc0{color:rgb(35,31,32);}
.fs4{font-size:27.840000px;}
.fs3{font-size:34.800000px;}
.fs0{font-size:48.000000px;}
.fs5{font-size:54.000000px;}
.fs1{font-size:60.000000px;}
.fs2{font-size:66.000000px;}
.y0{bottom:0.000000px;}
.y2{bottom:79.023450px;}
.ybc{bottom:127.941450px;}
.y14b{bottom:129.121500px;}
.yfb{bottom:130.433550px;}
.y89{bottom:132.441450px;}
.ydc{bottom:135.233550px;}
.y12e{bottom:141.772050px;}
.y49{bottom:144.558900px;}
.ybb{bottom:147.441450px;}
.y14a{bottom:148.921500px;}
.yfa{bottom:149.933550px;}
.y88{bottom:152.241450px;}
.ydb{bottom:155.033550px;}
.y48{bottom:158.958900px;}
.y12d{bottom:161.272050px;}
.yba{bottom:166.941450px;}
.y149{bottom:168.721500px;}
.yf9{bottom:169.433550px;}
.y87{bottom:172.041450px;}
.y47{bottom:173.358900px;}
.yda{bottom:174.833550px;}
.y12c{bottom:180.772050px;}
.yb9{bottom:186.441450px;}
.y148{bottom:188.521500px;}
.yf8{bottom:188.933550px;}
.y46{bottom:191.718900px;}
.y86{bottom:191.841450px;}
.yd9{bottom:194.633550px;}
.y12b{bottom:200.272050px;}
.yb8{bottom:205.941450px;}
.y147{bottom:208.321500px;}
.yf7{bottom:208.433550px;}
.y85{bottom:211.641450px;}
.yd8{bottom:214.433550px;}
.y45{bottom:214.914900px;}
.y12a{bottom:219.772050px;}
.yb7{bottom:225.441450px;}
.yf6{bottom:227.933550px;}
.y146{bottom:228.121500px;}
.y44{bottom:229.314900px;}
.y84{bottom:231.441450px;}
.yd7{bottom:234.233550px;}
.y129{bottom:239.272050px;}
.y43{bottom:243.714900px;}
.yb6{bottom:244.941450px;}
.yf5{bottom:247.433550px;}
.y83{bottom:251.241450px;}
.yd6{bottom:254.033550px;}
.y128{bottom:258.772050px;}
.y144{bottom:260.387100px;}
.y42{bottom:262.074900px;}
.yb5{bottom:264.441450px;}
.yf4{bottom:266.933550px;}
.y82{bottom:271.041450px;}
.yd5{bottom:273.833550px;}
.y127{bottom:278.272050px;}
.yb4{bottom:283.941450px;}
.y145{bottom:285.503400px;}
.yf3{bottom:286.433550px;}
.y81{bottom:290.841450px;}
.yd4{bottom:293.633550px;}
.y126{bottom:297.772050px;}
.yb3{bottom:303.441450px;}
.yf2{bottom:305.933550px;}
.y80{bottom:310.641450px;}
.yd3{bottom:313.433550px;}
.y4f{bottom:315.612600px;}
.y54{bottom:317.112600px;}
.y125{bottom:317.272050px;}
.yb2{bottom:322.941450px;}
.yf1{bottom:325.433550px;}
.y7f{bottom:330.441450px;}
.yd2{bottom:333.233550px;}
.y4e{bottom:335.412600px;}
.y53{bottom:336.612600px;}
.y124{bottom:336.772050px;}
.yb1{bottom:342.441450px;}
.yf0{bottom:344.933550px;}
.y7e{bottom:350.241450px;}
.yd1{bottom:353.033550px;}
.y4d{bottom:355.212600px;}
.y52{bottom:356.112600px;}
.y123{bottom:356.272050px;}
.yb0{bottom:361.941450px;}
.yef{bottom:364.433550px;}
.y7d{bottom:370.041450px;}
.yd0{bottom:372.833550px;}
.y4c{bottom:375.012600px;}
.y51{bottom:375.612600px;}
.y122{bottom:375.772050px;}
.yaf{bottom:381.441450px;}
.yee{bottom:383.933550px;}
.y7c{bottom:389.841450px;}
.y143{bottom:392.437500px;}
.ycf{bottom:392.633550px;}
.y4b{bottom:394.812600px;}
.y50{bottom:395.112600px;}
.y121{bottom:395.272050px;}
.yae{bottom:400.941450px;}
.y139{bottom:401.137500px;}
.yed{bottom:403.433550px;}
.y7b{bottom:409.641450px;}
.y142{bottom:411.937500px;}
.yce{bottom:412.433550px;}
.y120{bottom:414.772050px;}
.yad{bottom:420.441450px;}
.y138{bottom:420.937500px;}
.yec{bottom:422.933550px;}
.y4a{bottom:423.116550px;}
.y7a{bottom:429.441450px;}
.y141{bottom:431.437500px;}
.ycd{bottom:432.233550px;}
.y11f{bottom:434.272050px;}
.yac{bottom:439.941450px;}
.y137{bottom:440.737500px;}
.yeb{bottom:442.433550px;}
.y79{bottom:449.241450px;}
.y140{bottom:450.937500px;}
.ycc{bottom:452.033550px;}
.y11e{bottom:453.772050px;}
.yab{bottom:459.441450px;}
.y136{bottom:460.537500px;}
.yea{bottom:461.933550px;}
.y78{bottom:469.041450px;}
.y13f{bottom:470.437500px;}
.ycb{bottom:471.833550px;}
.y11d{bottom:473.272050px;}
.yaa{bottom:478.941450px;}
.y135{bottom:480.337500px;}
.ye9{bottom:481.433550px;}
.y22{bottom:481.598400px;}
.y41{bottom:482.348550px;}
.y77{bottom:488.841450px;}
.y13e{bottom:489.937500px;}
.yca{bottom:491.633550px;}
.y11c{bottom:492.772050px;}
.y21{bottom:496.598400px;}
.y40{bottom:497.348550px;}
.ya9{bottom:498.441450px;}
.y134{bottom:500.137500px;}
.ye8{bottom:500.933550px;}
.y76{bottom:508.641450px;}
.y13d{bottom:509.437500px;}
.yc9{bottom:511.433550px;}
.y20{bottom:511.598400px;}
.y11b{bottom:512.272050px;}
.y3f{bottom:512.348550px;}
.ya8{bottom:517.941450px;}
.y133{bottom:519.937500px;}
.ye7{bottom:520.433550px;}
.y75{bottom:528.441450px;}
.y13c{bottom:528.937500px;}
.yc8{bottom:531.233550px;}
.y11a{bottom:531.772050px;}
.y1f{bottom:535.102350px;}
.y3e{bottom:535.852500px;}
.ya7{bottom:537.441450px;}
.y132{bottom:539.737500px;}
.ye6{bottom:539.933550px;}
.y74{bottom:548.241450px;}
.y13b{bottom:548.437500px;}
.y1e{bottom:550.102350px;}
.y3d{bottom:550.852500px;}
.yc7{bottom:551.033550px;}
.y119{bottom:551.272050px;}
.ya6{bottom:556.941450px;}
.y131{bottom:559.537500px;}
.y1d{bottom:565.102350px;}
.y3c{bottom:565.852500px;}
.ye5{bottom:567.937500px;}
.y73{bottom:568.041450px;}
.y118{bottom:570.772050px;}
.yc6{bottom:570.833550px;}
.ya5{bottom:576.441450px;}
.y130{bottom:579.337500px;}
.y1c{bottom:580.102350px;}
.y3b{bottom:580.852500px;}
.y13a{bottom:587.437500px;}
.y72{bottom:587.841450px;}
.y117{bottom:590.272050px;}
.yc5{bottom:590.633550px;}
.y1b{bottom:595.102350px;}
.y3a{bottom:595.852500px;}
.ya4{bottom:595.941450px;}
.y12f{bottom:599.137500px;}
.ye4{bottom:606.937500px;}
.y71{bottom:607.641450px;}
.y116{bottom:609.772050px;}
.y1a{bottom:610.102350px;}
.y39{bottom:610.852500px;}
.ya3{bottom:615.441450px;}
.yc4{bottom:618.937500px;}
.y19{bottom:625.102350px;}
.y38{bottom:625.852500px;}
.ye3{bottom:626.437500px;}
.y70{bottom:627.441450px;}
.y115{bottom:629.272050px;}
.ya2{bottom:634.941450px;}
.y18{bottom:640.102350px;}
.y37{bottom:640.852500px;}
.ye2{bottom:645.937500px;}
.y6f{bottom:647.241450px;}
.y114{bottom:648.772050px;}
.ya1{bottom:654.441450px;}
.y17{bottom:655.102350px;}
.y36{bottom:655.852500px;}
.yc3{bottom:658.537500px;}
.ye1{bottom:665.437500px;}
.y6e{bottom:667.041450px;}
.y113{bottom:668.272050px;}
.y16{bottom:670.102350px;}
.y35{bottom:670.852500px;}
.ya0{bottom:673.941450px;}
.yc2{bottom:678.337500px;}
.ye0{bottom:684.937500px;}
.y15{bottom:685.102350px;}
.y34{bottom:685.852500px;}
.y6d{bottom:686.841450px;}
.y112{bottom:687.772050px;}
.y9f{bottom:693.441450px;}
.yc1{bottom:698.137500px;}
.y14{bottom:700.102350px;}
.y33{bottom:700.852500px;}
.ydf{bottom:704.437500px;}
.y6c{bottom:706.641450px;}
.y111{bottom:707.272050px;}
.y9e{bottom:712.941450px;}
.y13{bottom:715.102350px;}
.y32{bottom:715.852500px;}
.yc0{bottom:717.937500px;}
.yde{bottom:723.937500px;}
.y6b{bottom:726.441450px;}
.y110{bottom:726.772050px;}
.y12{bottom:730.102350px;}
.y31{bottom:730.852500px;}
.y9d{bottom:732.441450px;}
.ybf{bottom:737.737500px;}
.ydd{bottom:743.437500px;}
.y11{bottom:745.102350px;}
.y30{bottom:745.852500px;}
.y6a{bottom:746.241450px;}
.y10f{bottom:746.272050px;}
.y9c{bottom:751.941450px;}
.ybe{bottom:757.537500px;}
.y10{bottom:760.102350px;}
.y2f{bottom:760.852500px;}
.y10e{bottom:765.772050px;}
.y69{bottom:766.041450px;}
.y9b{bottom:771.441450px;}
.yf{bottom:775.102350px;}
.y2e{bottom:775.852500px;}
.ybd{bottom:777.337500px;}
.y10d{bottom:785.272050px;}
.y68{bottom:785.841450px;}
.ye{bottom:790.102350px;}
.y2d{bottom:790.852500px;}
.y9a{bottom:790.941450px;}
.y10c{bottom:804.772050px;}
.yd{bottom:805.102350px;}
.y67{bottom:805.641450px;}
.y2c{bottom:805.852500px;}
.y99{bottom:810.441450px;}
.yc{bottom:820.102350px;}
.y2b{bottom:820.852500px;}
.y10b{bottom:824.272050px;}
.y66{bottom:825.441450px;}
.y98{bottom:829.941450px;}
.yb{bottom:835.102350px;}
.y2a{bottom:835.852500px;}
.y10a{bottom:843.772050px;}
.y65{bottom:845.241450px;}
.y97{bottom:849.441450px;}
.y109{bottom:863.272050px;}
.y64{bottom:865.041450px;}
.y96{bottom:868.941450px;}
.y108{bottom:882.772050px;}
.y63{bottom:884.841450px;}
.y95{bottom:888.441450px;}
.y107{bottom:902.272050px;}
.ya{bottom:903.913200px;}
.y29{bottom:903.913350px;}
.y62{bottom:904.641300px;}
.y94{bottom:907.941450px;}
.y106{bottom:921.772050px;}
.y61{bottom:924.441450px;}
.y93{bottom:927.441450px;}
.y9{bottom:929.165100px;}
.y28{bottom:929.165250px;}
.y105{bottom:941.272050px;}
.y60{bottom:944.241450px;}
.y92{bottom:946.941450px;}
.y104{bottom:960.772050px;}
.y5f{bottom:964.041450px;}
.y91{bottom:966.441450px;}
.y103{bottom:980.272050px;}
.y8{bottom:983.765100px;}
.y27{bottom:983.765250px;}
.y5e{bottom:983.841300px;}
.y90{bottom:985.941450px;}
.y102{bottom:999.772050px;}
.y7{bottom:1003.565100px;}
.y26{bottom:1003.565250px;}
.y5d{bottom:1003.641300px;}
.y8f{bottom:1005.441450px;}
.y101{bottom:1019.272050px;}
.y6{bottom:1023.365100px;}
.y25{bottom:1023.365250px;}
.y5c{bottom:1023.441450px;}
.y8e{bottom:1024.941450px;}
.y100{bottom:1038.772050px;}
.y5{bottom:1043.165100px;}
.y24{bottom:1043.165250px;}
.y5b{bottom:1043.241450px;}
.y8d{bottom:1044.441450px;}
.yff{bottom:1058.272050px;}
.y4{bottom:1062.965100px;}
.y23{bottom:1062.965400px;}
.y5a{bottom:1063.041450px;}
.y8c{bottom:1063.941450px;}
.yfe{bottom:1077.772050px;}
.y59{bottom:1082.841300px;}
.y8b{bottom:1083.441450px;}
.yfd{bottom:1097.272050px;}
.y58{bottom:1102.641300px;}
.y8a{bottom:1102.941450px;}
.yfc{bottom:1116.772050px;}
.y3{bottom:1120.755750px;}
.y57{bottom:1122.441450px;}
.y56{bottom:1167.058200px;}
.y1{bottom:1174.874550px;}
.y55{bottom:1181.458200px;}
.h9{height:25.995938px;}
.hb{height:33.656250px;}
.hf{height:35.520000px;}
.he{height:39.960000px;}
.h2{height:40.416000px;}
.ha{height:41.835938px;}
.h3{height:42.480000px;}
.h8{height:42.576000px;}
.h12{height:43.007812px;}
.hc{height:46.148438px;}
.h11{height:46.277344px;}
.h6{height:46.665600px;}
.h10{height:47.308594px;}
.h4{height:50.520000px;}
.h5{height:50.952000px;}
.hd{height:57.524414px;}
.h7{height:58.665600px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x3{left:106.299150px;}
.x17{left:114.803100px;}
.xc{left:119.148900px;}
.x1b{left:131.700300px;}
.x7{left:137.134500px;}
.xb{left:140.408700px;}
.x6{left:144.905850px;}
.x18{left:148.818900px;}
.x5{left:153.964050px;}
.x4{left:155.028300px;}
.x8{left:157.684800px;}
.xa{left:183.759750px;}
.x9{left:192.771750px;}
.x1{left:323.616900px;}
.x1a{left:436.584450px;}
.x2{left:437.681850px;}
.x10{left:457.594950px;}
.xf{left:462.297750px;}
.x15{left:469.842450px;}
.xe{left:480.603900px;}
.x1c{left:482.487600px;}
.x14{left:491.102400px;}
.x19{left:499.606350px;}
.xd{left:510.782250px;}
.x13{left:534.547050px;}
.x12{left:543.559050px;}
.x11{left:557.451450px;}
.x16{left:574.532700px;}
@media print{
.v4{vertical-align:-14.080000pt;}
.v3{vertical-align:-10.666667pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:17.600000pt;}
.v2{vertical-align:28.266667pt;}
.ls6{letter-spacing:-0.880000pt;}
.ls1{letter-spacing:-0.853333pt;}
.lsd{letter-spacing:-0.586667pt;}
.ls2{letter-spacing:-0.426667pt;}
.ls0{letter-spacing:0.000000pt;}
.ls5{letter-spacing:0.012800pt;}
.ls9{letter-spacing:0.020800pt;}
.lsc{letter-spacing:0.022400pt;}
.lsa{letter-spacing:0.028800pt;}
.ls3{letter-spacing:0.049067pt;}
.lse{letter-spacing:2.320000pt;}
.ls10{letter-spacing:5.280000pt;}
.ls7{letter-spacing:5.724800pt;}
.ls4{letter-spacing:10.080533pt;}
.lsf{letter-spacing:10.101333pt;}
.ls8{letter-spacing:10.255467pt;}
.ls12{letter-spacing:11.865600pt;}
.ls11{letter-spacing:19.766400pt;}
.lsb{letter-spacing:32.933867pt;}
.ws0{word-spacing:-12.906667pt;}
.ws19{word-spacing:-2.944000pt;}
.ws5{word-spacing:-1.706667pt;}
.ws2c{word-spacing:-1.664000pt;}
.ws33{word-spacing:-1.056000pt;}
.ws21{word-spacing:-0.682667pt;}
.ws27{word-spacing:-0.597333pt;}
.ws2e{word-spacing:-0.213333pt;}
.ws6{word-spacing:-0.085333pt;}
.ws1{word-spacing:0.000000pt;}
.ws15{word-spacing:0.384000pt;}
.ws2d{word-spacing:0.426667pt;}
.ws34{word-spacing:0.586667pt;}
.wsf{word-spacing:0.640000pt;}
.ws23{word-spacing:0.810667pt;}
.ws31{word-spacing:0.880000pt;}
.ws4{word-spacing:1.109333pt;}
.ws12{word-spacing:1.152000pt;}
.ws26{word-spacing:1.237333pt;}
.ws10{word-spacing:1.365333pt;}
.ws1e{word-spacing:1.621333pt;}
.wsa{word-spacing:1.749333pt;}
.ws1d{word-spacing:2.560000pt;}
.ws13{word-spacing:2.602667pt;}
.ws2{word-spacing:3.328000pt;}
.ws1a{word-spacing:3.370667pt;}
.ws28{word-spacing:3.413333pt;}
.ws1b{word-spacing:3.584000pt;}
.wsb{word-spacing:3.797333pt;}
.ws35{word-spacing:4.048000pt;}
.ws14{word-spacing:4.394667pt;}
.wsc{word-spacing:4.608000pt;}
.ws24{word-spacing:4.650667pt;}
.ws11{word-spacing:4.992000pt;}
.ws25{word-spacing:5.717333pt;}
.ws20{word-spacing:5.888000pt;}
.wsd{word-spacing:5.930667pt;}
.ws29{word-spacing:6.570667pt;}
.ws2a{word-spacing:7.168000pt;}
.ws1f{word-spacing:8.746667pt;}
.ws1c{word-spacing:9.045333pt;}
.wse{word-spacing:10.240000pt;}
.ws8{word-spacing:10.496000pt;}
.ws3{word-spacing:10.837333pt;}
.ws9{word-spacing:10.880000pt;}
.ws30{word-spacing:12.378667pt;}
.ws32{word-spacing:12.789333pt;}
.ws18{word-spacing:12.885333pt;}
.ws22{word-spacing:13.013333pt;}
.ws17{word-spacing:14.378667pt;}
.ws7{word-spacing:15.402667pt;}
.ws2f{word-spacing:15.840000pt;}
.ws16{word-spacing:17.706667pt;}
.ws2b{word-spacing:29.824000pt;}
._15{margin-left:-5.633067pt;}
._12{margin-left:-4.058667pt;}
._1{margin-left:-3.157333pt;}
._3{margin-left:-2.120533pt;}
._0{margin-left:-1.156267pt;}
._5{width:0.904533pt;}
._b{width:1.856533pt;}
._7{width:2.792533pt;}
._8{width:3.913067pt;}
._a{width:4.840000pt;}
._9{width:6.171733pt;}
._c{width:7.738133pt;}
._e{width:9.380800pt;}
._2{width:11.082347pt;}
._11{width:11.990613pt;}
._13{width:14.003733pt;}
._6{width:15.335467pt;}
._14{width:16.268267pt;}
._1b{width:17.500267pt;}
._17{width:18.679467pt;}
._1a{width:19.876267pt;}
._4{width:21.077333pt;}
._10{width:22.381333pt;}
._f{width:23.713067pt;}
._d{width:24.751467pt;}
._18{width:25.660800pt;}
._22{width:26.562667pt;}
._16{width:27.620267pt;}
._1e{width:29.415467pt;}
._1c{width:31.228267pt;}
._1d{width:33.029333pt;}
._19{width:34.713067pt;}
._1f{width:36.138667pt;}
._21{width:49.254933pt;}
._20{width:72.158400pt;}
.fs4{font-size:24.746667pt;}
.fs3{font-size:30.933333pt;}
.fs0{font-size:42.666667pt;}
.fs5{font-size:48.000000pt;}
.fs1{font-size:53.333333pt;}
.fs2{font-size:58.666667pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:70.243067pt;}
.ybc{bottom:113.725733pt;}
.y14b{bottom:114.774667pt;}
.yfb{bottom:115.940933pt;}
.y89{bottom:117.725733pt;}
.ydc{bottom:120.207600pt;}
.y12e{bottom:126.019600pt;}
.y49{bottom:128.496800pt;}
.ybb{bottom:131.059067pt;}
.y14a{bottom:132.374667pt;}
.yfa{bottom:133.274267pt;}
.y88{bottom:135.325733pt;}
.ydb{bottom:137.807600pt;}
.y48{bottom:141.296800pt;}
.y12d{bottom:143.352933pt;}
.yba{bottom:148.392400pt;}
.y149{bottom:149.974667pt;}
.yf9{bottom:150.607600pt;}
.y87{bottom:152.925733pt;}
.y47{bottom:154.096800pt;}
.yda{bottom:155.407600pt;}
.y12c{bottom:160.686267pt;}
.yb9{bottom:165.725733pt;}
.y148{bottom:167.574667pt;}
.yf8{bottom:167.940933pt;}
.y46{bottom:170.416800pt;}
.y86{bottom:170.525733pt;}
.yd9{bottom:173.007600pt;}
.y12b{bottom:178.019600pt;}
.yb8{bottom:183.059067pt;}
.y147{bottom:185.174667pt;}
.yf7{bottom:185.274267pt;}
.y85{bottom:188.125733pt;}
.yd8{bottom:190.607600pt;}
.y45{bottom:191.035467pt;}
.y12a{bottom:195.352933pt;}
.yb7{bottom:200.392400pt;}
.yf6{bottom:202.607600pt;}
.y146{bottom:202.774667pt;}
.y44{bottom:203.835467pt;}
.y84{bottom:205.725733pt;}
.yd7{bottom:208.207600pt;}
.y129{bottom:212.686267pt;}
.y43{bottom:216.635467pt;}
.yb6{bottom:217.725733pt;}
.yf5{bottom:219.940933pt;}
.y83{bottom:223.325733pt;}
.yd6{bottom:225.807600pt;}
.y128{bottom:230.019600pt;}
.y144{bottom:231.455200pt;}
.y42{bottom:232.955467pt;}
.yb5{bottom:235.059067pt;}
.yf4{bottom:237.274267pt;}
.y82{bottom:240.925733pt;}
.yd5{bottom:243.407600pt;}
.y127{bottom:247.352933pt;}
.yb4{bottom:252.392400pt;}
.y145{bottom:253.780800pt;}
.yf3{bottom:254.607600pt;}
.y81{bottom:258.525733pt;}
.yd4{bottom:261.007600pt;}
.y126{bottom:264.686267pt;}
.yb3{bottom:269.725733pt;}
.yf2{bottom:271.940933pt;}
.y80{bottom:276.125733pt;}
.yd3{bottom:278.607600pt;}
.y4f{bottom:280.544533pt;}
.y54{bottom:281.877867pt;}
.y125{bottom:282.019600pt;}
.yb2{bottom:287.059067pt;}
.yf1{bottom:289.274267pt;}
.y7f{bottom:293.725733pt;}
.yd2{bottom:296.207600pt;}
.y4e{bottom:298.144533pt;}
.y53{bottom:299.211200pt;}
.y124{bottom:299.352933pt;}
.yb1{bottom:304.392400pt;}
.yf0{bottom:306.607600pt;}
.y7e{bottom:311.325733pt;}
.yd1{bottom:313.807600pt;}
.y4d{bottom:315.744533pt;}
.y52{bottom:316.544533pt;}
.y123{bottom:316.686267pt;}
.yb0{bottom:321.725733pt;}
.yef{bottom:323.940933pt;}
.y7d{bottom:328.925733pt;}
.yd0{bottom:331.407600pt;}
.y4c{bottom:333.344533pt;}
.y51{bottom:333.877867pt;}
.y122{bottom:334.019600pt;}
.yaf{bottom:339.059067pt;}
.yee{bottom:341.274267pt;}
.y7c{bottom:346.525733pt;}
.y143{bottom:348.833333pt;}
.ycf{bottom:349.007600pt;}
.y4b{bottom:350.944533pt;}
.y50{bottom:351.211200pt;}
.y121{bottom:351.352933pt;}
.yae{bottom:356.392400pt;}
.y139{bottom:356.566667pt;}
.yed{bottom:358.607600pt;}
.y7b{bottom:364.125733pt;}
.y142{bottom:366.166667pt;}
.yce{bottom:366.607600pt;}
.y120{bottom:368.686267pt;}
.yad{bottom:373.725733pt;}
.y138{bottom:374.166667pt;}
.yec{bottom:375.940933pt;}
.y4a{bottom:376.103600pt;}
.y7a{bottom:381.725733pt;}
.y141{bottom:383.500000pt;}
.ycd{bottom:384.207600pt;}
.y11f{bottom:386.019600pt;}
.yac{bottom:391.059067pt;}
.y137{bottom:391.766667pt;}
.yeb{bottom:393.274267pt;}
.y79{bottom:399.325733pt;}
.y140{bottom:400.833333pt;}
.ycc{bottom:401.807600pt;}
.y11e{bottom:403.352933pt;}
.yab{bottom:408.392400pt;}
.y136{bottom:409.366667pt;}
.yea{bottom:410.607600pt;}
.y78{bottom:416.925733pt;}
.y13f{bottom:418.166667pt;}
.ycb{bottom:419.407600pt;}
.y11d{bottom:420.686267pt;}
.yaa{bottom:425.725733pt;}
.y135{bottom:426.966667pt;}
.ye9{bottom:427.940933pt;}
.y22{bottom:428.087467pt;}
.y41{bottom:428.754267pt;}
.y77{bottom:434.525733pt;}
.y13e{bottom:435.500000pt;}
.yca{bottom:437.007600pt;}
.y11c{bottom:438.019600pt;}
.y21{bottom:441.420800pt;}
.y40{bottom:442.087600pt;}
.ya9{bottom:443.059067pt;}
.y134{bottom:444.566667pt;}
.ye8{bottom:445.274267pt;}
.y76{bottom:452.125733pt;}
.y13d{bottom:452.833333pt;}
.yc9{bottom:454.607600pt;}
.y20{bottom:454.754133pt;}
.y11b{bottom:455.352933pt;}
.y3f{bottom:455.420933pt;}
.ya8{bottom:460.392400pt;}
.y133{bottom:462.166667pt;}
.ye7{bottom:462.607600pt;}
.y75{bottom:469.725733pt;}
.y13c{bottom:470.166667pt;}
.yc8{bottom:472.207600pt;}
.y11a{bottom:472.686267pt;}
.y1f{bottom:475.646533pt;}
.y3e{bottom:476.313333pt;}
.ya7{bottom:477.725733pt;}
.y132{bottom:479.766667pt;}
.ye6{bottom:479.940933pt;}
.y74{bottom:487.325733pt;}
.y13b{bottom:487.500000pt;}
.y1e{bottom:488.979867pt;}
.y3d{bottom:489.646667pt;}
.yc7{bottom:489.807600pt;}
.y119{bottom:490.019600pt;}
.ya6{bottom:495.059067pt;}
.y131{bottom:497.366667pt;}
.y1d{bottom:502.313200pt;}
.y3c{bottom:502.980000pt;}
.ye5{bottom:504.833333pt;}
.y73{bottom:504.925733pt;}
.y118{bottom:507.352933pt;}
.yc6{bottom:507.407600pt;}
.ya5{bottom:512.392400pt;}
.y130{bottom:514.966667pt;}
.y1c{bottom:515.646533pt;}
.y3b{bottom:516.313333pt;}
.y13a{bottom:522.166667pt;}
.y72{bottom:522.525733pt;}
.y117{bottom:524.686267pt;}
.yc5{bottom:525.007600pt;}
.y1b{bottom:528.979867pt;}
.y3a{bottom:529.646667pt;}
.ya4{bottom:529.725733pt;}
.y12f{bottom:532.566667pt;}
.ye4{bottom:539.500000pt;}
.y71{bottom:540.125733pt;}
.y116{bottom:542.019600pt;}
.y1a{bottom:542.313200pt;}
.y39{bottom:542.980000pt;}
.ya3{bottom:547.059067pt;}
.yc4{bottom:550.166667pt;}
.y19{bottom:555.646533pt;}
.y38{bottom:556.313333pt;}
.ye3{bottom:556.833333pt;}
.y70{bottom:557.725733pt;}
.y115{bottom:559.352933pt;}
.ya2{bottom:564.392400pt;}
.y18{bottom:568.979867pt;}
.y37{bottom:569.646667pt;}
.ye2{bottom:574.166667pt;}
.y6f{bottom:575.325733pt;}
.y114{bottom:576.686267pt;}
.ya1{bottom:581.725733pt;}
.y17{bottom:582.313200pt;}
.y36{bottom:582.980000pt;}
.yc3{bottom:585.366667pt;}
.ye1{bottom:591.500000pt;}
.y6e{bottom:592.925733pt;}
.y113{bottom:594.019600pt;}
.y16{bottom:595.646533pt;}
.y35{bottom:596.313333pt;}
.ya0{bottom:599.059067pt;}
.yc2{bottom:602.966667pt;}
.ye0{bottom:608.833333pt;}
.y15{bottom:608.979867pt;}
.y34{bottom:609.646667pt;}
.y6d{bottom:610.525733pt;}
.y112{bottom:611.352933pt;}
.y9f{bottom:616.392400pt;}
.yc1{bottom:620.566667pt;}
.y14{bottom:622.313200pt;}
.y33{bottom:622.980000pt;}
.ydf{bottom:626.166667pt;}
.y6c{bottom:628.125733pt;}
.y111{bottom:628.686267pt;}
.y9e{bottom:633.725733pt;}
.y13{bottom:635.646533pt;}
.y32{bottom:636.313333pt;}
.yc0{bottom:638.166667pt;}
.yde{bottom:643.500000pt;}
.y6b{bottom:645.725733pt;}
.y110{bottom:646.019600pt;}
.y12{bottom:648.979867pt;}
.y31{bottom:649.646667pt;}
.y9d{bottom:651.059067pt;}
.ybf{bottom:655.766667pt;}
.ydd{bottom:660.833333pt;}
.y11{bottom:662.313200pt;}
.y30{bottom:662.980000pt;}
.y6a{bottom:663.325733pt;}
.y10f{bottom:663.352933pt;}
.y9c{bottom:668.392400pt;}
.ybe{bottom:673.366667pt;}
.y10{bottom:675.646533pt;}
.y2f{bottom:676.313333pt;}
.y10e{bottom:680.686267pt;}
.y69{bottom:680.925733pt;}
.y9b{bottom:685.725733pt;}
.yf{bottom:688.979867pt;}
.y2e{bottom:689.646667pt;}
.ybd{bottom:690.966667pt;}
.y10d{bottom:698.019600pt;}
.y68{bottom:698.525733pt;}
.ye{bottom:702.313200pt;}
.y2d{bottom:702.980000pt;}
.y9a{bottom:703.059067pt;}
.y10c{bottom:715.352933pt;}
.yd{bottom:715.646533pt;}
.y67{bottom:716.125733pt;}
.y2c{bottom:716.313333pt;}
.y99{bottom:720.392400pt;}
.yc{bottom:728.979867pt;}
.y2b{bottom:729.646667pt;}
.y10b{bottom:732.686267pt;}
.y66{bottom:733.725733pt;}
.y98{bottom:737.725733pt;}
.yb{bottom:742.313200pt;}
.y2a{bottom:742.980000pt;}
.y10a{bottom:750.019600pt;}
.y65{bottom:751.325733pt;}
.y97{bottom:755.059067pt;}
.y109{bottom:767.352933pt;}
.y64{bottom:768.925733pt;}
.y96{bottom:772.392400pt;}
.y108{bottom:784.686267pt;}
.y63{bottom:786.525733pt;}
.y95{bottom:789.725733pt;}
.y107{bottom:802.019600pt;}
.ya{bottom:803.478400pt;}
.y29{bottom:803.478533pt;}
.y62{bottom:804.125600pt;}
.y94{bottom:807.059067pt;}
.y106{bottom:819.352933pt;}
.y61{bottom:821.725733pt;}
.y93{bottom:824.392400pt;}
.y9{bottom:825.924533pt;}
.y28{bottom:825.924667pt;}
.y105{bottom:836.686267pt;}
.y60{bottom:839.325733pt;}
.y92{bottom:841.725733pt;}
.y104{bottom:854.019600pt;}
.y5f{bottom:856.925733pt;}
.y91{bottom:859.059067pt;}
.y103{bottom:871.352933pt;}
.y8{bottom:874.457867pt;}
.y27{bottom:874.458000pt;}
.y5e{bottom:874.525600pt;}
.y90{bottom:876.392400pt;}
.y102{bottom:888.686267pt;}
.y7{bottom:892.057867pt;}
.y26{bottom:892.058000pt;}
.y5d{bottom:892.125600pt;}
.y8f{bottom:893.725733pt;}
.y101{bottom:906.019600pt;}
.y6{bottom:909.657867pt;}
.y25{bottom:909.658000pt;}
.y5c{bottom:909.725733pt;}
.y8e{bottom:911.059067pt;}
.y100{bottom:923.352933pt;}
.y5{bottom:927.257867pt;}
.y24{bottom:927.258000pt;}
.y5b{bottom:927.325733pt;}
.y8d{bottom:928.392400pt;}
.yff{bottom:940.686267pt;}
.y4{bottom:944.857867pt;}
.y23{bottom:944.858133pt;}
.y5a{bottom:944.925733pt;}
.y8c{bottom:945.725733pt;}
.yfe{bottom:958.019600pt;}
.y59{bottom:962.525600pt;}
.y8b{bottom:963.059067pt;}
.yfd{bottom:975.352933pt;}
.y58{bottom:980.125600pt;}
.y8a{bottom:980.392400pt;}
.yfc{bottom:992.686267pt;}
.y3{bottom:996.227333pt;}
.y57{bottom:997.725733pt;}
.y56{bottom:1037.385067pt;}
.y1{bottom:1044.332933pt;}
.y55{bottom:1050.185067pt;}
.h9{height:23.107500pt;}
.hb{height:29.916667pt;}
.hf{height:31.573333pt;}
.he{height:35.520000pt;}
.h2{height:35.925333pt;}
.ha{height:37.187500pt;}
.h3{height:37.760000pt;}
.h8{height:37.845333pt;}
.h12{height:38.229167pt;}
.hc{height:41.020833pt;}
.h11{height:41.135417pt;}
.h6{height:41.480533pt;}
.h10{height:42.052083pt;}
.h4{height:44.906667pt;}
.h5{height:45.290667pt;}
.hd{height:51.132812pt;}
.h7{height:52.147200pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x3{left:94.488133pt;}
.x17{left:102.047200pt;}
.xc{left:105.910133pt;}
.x1b{left:117.066933pt;}
.x7{left:121.897333pt;}
.xb{left:124.807733pt;}
.x6{left:128.805200pt;}
.x18{left:132.283467pt;}
.x5{left:136.856933pt;}
.x4{left:137.802933pt;}
.x8{left:140.164267pt;}
.xa{left:163.342000pt;}
.x9{left:171.352667pt;}
.x1{left:287.659467pt;}
.x1a{left:388.075067pt;}
.x2{left:389.050533pt;}
.x10{left:406.751067pt;}
.xf{left:410.931333pt;}
.x15{left:417.637733pt;}
.xe{left:427.203467pt;}
.x1c{left:428.877867pt;}
.x14{left:436.535467pt;}
.x19{left:444.094533pt;}
.xd{left:454.028667pt;}
.x13{left:475.152933pt;}
.x12{left:483.163600pt;}
.x11{left:495.512400pt;}
.x16{left:510.695733pt;}
}




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