
    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_ffe3e664a675ed12207b3ef2.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_90b72cf6cfaf2daa752295b7.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_cd90112caef126cdfb923b11.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.877441;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_b3beba8c776a8f692214a91e.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.776855;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_c42ea4204e291fc2a46abafd.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.432129;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_2e67537676fa1be4913fc14c.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.966309;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_1c0335e402e686f7cb1bb56f.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_30be4a4205162aad328869b2.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.688965;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_aefc73294d9121681b046536.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_90845fece7823ed855c1f9a7.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.914062;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_163e24f2628466c1d6b09d23.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;}
.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.255915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255915,0.000000,0.000000,0.250000,0,0);}
.m2{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);}
.m3{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:27.360000px;}
.ls6{letter-spacing:-1.049103px;}
.ls7{letter-spacing:-0.288000px;}
.ls9{letter-spacing:-0.216000px;}
.lsb{letter-spacing:-0.144000px;}
.ls5{letter-spacing:0.000000px;}
.lsa{letter-spacing:0.072000px;}
.ls0{letter-spacing:0.078000px;}
.ls2{letter-spacing:0.162000px;}
.lsc{letter-spacing:0.432000px;}
.lsd{letter-spacing:0.504000px;}
.ls4{letter-spacing:0.720000px;}
.ls3{letter-spacing:0.840000px;}
.ls8{letter-spacing:1.008000px;}
.ls1{letter-spacing:1.220205px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws7{word-spacing:-18.072000px;}
.ws4{word-spacing:-18.000000px;}
.ws8{word-spacing:-17.856000px;}
.ws6{word-spacing:-17.784000px;}
.ws3{word-spacing:-17.712000px;}
.ws2{word-spacing:-15.984000px;}
.ws5{word-spacing:0.000000px;}
.ws1{word-spacing:0.999488px;}
.ws0{word-spacing:420.975840px;}
._4{margin-left:-6.247440px;}
._3{margin-left:-5.152560px;}
._2{margin-left:-2.232000px;}
._1{margin-left:-1.135440px;}
._0{width:1.434240px;}
._d{width:2.753280px;}
._12{width:4.075200px;}
._a{width:5.520000px;}
._9{width:6.624000px;}
._6{width:7.920000px;}
._8{width:9.156000px;}
._7{width:10.296000px;}
._14{width:11.448720px;}
._11{width:12.456000px;}
._f{width:14.184000px;}
._10{width:15.253200px;}
._13{width:16.831440px;}
._c{width:19.074240px;}
._b{width:20.165760px;}
._e{width:21.186480px;}
._17{width:22.752000px;}
._23{width:24.048000px;}
._24{width:25.200000px;}
._22{width:26.712000px;}
._19{width:27.936000px;}
._1a{width:29.160000px;}
._18{width:34.494960px;}
._21{width:35.856000px;}
._15{width:37.008000px;}
._16{width:38.027520px;}
._1c{width:42.247440px;}
._1b{width:48.007440px;}
._20{width:119.232000px;}
._1e{width:128.592000px;}
._1f{width:214.327440px;}
._1d{width:222.967440px;}
._5{width:431.756880px;}
.fc4{color:transparent;}
.fc3{color:rgb(5,99,193);}
.fc5{color:rgb(10,10,10);}
.fc2{color:rgb(13,13,13);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fs4{font-size:41.760000px;}
.fs3{font-size:45.360000px;}
.fs8{font-size:48.240000px;}
.fs6{font-size:49.615044px;}
.fs2{font-size:54.000000px;}
.fs0{font-size:59.760000px;}
.fs5{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs7{font-size:95.760000px;}
.y10{bottom:-1.965000px;}
.y0{bottom:0.000000px;}
.y16{bottom:2.700000px;}
.y12{bottom:3.393136px;}
.ycd{bottom:4.125000px;}
.y11b{bottom:4.155000px;}
.y7d{bottom:4.485000px;}
.y74{bottom:4.500000px;}
.ye8{bottom:5.580000px;}
.yfb{bottom:9.705000px;}
.y125{bottom:11.685000px;}
.y11f{bottom:11.700000px;}
.y11d{bottom:11.880000px;}
.y123{bottom:11.910000px;}
.ycf{bottom:12.765000px;}
.yd4{bottom:12.780000px;}
.yd6{bottom:14.220000px;}
.yd2{bottom:14.385000px;}
.y133{bottom:14.400000px;}
.y12c{bottom:14.565000px;}
.y131{bottom:14.580000px;}
.y12f{bottom:15.480000px;}
.y14{bottom:15.855000px;}
.yff{bottom:16.545000px;}
.yfd{bottom:16.725000px;}
.y102{bottom:16.740000px;}
.yf{bottom:17.115000px;}
.y43{bottom:18.360000px;}
.y104{bottom:18.540000px;}
.y101{bottom:18.570000px;}
.yc2{bottom:22.860000px;}
.ybf{bottom:23.040000px;}
.ybd{bottom:23.070000px;}
.ycc{bottom:24.825000px;}
.y119{bottom:24.840000px;}
.y73{bottom:25.200000px;}
.y78{bottom:25.230000px;}
.y76{bottom:25.245000px;}
.yea{bottom:25.380000px;}
.yef{bottom:25.560000px;}
.ye7{bottom:26.280000px;}
.yed{bottom:27.720000px;}
.yf3{bottom:27.750000px;}
.yfa{bottom:30.405000px;}
.ybb{bottom:43.380000px;}
.ycb{bottom:45.525000px;}
.ye{bottom:46.815000px;}
.ye5{bottom:46.965000px;}
.yf9{bottom:51.105000px;}
.y15{bottom:53.460000px;}
.yc{bottom:56.700000px;}
.yba{bottom:64.080000px;}
.y130{bottom:111.240000px;}
.y15d{bottom:113.400000px;}
.y71{bottom:114.480000px;}
.yd5{bottom:116.280000px;}
.y41{bottom:124.560000px;}
.yb3{bottom:127.620000px;}
.y15c{bottom:134.100000px;}
.y70{bottom:135.180000px;}
.y12e{bottom:142.020000px;}
.y40{bottom:145.260000px;}
.yd3{bottom:146.700000px;}
.yb2{bottom:148.320000px;}
.y15b{bottom:154.800000px;}
.y6f{bottom:155.880000px;}
.y100{bottom:160.560000px;}
.y3f{bottom:165.960000px;}
.yb1{bottom:169.050000px;}
.y12d{bottom:173.745000px;}
.y15a{bottom:175.530000px;}
.yd1{bottom:175.725000px;}
.y6e{bottom:176.610000px;}
.y3e{bottom:186.690000px;}
.yb0{bottom:189.750000px;}
.yfe{bottom:195.345000px;}
.y159{bottom:196.230000px;}
.y6d{bottom:197.310000px;}
.y12b{bottom:204.345000px;}
.yd0{bottom:206.325000px;}
.y3d{bottom:207.390000px;}
.yaf{bottom:210.450000px;}
.y158{bottom:216.930000px;}
.y6c{bottom:218.010000px;}
.y3c{bottom:228.090000px;}
.yfc{bottom:228.105000px;}
.yae{bottom:231.150000px;}
.yce{bottom:235.305000px;}
.y12a{bottom:235.845000px;}
.y157{bottom:237.630000px;}
.y99{bottom:237.810000px;}
.y6b{bottom:238.710000px;}
.y3b{bottom:248.790000px;}
.yad{bottom:251.490000px;}
.y156{bottom:258.330000px;}
.y98{bottom:258.510000px;}
.y6a{bottom:259.410000px;}
.yf8{bottom:261.945000px;}
.yca{bottom:265.005000px;}
.y3a{bottom:269.490000px;}
.yac{bottom:272.190000px;}
.y155{bottom:279.030000px;}
.y97{bottom:279.210000px;}
.y69{bottom:279.750000px;}
.y129{bottom:282.450000px;}
.y39{bottom:290.190000px;}
.yab{bottom:293.250000px;}
.y154{bottom:299.370000px;}
.y96{bottom:299.910000px;}
.y68{bottom:300.450000px;}
.y128{bottom:302.790000px;}
.y38{bottom:310.890000px;}
.yaa{bottom:313.950000px;}
.y127{bottom:319.365000px;}
.y153{bottom:320.430000px;}
.y95{bottom:320.610000px;}
.y67{bottom:321.510000px;}
.y37{bottom:331.230000px;}
.yc9{bottom:331.590000px;}
.yf7{bottom:334.110000px;}
.ya9{bottom:334.650000px;}
.y152{bottom:341.130000px;}
.y94{bottom:341.310000px;}
.y66{bottom:342.210000px;}
.y126{bottom:348.345000px;}
.yc8{bottom:351.930000px;}
.y36{bottom:352.290000px;}
.yf6{bottom:354.450000px;}
.ya8{bottom:355.350000px;}
.y151{bottom:361.830000px;}
.y93{bottom:362.010000px;}
.y65{bottom:362.910000px;}
.yc7{bottom:372.630000px;}
.y35{bottom:372.990000px;}
.yf5{bottom:375.150000px;}
.ya7{bottom:376.050000px;}
.y124{bottom:376.245000px;}
.y150{bottom:382.530000px;}
.y92{bottom:382.710000px;}
.y64{bottom:383.610000px;}
.yc6{bottom:389.205000px;}
.yf4{bottom:391.725000px;}
.y34{bottom:393.690000px;}
.ya6{bottom:396.750000px;}
.y14f{bottom:403.230000px;}
.y91{bottom:403.410000px;}
.y122{bottom:404.145000px;}
.y63{bottom:404.310000px;}
.yc5{bottom:409.905000px;}
.yf2{bottom:412.425000px;}
.y33{bottom:414.435000px;}
.ya5{bottom:417.495000px;}
.y14e{bottom:423.975000px;}
.y90{bottom:424.155000px;}
.y62{bottom:424.695000px;}
.y15f{bottom:425.055000px;}
.y121{bottom:432.255000px;}
.y32{bottom:435.135000px;}
.ya4{bottom:438.195000px;}
.y14d{bottom:444.675000px;}
.y8f{bottom:444.855000px;}
.y61{bottom:445.755000px;}
.yc4{bottom:451.335000px;}
.y31{bottom:455.835000px;}
.yf1{bottom:456.375000px;}
.ya3{bottom:458.895000px;}
.y120{bottom:460.155000px;}
.y14c{bottom:465.375000px;}
.y8e{bottom:465.555000px;}
.y60{bottom:466.455000px;}
.y30{bottom:476.535000px;}
.ya2{bottom:479.595000px;}
.y14b{bottom:486.075000px;}
.y8d{bottom:486.255000px;}
.y5f{bottom:487.155000px;}
.y11e{bottom:489.135000px;}
.yc3{bottom:490.575000px;}
.y2f{bottom:497.235000px;}
.yf0{bottom:497.955000px;}
.ya1{bottom:499.935000px;}
.y14a{bottom:506.775000px;}
.y8c{bottom:506.955000px;}
.y5e{bottom:507.855000px;}
.y11c{bottom:517.035000px;}
.y2e{bottom:517.935000px;}
.ya0{bottom:520.635000px;}
.y149{bottom:527.475000px;}
.y8b{bottom:527.655000px;}
.y5d{bottom:528.375000px;}
.yc1{bottom:531.975000px;}
.y2d{bottom:538.635000px;}
.y9f{bottom:541.695000px;}
.yee{bottom:541.875000px;}
.y11a{bottom:545.820000px;}
.y118{bottom:545.835000px;}
.y148{bottom:548.175000px;}
.y8a{bottom:548.355000px;}
.y5c{bottom:549.075000px;}
.y2c{bottom:559.155000px;}
.y9e{bottom:562.395000px;}
.y147{bottom:568.515000px;}
.y89{bottom:569.055000px;}
.y5b{bottom:569.775000px;}
.yc0{bottom:571.035000px;}
.y2b{bottom:579.855000px;}
.y9d{bottom:583.095000px;}
.yec{bottom:583.635000px;}
.y146{bottom:589.575000px;}
.y88{bottom:589.755000px;}
.y5a{bottom:590.475000px;}
.y117{bottom:591.735000px;}
.y2a{bottom:600.555000px;}
.y145{bottom:610.275000px;}
.y87{bottom:610.455000px;}
.y59{bottom:611.175000px;}
.y116{bottom:612.075000px;}
.ybe{bottom:612.435000px;}
.y29{bottom:621.255000px;}
.yeb{bottom:627.555000px;}
.y86{bottom:630.795000px;}
.y144{bottom:630.975000px;}
.y58{bottom:631.875000px;}
.y115{bottom:633.135000px;}
.y28{bottom:641.955000px;}
.y85{bottom:651.495000px;}
.ybc{bottom:651.675000px;}
.y57{bottom:652.575000px;}
.y114{bottom:653.835000px;}
.y27{bottom:662.685000px;}
.y84{bottom:668.085000px;}
.ye9{bottom:669.165000px;}
.y143{bottom:672.405000px;}
.y56{bottom:673.305000px;}
.y113{bottom:674.565000px;}
.y26{bottom:683.385000px;}
.y83{bottom:688.785000px;}
.yb9{bottom:691.665000px;}
.y142{bottom:693.105000px;}
.y55{bottom:693.645000px;}
.y15e{bottom:694.005000px;}
.y42{bottom:694.545000px;}
.y112{bottom:695.265000px;}
.y25{bottom:704.085000px;}
.y82{bottom:709.485000px;}
.ye6{bottom:711.465000px;}
.ye4{bottom:711.480000px;}
.y141{bottom:713.805000px;}
.y54{bottom:714.705000px;}
.y111{bottom:715.965000px;}
.y24{bottom:724.785000px;}
.y81{bottom:730.185000px;}
.y140{bottom:734.505000px;}
.y53{bottom:735.405000px;}
.y110{bottom:736.665000px;}
.y9c{bottom:736.845000px;}
.y23{bottom:745.485000px;}
.y80{bottom:750.885000px;}
.y13f{bottom:755.205000px;}
.y52{bottom:756.105000px;}
.y10f{bottom:757.365000px;}
.y9b{bottom:757.545000px;}
.y22{bottom:769.245000px;}
.y7f{bottom:771.585000px;}
.y13e{bottom:775.725000px;}
.y51{bottom:776.805000px;}
.y9a{bottom:777.885000px;}
.y10e{bottom:778.065000px;}
.ye3{bottom:779.505000px;}
.y7e{bottom:792.300000px;}
.y21{bottom:793.005000px;}
.y13d{bottom:796.425000px;}
.y50{bottom:797.505000px;}
.y10d{bottom:798.405000px;}
.ye2{bottom:800.205000px;}
.y7c{bottom:813.000000px;}
.y20{bottom:816.765000px;}
.y13c{bottom:817.125000px;}
.y4f{bottom:818.205000px;}
.y10c{bottom:819.465000px;}
.ye1{bottom:820.905000px;}
.y7b{bottom:833.685000px;}
.y13b{bottom:837.825000px;}
.y4e{bottom:838.545000px;}
.yb8{bottom:838.905000px;}
.y1f{bottom:840.165000px;}
.ye0{bottom:841.605000px;}
.y7a{bottom:854.385000px;}
.y13a{bottom:858.525000px;}
.y4d{bottom:859.245000px;}
.yb7{bottom:859.605000px;}
.y10b{bottom:860.865000px;}
.ydf{bottom:862.305000px;}
.y1e{bottom:864.105000px;}
.y79{bottom:875.085000px;}
.y139{bottom:879.225000px;}
.y4c{bottom:880.305000px;}
.y10a{bottom:881.565000px;}
.yde{bottom:883.005000px;}
.y1d{bottom:888.225000px;}
.y75{bottom:895.785000px;}
.y77{bottom:895.800000px;}
.y138{bottom:899.925000px;}
.yb6{bottom:900.645000px;}
.y4b{bottom:901.005000px;}
.y109{bottom:902.265000px;}
.ydd{bottom:903.750000px;}
.y1c{bottom:912.030000px;}
.y137{bottom:920.670000px;}
.yb5{bottom:921.390000px;}
.y4a{bottom:921.750000px;}
.y108{bottom:923.010000px;}
.ydc{bottom:924.450000px;}
.y1b{bottom:935.430000px;}
.y136{bottom:937.770000px;}
.y72{bottom:937.950000px;}
.y107{bottom:939.210000px;}
.yb4{bottom:942.090000px;}
.y49{bottom:942.450000px;}
.ydb{bottom:945.150000px;}
.y1a{bottom:958.830000px;}
.y106{bottom:959.910000px;}
.y48{bottom:963.150000px;}
.yda{bottom:965.850000px;}
.y135{bottom:969.450000px;}
.yd9{bottom:982.050000px;}
.y47{bottom:983.850000px;}
.y19{bottom:984.750000px;}
.y105{bottom:994.470000px;}
.y134{bottom:1000.050000px;}
.yd8{bottom:1002.750000px;}
.y46{bottom:1004.550000px;}
.y18{bottom:1012.290000px;}
.y45{bottom:1025.250000px;}
.y103{bottom:1027.410000px;}
.y132{bottom:1030.830000px;}
.yd7{bottom:1033.170000px;}
.y17{bottom:1039.830000px;}
.y44{bottom:1045.950000px;}
.yd{bottom:1056.735000px;}
.yb{bottom:1065.030000px;}
.y11{bottom:1080.341583px;}
.ya{bottom:1081.230000px;}
.y13{bottom:1088.775000px;}
.y9{bottom:1097.610000px;}
.y8{bottom:1113.810000px;}
.y7{bottom:1130.190000px;}
.y6{bottom:1146.390000px;}
.y5{bottom:1162.800000px;}
.y2{bottom:1176.300000px;}
.y4{bottom:1179.000000px;}
.y3{bottom:1195.380000px;}
.y1{bottom:1197.000000px;}
.h9{height:15.846752px;}
.hc{height:16.200000px;}
.h17{height:20.685000px;}
.h16{height:20.700000px;}
.h38{height:27.885000px;}
.h37{height:28.065000px;}
.h39{height:28.101000px;}
.h20{height:28.965000px;}
.h22{height:29.016000px;}
.hb{height:29.700000px;}
.h24{height:30.405000px;}
.h23{height:30.420000px;}
.h21{height:30.585000px;}
.h3b{height:30.765000px;}
.h3d{height:30.780000px;}
.h3e{height:31.665000px;}
.h3c{height:31.716000px;}
.h7{height:31.952109px;}
.h30{height:32.745000px;}
.h2f{height:32.925000px;}
.h32{height:32.940000px;}
.h34{height:34.545000px;}
.h33{height:34.725000px;}
.h31{height:34.776000px;}
.h1c{height:39.045000px;}
.h1b{height:39.225000px;}
.h6{height:39.247031px;}
.h1a{height:39.270000px;}
.h4{height:41.027344px;}
.h13{height:41.385000px;}
.h3a{height:41.391000px;}
.h35{height:41.395500px;}
.h36{height:41.400000px;}
.h1d{height:41.421000px;}
.h15{height:41.422500px;}
.h2b{height:41.565000px;}
.h27{height:41.580000px;}
.h28{height:41.610000px;}
.h2a{height:41.745000px;}
.h2{height:42.602344px;}
.h29{height:43.905000px;}
.h2c{height:43.941000px;}
.h11{height:49.500000px;}
.h3f{height:50.273438px;}
.h8{height:50.326875px;}
.h3{height:51.328125px;}
.ha{height:51.746940px;}
.h5{height:58.860000px;}
.h1e{height:62.091000px;}
.h1f{height:62.100000px;}
.h25{height:63.535500px;}
.h26{height:63.540000px;}
.he{height:64.853086px;}
.h12{height:66.757500px;}
.h2d{height:67.671000px;}
.h2e{height:67.680000px;}
.h14{height:70.628906px;}
.h10{height:70.664062px;}
.hf{height:72.562500px;}
.h18{height:74.704922px;}
.h19{height:80.640000px;}
.hd{height:96.508125px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w6{width:63.000000px;}
.w3{width:103.903599px;}
.w4{width:103.903611px;}
.w11{width:138.231000px;}
.w12{width:138.240000px;}
.w14{width:139.356000px;}
.w15{width:139.365000px;}
.wd{width:139.491000px;}
.wf{width:140.796000px;}
.w18{width:145.281000px;}
.w16{width:145.282500px;}
.w10{width:146.541000px;}
.w17{width:147.081000px;}
.w13{width:147.082500px;}
.we{width:148.341000px;}
.w20{width:181.095000px;}
.w1f{width:181.110000px;}
.w1e{width:183.261000px;}
.w19{width:183.270000px;}
.w22{width:190.455000px;}
.w23{width:190.470000px;}
.w1c{width:192.615000px;}
.w2a{width:192.621000px;}
.w1d{width:192.630000px;}
.w21{width:192.645000px;}
.w29{width:192.810000px;}
.w1a{width:194.970000px;}
.w1b{width:194.985000px;}
.w24{width:195.495000px;}
.w28{width:195.501000px;}
.w25{width:195.510000px;}
.w26{width:195.690000px;}
.w27{width:195.705000px;}
.w7{width:199.845000px;}
.w9{width:211.350000px;}
.wa{width:213.495000px;}
.wc{width:213.510000px;}
.wb{width:214.041000px;}
.w8{width:214.401000px;}
.w2{width:330.720000px;}
.w5{width:404.040000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x18{left:8.091000px;}
.x5{left:10.800000px;}
.x9{left:15.150000px;}
.xf{left:47.880000px;}
.x4{left:59.220000px;}
.x10{left:61.560000px;}
.x6{left:74.431531px;}
.x11{left:84.960000px;}
.x12{left:97.740000px;}
.x13{left:111.420000px;}
.x14{left:125.280000px;}
.x17{left:126.945000px;}
.x3{left:135.036000px;}
.x15{left:139.140000px;}
.x16{left:152.130000px;}
.xb{left:170.490000px;}
.x28{left:175.530000px;}
.xc{left:177.510000px;}
.x7{left:199.171515px;}
.x1{left:204.150000px;}
.x1b{left:243.030000px;}
.x1e{left:265.005000px;}
.x1c{left:266.445000px;}
.x23{left:308.055000px;}
.x21{left:310.215000px;}
.x26{left:319.575000px;}
.xd{left:321.555000px;}
.x19{left:341.355000px;}
.xe{left:345.315000px;}
.x1f{left:412.095000px;}
.xa{left:414.975000px;}
.x2{left:476.715000px;}
.x8{left:487.335000px;}
.x24{left:500.700000px;}
.x22{left:505.200000px;}
.x27{left:512.400000px;}
.x25{left:518.160000px;}
.x20{left:551.460000px;}
.x1a{left:552.720000px;}
.x1d{left:555.600000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:24.320000pt;}
.ls6{letter-spacing:-0.932536pt;}
.ls7{letter-spacing:-0.256000pt;}
.ls9{letter-spacing:-0.192000pt;}
.lsb{letter-spacing:-0.128000pt;}
.ls5{letter-spacing:0.000000pt;}
.lsa{letter-spacing:0.064000pt;}
.ls0{letter-spacing:0.069333pt;}
.ls2{letter-spacing:0.144000pt;}
.lsc{letter-spacing:0.384000pt;}
.lsd{letter-spacing:0.448000pt;}
.ls4{letter-spacing:0.640000pt;}
.ls3{letter-spacing:0.746667pt;}
.ls8{letter-spacing:0.896000pt;}
.ls1{letter-spacing:1.084627pt;}
.ws7{word-spacing:-16.064000pt;}
.ws4{word-spacing:-16.000000pt;}
.ws8{word-spacing:-15.872000pt;}
.ws6{word-spacing:-15.808000pt;}
.ws3{word-spacing:-15.744000pt;}
.ws2{word-spacing:-14.208000pt;}
.ws5{word-spacing:0.000000pt;}
.ws1{word-spacing:0.888434pt;}
.ws0{word-spacing:374.200747pt;}
._4{margin-left:-5.553280pt;}
._3{margin-left:-4.580053pt;}
._2{margin-left:-1.984000pt;}
._1{margin-left:-1.009280pt;}
._0{width:1.274880pt;}
._d{width:2.447360pt;}
._12{width:3.622400pt;}
._a{width:4.906667pt;}
._9{width:5.888000pt;}
._6{width:7.040000pt;}
._8{width:8.138667pt;}
._7{width:9.152000pt;}
._14{width:10.176640pt;}
._11{width:11.072000pt;}
._f{width:12.608000pt;}
._10{width:13.558400pt;}
._13{width:14.961280pt;}
._c{width:16.954880pt;}
._b{width:17.925120pt;}
._e{width:18.832427pt;}
._17{width:20.224000pt;}
._23{width:21.376000pt;}
._24{width:22.400000pt;}
._22{width:23.744000pt;}
._19{width:24.832000pt;}
._1a{width:25.920000pt;}
._18{width:30.662187pt;}
._21{width:31.872000pt;}
._15{width:32.896000pt;}
._16{width:33.802240pt;}
._1c{width:37.553280pt;}
._1b{width:42.673280pt;}
._20{width:105.984000pt;}
._1e{width:114.304000pt;}
._1f{width:190.513280pt;}
._1d{width:198.193280pt;}
._5{width:383.783893pt;}
.fs4{font-size:37.120000pt;}
.fs3{font-size:40.320000pt;}
.fs8{font-size:42.880000pt;}
.fs6{font-size:44.102261pt;}
.fs2{font-size:48.000000pt;}
.fs0{font-size:53.120000pt;}
.fs5{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs7{font-size:85.120000pt;}
.y10{bottom:-1.746667pt;}
.y0{bottom:0.000000pt;}
.y16{bottom:2.400000pt;}
.y12{bottom:3.016121pt;}
.ycd{bottom:3.666667pt;}
.y11b{bottom:3.693333pt;}
.y7d{bottom:3.986667pt;}
.y74{bottom:4.000000pt;}
.ye8{bottom:4.960000pt;}
.yfb{bottom:8.626667pt;}
.y125{bottom:10.386667pt;}
.y11f{bottom:10.400000pt;}
.y11d{bottom:10.560000pt;}
.y123{bottom:10.586667pt;}
.ycf{bottom:11.346667pt;}
.yd4{bottom:11.360000pt;}
.yd6{bottom:12.640000pt;}
.yd2{bottom:12.786667pt;}
.y133{bottom:12.800000pt;}
.y12c{bottom:12.946667pt;}
.y131{bottom:12.960000pt;}
.y12f{bottom:13.760000pt;}
.y14{bottom:14.093333pt;}
.yff{bottom:14.706667pt;}
.yfd{bottom:14.866667pt;}
.y102{bottom:14.880000pt;}
.yf{bottom:15.213333pt;}
.y43{bottom:16.320000pt;}
.y104{bottom:16.480000pt;}
.y101{bottom:16.506667pt;}
.yc2{bottom:20.320000pt;}
.ybf{bottom:20.480000pt;}
.ybd{bottom:20.506667pt;}
.ycc{bottom:22.066667pt;}
.y119{bottom:22.080000pt;}
.y73{bottom:22.400000pt;}
.y78{bottom:22.426667pt;}
.y76{bottom:22.440000pt;}
.yea{bottom:22.560000pt;}
.yef{bottom:22.720000pt;}
.ye7{bottom:23.360000pt;}
.yed{bottom:24.640000pt;}
.yf3{bottom:24.666667pt;}
.yfa{bottom:27.026667pt;}
.ybb{bottom:38.560000pt;}
.ycb{bottom:40.466667pt;}
.ye{bottom:41.613333pt;}
.ye5{bottom:41.746667pt;}
.yf9{bottom:45.426667pt;}
.y15{bottom:47.520000pt;}
.yc{bottom:50.400000pt;}
.yba{bottom:56.960000pt;}
.y130{bottom:98.880000pt;}
.y15d{bottom:100.800000pt;}
.y71{bottom:101.760000pt;}
.yd5{bottom:103.360000pt;}
.y41{bottom:110.720000pt;}
.yb3{bottom:113.440000pt;}
.y15c{bottom:119.200000pt;}
.y70{bottom:120.160000pt;}
.y12e{bottom:126.240000pt;}
.y40{bottom:129.120000pt;}
.yd3{bottom:130.400000pt;}
.yb2{bottom:131.840000pt;}
.y15b{bottom:137.600000pt;}
.y6f{bottom:138.560000pt;}
.y100{bottom:142.720000pt;}
.y3f{bottom:147.520000pt;}
.yb1{bottom:150.266667pt;}
.y12d{bottom:154.440000pt;}
.y15a{bottom:156.026667pt;}
.yd1{bottom:156.200000pt;}
.y6e{bottom:156.986667pt;}
.y3e{bottom:165.946667pt;}
.yb0{bottom:168.666667pt;}
.yfe{bottom:173.640000pt;}
.y159{bottom:174.426667pt;}
.y6d{bottom:175.386667pt;}
.y12b{bottom:181.640000pt;}
.yd0{bottom:183.400000pt;}
.y3d{bottom:184.346667pt;}
.yaf{bottom:187.066667pt;}
.y158{bottom:192.826667pt;}
.y6c{bottom:193.786667pt;}
.y3c{bottom:202.746667pt;}
.yfc{bottom:202.760000pt;}
.yae{bottom:205.466667pt;}
.yce{bottom:209.160000pt;}
.y12a{bottom:209.640000pt;}
.y157{bottom:211.226667pt;}
.y99{bottom:211.386667pt;}
.y6b{bottom:212.186667pt;}
.y3b{bottom:221.146667pt;}
.yad{bottom:223.546667pt;}
.y156{bottom:229.626667pt;}
.y98{bottom:229.786667pt;}
.y6a{bottom:230.586667pt;}
.yf8{bottom:232.840000pt;}
.yca{bottom:235.560000pt;}
.y3a{bottom:239.546667pt;}
.yac{bottom:241.946667pt;}
.y155{bottom:248.026667pt;}
.y97{bottom:248.186667pt;}
.y69{bottom:248.666667pt;}
.y129{bottom:251.066667pt;}
.y39{bottom:257.946667pt;}
.yab{bottom:260.666667pt;}
.y154{bottom:266.106667pt;}
.y96{bottom:266.586667pt;}
.y68{bottom:267.066667pt;}
.y128{bottom:269.146667pt;}
.y38{bottom:276.346667pt;}
.yaa{bottom:279.066667pt;}
.y127{bottom:283.880000pt;}
.y153{bottom:284.826667pt;}
.y95{bottom:284.986667pt;}
.y67{bottom:285.786667pt;}
.y37{bottom:294.426667pt;}
.yc9{bottom:294.746667pt;}
.yf7{bottom:296.986667pt;}
.ya9{bottom:297.466667pt;}
.y152{bottom:303.226667pt;}
.y94{bottom:303.386667pt;}
.y66{bottom:304.186667pt;}
.y126{bottom:309.640000pt;}
.yc8{bottom:312.826667pt;}
.y36{bottom:313.146667pt;}
.yf6{bottom:315.066667pt;}
.ya8{bottom:315.866667pt;}
.y151{bottom:321.626667pt;}
.y93{bottom:321.786667pt;}
.y65{bottom:322.586667pt;}
.yc7{bottom:331.226667pt;}
.y35{bottom:331.546667pt;}
.yf5{bottom:333.466667pt;}
.ya7{bottom:334.266667pt;}
.y124{bottom:334.440000pt;}
.y150{bottom:340.026667pt;}
.y92{bottom:340.186667pt;}
.y64{bottom:340.986667pt;}
.yc6{bottom:345.960000pt;}
.yf4{bottom:348.200000pt;}
.y34{bottom:349.946667pt;}
.ya6{bottom:352.666667pt;}
.y14f{bottom:358.426667pt;}
.y91{bottom:358.586667pt;}
.y122{bottom:359.240000pt;}
.y63{bottom:359.386667pt;}
.yc5{bottom:364.360000pt;}
.yf2{bottom:366.600000pt;}
.y33{bottom:368.386667pt;}
.ya5{bottom:371.106667pt;}
.y14e{bottom:376.866667pt;}
.y90{bottom:377.026667pt;}
.y62{bottom:377.506667pt;}
.y15f{bottom:377.826667pt;}
.y121{bottom:384.226667pt;}
.y32{bottom:386.786667pt;}
.ya4{bottom:389.506667pt;}
.y14d{bottom:395.266667pt;}
.y8f{bottom:395.426667pt;}
.y61{bottom:396.226667pt;}
.yc4{bottom:401.186667pt;}
.y31{bottom:405.186667pt;}
.yf1{bottom:405.666667pt;}
.ya3{bottom:407.906667pt;}
.y120{bottom:409.026667pt;}
.y14c{bottom:413.666667pt;}
.y8e{bottom:413.826667pt;}
.y60{bottom:414.626667pt;}
.y30{bottom:423.586667pt;}
.ya2{bottom:426.306667pt;}
.y14b{bottom:432.066667pt;}
.y8d{bottom:432.226667pt;}
.y5f{bottom:433.026667pt;}
.y11e{bottom:434.786667pt;}
.yc3{bottom:436.066667pt;}
.y2f{bottom:441.986667pt;}
.yf0{bottom:442.626667pt;}
.ya1{bottom:444.386667pt;}
.y14a{bottom:450.466667pt;}
.y8c{bottom:450.626667pt;}
.y5e{bottom:451.426667pt;}
.y11c{bottom:459.586667pt;}
.y2e{bottom:460.386667pt;}
.ya0{bottom:462.786667pt;}
.y149{bottom:468.866667pt;}
.y8b{bottom:469.026667pt;}
.y5d{bottom:469.666667pt;}
.yc1{bottom:472.866667pt;}
.y2d{bottom:478.786667pt;}
.y9f{bottom:481.506667pt;}
.yee{bottom:481.666667pt;}
.y11a{bottom:485.173333pt;}
.y118{bottom:485.186667pt;}
.y148{bottom:487.266667pt;}
.y8a{bottom:487.426667pt;}
.y5c{bottom:488.066667pt;}
.y2c{bottom:497.026667pt;}
.y9e{bottom:499.906667pt;}
.y147{bottom:505.346667pt;}
.y89{bottom:505.826667pt;}
.y5b{bottom:506.466667pt;}
.yc0{bottom:507.586667pt;}
.y2b{bottom:515.426667pt;}
.y9d{bottom:518.306667pt;}
.yec{bottom:518.786667pt;}
.y146{bottom:524.066667pt;}
.y88{bottom:524.226667pt;}
.y5a{bottom:524.866667pt;}
.y117{bottom:525.986667pt;}
.y2a{bottom:533.826667pt;}
.y145{bottom:542.466667pt;}
.y87{bottom:542.626667pt;}
.y59{bottom:543.266667pt;}
.y116{bottom:544.066667pt;}
.ybe{bottom:544.386667pt;}
.y29{bottom:552.226667pt;}
.yeb{bottom:557.826667pt;}
.y86{bottom:560.706667pt;}
.y144{bottom:560.866667pt;}
.y58{bottom:561.666667pt;}
.y115{bottom:562.786667pt;}
.y28{bottom:570.626667pt;}
.y85{bottom:579.106667pt;}
.ybc{bottom:579.266667pt;}
.y57{bottom:580.066667pt;}
.y114{bottom:581.186667pt;}
.y27{bottom:589.053333pt;}
.y84{bottom:593.853333pt;}
.ye9{bottom:594.813333pt;}
.y143{bottom:597.693333pt;}
.y56{bottom:598.493333pt;}
.y113{bottom:599.613333pt;}
.y26{bottom:607.453333pt;}
.y83{bottom:612.253333pt;}
.yb9{bottom:614.813333pt;}
.y142{bottom:616.093333pt;}
.y55{bottom:616.573333pt;}
.y15e{bottom:616.893333pt;}
.y42{bottom:617.373333pt;}
.y112{bottom:618.013333pt;}
.y25{bottom:625.853333pt;}
.y82{bottom:630.653333pt;}
.ye6{bottom:632.413333pt;}
.ye4{bottom:632.426667pt;}
.y141{bottom:634.493333pt;}
.y54{bottom:635.293333pt;}
.y111{bottom:636.413333pt;}
.y24{bottom:644.253333pt;}
.y81{bottom:649.053333pt;}
.y140{bottom:652.893333pt;}
.y53{bottom:653.693333pt;}
.y110{bottom:654.813333pt;}
.y9c{bottom:654.973333pt;}
.y23{bottom:662.653333pt;}
.y80{bottom:667.453333pt;}
.y13f{bottom:671.293333pt;}
.y52{bottom:672.093333pt;}
.y10f{bottom:673.213333pt;}
.y9b{bottom:673.373333pt;}
.y22{bottom:683.773333pt;}
.y7f{bottom:685.853333pt;}
.y13e{bottom:689.533333pt;}
.y51{bottom:690.493333pt;}
.y9a{bottom:691.453333pt;}
.y10e{bottom:691.613333pt;}
.ye3{bottom:692.893333pt;}
.y7e{bottom:704.266667pt;}
.y21{bottom:704.893333pt;}
.y13d{bottom:707.933333pt;}
.y50{bottom:708.893333pt;}
.y10d{bottom:709.693333pt;}
.ye2{bottom:711.293333pt;}
.y7c{bottom:722.666667pt;}
.y20{bottom:726.013333pt;}
.y13c{bottom:726.333333pt;}
.y4f{bottom:727.293333pt;}
.y10c{bottom:728.413333pt;}
.ye1{bottom:729.693333pt;}
.y7b{bottom:741.053333pt;}
.y13b{bottom:744.733333pt;}
.y4e{bottom:745.373333pt;}
.yb8{bottom:745.693333pt;}
.y1f{bottom:746.813333pt;}
.ye0{bottom:748.093333pt;}
.y7a{bottom:759.453333pt;}
.y13a{bottom:763.133333pt;}
.y4d{bottom:763.773333pt;}
.yb7{bottom:764.093333pt;}
.y10b{bottom:765.213333pt;}
.ydf{bottom:766.493333pt;}
.y1e{bottom:768.093333pt;}
.y79{bottom:777.853333pt;}
.y139{bottom:781.533333pt;}
.y4c{bottom:782.493333pt;}
.y10a{bottom:783.613333pt;}
.yde{bottom:784.893333pt;}
.y1d{bottom:789.533333pt;}
.y75{bottom:796.253333pt;}
.y77{bottom:796.266667pt;}
.y138{bottom:799.933333pt;}
.yb6{bottom:800.573333pt;}
.y4b{bottom:800.893333pt;}
.y109{bottom:802.013333pt;}
.ydd{bottom:803.333333pt;}
.y1c{bottom:810.693333pt;}
.y137{bottom:818.373333pt;}
.yb5{bottom:819.013333pt;}
.y4a{bottom:819.333333pt;}
.y108{bottom:820.453333pt;}
.ydc{bottom:821.733333pt;}
.y1b{bottom:831.493333pt;}
.y136{bottom:833.573333pt;}
.y72{bottom:833.733333pt;}
.y107{bottom:834.853333pt;}
.yb4{bottom:837.413333pt;}
.y49{bottom:837.733333pt;}
.ydb{bottom:840.133333pt;}
.y1a{bottom:852.293333pt;}
.y106{bottom:853.253333pt;}
.y48{bottom:856.133333pt;}
.yda{bottom:858.533333pt;}
.y135{bottom:861.733333pt;}
.yd9{bottom:872.933333pt;}
.y47{bottom:874.533333pt;}
.y19{bottom:875.333333pt;}
.y105{bottom:883.973333pt;}
.y134{bottom:888.933333pt;}
.yd8{bottom:891.333333pt;}
.y46{bottom:892.933333pt;}
.y18{bottom:899.813333pt;}
.y45{bottom:911.333333pt;}
.y103{bottom:913.253333pt;}
.y132{bottom:916.293333pt;}
.yd7{bottom:918.373333pt;}
.y17{bottom:924.293333pt;}
.y44{bottom:929.733333pt;}
.yd{bottom:939.320000pt;}
.yb{bottom:946.693333pt;}
.y11{bottom:960.303630pt;}
.ya{bottom:961.093333pt;}
.y13{bottom:967.800000pt;}
.y9{bottom:975.653333pt;}
.y8{bottom:990.053333pt;}
.y7{bottom:1004.613333pt;}
.y6{bottom:1019.013333pt;}
.y5{bottom:1033.600000pt;}
.y2{bottom:1045.600000pt;}
.y4{bottom:1048.000000pt;}
.y3{bottom:1062.560000pt;}
.y1{bottom:1064.000000pt;}
.h9{height:14.086002pt;}
.hc{height:14.400000pt;}
.h17{height:18.386667pt;}
.h16{height:18.400000pt;}
.h38{height:24.786667pt;}
.h37{height:24.946667pt;}
.h39{height:24.978667pt;}
.h20{height:25.746667pt;}
.h22{height:25.792000pt;}
.hb{height:26.400000pt;}
.h24{height:27.026667pt;}
.h23{height:27.040000pt;}
.h21{height:27.186667pt;}
.h3b{height:27.346667pt;}
.h3d{height:27.360000pt;}
.h3e{height:28.146667pt;}
.h3c{height:28.192000pt;}
.h7{height:28.401875pt;}
.h30{height:29.106667pt;}
.h2f{height:29.266667pt;}
.h32{height:29.280000pt;}
.h34{height:30.706667pt;}
.h33{height:30.866667pt;}
.h31{height:30.912000pt;}
.h1c{height:34.706667pt;}
.h1b{height:34.866667pt;}
.h6{height:34.886250pt;}
.h1a{height:34.906667pt;}
.h4{height:36.468750pt;}
.h13{height:36.786667pt;}
.h3a{height:36.792000pt;}
.h35{height:36.796000pt;}
.h36{height:36.800000pt;}
.h1d{height:36.818667pt;}
.h15{height:36.820000pt;}
.h2b{height:36.946667pt;}
.h27{height:36.960000pt;}
.h28{height:36.986667pt;}
.h2a{height:37.106667pt;}
.h2{height:37.868750pt;}
.h29{height:39.026667pt;}
.h2c{height:39.058667pt;}
.h11{height:44.000000pt;}
.h3f{height:44.687500pt;}
.h8{height:44.735000pt;}
.h3{height:45.625000pt;}
.ha{height:45.997280pt;}
.h5{height:52.320000pt;}
.h1e{height:55.192000pt;}
.h1f{height:55.200000pt;}
.h25{height:56.476000pt;}
.h26{height:56.480000pt;}
.he{height:57.647187pt;}
.h12{height:59.340000pt;}
.h2d{height:60.152000pt;}
.h2e{height:60.160000pt;}
.h14{height:62.781250pt;}
.h10{height:62.812500pt;}
.hf{height:64.500000pt;}
.h18{height:66.404375pt;}
.h19{height:71.680000pt;}
.hd{height:85.785000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w6{width:56.000000pt;}
.w3{width:92.358755pt;}
.w4{width:92.358766pt;}
.w11{width:122.872000pt;}
.w12{width:122.880000pt;}
.w14{width:123.872000pt;}
.w15{width:123.880000pt;}
.wd{width:123.992000pt;}
.wf{width:125.152000pt;}
.w18{width:129.138667pt;}
.w16{width:129.140000pt;}
.w10{width:130.258667pt;}
.w17{width:130.738667pt;}
.w13{width:130.740000pt;}
.we{width:131.858667pt;}
.w20{width:160.973333pt;}
.w1f{width:160.986667pt;}
.w1e{width:162.898667pt;}
.w19{width:162.906667pt;}
.w22{width:169.293333pt;}
.w23{width:169.306667pt;}
.w1c{width:171.213333pt;}
.w2a{width:171.218667pt;}
.w1d{width:171.226667pt;}
.w21{width:171.240000pt;}
.w29{width:171.386667pt;}
.w1a{width:173.306667pt;}
.w1b{width:173.320000pt;}
.w24{width:173.773333pt;}
.w28{width:173.778667pt;}
.w25{width:173.786667pt;}
.w26{width:173.946667pt;}
.w27{width:173.960000pt;}
.w7{width:177.640000pt;}
.w9{width:187.866667pt;}
.wa{width:189.773333pt;}
.wc{width:189.786667pt;}
.wb{width:190.258667pt;}
.w8{width:190.578667pt;}
.w2{width:293.973333pt;}
.w5{width:359.146667pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x18{left:7.192000pt;}
.x5{left:9.600000pt;}
.x9{left:13.466667pt;}
.xf{left:42.560000pt;}
.x4{left:52.640000pt;}
.x10{left:54.720000pt;}
.x6{left:66.161361pt;}
.x11{left:75.520000pt;}
.x12{left:86.880000pt;}
.x13{left:99.040000pt;}
.x14{left:111.360000pt;}
.x17{left:112.840000pt;}
.x3{left:120.032000pt;}
.x15{left:123.680000pt;}
.x16{left:135.226667pt;}
.xb{left:151.546667pt;}
.x28{left:156.026667pt;}
.xc{left:157.786667pt;}
.x7{left:177.041346pt;}
.x1{left:181.466667pt;}
.x1b{left:216.026667pt;}
.x1e{left:235.560000pt;}
.x1c{left:236.840000pt;}
.x23{left:273.826667pt;}
.x21{left:275.746667pt;}
.x26{left:284.066667pt;}
.xd{left:285.826667pt;}
.x19{left:303.426667pt;}
.xe{left:306.946667pt;}
.x1f{left:366.306667pt;}
.xa{left:368.866667pt;}
.x2{left:423.746667pt;}
.x8{left:433.186667pt;}
.x24{left:445.066667pt;}
.x22{left:449.066667pt;}
.x27{left:455.466667pt;}
.x25{left:460.586667pt;}
.x20{left:490.186667pt;}
.x1a{left:491.306667pt;}
.x1d{left:493.866667pt;}
}




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