
    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_77c971eba84f97a0bd6ccd11.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.172852;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_ff06f08e80e2f8ba16d0bff2.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.202148;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_7797e4b28a8d581139b5621a.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_c5cf34d089f0088b497409d1.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_d2a651a0d6a634dda033807e.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_659eb69129c8f77b909e2e95.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_125cc6d48e23b8a96b35fcce.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_501a64a39f2713e3bb570278.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.402354;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_6a8b4899719d1e33f59873c1.woff2')format("woff");}.ff9{font-family:ff9;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;}
@font-face{font-family:ffa;src:url('chunks/assets/font_c900b0c4e91a81d63a840d49.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;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.ls4{letter-spacing:-0.504000px;}
.ls5{letter-spacing:-0.216000px;}
.ls3{letter-spacing:0.000000px;}
.lsa{letter-spacing:0.072000px;}
.ls8{letter-spacing:0.144000px;}
.ls2{letter-spacing:0.149760px;}
.ls1{letter-spacing:0.150000px;}
.ls0{letter-spacing:0.180000px;}
.lsc{letter-spacing:0.216000px;}
.lsb{letter-spacing:0.256200px;}
.lsd{letter-spacing:0.720000px;}
.ls9{letter-spacing:6.480000px;}
.ls6{letter-spacing:33.960000px;}
.ls7{letter-spacing:87.960000px;}
.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;}
}
.ws6{word-spacing:-18.144000px;}
.ws9{word-spacing:-18.072000px;}
.ws3{word-spacing:-18.000000px;}
.ws5{word-spacing:-17.784000px;}
.ws2{word-spacing:-16.560000px;}
.ws7{word-spacing:-15.226440px;}
.ws1{word-spacing:-0.059760px;}
.ws4{word-spacing:0.000000px;}
.ws0{word-spacing:2.657280px;}
.ws8{word-spacing:2.715840px;}
._2b{margin-left:-5.268000px;}
._3{margin-left:-4.236000px;}
._6{margin-left:-2.517120px;}
._1{margin-left:-1.126080px;}
._0{width:1.059840px;}
._2{width:2.184240px;}
._b{width:3.909840px;}
._e{width:4.946160px;}
._8{width:5.961600px;}
._a{width:7.412640px;}
._9{width:8.544960px;}
._d{width:9.574560px;}
._10{width:10.724160px;}
._f{width:11.749440px;}
._c{width:12.760320px;}
._4{width:13.844160px;}
._5{width:15.031200px;}
._11{width:16.035840px;}
._7{width:18.944640px;}
._16{width:20.511360px;}
._12{width:21.954240px;}
._13{width:22.979520px;}
._1c{width:24.428160px;}
._14{width:25.848000px;}
._15{width:27.216000px;}
._19{width:28.584000px;}
._1a{width:29.984160px;}
._1b{width:31.119360px;}
._26{width:32.312640px;}
._17{width:34.056000px;}
._18{width:35.110080px;}
._2d{width:36.648000px;}
._2c{width:37.908000px;}
._20{width:39.744000px;}
._24{width:41.040000px;}
._25{width:42.116160px;}
._35{width:43.920000px;}
._1f{width:49.680000px;}
._3f{width:53.316000px;}
._30{width:59.256000px;}
._31{width:60.264000px;}
._39{width:66.960000px;}
._3a{width:68.256000px;}
._40{width:77.544000px;}
._41{width:78.624000px;}
._27{width:81.141120px;}
._1e{width:82.152000px;}
._1d{width:85.680000px;}
._36{width:86.904000px;}
._28{width:90.285120px;}
._2e{width:94.392000px;}
._2f{width:95.816160px;}
._37{width:104.184000px;}
._38{width:105.280320px;}
._32{width:110.664000px;}
._2a{width:115.197120px;}
._3d{width:123.145920px;}
._3c{width:124.678080px;}
._3b{width:134.100000px;}
._29{width:157.536000px;}
._22{width:181.440000px;}
._21{width:206.112000px;}
._3e{width:236.664000px;}
._33{width:240.058080px;}
._34{width:241.776000px;}
._23{width:305.400000px;}
.fc6{color:transparent;}
.fc5{color:rgb(0,0,255);}
.fc4{color:rgb(75,172,198);}
.fc8{color:rgb(128,128,128);}
.fc7{color:rgb(13,13,13);}
.fc3{color:rgb(255,255,255);}
.fc2{color:rgb(127,127,127);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(31,73,125);}
.fs7{font-size:41.760000px;}
.fs5{font-size:48.240000px;}
.fs6{font-size:54.000000px;}
.fs2{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs4{font-size:72.000000px;}
.fs3{font-size:84.240000px;}
.fs0{font-size:95.760000px;}
.y32{bottom:-15.615000px;}
.y0{bottom:0.000000px;}
.y6{bottom:2.880000px;}
.y10b{bottom:4.125000px;}
.y107{bottom:4.140000px;}
.yd7{bottom:4.485000px;}
.y10d{bottom:4.500000px;}
.y8{bottom:4.680000px;}
.yc3{bottom:7.920000px;}
.yd1{bottom:17.985000px;}
.y181{bottom:22.680000px;}
.yd4{bottom:24.825000px;}
.y106{bottom:24.840000px;}
.yd6{bottom:25.185000px;}
.y109{bottom:25.200000px;}
.yc9{bottom:25.380000px;}
.yc2{bottom:28.620000px;}
.yd0{bottom:38.685000px;}
.y180{bottom:42.660000px;}
.yd3{bottom:45.525000px;}
.yc6{bottom:45.720000px;}
.yd5{bottom:45.885000px;}
.yc8{bottom:46.080000px;}
.yc1{bottom:49.320000px;}
.y4{bottom:58.536000px;}
.ycf{bottom:59.385000px;}
.yc5{bottom:66.420000px;}
.yc7{bottom:66.780000px;}
.ye{bottom:77.055000px;}
.y3{bottom:77.616000px;}
.ycc{bottom:79.770000px;}
.yce{bottom:80.130000px;}
.y2{bottom:95.796000px;}
.ycb{bottom:100.470000px;}
.ycd{bottom:100.830000px;}
.yd{bottom:114.495000px;}
.y30{bottom:117.756000px;}
.y15f{bottom:118.116000px;}
.y120{bottom:118.836000px;}
.y84{bottom:120.816000px;}
.y158{bottom:123.516000px;}
.y5b{bottom:127.296000px;}
.yd8{bottom:128.016000px;}
.yed{bottom:128.916000px;}
.y13d{bottom:131.796000px;}
.y17f{bottom:134.316000px;}
.y2f{bottom:138.096000px;}
.y15e{bottom:138.816000px;}
.y83{bottom:141.516000px;}
.y157{bottom:144.216000px;}
.y5a{bottom:147.996000px;}
.yec{bottom:149.616000px;}
.ya4{bottom:152.310000px;}
.y13c{bottom:152.490000px;}
.y104{bottom:153.210000px;}
.yc{bottom:153.735000px;}
.yb6{bottom:154.650000px;}
.y17e{bottom:155.010000px;}
.y11f{bottom:157.890000px;}
.y2e{bottom:159.510000px;}
.y82{bottom:162.210000px;}
.yd2{bottom:163.305000px;}
.y156{bottom:164.910000px;}
.y2d{bottom:165.450000px;}
.ya3{bottom:173.010000px;}
.y13b{bottom:173.190000px;}
.y103{bottom:173.910000px;}
.yb5{bottom:175.350000px;}
.y17d{bottom:175.710000px;}
.yb{bottom:177.855000px;}
.y11e{bottom:178.590000px;}
.y15d{bottom:180.210000px;}
.y2c{bottom:182.550000px;}
.y14c{bottom:182.910000px;}
.y16a{bottom:185.610000px;}
.y59{bottom:186.690000px;}
.yeb{bottom:188.310000px;}
.y13a{bottom:193.890000px;}
.y102{bottom:194.610000px;}
.y11d{bottom:199.290000px;}
.y81{bottom:200.550000px;}
.y15c{bottom:200.910000px;}
.y9{bottom:201.960000px;}
.y14b{bottom:203.610000px;}
.y169{bottom:206.310000px;}
.y58{bottom:207.390000px;}
.yea{bottom:209.010000px;}
.ya2{bottom:211.350000px;}
.yb4{bottom:214.050000px;}
.y17c{bottom:214.410000px;}
.y139{bottom:214.590000px;}
.y11c{bottom:219.990000px;}
.y15b{bottom:221.610000px;}
.y14a{bottom:224.310000px;}
.y168{bottom:227.010000px;}
.y57{bottom:228.090000px;}
.ye9{bottom:229.710000px;}
.ya1{bottom:232.050000px;}
.y2b{bottom:233.130000px;}
.y101{bottom:233.310000px;}
.y17b{bottom:235.110000px;}
.y80{bottom:239.610000px;}
.yca{bottom:244.125000px;}
.y149{bottom:245.010000px;}
.y56{bottom:248.790000px;}
.ye8{bottom:250.410000px;}
.yb3{bottom:253.110000px;}
.y138{bottom:253.290000px;}
.y100{bottom:254.010000px;}
.y2a{bottom:254.910000px;}
.y17a{bottom:255.810000px;}
.y11b{bottom:258.690000px;}
.y7f{bottom:260.310000px;}
.y148{bottom:265.710000px;}
.y55{bottom:269.490000px;}
.ya0{bottom:270.750000px;}
.ye7{bottom:271.110000px;}
.yb2{bottom:273.810000px;}
.y137{bottom:273.990000px;}
.yff{bottom:274.710000px;}
.y29{bottom:276.690000px;}
.y11a{bottom:279.390000px;}
.y7e{bottom:281.010000px;}
.y147{bottom:286.410000px;}
.y54{bottom:290.190000px;}
.yb1{bottom:294.510000px;}
.y136{bottom:294.690000px;}
.yfe{bottom:295.410000px;}
.y28{bottom:298.470000px;}
.y119{bottom:300.090000px;}
.y7d{bottom:301.710000px;}
.y146{bottom:307.110000px;}
.y9f{bottom:309.855000px;}
.y53{bottom:310.935000px;}
.yb0{bottom:315.255000px;}
.y135{bottom:315.435000px;}
.y27{bottom:320.475000px;}
.y118{bottom:320.835000px;}
.y7c{bottom:322.455000px;}
.y155{bottom:327.855000px;}
.y9e{bottom:330.555000px;}
.y52{bottom:331.635000px;}
.yfd{bottom:334.155000px;}
.y179{bottom:335.955000px;}
.y134{bottom:336.135000px;}
.y26{bottom:342.255000px;}
.y7b{bottom:343.155000px;}
.y145{bottom:345.495000px;}
.y167{bottom:345.855000px;}
.y9d{bottom:351.255000px;}
.yaf{bottom:353.595000px;}
.yfc{bottom:354.855000px;}
.y133{bottom:356.835000px;}
.y117{bottom:359.535000px;}
.y15a{bottom:363.855000px;}
.y25{bottom:364.035000px;}
.y154{bottom:366.555000px;}
.y51{bottom:370.335000px;}
.y9c{bottom:371.955000px;}
.y178{bottom:374.655000px;}
.yfb{bottom:375.555000px;}
.y132{bottom:377.535000px;}
.yc4{bottom:380.055000px;}
.y116{bottom:380.235000px;}
.y7a{bottom:381.855000px;}
.y144{bottom:384.555000px;}
.y24{bottom:385.815000px;}
.y153{bottom:387.255000px;}
.y50{bottom:391.035000px;}
.y9b{bottom:392.655000px;}
.y177{bottom:395.355000px;}
.yfa{bottom:396.255000px;}
.y131{bottom:398.235000px;}
.y115{bottom:400.935000px;}
.y79{bottom:402.555000px;}
.y143{bottom:405.255000px;}
.y23{bottom:407.595000px;}
.y152{bottom:407.955000px;}
.y4f{bottom:411.735000px;}
.yae{bottom:413.355000px;}
.y176{bottom:416.055000px;}
.yf9{bottom:416.955000px;}
.y130{bottom:418.935000px;}
.y114{bottom:421.635000px;}
.y78{bottom:423.255000px;}
.y142{bottom:425.955000px;}
.y151{bottom:428.655000px;}
.y22{bottom:429.555000px;}
.y9a{bottom:431.355000px;}
.y4e{bottom:432.435000px;}
.yad{bottom:434.055000px;}
.y77{bottom:443.955000px;}
.y141{bottom:446.655000px;}
.y150{bottom:449.355000px;}
.y21{bottom:451.335000px;}
.y99{bottom:452.055000px;}
.y4d{bottom:453.135000px;}
.yac{bottom:454.755000px;}
.yf8{bottom:455.655000px;}
.y12f{bottom:457.275000px;}
.y113{bottom:459.975000px;}
.y76{bottom:464.655000px;}
.y140{bottom:467.355000px;}
.y14f{bottom:470.055000px;}
.y98{bottom:472.755000px;}
.y20{bottom:473.115000px;}
.y4c{bottom:473.835000px;}
.y175{bottom:475.455000px;}
.yf7{bottom:476.355000px;}
.y112{bottom:480.675000px;}
.yc0{bottom:481.755000px;}
.y75{bottom:485.355000px;}
.y13f{bottom:488.055000px;}
.y97{bottom:493.455000px;}
.y4b{bottom:494.535000px;}
.y1f{bottom:494.895000px;}
.y174{bottom:496.155000px;}
.y12e{bottom:496.335000px;}
.yf6{bottom:497.055000px;}
.y166{bottom:505.695000px;}
.y74{bottom:506.055000px;}
.y14e{bottom:508.395000px;}
.y13e{bottom:508.755000px;}
.y96{bottom:514.155000px;}
.y4a{bottom:515.235000px;}
.y1e{bottom:516.675000px;}
.y12d{bottom:517.035000px;}
.yf5{bottom:517.755000px;}
.y111{bottom:519.375000px;}
.y73{bottom:526.755000px;}
.y173{bottom:534.855000px;}
.y49{bottom:535.935000px;}
.y12c{bottom:537.735000px;}
.y1d{bottom:538.635000px;}
.y165{bottom:544.755000px;}
.y72{bottom:547.455000px;}
.ye6{bottom:552.495000px;}
.y95{bottom:552.855000px;}
.y172{bottom:555.555000px;}
.yf4{bottom:556.095000px;}
.y48{bottom:556.635000px;}
.y110{bottom:558.075000px;}
.y12b{bottom:558.435000px;}
.y1c{bottom:560.445000px;}
.y164{bottom:565.485000px;}
.y71{bottom:568.185000px;}
.ybf{bottom:570.885000px;}
.y94{bottom:573.585000px;}
.y171{bottom:576.285000px;}
.yf3{bottom:576.825000px;}
.y12a{bottom:579.165000px;}
.y1b{bottom:582.225000px;}
.y163{bottom:586.185000px;}
.y70{bottom:588.885000px;}
.ye5{bottom:591.225000px;}
.ybe{bottom:591.585000px;}
.y10f{bottom:593.385000px;}
.y93{bottom:594.285000px;}
.y47{bottom:595.365000px;}
.y129{bottom:599.865000px;}
.y1a{bottom:604.005000px;}
.y162{bottom:606.885000px;}
.y6f{bottom:609.585000px;}
.y92{bottom:614.985000px;}
.yf2{bottom:615.525000px;}
.y46{bottom:616.065000px;}
.y128{bottom:620.565000px;}
.y19{bottom:625.965000px;}
.y161{bottom:627.585000px;}
.ybd{bottom:629.925000px;}
.ye4{bottom:630.285000px;}
.yab{bottom:632.985000px;}
.y91{bottom:635.685000px;}
.y45{bottom:636.765000px;}
.y127{bottom:641.265000px;}
.y18{bottom:647.745000px;}
.y6e{bottom:647.925000px;}
.y160{bottom:648.285000px;}
.yf1{bottom:650.085000px;}
.ye3{bottom:650.985000px;}
.y10e{bottom:653.505000px;}
.yaa{bottom:653.685000px;}
.y90{bottom:656.385000px;}
.y44{bottom:657.465000px;}
.y6d{bottom:668.625000px;}
.ybc{bottom:668.985000px;}
.y17{bottom:669.525000px;}
.ye2{bottom:671.685000px;}
.ya9{bottom:674.385000px;}
.y43{bottom:678.165000px;}
.y126{bottom:679.605000px;}
.y6c{bottom:689.325000px;}
.ybb{bottom:689.685000px;}
.y16{bottom:691.485000px;}
.ye1{bottom:692.385000px;}
.y8f{bottom:694.725000px;}
.y170{bottom:695.085000px;}
.y42{bottom:698.865000px;}
.y31{bottom:705.480000px;}
.yba{bottom:710.385000px;}
.y15{bottom:712.005000px;}
.ya8{bottom:712.725000px;}
.ye0{bottom:713.085000px;}
.y10c{bottom:713.625000px;}
.y8e{bottom:715.425000px;}
.y16f{bottom:715.785000px;}
.y125{bottom:718.665000px;}
.y41{bottom:719.565000px;}
.y6b{bottom:728.385000px;}
.y14{bottom:730.005000px;}
.yb9{bottom:731.085000px;}
.ydf{bottom:733.785000px;}
.y16e{bottom:736.485000px;}
.y124{bottom:739.365000px;}
.y40{bottom:740.265000px;}
.y6a{bottom:749.085000px;}
.ya7{bottom:751.425000px;}
.yb8{bottom:751.785000px;}
.y10a{bottom:753.060000px;}
.y8d{bottom:754.125000px;}
.y123{bottom:760.065000px;}
.y3f{bottom:760.965000px;}
.y11{bottom:762.585000px;}
.y12{bottom:768.525000px;}
.y13{bottom:769.425000px;}
.y69{bottom:769.785000px;}
.yde{bottom:772.485000px;}
.y16d{bottom:775.185000px;}
.y122{bottom:780.765000px;}
.y68{bottom:790.485000px;}
.y8c{bottom:793.185000px;}
.y16c{bottom:795.885000px;}
.y10{bottom:797.505000px;}
.y3e{bottom:799.665000px;}
.y67{bottom:811.185000px;}
.y108{bottom:813.390000px;}
.y8b{bottom:813.930000px;}
.y121{bottom:815.010000px;}
.y16b{bottom:816.630000px;}
.y3d{bottom:820.410000px;}
.yf{bottom:829.230000px;}
.y66{bottom:831.930000px;}
.y8a{bottom:834.630000px;}
.y3c{bottom:841.110000px;}
.ya{bottom:851.535000px;}
.y7{bottom:851.550000px;}
.y65{bottom:852.630000px;}
.y89{bottom:855.330000px;}
.y3b{bottom:861.810000px;}
.ya6{bottom:870.630000px;}
.y14d{bottom:872.970000px;}
.y64{bottom:873.330000px;}
.y105{bottom:873.510000px;}
.y88{bottom:876.030000px;}
.y3a{bottom:882.510000px;}
.ya5{bottom:891.330000px;}
.yb7{bottom:894.030000px;}
.y87{bottom:896.730000px;}
.y39{bottom:903.210000px;}
.y63{bottom:912.030000px;}
.ydd{bottom:914.730000px;}
.y86{bottom:917.430000px;}
.y38{bottom:923.910000px;}
.y62{bottom:932.730000px;}
.y159{bottom:935.070000px;}
.ydc{bottom:935.430000px;}
.yf0{bottom:938.130000px;}
.y37{bottom:944.610000px;}
.y61{bottom:953.430000px;}
.y85{bottom:955.770000px;}
.ydb{bottom:956.130000px;}
.yef{bottom:958.830000px;}
.y36{bottom:965.130000px;}
.y60{bottom:974.130000px;}
.yda{bottom:976.830000px;}
.y5f{bottom:994.830000px;}
.yee{bottom:997.170000px;}
.yd9{bottom:997.530000px;}
.y35{bottom:1003.110000px;}
.y5e{bottom:1015.530000px;}
.y5d{bottom:1036.230000px;}
.y34{bottom:1037.490000px;}
.y33{bottom:1056.570000px;}
.y5c{bottom:1056.930000px;}
.y1{bottom:1079.820000px;}
.y5{bottom:1109.340000px;}
.y182{bottom:1124.280000px;}
.h13{height:0.044998px;}
.h4{height:18.360000px;}
.h1f{height:38.700000px;}
.h11{height:41.535703px;}
.he{height:47.344922px;}
.hd{height:48.616875px;}
.h1a{height:50.273438px;}
.h18{height:50.800781px;}
.hf{height:58.621992px;}
.h1d{height:59.385000px;}
.h20{height:59.400000px;}
.h1e{height:59.421000px;}
.h12{height:59.439023px;}
.h10{height:64.978594px;}
.h3{height:65.884219px;}
.h14{height:66.757500px;}
.h2{height:67.824844px;}
.h8{height:70.628906px;}
.h15{height:70.664062px;}
.hb{height:72.562500px;}
.h16{height:74.004654px;}
.h1c{height:80.085000px;}
.h6{height:82.635820px;}
.h17{height:83.910000px;}
.h9{height:93.936445px;}
.h1{height:95.245664px;}
.ha{height:96.508125px;}
.h19{height:100.965000px;}
.h1b{height:135.021000px;}
.h5{height:221.610000px;}
.h7{height:221.625000px;}
.hc{height:1187.984910px;}
.h0{height:1188.000000px;}
.wd{width:73.461000px;}
.w8{width:74.181000px;}
.we{width:87.480000px;}
.w9{width:88.380000px;}
.w10{width:107.445000px;}
.wb{width:107.805000px;}
.wc{width:122.031000px;}
.w7{width:122.571000px;}
.w19{width:123.105000px;}
.w14{width:123.825000px;}
.w16{width:130.311000px;}
.w11{width:130.671000px;}
.w17{width:131.601000px;}
.w12{width:132.321000px;}
.wf{width:138.456000px;}
.wa{width:139.176000px;}
.w1a{width:151.215000px;}
.w15{width:151.575000px;}
.w18{width:161.490000px;}
.w13{width:162.210000px;}
.w2{width:216.915000px;}
.w3{width:485.160000px;}
.w4{width:485.175000px;}
.w6{width:700.650000px;}
.w1{width:914.760000px;}
.w5{width:917.977500px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x3{left:1.440000px;}
.x5{left:8.091000px;}
.x9{left:51.660000px;}
.x8{left:62.280000px;}
.xe{left:101.196000px;}
.xc{left:106.416000px;}
.x2{left:108.036000px;}
.x17{left:115.596000px;}
.x16{left:120.456000px;}
.x18{left:121.536000px;}
.x15{left:125.496000px;}
.x13{left:135.036000px;}
.xa{left:153.540000px;}
.x14{left:162.030000px;}
.xb{left:183.630000px;}
.x23{left:189.030000px;}
.x11{left:206.670000px;}
.x19{left:231.345000px;}
.x1e{left:239.445000px;}
.x7{left:242.490000px;}
.xf{left:251.647500px;}
.x10{left:257.790000px;}
.x4{left:268.050000px;}
.x1a{left:305.535000px;}
.x6{left:324.975000px;}
.xd{left:350.355000px;}
.x1f{left:371.775000px;}
.x1b{left:393.915000px;}
.x12{left:437.835000px;}
.x1{left:459.075000px;}
.x1c{left:533.100000px;}
.x21{left:534.360000px;}
.x22{left:630.105000px;}
.x20{left:657.840000px;}
.x1d{left:660.345000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls4{letter-spacing:-0.448000pt;}
.ls5{letter-spacing:-0.192000pt;}
.ls3{letter-spacing:0.000000pt;}
.lsa{letter-spacing:0.064000pt;}
.ls8{letter-spacing:0.128000pt;}
.ls2{letter-spacing:0.133120pt;}
.ls1{letter-spacing:0.133333pt;}
.ls0{letter-spacing:0.160000pt;}
.lsc{letter-spacing:0.192000pt;}
.lsb{letter-spacing:0.227733pt;}
.lsd{letter-spacing:0.640000pt;}
.ls9{letter-spacing:5.760000pt;}
.ls6{letter-spacing:30.186667pt;}
.ls7{letter-spacing:78.186667pt;}
.ws6{word-spacing:-16.128000pt;}
.ws9{word-spacing:-16.064000pt;}
.ws3{word-spacing:-16.000000pt;}
.ws5{word-spacing:-15.808000pt;}
.ws2{word-spacing:-14.720000pt;}
.ws7{word-spacing:-13.534613pt;}
.ws1{word-spacing:-0.053120pt;}
.ws4{word-spacing:0.000000pt;}
.ws0{word-spacing:2.362027pt;}
.ws8{word-spacing:2.414080pt;}
._2b{margin-left:-4.682667pt;}
._3{margin-left:-3.765333pt;}
._6{margin-left:-2.237440pt;}
._1{margin-left:-1.000960pt;}
._0{width:0.942080pt;}
._2{width:1.941547pt;}
._b{width:3.475413pt;}
._e{width:4.396587pt;}
._8{width:5.299200pt;}
._a{width:6.589013pt;}
._9{width:7.595520pt;}
._d{width:8.510720pt;}
._10{width:9.532587pt;}
._f{width:10.443947pt;}
._c{width:11.342507pt;}
._4{width:12.305920pt;}
._5{width:13.361067pt;}
._11{width:14.254080pt;}
._7{width:16.839680pt;}
._16{width:18.232320pt;}
._12{width:19.514880pt;}
._13{width:20.426240pt;}
._1c{width:21.713920pt;}
._14{width:22.976000pt;}
._15{width:24.192000pt;}
._19{width:25.408000pt;}
._1a{width:26.652587pt;}
._1b{width:27.661653pt;}
._26{width:28.722347pt;}
._17{width:30.272000pt;}
._18{width:31.208960pt;}
._2d{width:32.576000pt;}
._2c{width:33.696000pt;}
._20{width:35.328000pt;}
._24{width:36.480000pt;}
._25{width:37.436587pt;}
._35{width:39.040000pt;}
._1f{width:44.160000pt;}
._3f{width:47.392000pt;}
._30{width:52.672000pt;}
._31{width:53.568000pt;}
._39{width:59.520000pt;}
._3a{width:60.672000pt;}
._40{width:68.928000pt;}
._41{width:69.888000pt;}
._27{width:72.125440pt;}
._1e{width:73.024000pt;}
._1d{width:76.160000pt;}
._36{width:77.248000pt;}
._28{width:80.253440pt;}
._2e{width:83.904000pt;}
._2f{width:85.169920pt;}
._37{width:92.608000pt;}
._38{width:93.582507pt;}
._32{width:98.368000pt;}
._2a{width:102.397440pt;}
._3d{width:109.463040pt;}
._3c{width:110.824960pt;}
._3b{width:119.200000pt;}
._29{width:140.032000pt;}
._22{width:161.280000pt;}
._21{width:183.210667pt;}
._3e{width:210.368000pt;}
._33{width:213.384960pt;}
._34{width:214.912000pt;}
._23{width:271.466667pt;}
.fs7{font-size:37.120000pt;}
.fs5{font-size:42.880000pt;}
.fs6{font-size:48.000000pt;}
.fs2{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs4{font-size:64.000000pt;}
.fs3{font-size:74.880000pt;}
.fs0{font-size:85.120000pt;}
.y32{bottom:-13.880000pt;}
.y0{bottom:0.000000pt;}
.y6{bottom:2.560000pt;}
.y10b{bottom:3.666667pt;}
.y107{bottom:3.680000pt;}
.yd7{bottom:3.986667pt;}
.y10d{bottom:4.000000pt;}
.y8{bottom:4.160000pt;}
.yc3{bottom:7.040000pt;}
.yd1{bottom:15.986667pt;}
.y181{bottom:20.160000pt;}
.yd4{bottom:22.066667pt;}
.y106{bottom:22.080000pt;}
.yd6{bottom:22.386667pt;}
.y109{bottom:22.400000pt;}
.yc9{bottom:22.560000pt;}
.yc2{bottom:25.440000pt;}
.yd0{bottom:34.386667pt;}
.y180{bottom:37.920000pt;}
.yd3{bottom:40.466667pt;}
.yc6{bottom:40.640000pt;}
.yd5{bottom:40.786667pt;}
.yc8{bottom:40.960000pt;}
.yc1{bottom:43.840000pt;}
.y4{bottom:52.032000pt;}
.ycf{bottom:52.786667pt;}
.yc5{bottom:59.040000pt;}
.yc7{bottom:59.360000pt;}
.ye{bottom:68.493333pt;}
.y3{bottom:68.992000pt;}
.ycc{bottom:70.906667pt;}
.yce{bottom:71.226667pt;}
.y2{bottom:85.152000pt;}
.ycb{bottom:89.306667pt;}
.ycd{bottom:89.626667pt;}
.yd{bottom:101.773333pt;}
.y30{bottom:104.672000pt;}
.y15f{bottom:104.992000pt;}
.y120{bottom:105.632000pt;}
.y84{bottom:107.392000pt;}
.y158{bottom:109.792000pt;}
.y5b{bottom:113.152000pt;}
.yd8{bottom:113.792000pt;}
.yed{bottom:114.592000pt;}
.y13d{bottom:117.152000pt;}
.y17f{bottom:119.392000pt;}
.y2f{bottom:122.752000pt;}
.y15e{bottom:123.392000pt;}
.y83{bottom:125.792000pt;}
.y157{bottom:128.192000pt;}
.y5a{bottom:131.552000pt;}
.yec{bottom:132.992000pt;}
.ya4{bottom:135.386667pt;}
.y13c{bottom:135.546667pt;}
.y104{bottom:136.186667pt;}
.yc{bottom:136.653333pt;}
.yb6{bottom:137.466667pt;}
.y17e{bottom:137.786667pt;}
.y11f{bottom:140.346667pt;}
.y2e{bottom:141.786667pt;}
.y82{bottom:144.186667pt;}
.yd2{bottom:145.160000pt;}
.y156{bottom:146.586667pt;}
.y2d{bottom:147.066667pt;}
.ya3{bottom:153.786667pt;}
.y13b{bottom:153.946667pt;}
.y103{bottom:154.586667pt;}
.yb5{bottom:155.866667pt;}
.y17d{bottom:156.186667pt;}
.yb{bottom:158.093333pt;}
.y11e{bottom:158.746667pt;}
.y15d{bottom:160.186667pt;}
.y2c{bottom:162.266667pt;}
.y14c{bottom:162.586667pt;}
.y16a{bottom:164.986667pt;}
.y59{bottom:165.946667pt;}
.yeb{bottom:167.386667pt;}
.y13a{bottom:172.346667pt;}
.y102{bottom:172.986667pt;}
.y11d{bottom:177.146667pt;}
.y81{bottom:178.266667pt;}
.y15c{bottom:178.586667pt;}
.y9{bottom:179.520000pt;}
.y14b{bottom:180.986667pt;}
.y169{bottom:183.386667pt;}
.y58{bottom:184.346667pt;}
.yea{bottom:185.786667pt;}
.ya2{bottom:187.866667pt;}
.yb4{bottom:190.266667pt;}
.y17c{bottom:190.586667pt;}
.y139{bottom:190.746667pt;}
.y11c{bottom:195.546667pt;}
.y15b{bottom:196.986667pt;}
.y14a{bottom:199.386667pt;}
.y168{bottom:201.786667pt;}
.y57{bottom:202.746667pt;}
.ye9{bottom:204.186667pt;}
.ya1{bottom:206.266667pt;}
.y2b{bottom:207.226667pt;}
.y101{bottom:207.386667pt;}
.y17b{bottom:208.986667pt;}
.y80{bottom:212.986667pt;}
.yca{bottom:217.000000pt;}
.y149{bottom:217.786667pt;}
.y56{bottom:221.146667pt;}
.ye8{bottom:222.586667pt;}
.yb3{bottom:224.986667pt;}
.y138{bottom:225.146667pt;}
.y100{bottom:225.786667pt;}
.y2a{bottom:226.586667pt;}
.y17a{bottom:227.386667pt;}
.y11b{bottom:229.946667pt;}
.y7f{bottom:231.386667pt;}
.y148{bottom:236.186667pt;}
.y55{bottom:239.546667pt;}
.ya0{bottom:240.666667pt;}
.ye7{bottom:240.986667pt;}
.yb2{bottom:243.386667pt;}
.y137{bottom:243.546667pt;}
.yff{bottom:244.186667pt;}
.y29{bottom:245.946667pt;}
.y11a{bottom:248.346667pt;}
.y7e{bottom:249.786667pt;}
.y147{bottom:254.586667pt;}
.y54{bottom:257.946667pt;}
.yb1{bottom:261.786667pt;}
.y136{bottom:261.946667pt;}
.yfe{bottom:262.586667pt;}
.y28{bottom:265.306667pt;}
.y119{bottom:266.746667pt;}
.y7d{bottom:268.186667pt;}
.y146{bottom:272.986667pt;}
.y9f{bottom:275.426667pt;}
.y53{bottom:276.386667pt;}
.yb0{bottom:280.226667pt;}
.y135{bottom:280.386667pt;}
.y27{bottom:284.866667pt;}
.y118{bottom:285.186667pt;}
.y7c{bottom:286.626667pt;}
.y155{bottom:291.426667pt;}
.y9e{bottom:293.826667pt;}
.y52{bottom:294.786667pt;}
.yfd{bottom:297.026667pt;}
.y179{bottom:298.626667pt;}
.y134{bottom:298.786667pt;}
.y26{bottom:304.226667pt;}
.y7b{bottom:305.026667pt;}
.y145{bottom:307.106667pt;}
.y167{bottom:307.426667pt;}
.y9d{bottom:312.226667pt;}
.yaf{bottom:314.306667pt;}
.yfc{bottom:315.426667pt;}
.y133{bottom:317.186667pt;}
.y117{bottom:319.586667pt;}
.y15a{bottom:323.426667pt;}
.y25{bottom:323.586667pt;}
.y154{bottom:325.826667pt;}
.y51{bottom:329.186667pt;}
.y9c{bottom:330.626667pt;}
.y178{bottom:333.026667pt;}
.yfb{bottom:333.826667pt;}
.y132{bottom:335.586667pt;}
.yc4{bottom:337.826667pt;}
.y116{bottom:337.986667pt;}
.y7a{bottom:339.426667pt;}
.y144{bottom:341.826667pt;}
.y24{bottom:342.946667pt;}
.y153{bottom:344.226667pt;}
.y50{bottom:347.586667pt;}
.y9b{bottom:349.026667pt;}
.y177{bottom:351.426667pt;}
.yfa{bottom:352.226667pt;}
.y131{bottom:353.986667pt;}
.y115{bottom:356.386667pt;}
.y79{bottom:357.826667pt;}
.y143{bottom:360.226667pt;}
.y23{bottom:362.306667pt;}
.y152{bottom:362.626667pt;}
.y4f{bottom:365.986667pt;}
.yae{bottom:367.426667pt;}
.y176{bottom:369.826667pt;}
.yf9{bottom:370.626667pt;}
.y130{bottom:372.386667pt;}
.y114{bottom:374.786667pt;}
.y78{bottom:376.226667pt;}
.y142{bottom:378.626667pt;}
.y151{bottom:381.026667pt;}
.y22{bottom:381.826667pt;}
.y9a{bottom:383.426667pt;}
.y4e{bottom:384.386667pt;}
.yad{bottom:385.826667pt;}
.y77{bottom:394.626667pt;}
.y141{bottom:397.026667pt;}
.y150{bottom:399.426667pt;}
.y21{bottom:401.186667pt;}
.y99{bottom:401.826667pt;}
.y4d{bottom:402.786667pt;}
.yac{bottom:404.226667pt;}
.yf8{bottom:405.026667pt;}
.y12f{bottom:406.466667pt;}
.y113{bottom:408.866667pt;}
.y76{bottom:413.026667pt;}
.y140{bottom:415.426667pt;}
.y14f{bottom:417.826667pt;}
.y98{bottom:420.226667pt;}
.y20{bottom:420.546667pt;}
.y4c{bottom:421.186667pt;}
.y175{bottom:422.626667pt;}
.yf7{bottom:423.426667pt;}
.y112{bottom:427.266667pt;}
.yc0{bottom:428.226667pt;}
.y75{bottom:431.426667pt;}
.y13f{bottom:433.826667pt;}
.y97{bottom:438.626667pt;}
.y4b{bottom:439.586667pt;}
.y1f{bottom:439.906667pt;}
.y174{bottom:441.026667pt;}
.y12e{bottom:441.186667pt;}
.yf6{bottom:441.826667pt;}
.y166{bottom:449.506667pt;}
.y74{bottom:449.826667pt;}
.y14e{bottom:451.906667pt;}
.y13e{bottom:452.226667pt;}
.y96{bottom:457.026667pt;}
.y4a{bottom:457.986667pt;}
.y1e{bottom:459.266667pt;}
.y12d{bottom:459.586667pt;}
.yf5{bottom:460.226667pt;}
.y111{bottom:461.666667pt;}
.y73{bottom:468.226667pt;}
.y173{bottom:475.426667pt;}
.y49{bottom:476.386667pt;}
.y12c{bottom:477.986667pt;}
.y1d{bottom:478.786667pt;}
.y165{bottom:484.226667pt;}
.y72{bottom:486.626667pt;}
.ye6{bottom:491.106667pt;}
.y95{bottom:491.426667pt;}
.y172{bottom:493.826667pt;}
.yf4{bottom:494.306667pt;}
.y48{bottom:494.786667pt;}
.y110{bottom:496.066667pt;}
.y12b{bottom:496.386667pt;}
.y1c{bottom:498.173333pt;}
.y164{bottom:502.653333pt;}
.y71{bottom:505.053333pt;}
.ybf{bottom:507.453333pt;}
.y94{bottom:509.853333pt;}
.y171{bottom:512.253333pt;}
.yf3{bottom:512.733333pt;}
.y12a{bottom:514.813333pt;}
.y1b{bottom:517.533333pt;}
.y163{bottom:521.053333pt;}
.y70{bottom:523.453333pt;}
.ye5{bottom:525.533333pt;}
.ybe{bottom:525.853333pt;}
.y10f{bottom:527.453333pt;}
.y93{bottom:528.253333pt;}
.y47{bottom:529.213333pt;}
.y129{bottom:533.213333pt;}
.y1a{bottom:536.893333pt;}
.y162{bottom:539.453333pt;}
.y6f{bottom:541.853333pt;}
.y92{bottom:546.653333pt;}
.yf2{bottom:547.133333pt;}
.y46{bottom:547.613333pt;}
.y128{bottom:551.613333pt;}
.y19{bottom:556.413333pt;}
.y161{bottom:557.853333pt;}
.ybd{bottom:559.933333pt;}
.ye4{bottom:560.253333pt;}
.yab{bottom:562.653333pt;}
.y91{bottom:565.053333pt;}
.y45{bottom:566.013333pt;}
.y127{bottom:570.013333pt;}
.y18{bottom:575.773333pt;}
.y6e{bottom:575.933333pt;}
.y160{bottom:576.253333pt;}
.yf1{bottom:577.853333pt;}
.ye3{bottom:578.653333pt;}
.y10e{bottom:580.893333pt;}
.yaa{bottom:581.053333pt;}
.y90{bottom:583.453333pt;}
.y44{bottom:584.413333pt;}
.y6d{bottom:594.333333pt;}
.ybc{bottom:594.653333pt;}
.y17{bottom:595.133333pt;}
.ye2{bottom:597.053333pt;}
.ya9{bottom:599.453333pt;}
.y43{bottom:602.813333pt;}
.y126{bottom:604.093333pt;}
.y6c{bottom:612.733333pt;}
.ybb{bottom:613.053333pt;}
.y16{bottom:614.653333pt;}
.ye1{bottom:615.453333pt;}
.y8f{bottom:617.533333pt;}
.y170{bottom:617.853333pt;}
.y42{bottom:621.213333pt;}
.y31{bottom:627.093333pt;}
.yba{bottom:631.453333pt;}
.y15{bottom:632.893333pt;}
.ya8{bottom:633.533333pt;}
.ye0{bottom:633.853333pt;}
.y10c{bottom:634.333333pt;}
.y8e{bottom:635.933333pt;}
.y16f{bottom:636.253333pt;}
.y125{bottom:638.813333pt;}
.y41{bottom:639.613333pt;}
.y6b{bottom:647.453333pt;}
.y14{bottom:648.893333pt;}
.yb9{bottom:649.853333pt;}
.ydf{bottom:652.253333pt;}
.y16e{bottom:654.653333pt;}
.y124{bottom:657.213333pt;}
.y40{bottom:658.013333pt;}
.y6a{bottom:665.853333pt;}
.ya7{bottom:667.933333pt;}
.yb8{bottom:668.253333pt;}
.y10a{bottom:669.386667pt;}
.y8d{bottom:670.333333pt;}
.y123{bottom:675.613333pt;}
.y3f{bottom:676.413333pt;}
.y11{bottom:677.853333pt;}
.y12{bottom:683.133333pt;}
.y13{bottom:683.933333pt;}
.y69{bottom:684.253333pt;}
.yde{bottom:686.653333pt;}
.y16d{bottom:689.053333pt;}
.y122{bottom:694.013333pt;}
.y68{bottom:702.653333pt;}
.y8c{bottom:705.053333pt;}
.y16c{bottom:707.453333pt;}
.y10{bottom:708.893333pt;}
.y3e{bottom:710.813333pt;}
.y67{bottom:721.053333pt;}
.y108{bottom:723.013333pt;}
.y8b{bottom:723.493333pt;}
.y121{bottom:724.453333pt;}
.y16b{bottom:725.893333pt;}
.y3d{bottom:729.253333pt;}
.yf{bottom:737.093333pt;}
.y66{bottom:739.493333pt;}
.y8a{bottom:741.893333pt;}
.y3c{bottom:747.653333pt;}
.ya{bottom:756.920000pt;}
.y7{bottom:756.933333pt;}
.y65{bottom:757.893333pt;}
.y89{bottom:760.293333pt;}
.y3b{bottom:766.053333pt;}
.ya6{bottom:773.893333pt;}
.y14d{bottom:775.973333pt;}
.y64{bottom:776.293333pt;}
.y105{bottom:776.453333pt;}
.y88{bottom:778.693333pt;}
.y3a{bottom:784.453333pt;}
.ya5{bottom:792.293333pt;}
.yb7{bottom:794.693333pt;}
.y87{bottom:797.093333pt;}
.y39{bottom:802.853333pt;}
.y63{bottom:810.693333pt;}
.ydd{bottom:813.093333pt;}
.y86{bottom:815.493333pt;}
.y38{bottom:821.253333pt;}
.y62{bottom:829.093333pt;}
.y159{bottom:831.173333pt;}
.ydc{bottom:831.493333pt;}
.yf0{bottom:833.893333pt;}
.y37{bottom:839.653333pt;}
.y61{bottom:847.493333pt;}
.y85{bottom:849.573333pt;}
.ydb{bottom:849.893333pt;}
.yef{bottom:852.293333pt;}
.y36{bottom:857.893333pt;}
.y60{bottom:865.893333pt;}
.yda{bottom:868.293333pt;}
.y5f{bottom:884.293333pt;}
.yee{bottom:886.373333pt;}
.yd9{bottom:886.693333pt;}
.y35{bottom:891.653333pt;}
.y5e{bottom:902.693333pt;}
.y5d{bottom:921.093333pt;}
.y34{bottom:922.213333pt;}
.y33{bottom:939.173333pt;}
.y5c{bottom:939.493333pt;}
.y1{bottom:959.840000pt;}
.y5{bottom:986.080000pt;}
.y182{bottom:999.360000pt;}
.h13{height:0.039999pt;}
.h4{height:16.320000pt;}
.h1f{height:34.400000pt;}
.h11{height:36.920625pt;}
.he{height:42.084375pt;}
.hd{height:43.215000pt;}
.h1a{height:44.687500pt;}
.h18{height:45.156250pt;}
.hf{height:52.108438pt;}
.h1d{height:52.786667pt;}
.h20{height:52.800000pt;}
.h1e{height:52.818667pt;}
.h12{height:52.834688pt;}
.h10{height:57.758750pt;}
.h3{height:58.563750pt;}
.h14{height:59.340000pt;}
.h2{height:60.288750pt;}
.h8{height:62.781250pt;}
.h15{height:62.812500pt;}
.hb{height:64.500000pt;}
.h16{height:65.781915pt;}
.h1c{height:71.186667pt;}
.h6{height:73.454062pt;}
.h17{height:74.586667pt;}
.h9{height:83.499062pt;}
.h1{height:84.662813pt;}
.ha{height:85.785000pt;}
.h19{height:89.746667pt;}
.h1b{height:120.018667pt;}
.h5{height:196.986667pt;}
.h7{height:197.000000pt;}
.hc{height:1055.986587pt;}
.h0{height:1056.000000pt;}
.wd{width:65.298667pt;}
.w8{width:65.938667pt;}
.we{width:77.760000pt;}
.w9{width:78.560000pt;}
.w10{width:95.506667pt;}
.wb{width:95.826667pt;}
.wc{width:108.472000pt;}
.w7{width:108.952000pt;}
.w19{width:109.426667pt;}
.w14{width:110.066667pt;}
.w16{width:115.832000pt;}
.w11{width:116.152000pt;}
.w17{width:116.978667pt;}
.w12{width:117.618667pt;}
.wf{width:123.072000pt;}
.wa{width:123.712000pt;}
.w1a{width:134.413333pt;}
.w15{width:134.733333pt;}
.w18{width:143.546667pt;}
.w13{width:144.186667pt;}
.w2{width:192.813333pt;}
.w3{width:431.253333pt;}
.w4{width:431.266667pt;}
.w6{width:622.800000pt;}
.w1{width:813.120000pt;}
.w5{width:815.980000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x3{left:1.280000pt;}
.x5{left:7.192000pt;}
.x9{left:45.920000pt;}
.x8{left:55.360000pt;}
.xe{left:89.952000pt;}
.xc{left:94.592000pt;}
.x2{left:96.032000pt;}
.x17{left:102.752000pt;}
.x16{left:107.072000pt;}
.x18{left:108.032000pt;}
.x15{left:111.552000pt;}
.x13{left:120.032000pt;}
.xa{left:136.480000pt;}
.x14{left:144.026667pt;}
.xb{left:163.226667pt;}
.x23{left:168.026667pt;}
.x11{left:183.706667pt;}
.x19{left:205.640000pt;}
.x1e{left:212.840000pt;}
.x7{left:215.546667pt;}
.xf{left:223.686667pt;}
.x10{left:229.146667pt;}
.x4{left:238.266667pt;}
.x1a{left:271.586667pt;}
.x6{left:288.866667pt;}
.xd{left:311.426667pt;}
.x1f{left:330.466667pt;}
.x1b{left:350.146667pt;}
.x12{left:389.186667pt;}
.x1{left:408.066667pt;}
.x1c{left:473.866667pt;}
.x21{left:474.986667pt;}
.x22{left:560.093333pt;}
.x20{left:584.746667pt;}
.x1d{left:586.973333pt;}
}




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