
    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_7230c3d25c0bfd1290acb546.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_1b4a7adf01beeae171dee825.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_e4c0b0a43fcb9e10d204ebe3.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.120605;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_0a7db720344c46a9a5824e9c.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.120605;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_a12d44246187e7ab4dd2673c.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_85ee081ea6ad7a339911c636.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_01ce8cbd34e42b9a86a59126.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_cf5b54b838ee9f69dcdff9c4.woff2')format("woff");}.ff8{font-family:ff8;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;}
.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;}
.ls5{letter-spacing:-0.612000px;}
.ls4{letter-spacing:0.000000px;}
.lsa{letter-spacing:0.053280px;}
.ls3{letter-spacing:0.180000px;}
.lsf{letter-spacing:0.186600px;}
.ls1{letter-spacing:0.216000px;}
.ls2{letter-spacing:0.288000px;}
.ls6{letter-spacing:0.298800px;}
.ls9{letter-spacing:0.360000px;}
.lse{letter-spacing:0.386640px;}
.lsc{letter-spacing:0.460080px;}
.lsb{letter-spacing:0.540000px;}
.ls10{letter-spacing:0.666720px;}
.lsd{letter-spacing:0.900000px;}
.ls8{letter-spacing:22.986720px;}
.ls7{letter-spacing:40.986720px;}
.ls0{letter-spacing:198.900000px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws6{word-spacing:-59.760000px;}
.ws2{word-spacing:-27.000000px;}
.ws1{word-spacing:-16.488000px;}
.ws7{word-spacing:-15.300000px;}
.ws5{word-spacing:-15.238800px;}
.ws9{word-spacing:-15.126600px;}
.ws8{word-spacing:-14.993280px;}
.ws3{word-spacing:-14.940000px;}
.ws0{word-spacing:-13.500000px;}
.ws4{word-spacing:0.000000px;}
._2{margin-left:-183.600000px;}
._6{margin-left:-11.772000px;}
._7{margin-left:-9.912000px;}
._0{margin-left:-8.100000px;}
._1e{margin-left:-6.513840px;}
._5{margin-left:-4.860000px;}
._4{margin-left:-3.672000px;}
._3{margin-left:-2.076000px;}
._9{margin-left:-1.044000px;}
._8{width:1.182000px;}
._a{width:2.808720px;}
._d{width:3.851040px;}
._b{width:5.331840px;}
._c{width:6.364080px;}
._15{width:7.649280px;}
._18{width:8.844480px;}
._19{width:9.865440px;}
._12{width:11.083680px;}
._13{width:12.398880px;}
._e{width:13.654560px;}
._1d{width:16.075440px;}
._1f{width:17.097360px;}
._1{width:18.120000px;}
._1c{width:19.182960px;}
._14{width:20.544240px;}
._11{width:21.885360px;}
._1a{width:22.947840px;}
._17{width:24.717840px;}
._16{width:27.131040px;}
._1b{width:28.923840px;}
._f{width:32.701920px;}
._10{width:34.801920px;}
.fc1{color:transparent;}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:54.000000px;}
.fs4{font-size:59.760000px;}
.fs1{font-size:72.000000px;}
.fs3{font-size:90.000000px;}
.fs2{font-size:108.000000px;}
.y7{bottom:-1.980000px;}
.y0{bottom:0.000000px;}
.y73{bottom:3.240000px;}
.y119{bottom:3.270000px;}
.y116{bottom:3.276000px;}
.y164{bottom:3.285000px;}
.y5{bottom:4.680000px;}
.yb8{bottom:17.280000px;}
.ybe{bottom:17.310000px;}
.y87{bottom:20.340000px;}
.y72{bottom:20.520000px;}
.y4{bottom:26.640000px;}
.yee{bottom:37.800000px;}
.y191{bottom:47.520000px;}
.y82{bottom:48.780000px;}
.y155{bottom:50.040000px;}
.y117{bottom:50.580000px;}
.y43{bottom:52.920000px;}
.ydd{bottom:56.520000px;}
.yb4{bottom:57.240000px;}
.y190{bottom:64.800000px;}
.y81{bottom:66.060000px;}
.y154{bottom:67.320000px;}
.y115{bottom:68.580000px;}
.y42{bottom:70.236000px;}
.y1a3{bottom:71.316000px;}
.ydc{bottom:73.836000px;}
.yb3{bottom:74.556000px;}
.y18f{bottom:82.116000px;}
.y80{bottom:83.376000px;}
.y153{bottom:84.636000px;}
.y114{bottom:86.616000px;}
.y41{bottom:87.516000px;}
.y1a2{bottom:88.596000px;}
.ydb{bottom:91.116000px;}
.yb2{bottom:91.836000px;}
.y18e{bottom:99.396000px;}
.y7f{bottom:100.476000px;}
.y152{bottom:101.916000px;}
.y40{bottom:104.796000px;}
.y1a1{bottom:105.876000px;}
.yda{bottom:108.396000px;}
.yb1{bottom:108.936000px;}
.y18d{bottom:116.676000px;}
.y7e{bottom:117.756000px;}
.y151{bottom:119.016000px;}
.y3f{bottom:122.076000px;}
.y1a0{bottom:122.976000px;}
.y113{bottom:124.956000px;}
.yd9{bottom:125.676000px;}
.yb0{bottom:126.216000px;}
.y18c{bottom:133.776000px;}
.y7d{bottom:135.036000px;}
.y150{bottom:136.296000px;}
.y3e{bottom:139.176000px;}
.y19f{bottom:140.256000px;}
.y112{bottom:142.236000px;}
.yd8{bottom:142.776000px;}
.yaf{bottom:143.496000px;}
.y18b{bottom:151.050000px;}
.y7c{bottom:152.310000px;}
.y14f{bottom:153.570000px;}
.y3d{bottom:156.450000px;}
.y19e{bottom:157.530000px;}
.y111{bottom:159.510000px;}
.yae{bottom:160.770000px;}
.yd7{bottom:161.130000px;}
.y14e{bottom:168.330000px;}
.y7b{bottom:169.590000px;}
.y3c{bottom:173.730000px;}
.y19d{bottom:174.810000px;}
.yad{bottom:175.530000px;}
.y110{bottom:176.790000px;}
.yd6{bottom:179.490000px;}
.y18a{bottom:185.610000px;}
.y14d{bottom:186.330000px;}
.y7a{bottom:186.870000px;}
.y3b{bottom:191.010000px;}
.y19c{bottom:192.090000px;}
.y10f{bottom:194.070000px;}
.yd5{bottom:197.850000px;}
.y189{bottom:202.890000px;}
.y79{bottom:203.970000px;}
.y14c{bottom:204.330000px;}
.y3a{bottom:208.290000px;}
.y19b{bottom:209.370000px;}
.yac{bottom:210.810000px;}
.y10e{bottom:212.430000px;}
.yd4{bottom:215.130000px;}
.y188{bottom:217.650000px;}
.y78{bottom:218.730000px;}
.y14b{bottom:222.330000px;}
.y39{bottom:225.570000px;}
.y19a{bottom:226.470000px;}
.y10d{bottom:230.610000px;}
.yd3{bottom:232.230000px;}
.y187{bottom:235.650000px;}
.y14a{bottom:240.330000px;}
.y38{bottom:242.670000px;}
.y199{bottom:243.750000px;}
.yab{bottom:245.910000px;}
.y10c{bottom:247.890000px;}
.yd2{bottom:249.510000px;}
.y186{bottom:253.650000px;}
.y77{bottom:254.010000px;}
.y37{bottom:259.950000px;}
.y198{bottom:261.030000px;}
.y149{bottom:261.570000px;}
.y10b{bottom:265.170000px;}
.yd1{bottom:266.790000px;}
.y185{bottom:271.650000px;}
.y76{bottom:272.010000px;}
.y36{bottom:277.230000px;}
.y197{bottom:278.310000px;}
.y148{bottom:278.850000px;}
.yaa{bottom:281.190000px;}
.y10a{bottom:283.530000px;}
.yd0{bottom:284.070000px;}
.y75{bottom:290.010000px;}
.y184{bottom:292.890000px;}
.y35{bottom:294.510000px;}
.y196{bottom:295.590000px;}
.y147{bottom:296.130000px;}
.y109{bottom:301.890000px;}
.ycf{bottom:302.430000px;}
.y74{bottom:308.010000px;}
.y183{bottom:310.170000px;}
.y34{bottom:311.790000px;}
.y195{bottom:312.870000px;}
.y146{bottom:313.230000px;}
.ya9{bottom:316.470000px;}
.y108{bottom:319.170000px;}
.yce{bottom:320.790000px;}
.y182{bottom:327.270000px;}
.y33{bottom:329.070000px;}
.y194{bottom:329.970000px;}
.y145{bottom:330.510000px;}
.y107{bottom:336.270000px;}
.ya8{bottom:337.755000px;}
.ycd{bottom:339.015000px;}
.y71{bottom:343.335000px;}
.y181{bottom:344.595000px;}
.y32{bottom:346.215000px;}
.y193{bottom:347.295000px;}
.y144{bottom:347.835000px;}
.y106{bottom:353.595000px;}
.ya7{bottom:355.035000px;}
.ycc{bottom:356.295000px;}
.y180{bottom:361.875000px;}
.y31{bottom:363.495000px;}
.y192{bottom:364.575000px;}
.y143{bottom:365.115000px;}
.y105{bottom:370.875000px;}
.ya6{bottom:372.315000px;}
.ycb{bottom:373.575000px;}
.y142{bottom:379.875000px;}
.y17f{bottom:380.235000px;}
.y30{bottom:380.775000px;}
.y70{bottom:381.855000px;}
.y104{bottom:388.155000px;}
.ya5{bottom:389.595000px;}
.yca{bottom:390.855000px;}
.y141{bottom:397.875000px;}
.y2f{bottom:398.055000px;}
.y17e{bottom:398.595000px;}
.y6f{bottom:399.135000px;}
.y103{bottom:405.435000px;}
.ya4{bottom:406.695000px;}
.yc9{bottom:408.135000px;}
.y140{bottom:415.875000px;}
.y6e{bottom:416.415000px;}
.y17d{bottom:416.775000px;}
.y2e{bottom:417.495000px;}
.y102{bottom:422.535000px;}
.ya3{bottom:423.975000px;}
.yc8{bottom:425.415000px;}
.y6d{bottom:433.515000px;}
.y13f{bottom:433.875000px;}
.y17c{bottom:434.055000px;}
.y2d{bottom:434.775000px;}
.y101{bottom:439.815000px;}
.ya2{bottom:441.255000px;}
.yc7{bottom:442.515000px;}
.y6c{bottom:450.795000px;}
.y17b{bottom:451.335000px;}
.y13e{bottom:451.875000px;}
.y2c{bottom:452.055000px;}
.y100{bottom:457.095000px;}
.ya1{bottom:458.535000px;}
.yc6{bottom:459.795000px;}
.y6b{bottom:468.075000px;}
.y17a{bottom:468.615000px;}
.y2b{bottom:469.335000px;}
.y13d{bottom:473.115000px;}
.yff{bottom:474.375000px;}
.ya0{bottom:475.815000px;}
.yc5{bottom:477.075000px;}
.y6a{bottom:485.355000px;}
.y179{bottom:485.895000px;}
.y2a{bottom:486.435000px;}
.y13c{bottom:490.395000px;}
.yfe{bottom:491.655000px;}
.y9f{bottom:493.095000px;}
.yc4{bottom:494.355000px;}
.y69{bottom:502.635000px;}
.y178{bottom:503.175000px;}
.y29{bottom:503.715000px;}
.y13b{bottom:507.675000px;}
.yfd{bottom:508.935000px;}
.y9e{bottom:510.195000px;}
.yc3{bottom:511.635000px;}
.y68{bottom:519.735000px;}
.y28{bottom:520.995000px;}
.y177{bottom:521.355000px;}
.y13a{bottom:524.775000px;}
.yfc{bottom:526.035000px;}
.y9d{bottom:527.475000px;}
.yc2{bottom:528.735000px;}
.y67{bottom:537.015000px;}
.y27{bottom:538.275000px;}
.y176{bottom:539.715000px;}
.y139{bottom:542.055000px;}
.yfb{bottom:543.315000px;}
.y9c{bottom:544.755000px;}
.yc1{bottom:546.015000px;}
.y66{bottom:554.295000px;}
.y26{bottom:555.555000px;}
.y175{bottom:558.075000px;}
.y138{bottom:560.415000px;}
.yfa{bottom:560.595000px;}
.yc0{bottom:560.775000px;}
.y9b{bottom:562.035000px;}
.y65{bottom:571.575000px;}
.y25{bottom:572.835000px;}
.y174{bottom:575.355000px;}
.yf9{bottom:577.875000px;}
.ybf{bottom:578.775000px;}
.y9a{bottom:579.315000px;}
.y64{bottom:588.855000px;}
.y24{bottom:589.935000px;}
.y173{bottom:592.635000px;}
.yf8{bottom:595.155000px;}
.y99{bottom:596.595000px;}
.ybd{bottom:596.775000px;}
.y137{bottom:597.135000px;}
.y63{bottom:606.165000px;}
.y23{bottom:607.245000px;}
.y172{bottom:609.765000px;}
.yf7{bottom:612.465000px;}
.y98{bottom:613.725000px;}
.y136{bottom:614.265000px;}
.ybc{bottom:614.805000px;}
.y62{bottom:623.265000px;}
.y22{bottom:624.525000px;}
.yf6{bottom:629.565000px;}
.y97{bottom:631.005000px;}
.y135{bottom:631.545000px;}
.ybb{bottom:632.805000px;}
.y61{bottom:640.545000px;}
.y21{bottom:641.805000px;}
.y171{bottom:642.525000px;}
.yf5{bottom:646.845000px;}
.y96{bottom:648.285000px;}
.y134{bottom:648.825000px;}
.yba{bottom:650.805000px;}
.y60{bottom:657.825000px;}
.y20{bottom:659.085000px;}
.y170{bottom:660.525000px;}
.yf4{bottom:664.125000px;}
.y95{bottom:665.565000px;}
.y133{bottom:666.105000px;}
.yb9{bottom:668.805000px;}
.y5f{bottom:675.105000px;}
.y1f{bottom:676.365000px;}
.y16f{bottom:678.525000px;}
.yf3{bottom:681.405000px;}
.y94{bottom:682.845000px;}
.y132{bottom:683.385000px;}
.yb7{bottom:686.805000px;}
.y5e{bottom:692.385000px;}
.y1e{bottom:693.465000px;}
.yf2{bottom:698.685000px;}
.y16e{bottom:699.765000px;}
.y93{bottom:699.945000px;}
.y131{bottom:700.665000px;}
.yb6{bottom:704.805000px;}
.y5d{bottom:709.665000px;}
.y1d{bottom:710.745000px;}
.yf1{bottom:713.445000px;}
.y130{bottom:715.425000px;}
.y16d{bottom:717.045000px;}
.y92{bottom:717.225000px;}
.yb5{bottom:722.805000px;}
.y5c{bottom:726.765000px;}
.y1c{bottom:728.025000px;}
.y12f{bottom:733.425000px;}
.y16c{bottom:734.325000px;}
.y91{bottom:734.505000px;}
.y5b{bottom:744.045000px;}
.y1b{bottom:745.305000px;}
.yf0{bottom:748.545000px;}
.y12e{bottom:751.425000px;}
.y16b{bottom:751.605000px;}
.y90{bottom:752.865000px;}
.y5a{bottom:761.325000px;}
.y1a{bottom:762.585000px;}
.y16a{bottom:768.885000px;}
.y12d{bottom:769.425000px;}
.y8f{bottom:771.225000px;}
.y59{bottom:778.605000px;}
.y19{bottom:779.865000px;}
.yef{bottom:783.825000px;}
.y169{bottom:786.165000px;}
.y12c{bottom:787.425000px;}
.y8e{bottom:789.585000px;}
.y58{bottom:795.885000px;}
.y18{bottom:799.305000px;}
.y168{bottom:803.265000px;}
.y12b{bottom:805.245000px;}
.y8d{bottom:807.765000px;}
.y57{bottom:812.985000px;}
.y17{bottom:816.225000px;}
.yed{bottom:819.105000px;}
.y167{bottom:820.545000px;}
.y12a{bottom:823.245000px;}
.y8c{bottom:825.045000px;}
.y56{bottom:830.265000px;}
.y16{bottom:831.705000px;}
.y166{bottom:837.825000px;}
.y129{bottom:841.245000px;}
.y8b{bottom:842.325000px;}
.y55{bottom:847.545000px;}
.y15{bottom:849.165000px;}
.y165{bottom:855.105000px;}
.y8a{bottom:859.605000px;}
.y128{bottom:862.485000px;}
.y54{bottom:864.825000px;}
.y163{bottom:869.865000px;}
.yec{bottom:871.710000px;}
.y14{bottom:873.150000px;}
.y89{bottom:874.410000px;}
.y127{bottom:879.810000px;}
.y53{bottom:882.150000px;}
.y162{bottom:887.910000px;}
.y13{bottom:888.630000px;}
.y126{bottom:897.090000px;}
.y52{bottom:899.430000px;}
.y12{bottom:904.290000px;}
.y161{bottom:905.910000px;}
.y88{bottom:909.690000px;}
.yeb{bottom:910.230000px;}
.y125{bottom:914.370000px;}
.y51{bottom:916.530000px;}
.y11{bottom:921.750000px;}
.y160{bottom:923.910000px;}
.yea{bottom:927.330000px;}
.y86{bottom:927.690000px;}
.y124{bottom:931.650000px;}
.y50{bottom:933.810000px;}
.y15f{bottom:941.910000px;}
.ye9{bottom:944.610000px;}
.y10{bottom:945.690000px;}
.y123{bottom:948.930000px;}
.y4f{bottom:951.090000px;}
.y15e{bottom:959.910000px;}
.yf{bottom:961.170000px;}
.ye8{bottom:961.890000px;}
.y85{bottom:962.790000px;}
.y122{bottom:966.030000px;}
.y4e{bottom:968.370000px;}
.ye{bottom:976.650000px;}
.ye7{bottom:980.250000px;}
.y15d{bottom:981.150000px;}
.y121{bottom:983.310000px;}
.y4d{bottom:985.650000px;}
.yd{bottom:994.110000px;}
.y84{bottom:998.070000px;}
.y15c{bottom:998.430000px;}
.ye6{bottom:998.610000px;}
.y120{bottom:1000.590000px;}
.y4c{bottom:1002.930000px;}
.y15b{bottom:1015.530000px;}
.ye5{bottom:1016.790000px;}
.y11f{bottom:1017.870000px;}
.yc{bottom:1018.050000px;}
.y4b{bottom:1020.030000px;}
.y15a{bottom:1032.810000px;}
.y83{bottom:1033.350000px;}
.ye4{bottom:1034.070000px;}
.y11e{bottom:1035.150000px;}
.yb{bottom:1036.590000px;}
.y4a{bottom:1037.310000px;}
.y159{bottom:1047.570000px;}
.ye3{bottom:1051.350000px;}
.y11d{bottom:1052.430000px;}
.y49{bottom:1054.590000px;}
.y158{bottom:1065.570000px;}
.ya{bottom:1067.550000px;}
.ye2{bottom:1068.630000px;}
.y11c{bottom:1069.530000px;}
.y48{bottom:1071.870000px;}
.y157{bottom:1083.570000px;}
.ye1{bottom:1085.910000px;}
.y11b{bottom:1086.810000px;}
.y47{bottom:1089.150000px;}
.y9{bottom:1098.690000px;}
.y11a{bottom:1101.570000px;}
.ye0{bottom:1103.190000px;}
.y46{bottom:1106.430000px;}
.y156{bottom:1119.570000px;}
.ydf{bottom:1121.370000px;}
.y45{bottom:1123.530000px;}
.y8{bottom:1129.650000px;}
.y118{bottom:1136.850000px;}
.yde{bottom:1139.760000px;}
.y44{bottom:1140.840000px;}
.y3{bottom:1164.420000px;}
.y2{bottom:1180.620000px;}
.y1{bottom:1197.000000px;}
.y6{bottom:1223.460000px;}
.h4{height:15.120000px;}
.hd{height:17.100000px;}
.hb{height:17.280000px;}
.he{height:17.316000px;}
.hc{height:34.380000px;}
.h9{height:34.560000px;}
.ha{height:34.596000px;}
.h2{height:47.381836px;}
.hf{height:51.876000px;}
.h8{height:52.435898px;}
.h7{height:53.077852px;}
.h3{height:71.613281px;}
.h6{height:78.969727px;}
.h5{height:94.763672px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:5.760000px;}
.w27{width:41.796000px;}
.w1f{width:43.740000px;}
.w28{width:50.220000px;}
.w2b{width:50.256000px;}
.w2f{width:53.820000px;}
.w21{width:56.700000px;}
.w20{width:56.736000px;}
.w22{width:69.660000px;}
.w1d{width:69.696000px;}
.wd{width:70.020000px;}
.w25{width:75.420000px;}
.w2e{width:78.840000px;}
.wf{width:83.520000px;}
.w1a{width:84.240000px;}
.w10{width:86.040000px;}
.w13{width:89.820000px;}
.w1c{width:90.540000px;}
.w12{width:90.936000px;}
.w2d{width:93.816000px;}
.w15{width:101.700000px;}
.we{width:106.776000px;}
.w2c{width:108.360000px;}
.w23{width:111.276000px;}
.w1b{width:112.176000px;}
.w2a{width:127.080000px;}
.w7{width:133.920000px;}
.w16{width:135.180000px;}
.w24{width:137.340000px;}
.w4{width:151.560000px;}
.w11{width:160.200000px;}
.w29{width:191.550000px;}
.w9{width:195.690000px;}
.wa{width:198.390000px;}
.wc{width:199.830000px;}
.w5{width:207.255000px;}
.w14{width:230.115000px;}
.w19{width:232.230000px;}
.w18{width:238.170000px;}
.w1e{width:274.350000px;}
.wb{width:275.970000px;}
.w17{width:300.855000px;}
.w6{width:315.390000px;}
.w8{width:344.415000px;}
.w26{width:353.550000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x14{left:7.740000px;}
.x3{left:81.540000px;}
.x1{left:108.035987px;}
.x4{left:116.495987px;}
.xd{left:127.835987px;}
.xa{left:130.355987px;}
.xf{left:148.175987px;}
.x11{left:161.129987px;}
.x5{left:166.349987px;}
.x1b{left:179.490000px;}
.x6{left:195.869987px;}
.x9{left:230.789987px;}
.x17{left:243.570000px;}
.x22{left:244.650000px;}
.x15{left:261.030000px;}
.xc{left:265.349987px;}
.x1e{left:269.670000px;}
.xe{left:283.034987px;}
.x1c{left:286.995000px;}
.x2b{left:291.315000px;}
.x2e{left:301.035000px;}
.xb{left:307.334987px;}
.x13{left:337.214987px;}
.x10{left:340.634987px;}
.x25{left:341.715000px;}
.x7{left:352.694987px;}
.x1f{left:361.335000px;}
.x1d{left:371.235000px;}
.x1a{left:384.374987px;}
.x12{left:386.534987px;}
.x32{left:391.574987px;}
.x33{left:396.074987px;}
.x2f{left:410.115000px;}
.x24{left:412.994987px;}
.x26{left:426.675000px;}
.x2{left:428.294987px;}
.x8{left:446.474987px;}
.x20{left:451.875000px;}
.x2c{left:463.035000px;}
.x16{left:469.005000px;}
.x29{left:485.745000px;}
.x2d{left:505.545000px;}
.x27{left:539.565000px;}
.x2a{left:543.345000px;}
.x23{left:546.225000px;}
.x19{left:584.565000px;}
.x18{left:588.705000px;}
.x28{left:630.825000px;}
.x30{left:638.745000px;}
.x31{left:681.270000px;}
.x21{left:682.710000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls5{letter-spacing:-0.544000pt;}
.ls4{letter-spacing:0.000000pt;}
.lsa{letter-spacing:0.047360pt;}
.ls3{letter-spacing:0.160000pt;}
.lsf{letter-spacing:0.165867pt;}
.ls1{letter-spacing:0.192000pt;}
.ls2{letter-spacing:0.256000pt;}
.ls6{letter-spacing:0.265600pt;}
.ls9{letter-spacing:0.320000pt;}
.lse{letter-spacing:0.343680pt;}
.lsc{letter-spacing:0.408960pt;}
.lsb{letter-spacing:0.480000pt;}
.ls10{letter-spacing:0.592640pt;}
.lsd{letter-spacing:0.800000pt;}
.ls8{letter-spacing:20.432640pt;}
.ls7{letter-spacing:36.432640pt;}
.ls0{letter-spacing:176.800000pt;}
.ws6{word-spacing:-53.120000pt;}
.ws2{word-spacing:-24.000000pt;}
.ws1{word-spacing:-14.656000pt;}
.ws7{word-spacing:-13.600000pt;}
.ws5{word-spacing:-13.545600pt;}
.ws9{word-spacing:-13.445867pt;}
.ws8{word-spacing:-13.327360pt;}
.ws3{word-spacing:-13.280000pt;}
.ws0{word-spacing:-12.000000pt;}
.ws4{word-spacing:0.000000pt;}
._2{margin-left:-163.200000pt;}
._6{margin-left:-10.464000pt;}
._7{margin-left:-8.810667pt;}
._0{margin-left:-7.200000pt;}
._1e{margin-left:-5.790080pt;}
._5{margin-left:-4.320000pt;}
._4{margin-left:-3.264000pt;}
._3{margin-left:-1.845333pt;}
._9{margin-left:-0.928000pt;}
._8{width:1.050667pt;}
._a{width:2.496640pt;}
._d{width:3.423147pt;}
._b{width:4.739413pt;}
._c{width:5.656960pt;}
._15{width:6.799360pt;}
._18{width:7.861760pt;}
._19{width:8.769280pt;}
._12{width:9.852160pt;}
._13{width:11.021227pt;}
._e{width:12.137387pt;}
._1d{width:14.289280pt;}
._1f{width:15.197653pt;}
._1{width:16.106667pt;}
._1c{width:17.051520pt;}
._14{width:18.261547pt;}
._11{width:19.453653pt;}
._1a{width:20.398080pt;}
._17{width:21.971413pt;}
._16{width:24.116480pt;}
._1b{width:25.710080pt;}
._f{width:29.068373pt;}
._10{width:30.935040pt;}
.fs0{font-size:48.000000pt;}
.fs4{font-size:53.120000pt;}
.fs1{font-size:64.000000pt;}
.fs3{font-size:80.000000pt;}
.fs2{font-size:96.000000pt;}
.y7{bottom:-1.760000pt;}
.y0{bottom:0.000000pt;}
.y73{bottom:2.880000pt;}
.y119{bottom:2.906667pt;}
.y116{bottom:2.912000pt;}
.y164{bottom:2.920000pt;}
.y5{bottom:4.160000pt;}
.yb8{bottom:15.360000pt;}
.ybe{bottom:15.386667pt;}
.y87{bottom:18.080000pt;}
.y72{bottom:18.240000pt;}
.y4{bottom:23.680000pt;}
.yee{bottom:33.600000pt;}
.y191{bottom:42.240000pt;}
.y82{bottom:43.360000pt;}
.y155{bottom:44.480000pt;}
.y117{bottom:44.960000pt;}
.y43{bottom:47.040000pt;}
.ydd{bottom:50.240000pt;}
.yb4{bottom:50.880000pt;}
.y190{bottom:57.600000pt;}
.y81{bottom:58.720000pt;}
.y154{bottom:59.840000pt;}
.y115{bottom:60.960000pt;}
.y42{bottom:62.432000pt;}
.y1a3{bottom:63.392000pt;}
.ydc{bottom:65.632000pt;}
.yb3{bottom:66.272000pt;}
.y18f{bottom:72.992000pt;}
.y80{bottom:74.112000pt;}
.y153{bottom:75.232000pt;}
.y114{bottom:76.992000pt;}
.y41{bottom:77.792000pt;}
.y1a2{bottom:78.752000pt;}
.ydb{bottom:80.992000pt;}
.yb2{bottom:81.632000pt;}
.y18e{bottom:88.352000pt;}
.y7f{bottom:89.312000pt;}
.y152{bottom:90.592000pt;}
.y40{bottom:93.152000pt;}
.y1a1{bottom:94.112000pt;}
.yda{bottom:96.352000pt;}
.yb1{bottom:96.832000pt;}
.y18d{bottom:103.712000pt;}
.y7e{bottom:104.672000pt;}
.y151{bottom:105.792000pt;}
.y3f{bottom:108.512000pt;}
.y1a0{bottom:109.312000pt;}
.y113{bottom:111.072000pt;}
.yd9{bottom:111.712000pt;}
.yb0{bottom:112.192000pt;}
.y18c{bottom:118.912000pt;}
.y7d{bottom:120.032000pt;}
.y150{bottom:121.152000pt;}
.y3e{bottom:123.712000pt;}
.y19f{bottom:124.672000pt;}
.y112{bottom:126.432000pt;}
.yd8{bottom:126.912000pt;}
.yaf{bottom:127.552000pt;}
.y18b{bottom:134.266667pt;}
.y7c{bottom:135.386667pt;}
.y14f{bottom:136.506667pt;}
.y3d{bottom:139.066667pt;}
.y19e{bottom:140.026667pt;}
.y111{bottom:141.786667pt;}
.yae{bottom:142.906667pt;}
.yd7{bottom:143.226667pt;}
.y14e{bottom:149.626667pt;}
.y7b{bottom:150.746667pt;}
.y3c{bottom:154.426667pt;}
.y19d{bottom:155.386667pt;}
.yad{bottom:156.026667pt;}
.y110{bottom:157.146667pt;}
.yd6{bottom:159.546667pt;}
.y18a{bottom:164.986667pt;}
.y14d{bottom:165.626667pt;}
.y7a{bottom:166.106667pt;}
.y3b{bottom:169.786667pt;}
.y19c{bottom:170.746667pt;}
.y10f{bottom:172.506667pt;}
.yd5{bottom:175.866667pt;}
.y189{bottom:180.346667pt;}
.y79{bottom:181.306667pt;}
.y14c{bottom:181.626667pt;}
.y3a{bottom:185.146667pt;}
.y19b{bottom:186.106667pt;}
.yac{bottom:187.386667pt;}
.y10e{bottom:188.826667pt;}
.yd4{bottom:191.226667pt;}
.y188{bottom:193.466667pt;}
.y78{bottom:194.426667pt;}
.y14b{bottom:197.626667pt;}
.y39{bottom:200.506667pt;}
.y19a{bottom:201.306667pt;}
.y10d{bottom:204.986667pt;}
.yd3{bottom:206.426667pt;}
.y187{bottom:209.466667pt;}
.y14a{bottom:213.626667pt;}
.y38{bottom:215.706667pt;}
.y199{bottom:216.666667pt;}
.yab{bottom:218.586667pt;}
.y10c{bottom:220.346667pt;}
.yd2{bottom:221.786667pt;}
.y186{bottom:225.466667pt;}
.y77{bottom:225.786667pt;}
.y37{bottom:231.066667pt;}
.y198{bottom:232.026667pt;}
.y149{bottom:232.506667pt;}
.y10b{bottom:235.706667pt;}
.yd1{bottom:237.146667pt;}
.y185{bottom:241.466667pt;}
.y76{bottom:241.786667pt;}
.y36{bottom:246.426667pt;}
.y197{bottom:247.386667pt;}
.y148{bottom:247.866667pt;}
.yaa{bottom:249.946667pt;}
.y10a{bottom:252.026667pt;}
.yd0{bottom:252.506667pt;}
.y75{bottom:257.786667pt;}
.y184{bottom:260.346667pt;}
.y35{bottom:261.786667pt;}
.y196{bottom:262.746667pt;}
.y147{bottom:263.226667pt;}
.y109{bottom:268.346667pt;}
.ycf{bottom:268.826667pt;}
.y74{bottom:273.786667pt;}
.y183{bottom:275.706667pt;}
.y34{bottom:277.146667pt;}
.y195{bottom:278.106667pt;}
.y146{bottom:278.426667pt;}
.ya9{bottom:281.306667pt;}
.y108{bottom:283.706667pt;}
.yce{bottom:285.146667pt;}
.y182{bottom:290.906667pt;}
.y33{bottom:292.506667pt;}
.y194{bottom:293.306667pt;}
.y145{bottom:293.786667pt;}
.y107{bottom:298.906667pt;}
.ya8{bottom:300.226667pt;}
.ycd{bottom:301.346667pt;}
.y71{bottom:305.186667pt;}
.y181{bottom:306.306667pt;}
.y32{bottom:307.746667pt;}
.y193{bottom:308.706667pt;}
.y144{bottom:309.186667pt;}
.y106{bottom:314.306667pt;}
.ya7{bottom:315.586667pt;}
.ycc{bottom:316.706667pt;}
.y180{bottom:321.666667pt;}
.y31{bottom:323.106667pt;}
.y192{bottom:324.066667pt;}
.y143{bottom:324.546667pt;}
.y105{bottom:329.666667pt;}
.ya6{bottom:330.946667pt;}
.ycb{bottom:332.066667pt;}
.y142{bottom:337.666667pt;}
.y17f{bottom:337.986667pt;}
.y30{bottom:338.466667pt;}
.y70{bottom:339.426667pt;}
.y104{bottom:345.026667pt;}
.ya5{bottom:346.306667pt;}
.yca{bottom:347.426667pt;}
.y141{bottom:353.666667pt;}
.y2f{bottom:353.826667pt;}
.y17e{bottom:354.306667pt;}
.y6f{bottom:354.786667pt;}
.y103{bottom:360.386667pt;}
.ya4{bottom:361.506667pt;}
.yc9{bottom:362.786667pt;}
.y140{bottom:369.666667pt;}
.y6e{bottom:370.146667pt;}
.y17d{bottom:370.466667pt;}
.y2e{bottom:371.106667pt;}
.y102{bottom:375.586667pt;}
.ya3{bottom:376.866667pt;}
.yc8{bottom:378.146667pt;}
.y6d{bottom:385.346667pt;}
.y13f{bottom:385.666667pt;}
.y17c{bottom:385.826667pt;}
.y2d{bottom:386.466667pt;}
.y101{bottom:390.946667pt;}
.ya2{bottom:392.226667pt;}
.yc7{bottom:393.346667pt;}
.y6c{bottom:400.706667pt;}
.y17b{bottom:401.186667pt;}
.y13e{bottom:401.666667pt;}
.y2c{bottom:401.826667pt;}
.y100{bottom:406.306667pt;}
.ya1{bottom:407.586667pt;}
.yc6{bottom:408.706667pt;}
.y6b{bottom:416.066667pt;}
.y17a{bottom:416.546667pt;}
.y2b{bottom:417.186667pt;}
.y13d{bottom:420.546667pt;}
.yff{bottom:421.666667pt;}
.ya0{bottom:422.946667pt;}
.yc5{bottom:424.066667pt;}
.y6a{bottom:431.426667pt;}
.y179{bottom:431.906667pt;}
.y2a{bottom:432.386667pt;}
.y13c{bottom:435.906667pt;}
.yfe{bottom:437.026667pt;}
.y9f{bottom:438.306667pt;}
.yc4{bottom:439.426667pt;}
.y69{bottom:446.786667pt;}
.y178{bottom:447.266667pt;}
.y29{bottom:447.746667pt;}
.y13b{bottom:451.266667pt;}
.yfd{bottom:452.386667pt;}
.y9e{bottom:453.506667pt;}
.yc3{bottom:454.786667pt;}
.y68{bottom:461.986667pt;}
.y28{bottom:463.106667pt;}
.y177{bottom:463.426667pt;}
.y13a{bottom:466.466667pt;}
.yfc{bottom:467.586667pt;}
.y9d{bottom:468.866667pt;}
.yc2{bottom:469.986667pt;}
.y67{bottom:477.346667pt;}
.y27{bottom:478.466667pt;}
.y176{bottom:479.746667pt;}
.y139{bottom:481.826667pt;}
.yfb{bottom:482.946667pt;}
.y9c{bottom:484.226667pt;}
.yc1{bottom:485.346667pt;}
.y66{bottom:492.706667pt;}
.y26{bottom:493.826667pt;}
.y175{bottom:496.066667pt;}
.y138{bottom:498.146667pt;}
.yfa{bottom:498.306667pt;}
.yc0{bottom:498.466667pt;}
.y9b{bottom:499.586667pt;}
.y65{bottom:508.066667pt;}
.y25{bottom:509.186667pt;}
.y174{bottom:511.426667pt;}
.yf9{bottom:513.666667pt;}
.ybf{bottom:514.466667pt;}
.y9a{bottom:514.946667pt;}
.y64{bottom:523.426667pt;}
.y24{bottom:524.386667pt;}
.y173{bottom:526.786667pt;}
.yf8{bottom:529.026667pt;}
.y99{bottom:530.306667pt;}
.ybd{bottom:530.466667pt;}
.y137{bottom:530.786667pt;}
.y63{bottom:538.813333pt;}
.y23{bottom:539.773333pt;}
.y172{bottom:542.013333pt;}
.yf7{bottom:544.413333pt;}
.y98{bottom:545.533333pt;}
.y136{bottom:546.013333pt;}
.ybc{bottom:546.493333pt;}
.y62{bottom:554.013333pt;}
.y22{bottom:555.133333pt;}
.yf6{bottom:559.613333pt;}
.y97{bottom:560.893333pt;}
.y135{bottom:561.373333pt;}
.ybb{bottom:562.493333pt;}
.y61{bottom:569.373333pt;}
.y21{bottom:570.493333pt;}
.y171{bottom:571.133333pt;}
.yf5{bottom:574.973333pt;}
.y96{bottom:576.253333pt;}
.y134{bottom:576.733333pt;}
.yba{bottom:578.493333pt;}
.y60{bottom:584.733333pt;}
.y20{bottom:585.853333pt;}
.y170{bottom:587.133333pt;}
.yf4{bottom:590.333333pt;}
.y95{bottom:591.613333pt;}
.y133{bottom:592.093333pt;}
.yb9{bottom:594.493333pt;}
.y5f{bottom:600.093333pt;}
.y1f{bottom:601.213333pt;}
.y16f{bottom:603.133333pt;}
.yf3{bottom:605.693333pt;}
.y94{bottom:606.973333pt;}
.y132{bottom:607.453333pt;}
.yb7{bottom:610.493333pt;}
.y5e{bottom:615.453333pt;}
.y1e{bottom:616.413333pt;}
.yf2{bottom:621.053333pt;}
.y16e{bottom:622.013333pt;}
.y93{bottom:622.173333pt;}
.y131{bottom:622.813333pt;}
.yb6{bottom:626.493333pt;}
.y5d{bottom:630.813333pt;}
.y1d{bottom:631.773333pt;}
.yf1{bottom:634.173333pt;}
.y130{bottom:635.933333pt;}
.y16d{bottom:637.373333pt;}
.y92{bottom:637.533333pt;}
.yb5{bottom:642.493333pt;}
.y5c{bottom:646.013333pt;}
.y1c{bottom:647.133333pt;}
.y12f{bottom:651.933333pt;}
.y16c{bottom:652.733333pt;}
.y91{bottom:652.893333pt;}
.y5b{bottom:661.373333pt;}
.y1b{bottom:662.493333pt;}
.yf0{bottom:665.373333pt;}
.y12e{bottom:667.933333pt;}
.y16b{bottom:668.093333pt;}
.y90{bottom:669.213333pt;}
.y5a{bottom:676.733333pt;}
.y1a{bottom:677.853333pt;}
.y16a{bottom:683.453333pt;}
.y12d{bottom:683.933333pt;}
.y8f{bottom:685.533333pt;}
.y59{bottom:692.093333pt;}
.y19{bottom:693.213333pt;}
.yef{bottom:696.733333pt;}
.y169{bottom:698.813333pt;}
.y12c{bottom:699.933333pt;}
.y8e{bottom:701.853333pt;}
.y58{bottom:707.453333pt;}
.y18{bottom:710.493333pt;}
.y168{bottom:714.013333pt;}
.y12b{bottom:715.773333pt;}
.y8d{bottom:718.013333pt;}
.y57{bottom:722.653333pt;}
.y17{bottom:725.533333pt;}
.yed{bottom:728.093333pt;}
.y167{bottom:729.373333pt;}
.y12a{bottom:731.773333pt;}
.y8c{bottom:733.373333pt;}
.y56{bottom:738.013333pt;}
.y16{bottom:739.293333pt;}
.y166{bottom:744.733333pt;}
.y129{bottom:747.773333pt;}
.y8b{bottom:748.733333pt;}
.y55{bottom:753.373333pt;}
.y15{bottom:754.813333pt;}
.y165{bottom:760.093333pt;}
.y8a{bottom:764.093333pt;}
.y128{bottom:766.653333pt;}
.y54{bottom:768.733333pt;}
.y163{bottom:773.213333pt;}
.yec{bottom:774.853333pt;}
.y14{bottom:776.133333pt;}
.y89{bottom:777.253333pt;}
.y127{bottom:782.053333pt;}
.y53{bottom:784.133333pt;}
.y162{bottom:789.253333pt;}
.y13{bottom:789.893333pt;}
.y126{bottom:797.413333pt;}
.y52{bottom:799.493333pt;}
.y12{bottom:803.813333pt;}
.y161{bottom:805.253333pt;}
.y88{bottom:808.613333pt;}
.yeb{bottom:809.093333pt;}
.y125{bottom:812.773333pt;}
.y51{bottom:814.693333pt;}
.y11{bottom:819.333333pt;}
.y160{bottom:821.253333pt;}
.yea{bottom:824.293333pt;}
.y86{bottom:824.613333pt;}
.y124{bottom:828.133333pt;}
.y50{bottom:830.053333pt;}
.y15f{bottom:837.253333pt;}
.ye9{bottom:839.653333pt;}
.y10{bottom:840.613333pt;}
.y123{bottom:843.493333pt;}
.y4f{bottom:845.413333pt;}
.y15e{bottom:853.253333pt;}
.yf{bottom:854.373333pt;}
.ye8{bottom:855.013333pt;}
.y85{bottom:855.813333pt;}
.y122{bottom:858.693333pt;}
.y4e{bottom:860.773333pt;}
.ye{bottom:868.133333pt;}
.ye7{bottom:871.333333pt;}
.y15d{bottom:872.133333pt;}
.y121{bottom:874.053333pt;}
.y4d{bottom:876.133333pt;}
.yd{bottom:883.653333pt;}
.y84{bottom:887.173333pt;}
.y15c{bottom:887.493333pt;}
.ye6{bottom:887.653333pt;}
.y120{bottom:889.413333pt;}
.y4c{bottom:891.493333pt;}
.y15b{bottom:902.693333pt;}
.ye5{bottom:903.813333pt;}
.y11f{bottom:904.773333pt;}
.yc{bottom:904.933333pt;}
.y4b{bottom:906.693333pt;}
.y15a{bottom:918.053333pt;}
.y83{bottom:918.533333pt;}
.ye4{bottom:919.173333pt;}
.y11e{bottom:920.133333pt;}
.yb{bottom:921.413333pt;}
.y4a{bottom:922.053333pt;}
.y159{bottom:931.173333pt;}
.ye3{bottom:934.533333pt;}
.y11d{bottom:935.493333pt;}
.y49{bottom:937.413333pt;}
.y158{bottom:947.173333pt;}
.ya{bottom:948.933333pt;}
.ye2{bottom:949.893333pt;}
.y11c{bottom:950.693333pt;}
.y48{bottom:952.773333pt;}
.y157{bottom:963.173333pt;}
.ye1{bottom:965.253333pt;}
.y11b{bottom:966.053333pt;}
.y47{bottom:968.133333pt;}
.y9{bottom:976.613333pt;}
.y11a{bottom:979.173333pt;}
.ye0{bottom:980.613333pt;}
.y46{bottom:983.493333pt;}
.y156{bottom:995.173333pt;}
.ydf{bottom:996.773333pt;}
.y45{bottom:998.693333pt;}
.y8{bottom:1004.133333pt;}
.y118{bottom:1010.533333pt;}
.yde{bottom:1013.120000pt;}
.y44{bottom:1014.080000pt;}
.y3{bottom:1035.040000pt;}
.y2{bottom:1049.440000pt;}
.y1{bottom:1064.000000pt;}
.y6{bottom:1087.520000pt;}
.h4{height:13.440000pt;}
.hd{height:15.200000pt;}
.hb{height:15.360000pt;}
.he{height:15.392000pt;}
.hc{height:30.560000pt;}
.h9{height:30.720000pt;}
.ha{height:30.752000pt;}
.h2{height:42.117188pt;}
.hf{height:46.112000pt;}
.h8{height:46.609688pt;}
.h7{height:47.180312pt;}
.h3{height:63.656250pt;}
.h6{height:70.195312pt;}
.h5{height:84.234375pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:5.120000pt;}
.w27{width:37.152000pt;}
.w1f{width:38.880000pt;}
.w28{width:44.640000pt;}
.w2b{width:44.672000pt;}
.w2f{width:47.840000pt;}
.w21{width:50.400000pt;}
.w20{width:50.432000pt;}
.w22{width:61.920000pt;}
.w1d{width:61.952000pt;}
.wd{width:62.240000pt;}
.w25{width:67.040000pt;}
.w2e{width:70.080000pt;}
.wf{width:74.240000pt;}
.w1a{width:74.880000pt;}
.w10{width:76.480000pt;}
.w13{width:79.840000pt;}
.w1c{width:80.480000pt;}
.w12{width:80.832000pt;}
.w2d{width:83.392000pt;}
.w15{width:90.400000pt;}
.we{width:94.912000pt;}
.w2c{width:96.320000pt;}
.w23{width:98.912000pt;}
.w1b{width:99.712000pt;}
.w2a{width:112.960000pt;}
.w7{width:119.040000pt;}
.w16{width:120.160000pt;}
.w24{width:122.080000pt;}
.w4{width:134.720000pt;}
.w11{width:142.400000pt;}
.w29{width:170.266667pt;}
.w9{width:173.946667pt;}
.wa{width:176.346667pt;}
.wc{width:177.626667pt;}
.w5{width:184.226667pt;}
.w14{width:204.546667pt;}
.w19{width:206.426667pt;}
.w18{width:211.706667pt;}
.w1e{width:243.866667pt;}
.wb{width:245.306667pt;}
.w17{width:267.426667pt;}
.w6{width:280.346667pt;}
.w8{width:306.146667pt;}
.w26{width:314.266667pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x14{left:6.880000pt;}
.x3{left:72.480000pt;}
.x1{left:96.031988pt;}
.x4{left:103.551988pt;}
.xd{left:113.631988pt;}
.xa{left:115.871988pt;}
.xf{left:131.711988pt;}
.x11{left:143.226655pt;}
.x5{left:147.866655pt;}
.x1b{left:159.546667pt;}
.x6{left:174.106655pt;}
.x9{left:205.146655pt;}
.x17{left:216.506667pt;}
.x22{left:217.466667pt;}
.x15{left:232.026667pt;}
.xc{left:235.866655pt;}
.x1e{left:239.706667pt;}
.xe{left:251.586655pt;}
.x1c{left:255.106667pt;}
.x2b{left:258.946667pt;}
.x2e{left:267.586667pt;}
.xb{left:273.186655pt;}
.x13{left:299.746655pt;}
.x10{left:302.786655pt;}
.x25{left:303.746667pt;}
.x7{left:313.506655pt;}
.x1f{left:321.186667pt;}
.x1d{left:329.986667pt;}
.x1a{left:341.666655pt;}
.x12{left:343.586655pt;}
.x32{left:348.066655pt;}
.x33{left:352.066655pt;}
.x2f{left:364.546667pt;}
.x24{left:367.106655pt;}
.x26{left:379.266667pt;}
.x2{left:380.706655pt;}
.x8{left:396.866655pt;}
.x20{left:401.666667pt;}
.x2c{left:411.586667pt;}
.x16{left:416.893333pt;}
.x29{left:431.773333pt;}
.x2d{left:449.373333pt;}
.x27{left:479.613333pt;}
.x2a{left:482.973333pt;}
.x23{left:485.533333pt;}
.x19{left:519.613333pt;}
.x18{left:523.293333pt;}
.x28{left:560.733333pt;}
.x30{left:567.773333pt;}
.x31{left:605.573333pt;}
.x21{left:606.853333pt;}
}




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