
    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_4e3df25891c86c770b35034c.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.915039;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_7c227e9c7518e68808436d65.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.954102;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_ea69633204db0ebc9aa4882a.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.954102;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_2de4d31f34645d44a8707acc.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.951172;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_cbc27951ffd0771373cb167f.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.913086;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_54286a0183da7e5b395cbe30.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.900879;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_cc02c0038b2e163ea02c9f6d.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.765137;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_1dab51fa010c7b4ed8e6fadf.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_58f348b425cfeac6c4b3f049.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.966309;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);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:28.145037px;}
.v2{vertical-align:55.966857px;}
.lsc{letter-spacing:0.000000px;}
.ls9{letter-spacing:0.168300px;}
.ls7{letter-spacing:0.224400px;}
.lsf{letter-spacing:2.854500px;}
.ls2{letter-spacing:3.085500px;}
.ls15{letter-spacing:6.039372px;}
.ls4{letter-spacing:9.256500px;}
.ls21{letter-spacing:11.418000px;}
.ls1f{letter-spacing:11.437922px;}
.ls1c{letter-spacing:11.465886px;}
.ls1a{letter-spacing:11.472180px;}
.ls8{letter-spacing:12.342000px;}
.ls6{letter-spacing:15.371400px;}
.ls3{letter-spacing:15.427500px;}
.ls1{letter-spacing:18.513000px;}
.ls20{letter-spacing:28.493100px;}
.lsd{letter-spacing:28.545000px;}
.lsb{letter-spacing:30.798900px;}
.lsa{letter-spacing:30.855000px;}
.ls5{letter-spacing:30.911100px;}
.ls0{letter-spacing:30.967200px;}
.lse{letter-spacing:36.278100px;}
.ls11{letter-spacing:37.575600px;}
.ls12{letter-spacing:37.627500px;}
.ls1e{letter-spacing:41.675700px;}
.ls10{letter-spacing:53.301300px;}
.ls14{letter-spacing:54.598800px;}
.ls13{letter-spacing:55.896300px;}
.ls19{letter-spacing:57.712800px;}
.ls1b{letter-spacing:58.647000px;}
.ls1d{letter-spacing:67.242258px;}
.ls16{letter-spacing:68.170164px;}
.ls18{letter-spacing:68.182250px;}
.ls17{letter-spacing:84.241536px;}
.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;}
}
.wse{word-spacing:-55.948200px;}
.wsb{word-spacing:-53.353200px;}
.ws6{word-spacing:-15.483600px;}
.ws13{word-spacing:-0.051900px;}
.ws7{word-spacing:0.000000px;}
.ws3{word-spacing:9.200400px;}
.ws8{word-spacing:12.229800px;}
.ws5{word-spacing:12.285900px;}
.ws0{word-spacing:15.371400px;}
.ws2{word-spacing:18.400800px;}
.ws1{word-spacing:18.456900px;}
.ws10{word-spacing:28.493100px;}
.ws4{word-spacing:30.798900px;}
.ws9{word-spacing:36.226200px;}
.wsc{word-spacing:37.575600px;}
.wsd{word-spacing:38.821200px;}
.ws12{word-spacing:53.197500px;}
.wsa{word-spacing:53.249400px;}
.wsf{word-spacing:55.844400px;}
.ws11{word-spacing:70.220700px;}
._9{margin-left:-55.896300px;}
._8{margin-left:-18.320700px;}
._5{margin-left:-17.023200px;}
._2{margin-left:-15.427500px;}
._b{width:2.854500px;}
._1{width:6.171000px;}
._0{width:18.513000px;}
._a{width:27.000000px;}
._7{width:36.278100px;}
._6{width:38.873100px;}
._3{width:53.301300px;}
._4{width:70.272600px;}
.fc1{color:transparent;}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:36.900000px;}
.fs2{font-size:42.000000px;}
.fs1{font-size:51.900000px;}
.fs0{font-size:56.100000px;}
.y0{bottom:0.000000px;}
.y12c{bottom:0.010346px;}
.y104{bottom:0.013455px;}
.y124{bottom:0.074937px;}
.y117{bottom:0.127266px;}
.y18a{bottom:0.131784px;}
.y10c{bottom:0.188865px;}
.y1d{bottom:0.205283px;}
.y26{bottom:0.212607px;}
.y38{bottom:0.219932px;}
.y138{bottom:0.233668px;}
.y130{bottom:0.275817px;}
.yff{bottom:0.330663px;}
.y17{bottom:0.353087px;}
.y32{bottom:0.367734px;}
.y47{bottom:0.375059px;}
.y11f{bottom:0.392143px;}
.y29{bottom:0.515537px;}
.y59{bottom:0.635229px;}
.y3b{bottom:0.670664px;}
.y186{bottom:0.699878px;}
.y112{bottom:0.713875px;}
.y184{bottom:0.742026px;}
.y17b{bottom:0.756022px;}
.y182{bottom:0.784174px;}
.y2{bottom:0.796494px;}
.y173{bottom:0.798171px;}
.y1a{bottom:0.803819px;}
.y4a{bottom:0.825791px;}
.y181{bottom:0.826323px;}
.y16b{bottom:0.840319px;}
.y11d{bottom:0.868470px;}
.y163{bottom:0.882466px;}
.y7e{bottom:0.908211px;}
.y15c{bottom:0.924615px;}
.y5f{bottom:0.938159px;}
.y76{bottom:0.950359px;}
.y11{bottom:0.951621px;}
.y2c{bottom:0.966270px;}
.y153{bottom:0.966763px;}
.y41{bottom:0.973593px;}
.y6e{bottom:0.992508px;}
.y14b{bottom:1.008912px;}
.y66{bottom:1.034655px;}
.y143{bottom:1.051059px;}
.ya7{bottom:1.057470px;}
.y13b{bottom:1.093208px;}
.y9f{bottom:1.099619px;}
.y3e{bottom:1.121397px;}
.y4d{bottom:1.128720px;}
.y133{bottom:1.135356px;}
.y97{bottom:1.141767px;}
.y8f{bottom:1.183916px;}
.y87{bottom:1.226063px;}
.y56{bottom:1.233765px;}
.y35{bottom:1.269200px;}
.yf9{bottom:1.306528px;}
.y10f{bottom:1.354335px;}
.y178{bottom:1.396484px;}
.y14{bottom:1.402353px;}
.y2f{bottom:1.417002px;}
.y44{bottom:1.424327px;}
.y170{bottom:1.438632px;}
.y168{bottom:1.480779px;}
.y161{bottom:1.522927px;}
.y158{bottom:1.565076px;}
.y150{bottom:1.607225px;}
.y11b{bottom:1.627266px;}
.y148{bottom:1.649372px;}
.y140{bottom:1.691520px;}
.yf5{bottom:1.946989px;}
.yee{bottom:1.989138px;}
.ye7{bottom:2.031285px;}
.ye0{bottom:2.073433px;}
.yd9{bottom:2.115582px;}
.y8{bottom:2.148692px;}
.yd2{bottom:2.157731px;}
.ycb{bottom:2.199878px;}
.yc4{bottom:2.242026px;}
.ybd{bottom:2.284174px;}
.yb6{bottom:2.326323px;}
.yaf{bottom:2.368470px;}
.yad{bottom:2.465766px;}
.yb{bottom:2.599424px;}
.y119{bottom:2.828766px;}
.y7b{bottom:3.048672px;}
.ye{bottom:3.050157px;}
.y73{bottom:3.090821px;}
.y6b{bottom:3.132968px;}
.y63{bottom:3.175116px;}
.ya4{bottom:3.197931px;}
.y5{bottom:3.197960px;}
.y9c{bottom:3.240080px;}
.y94{bottom:3.282228px;}
.y8c{bottom:3.324375px;}
.y84{bottom:3.366524px;}
.y5c{bottom:4.085963px;}
.yaa{bottom:142.742860px;}
.y4f{bottom:147.079458px;}
.ya9{bottom:159.514397px;}
.ya3{bottom:165.000000px;}
.y4c{bottom:166.500000px;}
.y4e{bottom:167.628720px;}
.ya5{bottom:168.197931px;}
.ya8{bottom:176.285934px;}
.y115{bottom:184.399264px;}
.ya6{bottom:192.000000px;}
.y114{bottom:201.170801px;}
.y10e{bottom:208.500000px;}
.y110{bottom:209.854335px;}
.ya2{bottom:213.285007px;}
.y113{bottom:217.942338px;}
.ya1{bottom:230.056544px;}
.y111{bottom:234.000000px;}
.y17f{bottom:234.713876px;}
.y9b{bottom:235.500000px;}
.y9d{bottom:238.740080px;}
.ya0{bottom:246.828081px;}
.y49{bottom:249.000000px;}
.y4b{bottom:249.825791px;}
.y10b{bottom:252.117000px;}
.y17e{bottom:254.941413px;}
.y10d{bottom:259.342121px;}
.y10a{bottom:259.342127px;}
.y9e{bottom:262.500000px;}
.y46{bottom:270.000000px;}
.y48{bottom:270.375059px;}
.y17d{bottom:271.712950px;}
.y109{bottom:277.544488px;}
.y177{bottom:279.000000px;}
.y179{bottom:280.396484px;}
.y9a{bottom:283.827156px;}
.y17c{bottom:288.484487px;}
.y43{bottom:289.500000px;}
.y45{bottom:290.924327px;}
.y108{bottom:291.536202px;}
.yfe{bottom:297.000000px;}
.y100{bottom:297.330663px;}
.y99{bottom:300.598693px;}
.y107{bottom:302.783114px;}
.y17a{bottom:304.500000px;}
.y93{bottom:306.000000px;}
.y95{bottom:309.282228px;}
.y106{bottom:309.819380px;}
.y40{bottom:310.500000px;}
.y42{bottom:311.473593px;}
.y98{bottom:317.370230px;}
.y176{bottom:325.483560px;}
.y102{bottom:328.021741px;}
.y105{bottom:328.021744px;}
.y96{bottom:333.000000px;}
.y103{bottom:342.000000px;}
.y101{bottom:342.013455px;}
.y175{bottom:342.255097px;}
.y16f{bottom:349.500000px;}
.y171{bottom:350.938632px;}
.y92{bottom:354.369304px;}
.y174{bottom:359.026634px;}
.yfd{bottom:362.794184px;}
.y91{bottom:371.140841px;}
.y3d{bottom:372.000000px;}
.y3f{bottom:373.121397px;}
.y172{bottom:375.000000px;}
.y8b{bottom:376.500000px;}
.y8d{bottom:379.824375px;}
.yfc{bottom:385.991917px;}
.y90{bottom:387.912378px;}
.y3a{bottom:393.000000px;}
.y3c{bottom:393.670664px;}
.y16e{bottom:396.025708px;}
.yfb{bottom:402.763454px;}
.y8e{bottom:403.500000px;}
.yf4{bottom:409.500000px;}
.yf6{bottom:411.446989px;}
.y16d{bottom:412.797245px;}
.y37{bottom:414.000000px;}
.y39{bottom:414.219932px;}
.yfa{bottom:419.534991px;}
.y167{bottom:420.000000px;}
.y169{bottom:421.480779px;}
.y8a{bottom:424.911453px;}
.y16c{bottom:429.568782px;}
.y34{bottom:433.500000px;}
.y36{bottom:434.769200px;}
.yf8{bottom:435.000000px;}
.yf7{bottom:436.306528px;}
.y89{bottom:441.682990px;}
.y16a{bottom:445.500000px;}
.y83{bottom:447.000000px;}
.y85{bottom:450.366524px;}
.yf3{bottom:456.534066px;}
.y88{bottom:458.454527px;}
.y166{bottom:466.567857px;}
.yf2{bottom:473.305603px;}
.y86{bottom:474.000000px;}
.y31{bottom:475.500000px;}
.y33{bottom:475.867734px;}
.yed{bottom:480.000000px;}
.yef{bottom:481.989138px;}
.y165{bottom:483.339394px;}
.yf1{bottom:490.077140px;}
.y160{bottom:490.500000px;}
.y162{bottom:492.022927px;}
.y2e{bottom:495.000000px;}
.y30{bottom:496.417002px;}
.y82{bottom:498.895866px;}
.y164{bottom:500.110931px;}
.yf0{bottom:506.848677px;}
.y2b{bottom:516.000000px;}
.y2d{bottom:516.966270px;}
.y81{bottom:522.093600px;}
.yec{bottom:527.076215px;}
.y28{bottom:537.000000px;}
.y15f{bottom:537.110005px;}
.y2a{bottom:537.515537px;}
.y80{bottom:538.865137px;}
.yeb{bottom:543.847752px;}
.y7a{bottom:544.500000px;}
.y7c{bottom:547.548672px;}
.ye6{bottom:550.500000px;}
.ye8{bottom:552.531285px;}
.y15e{bottom:553.881542px;}
.y7f{bottom:555.636674px;}
.yea{bottom:560.619289px;}
.y157{bottom:561.000000px;}
.y159{bottom:562.565076px;}
.y15d{bottom:570.653079px;}
.y7d{bottom:571.500000px;}
.ye9{bottom:577.390826px;}
.y15b{bottom:586.500000px;}
.y15a{bottom:587.424615px;}
.y79{bottom:592.635748px;}
.ye5{bottom:597.618362px;}
.y156{bottom:607.652152px;}
.y78{bottom:609.407285px;}
.ye4{bottom:614.389899px;}
.y72{bottom:615.000000px;}
.y74{bottom:618.090821px;}
.y25{bottom:619.500000px;}
.y27{bottom:619.712607px;}
.ydf{bottom:621.000000px;}
.ye1{bottom:623.073433px;}
.y155{bottom:624.423689px;}
.y77{bottom:626.178822px;}
.ye3{bottom:631.161436px;}
.y14f{bottom:631.500000px;}
.y151{bottom:633.107225px;}
.y154{bottom:641.195226px;}
.y75{bottom:642.000000px;}
.ye2{bottom:647.932972px;}
.y152{bottom:657.000000px;}
.y71{bottom:663.177897px;}
.yde{bottom:668.160510px;}
.y14e{bottom:678.194301px;}
.y70{bottom:679.949434px;}
.y24{bottom:681.360437px;}
.ydd{bottom:684.932047px;}
.y6a{bottom:685.500000px;}
.y6c{bottom:688.632968px;}
.yd8{bottom:691.500000px;}
.yda{bottom:693.615582px;}
.y14d{bottom:694.965838px;}
.y6f{bottom:696.720971px;}
.ydc{bottom:701.703584px;}
.y23{bottom:701.909698px;}
.y147{bottom:702.000000px;}
.y149{bottom:703.649372px;}
.y14c{bottom:711.737375px;}
.y6d{bottom:712.500000px;}
.ydb{bottom:718.475121px;}
.y22{bottom:722.458960px;}
.y14a{bottom:727.500000px;}
.y69{bottom:733.720045px;}
.yd7{bottom:738.702659px;}
.y21{bottom:743.008222px;}
.y146{bottom:748.736449px;}
.y68{bottom:750.491582px;}
.yd6{bottom:755.474196px;}
.y62{bottom:756.000000px;}
.y64{bottom:759.175116px;}
.y18b{bottom:759.407072px;}
.y188{bottom:759.407074px;}
.yd1{bottom:762.000000px;}
.y20{bottom:763.557483px;}
.yd3{bottom:764.157731px;}
.y189{bottom:765.000000px;}
.y145{bottom:765.507986px;}
.y67{bottom:767.263119px;}
.yd5{bottom:772.245733px;}
.y13f{bottom:772.500000px;}
.y141{bottom:774.191520px;}
.y144{bottom:782.279523px;}
.y65{bottom:783.000000px;}
.y187{bottom:786.047072px;}
.yd4{bottom:789.017270px;}
.y142{bottom:798.000000px;}
.y1f{bottom:804.656021px;}
.y61{bottom:807.704459px;}
.yd0{bottom:809.244807px;}
.y13e{bottom:819.278598px;}
.y1c{bottom:825.000000px;}
.y1e{bottom:825.205283px;}
.ycf{bottom:826.016344px;}
.yca{bottom:832.500000px;}
.y185{bottom:834.000000px;}
.ycc{bottom:834.699878px;}
.y13d{bottom:836.050135px;}
.yce{bottom:842.787881px;}
.y137{bottom:844.500000px;}
.y139{bottom:844.733668px;}
.y13c{bottom:852.821672px;}
.ycd{bottom:859.559418px;}
.y19{bottom:865.500000px;}
.y1b{bottom:866.303819px;}
.y13a{bottom:868.500000px;}
.yc9{bottom:879.786954px;}
.y16{bottom:886.500000px;}
.y18{bottom:886.853087px;}
.y136{bottom:889.820745px;}
.y5e{bottom:892.500000px;}
.y60{bottom:893.438159px;}
.yc8{bottom:896.558491px;}
.yc3{bottom:903.000000px;}
.y183{bottom:904.500000px;}
.yc5{bottom:905.242026px;}
.y13{bottom:906.000000px;}
.y135{bottom:906.592282px;}
.y15{bottom:907.402353px;}
.yc7{bottom:913.330028px;}
.y12f{bottom:915.000000px;}
.y131{bottom:915.275817px;}
.y134{bottom:923.363818px;}
.y10{bottom:927.000000px;}
.y12{bottom:927.951621px;}
.yc6{bottom:930.101565px;}
.y132{bottom:939.000000px;}
.yc2{bottom:950.329103px;}
.y5b{bottom:951.000000px;}
.y5d{bottom:955.085963px;}
.y12e{bottom:963.805158px;}
.yd{bottom:966.000000px;}
.yc1{bottom:967.100640px;}
.yf{bottom:969.050157px;}
.ybc{bottom:973.500000px;}
.y58{bottom:975.000000px;}
.y5a{bottom:975.635229px;}
.ybe{bottom:975.784174px;}
.yc0{bottom:983.872177px;}
.y12b{bottom:984.357000px;}
.ya{bottom:987.000000px;}
.yc{bottom:989.599424px;}
.y12d{bottom:991.403603px;}
.y12a{bottom:991.403609px;}
.ybf{bottom:1000.643713px;}
.y7{bottom:1008.000000px;}
.y129{bottom:1009.605970px;}
.y9{bottom:1010.148692px;}
.y55{bottom:1015.500000px;}
.y57{bottom:1016.733765px;}
.ybb{bottom:1020.871251px;}
.y128{bottom:1023.597684px;}
.y4{bottom:1027.500000px;}
.y11e{bottom:1029.000000px;}
.y120{bottom:1029.392143px;}
.y6{bottom:1030.697960px;}
.y127{bottom:1034.844596px;}
.yba{bottom:1037.642788px;}
.y126{bottom:1041.880862px;}
.yb5{bottom:1044.000000px;}
.y180{bottom:1045.500000px;}
.yb7{bottom:1046.326323px;}
.yb9{bottom:1054.414325px;}
.y54{bottom:1057.832323px;}
.y122{bottom:1060.083223px;}
.y125{bottom:1060.083225px;}
.y1{bottom:1071.000000px;}
.yb8{bottom:1071.185862px;}
.y3{bottom:1071.796494px;}
.y123{bottom:1074.000000px;}
.y121{bottom:1074.074937px;}
.y53{bottom:1078.381585px;}
.yb4{bottom:1091.413400px;}
.y52{bottom:1098.930847px;}
.yb3{bottom:1108.184937px;}
.yae{bottom:1114.500000px;}
.y11c{bottom:1116.000000px;}
.yb0{bottom:1116.868470px;}
.y51{bottom:1119.480108px;}
.yb2{bottom:1124.956474px;}
.y50{bottom:1140.029370px;}
.yb1{bottom:1141.728010px;}
.y118{bottom:1201.798500px;}
.yac{bottom:1202.161500px;}
.y11a{bottom:1203.000000px;}
.y116{bottom:1204.500000px;}
.yab{bottom:1204.627266px;}
.h1f{height:1.500000px;}
.h15{height:6.240000px;}
.h22{height:6.480000px;}
.h2a{height:6.597000px;}
.h25{height:7.143000px;}
.h1c{height:7.383000px;}
.h6{height:7.500000px;}
.h5{height:9.000000px;}
.h1e{height:9.838500px;}
.h29{height:9.903000px;}
.h28{height:9.961500px;}
.hc{height:10.020000px;}
.hb{height:10.078500px;}
.ha{height:10.143000px;}
.h8{height:10.201500px;}
.he{height:10.260000px;}
.hd{height:10.318500px;}
.h27{height:10.383000px;}
.h12{height:10.441500px;}
.h4{height:10.500000px;}
.h10{height:11.338500px;}
.h1{height:12.000000px;}
.h20{height:14.403000px;}
.h13{height:25.675049px;}
.h16{height:28.269580px;}
.h21{height:31.500000px;}
.h11{height:31.910156px;}
.hf{height:34.591553px;}
.h9{height:36.112061px;}
.h7{height:39.761279px;}
.h2{height:39.828809px;}
.h3{height:42.978955px;}
.h18{height:53.496842px;}
.h26{height:53.496869px;}
.h1d{height:53.496875px;}
.h24{height:56.091373px;}
.h1b{height:56.091379px;}
.h17{height:64.257083px;}
.h23{height:64.257089px;}
.h14{height:64.257098px;}
.h1a{height:81.641906px;}
.h19{height:84.236437px;}
.h0{height:1263.000000px;}
.w9{width:0.298500px;}
.wa{width:1.500000px;}
.w7{width:4.500000px;}
.w4{width:6.000000px;}
.wb{width:7.201500px;}
.w5{width:7.500000px;}
.w2{width:8.578500px;}
.w3{width:16.078500px;}
.w1{width:38.578500px;}
.w6{width:153.903000px;}
.w8{width:153.961500px;}
.w0{width:894.000000px;}
.xf{left:-1.159193px;}
.x0{left:0.000000px;}
.x2f{left:1.217292px;}
.x1b{left:81.000000px;}
.x1c{left:111.597000px;}
.x1{left:133.921500px;}
.x3{left:142.363763px;}
.x8{left:145.486517px;}
.x5{left:150.842008px;}
.x7{left:153.197526px;}
.x6{left:159.303024px;}
.x4{left:167.764040px;}
.x10{left:171.000000px;}
.x2{left:172.475052px;}
.x9{left:183.000000px;}
.xc{left:184.500000px;}
.x14{left:189.000000px;}
.x11{left:192.000000px;}
.xd{left:201.000000px;}
.xa{left:204.000000px;}
.x15{left:210.000000px;}
.x12{left:211.500000px;}
.x29{left:213.000000px;}
.x24{left:214.019711px;}
.x22{left:215.050599px;}
.x32{left:216.928327px;}
.xe{left:219.000000px;}
.xb{left:228.000000px;}
.x2a{left:229.500000px;}
.x16{left:231.000000px;}
.x13{left:232.500000px;}
.x17{left:235.500000px;}
.x25{left:238.188549px;}
.x1d{left:239.634577px;}
.x28{left:243.000000px;}
.x1e{left:244.500000px;}
.x2b{left:246.000000px;}
.x18{left:252.000000px;}
.x1f{left:264.000000px;}
.x23{left:265.500000px;}
.x19{left:267.000000px;}
.x27{left:269.594162px;}
.x1a{left:283.500000px;}
.x20{left:289.500000px;}
.x26{left:296.749954px;}
.x21{left:313.500000px;}
.x33{left:546.000000px;}
.x34{left:554.377182px;}
.x35{left:579.000000px;}
.x2c{left:626.038500px;}
.x2d{left:781.201500px;}
.x2e{left:792.000000px;}
.x30{left:796.461042px;}
.x31{left:802.798500px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:25.017811pt;}
.v2{vertical-align:49.748318pt;}
.lsc{letter-spacing:0.000000pt;}
.ls9{letter-spacing:0.149600pt;}
.ls7{letter-spacing:0.199467pt;}
.lsf{letter-spacing:2.537333pt;}
.ls2{letter-spacing:2.742667pt;}
.ls15{letter-spacing:5.368331pt;}
.ls4{letter-spacing:8.228000pt;}
.ls21{letter-spacing:10.149333pt;}
.ls1f{letter-spacing:10.167042pt;}
.ls1c{letter-spacing:10.191899pt;}
.ls1a{letter-spacing:10.197493pt;}
.ls8{letter-spacing:10.970667pt;}
.ls6{letter-spacing:13.663467pt;}
.ls3{letter-spacing:13.713333pt;}
.ls1{letter-spacing:16.456000pt;}
.ls20{letter-spacing:25.327200pt;}
.lsd{letter-spacing:25.373333pt;}
.lsb{letter-spacing:27.376800pt;}
.lsa{letter-spacing:27.426667pt;}
.ls5{letter-spacing:27.476533pt;}
.ls0{letter-spacing:27.526400pt;}
.lse{letter-spacing:32.247200pt;}
.ls11{letter-spacing:33.400533pt;}
.ls12{letter-spacing:33.446667pt;}
.ls1e{letter-spacing:37.045067pt;}
.ls10{letter-spacing:47.378933pt;}
.ls14{letter-spacing:48.532267pt;}
.ls13{letter-spacing:49.685600pt;}
.ls19{letter-spacing:51.300267pt;}
.ls1b{letter-spacing:52.130667pt;}
.ls1d{letter-spacing:59.770896pt;}
.ls16{letter-spacing:60.595701pt;}
.ls18{letter-spacing:60.606445pt;}
.ls17{letter-spacing:74.881365pt;}
.wse{word-spacing:-49.731733pt;}
.wsb{word-spacing:-47.425067pt;}
.ws6{word-spacing:-13.763200pt;}
.ws13{word-spacing:-0.046133pt;}
.ws7{word-spacing:0.000000pt;}
.ws3{word-spacing:8.178133pt;}
.ws8{word-spacing:10.870933pt;}
.ws5{word-spacing:10.920800pt;}
.ws0{word-spacing:13.663467pt;}
.ws2{word-spacing:16.356267pt;}
.ws1{word-spacing:16.406133pt;}
.ws10{word-spacing:25.327200pt;}
.ws4{word-spacing:27.376800pt;}
.ws9{word-spacing:32.201067pt;}
.wsc{word-spacing:33.400533pt;}
.wsd{word-spacing:34.507733pt;}
.ws12{word-spacing:47.286667pt;}
.wsa{word-spacing:47.332800pt;}
.wsf{word-spacing:49.639467pt;}
.ws11{word-spacing:62.418400pt;}
._9{margin-left:-49.685600pt;}
._8{margin-left:-16.285067pt;}
._5{margin-left:-15.131733pt;}
._2{margin-left:-13.713333pt;}
._b{width:2.537333pt;}
._1{width:5.485333pt;}
._0{width:16.456000pt;}
._a{width:24.000000pt;}
._7{width:32.247200pt;}
._6{width:34.553867pt;}
._3{width:47.378933pt;}
._4{width:62.464533pt;}
.fs3{font-size:32.800000pt;}
.fs2{font-size:37.333333pt;}
.fs1{font-size:46.133333pt;}
.fs0{font-size:49.866667pt;}
.y0{bottom:0.000000pt;}
.y12c{bottom:0.009196pt;}
.y104{bottom:0.011960pt;}
.y124{bottom:0.066611pt;}
.y117{bottom:0.113125pt;}
.y18a{bottom:0.117141pt;}
.y10c{bottom:0.167880pt;}
.y1d{bottom:0.182473pt;}
.y26{bottom:0.188984pt;}
.y38{bottom:0.195495pt;}
.y138{bottom:0.207705pt;}
.y130{bottom:0.245171pt;}
.yff{bottom:0.293923pt;}
.y17{bottom:0.313855pt;}
.y32{bottom:0.326875pt;}
.y47{bottom:0.333385pt;}
.y11f{bottom:0.348572pt;}
.y29{bottom:0.458255pt;}
.y59{bottom:0.564648pt;}
.y3b{bottom:0.596145pt;}
.y186{bottom:0.622113pt;}
.y112{bottom:0.634556pt;}
.y184{bottom:0.659579pt;}
.y17b{bottom:0.672020pt;}
.y182{bottom:0.697044pt;}
.y2{bottom:0.707995pt;}
.y173{bottom:0.709485pt;}
.y1a{bottom:0.714505pt;}
.y4a{bottom:0.734036pt;}
.y181{bottom:0.734509pt;}
.y16b{bottom:0.746951pt;}
.y11d{bottom:0.771973pt;}
.y163{bottom:0.784415pt;}
.y7e{bottom:0.807299pt;}
.y15c{bottom:0.821880pt;}
.y5f{bottom:0.833919pt;}
.y76{bottom:0.844764pt;}
.y11{bottom:0.845885pt;}
.y2c{bottom:0.858907pt;}
.y153{bottom:0.859345pt;}
.y41{bottom:0.865416pt;}
.y6e{bottom:0.882229pt;}
.y14b{bottom:0.896811pt;}
.y66{bottom:0.919693pt;}
.y143{bottom:0.934275pt;}
.ya7{bottom:0.939973pt;}
.y13b{bottom:0.971740pt;}
.y9f{bottom:0.977439pt;}
.y3e{bottom:0.996797pt;}
.y4d{bottom:1.003307pt;}
.y133{bottom:1.009205pt;}
.y97{bottom:1.014904pt;}
.y8f{bottom:1.052369pt;}
.y87{bottom:1.089833pt;}
.y56{bottom:1.096680pt;}
.y35{bottom:1.128177pt;}
.yf9{bottom:1.161359pt;}
.y10f{bottom:1.203853pt;}
.y178{bottom:1.241319pt;}
.y14{bottom:1.246536pt;}
.y2f{bottom:1.259557pt;}
.y44{bottom:1.266068pt;}
.y170{bottom:1.278784pt;}
.y168{bottom:1.316248pt;}
.y161{bottom:1.353713pt;}
.y158{bottom:1.391179pt;}
.y150{bottom:1.428644pt;}
.y11b{bottom:1.446459pt;}
.y148{bottom:1.466108pt;}
.y140{bottom:1.503573pt;}
.yf5{bottom:1.730657pt;}
.yee{bottom:1.768123pt;}
.ye7{bottom:1.805587pt;}
.ye0{bottom:1.843052pt;}
.yd9{bottom:1.880517pt;}
.y8{bottom:1.909948pt;}
.yd2{bottom:1.917983pt;}
.ycb{bottom:1.955447pt;}
.yc4{bottom:1.992912pt;}
.ybd{bottom:2.030377pt;}
.yb6{bottom:2.067843pt;}
.yaf{bottom:2.105307pt;}
.yad{bottom:2.191792pt;}
.yb{bottom:2.310599pt;}
.y119{bottom:2.514459pt;}
.y7b{bottom:2.709931pt;}
.ye{bottom:2.711251pt;}
.y73{bottom:2.747396pt;}
.y6b{bottom:2.784860pt;}
.y63{bottom:2.822325pt;}
.ya4{bottom:2.842605pt;}
.y5{bottom:2.842631pt;}
.y9c{bottom:2.880071pt;}
.y94{bottom:2.917536pt;}
.y8c{bottom:2.955000pt;}
.y84{bottom:2.992465pt;}
.y5c{bottom:3.631967pt;}
.yaa{bottom:126.882542pt;}
.y4f{bottom:130.737296pt;}
.ya9{bottom:141.790575pt;}
.ya3{bottom:146.666667pt;}
.y4c{bottom:148.000000pt;}
.y4e{bottom:149.003307pt;}
.ya5{bottom:149.509272pt;}
.ya8{bottom:156.698608pt;}
.y115{bottom:163.910457pt;}
.ya6{bottom:170.666667pt;}
.y114{bottom:178.818490pt;}
.y10e{bottom:185.333333pt;}
.y110{bottom:186.537187pt;}
.ya2{bottom:189.586673pt;}
.y113{bottom:193.726523pt;}
.ya1{bottom:204.494706pt;}
.y111{bottom:208.000000pt;}
.y17f{bottom:208.634556pt;}
.y9b{bottom:209.333333pt;}
.y9d{bottom:212.213404pt;}
.ya0{bottom:219.402739pt;}
.y49{bottom:221.333333pt;}
.y4b{bottom:222.067369pt;}
.y10b{bottom:224.104000pt;}
.y17e{bottom:226.614589pt;}
.y10d{bottom:230.526329pt;}
.y10a{bottom:230.526335pt;}
.y9e{bottom:233.333333pt;}
.y46{bottom:240.000000pt;}
.y48{bottom:240.333385pt;}
.y17d{bottom:241.522622pt;}
.y109{bottom:246.706211pt;}
.y177{bottom:248.000000pt;}
.y179{bottom:249.241319pt;}
.y9a{bottom:252.290805pt;}
.y17c{bottom:256.430655pt;}
.y43{bottom:257.333333pt;}
.y45{bottom:258.599401pt;}
.y108{bottom:259.143291pt;}
.yfe{bottom:264.000000pt;}
.y100{bottom:264.293923pt;}
.y99{bottom:267.198838pt;}
.y107{bottom:269.140546pt;}
.y17a{bottom:270.666667pt;}
.y93{bottom:272.000000pt;}
.y95{bottom:274.917536pt;}
.y106{bottom:275.395005pt;}
.y40{bottom:276.000000pt;}
.y42{bottom:276.865416pt;}
.y98{bottom:282.106871pt;}
.y176{bottom:289.318720pt;}
.y102{bottom:291.574881pt;}
.y105{bottom:291.574884pt;}
.y96{bottom:296.000000pt;}
.y103{bottom:304.000000pt;}
.y101{bottom:304.011960pt;}
.y175{bottom:304.226753pt;}
.y16f{bottom:310.666667pt;}
.y171{bottom:311.945451pt;}
.y92{bottom:314.994937pt;}
.y174{bottom:319.134785pt;}
.yfd{bottom:322.483719pt;}
.y91{bottom:329.902970pt;}
.y3d{bottom:330.666667pt;}
.y3f{bottom:331.663464pt;}
.y172{bottom:333.333333pt;}
.y8b{bottom:334.666667pt;}
.y8d{bottom:337.621667pt;}
.yfc{bottom:343.103926pt;}
.y90{bottom:344.811003pt;}
.y3a{bottom:349.333333pt;}
.y3c{bottom:349.929479pt;}
.y16e{bottom:352.022852pt;}
.yfb{bottom:358.011959pt;}
.y8e{bottom:358.666667pt;}
.yf4{bottom:364.000000pt;}
.yf6{bottom:365.730657pt;}
.y16d{bottom:366.930885pt;}
.y37{bottom:368.000000pt;}
.y39{bottom:368.195495pt;}
.yfa{bottom:372.919992pt;}
.y167{bottom:373.333333pt;}
.y169{bottom:374.649581pt;}
.y8a{bottom:377.699069pt;}
.y16c{bottom:381.838917pt;}
.y34{bottom:385.333333pt;}
.y36{bottom:386.461511pt;}
.yf8{bottom:386.666667pt;}
.yf7{bottom:387.828025pt;}
.y89{bottom:392.607102pt;}
.y16a{bottom:396.000000pt;}
.y83{bottom:397.333333pt;}
.y85{bottom:400.325799pt;}
.yf3{bottom:405.808059pt;}
.y88{bottom:407.515135pt;}
.y166{bottom:414.726984pt;}
.yf2{bottom:420.716092pt;}
.y86{bottom:421.333333pt;}
.y31{bottom:422.666667pt;}
.y33{bottom:422.993541pt;}
.yed{bottom:426.666667pt;}
.yef{bottom:428.434789pt;}
.y165{bottom:429.635017pt;}
.yf1{bottom:435.624125pt;}
.y160{bottom:436.000000pt;}
.y162{bottom:437.353713pt;}
.y2e{bottom:440.000000pt;}
.y30{bottom:441.259557pt;}
.y82{bottom:443.462992pt;}
.y164{bottom:444.543049pt;}
.yf0{bottom:450.532157pt;}
.y2b{bottom:458.666667pt;}
.y2d{bottom:459.525573pt;}
.y81{bottom:464.083200pt;}
.yec{bottom:468.512191pt;}
.y28{bottom:477.333333pt;}
.y15f{bottom:477.431116pt;}
.y2a{bottom:477.791588pt;}
.y80{bottom:478.991233pt;}
.yeb{bottom:483.420224pt;}
.y7a{bottom:484.000000pt;}
.y7c{bottom:486.709931pt;}
.ye6{bottom:489.333333pt;}
.ye8{bottom:491.138920pt;}
.y15e{bottom:492.339149pt;}
.y7f{bottom:493.899265pt;}
.yea{bottom:498.328257pt;}
.y157{bottom:498.666667pt;}
.y159{bottom:500.057845pt;}
.y15d{bottom:507.247181pt;}
.y7d{bottom:508.000000pt;}
.ye9{bottom:513.236289pt;}
.y15b{bottom:521.333333pt;}
.y15a{bottom:522.155213pt;}
.y79{bottom:526.787332pt;}
.ye5{bottom:531.216322pt;}
.y156{bottom:540.135246pt;}
.y78{bottom:541.695365pt;}
.ye4{bottom:546.124354pt;}
.y72{bottom:546.666667pt;}
.y74{bottom:549.414063pt;}
.y25{bottom:550.666667pt;}
.y27{bottom:550.855651pt;}
.ydf{bottom:552.000000pt;}
.ye1{bottom:553.843052pt;}
.y155{bottom:555.043279pt;}
.y77{bottom:556.603397pt;}
.ye3{bottom:561.032387pt;}
.y14f{bottom:561.333333pt;}
.y151{bottom:562.761977pt;}
.y154{bottom:569.951312pt;}
.y75{bottom:570.666667pt;}
.ye2{bottom:575.940420pt;}
.y152{bottom:584.000000pt;}
.y71{bottom:589.491464pt;}
.yde{bottom:593.920454pt;}
.y14e{bottom:602.839378pt;}
.y70{bottom:604.399497pt;}
.y24{bottom:605.653721pt;}
.ydd{bottom:608.828486pt;}
.y6a{bottom:609.333333pt;}
.y6c{bottom:612.118193pt;}
.yd8{bottom:614.666667pt;}
.yda{bottom:616.547184pt;}
.y14d{bottom:617.747411pt;}
.y6f{bottom:619.307529pt;}
.ydc{bottom:623.736519pt;}
.y23{bottom:623.919732pt;}
.y147{bottom:624.000000pt;}
.y149{bottom:625.466108pt;}
.y14c{bottom:632.655444pt;}
.y6d{bottom:633.333333pt;}
.ydb{bottom:638.644552pt;}
.y22{bottom:642.185742pt;}
.y14a{bottom:646.666667pt;}
.y69{bottom:652.195596pt;}
.yd7{bottom:656.624586pt;}
.y21{bottom:660.451753pt;}
.y146{bottom:665.543510pt;}
.y68{bottom:667.103629pt;}
.yd6{bottom:671.532618pt;}
.y62{bottom:672.000000pt;}
.y64{bottom:674.822325pt;}
.y18b{bottom:675.028508pt;}
.y188{bottom:675.028510pt;}
.yd1{bottom:677.333333pt;}
.y20{bottom:678.717763pt;}
.yd3{bottom:679.251316pt;}
.y189{bottom:680.000000pt;}
.y145{bottom:680.451543pt;}
.y67{bottom:682.011661pt;}
.yd5{bottom:686.440651pt;}
.y13f{bottom:686.666667pt;}
.y141{bottom:688.170240pt;}
.y144{bottom:695.359576pt;}
.y65{bottom:696.000000pt;}
.y187{bottom:698.708508pt;}
.yd4{bottom:701.348684pt;}
.y142{bottom:709.333333pt;}
.y1f{bottom:715.249796pt;}
.y61{bottom:717.959519pt;}
.yd0{bottom:719.328718pt;}
.y13e{bottom:728.247642pt;}
.y1c{bottom:733.333333pt;}
.y1e{bottom:733.515807pt;}
.ycf{bottom:734.236750pt;}
.yca{bottom:740.000000pt;}
.y185{bottom:741.333333pt;}
.ycc{bottom:741.955447pt;}
.y13d{bottom:743.155675pt;}
.yce{bottom:749.144783pt;}
.y137{bottom:750.666667pt;}
.y139{bottom:750.874372pt;}
.y13c{bottom:758.063708pt;}
.ycd{bottom:764.052816pt;}
.y19{bottom:769.333333pt;}
.y1b{bottom:770.047839pt;}
.y13a{bottom:772.000000pt;}
.yc9{bottom:782.032848pt;}
.y16{bottom:788.000000pt;}
.y18{bottom:788.313855pt;}
.y136{bottom:790.951773pt;}
.y5e{bottom:793.333333pt;}
.y60{bottom:794.167252pt;}
.yc8{bottom:796.940881pt;}
.yc3{bottom:802.666667pt;}
.y183{bottom:804.000000pt;}
.yc5{bottom:804.659579pt;}
.y13{bottom:805.333333pt;}
.y135{bottom:805.859806pt;}
.y15{bottom:806.579869pt;}
.yc7{bottom:811.848914pt;}
.y12f{bottom:813.333333pt;}
.y131{bottom:813.578504pt;}
.y134{bottom:820.767839pt;}
.y10{bottom:824.000000pt;}
.y12{bottom:824.845885pt;}
.yc6{bottom:826.756947pt;}
.y132{bottom:834.666667pt;}
.yc2{bottom:844.736980pt;}
.y5b{bottom:845.333333pt;}
.y5d{bottom:848.965300pt;}
.y12e{bottom:856.715696pt;}
.yd{bottom:858.666667pt;}
.yc1{bottom:859.645013pt;}
.yf{bottom:861.377917pt;}
.ybc{bottom:865.333333pt;}
.y58{bottom:866.666667pt;}
.y5a{bottom:867.231315pt;}
.ybe{bottom:867.363711pt;}
.yc0{bottom:874.553046pt;}
.y12b{bottom:874.984000pt;}
.ya{bottom:877.333333pt;}
.yc{bottom:879.643932pt;}
.y12d{bottom:881.247647pt;}
.y12a{bottom:881.247653pt;}
.ybf{bottom:889.461079pt;}
.y7{bottom:896.000000pt;}
.y129{bottom:897.427529pt;}
.y9{bottom:897.909948pt;}
.y55{bottom:902.666667pt;}
.y57{bottom:903.763347pt;}
.ybb{bottom:907.441112pt;}
.y128{bottom:909.864608pt;}
.y4{bottom:913.333333pt;}
.y11e{bottom:914.666667pt;}
.y120{bottom:915.015239pt;}
.y6{bottom:916.175964pt;}
.y127{bottom:919.861863pt;}
.yba{bottom:922.349145pt;}
.y126{bottom:926.116322pt;}
.yb5{bottom:928.000000pt;}
.y180{bottom:929.333333pt;}
.yb7{bottom:930.067843pt;}
.yb9{bottom:937.257178pt;}
.y54{bottom:940.295398pt;}
.y122{bottom:942.296198pt;}
.y125{bottom:942.296200pt;}
.y1{bottom:952.000000pt;}
.yb8{bottom:952.165211pt;}
.y3{bottom:952.707995pt;}
.y123{bottom:954.666667pt;}
.y121{bottom:954.733277pt;}
.y53{bottom:958.561409pt;}
.yb4{bottom:970.145244pt;}
.y52{bottom:976.827419pt;}
.yb3{bottom:985.053277pt;}
.yae{bottom:990.666667pt;}
.y11c{bottom:992.000000pt;}
.yb0{bottom:992.771973pt;}
.y51{bottom:995.093430pt;}
.yb2{bottom:999.961310pt;}
.y50{bottom:1013.359440pt;}
.yb1{bottom:1014.869343pt;}
.y118{bottom:1068.265333pt;}
.yac{bottom:1068.588000pt;}
.y11a{bottom:1069.333333pt;}
.y116{bottom:1070.666667pt;}
.yab{bottom:1070.779792pt;}
.h1f{height:1.333333pt;}
.h15{height:5.546667pt;}
.h22{height:5.760000pt;}
.h2a{height:5.864000pt;}
.h25{height:6.349333pt;}
.h1c{height:6.562667pt;}
.h6{height:6.666667pt;}
.h5{height:8.000000pt;}
.h1e{height:8.745333pt;}
.h29{height:8.802667pt;}
.h28{height:8.854667pt;}
.hc{height:8.906667pt;}
.hb{height:8.958667pt;}
.ha{height:9.016000pt;}
.h8{height:9.068000pt;}
.he{height:9.120000pt;}
.hd{height:9.172000pt;}
.h27{height:9.229333pt;}
.h12{height:9.281333pt;}
.h4{height:9.333333pt;}
.h10{height:10.078667pt;}
.h1{height:10.666667pt;}
.h20{height:12.802667pt;}
.h13{height:22.822266pt;}
.h16{height:25.128516pt;}
.h21{height:28.000000pt;}
.h11{height:28.364583pt;}
.hf{height:30.748047pt;}
.h9{height:32.099609pt;}
.h7{height:35.343359pt;}
.h2{height:35.403385pt;}
.h3{height:38.203516pt;}
.h18{height:47.552748pt;}
.h26{height:47.552772pt;}
.h1d{height:47.552778pt;}
.h24{height:49.858998pt;}
.h1b{height:49.859003pt;}
.h17{height:57.117407pt;}
.h23{height:57.117412pt;}
.h14{height:57.117420pt;}
.h1a{height:72.570583pt;}
.h19{height:74.876833pt;}
.h0{height:1122.666667pt;}
.w9{width:0.265333pt;}
.wa{width:1.333333pt;}
.w7{width:4.000000pt;}
.w4{width:5.333333pt;}
.wb{width:6.401333pt;}
.w5{width:6.666667pt;}
.w2{width:7.625333pt;}
.w3{width:14.292000pt;}
.w1{width:34.292000pt;}
.w6{width:136.802667pt;}
.w8{width:136.854667pt;}
.w0{width:794.666667pt;}
.xf{left:-1.030393pt;}
.x0{left:0.000000pt;}
.x2f{left:1.082037pt;}
.x1b{left:72.000000pt;}
.x1c{left:99.197333pt;}
.x1{left:119.041333pt;}
.x3{left:126.545567pt;}
.x8{left:129.321348pt;}
.x5{left:134.081785pt;}
.x7{left:136.175579pt;}
.x6{left:141.602688pt;}
.x4{left:149.123592pt;}
.x10{left:152.000000pt;}
.x2{left:153.311157pt;}
.x9{left:162.666667pt;}
.xc{left:164.000000pt;}
.x14{left:168.000000pt;}
.x11{left:170.666667pt;}
.xd{left:178.666667pt;}
.xa{left:181.333333pt;}
.x15{left:186.666667pt;}
.x12{left:188.000000pt;}
.x29{left:189.333333pt;}
.x24{left:190.239743pt;}
.x22{left:191.156088pt;}
.x32{left:192.825180pt;}
.xe{left:194.666667pt;}
.xb{left:202.666667pt;}
.x2a{left:204.000000pt;}
.x16{left:205.333333pt;}
.x13{left:206.666667pt;}
.x17{left:209.333333pt;}
.x25{left:211.723155pt;}
.x1d{left:213.008512pt;}
.x28{left:216.000000pt;}
.x1e{left:217.333333pt;}
.x2b{left:218.666667pt;}
.x18{left:224.000000pt;}
.x1f{left:234.666667pt;}
.x23{left:236.000000pt;}
.x19{left:237.333333pt;}
.x27{left:239.639255pt;}
.x1a{left:252.000000pt;}
.x20{left:257.333333pt;}
.x26{left:263.777737pt;}
.x21{left:278.666667pt;}
.x33{left:485.333333pt;}
.x34{left:492.779717pt;}
.x35{left:514.666667pt;}
.x2c{left:556.478667pt;}
.x2d{left:694.401333pt;}
.x2e{left:704.000000pt;}
.x30{left:707.965371pt;}
.x31{left:713.598667pt;}
}




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