
    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_af5d6e9eb0c7e3e392db05a2.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.057129;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_24a4b8dcf828511a69d1cf80.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.056641;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_a730ffba6f45a57ce269f2de.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.999000;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_9584e6f43049345c970454a1.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.712000;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_5bec17325fc5cbddc2841c42.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.001465;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_2964af6f2da2439222d6b9c9.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_3ff6706c3ebfff651cfa2655.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_7b1599d9a1b42b7fce7a9196.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.710449;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_ec32b7045d55d06dd4650b11.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_3ae48e43c88d1150790c15ae.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.962402;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_f849db0605bbc8f5f476fd76.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.958008;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_393b2195c85971af15bbb916.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.717285;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-5.546875px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:1.505919px;}
.v3{vertical-align:10.927734px;}
.v1{vertical-align:13.896486px;}
.ls22{letter-spacing:-2.196000px;}
.ls1a{letter-spacing:-1.756800px;}
.ls14{letter-spacing:-0.018000px;}
.ls7{letter-spacing:-0.012000px;}
.ls6{letter-spacing:-0.006000px;}
.ls1{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.000399px;}
.ls8{letter-spacing:0.000420px;}
.ls5{letter-spacing:0.000480px;}
.lsb{letter-spacing:0.000540px;}
.lsd{letter-spacing:0.000600px;}
.ls4{letter-spacing:0.000623px;}
.ls15{letter-spacing:0.006000px;}
.ls10{letter-spacing:0.007200px;}
.ls11{letter-spacing:0.007800px;}
.ls3{letter-spacing:0.009000px;}
.ls2{letter-spacing:0.009120px;}
.lsa{letter-spacing:0.009180px;}
.lse{letter-spacing:0.009600px;}
.lsf{letter-spacing:0.014760px;}
.ls12{letter-spacing:0.015000px;}
.ls9{letter-spacing:0.019499px;}
.ls1e{letter-spacing:0.966000px;}
.ls24{letter-spacing:1.068000px;}
.ls18{letter-spacing:1.086000px;}
.ls1b{letter-spacing:1.296000px;}
.ls16{letter-spacing:1.928400px;}
.ls19{letter-spacing:2.592000px;}
.ls1f{letter-spacing:3.648000px;}
.ls23{letter-spacing:6.006000px;}
.ls13{letter-spacing:7.604400px;}
.lsc{letter-spacing:8.359098px;}
.ls1c{letter-spacing:9.066000px;}
.ls1d{letter-spacing:12.559800px;}
.ls21{letter-spacing:14.769060px;}
.ls20{letter-spacing:14.772000px;}
.ls17{letter-spacing:194.213408px;}
.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;}
}
.ws11{word-spacing:-29.772000px;}
.wsf{word-spacing:-24.066000px;}
.ws12{word-spacing:-21.006000px;}
.wse{word-spacing:-16.296000px;}
.ws13{word-spacing:-16.068000px;}
.wsb{word-spacing:-15.350339px;}
.ws0{word-spacing:-15.000000px;}
.ws4{word-spacing:-14.994000px;}
.ws5{word-spacing:-14.988000px;}
.ws2{word-spacing:-13.500000px;}
.ws10{word-spacing:-12.804000px;}
.ws1{word-spacing:-10.000001px;}
.ws8{word-spacing:-1.807103px;}
.wsa{word-spacing:-1.756906px;}
.ws6{word-spacing:-0.060000px;}
.wsc{word-spacing:-0.030118px;}
.ws3{word-spacing:0.000000px;}
.ws9{word-spacing:0.020079px;}
.wsd{word-spacing:3.162431px;}
.ws7{word-spacing:18.894269px;}
._1a{margin-left:-14.834601px;}
._29{margin-left:-9.055200px;}
._1c{margin-left:-7.368000px;}
._2{margin-left:-6.207600px;}
._9{margin-left:-4.828800px;}
._d{margin-left:-3.282000px;}
._3{margin-left:-2.268000px;}
._0{margin-left:-1.062000px;}
._6{width:1.252800px;}
._5{width:3.242400px;}
._b{width:4.287600px;}
._4{width:5.342400px;}
._7{width:6.390600px;}
._8{width:7.860000px;}
._a{width:9.281340px;}
._14{width:10.554120px;}
._1{width:11.659200px;}
._10{width:13.392000px;}
._11{width:16.704000px;}
._19{width:17.820600px;}
._15{width:18.882000px;}
._1b{width:20.046000px;}
._13{width:21.192000px;}
._12{width:22.776000px;}
._17{width:24.618000px;}
._c{width:26.214000px;}
._f{width:27.384000px;}
._e{width:28.590000px;}
._18{width:30.196800px;}
._16{width:31.382400px;}
._23{width:33.230622px;}
._25{width:40.057457px;}
._1d{width:43.992926px;}
._22{width:47.185475px;}
._21{width:48.952421px;}
._27{width:50.960313px;}
._24{width:54.012310px;}
._1f{width:63.901181px;}
._20{width:65.678166px;}
._26{width:67.736256px;}
._28{width:71.198143px;}
._1e{width:77.906231px;}
.fc2{color:transparent;}
.fc1{color:rgb(227,142,51);}
.fc0{color:rgb(0,0,0);}
.fs9{font-size:20.078926px;}
.fs8{font-size:25.098657px;}
.fs7{font-size:30.118388px;}
.fs3{font-size:40.000002px;}
.fs4{font-size:48.000000px;}
.fs6{font-size:50.197314px;}
.fs1{font-size:54.000000px;}
.fs5{font-size:55.217045px;}
.fs0{font-size:60.000000px;}
.fs2{font-size:84.000000px;}
.y0{bottom:0.000000px;}
.y123{bottom:1.160100px;}
.y35{bottom:6.628410px;}
.y37{bottom:7.050000px;}
.ybb{bottom:8.285520px;}
.y5{bottom:8.285550px;}
.yc0{bottom:9.491550px;}
.y98{bottom:10.604850px;}
.yab{bottom:10.788450px;}
.y69{bottom:11.660160px;}
.ya1{bottom:11.827650px;}
.yde{bottom:12.343200px;}
.y85{bottom:13.897800px;}
.ya9{bottom:14.421300px;}
.y11c{bottom:14.660160px;}
.y31{bottom:16.160160px;}
.yd8{bottom:16.999395px;}
.yfa{bottom:20.660160px;}
.ya6{bottom:22.160160px;}
.yd2{bottom:22.651538px;}
.y100{bottom:22.940850px;}
.ycf{bottom:24.408444px;}
.yd1{bottom:25.399841px;}
.yba{bottom:27.785520px;}
.y121{bottom:27.785550px;}
.y83{bottom:28.407720px;}
.ybf{bottom:28.991550px;}
.y82{bottom:29.660160px;}
.y97{bottom:30.104850px;}
.y68{bottom:31.160160px;}
.ya0{bottom:31.327650px;}
.ydd{bottom:31.843200px;}
.ya8{bottom:33.921300px;}
.y11b{bottom:34.160160px;}
.yce{bottom:35.251064px;}
.y30{bottom:35.660160px;}
.yd7{bottom:36.499395px;}
.y34{bottom:37.905765px;}
.yf9{bottom:40.160160px;}
.ya5{bottom:41.660190px;}
.yff{bottom:42.440850px;}
.ycd{bottom:46.093684px;}
.yb9{bottom:47.285550px;}
.ybe{bottom:48.491550px;}
.y81{bottom:49.160190px;}
.y96{bottom:49.604850px;}
.y67{bottom:50.660190px;}
.y9f{bottom:50.827650px;}
.ydc{bottom:51.343200px;}
.y11a{bottom:53.660190px;}
.y8e{bottom:53.907690px;}
.y2f{bottom:55.160190px;}
.yd6{bottom:55.999320px;}
.ycc{bottom:56.936303px;}
.yf8{bottom:59.660190px;}
.y36{bottom:59.729520px;}
.y33{bottom:60.479235px;}
.ya4{bottom:61.160190px;}
.yb8{bottom:66.785550px;}
.ycb{bottom:67.778923px;}
.y80{bottom:68.660190px;}
.y95{bottom:69.104850px;}
.y66{bottom:70.160190px;}
.y9e{bottom:70.327650px;}
.ydb{bottom:70.843200px;}
.y119{bottom:73.160190px;}
.y2e{bottom:74.660190px;}
.yd5{bottom:75.499320px;}
.y3{bottom:76.536300px;}
.yf7{bottom:79.160190px;}
.yca{bottom:80.428646px;}
.ya3{bottom:80.660190px;}
.yb7{bottom:86.285550px;}
.y7f{bottom:88.160190px;}
.y94{bottom:88.604850px;}
.y65{bottom:89.660190px;}
.y9d{bottom:89.827650px;}
.yda{bottom:90.343200px;}
.y118{bottom:92.660190px;}
.y8d{bottom:92.907690px;}
.y2d{bottom:94.160190px;}
.yd4{bottom:94.999320px;}
.y2{bottom:96.036300px;}
.yf6{bottom:98.660190px;}
.ya2{bottom:100.160190px;}
.yd3{bottom:100.912380px;}
.yb6{bottom:105.785550px;}
.yac{bottom:107.560050px;}
.y7e{bottom:107.660190px;}
.y93{bottom:108.104850px;}
.y6{bottom:108.685410px;}
.y64{bottom:109.160190px;}
.y9c{bottom:109.327650px;}
.y117{bottom:112.160190px;}
.y8c{bottom:112.407690px;}
.y2c{bottom:113.660190px;}
.yf5{bottom:118.160190px;}
.ybc{bottom:125.285550px;}
.y7d{bottom:127.160190px;}
.y92{bottom:127.604850px;}
.y63{bottom:128.660190px;}
.y9b{bottom:128.827650px;}
.y116{bottom:131.660190px;}
.y8b{bottom:131.907690px;}
.y2b{bottom:133.160190px;}
.yf4{bottom:137.660190px;}
.yb5{bottom:144.785550px;}
.y7c{bottom:146.660190px;}
.y91{bottom:147.104850px;}
.y62{bottom:148.160190px;}
.y9a{bottom:148.327650px;}
.y115{bottom:151.160190px;}
.y8a{bottom:151.407690px;}
.y2a{bottom:152.660190px;}
.yf3{bottom:157.160190px;}
.y7b{bottom:166.160190px;}
.y90{bottom:166.604850px;}
.y61{bottom:167.660190px;}
.y114{bottom:170.660190px;}
.y89{bottom:170.907690px;}
.y29{bottom:172.160190px;}
.yf2{bottom:176.660190px;}
.y99{bottom:178.779450px;}
.yb4{bottom:183.785550px;}
.y7a{bottom:185.660190px;}
.y60{bottom:187.160190px;}
.y113{bottom:190.160190px;}
.y88{bottom:190.407690px;}
.y28{bottom:191.660190px;}
.yf1{bottom:196.160190px;}
.yd0{bottom:199.584520px;}
.yb3{bottom:203.285550px;}
.y79{bottom:205.160190px;}
.y5f{bottom:206.660190px;}
.y112{bottom:209.660190px;}
.y87{bottom:209.907690px;}
.y27{bottom:211.160190px;}
.yf0{bottom:215.660190px;}
.yb2{bottom:222.785550px;}
.y78{bottom:224.660190px;}
.y5e{bottom:226.160190px;}
.y111{bottom:229.160190px;}
.y86{bottom:229.407690px;}
.y26{bottom:230.660190px;}
.yef{bottom:235.160190px;}
.yd9{bottom:236.341650px;}
.yb1{bottom:242.285550px;}
.yc9{bottom:242.741661px;}
.y77{bottom:244.160190px;}
.y5d{bottom:245.660190px;}
.y110{bottom:248.660190px;}
.y25{bottom:250.160190px;}
.yfd{bottom:254.660190px;}
.yb0{bottom:261.785550px;}
.y76{bottom:263.660190px;}
.y5c{bottom:265.160190px;}
.y10f{bottom:268.160190px;}
.y32{bottom:269.660190px;}
.yee{bottom:274.160190px;}
.yaf{bottom:281.285550px;}
.y75{bottom:283.160190px;}
.y5b{bottom:284.660190px;}
.y10e{bottom:287.660190px;}
.y24{bottom:289.160190px;}
.yed{bottom:293.660190px;}
.yc8{bottom:295.084910px;}
.yc4{bottom:296.465336px;}
.yae{bottom:300.785550px;}
.y74{bottom:302.660190px;}
.y5a{bottom:304.160190px;}
.y10d{bottom:307.160190px;}
.y124{bottom:308.660190px;}
.yfc{bottom:313.160190px;}
.yad{bottom:320.285550px;}
.y73{bottom:322.160190px;}
.y59{bottom:323.660190px;}
.y10c{bottom:326.660190px;}
.yec{bottom:332.660190px;}
.y72{bottom:341.660190px;}
.y58{bottom:343.160190px;}
.y129{bottom:343.828140px;}
.y11f{bottom:346.160190px;}
.yeb{bottom:352.160190px;}
.y128{bottom:360.328140px;}
.y71{bottom:361.160190px;}
.y57{bottom:362.660190px;}
.y10b{bottom:365.660190px;}
.y23{bottom:366.744090px;}
.yea{bottom:371.660190px;}
.y127{bottom:376.828140px;}
.y70{bottom:380.660190px;}
.y56{bottom:382.160190px;}
.y22{bottom:383.244090px;}
.y11e{bottom:385.160190px;}
.ye9{bottom:391.160190px;}
.y126{bottom:393.328140px;}
.yaa{bottom:396.142800px;}
.y21{bottom:399.744090px;}
.y6f{bottom:400.160190px;}
.y55{bottom:401.660190px;}
.y10a{bottom:404.660190px;}
.y125{bottom:409.828140px;}
.ye8{bottom:410.660190px;}
.y8f{bottom:412.037700px;}
.y20{bottom:416.244090px;}
.y6e{bottom:419.660190px;}
.y54{bottom:421.160190px;}
.y11d{bottom:424.160190px;}
.ye7{bottom:430.160190px;}
.y1f{bottom:432.744090px;}
.y6d{bottom:439.160190px;}
.y53{bottom:440.660190px;}
.y109{bottom:443.660190px;}
.y1e{bottom:449.244090px;}
.ye6{bottom:449.660190px;}
.y6c{bottom:458.660190px;}
.y52{bottom:460.160190px;}
.ybd{bottom:461.223000px;}
.y108{bottom:463.160190px;}
.y1d{bottom:465.744090px;}
.ye5{bottom:469.160190px;}
.yc3{bottom:470.650016px;}
.yc5{bottom:471.026496px;}
.yc7{bottom:472.632810px;}
.y6b{bottom:478.160190px;}
.y51{bottom:479.660190px;}
.y1c{bottom:482.244090px;}
.y107{bottom:482.660190px;}
.ye4{bottom:488.660190px;}
.y6a{bottom:497.660190px;}
.y1b{bottom:498.744090px;}
.y50{bottom:499.160190px;}
.y106{bottom:502.160190px;}
.ye3{bottom:508.160190px;}
.yc2{bottom:513.807157px;}
.yc6{bottom:515.237780px;}
.y1a{bottom:515.244090px;}
.y4f{bottom:518.660190px;}
.y105{bottom:521.660190px;}
.ye2{bottom:527.660190px;}
.y19{bottom:531.744090px;}
.y4e{bottom:538.160190px;}
.y104{bottom:541.160190px;}
.ye1{bottom:547.160190px;}
.y18{bottom:548.244090px;}
.yc1{bottom:549.054450px;}
.y4d{bottom:557.660190px;}
.y103{bottom:560.660190px;}
.y17{bottom:564.744090px;}
.ye0{bottom:566.660190px;}
.y4c{bottom:577.160190px;}
.y102{bottom:580.160190px;}
.y16{bottom:581.244090px;}
.yfb{bottom:586.160190px;}
.y4b{bottom:596.660190px;}
.y15{bottom:597.744090px;}
.y101{bottom:599.660190px;}
.ydf{bottom:605.660190px;}
.y14{bottom:614.244090px;}
.y4a{bottom:616.160190px;}
.y13{bottom:630.744090px;}
.y49{bottom:635.660190px;}
.y12{bottom:647.244090px;}
.y48{bottom:655.160190px;}
.y11{bottom:663.744090px;}
.y47{bottom:674.660190px;}
.y10{bottom:680.244090px;}
.y46{bottom:694.160190px;}
.yf{bottom:696.744090px;}
.y45{bottom:713.660190px;}
.y44{bottom:733.160190px;}
.y120{bottom:739.899300px;}
.y122{bottom:747.024750px;}
.yfe{bottom:747.744000px;}
.y43{bottom:752.660190px;}
.ye{bottom:753.328140px;}
.yd{bottom:769.828140px;}
.y42{bottom:772.160190px;}
.y84{bottom:774.854550px;}
.yc{bottom:786.328140px;}
.y41{bottom:791.660190px;}
.yb{bottom:802.828140px;}
.y40{bottom:811.160190px;}
.y3f{bottom:830.660190px;}
.ya{bottom:839.660190px;}
.y3e{bottom:850.160190px;}
.y3d{bottom:869.660190px;}
.y9{bottom:880.324290px;}
.y3c{bottom:889.160190px;}
.y3b{bottom:908.660190px;}
.y8{bottom:908.824290px;}
.y3a{bottom:928.160190px;}
.y39{bottom:947.660190px;}
.y38{bottom:967.160190px;}
.y7{bottom:969.253440px;}
.ya7{bottom:1017.924300px;}
.y1{bottom:1078.809300px;}
.y4{bottom:1147.060050px;}
.h1f{height:14.794482px;}
.h1e{height:18.493102px;}
.hd{height:22.050000px;}
.h1d{height:22.191723px;}
.hf{height:23.100585px;}
.hc{height:31.992188px;}
.h17{height:32.128305px;}
.he{height:32.976562px;}
.h12{height:35.237685px;}
.h1c{height:36.986205px;}
.h8{height:37.429688px;}
.h1b{height:40.684825px;}
.h9{height:42.108398px;}
.h6{height:42.444000px;}
.ha{height:44.326172px;}
.h3{height:46.787109px;}
.hb{height:51.622560px;}
.h16{height:55.261125px;}
.h24{height:60.000000px;}
.h11{height:60.683709px;}
.h7{height:62.056641px;}
.h4{height:66.750735px;}
.h19{height:69.831435px;}
.h22{height:71.280660px;}
.h23{height:73.125360px;}
.h21{height:111.682995px;}
.h20{height:116.339235px;}
.h2{height:135.001470px;}
.h14{height:169.667400px;}
.h13{height:187.944750px;}
.h1a{height:542.131050px;}
.h15{height:982.500000px;}
.h18{height:983.625300px;}
.h5{height:986.431800px;}
.h10{height:986.625300px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w6{width:21.750000px;}
.w3{width:25.875735px;}
.w7{width:209.774400px;}
.w2{width:310.366800px;}
.wa{width:348.664050px;}
.w5{width:432.526650px;}
.wb{width:719.092050px;}
.w9{width:722.841300px;}
.w8{width:731.092050px;}
.w4{width:734.392350px;}
.wc{width:741.322050px;}
.w0{width:892.920000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xb{left:3.529905px;}
.x4{left:6.750300px;}
.x2{left:12.376095px;}
.x23{left:20.781688px;}
.x25{left:22.400551px;}
.x12{left:25.385205px;}
.xe{left:28.570680px;}
.x7{left:30.220830px;}
.x24{left:32.076084px;}
.x6{left:35.539290px;}
.xd{left:37.800300px;}
.x19{left:59.207732px;}
.x17{left:62.772825px;}
.x1{left:72.663270px;}
.x16{left:76.655895px;}
.x5{left:79.263855px;}
.xa{left:81.509460px;}
.x14{left:85.039365px;}
.x28{left:86.914005px;}
.x18{left:149.249164px;}
.x15{left:180.552735px;}
.x1a{left:188.390519px;}
.x1c{left:201.228482px;}
.x1b{left:329.959494px;}
.x1d{left:369.100850px;}
.xf{left:383.617095px;}
.x8{left:385.267245px;}
.x11{left:404.876940px;}
.x10{left:408.062295px;}
.x9{left:409.712445px;}
.x1f{left:420.628393px;}
.x27{left:436.710000px;}
.x3{left:439.709700px;}
.x13{left:488.436345px;}
.x1e{left:510.669825px;}
.x20{left:549.359404px;}
.x26{left:561.720493px;}
.xc{left:601.406550px;}
.x22{left:622.145510px;}
.x21{left:691.380155px;}
@media print{
.v2{vertical-align:-4.930556pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:1.338595pt;}
.v3{vertical-align:9.713541pt;}
.v1{vertical-align:12.352432pt;}
.ls22{letter-spacing:-1.952000pt;}
.ls1a{letter-spacing:-1.561600pt;}
.ls14{letter-spacing:-0.016000pt;}
.ls7{letter-spacing:-0.010667pt;}
.ls6{letter-spacing:-0.005333pt;}
.ls1{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.000355pt;}
.ls8{letter-spacing:0.000373pt;}
.ls5{letter-spacing:0.000427pt;}
.lsb{letter-spacing:0.000480pt;}
.lsd{letter-spacing:0.000533pt;}
.ls4{letter-spacing:0.000554pt;}
.ls15{letter-spacing:0.005333pt;}
.ls10{letter-spacing:0.006400pt;}
.ls11{letter-spacing:0.006933pt;}
.ls3{letter-spacing:0.008000pt;}
.ls2{letter-spacing:0.008107pt;}
.lsa{letter-spacing:0.008160pt;}
.lse{letter-spacing:0.008533pt;}
.lsf{letter-spacing:0.013120pt;}
.ls12{letter-spacing:0.013333pt;}
.ls9{letter-spacing:0.017332pt;}
.ls1e{letter-spacing:0.858667pt;}
.ls24{letter-spacing:0.949333pt;}
.ls18{letter-spacing:0.965333pt;}
.ls1b{letter-spacing:1.152000pt;}
.ls16{letter-spacing:1.714133pt;}
.ls19{letter-spacing:2.304000pt;}
.ls1f{letter-spacing:3.242667pt;}
.ls23{letter-spacing:5.338667pt;}
.ls13{letter-spacing:6.759467pt;}
.lsc{letter-spacing:7.430309pt;}
.ls1c{letter-spacing:8.058667pt;}
.ls1d{letter-spacing:11.164267pt;}
.ls21{letter-spacing:13.128053pt;}
.ls20{letter-spacing:13.130667pt;}
.ls17{letter-spacing:172.634140pt;}
.ws11{word-spacing:-26.464000pt;}
.wsf{word-spacing:-21.392000pt;}
.ws12{word-spacing:-18.672000pt;}
.wse{word-spacing:-14.485333pt;}
.ws13{word-spacing:-14.282667pt;}
.wsb{word-spacing:-13.644745pt;}
.ws0{word-spacing:-13.333333pt;}
.ws4{word-spacing:-13.328000pt;}
.ws5{word-spacing:-13.322667pt;}
.ws2{word-spacing:-12.000000pt;}
.ws10{word-spacing:-11.381333pt;}
.ws1{word-spacing:-8.888889pt;}
.ws8{word-spacing:-1.606314pt;}
.wsa{word-spacing:-1.561694pt;}
.ws6{word-spacing:-0.053333pt;}
.wsc{word-spacing:-0.026772pt;}
.ws3{word-spacing:0.000000pt;}
.ws9{word-spacing:0.017848pt;}
.wsd{word-spacing:2.811050pt;}
.ws7{word-spacing:16.794906pt;}
._1a{margin-left:-13.186312pt;}
._29{margin-left:-8.049067pt;}
._1c{margin-left:-6.549333pt;}
._2{margin-left:-5.517867pt;}
._9{margin-left:-4.292267pt;}
._d{margin-left:-2.917333pt;}
._3{margin-left:-2.016000pt;}
._0{margin-left:-0.944000pt;}
._6{width:1.113600pt;}
._5{width:2.882133pt;}
._b{width:3.811200pt;}
._4{width:4.748800pt;}
._7{width:5.680533pt;}
._8{width:6.986667pt;}
._a{width:8.250080pt;}
._14{width:9.381440pt;}
._1{width:10.363733pt;}
._10{width:11.904000pt;}
._11{width:14.848000pt;}
._19{width:15.840533pt;}
._15{width:16.784000pt;}
._1b{width:17.818667pt;}
._13{width:18.837333pt;}
._12{width:20.245333pt;}
._17{width:21.882667pt;}
._c{width:23.301333pt;}
._f{width:24.341333pt;}
._e{width:25.413333pt;}
._18{width:26.841600pt;}
._16{width:27.895467pt;}
._23{width:29.538331pt;}
._25{width:35.606628pt;}
._1d{width:39.104823pt;}
._22{width:41.942645pt;}
._21{width:43.513263pt;}
._27{width:45.298056pt;}
._24{width:48.010942pt;}
._1f{width:56.801050pt;}
._20{width:58.380592pt;}
._26{width:60.210005pt;}
._28{width:63.287239pt;}
._1e{width:69.249983pt;}
.fs9{font-size:17.847934pt;}
.fs8{font-size:22.309917pt;}
.fs7{font-size:26.771901pt;}
.fs3{font-size:35.555557pt;}
.fs4{font-size:42.666667pt;}
.fs6{font-size:44.619835pt;}
.fs1{font-size:48.000000pt;}
.fs5{font-size:49.081818pt;}
.fs0{font-size:53.333333pt;}
.fs2{font-size:74.666667pt;}
.y0{bottom:0.000000pt;}
.y123{bottom:1.031200pt;}
.y35{bottom:5.891920pt;}
.y37{bottom:6.266667pt;}
.ybb{bottom:7.364907pt;}
.y5{bottom:7.364933pt;}
.yc0{bottom:8.436933pt;}
.y98{bottom:9.426533pt;}
.yab{bottom:9.589733pt;}
.y69{bottom:10.364587pt;}
.ya1{bottom:10.513467pt;}
.yde{bottom:10.971733pt;}
.y85{bottom:12.353600pt;}
.ya9{bottom:12.818933pt;}
.y11c{bottom:13.031253pt;}
.y31{bottom:14.364587pt;}
.yd8{bottom:15.110573pt;}
.yfa{bottom:18.364587pt;}
.ya6{bottom:19.697920pt;}
.yd2{bottom:20.134700pt;}
.y100{bottom:20.391867pt;}
.ycf{bottom:21.696395pt;}
.yd1{bottom:22.577636pt;}
.yba{bottom:24.698240pt;}
.y121{bottom:24.698267pt;}
.y83{bottom:25.251307pt;}
.ybf{bottom:25.770267pt;}
.y82{bottom:26.364587pt;}
.y97{bottom:26.759867pt;}
.y68{bottom:27.697920pt;}
.ya0{bottom:27.846800pt;}
.ydd{bottom:28.305067pt;}
.ya8{bottom:30.152267pt;}
.y11b{bottom:30.364587pt;}
.yce{bottom:31.334279pt;}
.y30{bottom:31.697920pt;}
.yd7{bottom:32.443907pt;}
.y34{bottom:33.694013pt;}
.yf9{bottom:35.697920pt;}
.ya5{bottom:37.031280pt;}
.yff{bottom:37.725200pt;}
.ycd{bottom:40.972163pt;}
.yb9{bottom:42.031600pt;}
.ybe{bottom:43.103600pt;}
.y81{bottom:43.697947pt;}
.y96{bottom:44.093200pt;}
.y67{bottom:45.031280pt;}
.y9f{bottom:45.180133pt;}
.ydc{bottom:45.638400pt;}
.y11a{bottom:47.697947pt;}
.y8e{bottom:47.917947pt;}
.y2f{bottom:49.031280pt;}
.yd6{bottom:49.777173pt;}
.ycc{bottom:50.610047pt;}
.yf8{bottom:53.031280pt;}
.y36{bottom:53.092907pt;}
.y33{bottom:53.759320pt;}
.ya4{bottom:54.364613pt;}
.yb8{bottom:59.364933pt;}
.ycb{bottom:60.247932pt;}
.y80{bottom:61.031280pt;}
.y95{bottom:61.426533pt;}
.y66{bottom:62.364613pt;}
.y9e{bottom:62.513467pt;}
.ydb{bottom:62.971733pt;}
.y119{bottom:65.031280pt;}
.y2e{bottom:66.364613pt;}
.yd5{bottom:67.110507pt;}
.y3{bottom:68.032267pt;}
.yf7{bottom:70.364613pt;}
.yca{bottom:71.492130pt;}
.ya3{bottom:71.697947pt;}
.yb7{bottom:76.698267pt;}
.y7f{bottom:78.364613pt;}
.y94{bottom:78.759867pt;}
.y65{bottom:79.697947pt;}
.y9d{bottom:79.846800pt;}
.yda{bottom:80.305067pt;}
.y118{bottom:82.364613pt;}
.y8d{bottom:82.584613pt;}
.y2d{bottom:83.697947pt;}
.yd4{bottom:84.443840pt;}
.y2{bottom:85.365600pt;}
.yf6{bottom:87.697947pt;}
.ya2{bottom:89.031280pt;}
.yd3{bottom:89.699893pt;}
.yb6{bottom:94.031600pt;}
.yac{bottom:95.608933pt;}
.y7e{bottom:95.697947pt;}
.y93{bottom:96.093200pt;}
.y6{bottom:96.609253pt;}
.y64{bottom:97.031280pt;}
.y9c{bottom:97.180133pt;}
.y117{bottom:99.697947pt;}
.y8c{bottom:99.917947pt;}
.y2c{bottom:101.031280pt;}
.yf5{bottom:105.031280pt;}
.ybc{bottom:111.364933pt;}
.y7d{bottom:113.031280pt;}
.y92{bottom:113.426533pt;}
.y63{bottom:114.364613pt;}
.y9b{bottom:114.513467pt;}
.y116{bottom:117.031280pt;}
.y8b{bottom:117.251280pt;}
.y2b{bottom:118.364613pt;}
.yf4{bottom:122.364613pt;}
.yb5{bottom:128.698267pt;}
.y7c{bottom:130.364613pt;}
.y91{bottom:130.759867pt;}
.y62{bottom:131.697947pt;}
.y9a{bottom:131.846800pt;}
.y115{bottom:134.364613pt;}
.y8a{bottom:134.584613pt;}
.y2a{bottom:135.697947pt;}
.yf3{bottom:139.697947pt;}
.y7b{bottom:147.697947pt;}
.y90{bottom:148.093200pt;}
.y61{bottom:149.031280pt;}
.y114{bottom:151.697947pt;}
.y89{bottom:151.917947pt;}
.y29{bottom:153.031280pt;}
.yf2{bottom:157.031280pt;}
.y99{bottom:158.915067pt;}
.yb4{bottom:163.364933pt;}
.y7a{bottom:165.031280pt;}
.y60{bottom:166.364613pt;}
.y113{bottom:169.031280pt;}
.y88{bottom:169.251280pt;}
.y28{bottom:170.364613pt;}
.yf1{bottom:174.364613pt;}
.yd0{bottom:177.408463pt;}
.yb3{bottom:180.698267pt;}
.y79{bottom:182.364613pt;}
.y5f{bottom:183.697947pt;}
.y112{bottom:186.364613pt;}
.y87{bottom:186.584613pt;}
.y27{bottom:187.697947pt;}
.yf0{bottom:191.697947pt;}
.yb2{bottom:198.031600pt;}
.y78{bottom:199.697947pt;}
.y5e{bottom:201.031280pt;}
.y111{bottom:203.697947pt;}
.y86{bottom:203.917947pt;}
.y26{bottom:205.031280pt;}
.yef{bottom:209.031280pt;}
.yd9{bottom:210.081467pt;}
.yb1{bottom:215.364933pt;}
.yc9{bottom:215.770365pt;}
.y77{bottom:217.031280pt;}
.y5d{bottom:218.364613pt;}
.y110{bottom:221.031280pt;}
.y25{bottom:222.364613pt;}
.yfd{bottom:226.364613pt;}
.yb0{bottom:232.698267pt;}
.y76{bottom:234.364613pt;}
.y5c{bottom:235.697947pt;}
.y10f{bottom:238.364613pt;}
.y32{bottom:239.697947pt;}
.yee{bottom:243.697947pt;}
.yaf{bottom:250.031600pt;}
.y75{bottom:251.697947pt;}
.y5b{bottom:253.031280pt;}
.y10e{bottom:255.697947pt;}
.y24{bottom:257.031280pt;}
.yed{bottom:261.031280pt;}
.yc8{bottom:262.297698pt;}
.yc4{bottom:263.524744pt;}
.yae{bottom:267.364933pt;}
.y74{bottom:269.031280pt;}
.y5a{bottom:270.364613pt;}
.y10d{bottom:273.031280pt;}
.y124{bottom:274.364613pt;}
.yfc{bottom:278.364613pt;}
.yad{bottom:284.698267pt;}
.y73{bottom:286.364613pt;}
.y59{bottom:287.697947pt;}
.y10c{bottom:290.364613pt;}
.yec{bottom:295.697947pt;}
.y72{bottom:303.697947pt;}
.y58{bottom:305.031280pt;}
.y129{bottom:305.625013pt;}
.y11f{bottom:307.697947pt;}
.yeb{bottom:313.031280pt;}
.y128{bottom:320.291680pt;}
.y71{bottom:321.031280pt;}
.y57{bottom:322.364613pt;}
.y10b{bottom:325.031280pt;}
.y23{bottom:325.994747pt;}
.yea{bottom:330.364613pt;}
.y127{bottom:334.958347pt;}
.y70{bottom:338.364613pt;}
.y56{bottom:339.697947pt;}
.y22{bottom:340.661413pt;}
.y11e{bottom:342.364613pt;}
.ye9{bottom:347.697947pt;}
.y126{bottom:349.625013pt;}
.yaa{bottom:352.126933pt;}
.y21{bottom:355.328080pt;}
.y6f{bottom:355.697947pt;}
.y55{bottom:357.031280pt;}
.y10a{bottom:359.697947pt;}
.y125{bottom:364.291680pt;}
.ye8{bottom:365.031280pt;}
.y8f{bottom:366.255733pt;}
.y20{bottom:369.994747pt;}
.y6e{bottom:373.031280pt;}
.y54{bottom:374.364613pt;}
.y11d{bottom:377.031280pt;}
.ye7{bottom:382.364613pt;}
.y1f{bottom:384.661413pt;}
.y6d{bottom:390.364613pt;}
.y53{bottom:391.697947pt;}
.y109{bottom:394.364613pt;}
.y1e{bottom:399.328080pt;}
.ye6{bottom:399.697947pt;}
.y6c{bottom:407.697947pt;}
.y52{bottom:409.031280pt;}
.ybd{bottom:409.976000pt;}
.y108{bottom:411.697947pt;}
.y1d{bottom:413.994747pt;}
.ye5{bottom:417.031280pt;}
.yc3{bottom:418.355570pt;}
.yc5{bottom:418.690219pt;}
.yc7{bottom:420.118053pt;}
.y6b{bottom:425.031280pt;}
.y51{bottom:426.364613pt;}
.y1c{bottom:428.661413pt;}
.y107{bottom:429.031280pt;}
.ye4{bottom:434.364613pt;}
.y6a{bottom:442.364613pt;}
.y1b{bottom:443.328080pt;}
.y50{bottom:443.697947pt;}
.y106{bottom:446.364613pt;}
.ye3{bottom:451.697947pt;}
.yc2{bottom:456.717473pt;}
.yc6{bottom:457.989138pt;}
.y1a{bottom:457.994747pt;}
.y4f{bottom:461.031280pt;}
.y105{bottom:463.697947pt;}
.ye2{bottom:469.031280pt;}
.y19{bottom:472.661413pt;}
.y4e{bottom:478.364613pt;}
.y104{bottom:481.031280pt;}
.ye1{bottom:486.364613pt;}
.y18{bottom:487.328080pt;}
.yc1{bottom:488.048400pt;}
.y4d{bottom:495.697947pt;}
.y103{bottom:498.364613pt;}
.y17{bottom:501.994747pt;}
.ye0{bottom:503.697947pt;}
.y4c{bottom:513.031280pt;}
.y102{bottom:515.697947pt;}
.y16{bottom:516.661413pt;}
.yfb{bottom:521.031280pt;}
.y4b{bottom:530.364613pt;}
.y15{bottom:531.328080pt;}
.y101{bottom:533.031280pt;}
.ydf{bottom:538.364613pt;}
.y14{bottom:545.994747pt;}
.y4a{bottom:547.697947pt;}
.y13{bottom:560.661413pt;}
.y49{bottom:565.031280pt;}
.y12{bottom:575.328080pt;}
.y48{bottom:582.364613pt;}
.y11{bottom:589.994747pt;}
.y47{bottom:599.697947pt;}
.y10{bottom:604.661413pt;}
.y46{bottom:617.031280pt;}
.yf{bottom:619.328080pt;}
.y45{bottom:634.364613pt;}
.y44{bottom:651.697947pt;}
.y120{bottom:657.688267pt;}
.y122{bottom:664.022000pt;}
.yfe{bottom:664.661333pt;}
.y43{bottom:669.031280pt;}
.ye{bottom:669.625013pt;}
.yd{bottom:684.291680pt;}
.y42{bottom:686.364613pt;}
.y84{bottom:688.759600pt;}
.yc{bottom:698.958347pt;}
.y41{bottom:703.697947pt;}
.yb{bottom:713.625013pt;}
.y40{bottom:721.031280pt;}
.y3f{bottom:738.364613pt;}
.ya{bottom:746.364613pt;}
.y3e{bottom:755.697947pt;}
.y3d{bottom:773.031280pt;}
.y9{bottom:782.510480pt;}
.y3c{bottom:790.364613pt;}
.y3b{bottom:807.697947pt;}
.y8{bottom:807.843813pt;}
.y3a{bottom:825.031280pt;}
.y39{bottom:842.364613pt;}
.y38{bottom:859.697947pt;}
.y7{bottom:861.558613pt;}
.ya7{bottom:904.821600pt;}
.y1{bottom:958.941600pt;}
.y4{bottom:1019.608933pt;}
.h1f{height:13.150650pt;}
.h1e{height:16.438313pt;}
.hd{height:19.600000pt;}
.h1d{height:19.725976pt;}
.hf{height:20.533853pt;}
.hc{height:28.437500pt;}
.h17{height:28.558493pt;}
.he{height:29.312500pt;}
.h12{height:31.322387pt;}
.h1c{height:32.876626pt;}
.h8{height:33.270833pt;}
.h1b{height:36.164289pt;}
.h9{height:37.429688pt;}
.h6{height:37.728000pt;}
.ha{height:39.401042pt;}
.h3{height:41.588542pt;}
.hb{height:45.886720pt;}
.h16{height:49.121000pt;}
.h24{height:53.333333pt;}
.h11{height:53.941075pt;}
.h7{height:55.161458pt;}
.h4{height:59.333987pt;}
.h19{height:62.072387pt;}
.h22{height:63.360587pt;}
.h23{height:65.000320pt;}
.h21{height:99.273773pt;}
.h20{height:103.412653pt;}
.h2{height:120.001307pt;}
.h14{height:150.815467pt;}
.h13{height:167.062000pt;}
.h1a{height:481.894267pt;}
.h15{height:873.333333pt;}
.h18{height:874.333600pt;}
.h5{height:876.828267pt;}
.h10{height:877.000267pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w6{width:19.333333pt;}
.w3{width:23.000653pt;}
.w7{width:186.466133pt;}
.w2{width:275.881600pt;}
.wa{width:309.923600pt;}
.w5{width:384.468133pt;}
.wb{width:639.192933pt;}
.w9{width:642.525600pt;}
.w8{width:649.859600pt;}
.w4{width:652.793200pt;}
.wc{width:658.952933pt;}
.w0{width:793.706667pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xb{left:3.137693pt;}
.x4{left:6.000267pt;}
.x2{left:11.000973pt;}
.x23{left:18.472612pt;}
.x25{left:19.911601pt;}
.x12{left:22.564627pt;}
.xe{left:25.396160pt;}
.x7{left:26.862960pt;}
.x24{left:28.512074pt;}
.x6{left:31.590480pt;}
.xd{left:33.600267pt;}
.x19{left:52.629095pt;}
.x17{left:55.798067pt;}
.x1{left:64.589573pt;}
.x16{left:68.138573pt;}
.x5{left:70.456760pt;}
.xa{left:72.452853pt;}
.x14{left:75.590547pt;}
.x28{left:77.256893pt;}
.x18{left:132.665923pt;}
.x15{left:160.491320pt;}
.x1a{left:167.458240pt;}
.x1c{left:178.869762pt;}
.x1b{left:293.297328pt;}
.x1d{left:328.089644pt;}
.xf{left:340.992973pt;}
.x8{left:342.459773pt;}
.x11{left:359.890613pt;}
.x10{left:362.722040pt;}
.x9{left:364.188840pt;}
.x1f{left:373.891905pt;}
.x27{left:388.186667pt;}
.x3{left:390.853067pt;}
.x13{left:434.165640pt;}
.x1e{left:453.928733pt;}
.x20{left:488.319471pt;}
.x26{left:499.307105pt;}
.xc{left:534.583600pt;}
.x22{left:553.018231pt;}
.x21{left:614.560138pt;}
}




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