
    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_1b49bc1b1643f642b48952ff.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.095703;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_8f2a1d8ef4fc9507313212f6.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.093262;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_ead7b2b43e553a0d1149f550.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.104004;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_0cdb15da70b0a8063c52030e.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.896973;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_93f08d2019f38b9a5c13f2a2.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.910645;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_8ba7b7892c3707926add114a.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.896973;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_cd8303b57fd5cb281cb3446d.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.666504;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_1da385cc6734c6a80d664d81.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_b67c413b0d0d8665421de83d.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.666504;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;}
.ls7{letter-spacing:-0.720000px;}
.ls6{letter-spacing:-0.498000px;}
.ls8{letter-spacing:-0.466800px;}
.lse{letter-spacing:-0.020160px;}
.ls5{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.020160px;}
.lsf{letter-spacing:0.288000px;}
.lsd{letter-spacing:0.486600px;}
.ls2{letter-spacing:0.486720px;}
.ls1{letter-spacing:0.498240px;}
.lsb{letter-spacing:0.504000px;}
.lsc{letter-spacing:0.507000px;}
.ls0{letter-spacing:0.720000px;}
.lsa{letter-spacing:20.304000px;}
.ls9{letter-spacing:21.421440px;}
.ls10{letter-spacing:87.996000px;}
.ls4{letter-spacing:846.456000px;}
.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;}
}
.wsb{word-spacing:-24.120000px;}
.ws3{word-spacing:-20.880000px;}
.wsa{word-spacing:-18.288000px;}
.ws2{word-spacing:-18.000000px;}
.ws7{word-spacing:-15.627000px;}
.ws9{word-spacing:-15.606600px;}
.ws4{word-spacing:-15.120000px;}
.ws8{word-spacing:-15.099840px;}
.ws5{word-spacing:-14.653200px;}
.ws0{word-spacing:-13.680000px;}
.ws1{word-spacing:-13.182000px;}
.ws6{word-spacing:0.000000px;}
._26{margin-left:-5.650560px;}
._7{margin-left:-4.060800px;}
._8{margin-left:-2.522880px;}
._0{margin-left:-1.477440px;}
._3{width:1.094400px;}
._c{width:2.989440px;}
._d{width:4.043520px;}
._19{width:5.045760px;}
._1a{width:6.350400px;}
._b{width:7.663680px;}
._a{width:9.048000px;}
._1e{width:10.061280px;}
._9{width:11.079360px;}
._18{width:12.196800px;}
._10{width:13.700160px;}
._1d{width:15.192000px;}
._e{width:17.087040px;}
._f{width:18.175680px;}
._1c{width:19.765440px;}
._1f{width:21.046560px;}
._15{width:22.855680px;}
._13{width:24.520320px;}
._14{width:26.188800px;}
._11{width:27.374400px;}
._12{width:28.756800px;}
._6{width:30.749760px;}
._16{width:31.777920px;}
._17{width:33.091200px;}
._25{width:34.395840px;}
._22{width:36.144000px;}
._21{width:37.321920px;}
._20{width:38.376000px;}
._2a{width:40.968000px;}
._28{width:45.826560px;}
._27{width:47.197440px;}
._24{width:50.112000px;}
._23{width:51.552000px;}
._29{width:64.247040px;}
._2{width:98.040000px;}
._4{width:476.936640px;}
._1b{width:849.336000px;}
._1{width:970.122240px;}
._5{width:1333.320000px;}
.fc2{color:rgb(0,32,96);}
.fc1{color:rgb(5,99,193);}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:54.720000px;}
.fs4{font-size:60.480000px;}
.fs5{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs3{font-size:83.520000px;}
.fs2{font-size:96.480000px;}
.y0{bottom:0.000000px;}
.y1c{bottom:3.240000px;}
.y119{bottom:3.270000px;}
.y127{bottom:3.960000px;}
.y12d{bottom:4.320000px;}
.y1e{bottom:4.680000px;}
.y128{bottom:6.480000px;}
.y16{bottom:6.840000px;}
.y24{bottom:9.720000px;}
.y28{bottom:12.240000px;}
.y34{bottom:18.360000px;}
.y1b{bottom:20.520000px;}
.y26{bottom:20.880000px;}
.y14{bottom:24.120000px;}
.y23{bottom:27.030000px;}
.y18{bottom:29.160000px;}
.y27{bottom:29.520000px;}
.y1a{bottom:37.470000px;}
.y33{bottom:40.320000px;}
.y15{bottom:41.400000px;}
.y20{bottom:44.310000px;}
.y19{bottom:54.750000px;}
.y6{bottom:56.880000px;}
.y22{bottom:61.590000px;}
.y32{bottom:61.920000px;}
.y5{bottom:77.796000px;}
.y21{bottom:78.870000px;}
.yd7{bottom:115.596000px;}
.y19d{bottom:119.196000px;}
.yc1{bottom:119.556000px;}
.y1c1{bottom:120.276000px;}
.y15a{bottom:122.436000px;}
.y107{bottom:129.276000px;}
.y134{bottom:134.316000px;}
.yd6{bottom:136.476000px;}
.y1c0{bottom:137.196000px;}
.y1b7{bottom:138.996000px;}
.yc0{bottom:140.076000px;}
.y94{bottom:140.436000px;}
.y159{bottom:142.956000px;}
.y106{bottom:149.796000px;}
.y1bf{bottom:154.470000px;}
.y133{bottom:155.190000px;}
.y170{bottom:156.990000px;}
.y19c{bottom:160.590000px;}
.y93{bottom:160.950000px;}
.y158{bottom:163.830000px;}
.yd5{bottom:165.630000px;}
.y105{bottom:170.670000px;}
.y1be{bottom:173.190000px;}
.y132{bottom:175.710000px;}
.y16f{bottom:177.870000px;}
.y19b{bottom:181.470000px;}
.y92{bottom:181.830000px;}
.y157{bottom:184.395000px;}
.y1b6{bottom:184.755000px;}
.ybf{bottom:190.155000px;}
.y104{bottom:191.235000px;}
.yd4{bottom:196.635000px;}
.y16e{bottom:198.435000px;}
.y19a{bottom:202.035000px;}
.y91{bottom:202.395000px;}
.y156{bottom:205.275000px;}
.y64{bottom:207.435000px;}
.y103{bottom:212.115000px;}
.y16d{bottom:219.315000px;}
.ybe{bottom:220.395000px;}
.y199{bottom:222.915000px;}
.y90{bottom:223.275000px;}
.y30{bottom:223.995000px;}
.y131{bottom:225.795000px;}
.y1b5{bottom:230.835000px;}
.y102{bottom:232.635000px;}
.y63{bottom:233.715000px;}
.y155{bottom:234.435000px;}
.y16c{bottom:239.835000px;}
.ybd{bottom:240.915000px;}
.y198{bottom:243.435000px;}
.y8f{bottom:243.795000px;}
.y130{bottom:245.955000px;}
.y101{bottom:253.515000px;}
.y2f{bottom:257.115000px;}
.y62{bottom:259.995000px;}
.y16b{bottom:260.715000px;}
.ybc{bottom:261.795000px;}
.y12f{bottom:263.235000px;}
.y197{bottom:264.315000px;}
.y8e{bottom:264.675000px;}
.y100{bottom:274.035000px;}
.y1b4{bottom:276.915000px;}
.y12e{bottom:277.635000px;}
.y16a{bottom:281.235000px;}
.ybb{bottom:282.315000px;}
.y196{bottom:284.835000px;}
.y8d{bottom:285.195000px;}
.y61{bottom:286.275000px;}
.y2e{bottom:290.235000px;}
.yff{bottom:294.915000px;}
.y169{bottom:302.115000px;}
.yba{bottom:303.195000px;}
.y60{bottom:303.555000px;}
.y195{bottom:305.715000px;}
.y8c{bottom:306.075000px;}
.yfe{bottom:315.465000px;}
.y12c{bottom:315.825000px;}
.y5f{bottom:320.865000px;}
.y31{bottom:321.225000px;}
.y168{bottom:322.665000px;}
.y1b3{bottom:323.025000px;}
.y2d{bottom:323.385000px;}
.yb9{bottom:323.745000px;}
.y194{bottom:326.265000px;}
.y8b{bottom:326.625000px;}
.yfd{bottom:336.345000px;}
.y12b{bottom:336.705000px;}
.y5e{bottom:338.145000px;}
.y167{bottom:343.545000px;}
.yb8{bottom:344.625000px;}
.y193{bottom:347.145000px;}
.y8a{bottom:347.505000px;}
.y5d{bottom:355.425000px;}
.y2c{bottom:356.505000px;}
.yfc{bottom:356.865000px;}
.y12a{bottom:357.585000px;}
.y166{bottom:364.065000px;}
.yb7{bottom:365.145000px;}
.y192{bottom:367.665000px;}
.y89{bottom:368.025000px;}
.y1b2{bottom:368.745000px;}
.y5c{bottom:372.705000px;}
.yfb{bottom:377.745000px;}
.y129{bottom:378.465000px;}
.yb6{bottom:386.025000px;}
.y191{bottom:388.545000px;}
.y88{bottom:388.905000px;}
.y2b{bottom:389.625000px;}
.y165{bottom:393.585000px;}
.yfa{bottom:398.265000px;}
.y126{bottom:399.345000px;}
.y1b1{bottom:402.945000px;}
.yb5{bottom:406.545000px;}
.y5b{bottom:406.905000px;}
.y190{bottom:409.065000px;}
.y87{bottom:409.425000px;}
.y154{bottom:414.465000px;}
.yf9{bottom:419.145000px;}
.y1b0{bottom:420.225000px;}
.y2a{bottom:423.105000px;}
.y5a{bottom:424.185000px;}
.yb4{bottom:427.425000px;}
.y18f{bottom:429.945000px;}
.y86{bottom:430.305000px;}
.y153{bottom:431.745000px;}
.y125{bottom:432.105000px;}
.y17a{bottom:437.145000px;}
.y1af{bottom:437.505000px;}
.yf8{bottom:439.710000px;}
.y59{bottom:441.510000px;}
.y152{bottom:446.190000px;}
.yb3{bottom:447.990000px;}
.y18e{bottom:450.510000px;}
.y85{bottom:450.870000px;}
.y29{bottom:456.270000px;}
.y179{bottom:457.710000px;}
.y58{bottom:458.790000px;}
.y124{bottom:459.510000px;}
.yf7{bottom:460.590000px;}
.y151{bottom:463.470000px;}
.yb2{bottom:468.870000px;}
.y18d{bottom:471.390000px;}
.y84{bottom:471.750000px;}
.y57{bottom:476.070000px;}
.y178{bottom:478.590000px;}
.y123{bottom:480.030000px;}
.y150{bottom:480.750000px;}
.yf6{bottom:481.110000px;}
.y25{bottom:485.430000px;}
.yb1{bottom:489.390000px;}
.y18c{bottom:491.910000px;}
.y83{bottom:492.270000px;}
.y56{bottom:493.350000px;}
.y14f{bottom:498.390000px;}
.y177{bottom:499.110000px;}
.y122{bottom:500.910000px;}
.yf5{bottom:501.990000px;}
.yb0{bottom:510.270000px;}
.y55{bottom:510.630000px;}
.y18b{bottom:512.790000px;}
.y82{bottom:513.150000px;}
.y176{bottom:519.990000px;}
.y121{bottom:521.430000px;}
.yf4{bottom:522.510000px;}
.y54{bottom:527.910000px;}
.yaf{bottom:530.790000px;}
.y18a{bottom:533.310000px;}
.y81{bottom:533.670000px;}
.y1f{bottom:538.350000px;}
.yd3{bottom:539.430000px;}
.y175{bottom:540.510000px;}
.y120{bottom:542.310000px;}
.y1ab{bottom:543.390000px;}
.y53{bottom:545.190000px;}
.yae{bottom:551.670000px;}
.yf3{bottom:552.030000px;}
.y189{bottom:554.190000px;}
.y80{bottom:554.550000px;}
.y14e{bottom:555.270000px;}
.y174{bottom:561.390000px;}
.y52{bottom:562.470000px;}
.y11f{bottom:562.830000px;}
.y1aa{bottom:563.910000px;}
.yd2{bottom:569.700000px;}
.yad{bottom:572.220000px;}
.y188{bottom:574.740000px;}
.y7f{bottom:575.100000px;}
.y14d{bottom:575.820000px;}
.y1bd{bottom:576.180000px;}
.y51{bottom:579.420000px;}
.yf2{bottom:581.940000px;}
.y11e{bottom:583.740000px;}
.y1a9{bottom:584.820000px;}
.yd1{bottom:590.220000px;}
.yac{bottom:593.100000px;}
.y187{bottom:595.620000px;}
.y7e{bottom:595.980000px;}
.y50{bottom:596.700000px;}
.yf1{bottom:602.820000px;}
.y1a8{bottom:605.340000px;}
.yd0{bottom:611.100000px;}
.y11d{bottom:612.900000px;}
.y164{bottom:613.620000px;}
.y4f{bottom:613.980000px;}
.y186{bottom:616.140000px;}
.y7d{bottom:616.500000px;}
.yab{bottom:622.260000px;}
.yf0{bottom:623.340000px;}
.y14c{bottom:625.860000px;}
.y1a7{bottom:626.220000px;}
.y1bc{bottom:630.180000px;}
.ycf{bottom:631.620000px;}
.y163{bottom:634.500000px;}
.y185{bottom:637.020000px;}
.y7c{bottom:637.380000px;}
.y1d{bottom:638.460000px;}
.y4e{bottom:640.980000px;}
.y11c{bottom:642.060000px;}
.yef{bottom:644.220000px;}
.y1a6{bottom:646.740000px;}
.y1bb{bottom:647.460000px;}
.yaa{bottom:652.500000px;}
.y162{bottom:655.020000px;}
.y14b{bottom:656.100000px;}
.y11b{bottom:656.460000px;}
.y184{bottom:657.540000px;}
.y7b{bottom:657.900000px;}
.y17{bottom:659.340000px;}
.y1c9{bottom:662.220000px;}
.yee{bottom:664.740000px;}
.y1a5{bottom:667.620000px;}
.y4d{bottom:671.580000px;}
.ya9{bottom:673.020000px;}
.y11a{bottom:673.740000px;}
.y161{bottom:675.900000px;}
.y14a{bottom:676.620000px;}
.y183{bottom:678.420000px;}
.y7a{bottom:678.780000px;}
.y1ba{bottom:682.020000px;}
.yed{bottom:685.620000px;}
.y1a4{bottom:688.140000px;}
.y118{bottom:691.020000px;}
.ya8{bottom:693.930000px;}
.y149{bottom:697.530000px;}
.y182{bottom:698.970000px;}
.y79{bottom:699.330000px;}
.y1c8{bottom:700.050000px;}
.y1b9{bottom:700.410000px;}
.y4c{bottom:704.730000px;}
.y160{bottom:705.090000px;}
.yec{bottom:706.170000px;}
.y117{bottom:708.690000px;}
.ya7{bottom:714.450000px;}
.y1c7{bottom:717.330000px;}
.y1a3{bottom:717.690000px;}
.y148{bottom:718.050000px;}
.y181{bottom:719.850000px;}
.y78{bottom:720.210000px;}
.y116{bottom:725.970000px;}
.yeb{bottom:727.050000px;}
.y4b{bottom:727.410000px;}
.y13{bottom:728.850000px;}
.y1c6{bottom:734.610000px;}
.ya6{bottom:735.330000px;}
.y147{bottom:738.570000px;}
.y77{bottom:740.730000px;}
.y115{bottom:743.250000px;}
.y4a{bottom:744.690000px;}
.yea{bottom:747.570000px;}
.y180{bottom:750.090000px;}
.y1c5{bottom:751.890000px;}
.ya5{bottom:755.850000px;}
.y146{bottom:759.450000px;}
.y114{bottom:760.890000px;}
.y76{bottom:761.610000px;}
.y49{bottom:761.970000px;}
.y1a2{bottom:765.570000px;}
.ye9{bottom:768.450000px;}
.y1c4{bottom:770.610000px;}
.ya4{bottom:776.370000px;}
.yce{bottom:776.730000px;}
.y113{bottom:778.170000px;}
.y48{bottom:779.250000px;}
.y145{bottom:779.970000px;}
.y75{bottom:782.130000px;}
.y1a1{bottom:786.450000px;}
.ye8{bottom:788.970000px;}
.y12{bottom:792.210000px;}
.y17f{bottom:794.730000px;}
.y47{bottom:796.170000px;}
.ya3{bottom:797.250000px;}
.y144{bottom:800.850000px;}
.y74{bottom:803.010000px;}
.y1a0{bottom:806.970000px;}
.y112{bottom:807.690000px;}
.ye7{bottom:809.850000px;}
.y11{bottom:813.090000px;}
.y46{bottom:813.450000px;}
.y17e{bottom:815.250000px;}
.ya2{bottom:817.770000px;}
.ycd{bottom:818.130000px;}
.y143{bottom:821.415000px;}
.y73{bottom:823.575000px;}
.y19f{bottom:827.895000px;}
.ye6{bottom:830.415000px;}
.y45{bottom:830.775000px;}
.y10{bottom:833.655000px;}
.y111{bottom:835.095000px;}
.y17d{bottom:836.175000px;}
.ya1{bottom:838.695000px;}
.y173{bottom:839.055000px;}
.y142{bottom:842.295000px;}
.y72{bottom:844.455000px;}
.y1ae{bottom:846.615000px;}
.y44{bottom:848.055000px;}
.y19e{bottom:848.415000px;}
.ye5{bottom:851.295000px;}
.yf{bottom:854.535000px;}
.y110{bottom:855.615000px;}
.y17c{bottom:856.695000px;}
.ya0{bottom:859.215000px;}
.y15f{bottom:859.575000px;}
.y141{bottom:862.815000px;}
.y71{bottom:864.975000px;}
.y43{bottom:865.335000px;}
.ycc{bottom:868.215000px;}
.y172{bottom:869.295000px;}
.ye{bottom:875.775000px;}
.y10f{bottom:876.495000px;}
.y17b{bottom:877.575000px;}
.y9f{bottom:880.095000px;}
.ye4{bottom:880.455000px;}
.y42{bottom:882.615000px;}
.y140{bottom:883.695000px;}
.y1ad{bottom:885.135000px;}
.y70{bottom:885.855000px;}
.y171{bottom:889.815000px;}
.y10e{bottom:897.015000px;}
.ycb{bottom:898.095000px;}
.y41{bottom:899.895000px;}
.y9e{bottom:900.615000px;}
.y15e{bottom:900.975000px;}
.y13f{bottom:904.215000px;}
.y6f{bottom:906.375000px;}
.ye3{bottom:910.695000px;}
.y1ac{bottom:912.855000px;}
.y40{bottom:917.175000px;}
.y10d{bottom:917.895000px;}
.yd{bottom:918.255000px;}
.yca{bottom:918.975000px;}
.y9d{bottom:921.495000px;}
.y6e{bottom:927.255000px;}
.y13e{bottom:930.135000px;}
.ye2{bottom:931.215000px;}
.y3f{bottom:934.455000px;}
.y10c{bottom:938.415000px;}
.yc9{bottom:939.495000px;}
.y9c{bottom:942.015000px;}
.y15d{bottom:942.375000px;}
.y13d{bottom:947.445000px;}
.y6d{bottom:947.805000px;}
.y3e{bottom:951.765000px;}
.ye1{bottom:952.125000px;}
.y10b{bottom:959.325000px;}
.yc8{bottom:960.405000px;}
.y13c{bottom:961.485000px;}
.y9b{bottom:962.925000px;}
.yc{bottom:963.645000px;}
.y6c{bottom:968.685000px;}
.y3d{bottom:969.045000px;}
.ye0{bottom:972.645000px;}
.y13b{bottom:979.125000px;}
.y10a{bottom:979.845000px;}
.yc7{bottom:980.925000px;}
.y9a{bottom:983.445000px;}
.y15c{bottom:983.805000px;}
.y3c{bottom:986.325000px;}
.y6b{bottom:989.205000px;}
.yb{bottom:991.365000px;}
.ydf{bottom:993.525000px;}
.y13a{bottom:996.405000px;}
.yc6{bottom:1001.805000px;}
.y3b{bottom:1003.245000px;}
.y15b{bottom:1004.325000px;}
.y109{bottom:1009.365000px;}
.y6a{bottom:1010.085000px;}
.y99{bottom:1012.965000px;}
.yde{bottom:1014.045000px;}
.y139{bottom:1017.285000px;}
.ya{bottom:1019.085000px;}
.y3a{bottom:1020.525000px;}
.yc5{bottom:1022.325000px;}
.y69{bottom:1030.605000px;}
.y98{bottom:1033.845000px;}
.y138{bottom:1034.565000px;}
.ydd{bottom:1034.925000px;}
.y108{bottom:1039.965000px;}
.yc4{bottom:1043.205000px;}
.y39{bottom:1047.525000px;}
.y68{bottom:1051.485000px;}
.ydc{bottom:1055.445000px;}
.y97{bottom:1063.725000px;}
.y9{bottom:1064.445000px;}
.y1c3{bottom:1065.525000px;}
.y67{bottom:1072.005000px;}
.y137{bottom:1073.130000px;}
.ydb{bottom:1076.370000px;}
.y96{bottom:1084.290000px;}
.yc3{bottom:1084.650000px;}
.y38{bottom:1087.170000px;}
.y8{bottom:1092.210000px;}
.y66{bottom:1092.930000px;}
.y136{bottom:1093.650000px;}
.yda{bottom:1096.890000px;}
.y95{bottom:1105.170000px;}
.y37{bottom:1111.290000px;}
.yd9{bottom:1117.770000px;}
.y7{bottom:1119.930000px;}
.y65{bottom:1123.170000px;}
.yc2{bottom:1126.050000px;}
.y1c2{bottom:1128.570000px;}
.y36{bottom:1135.410000px;}
.yd8{bottom:1138.290000px;}
.y1b8{bottom:1139.370000px;}
.y135{bottom:1140.810000px;}
.y4{bottom:1146.570000px;}
.y35{bottom:1162.050000px;}
.y3{bottom:1166.010000px;}
.y2{bottom:1181.490000px;}
.y1{bottom:1197.330000px;}
.h13{height:17.280000px;}
.h14{height:17.316000px;}
.hc{height:20.160000px;}
.h16{height:20.520000px;}
.h18{height:20.880000px;}
.h17{height:20.916000px;}
.h15{height:41.196094px;}
.hb{height:42.022969px;}
.h3{height:48.147188px;}
.h12{height:50.027344px;}
.hf{height:52.200000px;}
.h9{height:53.067656px;}
.he{height:53.215313px;}
.h8{height:53.717344px;}
.h7{height:58.680000px;}
.h19{height:58.833281px;}
.h4{height:63.175781px;}
.h2{height:63.351562px;}
.h11{height:63.949219px;}
.ha{height:68.796000px;}
.h6{height:74.181094px;}
.h10{height:80.640000px;}
.h5{height:85.691953px;}
.hd{height:99.396000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.wc{width:74.880000px;}
.wb{width:74.916000px;}
.w9{width:89.676000px;}
.w7{width:90.036000px;}
.w8{width:104.832000px;}
.wa{width:112.356000px;}
.we{width:112.392000px;}
.w6{width:135.036000px;}
.wd{width:149.796000px;}
.w3{width:222.225000px;}
.w4{width:456.300000px;}
.w5{width:681.405000px;}
.w1{width:892.500000px;}
.w2{width:892.799987px;}
.w0{width:892.800000px;}
.x0{left:0.000000px;}
.xf{left:7.920000px;}
.x45{left:9.360000px;}
.x37{left:10.440000px;}
.x36{left:12.960000px;}
.x3a{left:14.400000px;}
.x22{left:15.480000px;}
.x38{left:16.560000px;}
.x24{left:18.390000px;}
.x39{left:20.520000px;}
.x31{left:21.600000px;}
.x2b{left:24.150000px;}
.x2a{left:25.560000px;}
.x14{left:26.676000px;}
.x28{left:28.125000px;}
.x20{left:30.285000px;}
.x26{left:31.680000px;}
.x42{left:33.165000px;}
.x29{left:35.670000px;}
.x1e{left:39.603000px;}
.x46{left:45.045000px;}
.x43{left:48.645000px;}
.x12{left:73.110000px;}
.x11{left:86.799000px;}
.x49{left:100.475987px;}
.x1{left:108.035987px;}
.x17{left:109.115987px;}
.x5{left:111.635987px;}
.x18{left:117.395987px;}
.x1a{left:134.711987px;}
.x7{left:138.311987px;}
.x4{left:140.471987px;}
.x4b{left:144.791987px;}
.x1d{left:146.592000px;}
.x8{left:152.714987px;}
.x1b{left:161.714987px;}
.x2e{left:165.315000px;}
.xc{left:173.954987px;}
.x13{left:178.260000px;}
.xd{left:213.914987px;}
.x47{left:221.504987px;}
.x51{left:225.824987px;}
.x3d{left:230.864987px;}
.xb{left:243.824987px;}
.x2c{left:247.424987px;}
.x4d{left:252.464987px;}
.x16{left:258.594000px;}
.x2f{left:278.025000px;}
.x1f{left:281.625000px;}
.x15{left:287.064000px;}
.x3e{left:296.745000px;}
.x1c{left:302.504987px;}
.x3b{left:314.789987px;}
.xe{left:321.989987px;}
.x4f{left:328.829987px;}
.x10{left:331.710000px;}
.x2d{left:342.509987px;}
.x30{left:352.950000px;}
.x6{left:359.069987px;}
.x9{left:368.789987px;}
.x21{left:371.670000px;}
.x3{left:383.549987px;}
.x4a{left:403.019987px;}
.x19{left:406.259987px;}
.x3f{left:409.140000px;}
.x32{left:427.860000px;}
.xa{left:446.579987px;}
.x23{left:461.700000px;}
.x33{left:503.130000px;}
.x40{left:521.850000px;}
.x25{left:566.895000px;}
.x34{left:578.055000px;}
.x3c{left:607.934987px;}
.x41{left:634.215000px;}
.x35{left:652.935000px;}
.x27{left:656.925000px;}
.x48{left:660.164987px;}
.x44{left:663.764987px;}
.x4e{left:741.929987px;}
.x52{left:747.329987px;}
.x50{left:749.129987px;}
.x4c{left:755.969987px;}
.x2{left:758.129987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls7{letter-spacing:-0.640000pt;}
.ls6{letter-spacing:-0.442667pt;}
.ls8{letter-spacing:-0.414933pt;}
.lse{letter-spacing:-0.017920pt;}
.ls5{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.017920pt;}
.lsf{letter-spacing:0.256000pt;}
.lsd{letter-spacing:0.432533pt;}
.ls2{letter-spacing:0.432640pt;}
.ls1{letter-spacing:0.442880pt;}
.lsb{letter-spacing:0.448000pt;}
.lsc{letter-spacing:0.450667pt;}
.ls0{letter-spacing:0.640000pt;}
.lsa{letter-spacing:18.048000pt;}
.ls9{letter-spacing:19.041280pt;}
.ls10{letter-spacing:78.218667pt;}
.ls4{letter-spacing:752.405333pt;}
.wsb{word-spacing:-21.440000pt;}
.ws3{word-spacing:-18.560000pt;}
.wsa{word-spacing:-16.256000pt;}
.ws2{word-spacing:-16.000000pt;}
.ws7{word-spacing:-13.890667pt;}
.ws9{word-spacing:-13.872533pt;}
.ws4{word-spacing:-13.440000pt;}
.ws8{word-spacing:-13.422080pt;}
.ws5{word-spacing:-13.025067pt;}
.ws0{word-spacing:-12.160000pt;}
.ws1{word-spacing:-11.717333pt;}
.ws6{word-spacing:0.000000pt;}
._26{margin-left:-5.022720pt;}
._7{margin-left:-3.609600pt;}
._8{margin-left:-2.242560pt;}
._0{margin-left:-1.313280pt;}
._3{width:0.972800pt;}
._c{width:2.657280pt;}
._d{width:3.594240pt;}
._19{width:4.485120pt;}
._1a{width:5.644800pt;}
._b{width:6.812160pt;}
._a{width:8.042667pt;}
._1e{width:8.943360pt;}
._9{width:9.848320pt;}
._18{width:10.841600pt;}
._10{width:12.177920pt;}
._1d{width:13.504000pt;}
._e{width:15.188480pt;}
._f{width:16.156160pt;}
._1c{width:17.569280pt;}
._1f{width:18.708053pt;}
._15{width:20.316160pt;}
._13{width:21.795840pt;}
._14{width:23.278933pt;}
._11{width:24.332800pt;}
._12{width:25.561600pt;}
._6{width:27.333120pt;}
._16{width:28.247040pt;}
._17{width:29.414400pt;}
._25{width:30.574080pt;}
._22{width:32.128000pt;}
._21{width:33.175040pt;}
._20{width:34.112000pt;}
._2a{width:36.416000pt;}
._28{width:40.734720pt;}
._27{width:41.953280pt;}
._24{width:44.544000pt;}
._23{width:45.824000pt;}
._29{width:57.108480pt;}
._2{width:87.146667pt;}
._4{width:423.943680pt;}
._1b{width:754.965333pt;}
._1{width:862.330880pt;}
._5{width:1185.173333pt;}
.fs0{font-size:48.640000pt;}
.fs4{font-size:53.760000pt;}
.fs5{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs3{font-size:74.240000pt;}
.fs2{font-size:85.760000pt;}
.y0{bottom:0.000000pt;}
.y1c{bottom:2.880000pt;}
.y119{bottom:2.906667pt;}
.y127{bottom:3.520000pt;}
.y12d{bottom:3.840000pt;}
.y1e{bottom:4.160000pt;}
.y128{bottom:5.760000pt;}
.y16{bottom:6.080000pt;}
.y24{bottom:8.640000pt;}
.y28{bottom:10.880000pt;}
.y34{bottom:16.320000pt;}
.y1b{bottom:18.240000pt;}
.y26{bottom:18.560000pt;}
.y14{bottom:21.440000pt;}
.y23{bottom:24.026667pt;}
.y18{bottom:25.920000pt;}
.y27{bottom:26.240000pt;}
.y1a{bottom:33.306667pt;}
.y33{bottom:35.840000pt;}
.y15{bottom:36.800000pt;}
.y20{bottom:39.386667pt;}
.y19{bottom:48.666667pt;}
.y6{bottom:50.560000pt;}
.y22{bottom:54.746667pt;}
.y32{bottom:55.040000pt;}
.y5{bottom:69.152000pt;}
.y21{bottom:70.106667pt;}
.yd7{bottom:102.752000pt;}
.y19d{bottom:105.952000pt;}
.yc1{bottom:106.272000pt;}
.y1c1{bottom:106.912000pt;}
.y15a{bottom:108.832000pt;}
.y107{bottom:114.912000pt;}
.y134{bottom:119.392000pt;}
.yd6{bottom:121.312000pt;}
.y1c0{bottom:121.952000pt;}
.y1b7{bottom:123.552000pt;}
.yc0{bottom:124.512000pt;}
.y94{bottom:124.832000pt;}
.y159{bottom:127.072000pt;}
.y106{bottom:133.152000pt;}
.y1bf{bottom:137.306667pt;}
.y133{bottom:137.946667pt;}
.y170{bottom:139.546667pt;}
.y19c{bottom:142.746667pt;}
.y93{bottom:143.066667pt;}
.y158{bottom:145.626667pt;}
.yd5{bottom:147.226667pt;}
.y105{bottom:151.706667pt;}
.y1be{bottom:153.946667pt;}
.y132{bottom:156.186667pt;}
.y16f{bottom:158.106667pt;}
.y19b{bottom:161.306667pt;}
.y92{bottom:161.626667pt;}
.y157{bottom:163.906667pt;}
.y1b6{bottom:164.226667pt;}
.ybf{bottom:169.026667pt;}
.y104{bottom:169.986667pt;}
.yd4{bottom:174.786667pt;}
.y16e{bottom:176.386667pt;}
.y19a{bottom:179.586667pt;}
.y91{bottom:179.906667pt;}
.y156{bottom:182.466667pt;}
.y64{bottom:184.386667pt;}
.y103{bottom:188.546667pt;}
.y16d{bottom:194.946667pt;}
.ybe{bottom:195.906667pt;}
.y199{bottom:198.146667pt;}
.y90{bottom:198.466667pt;}
.y30{bottom:199.106667pt;}
.y131{bottom:200.706667pt;}
.y1b5{bottom:205.186667pt;}
.y102{bottom:206.786667pt;}
.y63{bottom:207.746667pt;}
.y155{bottom:208.386667pt;}
.y16c{bottom:213.186667pt;}
.ybd{bottom:214.146667pt;}
.y198{bottom:216.386667pt;}
.y8f{bottom:216.706667pt;}
.y130{bottom:218.626667pt;}
.y101{bottom:225.346667pt;}
.y2f{bottom:228.546667pt;}
.y62{bottom:231.106667pt;}
.y16b{bottom:231.746667pt;}
.ybc{bottom:232.706667pt;}
.y12f{bottom:233.986667pt;}
.y197{bottom:234.946667pt;}
.y8e{bottom:235.266667pt;}
.y100{bottom:243.586667pt;}
.y1b4{bottom:246.146667pt;}
.y12e{bottom:246.786667pt;}
.y16a{bottom:249.986667pt;}
.ybb{bottom:250.946667pt;}
.y196{bottom:253.186667pt;}
.y8d{bottom:253.506667pt;}
.y61{bottom:254.466667pt;}
.y2e{bottom:257.986667pt;}
.yff{bottom:262.146667pt;}
.y169{bottom:268.546667pt;}
.yba{bottom:269.506667pt;}
.y60{bottom:269.826667pt;}
.y195{bottom:271.746667pt;}
.y8c{bottom:272.066667pt;}
.yfe{bottom:280.413333pt;}
.y12c{bottom:280.733333pt;}
.y5f{bottom:285.213333pt;}
.y31{bottom:285.533333pt;}
.y168{bottom:286.813333pt;}
.y1b3{bottom:287.133333pt;}
.y2d{bottom:287.453333pt;}
.yb9{bottom:287.773333pt;}
.y194{bottom:290.013333pt;}
.y8b{bottom:290.333333pt;}
.yfd{bottom:298.973333pt;}
.y12b{bottom:299.293333pt;}
.y5e{bottom:300.573333pt;}
.y167{bottom:305.373333pt;}
.yb8{bottom:306.333333pt;}
.y193{bottom:308.573333pt;}
.y8a{bottom:308.893333pt;}
.y5d{bottom:315.933333pt;}
.y2c{bottom:316.893333pt;}
.yfc{bottom:317.213333pt;}
.y12a{bottom:317.853333pt;}
.y166{bottom:323.613333pt;}
.yb7{bottom:324.573333pt;}
.y192{bottom:326.813333pt;}
.y89{bottom:327.133333pt;}
.y1b2{bottom:327.773333pt;}
.y5c{bottom:331.293333pt;}
.yfb{bottom:335.773333pt;}
.y129{bottom:336.413333pt;}
.yb6{bottom:343.133333pt;}
.y191{bottom:345.373333pt;}
.y88{bottom:345.693333pt;}
.y2b{bottom:346.333333pt;}
.y165{bottom:349.853333pt;}
.yfa{bottom:354.013333pt;}
.y126{bottom:354.973333pt;}
.y1b1{bottom:358.173333pt;}
.yb5{bottom:361.373333pt;}
.y5b{bottom:361.693333pt;}
.y190{bottom:363.613333pt;}
.y87{bottom:363.933333pt;}
.y154{bottom:368.413333pt;}
.yf9{bottom:372.573333pt;}
.y1b0{bottom:373.533333pt;}
.y2a{bottom:376.093333pt;}
.y5a{bottom:377.053333pt;}
.yb4{bottom:379.933333pt;}
.y18f{bottom:382.173333pt;}
.y86{bottom:382.493333pt;}
.y153{bottom:383.773333pt;}
.y125{bottom:384.093333pt;}
.y17a{bottom:388.573333pt;}
.y1af{bottom:388.893333pt;}
.yf8{bottom:390.853333pt;}
.y59{bottom:392.453333pt;}
.y152{bottom:396.613333pt;}
.yb3{bottom:398.213333pt;}
.y18e{bottom:400.453333pt;}
.y85{bottom:400.773333pt;}
.y29{bottom:405.573333pt;}
.y179{bottom:406.853333pt;}
.y58{bottom:407.813333pt;}
.y124{bottom:408.453333pt;}
.yf7{bottom:409.413333pt;}
.y151{bottom:411.973333pt;}
.yb2{bottom:416.773333pt;}
.y18d{bottom:419.013333pt;}
.y84{bottom:419.333333pt;}
.y57{bottom:423.173333pt;}
.y178{bottom:425.413333pt;}
.y123{bottom:426.693333pt;}
.y150{bottom:427.333333pt;}
.yf6{bottom:427.653333pt;}
.y25{bottom:431.493333pt;}
.yb1{bottom:435.013333pt;}
.y18c{bottom:437.253333pt;}
.y83{bottom:437.573333pt;}
.y56{bottom:438.533333pt;}
.y14f{bottom:443.013333pt;}
.y177{bottom:443.653333pt;}
.y122{bottom:445.253333pt;}
.yf5{bottom:446.213333pt;}
.yb0{bottom:453.573333pt;}
.y55{bottom:453.893333pt;}
.y18b{bottom:455.813333pt;}
.y82{bottom:456.133333pt;}
.y176{bottom:462.213333pt;}
.y121{bottom:463.493333pt;}
.yf4{bottom:464.453333pt;}
.y54{bottom:469.253333pt;}
.yaf{bottom:471.813333pt;}
.y18a{bottom:474.053333pt;}
.y81{bottom:474.373333pt;}
.y1f{bottom:478.533333pt;}
.yd3{bottom:479.493333pt;}
.y175{bottom:480.453333pt;}
.y120{bottom:482.053333pt;}
.y1ab{bottom:483.013333pt;}
.y53{bottom:484.613333pt;}
.yae{bottom:490.373333pt;}
.yf3{bottom:490.693333pt;}
.y189{bottom:492.613333pt;}
.y80{bottom:492.933333pt;}
.y14e{bottom:493.573333pt;}
.y174{bottom:499.013333pt;}
.y52{bottom:499.973333pt;}
.y11f{bottom:500.293333pt;}
.y1aa{bottom:501.253333pt;}
.yd2{bottom:506.400000pt;}
.yad{bottom:508.640000pt;}
.y188{bottom:510.880000pt;}
.y7f{bottom:511.200000pt;}
.y14d{bottom:511.840000pt;}
.y1bd{bottom:512.160000pt;}
.y51{bottom:515.040000pt;}
.yf2{bottom:517.280000pt;}
.y11e{bottom:518.880000pt;}
.y1a9{bottom:519.840000pt;}
.yd1{bottom:524.640000pt;}
.yac{bottom:527.200000pt;}
.y187{bottom:529.440000pt;}
.y7e{bottom:529.760000pt;}
.y50{bottom:530.400000pt;}
.yf1{bottom:535.840000pt;}
.y1a8{bottom:538.080000pt;}
.yd0{bottom:543.200000pt;}
.y11d{bottom:544.800000pt;}
.y164{bottom:545.440000pt;}
.y4f{bottom:545.760000pt;}
.y186{bottom:547.680000pt;}
.y7d{bottom:548.000000pt;}
.yab{bottom:553.120000pt;}
.yf0{bottom:554.080000pt;}
.y14c{bottom:556.320000pt;}
.y1a7{bottom:556.640000pt;}
.y1bc{bottom:560.160000pt;}
.ycf{bottom:561.440000pt;}
.y163{bottom:564.000000pt;}
.y185{bottom:566.240000pt;}
.y7c{bottom:566.560000pt;}
.y1d{bottom:567.520000pt;}
.y4e{bottom:569.760000pt;}
.y11c{bottom:570.720000pt;}
.yef{bottom:572.640000pt;}
.y1a6{bottom:574.880000pt;}
.y1bb{bottom:575.520000pt;}
.yaa{bottom:580.000000pt;}
.y162{bottom:582.240000pt;}
.y14b{bottom:583.200000pt;}
.y11b{bottom:583.520000pt;}
.y184{bottom:584.480000pt;}
.y7b{bottom:584.800000pt;}
.y17{bottom:586.080000pt;}
.y1c9{bottom:588.640000pt;}
.yee{bottom:590.880000pt;}
.y1a5{bottom:593.440000pt;}
.y4d{bottom:596.960000pt;}
.ya9{bottom:598.240000pt;}
.y11a{bottom:598.880000pt;}
.y161{bottom:600.800000pt;}
.y14a{bottom:601.440000pt;}
.y183{bottom:603.040000pt;}
.y7a{bottom:603.360000pt;}
.y1ba{bottom:606.240000pt;}
.yed{bottom:609.440000pt;}
.y1a4{bottom:611.680000pt;}
.y118{bottom:614.240000pt;}
.ya8{bottom:616.826667pt;}
.y149{bottom:620.026667pt;}
.y182{bottom:621.306667pt;}
.y79{bottom:621.626667pt;}
.y1c8{bottom:622.266667pt;}
.y1b9{bottom:622.586667pt;}
.y4c{bottom:626.426667pt;}
.y160{bottom:626.746667pt;}
.yec{bottom:627.706667pt;}
.y117{bottom:629.946667pt;}
.ya7{bottom:635.066667pt;}
.y1c7{bottom:637.626667pt;}
.y1a3{bottom:637.946667pt;}
.y148{bottom:638.266667pt;}
.y181{bottom:639.866667pt;}
.y78{bottom:640.186667pt;}
.y116{bottom:645.306667pt;}
.yeb{bottom:646.266667pt;}
.y4b{bottom:646.586667pt;}
.y13{bottom:647.866667pt;}
.y1c6{bottom:652.986667pt;}
.ya6{bottom:653.626667pt;}
.y147{bottom:656.506667pt;}
.y77{bottom:658.426667pt;}
.y115{bottom:660.666667pt;}
.y4a{bottom:661.946667pt;}
.yea{bottom:664.506667pt;}
.y180{bottom:666.746667pt;}
.y1c5{bottom:668.346667pt;}
.ya5{bottom:671.866667pt;}
.y146{bottom:675.066667pt;}
.y114{bottom:676.346667pt;}
.y76{bottom:676.986667pt;}
.y49{bottom:677.306667pt;}
.y1a2{bottom:680.506667pt;}
.ye9{bottom:683.066667pt;}
.y1c4{bottom:684.986667pt;}
.ya4{bottom:690.106667pt;}
.yce{bottom:690.426667pt;}
.y113{bottom:691.706667pt;}
.y48{bottom:692.666667pt;}
.y145{bottom:693.306667pt;}
.y75{bottom:695.226667pt;}
.y1a1{bottom:699.066667pt;}
.ye8{bottom:701.306667pt;}
.y12{bottom:704.186667pt;}
.y17f{bottom:706.426667pt;}
.y47{bottom:707.706667pt;}
.ya3{bottom:708.666667pt;}
.y144{bottom:711.866667pt;}
.y74{bottom:713.786667pt;}
.y1a0{bottom:717.306667pt;}
.y112{bottom:717.946667pt;}
.ye7{bottom:719.866667pt;}
.y11{bottom:722.746667pt;}
.y46{bottom:723.066667pt;}
.y17e{bottom:724.666667pt;}
.ya2{bottom:726.906667pt;}
.ycd{bottom:727.226667pt;}
.y143{bottom:730.146667pt;}
.y73{bottom:732.066667pt;}
.y19f{bottom:735.906667pt;}
.ye6{bottom:738.146667pt;}
.y45{bottom:738.466667pt;}
.y10{bottom:741.026667pt;}
.y111{bottom:742.306667pt;}
.y17d{bottom:743.266667pt;}
.ya1{bottom:745.506667pt;}
.y173{bottom:745.826667pt;}
.y142{bottom:748.706667pt;}
.y72{bottom:750.626667pt;}
.y1ae{bottom:752.546667pt;}
.y44{bottom:753.826667pt;}
.y19e{bottom:754.146667pt;}
.ye5{bottom:756.706667pt;}
.yf{bottom:759.586667pt;}
.y110{bottom:760.546667pt;}
.y17c{bottom:761.506667pt;}
.ya0{bottom:763.746667pt;}
.y15f{bottom:764.066667pt;}
.y141{bottom:766.946667pt;}
.y71{bottom:768.866667pt;}
.y43{bottom:769.186667pt;}
.ycc{bottom:771.746667pt;}
.y172{bottom:772.706667pt;}
.ye{bottom:778.466667pt;}
.y10f{bottom:779.106667pt;}
.y17b{bottom:780.066667pt;}
.y9f{bottom:782.306667pt;}
.ye4{bottom:782.626667pt;}
.y42{bottom:784.546667pt;}
.y140{bottom:785.506667pt;}
.y1ad{bottom:786.786667pt;}
.y70{bottom:787.426667pt;}
.y171{bottom:790.946667pt;}
.y10e{bottom:797.346667pt;}
.ycb{bottom:798.306667pt;}
.y41{bottom:799.906667pt;}
.y9e{bottom:800.546667pt;}
.y15e{bottom:800.866667pt;}
.y13f{bottom:803.746667pt;}
.y6f{bottom:805.666667pt;}
.ye3{bottom:809.506667pt;}
.y1ac{bottom:811.426667pt;}
.y40{bottom:815.266667pt;}
.y10d{bottom:815.906667pt;}
.yd{bottom:816.226667pt;}
.yca{bottom:816.866667pt;}
.y9d{bottom:819.106667pt;}
.y6e{bottom:824.226667pt;}
.y13e{bottom:826.786667pt;}
.ye2{bottom:827.746667pt;}
.y3f{bottom:830.626667pt;}
.y10c{bottom:834.146667pt;}
.yc9{bottom:835.106667pt;}
.y9c{bottom:837.346667pt;}
.y15d{bottom:837.666667pt;}
.y13d{bottom:842.173333pt;}
.y6d{bottom:842.493333pt;}
.y3e{bottom:846.013333pt;}
.ye1{bottom:846.333333pt;}
.y10b{bottom:852.733333pt;}
.yc8{bottom:853.693333pt;}
.y13c{bottom:854.653333pt;}
.y9b{bottom:855.933333pt;}
.yc{bottom:856.573333pt;}
.y6c{bottom:861.053333pt;}
.y3d{bottom:861.373333pt;}
.ye0{bottom:864.573333pt;}
.y13b{bottom:870.333333pt;}
.y10a{bottom:870.973333pt;}
.yc7{bottom:871.933333pt;}
.y9a{bottom:874.173333pt;}
.y15c{bottom:874.493333pt;}
.y3c{bottom:876.733333pt;}
.y6b{bottom:879.293333pt;}
.yb{bottom:881.213333pt;}
.ydf{bottom:883.133333pt;}
.y13a{bottom:885.693333pt;}
.yc6{bottom:890.493333pt;}
.y3b{bottom:891.773333pt;}
.y15b{bottom:892.733333pt;}
.y109{bottom:897.213333pt;}
.y6a{bottom:897.853333pt;}
.y99{bottom:900.413333pt;}
.yde{bottom:901.373333pt;}
.y139{bottom:904.253333pt;}
.ya{bottom:905.853333pt;}
.y3a{bottom:907.133333pt;}
.yc5{bottom:908.733333pt;}
.y69{bottom:916.093333pt;}
.y98{bottom:918.973333pt;}
.y138{bottom:919.613333pt;}
.ydd{bottom:919.933333pt;}
.y108{bottom:924.413333pt;}
.yc4{bottom:927.293333pt;}
.y39{bottom:931.133333pt;}
.y68{bottom:934.653333pt;}
.ydc{bottom:938.173333pt;}
.y97{bottom:945.533333pt;}
.y9{bottom:946.173333pt;}
.y1c3{bottom:947.133333pt;}
.y67{bottom:952.893333pt;}
.y137{bottom:953.893333pt;}
.ydb{bottom:956.773333pt;}
.y96{bottom:963.813333pt;}
.yc3{bottom:964.133333pt;}
.y38{bottom:966.373333pt;}
.y8{bottom:970.853333pt;}
.y66{bottom:971.493333pt;}
.y136{bottom:972.133333pt;}
.yda{bottom:975.013333pt;}
.y95{bottom:982.373333pt;}
.y37{bottom:987.813333pt;}
.yd9{bottom:993.573333pt;}
.y7{bottom:995.493333pt;}
.y65{bottom:998.373333pt;}
.yc2{bottom:1000.933333pt;}
.y1c2{bottom:1003.173333pt;}
.y36{bottom:1009.253333pt;}
.yd8{bottom:1011.813333pt;}
.y1b8{bottom:1012.773333pt;}
.y135{bottom:1014.053333pt;}
.y4{bottom:1019.173333pt;}
.y35{bottom:1032.933333pt;}
.y3{bottom:1036.453333pt;}
.y2{bottom:1050.213333pt;}
.y1{bottom:1064.293333pt;}
.h13{height:15.360000pt;}
.h14{height:15.392000pt;}
.hc{height:17.920000pt;}
.h16{height:18.240000pt;}
.h18{height:18.560000pt;}
.h17{height:18.592000pt;}
.h15{height:36.618750pt;}
.hb{height:37.353750pt;}
.h3{height:42.797500pt;}
.h12{height:44.468750pt;}
.hf{height:46.400000pt;}
.h9{height:47.171250pt;}
.he{height:47.302500pt;}
.h8{height:47.748750pt;}
.h7{height:52.160000pt;}
.h19{height:52.296250pt;}
.h4{height:56.156250pt;}
.h2{height:56.312500pt;}
.h11{height:56.843750pt;}
.ha{height:61.152000pt;}
.h6{height:65.938750pt;}
.h10{height:71.680000pt;}
.h5{height:76.170625pt;}
.hd{height:88.352000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.wc{width:66.560000pt;}
.wb{width:66.592000pt;}
.w9{width:79.712000pt;}
.w7{width:80.032000pt;}
.w8{width:93.184000pt;}
.wa{width:99.872000pt;}
.we{width:99.904000pt;}
.w6{width:120.032000pt;}
.wd{width:133.152000pt;}
.w3{width:197.533333pt;}
.w4{width:405.600000pt;}
.w5{width:605.693333pt;}
.w1{width:793.333333pt;}
.w2{width:793.599988pt;}
.w0{width:793.600000pt;}
.x0{left:0.000000pt;}
.xf{left:7.040000pt;}
.x45{left:8.320000pt;}
.x37{left:9.280000pt;}
.x36{left:11.520000pt;}
.x3a{left:12.800000pt;}
.x22{left:13.760000pt;}
.x38{left:14.720000pt;}
.x24{left:16.346667pt;}
.x39{left:18.240000pt;}
.x31{left:19.200000pt;}
.x2b{left:21.466667pt;}
.x2a{left:22.720000pt;}
.x14{left:23.712000pt;}
.x28{left:25.000000pt;}
.x20{left:26.920000pt;}
.x26{left:28.160000pt;}
.x42{left:29.480000pt;}
.x29{left:31.706667pt;}
.x1e{left:35.202667pt;}
.x46{left:40.040000pt;}
.x43{left:43.240000pt;}
.x12{left:64.986667pt;}
.x11{left:77.154667pt;}
.x49{left:89.311988pt;}
.x1{left:96.031988pt;}
.x17{left:96.991988pt;}
.x5{left:99.231988pt;}
.x18{left:104.351988pt;}
.x1a{left:119.743988pt;}
.x7{left:122.943988pt;}
.x4{left:124.863988pt;}
.x4b{left:128.703988pt;}
.x1d{left:130.304000pt;}
.x8{left:135.746655pt;}
.x1b{left:143.746655pt;}
.x2e{left:146.946667pt;}
.xc{left:154.626655pt;}
.x13{left:158.453333pt;}
.xd{left:190.146655pt;}
.x47{left:196.893322pt;}
.x51{left:200.733322pt;}
.x3d{left:205.213322pt;}
.xb{left:216.733322pt;}
.x2c{left:219.933322pt;}
.x4d{left:224.413322pt;}
.x16{left:229.861333pt;}
.x2f{left:247.133333pt;}
.x1f{left:250.333333pt;}
.x15{left:255.168000pt;}
.x3e{left:263.773333pt;}
.x1c{left:268.893322pt;}
.x3b{left:279.813322pt;}
.xe{left:286.213322pt;}
.x4f{left:292.293322pt;}
.x10{left:294.853333pt;}
.x2d{left:304.453322pt;}
.x30{left:313.733333pt;}
.x6{left:319.173322pt;}
.x9{left:327.813322pt;}
.x21{left:330.373333pt;}
.x3{left:340.933322pt;}
.x4a{left:358.239988pt;}
.x19{left:361.119988pt;}
.x3f{left:363.680000pt;}
.x32{left:380.320000pt;}
.xa{left:396.959988pt;}
.x23{left:410.400000pt;}
.x33{left:447.226667pt;}
.x40{left:463.866667pt;}
.x25{left:503.906667pt;}
.x34{left:513.826667pt;}
.x3c{left:540.386655pt;}
.x41{left:563.746667pt;}
.x35{left:580.386667pt;}
.x27{left:583.933333pt;}
.x48{left:586.813322pt;}
.x44{left:590.013322pt;}
.x4e{left:659.493322pt;}
.x52{left:664.293322pt;}
.x50{left:665.893322pt;}
.x4c{left:671.973322pt;}
.x2{left:673.893322pt;}
}




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