
    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_3cd4ca0cdb1db51a662d93f4.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.675781;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_55d92a3dc5016e172f1d305f.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.922852;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_2070d220e9907d8e0ce911ce.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.959473;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_d8de633b3bc67efe10db81bf.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.835938;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_3ede5eb5539b53fe71420ff7.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.953125;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_a8594e782e65809baaf92b7c.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.653000;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_35a7caae25485170bc663a6b.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.960000;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_05ff96ac4bacc8ef65ccdf19.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.916992;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_b99519b47e67dc18004870fc.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.697000;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_a793344865b5dc6b76c9c76f.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.000000;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_f03182e3e0445eda09c4e096.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.923828;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_30363ae2535f237aff70de90.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.883301;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_e72c455ea650203e6981d638.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_19c4eca9db7f530fba5ef558.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.674316;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_a8edf4bba9e261fd0089a797.woff2')format("woff");}.fff{font-family:fff;line-height:0.677246;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.249514,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249514,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249514,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.249521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249521,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.249526,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249526,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249526,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.249530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249530,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.249532,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249532,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249532,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.249532,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249532,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249532,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.249538,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249538,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249538,0.000000,0.000000,0.250000,0,0);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:25.920021px;}
.ls4{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.207107px;}
.ls8{letter-spacing:0.248100px;}
.ls0{letter-spacing:0.393108px;}
.ls1{letter-spacing:0.393900px;}
.ls2{letter-spacing:0.394136px;}
.ls7{letter-spacing:40.338272px;}
.ls6{letter-spacing:82.867026px;}
.ls5{letter-spacing:82.900026px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
.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;}
.sc1{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0{word-spacing:-40.604432px;}
.ws6{word-spacing:-22.012947px;}
.ws5{word-spacing:-16.920014px;}
.ws2{word-spacing:-16.918514px;}
.ws7{word-spacing:-15.565812px;}
.ws3{word-spacing:-15.565212px;}
.ws1{word-spacing:-9.812888px;}
.ws4{word-spacing:0.000000px;}
._3{margin-left:-21.596469px;}
._16{margin-left:-3.676606px;}
._18{margin-left:-2.516931px;}
._0{margin-left:-1.150382px;}
._1{width:1.069459px;}
._8{width:2.505044px;}
._7{width:3.806143px;}
._13{width:4.880410px;}
._c{width:6.298533px;}
._d{width:7.461049px;}
._10{width:8.572242px;}
._a{width:9.637556px;}
._9{width:10.812588px;}
._b{width:11.918419px;}
._17{width:13.215117px;}
._15{width:14.356307px;}
._14{width:15.491551px;}
._21{width:18.353328px;}
._11{width:19.765227px;}
._12{width:20.966336px;}
._1e{width:22.023320px;}
._1a{width:23.514606px;}
._19{width:24.871330px;}
._1d{width:26.049982px;}
._1c{width:27.197607px;}
._1b{width:28.214976px;}
._22{width:29.943684px;}
._1f{width:31.034624px;}
._20{width:32.220490px;}
._23{width:33.247077px;}
._27{width:36.257904px;}
._24{width:42.022271px;}
._f{width:61.739182px;}
._e{width:62.804576px;}
._4{width:87.109884px;}
._6{width:118.299177px;}
._25{width:160.539796px;}
._5{width:180.885506px;}
._26{width:186.509986px;}
._2{width:355.061691px;}
.fc3{color:transparent;}
.fc2{color:rgb(5,99,193);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:39.251551px;}
.fs9{font-size:39.254431px;}
.fs5{font-size:45.340596px;}
.fs0{font-size:62.260850px;}
.fs6{font-size:62.263250px;}
.fs1{font-size:67.674054px;}
.fs7{font-size:67.680054px;}
.fs4{font-size:79.180863px;}
.fs8{font-size:79.183263px;}
.fs2{font-size:90.008472px;}
.y0{bottom:0.000000px;}
.y130{bottom:2.520252px;}
.y10f{bottom:2.520668px;}
.y40{bottom:4.140915px;}
.y3b{bottom:4.140922px;}
.y7{bottom:4.320904px;}
.y13f{bottom:4.500106px;}
.y13d{bottom:4.500124px;}
.y13b{bottom:4.500141px;}
.y139{bottom:4.500159px;}
.y137{bottom:4.500176px;}
.y135{bottom:4.500194px;}
.y133{bottom:4.500212px;}
.y12d{bottom:4.500246px;}
.yf9{bottom:4.500271px;}
.y12a{bottom:4.500283px;}
.yf7{bottom:4.500289px;}
.yf5{bottom:4.500306px;}
.yef{bottom:4.500358px;}
.y11e{bottom:4.500523px;}
.y11c{bottom:4.500541px;}
.y11a{bottom:4.500558px;}
.y118{bottom:4.500576px;}
.y116{bottom:4.500593px;}
.y114{bottom:4.500611px;}
.y112{bottom:4.500628px;}
.y10c{bottom:4.500663px;}
.y109{bottom:4.500699px;}
.ydb{bottom:4.500732px;}
.yd9{bottom:4.500753px;}
.yd7{bottom:4.500776px;}
.yd1{bottom:4.500822px;}
.y34{bottom:6.660830px;}
.yd3{bottom:18.000803px;}
.yd4{bottom:18.360803px;}
.yf1{bottom:25.740340px;}
.yf2{bottom:26.100340px;}
.y3{bottom:55.980045px;}
.y2{bottom:74.520060px;}
.y3d{bottom:74.700060px;}
.y103{bottom:107.640086px;}
.y140{bottom:109.620088px;}
.y165{bottom:111.780089px;}
.yaf{bottom:118.440095px;}
.y17f{bottom:120.060096px;}
.y31{bottom:120.960097px;}
.ycf{bottom:125.640101px;}
.y13e{bottom:128.340000px;}
.y102{bottom:129.600104px;}
.y164{bottom:133.560107px;}
.y17e{bottom:138.960111px;}
.y30{bottom:139.860112px;}
.yae{bottom:140.220112px;}
.y6c{bottom:142.560114px;}
.yce{bottom:147.600118px;}
.y13c{bottom:150.300000px;}
.y101{bottom:151.560121px;}
.y163{bottom:155.340124px;}
.y92{bottom:155.700125px;}
.y17d{bottom:158.040126px;}
.y2f{bottom:158.940127px;}
.yad{bottom:162.180130px;}
.y6b{bottom:164.340131px;}
.ycd{bottom:168.120134px;}
.y13a{bottom:172.260000px;}
.y100{bottom:173.340139px;}
.y91{bottom:177.480142px;}
.y2e{bottom:178.020142px;}
.yac{bottom:184.140147px;}
.y6a{bottom:186.120149px;}
.y17c{bottom:188.280151px;}
.y162{bottom:188.460151px;}
.y138{bottom:194.040000px;}
.yff{bottom:195.300156px;}
.y2d{bottom:197.100158px;}
.y90{bottom:199.440160px;}
.ycc{bottom:206.100165px;}
.yab{bottom:206.460165px;}
.y17b{bottom:207.360166px;}
.y69{bottom:208.080166px;}
.y161{bottom:210.600168px;}
.y136{bottom:216.000000px;}
.y2c{bottom:216.000173px;}
.yfe{bottom:217.080174px;}
.y8f{bottom:221.400177px;}
.ycb{bottom:228.600183px;}
.y160{bottom:232.380186px;}
.y2b{bottom:235.080188px;}
.y17a{bottom:237.600190px;}
.y134{bottom:237.780000px;}
.yfd{bottom:239.040191px;}
.y8e{bottom:243.180195px;}
.y68{bottom:246.960198px;}
.yaa{bottom:250.020200px;}
.y2a{bottom:254.160203px;}
.y15f{bottom:254.340203px;}
.y179{bottom:256.680205px;}
.y132{bottom:259.920000px;}
.yfc{bottom:261.000209px;}
.y8d{bottom:265.140212px;}
.y67{bottom:268.740215px;}
.ya9{bottom:271.800217px;}
.yca{bottom:271.980218px;}
.y29{bottom:273.240219px;}
.y15e{bottom:276.120221px;}
.yfb{bottom:282.780226px;}
.y12e{bottom:286.200229px;}
.y8c{bottom:286.920230px;}
.y66{bottom:290.700233px;}
.y28{bottom:292.140234px;}
.ya8{bottom:293.580235px;}
.yc9{bottom:293.760235px;}
.y15d{bottom:298.080238px;}
.y12c{bottom:303.480000px;}
.y178{bottom:306.180245px;}
.y131{bottom:306.720245px;}
.y8b{bottom:308.880247px;}
.y12f{bottom:311.940000px;}
.y65{bottom:312.480250px;}
.ya7{bottom:315.540252px;}
.yc8{bottom:315.720253px;}
.yfa{bottom:315.900253px;}
.y27{bottom:319.140255px;}
.y15c{bottom:320.040256px;}
.y177{bottom:325.080260px;}
.y8a{bottom:330.840265px;}
.y12b{bottom:331.380265px;}
.y64{bottom:334.620268px;}
.yf8{bottom:334.800000px;}
.ya6{bottom:337.500270px;}
.yc7{bottom:337.680270px;}
.y15b{bottom:341.820273px;}
.y129{bottom:348.660000px;}
.y89{bottom:352.620282px;}
.y26{bottom:354.060283px;}
.y176{bottom:355.320284px;}
.y63{bottom:356.400285px;}
.yf6{bottom:356.580000px;}
.yc6{bottom:359.460288px;}
.ya5{bottom:360.000288px;}
.y15a{bottom:363.600291px;}
.y25{bottom:372.960298px;}
.y175{bottom:374.400300px;}
.y128{bottom:376.560301px;}
.y62{bottom:378.180303px;}
.yf4{bottom:378.540000px;}
.yc5{bottom:381.420305px;}
.y159{bottom:386.100309px;}
.y88{bottom:391.500313px;}
.y24{bottom:392.220314px;}
.yf0{bottom:398.880000px;}
.ya4{bottom:403.200323px;}
.y174{bottom:404.820324px;}
.y127{bottom:409.680328px;}
.y23{bottom:411.120329px;}
.y87{bottom:413.460331px;}
.y61{bottom:417.060334px;}
.y173{bottom:423.720339px;}
.yf3{bottom:424.620340px;}
.ya3{bottom:425.160340px;}
.y158{bottom:429.480344px;}
.y126{bottom:431.460345px;}
.y22{bottom:431.640345px;}
.y86{bottom:435.240348px;}
.y60{bottom:439.020351px;}
.yee{bottom:443.160000px;}
.y21{bottom:446.040357px;}
.ya2{bottom:447.120358px;}
.y157{bottom:451.440361px;}
.y125{bottom:452.160362px;}
.y172{bottom:454.140363px;}
.y85{bottom:457.200366px;}
.y5f{bottom:460.800369px;}
.ya1{bottom:468.900375px;}
.yed{bottom:471.060377px;}
.y171{bottom:473.040378px;}
.y156{bottom:473.400379px;}
.y84{bottom:478.980383px;}
.y5e{bottom:482.760386px;}
.y124{bottom:488.160391px;}
.ya0{bottom:490.860393px;}
.y170{bottom:492.300394px;}
.yec{bottom:492.840394px;}
.y155{bottom:496.440397px;}
.y83{bottom:500.940401px;}
.y20{bottom:502.200402px;}
.y5d{bottom:504.540404px;}
.y123{bottom:509.940408px;}
.y16f{bottom:511.200409px;}
.y9f{bottom:512.640410px;}
.y154{bottom:518.220415px;}
.y82{bottom:522.900418px;}
.y1f{bottom:524.160419px;}
.yeb{bottom:526.140421px;}
.y122{bottom:531.900426px;}
.y9e{bottom:534.600428px;}
.y153{bottom:540.360432px;}
.y16e{bottom:541.440433px;}
.y1e{bottom:543.060434px;}
.y5c{bottom:543.420435px;}
.y81{bottom:544.680436px;}
.yc4{bottom:545.940437px;}
.yea{bottom:548.100438px;}
.y121{bottom:553.860443px;}
.y9d{bottom:557.100446px;}
.y16d{bottom:560.520448px;}
.y1d{bottom:562.140450px;}
.y5b{bottom:565.380452px;}
.yc3{bottom:567.900454px;}
.ye9{bottom:568.620455px;}
.y120{bottom:575.640461px;}
.y1c{bottom:581.220465px;}
.y80{bottom:583.560467px;}
.y152{bottom:584.100467px;}
.y5a{bottom:587.160470px;}
.yc2{bottom:589.680472px;}
.y16c{bottom:590.940473px;}
.y11f{bottom:597.420478px;}
.y9c{bottom:600.480480px;}
.y1b{bottom:601.740481px;}
.y7f{bottom:605.520484px;}
.y151{bottom:605.880485px;}
.y59{bottom:609.120487px;}
.y16b{bottom:621.180497px;}
.y9b{bottom:622.440498px;}
.yc1{bottom:622.800498px;}
.ye8{bottom:623.700499px;}
.y1a{bottom:625.140500px;}
.y7e{bottom:627.300502px;}
.y150{bottom:627.840502px;}
.y58{bottom:630.900505px;}
.y19{bottom:639.000511px;}
.y9a{bottom:644.220515px;}
.yc0{bottom:644.760516px;}
.ye7{bottom:645.480516px;}
.y7d{bottom:649.260519px;}
.y11d{bottom:649.440000px;}
.y14f{bottom:649.800520px;}
.y16a{bottom:651.420521px;}
.y57{bottom:652.860522px;}
.y18{bottom:656.460525px;}
.y17{bottom:660.060528px;}
.y99{bottom:666.180533px;}
.ybf{bottom:666.720533px;}
.ye6{bottom:667.440534px;}
.y169{bottom:670.500536px;}
.y7c{bottom:671.040537px;}
.y11b{bottom:671.580000px;}
.y16{bottom:673.920539px;}
.y56{bottom:675.360540px;}
.y15{bottom:677.340542px;}
.y14e{bottom:682.920546px;}
.y98{bottom:687.960550px;}
.ybe{bottom:688.500551px;}
.ye5{bottom:689.400552px;}
.y168{bottom:689.580552px;}
.y7b{bottom:693.000554px;}
.y119{bottom:693.360000px;}
.y55{bottom:702.360562px;}
.y14{bottom:703.260563px;}
.y14d{bottom:704.700564px;}
.y18d{bottom:707.580566px;}
.y97{bottom:709.920568px;}
.ybd{bottom:710.280568px;}
.ye4{bottom:711.180569px;}
.y167{bottom:712.080570px;}
.y117{bottom:715.140000px;}
.y13{bottom:723.420579px;}
.y14c{bottom:726.660581px;}
.y7a{bottom:731.880586px;}
.ye3{bottom:732.960586px;}
.y115{bottom:737.100000px;}
.y54{bottom:737.280590px;}
.y18c{bottom:738.000590px;}
.y166{bottom:738.900591px;}
.ybc{bottom:743.580595px;}
.y14b{bottom:748.620599px;}
.y79{bottom:753.660603px;}
.y12{bottom:754.380604px;}
.ye2{bottom:755.100604px;}
.y53{bottom:756.180605px;}
.y18b{bottom:756.900606px;}
.y113{bottom:759.060000px;}
.ybb{bottom:765.540612px;}
.y14a{bottom:770.400616px;}
.y78{bottom:775.620620px;}
.y18a{bottom:775.980621px;}
.ye1{bottom:776.880622px;}
.y111{bottom:780.840000px;}
.y11{bottom:781.380625px;}
.y52{bottom:786.420629px;}
.yba{bottom:787.320630px;}
.y149{bottom:792.360634px;}
.y96{bottom:792.540634px;}
.y77{bottom:797.400638px;}
.ye0{bottom:798.840639px;}
.y51{bottom:805.680645px;}
.y189{bottom:806.220645px;}
.y10d{bottom:807.300646px;}
.y10{bottom:808.200647px;}
.yb9{bottom:809.280647px;}
.y95{bottom:814.320651px;}
.ydf{bottom:820.620656px;}
.y10b{bottom:824.580000px;}
.y50{bottom:824.580660px;}
.y188{bottom:825.480660px;}
.y110{bottom:827.820662px;}
.yb8{bottom:831.240665px;}
.y10e{bottom:833.040000px;}
.yf{bottom:834.840668px;}
.y148{bottom:836.100669px;}
.y76{bottom:836.280669px;}
.yde{bottom:842.400674px;}
.y4f{bottom:843.660675px;}
.y10a{bottom:852.480682px;}
.yb7{bottom:853.020682px;}
.y187{bottom:855.720685px;}
.y147{bottom:858.060686px;}
.y75{bottom:858.240687px;}
.y4e{bottom:862.560690px;}
.ydd{bottom:864.540692px;}
.y108{bottom:869.760000px;}
.ye{bottom:874.080699px;}
.y186{bottom:874.620700px;}
.yb6{bottom:874.980700px;}
.y74{bottom:880.020704px;}
.y146{bottom:880.380704px;}
.y4d{bottom:881.820705px;}
.ydc{bottom:886.320709px;}
.y185{bottom:893.700715px;}
.yb5{bottom:896.760717px;}
.y107{bottom:897.660718px;}
.y4c{bottom:900.720721px;}
.y73{bottom:901.800721px;}
.yda{bottom:910.260000px;}
.yd{bottom:913.320731px;}
.yb4{bottom:918.540735px;}
.y94{bottom:918.720735px;}
.y4b{bottom:919.800736px;}
.y72{bottom:923.940739px;}
.y184{bottom:924.120739px;}
.y106{bottom:930.780745px;}
.y39{bottom:933.300747px;}
.yd8{bottom:937.260000px;}
.y32{bottom:937.980750px;}
.y4a{bottom:938.700751px;}
.yb3{bottom:940.680753px;}
.y93{bottom:940.860753px;}
.y183{bottom:943.020754px;}
.yc{bottom:944.820756px;}
.y145{bottom:945.720757px;}
.y38{bottom:950.940761px;}
.y105{bottom:952.560762px;}
.y49{bottom:957.960766px;}
.yb2{bottom:962.460770px;}
.y71{bottom:962.640770px;}
.yd6{bottom:965.340000px;}
.y144{bottom:967.680774px;}
.y104{bottom:973.260779px;}
.y182{bottom:973.440779px;}
.yb{bottom:976.680781px;}
.y48{bottom:976.860781px;}
.y37{bottom:979.920784px;}
.yb1{bottom:984.420788px;}
.y70{bottom:984.600788px;}
.yd2{bottom:985.680000px;}
.y143{bottom:989.460792px;}
.y181{bottom:992.340794px;}
.y47{bottom:995.940797px;}
.y36{bottom:997.560798px;}
.yd5{bottom:1003.680803px;}
.y6f{bottom:1006.380805px;}
.yb0{bottom:1006.740805px;}
.ya{bottom:1008.360807px;}
.y142{bottom:1011.420809px;}
.y46{bottom:1014.840812px;}
.y35{bottom:1015.200812px;}
.yd0{bottom:1022.400000px;}
.y180{bottom:1022.760818px;}
.y6e{bottom:1028.340823px;}
.y33{bottom:1030.860000px;}
.y141{bottom:1033.380827px;}
.y45{bottom:1034.100827px;}
.y9{bottom:1040.220832px;}
.y6d{bottom:1050.300840px;}
.y44{bottom:1053.000842px;}
.y8{bottom:1071.720857px;}
.y43{bottom:1072.080858px;}
.y42{bottom:1103.220883px;}
.y1{bottom:1122.480898px;}
.y3c{bottom:1122.660898px;}
.y41{bottom:1123.560899px;}
.y6{bottom:1126.080000px;}
.y5{bottom:1130.400904px;}
.y4{bottom:1131.840905px;}
.y3e{bottom:1132.020906px;}
.y3f{bottom:1139.580000px;}
.y3a{bottom:1148.760000px;}
.h1c{height:10.440000px;}
.h10{height:18.720000px;}
.h19{height:18.900000px;}
.h13{height:20.160000px;}
.h4{height:21.240000px;}
.hc{height:25.740000px;}
.h1e{height:26.163232px;}
.h9{height:27.330426px;}
.h1d{height:27.332431px;}
.hf{height:28.927300px;}
.h1{height:41.497100px;}
.h11{height:41.498699px;}
.h2{height:43.351549px;}
.h12{height:43.353220px;}
.he{height:43.381950px;}
.h7{height:45.105021px;}
.h18{height:45.109020px;}
.ha{height:47.120704px;}
.h15{height:47.124881px;}
.h8{height:52.081333px;}
.h5{height:53.399058px;}
.h14{height:53.403793px;}
.h1a{height:55.620000px;}
.h3{height:56.571280px;}
.h17{height:56.576295px;}
.hb{height:58.673020px;}
.h16{height:58.674798px;}
.h1b{height:63.180000px;}
.h6{height:66.696278px;}
.hd{height:67.506354px;}
.h0{height:1188.000000px;}
.w26{width:3.960000px;}
.w1b{width:4.500000px;}
.w1e{width:4.680000px;}
.w2f{width:5.400000px;}
.w7{width:5.580000px;}
.w27{width:8.100000px;}
.w40{width:8.820000px;}
.w28{width:9.000000px;}
.w4{width:9.180000px;}
.we{width:9.540000px;}
.wd{width:9.720000px;}
.w1{width:10.260000px;}
.w1d{width:10.440000px;}
.w14{width:11.520000px;}
.w9{width:11.700000px;}
.w3{width:13.500000px;}
.wa{width:14.220000px;}
.w3b{width:16.020000px;}
.w34{width:19.800000px;}
.w22{width:19.980000px;}
.w2e{width:22.320000px;}
.w13{width:23.940000px;}
.wb{width:24.300000px;}
.w19{width:27.000000px;}
.w15{width:27.720000px;}
.w18{width:28.260000px;}
.wf{width:31.680000px;}
.w1a{width:32.040000px;}
.w3a{width:34.740000px;}
.w1c{width:35.460000px;}
.w3e{width:35.640000px;}
.w31{width:36.180000px;}
.w44{width:36.360000px;}
.w2d{width:36.540000px;}
.w35{width:36.720000px;}
.w3f{width:38.700000px;}
.w37{width:39.060000px;}
.w47{width:39.600000px;}
.w3c{width:40.860000px;}
.w36{width:43.920000px;}
.w32{width:44.280000px;}
.w23{width:45.180000px;}
.w45{width:45.360000px;}
.w8{width:45.720000px;}
.w39{width:48.060000px;}
.w30{width:48.420000px;}
.w1f{width:52.740000px;}
.w43{width:58.860000px;}
.w38{width:59.220000px;}
.wc{width:59.580000px;}
.w10{width:59.760000px;}
.w29{width:59.940000px;}
.w21{width:62.280000px;}
.w2b{width:64.080000px;}
.w42{width:64.800000px;}
.w2c{width:66.960000px;}
.w17{width:67.860000px;}
.w25{width:69.480000px;}
.w33{width:74.160000px;}
.w11{width:79.740000px;}
.w3d{width:79.920000px;}
.w24{width:80.100000px;}
.w20{width:80.820000px;}
.w2a{width:106.920000px;}
.w48{width:109.980000px;}
.w41{width:114.300000px;}
.w46{width:123.840000px;}
.w49{width:133.920000px;}
.w6{width:151.200000px;}
.w12{width:159.300000px;}
.w16{width:166.500000px;}
.w2{width:320.040000px;}
.w5{width:386.100000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x1{left:160.740129px;}
.x5{left:165.960133px;}
.x37{left:167.209804px;}
.x1e{left:168.300000px;}
.x1d{left:170.637330px;}
.x38{left:173.339049px;}
.x1c{left:174.600783px;}
.x1b{left:178.560434px;}
.x18{left:182.700146px;}
.x62{left:186.120149px;}
.x56{left:190.440000px;}
.x57{left:195.660000px;}
.x6f{left:200.698476px;}
.x61{left:203.040000px;}
.x5b{left:205.020000px;}
.x5d{left:207.180000px;}
.x16{left:209.340000px;}
.x1a{left:211.500127px;}
.x1f{left:214.020000px;}
.xb{left:219.240175px;}
.x8{left:221.400155px;}
.xc{left:226.620181px;}
.xd{left:227.880182px;}
.xe{left:235.260188px;}
.x5f{left:237.780000px;}
.x7{left:241.380188px;}
.x6{left:243.360195px;}
.x4b{left:282.600000px;}
.xa{left:288.900315px;}
.x10{left:297.000238px;}
.x50{left:310.140000px;}
.x51{left:313.920251px;}
.x66{left:317.520000px;}
.x58{left:318.600000px;}
.x67{left:321.480257px;}
.x5c{left:326.340000px;}
.x2d{left:327.600000px;}
.x60{left:330.660000px;}
.x36{left:334.800000px;}
.x5e{left:341.820000px;}
.x39{left:347.220000px;}
.x3d{left:356.940286px;}
.x4c{left:363.240000px;}
.x3a{left:371.340000px;}
.x49{left:375.480000px;}
.x20{left:376.920000px;}
.x9{left:380.520572px;}
.x43{left:382.500000px;}
.x55{left:389.340000px;}
.x21{left:391.140000px;}
.x69{left:396.180000px;}
.x2e{left:400.860000px;}
.x11{left:406.080325px;}
.x3b{left:408.780000px;}
.x3c{left:413.100000px;}
.x6e{left:415.800000px;}
.x44{left:428.040000px;}
.x12{left:429.840000px;}
.x14{left:434.700348px;}
.xf{left:436.500349px;}
.x25{left:440.640353px;}
.x52{left:444.420000px;}
.x6a{left:452.160000px;}
.x22{left:454.860000px;}
.x2f{left:458.280000px;}
.x23{left:460.620000px;}
.x6d{left:468.000000px;}
.x3e{left:474.120000px;}
.x4d{left:482.940000px;}
.x30{left:484.560000px;}
.x63{left:490.320000px;}
.x4a{left:500.940000px;}
.x3f{left:505.620000px;}
.x45{left:509.400000px;}
.x53{left:510.480000px;}
.x31{left:512.100000px;}
.x6c{left:517.860000px;}
.x24{left:520.020000px;}
.x68{left:525.600000px;}
.x6b{left:529.920000px;}
.x64{left:531.000000px;}
.x15{left:536.220429px;}
.x46{left:537.480000px;}
.x40{left:542.880000px;}
.x41{left:547.380000px;}
.x4e{left:554.400000px;}
.x26{left:562.140000px;}
.x47{left:565.020000px;}
.x2a{left:571.860457px;}
.x65{left:573.120000px;}
.x59{left:581.940000px;}
.x32{left:589.680000px;}
.x27{left:593.460000px;}
.x17{left:595.260000px;}
.x28{left:599.040000px;}
.x3{left:623.700499px;}
.x33{left:628.740000px;}
.x48{left:630.000000px;}
.x34{left:656.280000px;}
.x29{left:658.800000px;}
.x4f{left:673.020000px;}
.x42{left:674.460000px;}
.x2b{left:687.960000px;}
.x5a{left:692.640000px;}
.x19{left:693.720555px;}
.x54{left:700.560000px;}
.x35{left:715.500000px;}
.x4{left:746.280000px;}
.x13{left:749.700000px;}
.x2{left:766.620613px;}
.x2c{left:767.700000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:23.040018pt;}
.ls4{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.184095pt;}
.ls8{letter-spacing:0.220534pt;}
.ls0{letter-spacing:0.349429pt;}
.ls1{letter-spacing:0.350134pt;}
.ls2{letter-spacing:0.350343pt;}
.ls7{letter-spacing:35.856242pt;}
.ls6{letter-spacing:73.659579pt;}
.ls5{letter-spacing:73.688912pt;}
.ws0{word-spacing:-36.092829pt;}
.ws6{word-spacing:-19.567064pt;}
.ws5{word-spacing:-15.040012pt;}
.ws2{word-spacing:-15.038679pt;}
.ws7{word-spacing:-13.836278pt;}
.ws3{word-spacing:-13.835744pt;}
.ws1{word-spacing:-8.722567pt;}
.ws4{word-spacing:0.000000pt;}
._3{margin-left:-19.196861pt;}
._16{margin-left:-3.268095pt;}
._18{margin-left:-2.237272pt;}
._0{margin-left:-1.022562pt;}
._1{width:0.950630pt;}
._8{width:2.226706pt;}
._7{width:3.383238pt;}
._13{width:4.338142pt;}
._c{width:5.598696pt;}
._d{width:6.632044pt;}
._10{width:7.619770pt;}
._a{width:8.566716pt;}
._9{width:9.611189pt;}
._b{width:10.594150pt;}
._17{width:11.746770pt;}
._15{width:12.761161pt;}
._14{width:13.770267pt;}
._21{width:16.314069pt;}
._11{width:17.569090pt;}
._12{width:18.636743pt;}
._1e{width:19.576285pt;}
._1a{width:20.901872pt;}
._19{width:22.107849pt;}
._1d{width:23.155540pt;}
._1c{width:24.175651pt;}
._1b{width:25.079979pt;}
._22{width:26.616608pt;}
._1f{width:27.586332pt;}
._20{width:28.640436pt;}
._23{width:29.552957pt;}
._27{width:32.229248pt;}
._24{width:37.353130pt;}
._f{width:54.879273pt;}
._e{width:55.826290pt;}
._4{width:77.431008pt;}
._6{width:105.154824pt;}
._25{width:142.702041pt;}
._5{width:160.787117pt;}
._26{width:165.786654pt;}
._2{width:315.610392pt;}
.fs3{font-size:34.890268pt;}
.fs9{font-size:34.892828pt;}
.fs5{font-size:40.302752pt;}
.fs0{font-size:55.342978pt;}
.fs6{font-size:55.345111pt;}
.fs1{font-size:60.154715pt;}
.fs7{font-size:60.160048pt;}
.fs4{font-size:70.382990pt;}
.fs8{font-size:70.385123pt;}
.fs2{font-size:80.007531pt;}
.y0{bottom:0.000000pt;}
.y130{bottom:2.240224pt;}
.y10f{bottom:2.240594pt;}
.y40{bottom:3.680813pt;}
.y3b{bottom:3.680820pt;}
.y7{bottom:3.840804pt;}
.y13f{bottom:4.000094pt;}
.y13d{bottom:4.000110pt;}
.y13b{bottom:4.000126pt;}
.y139{bottom:4.000141pt;}
.y137{bottom:4.000157pt;}
.y135{bottom:4.000172pt;}
.y133{bottom:4.000188pt;}
.y12d{bottom:4.000219pt;}
.yf9{bottom:4.000241pt;}
.y12a{bottom:4.000251pt;}
.yf7{bottom:4.000257pt;}
.yf5{bottom:4.000272pt;}
.yef{bottom:4.000318pt;}
.y11e{bottom:4.000465pt;}
.y11c{bottom:4.000481pt;}
.y11a{bottom:4.000496pt;}
.y118{bottom:4.000512pt;}
.y116{bottom:4.000527pt;}
.y114{bottom:4.000543pt;}
.y112{bottom:4.000558pt;}
.y10c{bottom:4.000590pt;}
.y109{bottom:4.000622pt;}
.ydb{bottom:4.000650pt;}
.yd9{bottom:4.000670pt;}
.yd7{bottom:4.000690pt;}
.yd1{bottom:4.000730pt;}
.y34{bottom:5.920738pt;}
.yd3{bottom:16.000714pt;}
.yd4{bottom:16.320714pt;}
.yf1{bottom:22.880302pt;}
.yf2{bottom:23.200302pt;}
.y3{bottom:49.760040pt;}
.y2{bottom:66.240053pt;}
.y3d{bottom:66.400053pt;}
.y103{bottom:95.680077pt;}
.y140{bottom:97.440078pt;}
.y165{bottom:99.360079pt;}
.yaf{bottom:105.280084pt;}
.y17f{bottom:106.720085pt;}
.y31{bottom:107.520086pt;}
.ycf{bottom:111.680089pt;}
.y13e{bottom:114.080000pt;}
.y102{bottom:115.200092pt;}
.y164{bottom:118.720095pt;}
.y17e{bottom:123.520099pt;}
.y30{bottom:124.320099pt;}
.yae{bottom:124.640100pt;}
.y6c{bottom:126.720101pt;}
.yce{bottom:131.200105pt;}
.y13c{bottom:133.600000pt;}
.y101{bottom:134.720108pt;}
.y163{bottom:138.080110pt;}
.y92{bottom:138.400111pt;}
.y17d{bottom:140.480112pt;}
.y2f{bottom:141.280113pt;}
.yad{bottom:144.160115pt;}
.y6b{bottom:146.080117pt;}
.ycd{bottom:149.440120pt;}
.y13a{bottom:153.120000pt;}
.y100{bottom:154.080123pt;}
.y91{bottom:157.760126pt;}
.y2e{bottom:158.240127pt;}
.yac{bottom:163.680131pt;}
.y6a{bottom:165.440132pt;}
.y17c{bottom:167.360134pt;}
.y162{bottom:167.520134pt;}
.y138{bottom:172.480000pt;}
.yff{bottom:173.600139pt;}
.y2d{bottom:175.200140pt;}
.y90{bottom:177.280142pt;}
.ycc{bottom:183.200147pt;}
.yab{bottom:183.520147pt;}
.y17b{bottom:184.320147pt;}
.y69{bottom:184.960148pt;}
.y161{bottom:187.200150pt;}
.y136{bottom:192.000000pt;}
.y2c{bottom:192.000154pt;}
.yfe{bottom:192.960154pt;}
.y8f{bottom:196.800157pt;}
.ycb{bottom:203.200163pt;}
.y160{bottom:206.560165pt;}
.y2b{bottom:208.960167pt;}
.y17a{bottom:211.200169pt;}
.y134{bottom:211.360000pt;}
.yfd{bottom:212.480170pt;}
.y8e{bottom:216.160173pt;}
.y68{bottom:219.520176pt;}
.yaa{bottom:222.240178pt;}
.y2a{bottom:225.920181pt;}
.y15f{bottom:226.080181pt;}
.y179{bottom:228.160183pt;}
.y132{bottom:231.040000pt;}
.yfc{bottom:232.000186pt;}
.y8d{bottom:235.680189pt;}
.y67{bottom:238.880191pt;}
.ya9{bottom:241.600193pt;}
.yca{bottom:241.760193pt;}
.y29{bottom:242.880194pt;}
.y15e{bottom:245.440196pt;}
.yfb{bottom:251.360201pt;}
.y12e{bottom:254.400204pt;}
.y8c{bottom:255.040204pt;}
.y66{bottom:258.400207pt;}
.y28{bottom:259.680208pt;}
.ya8{bottom:260.960209pt;}
.yc9{bottom:261.120209pt;}
.y15d{bottom:264.960212pt;}
.y12c{bottom:269.760000pt;}
.y178{bottom:272.160218pt;}
.y131{bottom:272.640218pt;}
.y8b{bottom:274.560220pt;}
.y12f{bottom:277.280000pt;}
.y65{bottom:277.760222pt;}
.ya7{bottom:280.480224pt;}
.yc8{bottom:280.640225pt;}
.yfa{bottom:280.800225pt;}
.y27{bottom:283.680227pt;}
.y15c{bottom:284.480228pt;}
.y177{bottom:288.960231pt;}
.y8a{bottom:294.080235pt;}
.y12b{bottom:294.560236pt;}
.y64{bottom:297.440238pt;}
.yf8{bottom:297.600000pt;}
.ya6{bottom:300.000240pt;}
.yc7{bottom:300.160240pt;}
.y15b{bottom:303.840243pt;}
.y129{bottom:309.920000pt;}
.y89{bottom:313.440251pt;}
.y26{bottom:314.720252pt;}
.y176{bottom:315.840253pt;}
.y63{bottom:316.800253pt;}
.yf6{bottom:316.960000pt;}
.yc6{bottom:319.520256pt;}
.ya5{bottom:320.000256pt;}
.y15a{bottom:323.200259pt;}
.y25{bottom:331.520265pt;}
.y175{bottom:332.800266pt;}
.y128{bottom:334.720268pt;}
.y62{bottom:336.160269pt;}
.yf4{bottom:336.480000pt;}
.yc5{bottom:339.040271pt;}
.y159{bottom:343.200275pt;}
.y88{bottom:348.000278pt;}
.y24{bottom:348.640279pt;}
.yf0{bottom:354.560000pt;}
.ya4{bottom:358.400287pt;}
.y174{bottom:359.840288pt;}
.y127{bottom:364.160291pt;}
.y23{bottom:365.440292pt;}
.y87{bottom:367.520294pt;}
.y61{bottom:370.720297pt;}
.y173{bottom:376.640301pt;}
.yf3{bottom:377.440302pt;}
.ya3{bottom:377.920302pt;}
.y158{bottom:381.760305pt;}
.y126{bottom:383.520307pt;}
.y22{bottom:383.680307pt;}
.y86{bottom:386.880310pt;}
.y60{bottom:390.240312pt;}
.yee{bottom:393.920000pt;}
.y21{bottom:396.480317pt;}
.ya2{bottom:397.440318pt;}
.y157{bottom:401.280321pt;}
.y125{bottom:401.920322pt;}
.y172{bottom:403.680323pt;}
.y85{bottom:406.400325pt;}
.y5f{bottom:409.600328pt;}
.ya1{bottom:416.800333pt;}
.yed{bottom:418.720335pt;}
.y171{bottom:420.480336pt;}
.y156{bottom:420.800337pt;}
.y84{bottom:425.760341pt;}
.y5e{bottom:429.120343pt;}
.y124{bottom:433.920347pt;}
.ya0{bottom:436.320349pt;}
.y170{bottom:437.600350pt;}
.yec{bottom:438.080350pt;}
.y155{bottom:441.280353pt;}
.y83{bottom:445.280356pt;}
.y20{bottom:446.400357pt;}
.y5d{bottom:448.480359pt;}
.y123{bottom:453.280363pt;}
.y16f{bottom:454.400364pt;}
.y9f{bottom:455.680365pt;}
.y154{bottom:460.640369pt;}
.y82{bottom:464.800372pt;}
.y1f{bottom:465.920373pt;}
.yeb{bottom:467.680374pt;}
.y122{bottom:472.800378pt;}
.y9e{bottom:475.200380pt;}
.y153{bottom:480.320384pt;}
.y16e{bottom:481.280385pt;}
.y1e{bottom:482.720386pt;}
.y5c{bottom:483.040386pt;}
.y81{bottom:484.160387pt;}
.yc4{bottom:485.280388pt;}
.yea{bottom:487.200390pt;}
.y121{bottom:492.320394pt;}
.y9d{bottom:495.200396pt;}
.y16d{bottom:498.240399pt;}
.y1d{bottom:499.680400pt;}
.y5b{bottom:502.560402pt;}
.yc3{bottom:504.800404pt;}
.ye9{bottom:505.440404pt;}
.y120{bottom:511.680409pt;}
.y1c{bottom:516.640413pt;}
.y80{bottom:518.720415pt;}
.y152{bottom:519.200415pt;}
.y5a{bottom:521.920418pt;}
.yc2{bottom:524.160419pt;}
.y16c{bottom:525.280420pt;}
.y11f{bottom:531.040425pt;}
.y9c{bottom:533.760427pt;}
.y1b{bottom:534.880428pt;}
.y7f{bottom:538.240431pt;}
.y151{bottom:538.560431pt;}
.y59{bottom:541.440433pt;}
.y16b{bottom:552.160442pt;}
.y9b{bottom:553.280443pt;}
.yc1{bottom:553.600443pt;}
.ye8{bottom:554.400444pt;}
.y1a{bottom:555.680445pt;}
.y7e{bottom:557.600446pt;}
.y150{bottom:558.080446pt;}
.y58{bottom:560.800449pt;}
.y19{bottom:568.000454pt;}
.y9a{bottom:572.640458pt;}
.yc0{bottom:573.120458pt;}
.ye7{bottom:573.760459pt;}
.y7d{bottom:577.120462pt;}
.y11d{bottom:577.280000pt;}
.y14f{bottom:577.600462pt;}
.y16a{bottom:579.040463pt;}
.y57{bottom:580.320464pt;}
.y18{bottom:583.520467pt;}
.y17{bottom:586.720469pt;}
.y99{bottom:592.160474pt;}
.ybf{bottom:592.640474pt;}
.ye6{bottom:593.280475pt;}
.y169{bottom:596.000477pt;}
.y7c{bottom:596.480477pt;}
.y11b{bottom:596.960000pt;}
.y16{bottom:599.040479pt;}
.y56{bottom:600.320480pt;}
.y15{bottom:602.080482pt;}
.y14e{bottom:607.040486pt;}
.y98{bottom:611.520489pt;}
.ybe{bottom:612.000490pt;}
.ye5{bottom:612.800490pt;}
.y168{bottom:612.960490pt;}
.y7b{bottom:616.000493pt;}
.y119{bottom:616.320000pt;}
.y55{bottom:624.320499pt;}
.y14{bottom:625.120500pt;}
.y14d{bottom:626.400501pt;}
.y18d{bottom:628.960503pt;}
.y97{bottom:631.040505pt;}
.ybd{bottom:631.360505pt;}
.ye4{bottom:632.160506pt;}
.y167{bottom:632.960506pt;}
.y117{bottom:635.680000pt;}
.y13{bottom:643.040514pt;}
.y14c{bottom:645.920517pt;}
.y7a{bottom:650.560520pt;}
.ye3{bottom:651.520521pt;}
.y115{bottom:655.200000pt;}
.y54{bottom:655.360524pt;}
.y18c{bottom:656.000525pt;}
.y166{bottom:656.800525pt;}
.ybc{bottom:660.960529pt;}
.y14b{bottom:665.440532pt;}
.y79{bottom:669.920536pt;}
.y12{bottom:670.560536pt;}
.ye2{bottom:671.200537pt;}
.y53{bottom:672.160538pt;}
.y18b{bottom:672.800538pt;}
.y113{bottom:674.720000pt;}
.ybb{bottom:680.480544pt;}
.y14a{bottom:684.800548pt;}
.y78{bottom:689.440552pt;}
.y18a{bottom:689.760552pt;}
.ye1{bottom:690.560552pt;}
.y111{bottom:694.080000pt;}
.y11{bottom:694.560556pt;}
.y52{bottom:699.040559pt;}
.yba{bottom:699.840560pt;}
.y149{bottom:704.320563pt;}
.y96{bottom:704.480564pt;}
.y77{bottom:708.800567pt;}
.ye0{bottom:710.080568pt;}
.y51{bottom:716.160573pt;}
.y189{bottom:716.640573pt;}
.y10d{bottom:717.600574pt;}
.y10{bottom:718.400575pt;}
.yb9{bottom:719.360575pt;}
.y95{bottom:723.840579pt;}
.ydf{bottom:729.440584pt;}
.y10b{bottom:732.960000pt;}
.y50{bottom:732.960586pt;}
.y188{bottom:733.760587pt;}
.y110{bottom:735.840589pt;}
.yb8{bottom:738.880591pt;}
.y10e{bottom:740.480000pt;}
.yf{bottom:742.080594pt;}
.y148{bottom:743.200595pt;}
.y76{bottom:743.360595pt;}
.yde{bottom:748.800599pt;}
.y4f{bottom:749.920600pt;}
.y10a{bottom:757.760606pt;}
.yb7{bottom:758.240607pt;}
.y187{bottom:760.640609pt;}
.y147{bottom:762.720610pt;}
.y75{bottom:762.880610pt;}
.y4e{bottom:766.720613pt;}
.ydd{bottom:768.480615pt;}
.y108{bottom:773.120000pt;}
.ye{bottom:776.960622pt;}
.y186{bottom:777.440622pt;}
.yb6{bottom:777.760622pt;}
.y74{bottom:782.240626pt;}
.y146{bottom:782.560626pt;}
.y4d{bottom:783.840627pt;}
.ydc{bottom:787.840630pt;}
.y185{bottom:794.400636pt;}
.yb5{bottom:797.120638pt;}
.y107{bottom:797.920638pt;}
.y4c{bottom:800.640641pt;}
.y73{bottom:801.600641pt;}
.yda{bottom:809.120000pt;}
.yd{bottom:811.840649pt;}
.yb4{bottom:816.480653pt;}
.y94{bottom:816.640653pt;}
.y4b{bottom:817.600654pt;}
.y72{bottom:821.280657pt;}
.y184{bottom:821.440657pt;}
.y106{bottom:827.360662pt;}
.y39{bottom:829.600664pt;}
.yd8{bottom:833.120000pt;}
.y32{bottom:833.760667pt;}
.y4a{bottom:834.400668pt;}
.yb3{bottom:836.160669pt;}
.y93{bottom:836.320669pt;}
.y183{bottom:838.240671pt;}
.yc{bottom:839.840672pt;}
.y145{bottom:840.640673pt;}
.y38{bottom:845.280676pt;}
.y105{bottom:846.720677pt;}
.y49{bottom:851.520681pt;}
.yb2{bottom:855.520684pt;}
.y71{bottom:855.680685pt;}
.yd6{bottom:858.080000pt;}
.y144{bottom:860.160688pt;}
.y104{bottom:865.120692pt;}
.y182{bottom:865.280692pt;}
.yb{bottom:868.160695pt;}
.y48{bottom:868.320695pt;}
.y37{bottom:871.040697pt;}
.yb1{bottom:875.040700pt;}
.y70{bottom:875.200700pt;}
.yd2{bottom:876.160000pt;}
.y143{bottom:879.520704pt;}
.y181{bottom:882.080706pt;}
.y47{bottom:885.280708pt;}
.y36{bottom:886.720709pt;}
.yd5{bottom:892.160714pt;}
.y6f{bottom:894.560716pt;}
.yb0{bottom:894.880716pt;}
.ya{bottom:896.320717pt;}
.y142{bottom:899.040719pt;}
.y46{bottom:902.080722pt;}
.y35{bottom:902.400722pt;}
.yd0{bottom:908.800000pt;}
.y180{bottom:909.120727pt;}
.y6e{bottom:914.080731pt;}
.y33{bottom:916.320000pt;}
.y141{bottom:918.560735pt;}
.y45{bottom:919.200735pt;}
.y9{bottom:924.640740pt;}
.y6d{bottom:933.600747pt;}
.y44{bottom:936.000749pt;}
.y8{bottom:952.640762pt;}
.y43{bottom:952.960762pt;}
.y42{bottom:980.640785pt;}
.y1{bottom:997.760798pt;}
.y3c{bottom:997.920798pt;}
.y41{bottom:998.720799pt;}
.y6{bottom:1000.960000pt;}
.y5{bottom:1004.800804pt;}
.y4{bottom:1006.080805pt;}
.y3e{bottom:1006.240805pt;}
.y3f{bottom:1012.960000pt;}
.y3a{bottom:1021.120000pt;}
.h1c{height:9.280000pt;}
.h10{height:16.640000pt;}
.h19{height:16.800000pt;}
.h13{height:17.920000pt;}
.h4{height:18.880000pt;}
.hc{height:22.880000pt;}
.h1e{height:23.256206pt;}
.h9{height:24.293712pt;}
.h1d{height:24.295494pt;}
.hf{height:25.713156pt;}
.h1{height:36.886311pt;}
.h11{height:36.887733pt;}
.h2{height:38.534710pt;}
.h12{height:38.536195pt;}
.he{height:38.561733pt;}
.h7{height:40.093352pt;}
.h18{height:40.096907pt;}
.ha{height:41.885070pt;}
.h15{height:41.888784pt;}
.h8{height:46.294518pt;}
.h5{height:47.465830pt;}
.h14{height:47.470038pt;}
.h1a{height:49.440000pt;}
.h3{height:50.285582pt;}
.h17{height:50.290040pt;}
.hb{height:52.153795pt;}
.h16{height:52.155376pt;}
.h1b{height:56.160000pt;}
.h6{height:59.285580pt;}
.hd{height:60.005648pt;}
.h0{height:1056.000000pt;}
.w26{width:3.520000pt;}
.w1b{width:4.000000pt;}
.w1e{width:4.160000pt;}
.w2f{width:4.800000pt;}
.w7{width:4.960000pt;}
.w27{width:7.200000pt;}
.w40{width:7.840000pt;}
.w28{width:8.000000pt;}
.w4{width:8.160000pt;}
.we{width:8.480000pt;}
.wd{width:8.640000pt;}
.w1{width:9.120000pt;}
.w1d{width:9.280000pt;}
.w14{width:10.240000pt;}
.w9{width:10.400000pt;}
.w3{width:12.000000pt;}
.wa{width:12.640000pt;}
.w3b{width:14.240000pt;}
.w34{width:17.600000pt;}
.w22{width:17.760000pt;}
.w2e{width:19.840000pt;}
.w13{width:21.280000pt;}
.wb{width:21.600000pt;}
.w19{width:24.000000pt;}
.w15{width:24.640000pt;}
.w18{width:25.120000pt;}
.wf{width:28.160000pt;}
.w1a{width:28.480000pt;}
.w3a{width:30.880000pt;}
.w1c{width:31.520000pt;}
.w3e{width:31.680000pt;}
.w31{width:32.160000pt;}
.w44{width:32.320000pt;}
.w2d{width:32.480000pt;}
.w35{width:32.640000pt;}
.w3f{width:34.400000pt;}
.w37{width:34.720000pt;}
.w47{width:35.200000pt;}
.w3c{width:36.320000pt;}
.w36{width:39.040000pt;}
.w32{width:39.360000pt;}
.w23{width:40.160000pt;}
.w45{width:40.320000pt;}
.w8{width:40.640000pt;}
.w39{width:42.720000pt;}
.w30{width:43.040000pt;}
.w1f{width:46.880000pt;}
.w43{width:52.320000pt;}
.w38{width:52.640000pt;}
.wc{width:52.960000pt;}
.w10{width:53.120000pt;}
.w29{width:53.280000pt;}
.w21{width:55.360000pt;}
.w2b{width:56.960000pt;}
.w42{width:57.600000pt;}
.w2c{width:59.520000pt;}
.w17{width:60.320000pt;}
.w25{width:61.760000pt;}
.w33{width:65.920000pt;}
.w11{width:70.880000pt;}
.w3d{width:71.040000pt;}
.w24{width:71.200000pt;}
.w20{width:71.840000pt;}
.w2a{width:95.040000pt;}
.w48{width:97.760000pt;}
.w41{width:101.600000pt;}
.w46{width:110.080000pt;}
.w49{width:119.040000pt;}
.w6{width:134.400000pt;}
.w12{width:141.600000pt;}
.w16{width:148.000000pt;}
.w2{width:284.480000pt;}
.w5{width:343.200000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x1{left:142.880114pt;}
.x5{left:147.520118pt;}
.x37{left:148.630937pt;}
.x1e{left:149.600000pt;}
.x1d{left:151.677626pt;}
.x38{left:154.079155pt;}
.x1c{left:155.200696pt;}
.x1b{left:158.720386pt;}
.x18{left:162.400130pt;}
.x62{left:165.440132pt;}
.x56{left:169.280000pt;}
.x57{left:173.920000pt;}
.x6f{left:178.398646pt;}
.x61{left:180.480000pt;}
.x5b{left:182.240000pt;}
.x5d{left:184.160000pt;}
.x16{left:186.080000pt;}
.x1a{left:188.000113pt;}
.x1f{left:190.240000pt;}
.xb{left:194.880156pt;}
.x8{left:196.800138pt;}
.xc{left:201.440161pt;}
.xd{left:202.560162pt;}
.xe{left:209.120167pt;}
.x5f{left:211.360000pt;}
.x7{left:214.560167pt;}
.x6{left:216.320173pt;}
.x4b{left:251.200000pt;}
.xa{left:256.800280pt;}
.x10{left:264.000211pt;}
.x50{left:275.680000pt;}
.x51{left:279.040223pt;}
.x66{left:282.240000pt;}
.x58{left:283.200000pt;}
.x67{left:285.760229pt;}
.x5c{left:290.080000pt;}
.x2d{left:291.200000pt;}
.x60{left:293.920000pt;}
.x36{left:297.600000pt;}
.x5e{left:303.840000pt;}
.x39{left:308.640000pt;}
.x3d{left:317.280254pt;}
.x4c{left:322.880000pt;}
.x3a{left:330.080000pt;}
.x49{left:333.760000pt;}
.x20{left:335.040000pt;}
.x9{left:338.240509pt;}
.x43{left:340.000000pt;}
.x55{left:346.080000pt;}
.x21{left:347.680000pt;}
.x69{left:352.160000pt;}
.x2e{left:356.320000pt;}
.x11{left:360.960289pt;}
.x3b{left:363.360000pt;}
.x3c{left:367.200000pt;}
.x6e{left:369.600000pt;}
.x44{left:380.480000pt;}
.x12{left:382.080000pt;}
.x14{left:386.400309pt;}
.xf{left:388.000310pt;}
.x25{left:391.680313pt;}
.x52{left:395.040000pt;}
.x6a{left:401.920000pt;}
.x22{left:404.320000pt;}
.x2f{left:407.360000pt;}
.x23{left:409.440000pt;}
.x6d{left:416.000000pt;}
.x3e{left:421.440000pt;}
.x4d{left:429.280000pt;}
.x30{left:430.720000pt;}
.x63{left:435.840000pt;}
.x4a{left:445.280000pt;}
.x3f{left:449.440000pt;}
.x45{left:452.800000pt;}
.x53{left:453.760000pt;}
.x31{left:455.200000pt;}
.x6c{left:460.320000pt;}
.x24{left:462.240000pt;}
.x68{left:467.200000pt;}
.x6b{left:471.040000pt;}
.x64{left:472.000000pt;}
.x15{left:476.640381pt;}
.x46{left:477.760000pt;}
.x40{left:482.560000pt;}
.x41{left:486.560000pt;}
.x4e{left:492.800000pt;}
.x26{left:499.680000pt;}
.x47{left:502.240000pt;}
.x2a{left:508.320407pt;}
.x65{left:509.440000pt;}
.x59{left:517.280000pt;}
.x32{left:524.160000pt;}
.x27{left:527.520000pt;}
.x17{left:529.120000pt;}
.x28{left:532.480000pt;}
.x3{left:554.400444pt;}
.x33{left:558.880000pt;}
.x48{left:560.000000pt;}
.x34{left:583.360000pt;}
.x29{left:585.600000pt;}
.x4f{left:598.240000pt;}
.x42{left:599.520000pt;}
.x2b{left:611.520000pt;}
.x5a{left:615.680000pt;}
.x19{left:616.640493pt;}
.x54{left:622.720000pt;}
.x35{left:636.000000pt;}
.x4{left:663.360000pt;}
.x13{left:666.400000pt;}
.x2{left:681.440545pt;}
.x2c{left:682.400000pt;}
}




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