
    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_9c9c5ff68a3a13bf8665a915.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_4b6feac2acc238539dbcb369.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.065430;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_fe765cb774005cfa0390c76a.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.088379;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_06a2668152f08da5efb85deb.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.064941;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_5e822bc97609d47db050bb1e.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.435059;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_b40b0ba215edf62ece5fd953.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_f3a1624b753be06828070bbf.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.088379;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);}
.v1{vertical-align:-20.880000px;}
.v3{vertical-align:-15.120000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:15.120000px;}
.lsf{letter-spacing:-0.052560px;}
.ls9{letter-spacing:-0.036000px;}
.ls2{letter-spacing:0.000000px;}
.ls6{letter-spacing:0.012960px;}
.ls1{letter-spacing:0.013200px;}
.ls4{letter-spacing:0.172800px;}
.lsd{letter-spacing:0.209400px;}
.ls7{letter-spacing:0.211680px;}
.ls3{letter-spacing:0.351600px;}
.lsb{letter-spacing:0.360000px;}
.ls5{letter-spacing:0.385800px;}
.lse{letter-spacing:0.540000px;}
.ls8{letter-spacing:0.666720px;}
.ls0{letter-spacing:0.720000px;}
.lsc{letter-spacing:47.466720px;}
.lsa{letter-spacing:81.450720px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0{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);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc1{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws6{word-spacing:-14.958600px;}
.ws3{word-spacing:-14.572800px;}
.ws8{word-spacing:-13.356600px;}
.ws1{word-spacing:-13.160400px;}
.ws9{word-spacing:-13.160160px;}
.ws2{word-spacing:-13.147200px;}
.ws7{word-spacing:-13.111200px;}
.wsa{word-spacing:-13.094640px;}
.ws0{word-spacing:-9.187200px;}
.ws5{word-spacing:0.000000px;}
.ws4{word-spacing:2.408040px;}
._e{margin-left:-3.366241px;}
._7{margin-left:-2.159999px;}
._0{margin-left:-1.159200px;}
._2{width:1.546080px;}
._6{width:2.578560px;}
._4{width:3.919451px;}
._b{width:4.933858px;}
._3{width:6.292800px;}
._5{width:7.574379px;}
._a{width:9.382200px;}
._15{width:10.430403px;}
._8{width:11.430718px;}
._9{width:14.581201px;}
._14{width:15.812400px;}
._1{width:17.525520px;}
._13{width:19.362240px;}
._18{width:20.393520px;}
._17{width:21.521280px;}
._d{width:22.587479px;}
._c{width:23.724600px;}
._11{width:25.218720px;}
._12{width:26.250120px;}
._f{width:27.736320px;}
._10{width:28.825440px;}
._16{width:30.024720px;}
._19{width:31.493520px;}
._1c{width:32.821680px;}
._1a{width:38.126880px;}
._1b{width:39.238320px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:38.880000px;}
.fs6{font-size:41.760000px;}
.fs3{font-size:45.360000px;}
.fs2{font-size:54.000000px;}
.fs1{font-size:59.760000px;}
.fs5{font-size:66.240000px;}
.fs7{font-size:72.000000px;}
.fs4{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y2{bottom:73.260000px;}
.y2a{bottom:74.160000px;}
.y1{bottom:101.340000px;}
.y166{bottom:111.240000px;}
.y84{bottom:112.140000px;}
.yfe{bottom:112.500000px;}
.yd9{bottom:112.860000px;}
.y184{bottom:113.220000px;}
.y11e{bottom:116.280000px;}
.y143{bottom:119.880000px;}
.y5a{bottom:120.600000px;}
.ya8{bottom:121.500000px;}
.y165{bottom:128.880000px;}
.y83{bottom:129.600000px;}
.yfd{bottom:130.140000px;}
.yd8{bottom:130.500000px;}
.y183{bottom:130.860000px;}
.y1b6{bottom:132.840000px;}
.y11d{bottom:133.740000px;}
.y142{bottom:137.340000px;}
.y28{bottom:137.700000px;}
.y59{bottom:138.240000px;}
.y19d{bottom:141.840000px;}
.y164{bottom:146.340000px;}
.y82{bottom:147.240000px;}
.yfc{bottom:147.600000px;}
.yd7{bottom:148.140000px;}
.y1b5{bottom:150.480000px;}
.y27{bottom:155.160000px;}
.y58{bottom:155.880000px;}
.ya7{bottom:156.960000px;}
.y182{bottom:157.320000px;}
.y19c{bottom:159.510000px;}
.y11c{bottom:160.410000px;}
.y163{bottom:164.010000px;}
.y81{bottom:164.910000px;}
.yfb{bottom:165.270000px;}
.yd6{bottom:165.630000px;}
.y141{bottom:173.010000px;}
.y57{bottom:173.370000px;}
.ya6{bottom:174.630000px;}
.y181{bottom:174.990000px;}
.y1b4{bottom:176.970000px;}
.y10c{bottom:182.370000px;}
.y19b{bottom:185.970000px;}
.y140{bottom:190.650000px;}
.y26{bottom:190.830000px;}
.y56{bottom:191.010000px;}
.y80{bottom:191.370000px;}
.ya5{bottom:192.270000px;}
.y1b3{bottom:194.610000px;}
.y11b{bottom:196.230000px;}
.y162{bottom:199.470000px;}
.y10b{bottom:200.010000px;}
.yfa{bottom:200.730000px;}
.yd5{bottom:201.270000px;}
.y180{bottom:201.630000px;}
.y13f{bottom:208.110000px;}
.y25{bottom:208.470000px;}
.ya4{bottom:209.910000px;}
.y19a{bottom:212.610000px;}
.y161{bottom:217.110000px;}
.yf9{bottom:218.370000px;}
.yd4{bottom:218.910000px;}
.y1b2{bottom:221.070000px;}
.y13e{bottom:225.750000px;}
.y24{bottom:225.930000px;}
.y55{bottom:226.470000px;}
.y7f{bottom:227.010000px;}
.ya3{bottom:227.370000px;}
.y17f{bottom:228.090000px;}
.y199{bottom:230.250000px;}
.y160{bottom:234.750000px;}
.yf8{bottom:236.010000px;}
.yd3{bottom:236.370000px;}
.y1b1{bottom:238.710000px;}
.y23{bottom:243.570000px;}
.y54{bottom:244.110000px;}
.y11a{bottom:244.470000px;}
.y7e{bottom:244.650000px;}
.ya2{bottom:245.010000px;}
.y15f{bottom:252.390000px;}
.yf7{bottom:253.650000px;}
.yd2{bottom:254.010000px;}
.y17e{bottom:254.730000px;}
.y198{bottom:256.710000px;}
.y22{bottom:261.210000px;}
.y13d{bottom:261.390000px;}
.y53{bottom:261.750000px;}
.y7d{bottom:262.110000px;}
.ya1{bottom:262.650000px;}
.y1b0{bottom:265.350000px;}
.y15e{bottom:270.030000px;}
.yf6{bottom:271.110000px;}
.yd1{bottom:271.650000px;}
.y197{bottom:274.350000px;}
.y13c{bottom:279.030000px;}
.y52{bottom:279.390000px;}
.y7c{bottom:279.750000px;}
.ya0{bottom:280.110000px;}
.y17d{bottom:281.370000px;}
.y1af{bottom:282.990000px;}
.y21{bottom:287.850000px;}
.yf5{bottom:288.750000px;}
.yd0{bottom:289.110000px;}
.y13b{bottom:296.490000px;}
.y51{bottom:297.030000px;}
.y7b{bottom:297.390000px;}
.y9f{bottom:297.750000px;}
.y17c{bottom:299.010000px;}
.y196{bottom:300.990000px;}
.y15d{bottom:305.490000px;}
.yf4{bottom:306.390000px;}
.ycf{bottom:306.750000px;}
.y1ae{bottom:309.450000px;}
.y13a{bottom:314.130000px;}
.y7a{bottom:315.030000px;}
.y195{bottom:318.630000px;}
.y15c{bottom:323.130000px;}
.y50{bottom:323.490000px;}
.yf3{bottom:324.030000px;}
.yce{bottom:324.390000px;}
.y17b{bottom:325.470000px;}
.y79{bottom:332.490000px;}
.y9e{bottom:333.390000px;}
.y1ad{bottom:336.090000px;}
.y20{bottom:336.270000px;}
.y139{bottom:340.590000px;}
.y15b{bottom:340.770000px;}
.y194{bottom:345.090000px;}
.y78{bottom:350.130000px;}
.yf2{bottom:350.490000px;}
.ycd{bottom:350.850000px;}
.y9d{bottom:351.030000px;}
.y17a{bottom:352.110000px;}
.y1ac{bottom:353.730000px;}
.y1f{bottom:354.270000px;}
.y15a{bottom:358.230000px;}
.y4f{bottom:359.130000px;}
.y193{bottom:362.730000px;}
.y77{bottom:367.770000px;}
.y10a{bottom:368.130000px;}
.y9c{bottom:368.490000px;}
.y159{bottom:375.870000px;}
.y138{bottom:376.410000px;}
.y4e{bottom:376.770000px;}
.y179{bottom:378.570000px;}
.y1ab{bottom:380.190000px;}
.y119{bottom:385.590000px;}
.y109{bottom:385.770000px;}
.y9b{bottom:386.130000px;}
.yf1{bottom:386.310000px;}
.ycc{bottom:386.670000px;}
.y192{bottom:389.190000px;}
.y1e{bottom:391.170000px;}
.y4d{bottom:394.230000px;}
.y178{bottom:396.210000px;}
.y158{bottom:402.690000px;}
.y76{bottom:403.230000px;}
.y9a{bottom:403.770000px;}
.y191{bottom:406.875000px;}
.y1d{bottom:408.855000px;}
.y4c{bottom:411.915000px;}
.y177{bottom:413.895000px;}
.y75{bottom:420.915000px;}
.y99{bottom:421.275000px;}
.y1aa{bottom:424.515000px;}
.y137{bottom:424.875000px;}
.y1c{bottom:426.495000px;}
.y4b{bottom:429.555000px;}
.y190{bottom:433.515000px;}
.yf0{bottom:434.775000px;}
.ycb{bottom:435.135000px;}
.y74{bottom:438.555000px;}
.y98{bottom:438.915000px;}
.y176{bottom:440.355000px;}
.y136{bottom:442.515000px;}
.y1b{bottom:444.135000px;}
.y157{bottom:450.975000px;}
.yef{bottom:452.415000px;}
.yca{bottom:452.775000px;}
.y73{bottom:456.015000px;}
.y97{bottom:456.555000px;}
.y18f{bottom:459.975000px;}
.y135{bottom:460.155000px;}
.y1a{bottom:461.595000px;}
.y4a{bottom:465.015000px;}
.y175{bottom:466.995000px;}
.y156{bottom:468.615000px;}
.yee{bottom:469.875000px;}
.yc9{bottom:470.415000px;}
.y72{bottom:473.655000px;}
.y96{bottom:474.015000px;}
.y134{bottom:477.615000px;}
.y19{bottom:479.235000px;}
.y49{bottom:482.655000px;}
.y174{bottom:484.635000px;}
.y155{bottom:486.255000px;}
.yed{bottom:487.515000px;}
.yc8{bottom:487.875000px;}
.y71{bottom:491.295000px;}
.y1a9{bottom:495.255000px;}
.y18{bottom:496.875000px;}
.y48{bottom:500.295000px;}
.y95{bottom:500.655000px;}
.y154{bottom:503.895000px;}
.y18e{bottom:504.255000px;}
.yec{bottom:505.155000px;}
.yc7{bottom:505.515000px;}
.y70{bottom:508.935000px;}
.y108{bottom:509.295000px;}
.y173{bottom:511.275000px;}
.y1a8{bottom:512.895000px;}
.y133{bottom:513.255000px;}
.y17{bottom:514.515000px;}
.y47{bottom:517.935000px;}
.y153{bottom:521.355000px;}
.y18d{bottom:521.895000px;}
.yeb{bottom:522.615000px;}
.yc6{bottom:523.155000px;}
.y6f{bottom:526.395000px;}
.y107{bottom:526.935000px;}
.y172{bottom:528.915000px;}
.y132{bottom:530.895000px;}
.y16{bottom:531.975000px;}
.y118{bottom:535.755000px;}
.y94{bottom:536.475000px;}
.y1a7{bottom:539.355000px;}
.yea{bottom:540.255000px;}
.yc5{bottom:540.615000px;}
.y106{bottom:544.395000px;}
.y131{bottom:548.355000px;}
.y15{bottom:549.615000px;}
.y6e{bottom:553.035000px;}
.y46{bottom:553.395000px;}
.y171{bottom:555.375000px;}
.y152{bottom:556.995000px;}
.yc4{bottom:558.255000px;}
.y105{bottom:562.035000px;}
.y130{bottom:565.995000px;}
.y14{bottom:567.255000px;}
.y45{bottom:571.035000px;}
.y170{bottom:573.015000px;}
.y151{bottom:574.635000px;}
.ye9{bottom:575.715000px;}
.yc3{bottom:575.895000px;}
.y104{bottom:579.675000px;}
.y12f{bottom:583.635000px;}
.y13{bottom:584.715000px;}
.y44{bottom:588.675000px;}
.y6d{bottom:588.855000px;}
.y150{bottom:592.275000px;}
.y18c{bottom:592.635000px;}
.ye8{bottom:593.355000px;}
.y103{bottom:597.135000px;}
.y16f{bottom:599.475000px;}
.y12e{bottom:601.275000px;}
.y12{bottom:602.355000px;}
.y43{bottom:606.135000px;}
.y18b{bottom:610.275000px;}
.ye7{bottom:610.995000px;}
.yc2{bottom:611.355000px;}
.y102{bottom:614.775000px;}
.y16e{bottom:617.115000px;}
.y14f{bottom:618.735000px;}
.y11{bottom:619.995000px;}
.y42{bottom:623.775000px;}
.y1a6{bottom:627.735000px;}
.ye6{bottom:628.635000px;}
.yc1{bottom:628.995000px;}
.y12d{bottom:636.735000px;}
.y6c{bottom:637.095000px;}
.y10{bottom:637.455000px;}
.y93{bottom:637.635000px;}
.y101{bottom:641.235000px;}
.y41{bottom:641.415000px;}
.y16d{bottom:643.935000px;}
.y1a5{bottom:645.375000px;}
.ye5{bottom:646.275000px;}
.yc0{bottom:646.635000px;}
.y12c{bottom:654.405000px;}
.y6b{bottom:654.765000px;}
.y92{bottom:655.305000px;}
.y117{bottom:659.265000px;}
.ye4{bottom:663.765000px;}
.yf{bottom:664.305000px;}
.y1a4{bottom:671.865000px;}
.y12b{bottom:672.045000px;}
.y6a{bottom:672.405000px;}
.y91{bottom:672.765000px;}
.y40{bottom:676.905000px;}
.y100{bottom:677.085000px;}
.y18a{bottom:680.865000px;}
.ye3{bottom:681.405000px;}
.ybf{bottom:681.765000px;}
.y12a{bottom:689.505000px;}
.y69{bottom:690.045000px;}
.y90{bottom:690.405000px;}
.y16c{bottom:692.385000px;}
.y3f{bottom:694.545000px;}
.y189{bottom:698.505000px;}
.ye2{bottom:699.045000px;}
.ybe{bottom:699.405000px;}
.y14e{bottom:707.145000px;}
.y68{bottom:707.505000px;}
.y8f{bottom:708.045000px;}
.y3e{bottom:712.185000px;}
.ye{bottom:712.725000px;}
.y1a3{bottom:716.145000px;}
.ybd{bottom:717.045000px;}
.y16b{bottom:719.205000px;}
.y129{bottom:725.145000px;}
.ye1{bottom:725.505000px;}
.y3d{bottom:729.645000px;}
.y1a2{bottom:733.785000px;}
.ybc{bottom:734.505000px;}
.y14d{bottom:742.605000px;}
.y128{bottom:742.785000px;}
.y67{bottom:743.145000px;}
.y8e{bottom:743.505000px;}
.y3c{bottom:747.285000px;}
.yd{bottom:748.545000px;}
.ybb{bottom:752.145000px;}
.y16a{bottom:756.465000px;}
.y127{bottom:760.245000px;}
.y66{bottom:760.785000px;}
.y8d{bottom:761.145000px;}
.y188{bottom:769.245000px;}
.y3b{bottom:773.925000px;}
.y126{bottom:777.885000px;}
.y65{bottom:778.245000px;}
.yba{bottom:778.605000px;}
.y8c{bottom:778.785000px;}
.y116{bottom:782.925000px;}
.yc{bottom:784.545000px;}
.y187{bottom:786.885000px;}
.y14c{bottom:795.525000px;}
.y64{bottom:795.885000px;}
.y8b{bottom:796.245000px;}
.y115{bottom:800.565000px;}
.y125{bottom:804.525000px;}
.y169{bottom:804.885000px;}
.y3a{bottom:809.745000px;}
.y63{bottom:813.525000px;}
.y8a{bottom:813.885000px;}
.yb9{bottom:814.245000px;}
.y114{bottom:818.025000px;}
.y1a1{bottom:822.165000px;}
.y168{bottom:822.525000px;}
.yb{bottom:823.965000px;}
.y14b{bottom:830.985000px;}
.y186{bottom:831.165000px;}
.y89{bottom:831.525000px;}
.yb8{bottom:831.885000px;}
.y113{bottom:835.665000px;}
.y124{bottom:839.985000px;}
.y167{bottom:840.165000px;}
.ya{bottom:841.785000px;}
.y14a{bottom:848.625000px;}
.y62{bottom:848.985000px;}
.y88{bottom:849.165000px;}
.yb7{bottom:849.525000px;}
.y112{bottom:853.305000px;}
.y123{bottom:857.625000px;}
.y39{bottom:857.985000px;}
.y9{bottom:859.785000px;}
.y149{bottom:866.265000px;}
.y61{bottom:866.625000px;}
.yb6{bottom:867.165000px;}
.y111{bottom:870.765000px;}
.y122{bottom:875.265000px;}
.y38{bottom:875.625000px;}
.y8{bottom:877.785000px;}
.y148{bottom:883.905000px;}
.y60{bottom:884.265000px;}
.yb5{bottom:884.625000px;}
.y1a0{bottom:892.725000px;}
.y121{bottom:892.905000px;}
.y37{bottom:893.265000px;}
.y7{bottom:895.785000px;}
.y110{bottom:897.405000px;}
.y185{bottom:901.770000px;}
.y5f{bottom:901.950000px;}
.yb4{bottom:902.310000px;}
.y19f{bottom:910.410000px;}
.yff{bottom:910.770000px;}
.y36{bottom:910.950000px;}
.y87{bottom:911.310000px;}
.y5e{bottom:919.410000px;}
.ye0{bottom:919.770000px;}
.yb3{bottom:919.950000px;}
.y6{bottom:928.230000px;}
.y35{bottom:928.410000px;}
.y86{bottom:928.950000px;}
.y10f{bottom:933.270000px;}
.y147{bottom:937.050000px;}
.yb2{bottom:937.410000px;}
.y5d{bottom:946.050000px;}
.y85{bottom:946.410000px;}
.y5{bottom:947.850000px;}
.y146{bottom:954.690000px;}
.yb1{bottom:955.050000px;}
.y1b7{bottom:963.510000px;}
.y120{bottom:963.690000px;}
.y34{bottom:964.050000px;}
.y145{bottom:972.150000px;}
.ydf{bottom:972.690000px;}
.y11f{bottom:981.150000px;}
.y5c{bottom:981.510000px;}
.y33{bottom:981.690000px;}
.y4{bottom:987.630000px;}
.yde{bottom:990.150000px;}
.yb0{bottom:990.510000px;}
.y144{bottom:998.790000px;}
.y32{bottom:999.150000px;}
.ydd{bottom:1007.790000px;}
.yaf{bottom:1008.150000px;}
.y3{bottom:1012.290000px;}
.y31{bottom:1016.790000px;}
.ydc{bottom:1025.430000px;}
.yae{bottom:1025.790000px;}
.y30{bottom:1034.430000px;}
.ydb{bottom:1043.070000px;}
.yad{bottom:1043.430000px;}
.y19e{bottom:1051.890000px;}
.y2f{bottom:1052.070000px;}
.yac{bottom:1061.070000px;}
.yda{bottom:1069.530000px;}
.y5b{bottom:1069.890000px;}
.yab{bottom:1078.530000px;}
.y10e{bottom:1087.170000px;}
.y2e{bottom:1087.530000px;}
.yaa{bottom:1096.170000px;}
.y2d{bottom:1105.170000px;}
.ya9{bottom:1113.810000px;}
.y10d{bottom:1122.630000px;}
.y2c{bottom:1122.810000px;}
.y2b{bottom:1140.270000px;}
.y29{bottom:1194.300000px;}
.h2{height:29.717578px;}
.h7{height:35.477578px;}
.h3{height:39.468516px;}
.h8{height:47.528438px;}
.h9{height:51.998203px;}
.ha{height:56.084062px;}
.h6{height:57.636562px;}
.hd{height:61.423863px;}
.hc{height:62.211094px;}
.h5{height:62.648438px;}
.hb{height:68.956875px;}
.h4{height:73.298672px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w2{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:68.040000px;}
.x4{left:111.275987px;}
.x2{left:251.669987px;}
.x3{left:800.429987px;}
@media print{
.v1{vertical-align:-18.560000pt;}
.v3{vertical-align:-13.440000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:13.440000pt;}
.lsf{letter-spacing:-0.046720pt;}
.ls9{letter-spacing:-0.032000pt;}
.ls2{letter-spacing:0.000000pt;}
.ls6{letter-spacing:0.011520pt;}
.ls1{letter-spacing:0.011733pt;}
.ls4{letter-spacing:0.153600pt;}
.lsd{letter-spacing:0.186133pt;}
.ls7{letter-spacing:0.188160pt;}
.ls3{letter-spacing:0.312533pt;}
.lsb{letter-spacing:0.320000pt;}
.ls5{letter-spacing:0.342933pt;}
.lse{letter-spacing:0.480000pt;}
.ls8{letter-spacing:0.592640pt;}
.ls0{letter-spacing:0.640000pt;}
.lsc{letter-spacing:42.192640pt;}
.lsa{letter-spacing:72.400640pt;}
.ws6{word-spacing:-13.296533pt;}
.ws3{word-spacing:-12.953600pt;}
.ws8{word-spacing:-11.872533pt;}
.ws1{word-spacing:-11.698133pt;}
.ws9{word-spacing:-11.697920pt;}
.ws2{word-spacing:-11.686400pt;}
.ws7{word-spacing:-11.654400pt;}
.wsa{word-spacing:-11.639680pt;}
.ws0{word-spacing:-8.166400pt;}
.ws5{word-spacing:0.000000pt;}
.ws4{word-spacing:2.140480pt;}
._e{margin-left:-2.992214pt;}
._7{margin-left:-1.919999pt;}
._0{margin-left:-1.030400pt;}
._2{width:1.374293pt;}
._6{width:2.292053pt;}
._4{width:3.483956pt;}
._b{width:4.385651pt;}
._3{width:5.593600pt;}
._5{width:6.732781pt;}
._a{width:8.339734pt;}
._15{width:9.271469pt;}
._8{width:10.160638pt;}
._9{width:12.961068pt;}
._14{width:14.055467pt;}
._1{width:15.578240pt;}
._13{width:17.210880pt;}
._18{width:18.127573pt;}
._17{width:19.130027pt;}
._d{width:20.077759pt;}
._c{width:21.088534pt;}
._11{width:22.416640pt;}
._12{width:23.333440pt;}
._f{width:24.654507pt;}
._10{width:25.622613pt;}
._16{width:26.688640pt;}
._19{width:27.994240pt;}
._1c{width:29.174827pt;}
._1a{width:33.890560pt;}
._1b{width:34.878507pt;}
.fs0{font-size:34.560000pt;}
.fs6{font-size:37.120000pt;}
.fs3{font-size:40.320000pt;}
.fs2{font-size:48.000000pt;}
.fs1{font-size:53.120000pt;}
.fs5{font-size:58.880000pt;}
.fs7{font-size:64.000000pt;}
.fs4{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:65.120000pt;}
.y2a{bottom:65.920000pt;}
.y1{bottom:90.080000pt;}
.y166{bottom:98.880000pt;}
.y84{bottom:99.680000pt;}
.yfe{bottom:100.000000pt;}
.yd9{bottom:100.320000pt;}
.y184{bottom:100.640000pt;}
.y11e{bottom:103.360000pt;}
.y143{bottom:106.560000pt;}
.y5a{bottom:107.200000pt;}
.ya8{bottom:108.000000pt;}
.y165{bottom:114.560000pt;}
.y83{bottom:115.200000pt;}
.yfd{bottom:115.680000pt;}
.yd8{bottom:116.000000pt;}
.y183{bottom:116.320000pt;}
.y1b6{bottom:118.080000pt;}
.y11d{bottom:118.880000pt;}
.y142{bottom:122.080000pt;}
.y28{bottom:122.400000pt;}
.y59{bottom:122.880000pt;}
.y19d{bottom:126.080000pt;}
.y164{bottom:130.080000pt;}
.y82{bottom:130.880000pt;}
.yfc{bottom:131.200000pt;}
.yd7{bottom:131.680000pt;}
.y1b5{bottom:133.760000pt;}
.y27{bottom:137.920000pt;}
.y58{bottom:138.560000pt;}
.ya7{bottom:139.520000pt;}
.y182{bottom:139.840000pt;}
.y19c{bottom:141.786667pt;}
.y11c{bottom:142.586667pt;}
.y163{bottom:145.786667pt;}
.y81{bottom:146.586667pt;}
.yfb{bottom:146.906667pt;}
.yd6{bottom:147.226667pt;}
.y141{bottom:153.786667pt;}
.y57{bottom:154.106667pt;}
.ya6{bottom:155.226667pt;}
.y181{bottom:155.546667pt;}
.y1b4{bottom:157.306667pt;}
.y10c{bottom:162.106667pt;}
.y19b{bottom:165.306667pt;}
.y140{bottom:169.466667pt;}
.y26{bottom:169.626667pt;}
.y56{bottom:169.786667pt;}
.y80{bottom:170.106667pt;}
.ya5{bottom:170.906667pt;}
.y1b3{bottom:172.986667pt;}
.y11b{bottom:174.426667pt;}
.y162{bottom:177.306667pt;}
.y10b{bottom:177.786667pt;}
.yfa{bottom:178.426667pt;}
.yd5{bottom:178.906667pt;}
.y180{bottom:179.226667pt;}
.y13f{bottom:184.986667pt;}
.y25{bottom:185.306667pt;}
.ya4{bottom:186.586667pt;}
.y19a{bottom:188.986667pt;}
.y161{bottom:192.986667pt;}
.yf9{bottom:194.106667pt;}
.yd4{bottom:194.586667pt;}
.y1b2{bottom:196.506667pt;}
.y13e{bottom:200.666667pt;}
.y24{bottom:200.826667pt;}
.y55{bottom:201.306667pt;}
.y7f{bottom:201.786667pt;}
.ya3{bottom:202.106667pt;}
.y17f{bottom:202.746667pt;}
.y199{bottom:204.666667pt;}
.y160{bottom:208.666667pt;}
.yf8{bottom:209.786667pt;}
.yd3{bottom:210.106667pt;}
.y1b1{bottom:212.186667pt;}
.y23{bottom:216.506667pt;}
.y54{bottom:216.986667pt;}
.y11a{bottom:217.306667pt;}
.y7e{bottom:217.466667pt;}
.ya2{bottom:217.786667pt;}
.y15f{bottom:224.346667pt;}
.yf7{bottom:225.466667pt;}
.yd2{bottom:225.786667pt;}
.y17e{bottom:226.426667pt;}
.y198{bottom:228.186667pt;}
.y22{bottom:232.186667pt;}
.y13d{bottom:232.346667pt;}
.y53{bottom:232.666667pt;}
.y7d{bottom:232.986667pt;}
.ya1{bottom:233.466667pt;}
.y1b0{bottom:235.866667pt;}
.y15e{bottom:240.026667pt;}
.yf6{bottom:240.986667pt;}
.yd1{bottom:241.466667pt;}
.y197{bottom:243.866667pt;}
.y13c{bottom:248.026667pt;}
.y52{bottom:248.346667pt;}
.y7c{bottom:248.666667pt;}
.ya0{bottom:248.986667pt;}
.y17d{bottom:250.106667pt;}
.y1af{bottom:251.546667pt;}
.y21{bottom:255.866667pt;}
.yf5{bottom:256.666667pt;}
.yd0{bottom:256.986667pt;}
.y13b{bottom:263.546667pt;}
.y51{bottom:264.026667pt;}
.y7b{bottom:264.346667pt;}
.y9f{bottom:264.666667pt;}
.y17c{bottom:265.786667pt;}
.y196{bottom:267.546667pt;}
.y15d{bottom:271.546667pt;}
.yf4{bottom:272.346667pt;}
.ycf{bottom:272.666667pt;}
.y1ae{bottom:275.066667pt;}
.y13a{bottom:279.226667pt;}
.y7a{bottom:280.026667pt;}
.y195{bottom:283.226667pt;}
.y15c{bottom:287.226667pt;}
.y50{bottom:287.546667pt;}
.yf3{bottom:288.026667pt;}
.yce{bottom:288.346667pt;}
.y17b{bottom:289.306667pt;}
.y79{bottom:295.546667pt;}
.y9e{bottom:296.346667pt;}
.y1ad{bottom:298.746667pt;}
.y20{bottom:298.906667pt;}
.y139{bottom:302.746667pt;}
.y15b{bottom:302.906667pt;}
.y194{bottom:306.746667pt;}
.y78{bottom:311.226667pt;}
.yf2{bottom:311.546667pt;}
.ycd{bottom:311.866667pt;}
.y9d{bottom:312.026667pt;}
.y17a{bottom:312.986667pt;}
.y1ac{bottom:314.426667pt;}
.y1f{bottom:314.906667pt;}
.y15a{bottom:318.426667pt;}
.y4f{bottom:319.226667pt;}
.y193{bottom:322.426667pt;}
.y77{bottom:326.906667pt;}
.y10a{bottom:327.226667pt;}
.y9c{bottom:327.546667pt;}
.y159{bottom:334.106667pt;}
.y138{bottom:334.586667pt;}
.y4e{bottom:334.906667pt;}
.y179{bottom:336.506667pt;}
.y1ab{bottom:337.946667pt;}
.y119{bottom:342.746667pt;}
.y109{bottom:342.906667pt;}
.y9b{bottom:343.226667pt;}
.yf1{bottom:343.386667pt;}
.ycc{bottom:343.706667pt;}
.y192{bottom:345.946667pt;}
.y1e{bottom:347.706667pt;}
.y4d{bottom:350.426667pt;}
.y178{bottom:352.186667pt;}
.y158{bottom:357.946667pt;}
.y76{bottom:358.426667pt;}
.y9a{bottom:358.906667pt;}
.y191{bottom:361.666667pt;}
.y1d{bottom:363.426667pt;}
.y4c{bottom:366.146667pt;}
.y177{bottom:367.906667pt;}
.y75{bottom:374.146667pt;}
.y99{bottom:374.466667pt;}
.y1aa{bottom:377.346667pt;}
.y137{bottom:377.666667pt;}
.y1c{bottom:379.106667pt;}
.y4b{bottom:381.826667pt;}
.y190{bottom:385.346667pt;}
.yf0{bottom:386.466667pt;}
.ycb{bottom:386.786667pt;}
.y74{bottom:389.826667pt;}
.y98{bottom:390.146667pt;}
.y176{bottom:391.426667pt;}
.y136{bottom:393.346667pt;}
.y1b{bottom:394.786667pt;}
.y157{bottom:400.866667pt;}
.yef{bottom:402.146667pt;}
.yca{bottom:402.466667pt;}
.y73{bottom:405.346667pt;}
.y97{bottom:405.826667pt;}
.y18f{bottom:408.866667pt;}
.y135{bottom:409.026667pt;}
.y1a{bottom:410.306667pt;}
.y4a{bottom:413.346667pt;}
.y175{bottom:415.106667pt;}
.y156{bottom:416.546667pt;}
.yee{bottom:417.666667pt;}
.yc9{bottom:418.146667pt;}
.y72{bottom:421.026667pt;}
.y96{bottom:421.346667pt;}
.y134{bottom:424.546667pt;}
.y19{bottom:425.986667pt;}
.y49{bottom:429.026667pt;}
.y174{bottom:430.786667pt;}
.y155{bottom:432.226667pt;}
.yed{bottom:433.346667pt;}
.yc8{bottom:433.666667pt;}
.y71{bottom:436.706667pt;}
.y1a9{bottom:440.226667pt;}
.y18{bottom:441.666667pt;}
.y48{bottom:444.706667pt;}
.y95{bottom:445.026667pt;}
.y154{bottom:447.906667pt;}
.y18e{bottom:448.226667pt;}
.yec{bottom:449.026667pt;}
.yc7{bottom:449.346667pt;}
.y70{bottom:452.386667pt;}
.y108{bottom:452.706667pt;}
.y173{bottom:454.466667pt;}
.y1a8{bottom:455.906667pt;}
.y133{bottom:456.226667pt;}
.y17{bottom:457.346667pt;}
.y47{bottom:460.386667pt;}
.y153{bottom:463.426667pt;}
.y18d{bottom:463.906667pt;}
.yeb{bottom:464.546667pt;}
.yc6{bottom:465.026667pt;}
.y6f{bottom:467.906667pt;}
.y107{bottom:468.386667pt;}
.y172{bottom:470.146667pt;}
.y132{bottom:471.906667pt;}
.y16{bottom:472.866667pt;}
.y118{bottom:476.226667pt;}
.y94{bottom:476.866667pt;}
.y1a7{bottom:479.426667pt;}
.yea{bottom:480.226667pt;}
.yc5{bottom:480.546667pt;}
.y106{bottom:483.906667pt;}
.y131{bottom:487.426667pt;}
.y15{bottom:488.546667pt;}
.y6e{bottom:491.586667pt;}
.y46{bottom:491.906667pt;}
.y171{bottom:493.666667pt;}
.y152{bottom:495.106667pt;}
.yc4{bottom:496.226667pt;}
.y105{bottom:499.586667pt;}
.y130{bottom:503.106667pt;}
.y14{bottom:504.226667pt;}
.y45{bottom:507.586667pt;}
.y170{bottom:509.346667pt;}
.y151{bottom:510.786667pt;}
.ye9{bottom:511.746667pt;}
.yc3{bottom:511.906667pt;}
.y104{bottom:515.266667pt;}
.y12f{bottom:518.786667pt;}
.y13{bottom:519.746667pt;}
.y44{bottom:523.266667pt;}
.y6d{bottom:523.426667pt;}
.y150{bottom:526.466667pt;}
.y18c{bottom:526.786667pt;}
.ye8{bottom:527.426667pt;}
.y103{bottom:530.786667pt;}
.y16f{bottom:532.866667pt;}
.y12e{bottom:534.466667pt;}
.y12{bottom:535.426667pt;}
.y43{bottom:538.786667pt;}
.y18b{bottom:542.466667pt;}
.ye7{bottom:543.106667pt;}
.yc2{bottom:543.426667pt;}
.y102{bottom:546.466667pt;}
.y16e{bottom:548.546667pt;}
.y14f{bottom:549.986667pt;}
.y11{bottom:551.106667pt;}
.y42{bottom:554.466667pt;}
.y1a6{bottom:557.986667pt;}
.ye6{bottom:558.786667pt;}
.yc1{bottom:559.106667pt;}
.y12d{bottom:565.986667pt;}
.y6c{bottom:566.306667pt;}
.y10{bottom:566.626667pt;}
.y93{bottom:566.786667pt;}
.y101{bottom:569.986667pt;}
.y41{bottom:570.146667pt;}
.y16d{bottom:572.386667pt;}
.y1a5{bottom:573.666667pt;}
.ye5{bottom:574.466667pt;}
.yc0{bottom:574.786667pt;}
.y12c{bottom:581.693333pt;}
.y6b{bottom:582.013333pt;}
.y92{bottom:582.493333pt;}
.y117{bottom:586.013333pt;}
.ye4{bottom:590.013333pt;}
.yf{bottom:590.493333pt;}
.y1a4{bottom:597.213333pt;}
.y12b{bottom:597.373333pt;}
.y6a{bottom:597.693333pt;}
.y91{bottom:598.013333pt;}
.y40{bottom:601.693333pt;}
.y100{bottom:601.853333pt;}
.y18a{bottom:605.213333pt;}
.ye3{bottom:605.693333pt;}
.ybf{bottom:606.013333pt;}
.y12a{bottom:612.893333pt;}
.y69{bottom:613.373333pt;}
.y90{bottom:613.693333pt;}
.y16c{bottom:615.453333pt;}
.y3f{bottom:617.373333pt;}
.y189{bottom:620.893333pt;}
.ye2{bottom:621.373333pt;}
.ybe{bottom:621.693333pt;}
.y14e{bottom:628.573333pt;}
.y68{bottom:628.893333pt;}
.y8f{bottom:629.373333pt;}
.y3e{bottom:633.053333pt;}
.ye{bottom:633.533333pt;}
.y1a3{bottom:636.573333pt;}
.ybd{bottom:637.373333pt;}
.y16b{bottom:639.293333pt;}
.y129{bottom:644.573333pt;}
.ye1{bottom:644.893333pt;}
.y3d{bottom:648.573333pt;}
.y1a2{bottom:652.253333pt;}
.ybc{bottom:652.893333pt;}
.y14d{bottom:660.093333pt;}
.y128{bottom:660.253333pt;}
.y67{bottom:660.573333pt;}
.y8e{bottom:660.893333pt;}
.y3c{bottom:664.253333pt;}
.yd{bottom:665.373333pt;}
.ybb{bottom:668.573333pt;}
.y16a{bottom:672.413333pt;}
.y127{bottom:675.773333pt;}
.y66{bottom:676.253333pt;}
.y8d{bottom:676.573333pt;}
.y188{bottom:683.773333pt;}
.y3b{bottom:687.933333pt;}
.y126{bottom:691.453333pt;}
.y65{bottom:691.773333pt;}
.yba{bottom:692.093333pt;}
.y8c{bottom:692.253333pt;}
.y116{bottom:695.933333pt;}
.yc{bottom:697.373333pt;}
.y187{bottom:699.453333pt;}
.y14c{bottom:707.133333pt;}
.y64{bottom:707.453333pt;}
.y8b{bottom:707.773333pt;}
.y115{bottom:711.613333pt;}
.y125{bottom:715.133333pt;}
.y169{bottom:715.453333pt;}
.y3a{bottom:719.773333pt;}
.y63{bottom:723.133333pt;}
.y8a{bottom:723.453333pt;}
.yb9{bottom:723.773333pt;}
.y114{bottom:727.133333pt;}
.y1a1{bottom:730.813333pt;}
.y168{bottom:731.133333pt;}
.yb{bottom:732.413333pt;}
.y14b{bottom:738.653333pt;}
.y186{bottom:738.813333pt;}
.y89{bottom:739.133333pt;}
.yb8{bottom:739.453333pt;}
.y113{bottom:742.813333pt;}
.y124{bottom:746.653333pt;}
.y167{bottom:746.813333pt;}
.ya{bottom:748.253333pt;}
.y14a{bottom:754.333333pt;}
.y62{bottom:754.653333pt;}
.y88{bottom:754.813333pt;}
.yb7{bottom:755.133333pt;}
.y112{bottom:758.493333pt;}
.y123{bottom:762.333333pt;}
.y39{bottom:762.653333pt;}
.y9{bottom:764.253333pt;}
.y149{bottom:770.013333pt;}
.y61{bottom:770.333333pt;}
.yb6{bottom:770.813333pt;}
.y111{bottom:774.013333pt;}
.y122{bottom:778.013333pt;}
.y38{bottom:778.333333pt;}
.y8{bottom:780.253333pt;}
.y148{bottom:785.693333pt;}
.y60{bottom:786.013333pt;}
.yb5{bottom:786.333333pt;}
.y1a0{bottom:793.533333pt;}
.y121{bottom:793.693333pt;}
.y37{bottom:794.013333pt;}
.y7{bottom:796.253333pt;}
.y110{bottom:797.693333pt;}
.y185{bottom:801.573333pt;}
.y5f{bottom:801.733333pt;}
.yb4{bottom:802.053333pt;}
.y19f{bottom:809.253333pt;}
.yff{bottom:809.573333pt;}
.y36{bottom:809.733333pt;}
.y87{bottom:810.053333pt;}
.y5e{bottom:817.253333pt;}
.ye0{bottom:817.573333pt;}
.yb3{bottom:817.733333pt;}
.y6{bottom:825.093333pt;}
.y35{bottom:825.253333pt;}
.y86{bottom:825.733333pt;}
.y10f{bottom:829.573333pt;}
.y147{bottom:832.933333pt;}
.yb2{bottom:833.253333pt;}
.y5d{bottom:840.933333pt;}
.y85{bottom:841.253333pt;}
.y5{bottom:842.533333pt;}
.y146{bottom:848.613333pt;}
.yb1{bottom:848.933333pt;}
.y1b7{bottom:856.453333pt;}
.y120{bottom:856.613333pt;}
.y34{bottom:856.933333pt;}
.y145{bottom:864.133333pt;}
.ydf{bottom:864.613333pt;}
.y11f{bottom:872.133333pt;}
.y5c{bottom:872.453333pt;}
.y33{bottom:872.613333pt;}
.y4{bottom:877.893333pt;}
.yde{bottom:880.133333pt;}
.yb0{bottom:880.453333pt;}
.y144{bottom:887.813333pt;}
.y32{bottom:888.133333pt;}
.ydd{bottom:895.813333pt;}
.yaf{bottom:896.133333pt;}
.y3{bottom:899.813333pt;}
.y31{bottom:903.813333pt;}
.ydc{bottom:911.493333pt;}
.yae{bottom:911.813333pt;}
.y30{bottom:919.493333pt;}
.ydb{bottom:927.173333pt;}
.yad{bottom:927.493333pt;}
.y19e{bottom:935.013333pt;}
.y2f{bottom:935.173333pt;}
.yac{bottom:943.173333pt;}
.yda{bottom:950.693333pt;}
.y5b{bottom:951.013333pt;}
.yab{bottom:958.693333pt;}
.y10e{bottom:966.373333pt;}
.y2e{bottom:966.693333pt;}
.yaa{bottom:974.373333pt;}
.y2d{bottom:982.373333pt;}
.ya9{bottom:990.053333pt;}
.y10d{bottom:997.893333pt;}
.y2c{bottom:998.053333pt;}
.y2b{bottom:1013.573333pt;}
.y29{bottom:1061.600000pt;}
.h2{height:26.415625pt;}
.h7{height:31.535625pt;}
.h3{height:35.083125pt;}
.h8{height:42.247500pt;}
.h9{height:46.220625pt;}
.ha{height:49.852500pt;}
.h6{height:51.232500pt;}
.hd{height:54.598989pt;}
.hc{height:55.298750pt;}
.h5{height:55.687500pt;}
.hb{height:61.295000pt;}
.h4{height:65.154375pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w2{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:60.480000pt;}
.x4{left:98.911988pt;}
.x2{left:223.706655pt;}
.x3{left:711.493322pt;}
}




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