
    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_f94c964fceea1466eea26df3.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.910645;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_f4fc7b48dd2c56d9d868478a.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.895996;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_7690bd8b5e107125263293f8.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.857910;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_98b92485c6089005c26a8e97.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.893555;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_6a10144512900774a89416ff.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.753418;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_fd79817d48b284fcab0952bb.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.766113;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_b56e1176a9b83bafe9cb0d53.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.686523;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_5d618edaeacfc5d3e421bf31.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.861816;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_bd8c9eca6425744f22c524cb.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.938477;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_51cdf800c9ae6aefb2051a1c.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.938965;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_745d3dc27f06eeec92fe5b70.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.866699;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_248a4b258a74096e5c59affa.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.938477;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_80b30a26f1148abd1492e189.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.910156;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;}
.m6{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.249517,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249517,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249517,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.249518,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249518,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249518,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.249519,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249519,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249519,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.249523,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249523,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249523,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.249524,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249524,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249524,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.249525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249525,0.000000,0.000000,0.250000,0,0);}
.v1{vertical-align:-10.799996px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:1.439999px;}
.ls3{letter-spacing:0.000000px;}
.ls8{letter-spacing:0.062743px;}
.lsc{letter-spacing:0.068862px;}
.ls7{letter-spacing:0.274574px;}
.ls1{letter-spacing:0.286367px;}
.ls4{letter-spacing:0.319697px;}
.ls12{letter-spacing:0.441128px;}
.ls2{letter-spacing:0.452270px;}
.lsa{letter-spacing:1.762439px;}
.ls11{letter-spacing:32.644547px;}
.lsb{letter-spacing:34.087306px;}
.ls6{letter-spacing:65.243669px;}
.ls5{letter-spacing:94.098771px;}
.ls10{letter-spacing:234.482306px;}
.ls9{letter-spacing:281.656687px;}
.lse{letter-spacing:295.078082px;}
.lsf{letter-spacing:308.783876px;}
.lsd{letter-spacing:361.444655px;}
.ls0{letter-spacing:1936.497016px;}
.sc_{text-shadow:none;}
.sc2{text-shadow:-0.015em 0 rgb(227,108,10),0 0.015em rgb(227,108,10),0.015em 0 rgb(227,108,10),0 -0.015em  rgb(227,108,10);}
.sc1{text-shadow:-0.015em 0 rgb(0,176,80),0 0.015em rgb(0,176,80),0.015em 0 rgb(0,176,80),0 -0.015em  rgb(0,176,80);}
.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;}
.sc2{-webkit-text-stroke:0.015em rgb(227,108,10);text-shadow:none;}
.sc1{-webkit-text-stroke:0.015em rgb(0,176,80);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws6{word-spacing:-32.462730px;}
.ws1{word-spacing:-23.939990px;}
.wsa{word-spacing:-21.501120px;}
.ws9{word-spacing:-18.068855px;}
.ws7{word-spacing:-17.999993px;}
.ws8{word-spacing:-16.613273px;}
.ws0{word-spacing:-16.558360px;}
.ws4{word-spacing:-16.271993px;}
.ws5{word-spacing:-15.011994px;}
.ws2{word-spacing:-13.505755px;}
.ws3{word-spacing:0.000000px;}
._4{margin-left:-10.773560px;}
._2{margin-left:-8.590020px;}
._1c{margin-left:-6.184106px;}
._1{margin-left:-4.191630px;}
._5{margin-left:-3.123499px;}
._3{margin-left:-1.237776px;}
._0{width:1.152887px;}
._c{width:2.380735px;}
._b{width:4.294895px;}
._8{width:6.279558px;}
._f{width:7.799221px;}
._1b{width:8.965628px;}
._12{width:10.205828px;}
._18{width:11.727375px;}
._19{width:12.886226px;}
._d{width:14.351560px;}
._13{width:15.404381px;}
._9{width:16.759409px;}
._16{width:17.948649px;}
._a{width:19.186606px;}
._15{width:20.416011px;}
._14{width:21.723110px;}
._6{width:22.915215px;}
._7{width:23.995185px;}
._1a{width:25.008999px;}
._e{width:26.065742px;}
._10{width:27.317147px;}
._11{width:29.045772px;}
._2f{width:30.955556px;}
._2e{width:32.179639px;}
._17{width:66.121551px;}
._26{width:83.061789px;}
._1e{width:110.324698px;}
._25{width:131.093623px;}
._1f{width:155.199280px;}
._29{width:222.126576px;}
._21{width:238.157647px;}
._2c{width:244.926121px;}
._22{width:246.651351px;}
._23{width:288.654107px;}
._24{width:297.244651px;}
._20{width:337.055864px;}
._28{width:360.137614px;}
._2d{width:373.055353px;}
._2b{width:384.126774px;}
._1d{width:404.143997px;}
._27{width:613.231528px;}
._2a{width:687.318999px;}
.fc8{color:rgb(227,108,10);}
.fcb{color:rgb(0,101,204);}
.fc6{color:rgb(0,0,255);}
.fc5{color:rgb(0,32,96);}
.fc4{color:rgb(192,0,0);}
.fc9{color:rgb(44,62,80);}
.fc3{color:rgb(31,73,124);}
.fca{color:rgb(51,51,51);}
.fc7{color:rgb(0,176,80);}
.fc2{color:rgb(255,255,255);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(64,64,64);}
.fs7{font-size:2.879999px;}
.fs3{font-size:48.239981px;}
.fs2{font-size:53.999978px;}
.fs0{font-size:59.759976px;}
.fs1{font-size:71.999971px;}
.fs6{font-size:84.239966px;}
.fs5{font-size:95.759962px;}
.fs4{font-size:107.999957px;}
.y5{bottom:-16.199994px;}
.yf5{bottom:-0.000186px;}
.y0{bottom:0.000000px;}
.y26{bottom:2.699611px;}
.y108{bottom:3.959597px;}
.yd8{bottom:3.959683px;}
.ydc{bottom:3.959691px;}
.yda{bottom:3.959698px;}
.y115{bottom:3.959720px;}
.yfb{bottom:3.959865px;}
.y10f{bottom:4.319672px;}
.ye1{bottom:4.319714px;}
.ye4{bottom:4.319731px;}
.ye7{bottom:4.319747px;}
.yea{bottom:4.319768px;}
.y11b{bottom:4.319778px;}
.yef{bottom:4.319789px;}
.yf2{bottom:4.319805px;}
.yfe{bottom:4.319879px;}
.y103{bottom:4.319923px;}
.ya{bottom:4.859980px;}
.yb{bottom:27.899989px;}
.y9{bottom:44.280000px;}
.y7{bottom:49.139980px;}
.y8{bottom:51.839979px;}
.y126{bottom:144.899942px;}
.y96{bottom:146.519941px;}
.y104{bottom:149.759940px;}
.y53{bottom:151.379939px;}
.yb6{bottom:154.079938px;}
.y1d{bottom:156.419937px;}
.yd1{bottom:164.519934px;}
.y52{bottom:168.299933px;}
.y95{bottom:173.519931px;}
.y125{bottom:175.859930px;}
.yb5{bottom:181.079928px;}
.y75{bottom:183.959926px;}
.y102{bottom:189.360000px;}
.yd0{bottom:191.519923px;}
.y101{bottom:192.419923px;}
.y57{bottom:199.079920px;}
.y94{bottom:200.339920px;}
.y1c{bottom:206.999917px;}
.yb4{bottom:207.899917px;}
.y74{bottom:210.779916px;}
.ycf{bottom:218.339913px;}
.y56{bottom:219.059912px;}
.y140{bottom:220.679912px;}
.y93{bottom:227.159909px;}
.y100{bottom:228.599909px;}
.yb3{bottom:234.899906px;}
.y73{bottom:237.779905px;}
.y124{bottom:237.959905px;}
.y55{bottom:239.039904px;}
.yce{bottom:245.159902px;}
.y1b{bottom:248.579901px;}
.y13f{bottom:251.639899px;}
.y92{bottom:254.159898px;}
.y54{bottom:259.919896px;}
.yb2{bottom:261.719895px;}
.y72{bottom:264.599894px;}
.yff{bottom:264.959894px;}
.y123{bottom:269.099892px;}
.ycd{bottom:272.159891px;}
.y91{bottom:280.979888px;}
.y13e{bottom:283.499887px;}
.yb1{bottom:288.719885px;}
.y1a{bottom:289.979884px;}
.y71{bottom:291.599883px;}
.yfd{bottom:297.000000px;}
.ycc{bottom:298.979880px;}
.y122{bottom:300.059880px;}
.yfc{bottom:301.319879px;}
.y90{bottom:307.979877px;}
.y51{bottom:311.039876px;}
.y13d{bottom:312.479875px;}
.yb0{bottom:315.539874px;}
.y70{bottom:318.419873px;}
.ycb{bottom:325.979870px;}
.y121{bottom:331.199868px;}
.y19{bottom:331.379867px;}
.yfa{bottom:334.440000px;}
.y8f{bottom:334.799866px;}
.yf9{bottom:338.399865px;}
.y13c{bottom:341.459863px;}
.yaf{bottom:342.539863px;}
.y6f{bottom:345.419862px;}
.y50{bottom:349.019860px;}
.yca{bottom:352.799859px;}
.y8e{bottom:361.799855px;}
.y120{bottom:362.159855px;}
.y4f{bottom:367.019853px;}
.yae{bottom:369.359852px;}
.y13b{bottom:370.439852px;}
.y6e{bottom:372.239851px;}
.y18{bottom:372.779851px;}
.yc9{bottom:379.799848px;}
.yf8{bottom:385.559846px;}
.y4e{bottom:387.719845px;}
.y8d{bottom:388.619845px;}
.y31{bottom:391.319843px;}
.y11f{bottom:393.299843px;}
.yad{bottom:396.359841px;}
.y6d{bottom:399.239840px;}
.y13a{bottom:399.419840px;}
.yc8{bottom:406.619837px;}
.y4d{bottom:408.419837px;}
.y17{bottom:414.179834px;}
.y8c{bottom:415.619834px;}
.yf7{bottom:416.519833px;}
.yac{bottom:423.179831px;}
.y6c{bottom:426.059830px;}
.y139{bottom:428.399829px;}
.y4c{bottom:429.119828px;}
.yc7{bottom:433.619827px;}
.y11e{bottom:438.479825px;}
.y8b{bottom:442.439823px;}
.yf6{bottom:447.659821px;}
.y4b{bottom:449.819820px;}
.yab{bottom:451.619819px;}
.y6b{bottom:453.059819px;}
.y16{bottom:455.579818px;}
.y138{bottom:457.379817px;}
.yc6{bottom:460.439816px;}
.yf4{bottom:465.120000px;}
.y8a{bottom:469.439812px;}
.y4a{bottom:470.519812px;}
.y6a{bottom:479.879808px;}
.yaa{bottom:481.499807px;}
.yf1{bottom:483.300000px;}
.y11d{bottom:484.559806px;}
.yf3{bottom:486.359805px;}
.yc5{bottom:487.439805px;}
.yf0{bottom:487.619805px;}
.y49{bottom:491.219804px;}
.y89{bottom:496.259801px;}
.y15{bottom:496.979801px;}
.y69{bottom:506.879797px;}
.ya9{bottom:508.319797px;}
.y48{bottom:511.919795px;}
.y137{bottom:515.339794px;}
.yc4{bottom:515.879794px;}
.y11c{bottom:519.659792px;}
.y88{bottom:523.259791px;}
.yee{bottom:523.800000px;}
.yed{bottom:528.119789px;}
.y47{bottom:532.619787px;}
.y68{bottom:533.699787px;}
.ya8{bottom:535.319786px;}
.y14{bottom:538.379785px;}
.y136{bottom:544.319782px;}
.y87{bottom:551.699779px;}
.y11a{bottom:551.700000px;}
.y46{bottom:553.319779px;}
.y119{bottom:556.019778px;}
.yc3{bottom:557.639777px;}
.y30{bottom:557.819777px;}
.y67{bottom:560.699776px;}
.ya7{bottom:562.139775px;}
.yec{bottom:568.619773px;}
.y135{bottom:573.299771px;}
.y45{bottom:574.019770px;}
.ye9{bottom:576.360000px;}
.y13{bottom:579.779768px;}
.ye8{bottom:580.679768px;}
.yc2{bottom:584.639766px;}
.y66{bottom:587.519765px;}
.ya6{bottom:589.139764px;}
.y86{bottom:590.579764px;}
.y118{bottom:592.199763px;}
.yeb{bottom:592.559763px;}
.y44{bottom:594.539762px;}
.y134{bottom:602.279759px;}
.yc1{bottom:611.459755px;}
.y65{bottom:614.519754px;}
.y43{bottom:615.239754px;}
.ya5{bottom:615.959754px;}
.y85{bottom:617.399753px;}
.y12{bottom:621.179752px;}
.y2f{bottom:626.759749px;}
.y117{bottom:628.559749px;}
.ye6{bottom:628.740000px;}
.y133{bottom:631.259747px;}
.ye5{bottom:633.059747px;}
.y42{bottom:635.939746px;}
.yc0{bottom:638.459745px;}
.y64{bottom:641.339743px;}
.ya4{bottom:642.959743px;}
.y84{bottom:644.399742px;}
.y41{bottom:656.639737px;}
.y132{bottom:660.239736px;}
.y11{bottom:662.579735px;}
.y116{bottom:664.919734px;}
.ybf{bottom:665.279734px;}
.y63{bottom:668.339733px;}
.ye3{bottom:669.240000px;}
.ya3{bottom:669.779732px;}
.y83{bottom:671.219732px;}
.ye2{bottom:673.559731px;}
.y40{bottom:677.339729px;}
.y2e{bottom:687.239725px;}
.y131{bottom:689.219724px;}
.ybe{bottom:692.279723px;}
.y62{bottom:695.159722px;}
.ya2{bottom:696.779721px;}
.y114{bottom:697.140000px;}
.y3f{bottom:698.039721px;}
.y82{bottom:698.219721px;}
.y113{bottom:701.099720px;}
.y10{bottom:703.979718px;}
.ye0{bottom:709.740000px;}
.ydf{bottom:714.059714px;}
.y130{bottom:718.199713px;}
.y3e{bottom:718.739713px;}
.ybd{bottom:719.099712px;}
.y61{bottom:722.159711px;}
.ya1{bottom:723.599711px;}
.y81{bottom:725.039710px;}
.y3d{bottom:739.439704px;}
.ybc{bottom:746.099702px;}
.y12f{bottom:747.179701px;}
.y112{bottom:748.259701px;}
.y2d{bottom:748.979700px;}
.ya0{bottom:750.599700px;}
.yd9{bottom:751.320000px;}
.y80{bottom:752.039699px;}
.yf{bottom:757.259697px;}
.y3c{bottom:760.139696px;}
.yde{bottom:761.219696px;}
.y2c{bottom:764.279694px;}
.ydb{bottom:769.320000px;}
.ybb{bottom:772.919691px;}
.yd6{bottom:773.279691px;}
.y60{bottom:775.799690px;}
.y12e{bottom:776.159690px;}
.y9f{bottom:777.419689px;}
.y7f{bottom:778.859688px;}
.y2b{bottom:779.579688px;}
.y3b{bottom:780.839688px;}
.y111{bottom:781.739687px;}
.ydd{bottom:785.159686px;}
.yd7{bottom:787.320000px;}
.y2a{bottom:793.619683px;}
.yba{bottom:799.919680px;}
.y3a{bottom:801.539679px;}
.ye{bottom:802.259679px;}
.y5f{bottom:802.799679px;}
.y9e{bottom:804.419678px;}
.y12d{bottom:805.139678px;}
.y7e{bottom:805.859678px;}
.y10e{bottom:815.580000px;}
.y110{bottom:816.840000px;}
.y10d{bottom:819.899672px;}
.y39{bottom:822.239671px;}
.yd5{bottom:826.379669px;}
.yb9{bottom:826.739669px;}
.y9d{bottom:831.239668px;}
.y7d{bottom:832.679667px;}
.y12c{bottom:834.119666px;}
.y5e{bottom:841.679663px;}
.y38{bottom:842.939663px;}
.yb8{bottom:853.739659px;}
.y29{bottom:854.279658px;}
.y10c{bottom:857.159657px;}
.yd4{bottom:857.519657px;}
.y9c{bottom:858.239657px;}
.y7c{bottom:859.679656px;}
.y37{bottom:863.639655px;}
.yd{bottom:865.259654px;}
.y5d{bottom:868.679653px;}
.yb7{bottom:882.179647px;}
.y36{bottom:884.339646px;}
.y9b{bottom:885.059646px;}
.y7b{bottom:886.499645px;}
.y12b{bottom:888.479645px;}
.yd3{bottom:890.819644px;}
.y10b{bottom:894.959642px;}
.y5c{bottom:895.499642px;}
.y35{bottom:905.039638px;}
.y9a{bottom:912.059635px;}
.y7a{bottom:913.499635px;}
.y28{bottom:914.759634px;}
.y21{bottom:919.259632px;}
.y12a{bottom:922.319631px;}
.y5b{bottom:922.499631px;}
.y34{bottom:925.739630px;}
.yd2{bottom:926.999629px;}
.y27{bottom:930.239628px;}
.y10a{bottom:932.939627px;}
.y99{bottom:938.879624px;}
.y79{bottom:940.319624px;}
.y20{bottom:940.499624px;}
.y33{bottom:946.439621px;}
.y5a{bottom:949.319620px;}
.y129{bottom:953.459619px;}
.y1f{bottom:961.739615px;}
.y98{bottom:965.879614px;}
.y32{bottom:966.779613px;}
.y25{bottom:969.840000px;}
.y109{bottom:970.739612px;}
.y59{bottom:976.319609px;}
.y78{bottom:980.819608px;}
.y128{bottom:984.419606px;}
.y1e{bottom:991.439603px;}
.y97{bottom:992.699603px;}
.y24{bottom:997.199601px;}
.y22{bottom:999.899600px;}
.y58{bottom:1003.139599px;}
.y107{bottom:1004.760000px;}
.y106{bottom:1008.719597px;}
.y127{bottom:1015.559594px;}
.y77{bottom:1019.699592px;}
.yc{bottom:1038.059585px;}
.y23{bottom:1043.639583px;}
.y105{bottom:1046.159582px;}
.y76{bottom:1046.519581px;}
.y4{bottom:1068.119573px;}
.y6{bottom:1097.999561px;}
.y3{bottom:1101.239560px;}
.y2{bottom:1118.519553px;}
.y1{bottom:1135.799546px;}
.h19{height:0.720000px;}
.h3{height:0.900000px;}
.h1a{height:1.951874px;}
.hf{height:14.040000px;}
.h1b{height:19.800000px;}
.h1d{height:19.980000px;}
.h18{height:20.520000px;}
.h6{height:21.960000px;}
.h10{height:33.706744px;}
.h5{height:34.625377px;}
.h12{height:36.624009px;}
.h4{height:36.703110px;}
.h14{height:36.914048px;}
.h11{height:39.339828px;}
.hc{height:40.793187px;}
.h1{height:41.522679px;}
.h7{height:42.894123px;}
.h15{height:43.536076px;}
.h17{height:48.796855px;}
.h1c{height:49.218730px;}
.h13{height:50.027324px;}
.hd{height:50.308574px;}
.h2{height:51.679667px;}
.h16{height:52.453104px;}
.he{height:57.092321px;}
.hb{height:58.531969px;}
.h1e{height:61.370132px;}
.h9{height:64.899818px;}
.ha{height:66.536341px;}
.h8{height:73.195283px;}
.h0{height:1188.000000px;}
.w6{width:0.360000px;}
.w8{width:1.080000px;}
.w9{width:1.260000px;}
.wb{width:2.520000px;}
.w5{width:2.700000px;}
.wc{width:3.600000px;}
.wd{width:4.500000px;}
.w2{width:6.660000px;}
.w4{width:7.020000px;}
.w7{width:8.460000px;}
.wf{width:8.640000px;}
.we{width:8.820000px;}
.wa{width:9.000000px;}
.w1{width:10.620000px;}
.w3{width:113.580000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x4{left:51.299979px;}
.x1e{left:76.679969px;}
.x5{left:78.299969px;}
.x19{left:87.119965px;}
.x1a{left:92.700000px;}
.x1c{left:100.079960px;}
.x1{left:107.999957px;}
.x1f{left:125.279950px;}
.x1d{left:135.359946px;}
.xd{left:137.520675px;}
.x20{left:149.579934px;}
.x28{left:161.999935px;}
.x35{left:173.520000px;}
.x2a{left:176.759896px;}
.x44{left:199.079920px;}
.x31{left:200.339920px;}
.x1b{left:206.280000px;}
.x21{left:219.239993px;}
.x22{left:220.319912px;}
.x9{left:229.320630px;}
.x23{left:239.579947px;}
.x36{left:241.919820px;}
.x32{left:244.979902px;}
.x40{left:246.420000px;}
.x45{left:253.080000px;}
.x13{left:254.879898px;}
.x3b{left:257.399897px;}
.x24{left:259.910733px;}
.x27{left:266.399893px;}
.x18{left:280.439888px;}
.x3f{left:281.699887px;}
.x29{left:284.579886px;}
.x47{left:291.419883px;}
.x14{left:299.339880px;}
.x2{left:302.579879px;}
.x4c{left:309.599876px;}
.x25{left:313.919707px;}
.xe{left:318.947872px;}
.xa{left:321.659871px;}
.xc{left:325.259832px;}
.x2b{left:338.399865px;}
.x6{left:343.799862px;}
.x10{left:349.379860px;}
.x11{left:360.899856px;}
.xf{left:377.999849px;}
.x4d{left:380.160000px;}
.x48{left:387.720000px;}
.x3d{left:390.060000px;}
.x49{left:392.939843px;}
.x12{left:398.879840px;}
.xb{left:407.699837px;}
.x15{left:419.399832px;}
.x4e{left:437.399825px;}
.x8{left:458.999816px;}
.x37{left:463.320000px;}
.x3c{left:470.520000px;}
.x38{left:475.919810px;}
.x46{left:484.199806px;}
.x4a{left:491.040000px;}
.x2c{left:495.720000px;}
.x3e{left:511.379795px;}
.x16{left:515.519794px;}
.x2e{left:522.899787px;}
.x2d{left:548.999780px;}
.x34{left:558.539777px;}
.x33{left:563.039775px;}
.x39{left:574.020000px;}
.x3a{left:579.239768px;}
.x41{left:585.000000px;}
.x42{left:595.979762px;}
.x4b{left:615.780000px;}
.x2f{left:660.419667px;}
.x3{left:684.359726px;}
.x30{left:687.779648px;}
.x26{left:699.299720px;}
.x43{left:715.500000px;}
.x17{left:732.420134px;}
.x4f{left:757.799697px;}
.x7{left:858.420000px;}
@media print{
.v1{vertical-align:-9.599996pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:1.279999pt;}
.ls3{letter-spacing:0.000000pt;}
.ls8{letter-spacing:0.055772pt;}
.lsc{letter-spacing:0.061211pt;}
.ls7{letter-spacing:0.244066pt;}
.ls1{letter-spacing:0.254548pt;}
.ls4{letter-spacing:0.284175pt;}
.ls12{letter-spacing:0.392114pt;}
.ls2{letter-spacing:0.402017pt;}
.lsa{letter-spacing:1.566613pt;}
.ls11{letter-spacing:29.017375pt;}
.lsb{letter-spacing:30.299828pt;}
.ls6{letter-spacing:57.994372pt;}
.ls5{letter-spacing:83.643352pt;}
.ls10{letter-spacing:208.428717pt;}
.ls9{letter-spacing:250.361500pt;}
.lse{letter-spacing:262.291628pt;}
.lsf{letter-spacing:274.474557pt;}
.lsd{letter-spacing:321.284138pt;}
.ls0{letter-spacing:1721.330681pt;}
.ws6{word-spacing:-28.855760pt;}
.ws1{word-spacing:-21.279991pt;}
.wsa{word-spacing:-19.112107pt;}
.ws9{word-spacing:-16.061204pt;}
.ws7{word-spacing:-15.999994pt;}
.ws8{word-spacing:-14.767354pt;}
.ws0{word-spacing:-14.718543pt;}
.ws4{word-spacing:-14.463994pt;}
.ws5{word-spacing:-13.343995pt;}
.ws2{word-spacing:-12.005115pt;}
.ws3{word-spacing:0.000000pt;}
._4{margin-left:-9.576498pt;}
._2{margin-left:-7.635573pt;}
._1c{margin-left:-5.496983pt;}
._1{margin-left:-3.725894pt;}
._5{margin-left:-2.776444pt;}
._3{margin-left:-1.100245pt;}
._0{width:1.024788pt;}
._c{width:2.116209pt;}
._b{width:3.817685pt;}
._8{width:5.581829pt;}
._f{width:6.932640pt;}
._1b{width:7.969447pt;}
._12{width:9.071847pt;}
._18{width:10.424333pt;}
._19{width:11.454423pt;}
._d{width:12.756942pt;}
._13{width:13.692783pt;}
._9{width:14.897252pt;}
._16{width:15.954354pt;}
._a{width:17.054761pt;}
._15{width:18.147565pt;}
._14{width:19.309431pt;}
._6{width:20.369080pt;}
._7{width:21.329053pt;}
._1a{width:22.230221pt;}
._e{width:23.169549pt;}
._10{width:24.281909pt;}
._11{width:25.818464pt;}
._2f{width:27.516050pt;}
._2e{width:28.604124pt;}
._17{width:58.774712pt;}
._26{width:73.832701pt;}
._1e{width:98.066398pt;}
._25{width:116.527665pt;}
._1f{width:137.954916pt;}
._29{width:197.445845pt;}
._21{width:211.695686pt;}
._2c{width:217.712108pt;}
._22{width:219.245645pt;}
._23{width:256.581428pt;}
._24{width:264.217468pt;}
._20{width:299.605212pt;}
._28{width:320.122324pt;}
._2d{width:331.604758pt;}
._2b{width:341.446021pt;}
._1d{width:359.239108pt;}
._27{width:545.094692pt;}
._2a{width:610.950222pt;}
.fs7{font-size:2.559999pt;}
.fs3{font-size:42.879983pt;}
.fs2{font-size:47.999981pt;}
.fs0{font-size:53.119979pt;}
.fs1{font-size:63.999974pt;}
.fs6{font-size:74.879970pt;}
.fs5{font-size:85.119966pt;}
.fs4{font-size:95.999962pt;}
.y5{bottom:-14.399994pt;}
.yf5{bottom:-0.000165pt;}
.y0{bottom:0.000000pt;}
.y26{bottom:2.399654pt;}
.y108{bottom:3.519641pt;}
.yd8{bottom:3.519719pt;}
.ydc{bottom:3.519725pt;}
.yda{bottom:3.519731pt;}
.y115{bottom:3.519751pt;}
.yfb{bottom:3.519880pt;}
.y10f{bottom:3.839708pt;}
.ye1{bottom:3.839746pt;}
.ye4{bottom:3.839761pt;}
.ye7{bottom:3.839775pt;}
.yea{bottom:3.839794pt;}
.y11b{bottom:3.839802pt;}
.yef{bottom:3.839812pt;}
.yf2{bottom:3.839827pt;}
.yfe{bottom:3.839893pt;}
.y103{bottom:3.839931pt;}
.ya{bottom:4.319983pt;}
.yb{bottom:24.799990pt;}
.y9{bottom:39.360000pt;}
.y7{bottom:43.679983pt;}
.y8{bottom:46.079982pt;}
.y126{bottom:128.799948pt;}
.y96{bottom:130.239948pt;}
.y104{bottom:133.119947pt;}
.y53{bottom:134.559946pt;}
.yb6{bottom:136.959945pt;}
.y1d{bottom:139.039944pt;}
.yd1{bottom:146.239942pt;}
.y52{bottom:149.599940pt;}
.y95{bottom:154.239938pt;}
.y125{bottom:156.319937pt;}
.yb5{bottom:160.959936pt;}
.y75{bottom:163.519935pt;}
.y102{bottom:168.320000pt;}
.yd0{bottom:170.239932pt;}
.y101{bottom:171.039932pt;}
.y57{bottom:176.959929pt;}
.y94{bottom:178.079929pt;}
.y1c{bottom:183.999926pt;}
.yb4{bottom:184.799926pt;}
.y74{bottom:187.359925pt;}
.ycf{bottom:194.079922pt;}
.y56{bottom:194.719922pt;}
.y140{bottom:196.159922pt;}
.y93{bottom:201.919919pt;}
.y100{bottom:203.199919pt;}
.yb3{bottom:208.799916pt;}
.y73{bottom:211.359915pt;}
.y124{bottom:211.519915pt;}
.y55{bottom:212.479915pt;}
.yce{bottom:217.919913pt;}
.y1b{bottom:220.959912pt;}
.y13f{bottom:223.679911pt;}
.y92{bottom:225.919910pt;}
.y54{bottom:231.039908pt;}
.yb2{bottom:232.639907pt;}
.y72{bottom:235.199906pt;}
.yff{bottom:235.519906pt;}
.y123{bottom:239.199904pt;}
.ycd{bottom:241.919903pt;}
.y91{bottom:249.759900pt;}
.y13e{bottom:251.999899pt;}
.yb1{bottom:256.639897pt;}
.y1a{bottom:257.759897pt;}
.y71{bottom:259.199896pt;}
.yfd{bottom:264.000000pt;}
.ycc{bottom:265.759894pt;}
.y122{bottom:266.719893pt;}
.yfc{bottom:267.839893pt;}
.y90{bottom:273.759890pt;}
.y51{bottom:276.479889pt;}
.y13d{bottom:277.759889pt;}
.yb0{bottom:280.479888pt;}
.y70{bottom:283.039887pt;}
.ycb{bottom:289.759884pt;}
.y121{bottom:294.399882pt;}
.y19{bottom:294.559882pt;}
.yfa{bottom:297.280000pt;}
.y8f{bottom:297.599881pt;}
.yf9{bottom:300.799880pt;}
.y13c{bottom:303.519879pt;}
.yaf{bottom:304.479878pt;}
.y6f{bottom:307.039877pt;}
.y50{bottom:310.239876pt;}
.yca{bottom:313.599875pt;}
.y8e{bottom:321.599871pt;}
.y120{bottom:321.919871pt;}
.y4f{bottom:326.239870pt;}
.yae{bottom:328.319869pt;}
.y13b{bottom:329.279868pt;}
.y6e{bottom:330.879868pt;}
.y18{bottom:331.359867pt;}
.yc9{bottom:337.599865pt;}
.yf8{bottom:342.719863pt;}
.y4e{bottom:344.639862pt;}
.y8d{bottom:345.439862pt;}
.y31{bottom:347.839861pt;}
.y11f{bottom:349.599860pt;}
.yad{bottom:352.319859pt;}
.y6d{bottom:354.879858pt;}
.y13a{bottom:355.039858pt;}
.yc8{bottom:361.439855pt;}
.y4d{bottom:363.039855pt;}
.y17{bottom:368.159853pt;}
.y8c{bottom:369.439852pt;}
.yf7{bottom:370.239852pt;}
.yac{bottom:376.159850pt;}
.y6c{bottom:378.719849pt;}
.y139{bottom:380.799848pt;}
.y4c{bottom:381.439847pt;}
.yc7{bottom:385.439846pt;}
.y11e{bottom:389.759844pt;}
.y8b{bottom:393.279843pt;}
.yf6{bottom:397.919841pt;}
.y4b{bottom:399.839840pt;}
.yab{bottom:401.439839pt;}
.y6b{bottom:402.719839pt;}
.y16{bottom:404.959838pt;}
.y138{bottom:406.559837pt;}
.yc6{bottom:409.279836pt;}
.yf4{bottom:413.440000pt;}
.y8a{bottom:417.279833pt;}
.y4a{bottom:418.239833pt;}
.y6a{bottom:426.559829pt;}
.yaa{bottom:427.999829pt;}
.yf1{bottom:429.600000pt;}
.y11d{bottom:430.719828pt;}
.yf3{bottom:432.319827pt;}
.yc5{bottom:433.279827pt;}
.yf0{bottom:433.439827pt;}
.y49{bottom:436.639825pt;}
.y89{bottom:441.119824pt;}
.y15{bottom:441.759823pt;}
.y69{bottom:450.559820pt;}
.ya9{bottom:451.839819pt;}
.y48{bottom:455.039818pt;}
.y137{bottom:458.079817pt;}
.yc4{bottom:458.559817pt;}
.y11c{bottom:461.919815pt;}
.y88{bottom:465.119814pt;}
.yee{bottom:465.600000pt;}
.yed{bottom:469.439812pt;}
.y47{bottom:473.439811pt;}
.y68{bottom:474.399810pt;}
.ya8{bottom:475.839810pt;}
.y14{bottom:478.559809pt;}
.y136{bottom:483.839806pt;}
.y87{bottom:490.399804pt;}
.y11a{bottom:490.400000pt;}
.y46{bottom:491.839803pt;}
.y119{bottom:494.239802pt;}
.yc3{bottom:495.679802pt;}
.y30{bottom:495.839802pt;}
.y67{bottom:498.399801pt;}
.ya7{bottom:499.679800pt;}
.yec{bottom:505.439798pt;}
.y135{bottom:509.599796pt;}
.y45{bottom:510.239796pt;}
.ye9{bottom:512.320000pt;}
.y13{bottom:515.359794pt;}
.ye8{bottom:516.159794pt;}
.yc2{bottom:519.679792pt;}
.y66{bottom:522.239791pt;}
.ya6{bottom:523.679791pt;}
.y86{bottom:524.959790pt;}
.y118{bottom:526.399789pt;}
.yeb{bottom:526.719789pt;}
.y44{bottom:528.479789pt;}
.y134{bottom:535.359786pt;}
.yc1{bottom:543.519783pt;}
.y65{bottom:546.239782pt;}
.y43{bottom:546.879781pt;}
.ya5{bottom:547.519781pt;}
.y85{bottom:548.799780pt;}
.y12{bottom:552.159779pt;}
.y2f{bottom:557.119777pt;}
.y117{bottom:558.719777pt;}
.ye6{bottom:558.880000pt;}
.y133{bottom:561.119776pt;}
.ye5{bottom:562.719775pt;}
.y42{bottom:565.279774pt;}
.yc0{bottom:567.519773pt;}
.y64{bottom:570.079772pt;}
.ya4{bottom:571.519771pt;}
.y84{bottom:572.799771pt;}
.y41{bottom:583.679767pt;}
.y132{bottom:586.879765pt;}
.y11{bottom:588.959764pt;}
.y116{bottom:591.039764pt;}
.ybf{bottom:591.359763pt;}
.y63{bottom:594.079762pt;}
.ye3{bottom:594.880000pt;}
.ya3{bottom:595.359762pt;}
.y83{bottom:596.639761pt;}
.ye2{bottom:598.719761pt;}
.y40{bottom:602.079759pt;}
.y2e{bottom:610.879756pt;}
.y131{bottom:612.639755pt;}
.ybe{bottom:615.359754pt;}
.y62{bottom:617.919753pt;}
.ya2{bottom:619.359752pt;}
.y114{bottom:619.680000pt;}
.y3f{bottom:620.479752pt;}
.y82{bottom:620.639752pt;}
.y113{bottom:623.199751pt;}
.y10{bottom:625.759750pt;}
.ye0{bottom:630.880000pt;}
.ydf{bottom:634.719746pt;}
.y130{bottom:638.399745pt;}
.y3e{bottom:638.879744pt;}
.ybd{bottom:639.199744pt;}
.y61{bottom:641.919743pt;}
.ya1{bottom:643.199743pt;}
.y81{bottom:644.479742pt;}
.y3d{bottom:657.279737pt;}
.ybc{bottom:663.199735pt;}
.y12f{bottom:664.159734pt;}
.y112{bottom:665.119734pt;}
.y2d{bottom:665.759734pt;}
.ya0{bottom:667.199733pt;}
.yd9{bottom:667.840000pt;}
.y80{bottom:668.479733pt;}
.yf{bottom:673.119731pt;}
.y3c{bottom:675.679730pt;}
.yde{bottom:676.639729pt;}
.y2c{bottom:679.359728pt;}
.ydb{bottom:683.840000pt;}
.ybb{bottom:687.039725pt;}
.yd6{bottom:687.359725pt;}
.y60{bottom:689.599724pt;}
.y12e{bottom:689.919724pt;}
.y9f{bottom:691.039724pt;}
.y7f{bottom:692.319723pt;}
.y2b{bottom:692.959723pt;}
.y3b{bottom:694.079722pt;}
.y111{bottom:694.879722pt;}
.ydd{bottom:697.919721pt;}
.yd7{bottom:699.840000pt;}
.y2a{bottom:705.439718pt;}
.yba{bottom:711.039716pt;}
.y3a{bottom:712.479715pt;}
.ye{bottom:713.119715pt;}
.y5f{bottom:713.599715pt;}
.y9e{bottom:715.039714pt;}
.y12d{bottom:715.679714pt;}
.y7e{bottom:716.319713pt;}
.y10e{bottom:724.960000pt;}
.y110{bottom:726.080000pt;}
.y10d{bottom:728.799708pt;}
.y39{bottom:730.879708pt;}
.yd5{bottom:734.559706pt;}
.yb9{bottom:734.879706pt;}
.y9d{bottom:738.879704pt;}
.y7d{bottom:740.159704pt;}
.y12c{bottom:741.439703pt;}
.y5e{bottom:748.159701pt;}
.y38{bottom:749.279700pt;}
.yb8{bottom:758.879696pt;}
.y29{bottom:759.359696pt;}
.y10c{bottom:761.919695pt;}
.yd4{bottom:762.239695pt;}
.y9c{bottom:762.879695pt;}
.y7c{bottom:764.159694pt;}
.y37{bottom:767.679693pt;}
.yd{bottom:769.119692pt;}
.y5d{bottom:772.159691pt;}
.yb7{bottom:784.159686pt;}
.y36{bottom:786.079686pt;}
.y9b{bottom:786.719685pt;}
.y7b{bottom:787.999685pt;}
.y12b{bottom:789.759684pt;}
.yd3{bottom:791.839683pt;}
.y10b{bottom:795.519682pt;}
.y5c{bottom:795.999682pt;}
.y35{bottom:804.479678pt;}
.y9a{bottom:810.719676pt;}
.y7a{bottom:811.999675pt;}
.y28{bottom:813.119675pt;}
.y21{bottom:817.119673pt;}
.y12a{bottom:819.839672pt;}
.y5b{bottom:819.999672pt;}
.y34{bottom:822.879671pt;}
.yd2{bottom:823.999670pt;}
.y27{bottom:826.879669pt;}
.y10a{bottom:829.279668pt;}
.y99{bottom:834.559666pt;}
.y79{bottom:835.839666pt;}
.y20{bottom:835.999666pt;}
.y33{bottom:841.279663pt;}
.y5a{bottom:843.839662pt;}
.y129{bottom:847.519661pt;}
.y1f{bottom:854.879658pt;}
.y98{bottom:858.559657pt;}
.y32{bottom:859.359656pt;}
.y25{bottom:862.080000pt;}
.y109{bottom:862.879655pt;}
.y59{bottom:867.839653pt;}
.y78{bottom:871.839651pt;}
.y128{bottom:875.039650pt;}
.y1e{bottom:881.279647pt;}
.y97{bottom:882.399647pt;}
.y24{bottom:886.399645pt;}
.y22{bottom:888.799644pt;}
.y58{bottom:891.679643pt;}
.y107{bottom:893.120000pt;}
.y106{bottom:896.639641pt;}
.y127{bottom:902.719639pt;}
.y77{bottom:906.399637pt;}
.yc{bottom:922.719631pt;}
.y23{bottom:927.679629pt;}
.y105{bottom:929.919628pt;}
.y76{bottom:930.239628pt;}
.y4{bottom:949.439620pt;}
.y6{bottom:975.999610pt;}
.y3{bottom:978.879608pt;}
.y2{bottom:994.239602pt;}
.y1{bottom:1009.599596pt;}
.h19{height:0.640000pt;}
.h3{height:0.800000pt;}
.h1a{height:1.734999pt;}
.hf{height:12.480000pt;}
.h1b{height:17.600000pt;}
.h1d{height:17.760000pt;}
.h18{height:18.240000pt;}
.h6{height:19.520000pt;}
.h10{height:29.961551pt;}
.h5{height:30.778113pt;}
.h12{height:32.554674pt;}
.h4{height:32.624987pt;}
.h14{height:32.812487pt;}
.h11{height:34.968736pt;}
.hc{height:36.260610pt;}
.h1{height:36.909048pt;}
.h7{height:38.128110pt;}
.h15{height:38.698735pt;}
.h17{height:43.374983pt;}
.h1c{height:43.749982pt;}
.h13{height:44.468732pt;}
.hd{height:44.718732pt;}
.h2{height:45.937482pt;}
.h16{height:46.624981pt;}
.he{height:50.748730pt;}
.hb{height:52.028417pt;}
.h1e{height:54.551228pt;}
.h9{height:57.688727pt;}
.ha{height:59.143414pt;}
.h8{height:65.062474pt;}
.h0{height:1056.000000pt;}
.w6{width:0.320000pt;}
.w8{width:0.960000pt;}
.w9{width:1.120000pt;}
.wb{width:2.240000pt;}
.w5{width:2.400000pt;}
.wc{width:3.200000pt;}
.wd{width:4.000000pt;}
.w2{width:5.920000pt;}
.w4{width:6.240000pt;}
.w7{width:7.520000pt;}
.wf{width:7.680000pt;}
.we{width:7.840000pt;}
.wa{width:8.000000pt;}
.w1{width:9.440000pt;}
.w3{width:100.960000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x4{left:45.599982pt;}
.x1e{left:68.159973pt;}
.x5{left:69.599972pt;}
.x19{left:77.439969pt;}
.x1a{left:82.400000pt;}
.x1c{left:88.959964pt;}
.x1{left:95.999962pt;}
.x1f{left:111.359955pt;}
.x1d{left:120.319952pt;}
.xd{left:122.240600pt;}
.x20{left:132.959942pt;}
.x28{left:143.999942pt;}
.x35{left:154.240000pt;}
.x2a{left:157.119908pt;}
.x44{left:176.959929pt;}
.x31{left:178.079929pt;}
.x1b{left:183.360000pt;}
.x21{left:194.879994pt;}
.x22{left:195.839922pt;}
.x9{left:203.840560pt;}
.x23{left:212.959953pt;}
.x36{left:215.039840pt;}
.x32{left:217.759913pt;}
.x40{left:219.040000pt;}
.x45{left:224.960000pt;}
.x13{left:226.559909pt;}
.x3b{left:228.799908pt;}
.x24{left:231.031763pt;}
.x27{left:236.799905pt;}
.x18{left:249.279900pt;}
.x3f{left:250.399900pt;}
.x29{left:252.959899pt;}
.x47{left:259.039896pt;}
.x14{left:266.079894pt;}
.x2{left:268.959892pt;}
.x4c{left:275.199890pt;}
.x25{left:279.039739pt;}
.xe{left:283.509220pt;}
.xa{left:285.919886pt;}
.xc{left:289.119850pt;}
.x2b{left:300.799880pt;}
.x6{left:305.599878pt;}
.x10{left:310.559876pt;}
.x11{left:320.799872pt;}
.xf{left:335.999866pt;}
.x4d{left:337.920000pt;}
.x48{left:344.640000pt;}
.x3d{left:346.720000pt;}
.x49{left:349.279860pt;}
.x12{left:354.559858pt;}
.xb{left:362.399855pt;}
.x15{left:372.799851pt;}
.x4e{left:388.799844pt;}
.x8{left:407.999837pt;}
.x37{left:411.840000pt;}
.x3c{left:418.240000pt;}
.x38{left:423.039831pt;}
.x46{left:430.399828pt;}
.x4a{left:436.480000pt;}
.x2c{left:440.640000pt;}
.x3e{left:454.559818pt;}
.x16{left:458.239817pt;}
.x2e{left:464.799811pt;}
.x2d{left:487.999805pt;}
.x34{left:496.479801pt;}
.x33{left:500.479800pt;}
.x39{left:510.240000pt;}
.x3a{left:514.879794pt;}
.x41{left:520.000000pt;}
.x42{left:529.759788pt;}
.x4b{left:547.360000pt;}
.x2f{left:587.039704pt;}
.x3{left:608.319757pt;}
.x30{left:611.359687pt;}
.x26{left:621.599751pt;}
.x43{left:636.000000pt;}
.x17{left:651.040119pt;}
.x4f{left:673.599731pt;}
.x7{left:763.040000pt;}
}




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