
    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_631c0043fc558825a5ae9e48.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_e41f83af312352dfef189c8c.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.208008;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_853ecf4487ca79c0aef7ec83.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_3b80d038d8034274c3bd9792.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_526c5c483dfb0fad7aaf9f6d.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_0407b1b17b0bd7cc6ee23219.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.208008;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;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:15.120000px;}
.lsa{letter-spacing:-0.226200px;}
.ls7{letter-spacing:-0.038880px;}
.lsd{letter-spacing:-0.036000px;}
.ls3{letter-spacing:0.000000px;}
.ls5{letter-spacing:0.012960px;}
.ls2{letter-spacing:0.013200px;}
.lse{letter-spacing:0.063600px;}
.ls6{letter-spacing:0.211680px;}
.lsf{letter-spacing:0.319680px;}
.ls9{letter-spacing:0.328800px;}
.ls4{letter-spacing:0.385800px;}
.ls1{letter-spacing:0.612720px;}
.ls8{letter-spacing:0.666720px;}
.ls0{letter-spacing:0.720000px;}
.ls10{letter-spacing:1.080000px;}
.lsc{letter-spacing:47.466720px;}
.lsb{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;}
}
.ws5{word-spacing:-14.958600px;}
.ws3{word-spacing:-14.572800px;}
.ws7{word-spacing:-13.476000px;}
.wsb{word-spacing:-13.210800px;}
.ws0{word-spacing:-13.160400px;}
.wsa{word-spacing:-13.160160px;}
.ws1{word-spacing:-13.147200px;}
.ws9{word-spacing:-13.111200px;}
.ws6{word-spacing:-13.108320px;}
.ws8{word-spacing:-12.921000px;}
.ws4{word-spacing:0.000000px;}
.ws2{word-spacing:2.408040px;}
._e{margin-left:-3.481200px;}
._6{margin-left:-2.305200px;}
._0{margin-left:-1.159200px;}
._1{width:1.074000px;}
._4{width:2.579040px;}
._b{width:4.119592px;}
._5{width:5.916001px;}
._a{width:7.290600px;}
._c{width:8.428199px;}
._15{width:9.436040px;}
._3{width:10.489343px;}
._2{width:11.540964px;}
._d{width:14.594880px;}
._f{width:16.015680px;}
._8{width:17.320081px;}
._7{width:18.406200px;}
._9{width:19.785002px;}
._17{width:20.789275px;}
._12{width:21.812400px;}
._13{width:23.304720px;}
._14{width:24.345840px;}
._11{width:25.459440px;}
._10{width:26.593200px;}
._1b{width:28.811760px;}
._16{width:29.939760px;}
._18{width:30.993840px;}
._19{width:33.467280px;}
._1a{width:34.545600px;}
._1c{width:40.048320px;}
._1d{width:41.514000px;}
.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;}
.fs4{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y2{bottom:73.260000px;}
.y29{bottom:74.160000px;}
.y1{bottom:101.340000px;}
.y181{bottom:111.240000px;}
.y70{bottom:115.020000px;}
.yb9{bottom:119.880000px;}
.y109{bottom:128.340000px;}
.y13b{bottom:128.880000px;}
.y9b{bottom:129.240000px;}
.y6f{bottom:132.660000px;}
.yb8{bottom:137.340000px;}
.y125{bottom:138.240000px;}
.y160{bottom:141.660000px;}
.y13a{bottom:146.340000px;}
.y9a{bottom:146.880000px;}
.y6e{bottom:150.120000px;}
.y1a4{bottom:150.840000px;}
.yd8{bottom:151.200000px;}
.y180{bottom:155.340000px;}
.y124{bottom:155.880000px;}
.y15f{bottom:159.300000px;}
.y27{bottom:160.410000px;}
.yb7{bottom:164.010000px;}
.y99{bottom:164.370000px;}
.y1a3{bottom:168.510000px;}
.yd7{bottom:168.870000px;}
.y17f{bottom:173.010000px;}
.y139{bottom:173.190000px;}
.y123{bottom:173.370000px;}
.y15e{bottom:176.970000px;}
.y26{bottom:178.050000px;}
.yf2{bottom:182.010000px;}
.y6d{bottom:185.790000px;}
.yd6{bottom:186.510000px;}
.y122{bottom:191.010000px;}
.y15d{bottom:194.430000px;}
.y1a2{bottom:194.970000px;}
.y25{bottom:195.510000px;}
.yb6{bottom:199.470000px;}
.y98{bottom:200.010000px;}
.y6c{bottom:203.430000px;}
.yd5{bottom:203.970000px;}
.y121{bottom:208.650000px;}
.y15c{bottom:212.070000px;}
.y1a1{bottom:212.610000px;}
.y195{bottom:212.970000px;}
.y24{bottom:213.150000px;}
.yb5{bottom:217.110000px;}
.yf1{bottom:217.470000px;}
.y97{bottom:217.650000px;}
.y6b{bottom:221.070000px;}
.yd4{bottom:221.610000px;}
.y15b{bottom:229.710000px;}
.y194{bottom:230.610000px;}
.y23{bottom:230.790000px;}
.yb4{bottom:234.750000px;}
.y96{bottom:235.110000px;}
.y6a{bottom:238.530000px;}
.y1a0{bottom:239.070000px;}
.y138{bottom:239.250000px;}
.y17e{bottom:243.750000px;}
.y15a{bottom:247.350000px;}
.y22{bottom:248.430000px;}
.yb3{bottom:252.390000px;}
.y95{bottom:252.750000px;}
.y52{bottom:253.110000px;}
.y69{bottom:256.170000px;}
.y137{bottom:256.710000px;}
.yd3{bottom:257.070000px;}
.y17d{bottom:261.390000px;}
.y159{bottom:264.810000px;}
.y94{bottom:270.390000px;}
.y51{bottom:270.750000px;}
.y68{bottom:273.810000px;}
.y136{bottom:274.350000px;}
.yd2{bottom:274.710000px;}
.yb2{bottom:279.210000px;}
.y19f{bottom:283.350000px;}
.y21{bottom:283.890000px;}
.y108{bottom:287.850000px;}
.y93{bottom:288.030000px;}
.y50{bottom:288.390000px;}
.y67{bottom:291.270000px;}
.yd1{bottom:292.350000px;}
.y158{bottom:300.450000px;}
.y193{bottom:301.350000px;}
.y20{bottom:301.530000px;}
.y107{bottom:305.490000px;}
.yf0{bottom:305.850000px;}
.y4f{bottom:306.030000px;}
.y135{bottom:309.990000px;}
.y157{bottom:318.090000px;}
.yd0{bottom:318.990000px;}
.y1f{bottom:319.170000px;}
.y106{bottom:323.130000px;}
.y92{bottom:323.490000px;}
.y66{bottom:326.910000px;}
.yb1{bottom:327.450000px;}
.y134{bottom:327.630000px;}
.y192{bottom:327.990000px;}
.y17c{bottom:332.130000px;}
.y156{bottom:335.550000px;}
.y1e{bottom:336.630000px;}
.y105{bottom:340.770000px;}
.y91{bottom:341.130000px;}
.y4e{bottom:341.490000px;}
.y65{bottom:344.550000px;}
.yb0{bottom:345.090000px;}
.y191{bottom:345.630000px;}
.y17b{bottom:349.770000px;}
.y120{bottom:350.310000px;}
.y155{bottom:353.190000px;}
.y19e{bottom:354.090000px;}
.y1d{bottom:354.270000px;}
.ycf{bottom:354.450000px;}
.y104{bottom:358.230000px;}
.y90{bottom:358.770000px;}
.y4d{bottom:359.130000px;}
.y64{bottom:362.010000px;}
.yaf{bottom:362.730000px;}
.y190{bottom:363.090000px;}
.y154{bottom:370.830000px;}
.y19d{bottom:371.730000px;}
.y1c{bottom:371.910000px;}
.yce{bottom:372.090000px;}
.y8f{bottom:376.230000px;}
.y4c{bottom:376.770000px;}
.y63{bottom:379.650000px;}
.yae{bottom:380.370000px;}
.yef{bottom:385.230000px;}
.y153{bottom:388.290000px;}
.ycd{bottom:389.730000px;}
.y8e{bottom:393.870000px;}
.y4b{bottom:394.230000px;}
.yad{bottom:397.830000px;}
.y19c{bottom:398.190000px;}
.y1b{bottom:398.550000px;}
.y11f{bottom:398.730000px;}
.y152{bottom:405.930000px;}
.y62{bottom:406.110000px;}
.ycc{bottom:407.415000px;}
.y103{bottom:411.555000px;}
.y19b{bottom:415.875000px;}
.y18f{bottom:416.235000px;}
.y11e{bottom:416.415000px;}
.y8d{bottom:420.375000px;}
.yee{bottom:420.915000px;}
.y151{bottom:423.615000px;}
.y133{bottom:424.515000px;}
.ycb{bottom:424.875000px;}
.y102{bottom:429.015000px;}
.y4a{bottom:429.915000px;}
.yac{bottom:433.515000px;}
.y11d{bottom:433.875000px;}
.y17a{bottom:438.015000px;}
.yed{bottom:438.555000px;}
.y150{bottom:441.255000px;}
.y61{bottom:441.795000px;}
.y101{bottom:446.655000px;}
.y1a{bottom:447.015000px;}
.y49{bottom:447.555000px;}
.yab{bottom:451.155000px;}
.y11c{bottom:451.515000px;}
.y8c{bottom:456.015000px;}
.y14f{bottom:458.715000px;}
.y60{bottom:459.435000px;}
.y132{bottom:459.975000px;}
.yca{bottom:460.515000px;}
.y100{bottom:464.295000px;}
.y179{bottom:464.655000px;}
.y19{bottom:465.015000px;}
.yaa{bottom:468.615000px;}
.y8b{bottom:473.655000px;}
.y5f{bottom:477.075000px;}
.y131{bottom:477.615000px;}
.yc9{bottom:478.155000px;}
.y178{bottom:482.295000px;}
.y48{bottom:482.655000px;}
.ya9{bottom:486.255000px;}
.y11b{bottom:486.975000px;}
.y8a{bottom:491.295000px;}
.y14e{bottom:494.355000px;}
.y5e{bottom:494.715000px;}
.y130{bottom:495.255000px;}
.yc8{bottom:495.615000px;}
.yff{bottom:499.755000px;}
.y47{bottom:500.295000px;}
.y18{bottom:501.915000px;}
.y19a{bottom:504.255000px;}
.y11a{bottom:504.615000px;}
.y177{bottom:508.755000px;}
.y89{bottom:508.935000px;}
.yec{bottom:509.295000px;}
.y14d{bottom:511.995000px;}
.y5d{bottom:512.175000px;}
.y12f{bottom:512.895000px;}
.yc7{bottom:513.255000px;}
.yfe{bottom:517.395000px;}
.y17{bottom:519.555000px;}
.ya8{bottom:521.715000px;}
.y199{bottom:521.895000px;}
.y119{bottom:522.255000px;}
.y176{bottom:526.395000px;}
.yeb{bottom:526.935000px;}
.y14c{bottom:529.455000px;}
.y5c{bottom:529.815000px;}
.y12e{bottom:530.355000px;}
.yc6{bottom:530.895000px;}
.yfd{bottom:535.035000px;}
.y88{bottom:535.575000px;}
.y46{bottom:535.755000px;}
.y16{bottom:537.195000px;}
.ya7{bottom:539.355000px;}
.y118{bottom:539.895000px;}
.yea{bottom:544.395000px;}
.y14b{bottom:547.095000px;}
.y5b{bottom:547.455000px;}
.y18e{bottom:548.715000px;}
.y175{bottom:553.035000px;}
.y45{bottom:553.395000px;}
.y15{bottom:554.835000px;}
.ya6{bottom:556.995000px;}
.y117{bottom:557.355000px;}
.yfc{bottom:561.495000px;}
.ye9{bottom:562.035000px;}
.y14a{bottom:564.735000px;}
.y5a{bottom:564.915000px;}
.y12d{bottom:565.995000px;}
.yc5{bottom:566.355000px;}
.y174{bottom:570.675000px;}
.y44{bottom:571.035000px;}
.y14{bottom:572.295000px;}
.y18d{bottom:575.355000px;}
.ye8{bottom:579.675000px;}
.y149{bottom:582.195000px;}
.y59{bottom:582.555000px;}
.ya5{bottom:583.635000px;}
.y87{bottom:583.995000px;}
.y43{bottom:588.675000px;}
.y13{bottom:589.935000px;}
.y198{bottom:592.635000px;}
.y116{bottom:592.995000px;}
.yfb{bottom:597.135000px;}
.y148{bottom:599.835000px;}
.y58{bottom:600.195000px;}
.y12c{bottom:601.275000px;}
.y86{bottom:601.635000px;}
.y42{bottom:606.135000px;}
.y12{bottom:607.575000px;}
.y197{bottom:610.275000px;}
.y115{bottom:610.635000px;}
.yfa{bottom:614.775000px;}
.ye7{bottom:615.135000px;}
.y147{bottom:617.475000px;}
.y57{bottom:617.655000px;}
.y12b{bottom:618.735000px;}
.ya4{bottom:619.095000px;}
.y85{bottom:619.275000px;}
.y11{bottom:625.035000px;}
.y114{bottom:628.275000px;}
.yf9{bottom:632.415000px;}
.ye6{bottom:632.775000px;}
.y146{bottom:635.115000px;}
.y56{bottom:635.295000px;}
.y84{bottom:636.735000px;}
.y18c{bottom:637.095000px;}
.y173{bottom:641.235000px;}
.y41{bottom:641.775000px;}
.y10{bottom:642.675000px;}
.y113{bottom:645.735000px;}
.ye5{bottom:650.415000px;}
.y145{bottom:652.575000px;}
.y83{bottom:654.405000px;}
.y18b{bottom:654.765000px;}
.y172{bottom:658.905000px;}
.yf8{bottom:659.085000px;}
.y40{bottom:659.445000px;}
.yf{bottom:660.345000px;}
.y55{bottom:662.145000px;}
.y112{bottom:663.405000px;}
.ye4{bottom:667.905000px;}
.y144{bottom:670.245000px;}
.ya3{bottom:672.045000px;}
.yc4{bottom:672.405000px;}
.y3f{bottom:676.905000px;}
.ye{bottom:677.985000px;}
.y196{bottom:680.865000px;}
.y111{bottom:681.045000px;}
.y18a{bottom:681.405000px;}
.ye3{bottom:685.545000px;}
.ya2{bottom:689.505000px;}
.y82{bottom:689.865000px;}
.yc3{bottom:690.045000px;}
.y3e{bottom:694.545000px;}
.yd{bottom:695.445000px;}
.y143{bottom:697.065000px;}
.y110{bottom:698.505000px;}
.y189{bottom:699.045000px;}
.y171{bottom:703.185000px;}
.y12a{bottom:707.145000px;}
.y81{bottom:707.505000px;}
.y54{bottom:710.385000px;}
.yc{bottom:713.085000px;}
.ye2{bottom:721.005000px;}
.y80{bottom:725.145000px;}
.y188{bottom:725.505000px;}
.y170{bottom:729.645000px;}
.y3d{bottom:730.005000px;}
.yb{bottom:730.725000px;}
.yc2{bottom:734.145000px;}
.ye1{bottom:738.645000px;}
.y53{bottom:742.605000px;}
.y7f{bottom:742.785000px;}
.y187{bottom:743.145000px;}
.y16f{bottom:747.285000px;}
.y3c{bottom:747.645000px;}
.y142{bottom:751.785000px;}
.ye0{bottom:756.285000px;}
.ya{bottom:757.365000px;}
.ya1{bottom:760.245000px;}
.y10f{bottom:760.605000px;}
.y186{bottom:760.785000px;}
.y3b{bottom:765.285000px;}
.y141{bottom:769.245000px;}
.yc1{bottom:769.605000px;}
.ydf{bottom:773.925000px;}
.ya0{bottom:777.885000px;}
.y7e{bottom:778.245000px;}
.y3a{bottom:782.925000px;}
.y140{bottom:786.885000px;}
.yc0{bottom:787.245000px;}
.yde{bottom:791.565000px;}
.y129{bottom:795.525000px;}
.y7d{bottom:795.885000px;}
.y39{bottom:800.565000px;}
.y13f{bottom:804.525000px;}
.ybf{bottom:804.885000px;}
.y9{bottom:805.785000px;}
.y128{bottom:813.165000px;}
.y7c{bottom:813.525000px;}
.ydd{bottom:818.025000px;}
.ybe{bottom:822.525000px;}
.y38{bottom:827.205000px;}
.y1a5{bottom:830.985000px;}
.y7b{bottom:831.165000px;}
.y16e{bottom:835.665000px;}
.y13e{bottom:839.985000px;}
.ybd{bottom:840.165000px;}
.y8{bottom:841.605000px;}
.y7a{bottom:848.625000px;}
.y185{bottom:848.985000px;}
.ydc{bottom:853.665000px;}
.ybc{bottom:857.625000px;}
.y16d{bottom:862.125000px;}
.y9f{bottom:866.265000px;}
.y184{bottom:866.625000px;}
.ydb{bottom:871.305000px;}
.y13d{bottom:875.265000px;}
.y37{bottom:875.625000px;}
.y7{bottom:877.605000px;}
.y16c{bottom:879.765000px;}
.y9e{bottom:883.905000px;}
.y79{bottom:884.265000px;}
.yda{bottom:888.765000px;}
.y13c{bottom:892.905000px;}
.y36{bottom:893.265000px;}
.yf7{bottom:901.770000px;}
.y78{bottom:901.950000px;}
.y16b{bottom:906.450000px;}
.y127{bottom:910.410000px;}
.y183{bottom:910.770000px;}
.y35{bottom:910.950000px;}
.y6{bottom:913.470000px;}
.yd9{bottom:915.630000px;}
.y77{bottom:919.410000px;}
.y16a{bottom:924.090000px;}
.y34{bottom:928.410000px;}
.y76{bottom:937.050000px;}
.ybb{bottom:946.050000px;}
.y5{bottom:949.290000px;}
.y169{bottom:950.550000px;}
.y9d{bottom:954.690000px;}
.y75{bottom:963.510000px;}
.yba{bottom:963.690000px;}
.y33{bottom:964.050000px;}
.y168{bottom:968.190000px;}
.y10e{bottom:972.510000px;}
.y9c{bottom:981.150000px;}
.y32{bottom:981.690000px;}
.y4{bottom:987.630000px;}
.yf6{bottom:990.150000px;}
.y167{bottom:994.830000px;}
.y126{bottom:998.790000px;}
.y31{bottom:999.150000px;}
.yf5{bottom:1007.790000px;}
.y3{bottom:1012.290000px;}
.y166{bottom:1012.470000px;}
.y30{bottom:1016.790000px;}
.yf4{bottom:1025.430000px;}
.y2f{bottom:1034.430000px;}
.y165{bottom:1038.930000px;}
.y10d{bottom:1043.070000px;}
.yf3{bottom:1051.890000px;}
.y74{bottom:1052.070000px;}
.y164{bottom:1056.570000px;}
.y182{bottom:1060.890000px;}
.y73{bottom:1069.530000px;}
.y2e{bottom:1069.890000px;}
.y10c{bottom:1078.530000px;}
.y163{bottom:1083.030000px;}
.y72{bottom:1087.170000px;}
.y2d{bottom:1087.530000px;}
.y10b{bottom:1096.170000px;}
.y162{bottom:1100.670000px;}
.y2c{bottom:1105.170000px;}
.y10a{bottom:1113.810000px;}
.y71{bottom:1122.630000px;}
.y2b{bottom:1122.810000px;}
.y161{bottom:1127.490000px;}
.y2a{bottom:1140.270000px;}
.y28{bottom:1194.300000px;}
.h2{height:32.566289px;}
.h3{height:44.894883px;}
.h7{height:56.084062px;}
.h6{height:59.147227px;}
.ha{height:61.423863px;}
.h9{height:62.211094px;}
.h5{height:65.560781px;}
.h8{height:68.956875px;}
.h4{height:83.376211px;}
.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;}
.x6{left:111.275987px;}
.x5{left:180.029987px;}
.x2{left:251.669987px;}
.x4{left:718.889987px;}
.x3{left:800.429987px;}
@media print{
.v1{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:13.440000pt;}
.lsa{letter-spacing:-0.201067pt;}
.ls7{letter-spacing:-0.034560pt;}
.lsd{letter-spacing:-0.032000pt;}
.ls3{letter-spacing:0.000000pt;}
.ls5{letter-spacing:0.011520pt;}
.ls2{letter-spacing:0.011733pt;}
.lse{letter-spacing:0.056533pt;}
.ls6{letter-spacing:0.188160pt;}
.lsf{letter-spacing:0.284160pt;}
.ls9{letter-spacing:0.292267pt;}
.ls4{letter-spacing:0.342933pt;}
.ls1{letter-spacing:0.544640pt;}
.ls8{letter-spacing:0.592640pt;}
.ls0{letter-spacing:0.640000pt;}
.ls10{letter-spacing:0.960000pt;}
.lsc{letter-spacing:42.192640pt;}
.lsb{letter-spacing:72.400640pt;}
.ws5{word-spacing:-13.296533pt;}
.ws3{word-spacing:-12.953600pt;}
.ws7{word-spacing:-11.978667pt;}
.wsb{word-spacing:-11.742933pt;}
.ws0{word-spacing:-11.698133pt;}
.wsa{word-spacing:-11.697920pt;}
.ws1{word-spacing:-11.686400pt;}
.ws9{word-spacing:-11.654400pt;}
.ws6{word-spacing:-11.651840pt;}
.ws8{word-spacing:-11.485333pt;}
.ws4{word-spacing:0.000000pt;}
.ws2{word-spacing:2.140480pt;}
._e{margin-left:-3.094400pt;}
._6{margin-left:-2.049067pt;}
._0{margin-left:-1.030400pt;}
._1{width:0.954667pt;}
._4{width:2.292480pt;}
._b{width:3.661860pt;}
._5{width:5.258668pt;}
._a{width:6.480534pt;}
._c{width:7.491732pt;}
._15{width:8.387591pt;}
._3{width:9.323860pt;}
._2{width:10.258635pt;}
._d{width:12.973227pt;}
._f{width:14.236160pt;}
._8{width:15.395628pt;}
._7{width:16.361066pt;}
._9{width:17.586669pt;}
._17{width:18.479356pt;}
._12{width:19.388800pt;}
._13{width:20.715307pt;}
._14{width:21.640747pt;}
._11{width:22.630613pt;}
._10{width:23.638400pt;}
._1b{width:25.610453pt;}
._16{width:26.613120pt;}
._18{width:27.550080pt;}
._19{width:29.748693pt;}
._1a{width:30.707200pt;}
._1c{width:35.598507pt;}
._1d{width:36.901333pt;}
.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;}
.fs4{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:65.120000pt;}
.y29{bottom:65.920000pt;}
.y1{bottom:90.080000pt;}
.y181{bottom:98.880000pt;}
.y70{bottom:102.240000pt;}
.yb9{bottom:106.560000pt;}
.y109{bottom:114.080000pt;}
.y13b{bottom:114.560000pt;}
.y9b{bottom:114.880000pt;}
.y6f{bottom:117.920000pt;}
.yb8{bottom:122.080000pt;}
.y125{bottom:122.880000pt;}
.y160{bottom:125.920000pt;}
.y13a{bottom:130.080000pt;}
.y9a{bottom:130.560000pt;}
.y6e{bottom:133.440000pt;}
.y1a4{bottom:134.080000pt;}
.yd8{bottom:134.400000pt;}
.y180{bottom:138.080000pt;}
.y124{bottom:138.560000pt;}
.y15f{bottom:141.600000pt;}
.y27{bottom:142.586667pt;}
.yb7{bottom:145.786667pt;}
.y99{bottom:146.106667pt;}
.y1a3{bottom:149.786667pt;}
.yd7{bottom:150.106667pt;}
.y17f{bottom:153.786667pt;}
.y139{bottom:153.946667pt;}
.y123{bottom:154.106667pt;}
.y15e{bottom:157.306667pt;}
.y26{bottom:158.266667pt;}
.yf2{bottom:161.786667pt;}
.y6d{bottom:165.146667pt;}
.yd6{bottom:165.786667pt;}
.y122{bottom:169.786667pt;}
.y15d{bottom:172.826667pt;}
.y1a2{bottom:173.306667pt;}
.y25{bottom:173.786667pt;}
.yb6{bottom:177.306667pt;}
.y98{bottom:177.786667pt;}
.y6c{bottom:180.826667pt;}
.yd5{bottom:181.306667pt;}
.y121{bottom:185.466667pt;}
.y15c{bottom:188.506667pt;}
.y1a1{bottom:188.986667pt;}
.y195{bottom:189.306667pt;}
.y24{bottom:189.466667pt;}
.yb5{bottom:192.986667pt;}
.yf1{bottom:193.306667pt;}
.y97{bottom:193.466667pt;}
.y6b{bottom:196.506667pt;}
.yd4{bottom:196.986667pt;}
.y15b{bottom:204.186667pt;}
.y194{bottom:204.986667pt;}
.y23{bottom:205.146667pt;}
.yb4{bottom:208.666667pt;}
.y96{bottom:208.986667pt;}
.y6a{bottom:212.026667pt;}
.y1a0{bottom:212.506667pt;}
.y138{bottom:212.666667pt;}
.y17e{bottom:216.666667pt;}
.y15a{bottom:219.866667pt;}
.y22{bottom:220.826667pt;}
.yb3{bottom:224.346667pt;}
.y95{bottom:224.666667pt;}
.y52{bottom:224.986667pt;}
.y69{bottom:227.706667pt;}
.y137{bottom:228.186667pt;}
.yd3{bottom:228.506667pt;}
.y17d{bottom:232.346667pt;}
.y159{bottom:235.386667pt;}
.y94{bottom:240.346667pt;}
.y51{bottom:240.666667pt;}
.y68{bottom:243.386667pt;}
.y136{bottom:243.866667pt;}
.yd2{bottom:244.186667pt;}
.yb2{bottom:248.186667pt;}
.y19f{bottom:251.866667pt;}
.y21{bottom:252.346667pt;}
.y108{bottom:255.866667pt;}
.y93{bottom:256.026667pt;}
.y50{bottom:256.346667pt;}
.y67{bottom:258.906667pt;}
.yd1{bottom:259.866667pt;}
.y158{bottom:267.066667pt;}
.y193{bottom:267.866667pt;}
.y20{bottom:268.026667pt;}
.y107{bottom:271.546667pt;}
.yf0{bottom:271.866667pt;}
.y4f{bottom:272.026667pt;}
.y135{bottom:275.546667pt;}
.y157{bottom:282.746667pt;}
.yd0{bottom:283.546667pt;}
.y1f{bottom:283.706667pt;}
.y106{bottom:287.226667pt;}
.y92{bottom:287.546667pt;}
.y66{bottom:290.586667pt;}
.yb1{bottom:291.066667pt;}
.y134{bottom:291.226667pt;}
.y192{bottom:291.546667pt;}
.y17c{bottom:295.226667pt;}
.y156{bottom:298.266667pt;}
.y1e{bottom:299.226667pt;}
.y105{bottom:302.906667pt;}
.y91{bottom:303.226667pt;}
.y4e{bottom:303.546667pt;}
.y65{bottom:306.266667pt;}
.yb0{bottom:306.746667pt;}
.y191{bottom:307.226667pt;}
.y17b{bottom:310.906667pt;}
.y120{bottom:311.386667pt;}
.y155{bottom:313.946667pt;}
.y19e{bottom:314.746667pt;}
.y1d{bottom:314.906667pt;}
.ycf{bottom:315.066667pt;}
.y104{bottom:318.426667pt;}
.y90{bottom:318.906667pt;}
.y4d{bottom:319.226667pt;}
.y64{bottom:321.786667pt;}
.yaf{bottom:322.426667pt;}
.y190{bottom:322.746667pt;}
.y154{bottom:329.626667pt;}
.y19d{bottom:330.426667pt;}
.y1c{bottom:330.586667pt;}
.yce{bottom:330.746667pt;}
.y8f{bottom:334.426667pt;}
.y4c{bottom:334.906667pt;}
.y63{bottom:337.466667pt;}
.yae{bottom:338.106667pt;}
.yef{bottom:342.426667pt;}
.y153{bottom:345.146667pt;}
.ycd{bottom:346.426667pt;}
.y8e{bottom:350.106667pt;}
.y4b{bottom:350.426667pt;}
.yad{bottom:353.626667pt;}
.y19c{bottom:353.946667pt;}
.y1b{bottom:354.266667pt;}
.y11f{bottom:354.426667pt;}
.y152{bottom:360.826667pt;}
.y62{bottom:360.986667pt;}
.ycc{bottom:362.146667pt;}
.y103{bottom:365.826667pt;}
.y19b{bottom:369.666667pt;}
.y18f{bottom:369.986667pt;}
.y11e{bottom:370.146667pt;}
.y8d{bottom:373.666667pt;}
.yee{bottom:374.146667pt;}
.y151{bottom:376.546667pt;}
.y133{bottom:377.346667pt;}
.ycb{bottom:377.666667pt;}
.y102{bottom:381.346667pt;}
.y4a{bottom:382.146667pt;}
.yac{bottom:385.346667pt;}
.y11d{bottom:385.666667pt;}
.y17a{bottom:389.346667pt;}
.yed{bottom:389.826667pt;}
.y150{bottom:392.226667pt;}
.y61{bottom:392.706667pt;}
.y101{bottom:397.026667pt;}
.y1a{bottom:397.346667pt;}
.y49{bottom:397.826667pt;}
.yab{bottom:401.026667pt;}
.y11c{bottom:401.346667pt;}
.y8c{bottom:405.346667pt;}
.y14f{bottom:407.746667pt;}
.y60{bottom:408.386667pt;}
.y132{bottom:408.866667pt;}
.yca{bottom:409.346667pt;}
.y100{bottom:412.706667pt;}
.y179{bottom:413.026667pt;}
.y19{bottom:413.346667pt;}
.yaa{bottom:416.546667pt;}
.y8b{bottom:421.026667pt;}
.y5f{bottom:424.066667pt;}
.y131{bottom:424.546667pt;}
.yc9{bottom:425.026667pt;}
.y178{bottom:428.706667pt;}
.y48{bottom:429.026667pt;}
.ya9{bottom:432.226667pt;}
.y11b{bottom:432.866667pt;}
.y8a{bottom:436.706667pt;}
.y14e{bottom:439.426667pt;}
.y5e{bottom:439.746667pt;}
.y130{bottom:440.226667pt;}
.yc8{bottom:440.546667pt;}
.yff{bottom:444.226667pt;}
.y47{bottom:444.706667pt;}
.y18{bottom:446.146667pt;}
.y19a{bottom:448.226667pt;}
.y11a{bottom:448.546667pt;}
.y177{bottom:452.226667pt;}
.y89{bottom:452.386667pt;}
.yec{bottom:452.706667pt;}
.y14d{bottom:455.106667pt;}
.y5d{bottom:455.266667pt;}
.y12f{bottom:455.906667pt;}
.yc7{bottom:456.226667pt;}
.yfe{bottom:459.906667pt;}
.y17{bottom:461.826667pt;}
.ya8{bottom:463.746667pt;}
.y199{bottom:463.906667pt;}
.y119{bottom:464.226667pt;}
.y176{bottom:467.906667pt;}
.yeb{bottom:468.386667pt;}
.y14c{bottom:470.626667pt;}
.y5c{bottom:470.946667pt;}
.y12e{bottom:471.426667pt;}
.yc6{bottom:471.906667pt;}
.yfd{bottom:475.586667pt;}
.y88{bottom:476.066667pt;}
.y46{bottom:476.226667pt;}
.y16{bottom:477.506667pt;}
.ya7{bottom:479.426667pt;}
.y118{bottom:479.906667pt;}
.yea{bottom:483.906667pt;}
.y14b{bottom:486.306667pt;}
.y5b{bottom:486.626667pt;}
.y18e{bottom:487.746667pt;}
.y175{bottom:491.586667pt;}
.y45{bottom:491.906667pt;}
.y15{bottom:493.186667pt;}
.ya6{bottom:495.106667pt;}
.y117{bottom:495.426667pt;}
.yfc{bottom:499.106667pt;}
.ye9{bottom:499.586667pt;}
.y14a{bottom:501.986667pt;}
.y5a{bottom:502.146667pt;}
.y12d{bottom:503.106667pt;}
.yc5{bottom:503.426667pt;}
.y174{bottom:507.266667pt;}
.y44{bottom:507.586667pt;}
.y14{bottom:508.706667pt;}
.y18d{bottom:511.426667pt;}
.ye8{bottom:515.266667pt;}
.y149{bottom:517.506667pt;}
.y59{bottom:517.826667pt;}
.ya5{bottom:518.786667pt;}
.y87{bottom:519.106667pt;}
.y43{bottom:523.266667pt;}
.y13{bottom:524.386667pt;}
.y198{bottom:526.786667pt;}
.y116{bottom:527.106667pt;}
.yfb{bottom:530.786667pt;}
.y148{bottom:533.186667pt;}
.y58{bottom:533.506667pt;}
.y12c{bottom:534.466667pt;}
.y86{bottom:534.786667pt;}
.y42{bottom:538.786667pt;}
.y12{bottom:540.066667pt;}
.y197{bottom:542.466667pt;}
.y115{bottom:542.786667pt;}
.yfa{bottom:546.466667pt;}
.ye7{bottom:546.786667pt;}
.y147{bottom:548.866667pt;}
.y57{bottom:549.026667pt;}
.y12b{bottom:549.986667pt;}
.ya4{bottom:550.306667pt;}
.y85{bottom:550.466667pt;}
.y11{bottom:555.586667pt;}
.y114{bottom:558.466667pt;}
.yf9{bottom:562.146667pt;}
.ye6{bottom:562.466667pt;}
.y146{bottom:564.546667pt;}
.y56{bottom:564.706667pt;}
.y84{bottom:565.986667pt;}
.y18c{bottom:566.306667pt;}
.y173{bottom:569.986667pt;}
.y41{bottom:570.466667pt;}
.y10{bottom:571.266667pt;}
.y113{bottom:573.986667pt;}
.ye5{bottom:578.146667pt;}
.y145{bottom:580.066667pt;}
.y83{bottom:581.693333pt;}
.y18b{bottom:582.013333pt;}
.y172{bottom:585.693333pt;}
.yf8{bottom:585.853333pt;}
.y40{bottom:586.173333pt;}
.yf{bottom:586.973333pt;}
.y55{bottom:588.573333pt;}
.y112{bottom:589.693333pt;}
.ye4{bottom:593.693333pt;}
.y144{bottom:595.773333pt;}
.ya3{bottom:597.373333pt;}
.yc4{bottom:597.693333pt;}
.y3f{bottom:601.693333pt;}
.ye{bottom:602.653333pt;}
.y196{bottom:605.213333pt;}
.y111{bottom:605.373333pt;}
.y18a{bottom:605.693333pt;}
.ye3{bottom:609.373333pt;}
.ya2{bottom:612.893333pt;}
.y82{bottom:613.213333pt;}
.yc3{bottom:613.373333pt;}
.y3e{bottom:617.373333pt;}
.yd{bottom:618.173333pt;}
.y143{bottom:619.613333pt;}
.y110{bottom:620.893333pt;}
.y189{bottom:621.373333pt;}
.y171{bottom:625.053333pt;}
.y12a{bottom:628.573333pt;}
.y81{bottom:628.893333pt;}
.y54{bottom:631.453333pt;}
.yc{bottom:633.853333pt;}
.ye2{bottom:640.893333pt;}
.y80{bottom:644.573333pt;}
.y188{bottom:644.893333pt;}
.y170{bottom:648.573333pt;}
.y3d{bottom:648.893333pt;}
.yb{bottom:649.533333pt;}
.yc2{bottom:652.573333pt;}
.ye1{bottom:656.573333pt;}
.y53{bottom:660.093333pt;}
.y7f{bottom:660.253333pt;}
.y187{bottom:660.573333pt;}
.y16f{bottom:664.253333pt;}
.y3c{bottom:664.573333pt;}
.y142{bottom:668.253333pt;}
.ye0{bottom:672.253333pt;}
.ya{bottom:673.213333pt;}
.ya1{bottom:675.773333pt;}
.y10f{bottom:676.093333pt;}
.y186{bottom:676.253333pt;}
.y3b{bottom:680.253333pt;}
.y141{bottom:683.773333pt;}
.yc1{bottom:684.093333pt;}
.ydf{bottom:687.933333pt;}
.ya0{bottom:691.453333pt;}
.y7e{bottom:691.773333pt;}
.y3a{bottom:695.933333pt;}
.y140{bottom:699.453333pt;}
.yc0{bottom:699.773333pt;}
.yde{bottom:703.613333pt;}
.y129{bottom:707.133333pt;}
.y7d{bottom:707.453333pt;}
.y39{bottom:711.613333pt;}
.y13f{bottom:715.133333pt;}
.ybf{bottom:715.453333pt;}
.y9{bottom:716.253333pt;}
.y128{bottom:722.813333pt;}
.y7c{bottom:723.133333pt;}
.ydd{bottom:727.133333pt;}
.ybe{bottom:731.133333pt;}
.y38{bottom:735.293333pt;}
.y1a5{bottom:738.653333pt;}
.y7b{bottom:738.813333pt;}
.y16e{bottom:742.813333pt;}
.y13e{bottom:746.653333pt;}
.ybd{bottom:746.813333pt;}
.y8{bottom:748.093333pt;}
.y7a{bottom:754.333333pt;}
.y185{bottom:754.653333pt;}
.ydc{bottom:758.813333pt;}
.ybc{bottom:762.333333pt;}
.y16d{bottom:766.333333pt;}
.y9f{bottom:770.013333pt;}
.y184{bottom:770.333333pt;}
.ydb{bottom:774.493333pt;}
.y13d{bottom:778.013333pt;}
.y37{bottom:778.333333pt;}
.y7{bottom:780.093333pt;}
.y16c{bottom:782.013333pt;}
.y9e{bottom:785.693333pt;}
.y79{bottom:786.013333pt;}
.yda{bottom:790.013333pt;}
.y13c{bottom:793.693333pt;}
.y36{bottom:794.013333pt;}
.yf7{bottom:801.573333pt;}
.y78{bottom:801.733333pt;}
.y16b{bottom:805.733333pt;}
.y127{bottom:809.253333pt;}
.y183{bottom:809.573333pt;}
.y35{bottom:809.733333pt;}
.y6{bottom:811.973333pt;}
.yd9{bottom:813.893333pt;}
.y77{bottom:817.253333pt;}
.y16a{bottom:821.413333pt;}
.y34{bottom:825.253333pt;}
.y76{bottom:832.933333pt;}
.ybb{bottom:840.933333pt;}
.y5{bottom:843.813333pt;}
.y169{bottom:844.933333pt;}
.y9d{bottom:848.613333pt;}
.y75{bottom:856.453333pt;}
.yba{bottom:856.613333pt;}
.y33{bottom:856.933333pt;}
.y168{bottom:860.613333pt;}
.y10e{bottom:864.453333pt;}
.y9c{bottom:872.133333pt;}
.y32{bottom:872.613333pt;}
.y4{bottom:877.893333pt;}
.yf6{bottom:880.133333pt;}
.y167{bottom:884.293333pt;}
.y126{bottom:887.813333pt;}
.y31{bottom:888.133333pt;}
.yf5{bottom:895.813333pt;}
.y3{bottom:899.813333pt;}
.y166{bottom:899.973333pt;}
.y30{bottom:903.813333pt;}
.yf4{bottom:911.493333pt;}
.y2f{bottom:919.493333pt;}
.y165{bottom:923.493333pt;}
.y10d{bottom:927.173333pt;}
.yf3{bottom:935.013333pt;}
.y74{bottom:935.173333pt;}
.y164{bottom:939.173333pt;}
.y182{bottom:943.013333pt;}
.y73{bottom:950.693333pt;}
.y2e{bottom:951.013333pt;}
.y10c{bottom:958.693333pt;}
.y163{bottom:962.693333pt;}
.y72{bottom:966.373333pt;}
.y2d{bottom:966.693333pt;}
.y10b{bottom:974.373333pt;}
.y162{bottom:978.373333pt;}
.y2c{bottom:982.373333pt;}
.y10a{bottom:990.053333pt;}
.y71{bottom:997.893333pt;}
.y2b{bottom:998.053333pt;}
.y161{bottom:1002.213333pt;}
.y2a{bottom:1013.573333pt;}
.y28{bottom:1061.600000pt;}
.h2{height:28.947813pt;}
.h3{height:39.906562pt;}
.h7{height:49.852500pt;}
.h6{height:52.575312pt;}
.ha{height:54.598989pt;}
.h9{height:55.298750pt;}
.h5{height:58.276250pt;}
.h8{height:61.295000pt;}
.h4{height:74.112187pt;}
.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;}
.x6{left:98.911988pt;}
.x5{left:160.026655pt;}
.x2{left:223.706655pt;}
.x4{left:639.013322pt;}
.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; }
  