
    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_bda98f29e6aea25f378755d2.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.776367;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_0316e6e4485a9d01ff1d620d.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.311035;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_889dee253e36e96af03c5d29.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.939941;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_19783016ff1bd81a3dc32244.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.774902;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_0c8d4b53e5623de149a1d420.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.284668;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_1d08b211c9f6f9748b96715c.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.963867;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_8ff2dbb69dfc9600b7115959.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.728516;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_e47a53e2645fedf6cccb0ecd.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.728027;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_2b3faa882136cfad1ea1055c.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.941406;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_3197ac2a84924fe6f9a24b07.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.687500;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_6c1b514c92b51ae8f1706e91.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.284180;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_ea82fc8b56362443d25effc8.woff2')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_8f0fc215489e4855c5098d21.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.921387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.288450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288450,0.000000,0.000000,0.250000,0,0);}
.v2{vertical-align:-85.680000px;}
.v5{vertical-align:-66.960000px;}
.v4{vertical-align:-45.360000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:20.880000px;}
.v1{vertical-align:33.120000px;}
.lsf{letter-spacing:-0.720000px;}
.ls6{letter-spacing:-0.360000px;}
.lse{letter-spacing:-0.288000px;}
.lsc{letter-spacing:-0.216000px;}
.ls5{letter-spacing:-0.166800px;}
.lsd{letter-spacing:-0.144000px;}
.ls7{letter-spacing:-0.127200px;}
.ls4{letter-spacing:0.000000px;}
.lsb{letter-spacing:0.144000px;}
.ls2{letter-spacing:0.180000px;}
.lsa{letter-spacing:0.288000px;}
.ls0{letter-spacing:0.360000px;}
.ls8{letter-spacing:0.720000px;}
.ls9{letter-spacing:2.160000px;}
.ls1{letter-spacing:100.440000px;}
.ls3{letter-spacing:117.360000px;}
.sc_{text-shadow:none;}
.sc2{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);}
.sc1{text-shadow:-0.015em 0 rgb(35,31,32),0 0.015em rgb(35,31,32),0.015em 0 rgb(35,31,32),0 -0.015em  rgb(35,31,32);}
.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(0,0,0);text-shadow:none;}
.sc1{-webkit-text-stroke:0.015em rgb(35,31,32);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws9{word-spacing:-40.896000px;}
.ws0{word-spacing:-20.566320px;}
.wsb{word-spacing:-18.720000px;}
.ws6{word-spacing:-18.288000px;}
.ws7{word-spacing:-18.144000px;}
.ws1{word-spacing:-18.000000px;}
.ws8{word-spacing:-17.856000px;}
.wsa{word-spacing:-17.712000px;}
.ws3{word-spacing:-14.940000px;}
.ws4{word-spacing:-12.060000px;}
.ws2{word-spacing:-0.059760px;}
.ws5{word-spacing:0.000000px;}
._5{margin-left:-5.640000px;}
._4{margin-left:-3.168000px;}
._3{margin-left:-2.088000px;}
._0{margin-left:-1.032000px;}
._1{width:1.188000px;}
._2{width:2.503920px;}
._8{width:3.736320px;}
._b{width:4.896000px;}
._c{width:6.120000px;}
._18{width:7.224000px;}
._9{width:8.568000px;}
._a{width:10.224000px;}
._14{width:11.916000px;}
._16{width:13.368000px;}
._15{width:14.580000px;}
._11{width:15.792000px;}
._10{width:16.848000px;}
._7{width:19.368000px;}
._f{width:20.448000px;}
._19{width:21.672000px;}
._17{width:22.752000px;}
._1c{width:24.708000px;}
._13{width:26.532000px;}
._12{width:27.576000px;}
._1a{width:28.656000px;}
._1b{width:29.664000px;}
._1d{width:31.320000px;}
._d{width:32.400000px;}
._e{width:33.768000px;}
._20{width:52.704000px;}
._1f{width:117.432000px;}
._21{width:198.888000px;}
._1e{width:209.016000px;}
._6{width:402.014640px;}
.fc3{color:rgb(0,0,255);}
.fc2{color:rgb(35,31,32);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fsa{font-size:12.240000px;}
.fsb{font-size:15.120000px;}
.fs6{font-size:30.240000px;}
.fs8{font-size:33.120000px;}
.fs5{font-size:45.360000px;}
.fs2{font-size:48.240000px;}
.fs9{font-size:54.000000px;}
.fs4{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs3{font-size:72.144000px;}
.fs7{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y7{bottom:2.310000px;}
.y105{bottom:4.125000px;}
.y5b{bottom:14.220000px;}
.ya2{bottom:21.960000px;}
.yf0{bottom:21.990000px;}
.yda{bottom:22.125000px;}
.yc3{bottom:22.135500px;}
.yad{bottom:22.305000px;}
.ya6{bottom:22.320000px;}
.ya9{bottom:22.350000px;}
.yab{bottom:22.485000px;}
.yaf{bottom:22.495500px;}
.ya4{bottom:22.500000px;}
.yc5{bottom:22.545000px;}
.y6{bottom:23.010000px;}
.y60{bottom:36.180000px;}
.y5{bottom:43.710000px;}
.ye3{bottom:45.900000px;}
.yd9{bottom:45.930000px;}
.ye1{bottom:46.080000px;}
.ydc{bottom:46.245000px;}
.yde{bottom:46.249500px;}
.yc7{bottom:46.260000px;}
.ya8{bottom:46.290000px;}
.y3{bottom:46.620000px;}
.y5f{bottom:56.160000px;}
.y2{bottom:66.456000px;}
.yee{bottom:83.920500px;}
.y1{bottom:86.436000px;}
.y11a{bottom:96.156000px;}
.y132{bottom:96.336000px;}
.y8d{bottom:96.516000px;}
.y9a{bottom:96.876000px;}
.yc2{bottom:102.100500px;}
.ydd{bottom:107.680500px;}
.y119{bottom:116.856000px;}
.y8c{bottom:117.216000px;}
.y99{bottom:117.576000px;}
.y131{bottom:119.916000px;}
.y3e{bottom:121.896000px;}
.yae{bottom:124.780500px;}
.y118{bottom:137.556000px;}
.y8b{bottom:137.916000px;}
.y98{bottom:138.276000px;}
.y3d{bottom:138.996000px;}
.yed{bottom:145.656000px;}
.y130{bottom:155.910000px;}
.y117{bottom:158.250000px;}
.y8a{bottom:158.970000px;}
.y104{bottom:159.705000px;}
.yc1{bottom:163.830000px;}
.yec{bottom:166.350000px;}
.y3c{bottom:176.250000px;}
.y116{bottom:178.950000px;}
.y12f{bottom:179.490000px;}
.y89{bottom:179.670000px;}
.yac{bottom:181.665000px;}
.yc0{bottom:184.530000px;}
.yeb{bottom:187.410000px;}
.ydb{bottom:188.325000px;}
.y3b{bottom:190.110000px;}
.y115{bottom:199.290000px;}
.y88{bottom:200.370000px;}
.y103{bottom:203.250000px;}
.y3a{bottom:203.790000px;}
.ybf{bottom:205.590000px;}
.yea{bottom:208.110000px;}
.y12e{bottom:215.490000px;}
.y39{bottom:217.470000px;}
.y114{bottom:219.990000px;}
.y97{bottom:220.710000px;}
.y87{bottom:221.070000px;}
.y59{bottom:222.150000px;}
.y102{bottom:223.950000px;}
.ybe{bottom:226.290000px;}
.ye9{bottom:228.810000px;}
.y38{bottom:231.510000px;}
.y58{bottom:237.630000px;}
.yaa{bottom:238.365000px;}
.y12d{bottom:239.070000px;}
.y113{bottom:241.050000px;}
.y96{bottom:241.410000px;}
.y86{bottom:241.770000px;}
.y101{bottom:245.010000px;}
.y37{bottom:245.190000px;}
.ybd{bottom:246.990000px;}
.ye8{bottom:249.510000px;}
.y36{bottom:258.870000px;}
.y112{bottom:261.750000px;}
.y85{bottom:262.470000px;}
.y12c{bottom:262.830000px;}
.y100{bottom:265.710000px;}
.ybc{bottom:267.690000px;}
.yd8{bottom:269.685000px;}
.y57{bottom:269.850000px;}
.ye7{bottom:270.210000px;}
.y35{bottom:272.910000px;}
.y111{bottom:282.450000px;}
.y84{bottom:283.170000px;}
.y14f{bottom:286.230000px;}
.yff{bottom:286.410000px;}
.y34{bottom:286.590000px;}
.ybb{bottom:288.390000px;}
.y56{bottom:290.550000px;}
.ya7{bottom:295.245000px;}
.y12b{bottom:298.830000px;}
.y33{bottom:300.450000px;}
.y110{bottom:303.150000px;}
.y83{bottom:303.510000px;}
.y95{bottom:303.870000px;}
.y14e{bottom:306.930000px;}
.yfe{bottom:307.110000px;}
.yba{bottom:309.135000px;}
.y55{bottom:311.295000px;}
.y32{bottom:314.175000px;}
.y12a{bottom:322.455000px;}
.y10f{bottom:323.895000px;}
.y82{bottom:324.255000px;}
.y94{bottom:324.615000px;}
.yfd{bottom:327.855000px;}
.y31{bottom:328.035000px;}
.yb9{bottom:329.835000px;}
.y54{bottom:331.995000px;}
.ye6{bottom:332.355000px;}
.y30{bottom:341.895000px;}
.y14d{bottom:342.795000px;}
.y10e{bottom:344.595000px;}
.y81{bottom:345.315000px;}
.y129{bottom:346.395000px;}
.yfc{bottom:348.555000px;}
.yb8{bottom:350.175000px;}
.y53{bottom:352.695000px;}
.ye5{bottom:353.055000px;}
.yd7{bottom:355.215000px;}
.y2f{bottom:355.575000px;}
.y10d{bottom:364.935000px;}
.y80{bottom:366.015000px;}
.y14c{bottom:366.375000px;}
.ye4{bottom:369.255000px;}
.y2e{bottom:369.435000px;}
.y128{bottom:370.155000px;}
.yb7{bottom:370.875000px;}
.y52{bottom:373.395000px;}
.ya5{bottom:375.915000px;}
.y2d{bottom:383.295000px;}
.y10c{bottom:385.635000px;}
.y7f{bottom:386.715000px;}
.yfb{bottom:389.955000px;}
.yb6{bottom:391.935000px;}
.y51{bottom:394.095000px;}
.yd6{bottom:396.975000px;}
.y2c{bottom:397.155000px;}
.y14b{bottom:402.375000px;}
.y127{bottom:406.155000px;}
.y10b{bottom:406.695000px;}
.y7e{bottom:407.415000px;}
.yfa{bottom:410.295000px;}
.y2b{bottom:410.655000px;}
.yb5{bottom:412.635000px;}
.y50{bottom:414.795000px;}
.yd5{bottom:417.675000px;}
.y2a{bottom:424.695000px;}
.y14a{bottom:426.135000px;}
.y10a{bottom:427.395000px;}
.y93{bottom:427.755000px;}
.y7d{bottom:428.115000px;}
.yb4{bottom:428.835000px;}
.y126{bottom:429.735000px;}
.yf9{bottom:430.995000px;}
.ya3{bottom:432.615000px;}
.y4f{bottom:435.495000px;}
.yd4{bottom:438.375000px;}
.y29{bottom:438.555000px;}
.y109{bottom:448.095000px;}
.yf8{bottom:448.275000px;}
.y92{bottom:448.455000px;}
.y7c{bottom:448.815000px;}
.y149{bottom:449.895000px;}
.y28{bottom:452.235000px;}
.y125{bottom:453.495000px;}
.y4e{bottom:456.195000px;}
.yd3{bottom:459.075000px;}
.y108{bottom:464.295000px;}
.y27{bottom:465.915000px;}
.y7b{bottom:469.515000px;}
.y148{bottom:473.655000px;}
.y4d{bottom:476.895000px;}
.yd2{bottom:479.775000px;}
.y26{bottom:479.955000px;}
.y124{bottom:489.495000px;}
.y7a{bottom:490.215000px;}
.y25{bottom:493.635000px;}
.y147{bottom:497.415000px;}
.y4c{bottom:497.595000px;}
.yd1{bottom:500.475000px;}
.y24{bottom:507.315000px;}
.y79{bottom:510.915000px;}
.y123{bottom:513.075000px;}
.y4b{bottom:518.295000px;}
.yd0{bottom:520.815000px;}
.y23{bottom:521.175000px;}
.yca{bottom:526.395000px;}
.yf7{bottom:528.915000px;}
.y78{bottom:531.615000px;}
.y146{bottom:533.415000px;}
.y22{bottom:535.035000px;}
.y4a{bottom:538.995000px;}
.ycf{bottom:541.515000px;}
.y21{bottom:548.895000px;}
.y122{bottom:549.075000px;}
.ya1{bottom:551.955000px;}
.y77{bottom:552.315000px;}
.y145{bottom:556.995000px;}
.y49{bottom:559.695000px;}
.y20{bottom:562.425000px;}
.yce{bottom:562.605000px;}
.ya0{bottom:572.685000px;}
.y121{bottom:572.865000px;}
.y76{bottom:573.045000px;}
.y1f{bottom:577.185000px;}
.y48{bottom:580.425000px;}
.yc9{bottom:583.125000px;}
.ycd{bottom:583.305000px;}
.y144{bottom:593.025000px;}
.y120{bottom:593.385000px;}
.y1e{bottom:593.745000px;}
.y47{bottom:601.125000px;}
.ycc{bottom:604.005000px;}
.y1d{bottom:607.425000px;}
.yf6{bottom:609.585000px;}
.y11f{bottom:614.085000px;}
.y75{bottom:614.445000px;}
.y143{bottom:616.785000px;}
.ycb{bottom:620.205000px;}
.y1c{bottom:621.285000px;}
.y46{bottom:621.825000px;}
.y1b{bottom:635.145000px;}
.y45{bottom:642.525000px;}
.y1a{bottom:648.825000px;}
.y142{bottom:652.605000px;}
.y11e{bottom:655.485000px;}
.y74{bottom:655.845000px;}
.y19{bottom:662.865000px;}
.y44{bottom:663.225000px;}
.yc8{bottom:663.765000px;}
.yf5{bottom:666.465000px;}
.y11d{bottom:676.185000px;}
.y141{bottom:676.365000px;}
.y73{bottom:676.545000px;}
.y18{bottom:681.045000px;}
.y43{bottom:683.925000px;}
.y72{bottom:697.245000px;}
.y17{bottom:699.765000px;}
.y140{bottom:700.125000px;}
.y42{bottom:704.625000px;}
.y16{bottom:716.865000px;}
.y91{bottom:717.405000px;}
.y71{bottom:717.765000px;}
.yc6{bottom:720.465000px;}
.y41{bottom:725.325000px;}
.y15{bottom:734.145000px;}
.y13f{bottom:736.125000px;}
.y90{bottom:738.105000px;}
.y70{bottom:738.465000px;}
.y40{bottom:746.025000px;}
.yf4{bottom:746.925000px;}
.y14{bottom:751.425000px;}
.y9f{bottom:758.805000px;}
.y6f{bottom:759.165000px;}
.y13e{bottom:759.705000px;}
.y3f{bottom:766.725000px;}
.y13{bottom:768.885000px;}
.y9e{bottom:779.505000px;}
.y6e{bottom:779.865000px;}
.y12{bottom:783.825000px;}
.y11{bottom:793.545000px;}
.y13d{bottom:795.705000px;}
.y6d{bottom:800.565000px;}
.yc4{bottom:801.105000px;}
.y10{bottom:802.365000px;}
.y13c{bottom:819.330000px;}
.y6c{bottom:821.310000px;}
.yf3{bottom:827.610000px;}
.y4{bottom:831.420000px;}
.y8{bottom:842.010000px;}
.y13b{bottom:843.090000px;}
.ye2{bottom:843.450000px;}
.y107{bottom:852.270000px;}
.yb3{bottom:858.030000px;}
.y6b{bottom:862.710000px;}
.y13a{bottom:879.090000px;}
.y8f{bottom:883.050000px;}
.y6a{bottom:883.410000px;}
.y139{bottom:902.850000px;}
.y8e{bottom:903.750000px;}
.y69{bottom:904.110000px;}
.yf2{bottom:908.250000px;}
.y106{bottom:908.970000px;}
.yf{bottom:910.590000px;}
.yb2{bottom:914.730000px;}
.ye{bottom:923.370000px;}
.ye0{bottom:924.090000px;}
.y68{bottom:924.810000px;}
.y138{bottom:938.670000px;}
.y9d{bottom:945.150000px;}
.y67{bottom:945.510000px;}
.y137{bottom:962.430000px;}
.yf1{bottom:965.130000px;}
.y9c{bottom:965.850000px;}
.y66{bottom:966.210000px;}
.yd{bottom:968.910000px;}
.yb1{bottom:971.610000px;}
.y136{bottom:986.190000px;}
.y65{bottom:986.910000px;}
.ydf{bottom:1004.550000px;}
.y11c{bottom:1007.250000px;}
.y64{bottom:1007.610000px;}
.y135{bottom:1022.190000px;}
.y11b{bottom:1027.950000px;}
.y63{bottom:1028.310000px;}
.yb0{bottom:1028.490000px;}
.ya{bottom:1030.290000px;}
.y134{bottom:1045.770000px;}
.yef{bottom:1046.490000px;}
.y62{bottom:1049.010000px;}
.y9{bottom:1050.990000px;}
.y61{bottom:1069.380000px;}
.y133{bottom:1069.560000px;}
.y9b{bottom:1069.740000px;}
.yc{bottom:1106.460000px;}
.y5a{bottom:1108.080000px;}
.y5d{bottom:1116.540000px;}
.yb{bottom:1120.680000px;}
.y5c{bottom:1137.060000px;}
.y5e{bottom:1171.620000px;}
.hd{height:8.773594px;}
.he{height:10.830586px;}
.ha{height:25.163437px;}
.h8{height:29.678906px;}
.h15{height:29.700000px;}
.h2b{height:38.685000px;}
.h28{height:38.722500px;}
.h5{height:42.602344px;}
.h7{height:44.518359px;}
.h10{height:45.403594px;}
.hc{height:45.457031px;}
.h16{height:47.221875px;}
.h12{height:47.344922px;}
.h4{height:48.616875px;}
.h1{height:50.326875px;}
.h6{height:51.328125px;}
.h11{height:51.356250px;}
.h27{height:52.066406px;}
.h14{height:52.998047px;}
.hb{height:55.760625px;}
.h18{height:56.685000px;}
.h1e{height:56.700000px;}
.h1c{height:56.722500px;}
.h21{height:56.730000px;}
.h19{height:56.865000px;}
.h1b{height:56.875500px;}
.h1d{height:56.880000px;}
.h1f{height:56.916000px;}
.hf{height:58.651172px;}
.h2{height:60.300000px;}
.h23{height:70.628906px;}
.h13{height:70.664062px;}
.h17{height:72.562500px;}
.h26{height:80.460000px;}
.h22{height:80.625000px;}
.h24{height:80.635500px;}
.h20{height:80.640000px;}
.h1a{height:80.661000px;}
.h25{height:80.662500px;}
.h2a{height:80.670000px;}
.h29{height:80.676000px;}
.h3{height:81.736875px;}
.h9{height:84.898125px;}
.h0{height:1188.000000px;}
.wd{width:91.080000px;}
.wc{width:94.356000px;}
.w12{width:101.196000px;}
.w15{width:114.681000px;}
.wf{width:114.825000px;}
.w1a{width:117.885000px;}
.w16{width:121.485000px;}
.w11{width:122.962500px;}
.w5{width:128.376000px;}
.w10{width:131.421000px;}
.w13{width:141.840000px;}
.wb{width:145.822500px;}
.w14{width:148.536000px;}
.we{width:153.030000px;}
.w8{width:156.810000px;}
.w4{width:167.070000px;}
.w9{width:168.690000px;}
.wa{width:168.855000px;}
.w19{width:172.275000px;}
.w3{width:198.925500px;}
.w7{width:209.185500px;}
.w6{width:223.935000px;}
.w17{width:235.330500px;}
.w18{width:238.530000px;}
.w2{width:406.260000px;}
.w1{width:783.360000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x14{left:8.385000px;}
.x3{left:58.500000px;}
.x1a{left:62.131500px;}
.x4{left:67.320000px;}
.x19{left:72.904500px;}
.x9{left:76.500000px;}
.x17{left:81.000000px;}
.x2b{left:90.544500px;}
.x30{left:135.036000px;}
.x5{left:174.810000px;}
.x27{left:195.870000px;}
.x6{left:206.310000px;}
.x15{left:207.390000px;}
.x8{left:213.870000px;}
.x21{left:218.730000px;}
.x1b{left:271.830000px;}
.x1e{left:282.090000px;}
.x28{left:297.075000px;}
.x22{left:313.095000px;}
.x2c{left:325.875000px;}
.x12{left:351.435000px;}
.xa{left:369.075000px;}
.xb{left:383.475000px;}
.xc{left:393.735000px;}
.xd{left:401.655000px;}
.x23{left:404.175000px;}
.xe{left:411.915000px;}
.xf{left:423.795000px;}
.x10{left:438.195000px;}
.x2{left:450.075000px;}
.x1{left:459.075000px;}
.x18{left:463.575000px;}
.x16{left:470.055000px;}
.x7{left:472.215000px;}
.x11{left:509.325000px;}
.x13{left:511.560000px;}
.x24{left:557.220000px;}
.x2d{left:564.420000px;}
.x1c{left:567.300000px;}
.x29{left:587.460000px;}
.x1f{left:607.620000px;}
.x25{left:672.060000px;}
.x1d{left:693.150000px;}
.x2f{left:695.850000px;}
.x2a{left:702.150000px;}
.x20{left:712.050000px;}
.x2e{left:736.890000px;}
.x26{left:778.650000px;}
@media print{
.v2{vertical-align:-76.160000pt;}
.v5{vertical-align:-59.520000pt;}
.v4{vertical-align:-40.320000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:18.560000pt;}
.v1{vertical-align:29.440000pt;}
.lsf{letter-spacing:-0.640000pt;}
.ls6{letter-spacing:-0.320000pt;}
.lse{letter-spacing:-0.256000pt;}
.lsc{letter-spacing:-0.192000pt;}
.ls5{letter-spacing:-0.148267pt;}
.lsd{letter-spacing:-0.128000pt;}
.ls7{letter-spacing:-0.113067pt;}
.ls4{letter-spacing:0.000000pt;}
.lsb{letter-spacing:0.128000pt;}
.ls2{letter-spacing:0.160000pt;}
.lsa{letter-spacing:0.256000pt;}
.ls0{letter-spacing:0.320000pt;}
.ls8{letter-spacing:0.640000pt;}
.ls9{letter-spacing:1.920000pt;}
.ls1{letter-spacing:89.280000pt;}
.ls3{letter-spacing:104.320000pt;}
.ws9{word-spacing:-36.352000pt;}
.ws0{word-spacing:-18.281173pt;}
.wsb{word-spacing:-16.640000pt;}
.ws6{word-spacing:-16.256000pt;}
.ws7{word-spacing:-16.128000pt;}
.ws1{word-spacing:-16.000000pt;}
.ws8{word-spacing:-15.872000pt;}
.wsa{word-spacing:-15.744000pt;}
.ws3{word-spacing:-13.280000pt;}
.ws4{word-spacing:-10.720000pt;}
.ws2{word-spacing:-0.053120pt;}
.ws5{word-spacing:0.000000pt;}
._5{margin-left:-5.013333pt;}
._4{margin-left:-2.816000pt;}
._3{margin-left:-1.856000pt;}
._0{margin-left:-0.917333pt;}
._1{width:1.056000pt;}
._2{width:2.225707pt;}
._8{width:3.321173pt;}
._b{width:4.352000pt;}
._c{width:5.440000pt;}
._18{width:6.421333pt;}
._9{width:7.616000pt;}
._a{width:9.088000pt;}
._14{width:10.592000pt;}
._16{width:11.882667pt;}
._15{width:12.960000pt;}
._11{width:14.037333pt;}
._10{width:14.976000pt;}
._7{width:17.216000pt;}
._f{width:18.176000pt;}
._19{width:19.264000pt;}
._17{width:20.224000pt;}
._1c{width:21.962667pt;}
._13{width:23.584000pt;}
._12{width:24.512000pt;}
._1a{width:25.472000pt;}
._1b{width:26.368000pt;}
._1d{width:27.840000pt;}
._d{width:28.800000pt;}
._e{width:30.016000pt;}
._20{width:46.848000pt;}
._1f{width:104.384000pt;}
._21{width:176.789333pt;}
._1e{width:185.792000pt;}
._6{width:357.346347pt;}
.fsa{font-size:10.880000pt;}
.fsb{font-size:13.440000pt;}
.fs6{font-size:26.880000pt;}
.fs8{font-size:29.440000pt;}
.fs5{font-size:40.320000pt;}
.fs2{font-size:42.880000pt;}
.fs9{font-size:48.000000pt;}
.fs4{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs3{font-size:64.128000pt;}
.fs7{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y7{bottom:2.053333pt;}
.y105{bottom:3.666667pt;}
.y5b{bottom:12.640000pt;}
.ya2{bottom:19.520000pt;}
.yf0{bottom:19.546667pt;}
.yda{bottom:19.666667pt;}
.yc3{bottom:19.676000pt;}
.yad{bottom:19.826667pt;}
.ya6{bottom:19.840000pt;}
.ya9{bottom:19.866667pt;}
.yab{bottom:19.986667pt;}
.yaf{bottom:19.996000pt;}
.ya4{bottom:20.000000pt;}
.yc5{bottom:20.040000pt;}
.y6{bottom:20.453333pt;}
.y60{bottom:32.160000pt;}
.y5{bottom:38.853333pt;}
.ye3{bottom:40.800000pt;}
.yd9{bottom:40.826667pt;}
.ye1{bottom:40.960000pt;}
.ydc{bottom:41.106667pt;}
.yde{bottom:41.110667pt;}
.yc7{bottom:41.120000pt;}
.ya8{bottom:41.146667pt;}
.y3{bottom:41.440000pt;}
.y5f{bottom:49.920000pt;}
.y2{bottom:59.072000pt;}
.yee{bottom:74.596000pt;}
.y1{bottom:76.832000pt;}
.y11a{bottom:85.472000pt;}
.y132{bottom:85.632000pt;}
.y8d{bottom:85.792000pt;}
.y9a{bottom:86.112000pt;}
.yc2{bottom:90.756000pt;}
.ydd{bottom:95.716000pt;}
.y119{bottom:103.872000pt;}
.y8c{bottom:104.192000pt;}
.y99{bottom:104.512000pt;}
.y131{bottom:106.592000pt;}
.y3e{bottom:108.352000pt;}
.yae{bottom:110.916000pt;}
.y118{bottom:122.272000pt;}
.y8b{bottom:122.592000pt;}
.y98{bottom:122.912000pt;}
.y3d{bottom:123.552000pt;}
.yed{bottom:129.472000pt;}
.y130{bottom:138.586667pt;}
.y117{bottom:140.666667pt;}
.y8a{bottom:141.306667pt;}
.y104{bottom:141.960000pt;}
.yc1{bottom:145.626667pt;}
.yec{bottom:147.866667pt;}
.y3c{bottom:156.666667pt;}
.y116{bottom:159.066667pt;}
.y12f{bottom:159.546667pt;}
.y89{bottom:159.706667pt;}
.yac{bottom:161.480000pt;}
.yc0{bottom:164.026667pt;}
.yeb{bottom:166.586667pt;}
.ydb{bottom:167.400000pt;}
.y3b{bottom:168.986667pt;}
.y115{bottom:177.146667pt;}
.y88{bottom:178.106667pt;}
.y103{bottom:180.666667pt;}
.y3a{bottom:181.146667pt;}
.ybf{bottom:182.746667pt;}
.yea{bottom:184.986667pt;}
.y12e{bottom:191.546667pt;}
.y39{bottom:193.306667pt;}
.y114{bottom:195.546667pt;}
.y97{bottom:196.186667pt;}
.y87{bottom:196.506667pt;}
.y59{bottom:197.466667pt;}
.y102{bottom:199.066667pt;}
.ybe{bottom:201.146667pt;}
.ye9{bottom:203.386667pt;}
.y38{bottom:205.786667pt;}
.y58{bottom:211.226667pt;}
.yaa{bottom:211.880000pt;}
.y12d{bottom:212.506667pt;}
.y113{bottom:214.266667pt;}
.y96{bottom:214.586667pt;}
.y86{bottom:214.906667pt;}
.y101{bottom:217.786667pt;}
.y37{bottom:217.946667pt;}
.ybd{bottom:219.546667pt;}
.ye8{bottom:221.786667pt;}
.y36{bottom:230.106667pt;}
.y112{bottom:232.666667pt;}
.y85{bottom:233.306667pt;}
.y12c{bottom:233.626667pt;}
.y100{bottom:236.186667pt;}
.ybc{bottom:237.946667pt;}
.yd8{bottom:239.720000pt;}
.y57{bottom:239.866667pt;}
.ye7{bottom:240.186667pt;}
.y35{bottom:242.586667pt;}
.y111{bottom:251.066667pt;}
.y84{bottom:251.706667pt;}
.y14f{bottom:254.426667pt;}
.yff{bottom:254.586667pt;}
.y34{bottom:254.746667pt;}
.ybb{bottom:256.346667pt;}
.y56{bottom:258.266667pt;}
.ya7{bottom:262.440000pt;}
.y12b{bottom:265.626667pt;}
.y33{bottom:267.066667pt;}
.y110{bottom:269.466667pt;}
.y83{bottom:269.786667pt;}
.y95{bottom:270.106667pt;}
.y14e{bottom:272.826667pt;}
.yfe{bottom:272.986667pt;}
.yba{bottom:274.786667pt;}
.y55{bottom:276.706667pt;}
.y32{bottom:279.266667pt;}
.y12a{bottom:286.626667pt;}
.y10f{bottom:287.906667pt;}
.y82{bottom:288.226667pt;}
.y94{bottom:288.546667pt;}
.yfd{bottom:291.426667pt;}
.y31{bottom:291.586667pt;}
.yb9{bottom:293.186667pt;}
.y54{bottom:295.106667pt;}
.ye6{bottom:295.426667pt;}
.y30{bottom:303.906667pt;}
.y14d{bottom:304.706667pt;}
.y10e{bottom:306.306667pt;}
.y81{bottom:306.946667pt;}
.y129{bottom:307.906667pt;}
.yfc{bottom:309.826667pt;}
.yb8{bottom:311.266667pt;}
.y53{bottom:313.506667pt;}
.ye5{bottom:313.826667pt;}
.yd7{bottom:315.746667pt;}
.y2f{bottom:316.066667pt;}
.y10d{bottom:324.386667pt;}
.y80{bottom:325.346667pt;}
.y14c{bottom:325.666667pt;}
.ye4{bottom:328.226667pt;}
.y2e{bottom:328.386667pt;}
.y128{bottom:329.026667pt;}
.yb7{bottom:329.666667pt;}
.y52{bottom:331.906667pt;}
.ya5{bottom:334.146667pt;}
.y2d{bottom:340.706667pt;}
.y10c{bottom:342.786667pt;}
.y7f{bottom:343.746667pt;}
.yfb{bottom:346.626667pt;}
.yb6{bottom:348.386667pt;}
.y51{bottom:350.306667pt;}
.yd6{bottom:352.866667pt;}
.y2c{bottom:353.026667pt;}
.y14b{bottom:357.666667pt;}
.y127{bottom:361.026667pt;}
.y10b{bottom:361.506667pt;}
.y7e{bottom:362.146667pt;}
.yfa{bottom:364.706667pt;}
.y2b{bottom:365.026667pt;}
.yb5{bottom:366.786667pt;}
.y50{bottom:368.706667pt;}
.yd5{bottom:371.266667pt;}
.y2a{bottom:377.506667pt;}
.y14a{bottom:378.786667pt;}
.y10a{bottom:379.906667pt;}
.y93{bottom:380.226667pt;}
.y7d{bottom:380.546667pt;}
.yb4{bottom:381.186667pt;}
.y126{bottom:381.986667pt;}
.yf9{bottom:383.106667pt;}
.ya3{bottom:384.546667pt;}
.y4f{bottom:387.106667pt;}
.yd4{bottom:389.666667pt;}
.y29{bottom:389.826667pt;}
.y109{bottom:398.306667pt;}
.yf8{bottom:398.466667pt;}
.y92{bottom:398.626667pt;}
.y7c{bottom:398.946667pt;}
.y149{bottom:399.906667pt;}
.y28{bottom:401.986667pt;}
.y125{bottom:403.106667pt;}
.y4e{bottom:405.506667pt;}
.yd3{bottom:408.066667pt;}
.y108{bottom:412.706667pt;}
.y27{bottom:414.146667pt;}
.y7b{bottom:417.346667pt;}
.y148{bottom:421.026667pt;}
.y4d{bottom:423.906667pt;}
.yd2{bottom:426.466667pt;}
.y26{bottom:426.626667pt;}
.y124{bottom:435.106667pt;}
.y7a{bottom:435.746667pt;}
.y25{bottom:438.786667pt;}
.y147{bottom:442.146667pt;}
.y4c{bottom:442.306667pt;}
.yd1{bottom:444.866667pt;}
.y24{bottom:450.946667pt;}
.y79{bottom:454.146667pt;}
.y123{bottom:456.066667pt;}
.y4b{bottom:460.706667pt;}
.yd0{bottom:462.946667pt;}
.y23{bottom:463.266667pt;}
.yca{bottom:467.906667pt;}
.yf7{bottom:470.146667pt;}
.y78{bottom:472.546667pt;}
.y146{bottom:474.146667pt;}
.y22{bottom:475.586667pt;}
.y4a{bottom:479.106667pt;}
.ycf{bottom:481.346667pt;}
.y21{bottom:487.906667pt;}
.y122{bottom:488.066667pt;}
.ya1{bottom:490.626667pt;}
.y77{bottom:490.946667pt;}
.y145{bottom:495.106667pt;}
.y49{bottom:497.506667pt;}
.y20{bottom:499.933333pt;}
.yce{bottom:500.093333pt;}
.ya0{bottom:509.053333pt;}
.y121{bottom:509.213333pt;}
.y76{bottom:509.373333pt;}
.y1f{bottom:513.053333pt;}
.y48{bottom:515.933333pt;}
.yc9{bottom:518.333333pt;}
.ycd{bottom:518.493333pt;}
.y144{bottom:527.133333pt;}
.y120{bottom:527.453333pt;}
.y1e{bottom:527.773333pt;}
.y47{bottom:534.333333pt;}
.ycc{bottom:536.893333pt;}
.y1d{bottom:539.933333pt;}
.yf6{bottom:541.853333pt;}
.y11f{bottom:545.853333pt;}
.y75{bottom:546.173333pt;}
.y143{bottom:548.253333pt;}
.ycb{bottom:551.293333pt;}
.y1c{bottom:552.253333pt;}
.y46{bottom:552.733333pt;}
.y1b{bottom:564.573333pt;}
.y45{bottom:571.133333pt;}
.y1a{bottom:576.733333pt;}
.y142{bottom:580.093333pt;}
.y11e{bottom:582.653333pt;}
.y74{bottom:582.973333pt;}
.y19{bottom:589.213333pt;}
.y44{bottom:589.533333pt;}
.yc8{bottom:590.013333pt;}
.yf5{bottom:592.413333pt;}
.y11d{bottom:601.053333pt;}
.y141{bottom:601.213333pt;}
.y73{bottom:601.373333pt;}
.y18{bottom:605.373333pt;}
.y43{bottom:607.933333pt;}
.y72{bottom:619.773333pt;}
.y17{bottom:622.013333pt;}
.y140{bottom:622.333333pt;}
.y42{bottom:626.333333pt;}
.y16{bottom:637.213333pt;}
.y91{bottom:637.693333pt;}
.y71{bottom:638.013333pt;}
.yc6{bottom:640.413333pt;}
.y41{bottom:644.733333pt;}
.y15{bottom:652.573333pt;}
.y13f{bottom:654.333333pt;}
.y90{bottom:656.093333pt;}
.y70{bottom:656.413333pt;}
.y40{bottom:663.133333pt;}
.yf4{bottom:663.933333pt;}
.y14{bottom:667.933333pt;}
.y9f{bottom:674.493333pt;}
.y6f{bottom:674.813333pt;}
.y13e{bottom:675.293333pt;}
.y3f{bottom:681.533333pt;}
.y13{bottom:683.453333pt;}
.y9e{bottom:692.893333pt;}
.y6e{bottom:693.213333pt;}
.y12{bottom:696.733333pt;}
.y11{bottom:705.373333pt;}
.y13d{bottom:707.293333pt;}
.y6d{bottom:711.613333pt;}
.yc4{bottom:712.093333pt;}
.y10{bottom:713.213333pt;}
.y13c{bottom:728.293333pt;}
.y6c{bottom:730.053333pt;}
.yf3{bottom:735.653333pt;}
.y4{bottom:739.040000pt;}
.y8{bottom:748.453333pt;}
.y13b{bottom:749.413333pt;}
.ye2{bottom:749.733333pt;}
.y107{bottom:757.573333pt;}
.yb3{bottom:762.693333pt;}
.y6b{bottom:766.853333pt;}
.y13a{bottom:781.413333pt;}
.y8f{bottom:784.933333pt;}
.y6a{bottom:785.253333pt;}
.y139{bottom:802.533333pt;}
.y8e{bottom:803.333333pt;}
.y69{bottom:803.653333pt;}
.yf2{bottom:807.333333pt;}
.y106{bottom:807.973333pt;}
.yf{bottom:809.413333pt;}
.yb2{bottom:813.093333pt;}
.ye{bottom:820.773333pt;}
.ye0{bottom:821.413333pt;}
.y68{bottom:822.053333pt;}
.y138{bottom:834.373333pt;}
.y9d{bottom:840.133333pt;}
.y67{bottom:840.453333pt;}
.y137{bottom:855.493333pt;}
.yf1{bottom:857.893333pt;}
.y9c{bottom:858.533333pt;}
.y66{bottom:858.853333pt;}
.yd{bottom:861.253333pt;}
.yb1{bottom:863.653333pt;}
.y136{bottom:876.613333pt;}
.y65{bottom:877.253333pt;}
.ydf{bottom:892.933333pt;}
.y11c{bottom:895.333333pt;}
.y64{bottom:895.653333pt;}
.y135{bottom:908.613333pt;}
.y11b{bottom:913.733333pt;}
.y63{bottom:914.053333pt;}
.yb0{bottom:914.213333pt;}
.ya{bottom:915.813333pt;}
.y134{bottom:929.573333pt;}
.yef{bottom:930.213333pt;}
.y62{bottom:932.453333pt;}
.y9{bottom:934.213333pt;}
.y61{bottom:950.560000pt;}
.y133{bottom:950.720000pt;}
.y9b{bottom:950.880000pt;}
.yc{bottom:983.520000pt;}
.y5a{bottom:984.960000pt;}
.y5d{bottom:992.480000pt;}
.yb{bottom:996.160000pt;}
.y5c{bottom:1010.720000pt;}
.y5e{bottom:1041.440000pt;}
.hd{height:7.798750pt;}
.he{height:9.627187pt;}
.ha{height:22.367500pt;}
.h8{height:26.381250pt;}
.h15{height:26.400000pt;}
.h2b{height:34.386667pt;}
.h28{height:34.420000pt;}
.h5{height:37.868750pt;}
.h7{height:39.571875pt;}
.h10{height:40.358750pt;}
.hc{height:40.406250pt;}
.h16{height:41.975000pt;}
.h12{height:42.084375pt;}
.h4{height:43.215000pt;}
.h1{height:44.735000pt;}
.h6{height:45.625000pt;}
.h11{height:45.650000pt;}
.h27{height:46.281250pt;}
.h14{height:47.109375pt;}
.hb{height:49.565000pt;}
.h18{height:50.386667pt;}
.h1e{height:50.400000pt;}
.h1c{height:50.420000pt;}
.h21{height:50.426667pt;}
.h19{height:50.546667pt;}
.h1b{height:50.556000pt;}
.h1d{height:50.560000pt;}
.h1f{height:50.592000pt;}
.hf{height:52.134375pt;}
.h2{height:53.600000pt;}
.h23{height:62.781250pt;}
.h13{height:62.812500pt;}
.h17{height:64.500000pt;}
.h26{height:71.520000pt;}
.h22{height:71.666667pt;}
.h24{height:71.676000pt;}
.h20{height:71.680000pt;}
.h1a{height:71.698667pt;}
.h25{height:71.700000pt;}
.h2a{height:71.706667pt;}
.h29{height:71.712000pt;}
.h3{height:72.655000pt;}
.h9{height:75.465000pt;}
.h0{height:1056.000000pt;}
.wd{width:80.960000pt;}
.wc{width:83.872000pt;}
.w12{width:89.952000pt;}
.w15{width:101.938667pt;}
.wf{width:102.066667pt;}
.w1a{width:104.786667pt;}
.w16{width:107.986667pt;}
.w11{width:109.300000pt;}
.w5{width:114.112000pt;}
.w10{width:116.818667pt;}
.w13{width:126.080000pt;}
.wb{width:129.620000pt;}
.w14{width:132.032000pt;}
.we{width:136.026667pt;}
.w8{width:139.386667pt;}
.w4{width:148.506667pt;}
.w9{width:149.946667pt;}
.wa{width:150.093333pt;}
.w19{width:153.133333pt;}
.w3{width:176.822667pt;}
.w7{width:185.942667pt;}
.w6{width:199.053333pt;}
.w17{width:209.182667pt;}
.w18{width:212.026667pt;}
.w2{width:361.120000pt;}
.w1{width:696.320000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x14{left:7.453333pt;}
.x3{left:52.000000pt;}
.x1a{left:55.228000pt;}
.x4{left:59.840000pt;}
.x19{left:64.804000pt;}
.x9{left:68.000000pt;}
.x17{left:72.000000pt;}
.x2b{left:80.484000pt;}
.x30{left:120.032000pt;}
.x5{left:155.386667pt;}
.x27{left:174.106667pt;}
.x6{left:183.386667pt;}
.x15{left:184.346667pt;}
.x8{left:190.106667pt;}
.x21{left:194.426667pt;}
.x1b{left:241.626667pt;}
.x1e{left:250.746667pt;}
.x28{left:264.066667pt;}
.x22{left:278.306667pt;}
.x2c{left:289.666667pt;}
.x12{left:312.386667pt;}
.xa{left:328.066667pt;}
.xb{left:340.866667pt;}
.xc{left:349.986667pt;}
.xd{left:357.026667pt;}
.x23{left:359.266667pt;}
.xe{left:366.146667pt;}
.xf{left:376.706667pt;}
.x10{left:389.506667pt;}
.x2{left:400.066667pt;}
.x1{left:408.066667pt;}
.x18{left:412.066667pt;}
.x16{left:417.826667pt;}
.x7{left:419.746667pt;}
.x11{left:452.733333pt;}
.x13{left:454.720000pt;}
.x24{left:495.306667pt;}
.x2d{left:501.706667pt;}
.x1c{left:504.266667pt;}
.x29{left:522.186667pt;}
.x1f{left:540.106667pt;}
.x25{left:597.386667pt;}
.x1d{left:616.133333pt;}
.x2f{left:618.533333pt;}
.x2a{left:624.133333pt;}
.x20{left:632.933333pt;}
.x2e{left:655.013333pt;}
.x26{left:692.133333pt;}
}




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