
    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_a02f9445a1dc261751496e07.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_047b632118850eb54d68a599.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.938965;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_731aca23a1cb638169cbeb23.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.040039;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_3ebda9bd40ce494916048f9a.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.938965;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_6ba6a6abb19328000f9eb113.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.739746;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_6193fc93719873dbca485474.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.739746;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_1114e9001298d10e6bad5c3d.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.739258;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);}
.v2{vertical-align:-14.400000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:24.480000px;}
.ls14{letter-spacing:-1.440000px;}
.ls6{letter-spacing:-0.972000px;}
.ls15{letter-spacing:-0.936000px;}
.ls4{letter-spacing:-0.720000px;}
.ls5{letter-spacing:-0.498000px;}
.ls9{letter-spacing:-0.486600px;}
.ls3{letter-spacing:0.000000px;}
.ls18{letter-spacing:0.020160px;}
.ls11{letter-spacing:0.423360px;}
.ls7{letter-spacing:0.432000px;}
.lsb{letter-spacing:0.466800px;}
.ls0{letter-spacing:0.498240px;}
.ls10{letter-spacing:0.507000px;}
.ls1{letter-spacing:0.720000px;}
.lsd{letter-spacing:26.398560px;}
.lsc{letter-spacing:42.238560px;}
.ls16{letter-spacing:55.330560px;}
.lsa{letter-spacing:59.518560px;}
.ls13{letter-spacing:63.838560px;}
.ls8{letter-spacing:69.598560px;}
.ls2{letter-spacing:73.728000px;}
.ls12{letter-spacing:75.358560px;}
.lsf{letter-spacing:81.250560px;}
.lse{letter-spacing:82.690560px;}
.ls17{letter-spacing:101.410560px;}
.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;}
}
.ws3{word-spacing:-18.000000px;}
.ws7{word-spacing:-15.627000px;}
.ws6{word-spacing:-15.586800px;}
.wsa{word-spacing:-15.140160px;}
.ws2{word-spacing:-15.120000px;}
.ws5{word-spacing:-14.633400px;}
.ws9{word-spacing:-14.148000px;}
.ws0{word-spacing:-13.182000px;}
.ws8{word-spacing:-11.880000px;}
.ws1{word-spacing:-9.720000px;}
.ws4{word-spacing:0.000000px;}
._24{margin-left:-5.824320px;}
._8{margin-left:-4.112640px;}
._6{margin-left:-2.851200px;}
._1{margin-left:-1.512000px;}
._0{width:1.080000px;}
._2{width:2.176800px;}
._d{width:3.251040px;}
._7{width:4.415040px;}
._e{width:5.814720px;}
._c{width:7.030080px;}
._b{width:8.321280px;}
._9{width:10.100160px;}
._a{width:11.257920px;}
._11{width:13.003200px;}
._12{width:14.031360px;}
._14{width:16.571520px;}
._15{width:18.408000px;}
._10{width:19.474560px;}
._f{width:20.865600px;}
._13{width:22.394880px;}
._1a{width:23.768640px;}
._29{width:25.099200px;}
._25{width:27.155520px;}
._22{width:28.969920px;}
._26{width:31.040640px;}
._1f{width:39.977280px;}
._1e{width:42.396480px;}
._21{width:48.263040px;}
._20{width:49.593600px;}
._23{width:75.962880px;}
._1b{width:94.227840px;}
._19{width:104.811840px;}
._1c{width:111.300480px;}
._16{width:134.542560px;}
._17{width:151.356000px;}
._18{width:239.742720px;}
._1d{width:241.133760px;}
._5{width:393.960000px;}
._27{width:457.168320px;}
._28{width:458.740800px;}
._2a{width:675.928320px;}
._4{width:833.340000px;}
._3{width:1591.176000px;}
.fc7{color:rgb(255,0,0);}
.fc6{color:transparent;}
.fc3{color:rgb(0,0,255);}
.fc5{color:rgb(128,128,128);}
.fc4{color:rgb(255,255,255);}
.fc2{color:rgb(0,0,0);}
.fc1{color:rgb(192,0,0);}
.fc0{color:rgb(0,32,96);}
.fs5{font-size:30.240000px;}
.fs4{font-size:38.880000px;}
.fs6{font-size:47.520000px;}
.fs2{font-size:54.720000px;}
.fs0{font-size:60.480000px;}
.fs1{font-size:72.000000px;}
.fs3{font-size:96.480000px;}
.yb{bottom:-3.960000px;}
.y0{bottom:0.000000px;}
.yd{bottom:2.880000px;}
.y30{bottom:3.240000px;}
.y94{bottom:5.760000px;}
.y130{bottom:6.120000px;}
.y2f{bottom:20.520000px;}
.y96{bottom:25.560000px;}
.y136{bottom:25.920000px;}
.y12f{bottom:25.965000px;}
.ye{bottom:43.560000px;}
.y139{bottom:45.405000px;}
.y2e{bottom:46.440000px;}
.y2d{bottom:63.750000px;}
.y138{bottom:65.205000px;}
.yc{bottom:68.400000px;}
.y2c{bottom:90.030000px;}
.ya{bottom:94.716000px;}
.y2b{bottom:107.310000px;}
.y2a{bottom:124.590000px;}
.y12c{bottom:133.236000px;}
.yb0{bottom:136.476000px;}
.y29{bottom:141.870000px;}
.y34{bottom:147.276000px;}
.y1c3{bottom:149.796000px;}
.y6b{bottom:150.510000px;}
.y16d{bottom:150.870000px;}
.ydb{bottom:152.670000px;}
.y12b{bottom:153.030000px;}
.yaf{bottom:153.750000px;}
.y28{bottom:159.150000px;}
.y1d7{bottom:161.670000px;}
.y199{bottom:164.550000px;}
.y158{bottom:164.910000px;}
.y81{bottom:166.710000px;}
.y33{bottom:167.070000px;}
.y16c{bottom:168.150000px;}
.y6a{bottom:170.310000px;}
.yae{bottom:171.030000px;}
.yda{bottom:172.470000px;}
.y12a{bottom:172.830000px;}
.y27{bottom:176.430000px;}
.y1d6{bottom:178.950000px;}
.y198{bottom:181.470000px;}
.y1c2{bottom:184.350000px;}
.y157{bottom:184.710000px;}
.y16b{bottom:185.070000px;}
.y80{bottom:186.510000px;}
.y103{bottom:187.590000px;}
.yad{bottom:188.310000px;}
.y69{bottom:190.110000px;}
.yd9{bottom:192.270000px;}
.y129{bottom:192.630000px;}
.y26{bottom:193.755000px;}
.y197{bottom:198.795000px;}
.y1d5{bottom:200.955000px;}
.y1c1{bottom:201.675000px;}
.y16a{bottom:202.395000px;}
.y32{bottom:204.195000px;}
.y156{bottom:204.555000px;}
.y102{bottom:204.915000px;}
.yac{bottom:205.635000px;}
.y7f{bottom:206.355000px;}
.y68{bottom:209.955000px;}
.y25{bottom:211.035000px;}
.yd8{bottom:212.115000px;}
.y128{bottom:212.475000px;}
.y196{bottom:216.075000px;}
.y1d4{bottom:218.235000px;}
.y1c0{bottom:218.595000px;}
.y169{bottom:219.675000px;}
.y101{bottom:222.195000px;}
.yab{bottom:222.915000px;}
.y155{bottom:224.355000px;}
.y7e{bottom:226.155000px;}
.y67{bottom:229.755000px;}
.yd7{bottom:231.915000px;}
.y127{bottom:232.275000px;}
.y195{bottom:233.355000px;}
.y31{bottom:235.155000px;}
.y1d3{bottom:235.515000px;}
.y1bf{bottom:235.875000px;}
.y168{bottom:236.955000px;}
.y24{bottom:237.315000px;}
.yaa{bottom:240.195000px;}
.y100{bottom:243.795000px;}
.y154{bottom:244.155000px;}
.y7d{bottom:245.955000px;}
.y66{bottom:249.555000px;}
.y194{bottom:250.635000px;}
.yd6{bottom:251.715000px;}
.y126{bottom:252.075000px;}
.y1be{bottom:253.155000px;}
.y167{bottom:254.235000px;}
.y23{bottom:254.595000px;}
.y1d2{bottom:257.115000px;}
.ya9{bottom:257.475000px;}
.y17{bottom:259.995000px;}
.y153{bottom:263.955000px;}
.y7c{bottom:265.755000px;}
.y193{bottom:267.915000px;}
.y65{bottom:269.355000px;}
.y1bd{bottom:270.435000px;}
.yd5{bottom:271.515000px;}
.y22{bottom:271.875000px;}
.ya8{bottom:274.395000px;}
.y1d1{bottom:278.715000px;}
.yff{bottom:279.075000px;}
.y152{bottom:284.115000px;}
.y192{bottom:285.195000px;}
.y7b{bottom:285.915000px;}
.y1bc{bottom:287.715000px;}
.y21{bottom:288.795000px;}
.y64{bottom:289.515000px;}
.yd4{bottom:291.315000px;}
.ya7{bottom:291.675000px;}
.y1d0{bottom:295.995000px;}
.y191{bottom:302.475000px;}
.y1bb{bottom:304.995000px;}
.y7a{bottom:305.715000px;}
.y20{bottom:306.075000px;}
.ya6{bottom:308.955000px;}
.y63{bottom:309.315000px;}
.y166{bottom:310.395000px;}
.y125{bottom:311.475000px;}
.yd3{bottom:313.275000px;}
.yfe{bottom:314.355000px;}
.y1cf{bottom:317.955000px;}
.y190{bottom:319.755000px;}
.y1ba{bottom:322.275000px;}
.y1f{bottom:323.385000px;}
.y79{bottom:325.545000px;}
.ya5{bottom:326.265000px;}
.y62{bottom:329.145000px;}
.yfd{bottom:331.665000px;}
.y1ce{bottom:335.265000px;}
.y18f{bottom:337.065000px;}
.y1b9{bottom:339.585000px;}
.y1e{bottom:340.665000px;}
.y151{bottom:343.545000px;}
.y78{bottom:345.345000px;}
.y165{bottom:345.705000px;}
.ya4{bottom:348.225000px;}
.yd2{bottom:348.585000px;}
.y61{bottom:348.945000px;}
.y124{bottom:351.465000px;}
.y1cd{bottom:352.545000px;}
.y18e{bottom:354.345000px;}
.y1b8{bottom:356.865000px;}
.y164{bottom:362.985000px;}
.y150{bottom:363.345000px;}
.y77{bottom:365.145000px;}
.yfc{bottom:366.225000px;}
.y1d{bottom:366.945000px;}
.y60{bottom:368.745000px;}
.yd1{bottom:370.185000px;}
.y123{bottom:371.265000px;}
.y1b7{bottom:374.145000px;}
.ya3{bottom:377.025000px;}
.y163{bottom:380.265000px;}
.y14f{bottom:383.145000px;}
.yfb{bottom:383.505000px;}
.y1c{bottom:384.225000px;}
.y76{bottom:386.745000px;}
.y5f{bottom:388.545000px;}
.y122{bottom:391.065000px;}
.y1cc{bottom:391.425000px;}
.yd0{bottom:396.465000px;}
.ya2{bottom:396.825000px;}
.y162{bottom:397.545000px;}
.yfa{bottom:400.785000px;}
.y1b{bottom:401.505000px;}
.y14e{bottom:402.945000px;}
.y18d{bottom:405.825000px;}
.y5e{bottom:408.345000px;}
.y1b6{bottom:408.705000px;}
.y121{bottom:410.865000px;}
.y1cb{bottom:413.025000px;}
.y161{bottom:414.825000px;}
.y75{bottom:415.545000px;}
.ya1{bottom:416.625000px;}
.yf9{bottom:418.065000px;}
.y1a{bottom:418.785000px;}
.y14d{bottom:422.745000px;}
.y18c{bottom:423.105000px;}
.y5d{bottom:428.145000px;}
.y120{bottom:430.665000px;}
.ycf{bottom:431.385000px;}
.y160{bottom:432.105000px;}
.y1b5{bottom:434.985000px;}
.yf8{bottom:435.345000px;}
.y74{bottom:435.705000px;}
.y19{bottom:436.065000px;}
.ya0{bottom:436.425000px;}
.y18b{bottom:440.385000px;}
.y14c{bottom:442.905000px;}
.y5c{bottom:447.945000px;}
.y15f{bottom:449.430000px;}
.y11f{bottom:450.510000px;}
.y1b4{bottom:452.310000px;}
.yf7{bottom:452.670000px;}
.y73{bottom:455.550000px;}
.y9f{bottom:456.270000px;}
.y18a{bottom:457.710000px;}
.yce{bottom:460.230000px;}
.y18{bottom:462.375000px;}
.y14b{bottom:462.750000px;}
.y15e{bottom:466.710000px;}
.y5b{bottom:467.790000px;}
.yf6{bottom:469.590000px;}
.y11e{bottom:470.310000px;}
.ycd{bottom:474.270000px;}
.y189{bottom:474.990000px;}
.y72{bottom:475.350000px;}
.y9e{bottom:476.070000px;}
.y14a{bottom:482.550000px;}
.y15d{bottom:483.990000px;}
.yf5{bottom:486.870000px;}
.y5a{bottom:487.950000px;}
.y11d{bottom:490.110000px;}
.y1ca{bottom:491.190000px;}
.y188{bottom:492.270000px;}
.y71{bottom:495.150000px;}
.y9d{bottom:495.870000px;}
.y149{bottom:502.350000px;}
.yf4{bottom:504.150000px;}
.y15c{bottom:505.230000px;}
.y59{bottom:507.750000px;}
.y1c9{bottom:508.470000px;}
.ycc{bottom:509.190000px;}
.y187{bottom:509.550000px;}
.y11c{bottom:509.910000px;}
.y70{bottom:514.950000px;}
.y9c{bottom:515.670000px;}
.yf3{bottom:521.430000px;}
.y148{bottom:522.150000px;}
.y186{bottom:526.830000px;}
.y58{bottom:527.550000px;}
.y11b{bottom:530.070000px;}
.y6f{bottom:534.750000px;}
.y9b{bottom:535.470000px;}
.yf2{bottom:538.710000px;}
.y15b{bottom:540.870000px;}
.y147{bottom:541.950000px;}
.ycb{bottom:543.750000px;}
.y185{bottom:544.110000px;}
.y57{bottom:547.350000px;}
.y11a{bottom:549.870000px;}
.y1c8{bottom:552.030000px;}
.y9a{bottom:555.630000px;}
.yf1{bottom:555.990000px;}
.y6e{bottom:556.350000px;}
.y184{bottom:561.390000px;}
.y146{bottom:561.750000px;}
.y56{bottom:567.150000px;}
.y1c7{bottom:569.310000px;}
.y119{bottom:571.470000px;}
.y1b3{bottom:573.270000px;}
.y99{bottom:575.460000px;}
.y15a{bottom:576.180000px;}
.yf0{bottom:577.620000px;}
.yca{bottom:578.340000px;}
.y145{bottom:581.580000px;}
.y6d{bottom:582.660000px;}
.y55{bottom:586.980000px;}
.y98{bottom:589.500000px;}
.y1b2{bottom:590.580000px;}
.y1c6{bottom:590.940000px;}
.y183{bottom:595.620000px;}
.y159{bottom:597.780000px;}
.y144{bottom:601.380000px;}
.y54{bottom:606.780000px;}
.y1b1{bottom:607.860000px;}
.y118{bottom:609.300000px;}
.yc9{bottom:612.900000px;}
.y6c{bottom:617.580000px;}
.y1c5{bottom:619.740000px;}
.y143{bottom:621.180000px;}
.y1b0{bottom:625.140000px;}
.y53{bottom:626.580000px;}
.y117{bottom:629.100000px;}
.y97{bottom:629.460000px;}
.y182{bottom:630.180000px;}
.y1c4{bottom:639.540000px;}
.y142{bottom:641.340000px;}
.y1af{bottom:642.060000px;}
.y52{bottom:646.380000px;}
.y181{bottom:647.460000px;}
.yc8{bottom:647.820000px;}
.y116{bottom:648.900000px;}
.yef{bottom:650.700000px;}
.y1ae{bottom:659.340000px;}
.y141{bottom:661.140000px;}
.y180{bottom:664.740000px;}
.y51{bottom:666.180000px;}
.y115{bottom:668.700000px;}
.y95{bottom:669.060000px;}
.y1ea{bottom:669.780000px;}
.yee{bottom:670.500000px;}
.yc7{bottom:672.660000px;}
.y1ad{bottom:676.620000px;}
.y140{bottom:680.940000px;}
.y17f{bottom:682.020000px;}
.y50{bottom:686.340000px;}
.y114{bottom:688.860000px;}
.yed{bottom:690.660000px;}
.y1e9{bottom:691.740000px;}
.y1ac{bottom:693.900000px;}
.yc6{bottom:698.940000px;}
.y17e{bottom:699.300000px;}
.y13f{bottom:700.770000px;}
.y4f{bottom:706.170000px;}
.y113{bottom:708.690000px;}
.y93{bottom:709.050000px;}
.yec{bottom:710.490000px;}
.y1ab{bottom:711.210000px;}
.y1e8{bottom:713.370000px;}
.y17d{bottom:716.610000px;}
.y13e{bottom:720.570000px;}
.y4e{bottom:725.970000px;}
.yc5{bottom:727.770000px;}
.y112{bottom:728.490000px;}
.yeb{bottom:730.290000px;}
.y17c{bottom:733.890000px;}
.y92{bottom:734.610000px;}
.y1e7{bottom:735.330000px;}
.y13d{bottom:739.290000px;}
.y4d{bottom:745.770000px;}
.yc4{bottom:747.570000px;}
.y111{bottom:748.290000px;}
.yea{bottom:750.090000px;}
.y17b{bottom:751.170000px;}
.y91{bottom:754.770000px;}
.y13c{bottom:755.130000px;}
.y1e6{bottom:756.930000px;}
.y16{bottom:762.690000px;}
.y1aa{bottom:763.050000px;}
.y4c{bottom:765.570000px;}
.yc3{bottom:767.730000px;}
.y110{bottom:768.090000px;}
.ye9{bottom:769.890000px;}
.y13b{bottom:770.970000px;}
.y1e5{bottom:774.210000px;}
.y90{bottom:774.570000px;}
.y15{bottom:776.370000px;}
.y1a9{bottom:780.330000px;}
.y4b{bottom:785.370000px;}
.y13a{bottom:786.810000px;}
.yc2{bottom:787.530000px;}
.y10f{bottom:787.890000px;}
.ye8{bottom:789.690000px;}
.y8f{bottom:794.370000px;}
.y1e4{bottom:795.810000px;}
.y14{bottom:796.170000px;}
.y1a8{bottom:797.610000px;}
.y137{bottom:798.330000px;}
.y17a{bottom:802.650000px;}
.y4a{bottom:805.170000px;}
.yc1{bottom:807.330000px;}
.y10e{bottom:807.690000px;}
.ye7{bottom:809.490000px;}
.y1e3{bottom:813.090000px;}
.y13{bottom:813.450000px;}
.y8e{bottom:814.170000px;}
.y1a7{bottom:814.890000px;}
.y179{bottom:819.930000px;}
.y49{bottom:824.970000px;}
.yc0{bottom:827.175000px;}
.y10d{bottom:827.535000px;}
.ye6{bottom:829.335000px;}
.y1e2{bottom:830.415000px;}
.y1a6{bottom:831.855000px;}
.y12{bottom:832.575000px;}
.y8d{bottom:834.015000px;}
.y178{bottom:837.255000px;}
.y48{bottom:844.815000px;}
.ybf{bottom:846.975000px;}
.ye5{bottom:849.135000px;}
.y10c{bottom:849.495000px;}
.y1e1{bottom:852.375000px;}
.y8c{bottom:853.815000px;}
.y177{bottom:854.535000px;}
.y11{bottom:860.295000px;}
.y47{bottom:864.615000px;}
.y1a5{bottom:866.415000px;}
.ybe{bottom:866.775000px;}
.ye4{bottom:868.935000px;}
.y1e0{bottom:869.655000px;}
.y176{bottom:871.815000px;}
.y8b{bottom:873.615000px;}
.y135{bottom:877.575000px;}
.y1a4{bottom:883.695000px;}
.y46{bottom:884.415000px;}
.ybd{bottom:886.575000px;}
.y10b{bottom:887.295000px;}
.y10{bottom:888.015000px;}
.ye3{bottom:889.095000px;}
.y1df{bottom:891.255000px;}
.y8a{bottom:893.415000px;}
.y1a3{bottom:900.975000px;}
.y45{bottom:904.575000px;}
.ybc{bottom:906.375000px;}
.y10a{bottom:907.095000px;}
.y1de{bottom:908.535000px;}
.ye2{bottom:908.895000px;}
.y89{bottom:913.215000px;}
.yf{bottom:915.375000px;}
.y134{bottom:917.535000px;}
.y1a2{bottom:918.255000px;}
.y175{bottom:923.655000px;}
.y44{bottom:924.375000px;}
.ybb{bottom:926.175000px;}
.y109{bottom:926.895000px;}
.ye1{bottom:928.695000px;}
.y1dd{bottom:930.135000px;}
.y88{bottom:933.015000px;}
.y1a1{bottom:935.535000px;}
.y174{bottom:940.935000px;}
.y9{bottom:941.295000px;}
.y43{bottom:944.175000px;}
.yba{bottom:945.975000px;}
.y108{bottom:946.695000px;}
.y1dc{bottom:947.415000px;}
.ye0{bottom:948.495000px;}
.y1a0{bottom:952.845000px;}
.y87{bottom:953.205000px;}
.y133{bottom:957.525000px;}
.y173{bottom:958.245000px;}
.y8{bottom:958.605000px;}
.y42{bottom:964.005000px;}
.y1db{bottom:964.725000px;}
.yb9{bottom:966.165000px;}
.ydf{bottom:968.325000px;}
.y19f{bottom:970.125000px;}
.y7{bottom:972.645000px;}
.y86{bottom:973.005000px;}
.y172{bottom:975.165000px;}
.y132{bottom:977.325000px;}
.y41{bottom:983.805000px;}
.yb8{bottom:985.965000px;}
.y1da{bottom:986.325000px;}
.y19e{bottom:987.405000px;}
.yde{bottom:988.125000px;}
.y171{bottom:992.445000px;}
.y85{bottom:992.805000px;}
.y107{bottom:994.605000px;}
.y40{bottom:1003.605000px;}
.y19d{bottom:1004.685000px;}
.yb7{bottom:1005.765000px;}
.ydd{bottom:1009.725000px;}
.y84{bottom:1012.605000px;}
.y131{bottom:1017.285000px;}
.y19c{bottom:1021.605000px;}
.y3f{bottom:1023.405000px;}
.yb6{bottom:1025.565000px;}
.y170{bottom:1027.005000px;}
.y6{bottom:1027.365000px;}
.y106{bottom:1029.885000px;}
.y83{bottom:1032.405000px;}
.y19b{bottom:1038.885000px;}
.y1d9{bottom:1042.845000px;}
.y3e{bottom:1043.205000px;}
.y16f{bottom:1044.285000px;}
.ydc{bottom:1045.005000px;}
.yb5{bottom:1047.165000px;}
.y5{bottom:1052.205000px;}
.y82{bottom:1054.005000px;}
.y19a{bottom:1056.165000px;}
.y12e{bottom:1056.885000px;}
.y3d{bottom:1063.005000px;}
.y105{bottom:1064.445000px;}
.y4{bottom:1072.725000px;}
.yb4{bottom:1073.445000px;}
.y16e{bottom:1079.250000px;}
.y104{bottom:1081.770000px;}
.y3c{bottom:1082.850000px;}
.yb3{bottom:1090.770000px;}
.y3{bottom:1094.010000px;}
.y12d{bottom:1096.890000px;}
.y3b{bottom:1103.010000px;}
.y1d8{bottom:1103.370000px;}
.yb2{bottom:1108.050000px;}
.y2{bottom:1114.530000px;}
.y3a{bottom:1122.810000px;}
.yb1{bottom:1125.330000px;}
.y1{bottom:1131.450000px;}
.y39{bottom:1142.610000px;}
.y38{bottom:1166.370000px;}
.y37{bottom:1180.410000px;}
.y36{bottom:1201.290000px;}
.y35{bottom:1227.600000px;}
.h6{height:8.640000px;}
.h8{height:15.516000px;}
.h13{height:16.920000px;}
.h10{height:19.800000px;}
.hb{height:21.867891px;}
.h16{height:34.200000px;}
.h1a{height:34.363828px;}
.h14{height:34.560000px;}
.h15{height:34.596000px;}
.h1b{height:39.166875px;}
.hc{height:39.317344px;}
.h7{height:39.570469px;}
.h12{height:39.600000px;}
.h11{height:39.636000px;}
.h18{height:39.960000px;}
.h17{height:39.996000px;}
.h4{height:43.735781px;}
.he{height:44.031094px;}
.h5{height:45.101250px;}
.hf{height:49.848750px;}
.h2{height:53.717344px;}
.ha{height:59.012578px;}
.h3{height:63.949219px;}
.h19{height:79.236000px;}
.h9{height:85.691953px;}
.hd{height:485.430000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.wb{width:131.472000px;}
.w9{width:147.312000px;}
.we{width:153.075000px;}
.w10{width:174.675000px;}
.wf{width:175.755000px;}
.w8{width:181.155000px;}
.wc{width:196.995000px;}
.w7{width:339.270000px;}
.w4{width:339.990000px;}
.w3{width:340.710000px;}
.w6{width:341.430000px;}
.wd{width:351.510000px;}
.wa{width:351.870000px;}
.w5{width:679.965000px;}
.w1{width:892.500000px;}
.w2{width:892.799987px;}
.w0{width:892.800000px;}
.x0{left:0.000000px;}
.x9{left:8.640000px;}
.x18{left:24.840000px;}
.x16{left:31.356000px;}
.x19{left:82.830000px;}
.x7{left:106.235987px;}
.xc{left:114.155987px;}
.xb{left:127.835987px;}
.x10{left:133.271987px;}
.x1e{left:159.194987px;}
.x11{left:160.274987px;}
.xe{left:180.794987px;}
.x1a{left:191.234987px;}
.x17{left:238.065000px;}
.x2{left:254.264987px;}
.x1b{left:260.025000px;}
.xd{left:266.144987px;}
.x6{left:274.064987px;}
.x13{left:287.745000px;}
.xa{left:304.350000px;}
.x12{left:333.509987px;}
.x15{left:336.749987px;}
.x5{left:355.829987px;}
.x4{left:379.949987px;}
.x3{left:398.339987px;}
.x14{left:435.060000px;}
.x1c{left:436.140000px;}
.x8{left:446.579987px;}
.xf{left:447.660000px;}
.x1d{left:612.255000px;}
.x1{left:786.929987px;}
@media print{
.v2{vertical-align:-12.800000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.760000pt;}
.ls14{letter-spacing:-1.280000pt;}
.ls6{letter-spacing:-0.864000pt;}
.ls15{letter-spacing:-0.832000pt;}
.ls4{letter-spacing:-0.640000pt;}
.ls5{letter-spacing:-0.442667pt;}
.ls9{letter-spacing:-0.432533pt;}
.ls3{letter-spacing:0.000000pt;}
.ls18{letter-spacing:0.017920pt;}
.ls11{letter-spacing:0.376320pt;}
.ls7{letter-spacing:0.384000pt;}
.lsb{letter-spacing:0.414933pt;}
.ls0{letter-spacing:0.442880pt;}
.ls10{letter-spacing:0.450667pt;}
.ls1{letter-spacing:0.640000pt;}
.lsd{letter-spacing:23.465387pt;}
.lsc{letter-spacing:37.545387pt;}
.ls16{letter-spacing:49.182720pt;}
.lsa{letter-spacing:52.905387pt;}
.ls13{letter-spacing:56.745387pt;}
.ls8{letter-spacing:61.865387pt;}
.ls2{letter-spacing:65.536000pt;}
.ls12{letter-spacing:66.985387pt;}
.lsf{letter-spacing:72.222720pt;}
.lse{letter-spacing:73.502720pt;}
.ls17{letter-spacing:90.142720pt;}
.ws3{word-spacing:-16.000000pt;}
.ws7{word-spacing:-13.890667pt;}
.ws6{word-spacing:-13.854933pt;}
.wsa{word-spacing:-13.457920pt;}
.ws2{word-spacing:-13.440000pt;}
.ws5{word-spacing:-13.007467pt;}
.ws9{word-spacing:-12.576000pt;}
.ws0{word-spacing:-11.717333pt;}
.ws8{word-spacing:-10.560000pt;}
.ws1{word-spacing:-8.640000pt;}
.ws4{word-spacing:0.000000pt;}
._24{margin-left:-5.177173pt;}
._8{margin-left:-3.655680pt;}
._6{margin-left:-2.534400pt;}
._1{margin-left:-1.344000pt;}
._0{width:0.960000pt;}
._2{width:1.934933pt;}
._d{width:2.889813pt;}
._7{width:3.924480pt;}
._e{width:5.168640pt;}
._c{width:6.248960pt;}
._b{width:7.396693pt;}
._9{width:8.977920pt;}
._a{width:10.007040pt;}
._11{width:11.558400pt;}
._12{width:12.472320pt;}
._14{width:14.730240pt;}
._15{width:16.362667pt;}
._10{width:17.310720pt;}
._f{width:18.547200pt;}
._13{width:19.906560pt;}
._1a{width:21.127680pt;}
._29{width:22.310400pt;}
._25{width:24.138240pt;}
._22{width:25.751040pt;}
._26{width:27.591680pt;}
._1f{width:35.535360pt;}
._1e{width:37.685760pt;}
._21{width:42.900480pt;}
._20{width:44.083200pt;}
._23{width:67.522560pt;}
._1b{width:83.758080pt;}
._19{width:93.166080pt;}
._1c{width:98.933760pt;}
._16{width:119.593387pt;}
._17{width:134.538667pt;}
._18{width:213.104640pt;}
._1d{width:214.341120pt;}
._5{width:350.186667pt;}
._27{width:406.371840pt;}
._28{width:407.769600pt;}
._2a{width:600.825173pt;}
._4{width:740.746667pt;}
._3{width:1414.378667pt;}
.fs5{font-size:26.880000pt;}
.fs4{font-size:34.560000pt;}
.fs6{font-size:42.240000pt;}
.fs2{font-size:48.640000pt;}
.fs0{font-size:53.760000pt;}
.fs1{font-size:64.000000pt;}
.fs3{font-size:85.760000pt;}
.yb{bottom:-3.520000pt;}
.y0{bottom:0.000000pt;}
.yd{bottom:2.560000pt;}
.y30{bottom:2.880000pt;}
.y94{bottom:5.120000pt;}
.y130{bottom:5.440000pt;}
.y2f{bottom:18.240000pt;}
.y96{bottom:22.720000pt;}
.y136{bottom:23.040000pt;}
.y12f{bottom:23.080000pt;}
.ye{bottom:38.720000pt;}
.y139{bottom:40.360000pt;}
.y2e{bottom:41.280000pt;}
.y2d{bottom:56.666667pt;}
.y138{bottom:57.960000pt;}
.yc{bottom:60.800000pt;}
.y2c{bottom:80.026667pt;}
.ya{bottom:84.192000pt;}
.y2b{bottom:95.386667pt;}
.y2a{bottom:110.746667pt;}
.y12c{bottom:118.432000pt;}
.yb0{bottom:121.312000pt;}
.y29{bottom:126.106667pt;}
.y34{bottom:130.912000pt;}
.y1c3{bottom:133.152000pt;}
.y6b{bottom:133.786667pt;}
.y16d{bottom:134.106667pt;}
.ydb{bottom:135.706667pt;}
.y12b{bottom:136.026667pt;}
.yaf{bottom:136.666667pt;}
.y28{bottom:141.466667pt;}
.y1d7{bottom:143.706667pt;}
.y199{bottom:146.266667pt;}
.y158{bottom:146.586667pt;}
.y81{bottom:148.186667pt;}
.y33{bottom:148.506667pt;}
.y16c{bottom:149.466667pt;}
.y6a{bottom:151.386667pt;}
.yae{bottom:152.026667pt;}
.yda{bottom:153.306667pt;}
.y12a{bottom:153.626667pt;}
.y27{bottom:156.826667pt;}
.y1d6{bottom:159.066667pt;}
.y198{bottom:161.306667pt;}
.y1c2{bottom:163.866667pt;}
.y157{bottom:164.186667pt;}
.y16b{bottom:164.506667pt;}
.y80{bottom:165.786667pt;}
.y103{bottom:166.746667pt;}
.yad{bottom:167.386667pt;}
.y69{bottom:168.986667pt;}
.yd9{bottom:170.906667pt;}
.y129{bottom:171.226667pt;}
.y26{bottom:172.226667pt;}
.y197{bottom:176.706667pt;}
.y1d5{bottom:178.626667pt;}
.y1c1{bottom:179.266667pt;}
.y16a{bottom:179.906667pt;}
.y32{bottom:181.506667pt;}
.y156{bottom:181.826667pt;}
.y102{bottom:182.146667pt;}
.yac{bottom:182.786667pt;}
.y7f{bottom:183.426667pt;}
.y68{bottom:186.626667pt;}
.y25{bottom:187.586667pt;}
.yd8{bottom:188.546667pt;}
.y128{bottom:188.866667pt;}
.y196{bottom:192.066667pt;}
.y1d4{bottom:193.986667pt;}
.y1c0{bottom:194.306667pt;}
.y169{bottom:195.266667pt;}
.y101{bottom:197.506667pt;}
.yab{bottom:198.146667pt;}
.y155{bottom:199.426667pt;}
.y7e{bottom:201.026667pt;}
.y67{bottom:204.226667pt;}
.yd7{bottom:206.146667pt;}
.y127{bottom:206.466667pt;}
.y195{bottom:207.426667pt;}
.y31{bottom:209.026667pt;}
.y1d3{bottom:209.346667pt;}
.y1bf{bottom:209.666667pt;}
.y168{bottom:210.626667pt;}
.y24{bottom:210.946667pt;}
.yaa{bottom:213.506667pt;}
.y100{bottom:216.706667pt;}
.y154{bottom:217.026667pt;}
.y7d{bottom:218.626667pt;}
.y66{bottom:221.826667pt;}
.y194{bottom:222.786667pt;}
.yd6{bottom:223.746667pt;}
.y126{bottom:224.066667pt;}
.y1be{bottom:225.026667pt;}
.y167{bottom:225.986667pt;}
.y23{bottom:226.306667pt;}
.y1d2{bottom:228.546667pt;}
.ya9{bottom:228.866667pt;}
.y17{bottom:231.106667pt;}
.y153{bottom:234.626667pt;}
.y7c{bottom:236.226667pt;}
.y193{bottom:238.146667pt;}
.y65{bottom:239.426667pt;}
.y1bd{bottom:240.386667pt;}
.yd5{bottom:241.346667pt;}
.y22{bottom:241.666667pt;}
.ya8{bottom:243.906667pt;}
.y1d1{bottom:247.746667pt;}
.yff{bottom:248.066667pt;}
.y152{bottom:252.546667pt;}
.y192{bottom:253.506667pt;}
.y7b{bottom:254.146667pt;}
.y1bc{bottom:255.746667pt;}
.y21{bottom:256.706667pt;}
.y64{bottom:257.346667pt;}
.yd4{bottom:258.946667pt;}
.ya7{bottom:259.266667pt;}
.y1d0{bottom:263.106667pt;}
.y191{bottom:268.866667pt;}
.y1bb{bottom:271.106667pt;}
.y7a{bottom:271.746667pt;}
.y20{bottom:272.066667pt;}
.ya6{bottom:274.626667pt;}
.y63{bottom:274.946667pt;}
.y166{bottom:275.906667pt;}
.y125{bottom:276.866667pt;}
.yd3{bottom:278.466667pt;}
.yfe{bottom:279.426667pt;}
.y1cf{bottom:282.626667pt;}
.y190{bottom:284.226667pt;}
.y1ba{bottom:286.466667pt;}
.y1f{bottom:287.453333pt;}
.y79{bottom:289.373333pt;}
.ya5{bottom:290.013333pt;}
.y62{bottom:292.573333pt;}
.yfd{bottom:294.813333pt;}
.y1ce{bottom:298.013333pt;}
.y18f{bottom:299.613333pt;}
.y1b9{bottom:301.853333pt;}
.y1e{bottom:302.813333pt;}
.y151{bottom:305.373333pt;}
.y78{bottom:306.973333pt;}
.y165{bottom:307.293333pt;}
.ya4{bottom:309.533333pt;}
.yd2{bottom:309.853333pt;}
.y61{bottom:310.173333pt;}
.y124{bottom:312.413333pt;}
.y1cd{bottom:313.373333pt;}
.y18e{bottom:314.973333pt;}
.y1b8{bottom:317.213333pt;}
.y164{bottom:322.653333pt;}
.y150{bottom:322.973333pt;}
.y77{bottom:324.573333pt;}
.yfc{bottom:325.533333pt;}
.y1d{bottom:326.173333pt;}
.y60{bottom:327.773333pt;}
.yd1{bottom:329.053333pt;}
.y123{bottom:330.013333pt;}
.y1b7{bottom:332.573333pt;}
.ya3{bottom:335.133333pt;}
.y163{bottom:338.013333pt;}
.y14f{bottom:340.573333pt;}
.yfb{bottom:340.893333pt;}
.y1c{bottom:341.533333pt;}
.y76{bottom:343.773333pt;}
.y5f{bottom:345.373333pt;}
.y122{bottom:347.613333pt;}
.y1cc{bottom:347.933333pt;}
.yd0{bottom:352.413333pt;}
.ya2{bottom:352.733333pt;}
.y162{bottom:353.373333pt;}
.yfa{bottom:356.253333pt;}
.y1b{bottom:356.893333pt;}
.y14e{bottom:358.173333pt;}
.y18d{bottom:360.733333pt;}
.y5e{bottom:362.973333pt;}
.y1b6{bottom:363.293333pt;}
.y121{bottom:365.213333pt;}
.y1cb{bottom:367.133333pt;}
.y161{bottom:368.733333pt;}
.y75{bottom:369.373333pt;}
.ya1{bottom:370.333333pt;}
.yf9{bottom:371.613333pt;}
.y1a{bottom:372.253333pt;}
.y14d{bottom:375.773333pt;}
.y18c{bottom:376.093333pt;}
.y5d{bottom:380.573333pt;}
.y120{bottom:382.813333pt;}
.ycf{bottom:383.453333pt;}
.y160{bottom:384.093333pt;}
.y1b5{bottom:386.653333pt;}
.yf8{bottom:386.973333pt;}
.y74{bottom:387.293333pt;}
.y19{bottom:387.613333pt;}
.ya0{bottom:387.933333pt;}
.y18b{bottom:391.453333pt;}
.y14c{bottom:393.693333pt;}
.y5c{bottom:398.173333pt;}
.y15f{bottom:399.493333pt;}
.y11f{bottom:400.453333pt;}
.y1b4{bottom:402.053333pt;}
.yf7{bottom:402.373333pt;}
.y73{bottom:404.933333pt;}
.y9f{bottom:405.573333pt;}
.y18a{bottom:406.853333pt;}
.yce{bottom:409.093333pt;}
.y18{bottom:411.000000pt;}
.y14b{bottom:411.333333pt;}
.y15e{bottom:414.853333pt;}
.y5b{bottom:415.813333pt;}
.yf6{bottom:417.413333pt;}
.y11e{bottom:418.053333pt;}
.ycd{bottom:421.573333pt;}
.y189{bottom:422.213333pt;}
.y72{bottom:422.533333pt;}
.y9e{bottom:423.173333pt;}
.y14a{bottom:428.933333pt;}
.y15d{bottom:430.213333pt;}
.yf5{bottom:432.773333pt;}
.y5a{bottom:433.733333pt;}
.y11d{bottom:435.653333pt;}
.y1ca{bottom:436.613333pt;}
.y188{bottom:437.573333pt;}
.y71{bottom:440.133333pt;}
.y9d{bottom:440.773333pt;}
.y149{bottom:446.533333pt;}
.yf4{bottom:448.133333pt;}
.y15c{bottom:449.093333pt;}
.y59{bottom:451.333333pt;}
.y1c9{bottom:451.973333pt;}
.ycc{bottom:452.613333pt;}
.y187{bottom:452.933333pt;}
.y11c{bottom:453.253333pt;}
.y70{bottom:457.733333pt;}
.y9c{bottom:458.373333pt;}
.yf3{bottom:463.493333pt;}
.y148{bottom:464.133333pt;}
.y186{bottom:468.293333pt;}
.y58{bottom:468.933333pt;}
.y11b{bottom:471.173333pt;}
.y6f{bottom:475.333333pt;}
.y9b{bottom:475.973333pt;}
.yf2{bottom:478.853333pt;}
.y15b{bottom:480.773333pt;}
.y147{bottom:481.733333pt;}
.ycb{bottom:483.333333pt;}
.y185{bottom:483.653333pt;}
.y57{bottom:486.533333pt;}
.y11a{bottom:488.773333pt;}
.y1c8{bottom:490.693333pt;}
.y9a{bottom:493.893333pt;}
.yf1{bottom:494.213333pt;}
.y6e{bottom:494.533333pt;}
.y184{bottom:499.013333pt;}
.y146{bottom:499.333333pt;}
.y56{bottom:504.133333pt;}
.y1c7{bottom:506.053333pt;}
.y119{bottom:507.973333pt;}
.y1b3{bottom:509.573333pt;}
.y99{bottom:511.520000pt;}
.y15a{bottom:512.160000pt;}
.yf0{bottom:513.440000pt;}
.yca{bottom:514.080000pt;}
.y145{bottom:516.960000pt;}
.y6d{bottom:517.920000pt;}
.y55{bottom:521.760000pt;}
.y98{bottom:524.000000pt;}
.y1b2{bottom:524.960000pt;}
.y1c6{bottom:525.280000pt;}
.y183{bottom:529.440000pt;}
.y159{bottom:531.360000pt;}
.y144{bottom:534.560000pt;}
.y54{bottom:539.360000pt;}
.y1b1{bottom:540.320000pt;}
.y118{bottom:541.600000pt;}
.yc9{bottom:544.800000pt;}
.y6c{bottom:548.960000pt;}
.y1c5{bottom:550.880000pt;}
.y143{bottom:552.160000pt;}
.y1b0{bottom:555.680000pt;}
.y53{bottom:556.960000pt;}
.y117{bottom:559.200000pt;}
.y97{bottom:559.520000pt;}
.y182{bottom:560.160000pt;}
.y1c4{bottom:568.480000pt;}
.y142{bottom:570.080000pt;}
.y1af{bottom:570.720000pt;}
.y52{bottom:574.560000pt;}
.y181{bottom:575.520000pt;}
.yc8{bottom:575.840000pt;}
.y116{bottom:576.800000pt;}
.yef{bottom:578.400000pt;}
.y1ae{bottom:586.080000pt;}
.y141{bottom:587.680000pt;}
.y180{bottom:590.880000pt;}
.y51{bottom:592.160000pt;}
.y115{bottom:594.400000pt;}
.y95{bottom:594.720000pt;}
.y1ea{bottom:595.360000pt;}
.yee{bottom:596.000000pt;}
.yc7{bottom:597.920000pt;}
.y1ad{bottom:601.440000pt;}
.y140{bottom:605.280000pt;}
.y17f{bottom:606.240000pt;}
.y50{bottom:610.080000pt;}
.y114{bottom:612.320000pt;}
.yed{bottom:613.920000pt;}
.y1e9{bottom:614.880000pt;}
.y1ac{bottom:616.800000pt;}
.yc6{bottom:621.280000pt;}
.y17e{bottom:621.600000pt;}
.y13f{bottom:622.906667pt;}
.y4f{bottom:627.706667pt;}
.y113{bottom:629.946667pt;}
.y93{bottom:630.266667pt;}
.yec{bottom:631.546667pt;}
.y1ab{bottom:632.186667pt;}
.y1e8{bottom:634.106667pt;}
.y17d{bottom:636.986667pt;}
.y13e{bottom:640.506667pt;}
.y4e{bottom:645.306667pt;}
.yc5{bottom:646.906667pt;}
.y112{bottom:647.546667pt;}
.yeb{bottom:649.146667pt;}
.y17c{bottom:652.346667pt;}
.y92{bottom:652.986667pt;}
.y1e7{bottom:653.626667pt;}
.y13d{bottom:657.146667pt;}
.y4d{bottom:662.906667pt;}
.yc4{bottom:664.506667pt;}
.y111{bottom:665.146667pt;}
.yea{bottom:666.746667pt;}
.y17b{bottom:667.706667pt;}
.y91{bottom:670.906667pt;}
.y13c{bottom:671.226667pt;}
.y1e6{bottom:672.826667pt;}
.y16{bottom:677.946667pt;}
.y1aa{bottom:678.266667pt;}
.y4c{bottom:680.506667pt;}
.yc3{bottom:682.426667pt;}
.y110{bottom:682.746667pt;}
.ye9{bottom:684.346667pt;}
.y13b{bottom:685.306667pt;}
.y1e5{bottom:688.186667pt;}
.y90{bottom:688.506667pt;}
.y15{bottom:690.106667pt;}
.y1a9{bottom:693.626667pt;}
.y4b{bottom:698.106667pt;}
.y13a{bottom:699.386667pt;}
.yc2{bottom:700.026667pt;}
.y10f{bottom:700.346667pt;}
.ye8{bottom:701.946667pt;}
.y8f{bottom:706.106667pt;}
.y1e4{bottom:707.386667pt;}
.y14{bottom:707.706667pt;}
.y1a8{bottom:708.986667pt;}
.y137{bottom:709.626667pt;}
.y17a{bottom:713.466667pt;}
.y4a{bottom:715.706667pt;}
.yc1{bottom:717.626667pt;}
.y10e{bottom:717.946667pt;}
.ye7{bottom:719.546667pt;}
.y1e3{bottom:722.746667pt;}
.y13{bottom:723.066667pt;}
.y8e{bottom:723.706667pt;}
.y1a7{bottom:724.346667pt;}
.y179{bottom:728.826667pt;}
.y49{bottom:733.306667pt;}
.yc0{bottom:735.266667pt;}
.y10d{bottom:735.586667pt;}
.ye6{bottom:737.186667pt;}
.y1e2{bottom:738.146667pt;}
.y1a6{bottom:739.426667pt;}
.y12{bottom:740.066667pt;}
.y8d{bottom:741.346667pt;}
.y178{bottom:744.226667pt;}
.y48{bottom:750.946667pt;}
.ybf{bottom:752.866667pt;}
.ye5{bottom:754.786667pt;}
.y10c{bottom:755.106667pt;}
.y1e1{bottom:757.666667pt;}
.y8c{bottom:758.946667pt;}
.y177{bottom:759.586667pt;}
.y11{bottom:764.706667pt;}
.y47{bottom:768.546667pt;}
.y1a5{bottom:770.146667pt;}
.ybe{bottom:770.466667pt;}
.ye4{bottom:772.386667pt;}
.y1e0{bottom:773.026667pt;}
.y176{bottom:774.946667pt;}
.y8b{bottom:776.546667pt;}
.y135{bottom:780.066667pt;}
.y1a4{bottom:785.506667pt;}
.y46{bottom:786.146667pt;}
.ybd{bottom:788.066667pt;}
.y10b{bottom:788.706667pt;}
.y10{bottom:789.346667pt;}
.ye3{bottom:790.306667pt;}
.y1df{bottom:792.226667pt;}
.y8a{bottom:794.146667pt;}
.y1a3{bottom:800.866667pt;}
.y45{bottom:804.066667pt;}
.ybc{bottom:805.666667pt;}
.y10a{bottom:806.306667pt;}
.y1de{bottom:807.586667pt;}
.ye2{bottom:807.906667pt;}
.y89{bottom:811.746667pt;}
.yf{bottom:813.666667pt;}
.y134{bottom:815.586667pt;}
.y1a2{bottom:816.226667pt;}
.y175{bottom:821.026667pt;}
.y44{bottom:821.666667pt;}
.ybb{bottom:823.266667pt;}
.y109{bottom:823.906667pt;}
.ye1{bottom:825.506667pt;}
.y1dd{bottom:826.786667pt;}
.y88{bottom:829.346667pt;}
.y1a1{bottom:831.586667pt;}
.y174{bottom:836.386667pt;}
.y9{bottom:836.706667pt;}
.y43{bottom:839.266667pt;}
.yba{bottom:840.866667pt;}
.y108{bottom:841.506667pt;}
.y1dc{bottom:842.146667pt;}
.ye0{bottom:843.106667pt;}
.y1a0{bottom:846.973333pt;}
.y87{bottom:847.293333pt;}
.y133{bottom:851.133333pt;}
.y173{bottom:851.773333pt;}
.y8{bottom:852.093333pt;}
.y42{bottom:856.893333pt;}
.y1db{bottom:857.533333pt;}
.yb9{bottom:858.813333pt;}
.ydf{bottom:860.733333pt;}
.y19f{bottom:862.333333pt;}
.y7{bottom:864.573333pt;}
.y86{bottom:864.893333pt;}
.y172{bottom:866.813333pt;}
.y132{bottom:868.733333pt;}
.y41{bottom:874.493333pt;}
.yb8{bottom:876.413333pt;}
.y1da{bottom:876.733333pt;}
.y19e{bottom:877.693333pt;}
.yde{bottom:878.333333pt;}
.y171{bottom:882.173333pt;}
.y85{bottom:882.493333pt;}
.y107{bottom:884.093333pt;}
.y40{bottom:892.093333pt;}
.y19d{bottom:893.053333pt;}
.yb7{bottom:894.013333pt;}
.ydd{bottom:897.533333pt;}
.y84{bottom:900.093333pt;}
.y131{bottom:904.253333pt;}
.y19c{bottom:908.093333pt;}
.y3f{bottom:909.693333pt;}
.yb6{bottom:911.613333pt;}
.y170{bottom:912.893333pt;}
.y6{bottom:913.213333pt;}
.y106{bottom:915.453333pt;}
.y83{bottom:917.693333pt;}
.y19b{bottom:923.453333pt;}
.y1d9{bottom:926.973333pt;}
.y3e{bottom:927.293333pt;}
.y16f{bottom:928.253333pt;}
.ydc{bottom:928.893333pt;}
.yb5{bottom:930.813333pt;}
.y5{bottom:935.293333pt;}
.y82{bottom:936.893333pt;}
.y19a{bottom:938.813333pt;}
.y12e{bottom:939.453333pt;}
.y3d{bottom:944.893333pt;}
.y105{bottom:946.173333pt;}
.y4{bottom:953.533333pt;}
.yb4{bottom:954.173333pt;}
.y16e{bottom:959.333333pt;}
.y104{bottom:961.573333pt;}
.y3c{bottom:962.533333pt;}
.yb3{bottom:969.573333pt;}
.y3{bottom:972.453333pt;}
.y12d{bottom:975.013333pt;}
.y3b{bottom:980.453333pt;}
.y1d8{bottom:980.773333pt;}
.yb2{bottom:984.933333pt;}
.y2{bottom:990.693333pt;}
.y3a{bottom:998.053333pt;}
.yb1{bottom:1000.293333pt;}
.y1{bottom:1005.733333pt;}
.y39{bottom:1015.653333pt;}
.y38{bottom:1036.773333pt;}
.y37{bottom:1049.253333pt;}
.y36{bottom:1067.813333pt;}
.y35{bottom:1091.200000pt;}
.h6{height:7.680000pt;}
.h8{height:13.792000pt;}
.h13{height:15.040000pt;}
.h10{height:17.600000pt;}
.hb{height:19.438125pt;}
.h16{height:30.400000pt;}
.h1a{height:30.545625pt;}
.h14{height:30.720000pt;}
.h15{height:30.752000pt;}
.h1b{height:34.815000pt;}
.hc{height:34.948750pt;}
.h7{height:35.173750pt;}
.h12{height:35.200000pt;}
.h11{height:35.232000pt;}
.h18{height:35.520000pt;}
.h17{height:35.552000pt;}
.h4{height:38.876250pt;}
.he{height:39.138750pt;}
.h5{height:40.090000pt;}
.hf{height:44.310000pt;}
.h2{height:47.748750pt;}
.ha{height:52.455625pt;}
.h3{height:56.843750pt;}
.h19{height:70.432000pt;}
.h9{height:76.170625pt;}
.hd{height:431.493333pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.wb{width:116.864000pt;}
.w9{width:130.944000pt;}
.we{width:136.066667pt;}
.w10{width:155.266667pt;}
.wf{width:156.226667pt;}
.w8{width:161.026667pt;}
.wc{width:175.106667pt;}
.w7{width:301.573333pt;}
.w4{width:302.213333pt;}
.w3{width:302.853333pt;}
.w6{width:303.493333pt;}
.wd{width:312.453333pt;}
.wa{width:312.773333pt;}
.w5{width:604.413333pt;}
.w1{width:793.333333pt;}
.w2{width:793.599988pt;}
.w0{width:793.600000pt;}
.x0{left:0.000000pt;}
.x9{left:7.680000pt;}
.x18{left:22.080000pt;}
.x16{left:27.872000pt;}
.x19{left:73.626667pt;}
.x7{left:94.431988pt;}
.xc{left:101.471988pt;}
.xb{left:113.631988pt;}
.x10{left:118.463988pt;}
.x1e{left:141.506655pt;}
.x11{left:142.466655pt;}
.xe{left:160.706655pt;}
.x1a{left:169.986655pt;}
.x17{left:211.613333pt;}
.x2{left:226.013322pt;}
.x1b{left:231.133333pt;}
.xd{left:236.573322pt;}
.x6{left:243.613322pt;}
.x13{left:255.773333pt;}
.xa{left:270.533333pt;}
.x12{left:296.453322pt;}
.x15{left:299.333322pt;}
.x5{left:316.293322pt;}
.x4{left:337.733322pt;}
.x3{left:354.079988pt;}
.x14{left:386.720000pt;}
.x1c{left:387.680000pt;}
.x8{left:396.959988pt;}
.xf{left:397.920000pt;}
.x1d{left:544.226667pt;}
.x1{left:699.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; }
  