
    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_1528c614061f2a4773f18fbc.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_bf53844b46181c844a368991.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_0a7db720344c46a9a5824e9c.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_e4c0b0a43fcb9e10d204ebe3.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_be6d7298d496b48da3aa458a.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.921387;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_89d29fb43a786444d78086c9.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.921387;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_cf5b54b838ee9f69dcdff9c4.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_01ce8cbd34e42b9a86a59126.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls11{letter-spacing:-0.540000px;}
.ls8{letter-spacing:-0.360000px;}
.lsc{letter-spacing:-0.354000px;}
.ls6{letter-spacing:-0.053280px;}
.ls4{letter-spacing:0.000000px;}
.lsd{letter-spacing:0.053280px;}
.ls3{letter-spacing:0.180000px;}
.lsb{letter-spacing:0.206400px;}
.ls1{letter-spacing:0.216000px;}
.ls2{letter-spacing:0.288000px;}
.lsf{letter-spacing:0.298800px;}
.lse{letter-spacing:0.306600px;}
.ls7{letter-spacing:0.360000px;}
.ls10{letter-spacing:0.666720px;}
.ls9{letter-spacing:0.900000px;}
.ls5{letter-spacing:22.986720px;}
.lsa{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;}
.ws1{word-spacing:-16.488000px;}
.ws5{word-spacing:-15.300000px;}
.ws9{word-spacing:-15.246600px;}
.wsa{word-spacing:-15.238800px;}
.ws7{word-spacing:-15.146400px;}
.ws8{word-spacing:-14.993280px;}
.ws2{word-spacing:-14.940000px;}
.ws4{word-spacing:-14.886720px;}
.ws0{word-spacing:-13.500000px;}
.ws3{word-spacing:0.000000px;}
._2{margin-left:-183.600000px;}
._5{margin-left:-12.312000px;}
._0{margin-left:-8.100000px;}
._19{margin-left:-6.454080px;}
._6{margin-left:-5.400000px;}
._4{margin-left:-3.672000px;}
._3{margin-left:-2.076000px;}
._f{margin-left:-1.018080px;}
._7{width:1.080000px;}
._a{width:2.445840px;}
._e{width:3.705120px;}
._11{width:5.199120px;}
._b{width:7.014240px;}
._c{width:8.235360px;}
._d{width:9.236880px;}
._9{width:11.051280px;}
._8{width:12.191040px;}
._10{width:13.329360px;}
._12{width:16.929360px;}
._1{width:18.120000px;}
._17{width:19.596960px;}
._1b{width:21.987360px;}
._18{width:24.382080px;}
._14{width:26.174880px;}
._13{width:28.146960px;}
._1a{width:30.484320px;}
._16{width:31.548960px;}
._15{width:32.748480px;}
._1e{width:34.418400px;}
._1c{width:36.573120px;}
._1d{width:41.614320px;}
.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;}
.y0{bottom:0.000000px;}
.y8{bottom:0.900000px;}
.y84{bottom:3.240000px;}
.y6{bottom:4.680000px;}
.y14f{bottom:15.120000px;}
.y18e{bottom:17.100000px;}
.y88{bottom:20.340000px;}
.y8a{bottom:20.520000px;}
.yb2{bottom:20.556000px;}
.y5{bottom:26.640000px;}
.y146{bottom:27.900000px;}
.y14c{bottom:27.930000px;}
.y143{bottom:28.080000px;}
.y149{bottom:29.160000px;}
.y9e{bottom:37.800000px;}
.y44{bottom:50.040000px;}
.y169{bottom:53.640000px;}
.y82{bottom:54.540000px;}
.yb1{bottom:55.800000px;}
.ydb{bottom:58.140000px;}
.y109{bottom:59.040000px;}
.y19c{bottom:63.000000px;}
.y43{bottom:67.320000px;}
.y168{bottom:71.676000px;}
.y81{bottom:71.856000px;}
.yda{bottom:75.276000px;}
.y108{bottom:77.436000px;}
.y19b{bottom:80.316000px;}
.y42{bottom:84.636000px;}
.y141{bottom:87.696000px;}
.y80{bottom:89.136000px;}
.y167{bottom:89.676000px;}
.yb0{bottom:91.116000px;}
.yd9{bottom:92.556000px;}
.y107{bottom:95.616000px;}
.y19a{bottom:97.596000px;}
.y41{bottom:101.736000px;}
.y140{bottom:104.976000px;}
.y7f{bottom:106.236000px;}
.yd8{bottom:107.316000px;}
.y166{bottom:107.676000px;}
.y106{bottom:113.976000px;}
.y199{bottom:114.876000px;}
.y40{bottom:119.016000px;}
.y13f{bottom:122.076000px;}
.y7e{bottom:123.516000px;}
.yd7{bottom:125.316000px;}
.yaf{bottom:126.396000px;}
.y165{bottom:128.916000px;}
.y198{bottom:131.976000px;}
.y105{bottom:132.336000px;}
.y3f{bottom:136.296000px;}
.y13e{bottom:140.436000px;}
.y7d{bottom:140.796000px;}
.yd6{bottom:143.316000px;}
.y164{bottom:146.196000px;}
.y197{bottom:149.256000px;}
.y104{bottom:149.616000px;}
.y3e{bottom:153.570000px;}
.y7c{bottom:158.070000px;}
.y13d{bottom:158.790000px;}
.yd5{bottom:161.310000px;}
.yae{bottom:161.490000px;}
.y163{bottom:163.470000px;}
.y103{bottom:166.890000px;}
.y196{bottom:167.610000px;}
.y3d{bottom:170.850000px;}
.y7b{bottom:175.350000px;}
.y13c{bottom:177.150000px;}
.yd4{bottom:179.310000px;}
.y162{bottom:180.750000px;}
.y102{bottom:184.170000px;}
.y195{bottom:184.890000px;}
.y3c{bottom:188.130000px;}
.y7a{bottom:192.630000px;}
.y13b{bottom:194.430000px;}
.yad{bottom:196.770000px;}
.yd3{bottom:197.310000px;}
.y161{bottom:197.850000px;}
.y101{bottom:201.270000px;}
.y194{bottom:203.250000px;}
.y3b{bottom:205.230000px;}
.y79{bottom:209.730000px;}
.y13a{bottom:211.530000px;}
.y160{bottom:215.130000px;}
.yd2{bottom:215.310000px;}
.yac{bottom:218.010000px;}
.y100{bottom:219.630000px;}
.y193{bottom:221.610000px;}
.y3a{bottom:222.510000px;}
.y78{bottom:227.010000px;}
.y139{bottom:228.810000px;}
.y15f{bottom:232.410000px;}
.yab{bottom:235.290000px;}
.yd1{bottom:236.550000px;}
.yff{bottom:237.990000px;}
.y192{bottom:238.710000px;}
.y39{bottom:239.790000px;}
.y77{bottom:244.290000px;}
.y138{bottom:247.170000px;}
.y15e{bottom:249.690000px;}
.yaa{bottom:252.570000px;}
.yd0{bottom:253.830000px;}
.yfe{bottom:255.270000px;}
.y38{bottom:257.070000px;}
.y76{bottom:261.570000px;}
.y137{bottom:265.530000px;}
.y15d{bottom:266.970000px;}
.ya9{bottom:269.850000px;}
.ycf{bottom:271.110000px;}
.yfd{bottom:273.630000px;}
.y37{bottom:274.350000px;}
.y75{bottom:278.850000px;}
.y136{bottom:283.890000px;}
.y15c{bottom:284.250000px;}
.ya8{bottom:287.130000px;}
.yce{bottom:288.390000px;}
.yfc{bottom:290.730000px;}
.y36{bottom:291.630000px;}
.y74{bottom:296.130000px;}
.y15b{bottom:298.110000px;}
.y135{bottom:301.170000px;}
.ya7{bottom:304.230000px;}
.ycd{bottom:305.490000px;}
.yfb{bottom:308.010000px;}
.y35{bottom:308.730000px;}
.y191{bottom:309.990000px;}
.y73{bottom:313.230000px;}
.y15a{bottom:315.390000px;}
.y134{bottom:318.270000px;}
.ya6{bottom:321.510000px;}
.ycc{bottom:323.850000px;}
.y190{bottom:325.830000px;}
.y34{bottom:326.010000px;}
.yfa{bottom:326.370000px;}
.y72{bottom:330.510000px;}
.y159{bottom:332.670000px;}
.y133{bottom:335.550000px;}
.ya5{bottom:338.835000px;}
.ycb{bottom:342.255000px;}
.y33{bottom:343.335000px;}
.yf9{bottom:343.695000px;}
.y18f{bottom:343.875000px;}
.y71{bottom:347.835000px;}
.y158{bottom:349.995000px;}
.y132{bottom:353.955000px;}
.ya4{bottom:356.115000px;}
.y32{bottom:360.615000px;}
.y18d{bottom:361.875000px;}
.yf8{bottom:362.055000px;}
.y70{bottom:365.115000px;}
.y157{bottom:367.275000px;}
.y131{bottom:372.315000px;}
.ya3{bottom:373.395000px;}
.yca{bottom:377.895000px;}
.yf7{bottom:379.335000px;}
.y31{bottom:380.055000px;}
.y6f{bottom:382.395000px;}
.y18c{bottom:383.115000px;}
.y156{bottom:385.275000px;}
.ya2{bottom:390.495000px;}
.y130{bottom:390.675000px;}
.yc9{bottom:394.995000px;}
.yf6{bottom:396.435000px;}
.y30{bottom:397.335000px;}
.y6e{bottom:399.495000px;}
.y18b{bottom:400.215000px;}
.y155{bottom:405.615000px;}
.ya1{bottom:407.775000px;}
.y12f{bottom:408.855000px;}
.yc8{bottom:412.275000px;}
.y2f{bottom:414.615000px;}
.yf5{bottom:414.795000px;}
.y6d{bottom:416.775000px;}
.y18a{bottom:417.495000px;}
.ya0{bottom:422.535000px;}
.y154{bottom:422.895000px;}
.y12e{bottom:427.215000px;}
.yc7{bottom:429.555000px;}
.y2e{bottom:431.895000px;}
.yf4{bottom:432.075000px;}
.y6c{bottom:434.055000px;}
.y189{bottom:434.775000px;}
.y153{bottom:440.175000px;}
.y12d{bottom:444.495000px;}
.yc6{bottom:446.835000px;}
.y2d{bottom:448.995000px;}
.yf3{bottom:449.355000px;}
.y6b{bottom:451.335000px;}
.y188{bottom:452.055000px;}
.y152{bottom:457.455000px;}
.y9f{bottom:457.815000px;}
.y12c{bottom:459.255000px;}
.yc5{bottom:464.115000px;}
.y2c{bottom:466.275000px;}
.y6a{bottom:468.615000px;}
.y187{bottom:469.335000px;}
.y151{bottom:474.735000px;}
.yc4{bottom:481.395000px;}
.y2b{bottom:483.555000px;}
.y69{bottom:485.895000px;}
.y186{bottom:487.695000px;}
.y150{bottom:492.015000px;}
.y9d{bottom:493.095000px;}
.y12b{bottom:494.535000px;}
.yc3{bottom:498.495000px;}
.yf2{bottom:499.395000px;}
.y2a{bottom:500.835000px;}
.y68{bottom:502.995000px;}
.y185{bottom:505.875000px;}
.y14e{bottom:506.775000px;}
.yc2{bottom:515.775000px;}
.y29{bottom:518.115000px;}
.y67{bottom:520.275000px;}
.y184{bottom:523.155000px;}
.y12a{bottom:529.815000px;}
.yc1{bottom:533.055000px;}
.yf1{bottom:534.495000px;}
.y28{bottom:535.395000px;}
.y14d{bottom:536.655000px;}
.y66{bottom:537.555000px;}
.y183{bottom:540.435000px;}
.y9c{bottom:545.655000px;}
.yc0{bottom:550.335000px;}
.y27{bottom:552.495000px;}
.y65{bottom:554.835000px;}
.y182{bottom:557.715000px;}
.y129{bottom:564.915000px;}
.ybf{bottom:567.615000px;}
.y26{bottom:569.775000px;}
.y64{bottom:572.115000px;}
.y181{bottom:574.995000px;}
.y14b{bottom:579.315000px;}
.y9b{bottom:583.995000px;}
.ybe{bottom:584.895000px;}
.y128{bottom:586.155000px;}
.y25{bottom:587.055000px;}
.y63{bottom:589.395000px;}
.y180{bottom:593.175000px;}
.y9a{bottom:601.275000px;}
.ybd{bottom:601.995000px;}
.y127{bottom:603.435000px;}
.y24{bottom:604.365000px;}
.yf0{bottom:605.085000px;}
.y62{bottom:606.525000px;}
.y17f{bottom:611.565000px;}
.y99{bottom:618.585000px;}
.ybc{bottom:619.305000px;}
.y126{bottom:620.745000px;}
.y23{bottom:621.645000px;}
.y14a{bottom:622.005000px;}
.y61{bottom:623.805000px;}
.y17e{bottom:628.845000px;}
.y98{bottom:635.865000px;}
.ybb{bottom:636.585000px;}
.y22{bottom:638.925000px;}
.y125{bottom:639.105000px;}
.yef{bottom:640.365000px;}
.y60{bottom:641.085000px;}
.y17d{bottom:646.125000px;}
.y97{bottom:653.145000px;}
.yba{bottom:653.865000px;}
.y21{bottom:656.025000px;}
.y124{bottom:657.465000px;}
.y5f{bottom:658.365000px;}
.y17c{bottom:663.405000px;}
.y148{bottom:664.665000px;}
.y96{bottom:670.425000px;}
.yb9{bottom:671.145000px;}
.y20{bottom:673.305000px;}
.y5e{bottom:675.645000px;}
.y123{bottom:675.825000px;}
.y17b{bottom:678.165000px;}
.yee{bottom:678.885000px;}
.y95{bottom:687.525000px;}
.yb8{bottom:688.245000px;}
.y1f{bottom:690.585000px;}
.y5d{bottom:692.745000px;}
.y122{bottom:694.005000px;}
.yed{bottom:696.165000px;}
.yb7{bottom:703.005000px;}
.y94{bottom:704.805000px;}
.y1e{bottom:707.865000px;}
.y147{bottom:708.585000px;}
.y5c{bottom:710.025000px;}
.y121{bottom:712.365000px;}
.y17a{bottom:714.165000px;}
.yec{bottom:714.345000px;}
.y93{bottom:722.085000px;}
.y1d{bottom:725.145000px;}
.y5b{bottom:727.305000px;}
.y120{bottom:730.725000px;}
.y179{bottom:732.165000px;}
.yeb{bottom:732.705000px;}
.yb6{bottom:738.285000px;}
.y92{bottom:739.365000px;}
.y1c{bottom:742.245000px;}
.y5a{bottom:744.585000px;}
.y11f{bottom:749.085000px;}
.yea{bottom:749.985000px;}
.y178{bottom:750.165000px;}
.y145{bottom:751.245000px;}
.y91{bottom:756.645000px;}
.y1b{bottom:759.525000px;}
.y59{bottom:761.865000px;}
.y11e{bottom:767.445000px;}
.y177{bottom:768.165000px;}
.ye9{bottom:768.345000px;}
.yb5{bottom:773.565000px;}
.y90{bottom:773.745000px;}
.y1a{bottom:776.805000px;}
.y58{bottom:779.145000px;}
.y11d{bottom:784.545000px;}
.y176{bottom:786.165000px;}
.ye8{bottom:786.705000px;}
.y8f{bottom:791.025000px;}
.y144{bottom:793.905000px;}
.y19{bottom:794.085000px;}
.y57{bottom:796.245000px;}
.y11c{bottom:802.905000px;}
.ye7{bottom:803.805000px;}
.y175{bottom:804.165000px;}
.y8e{bottom:808.305000px;}
.yb4{bottom:808.845000px;}
.y18{bottom:813.525000px;}
.y11b{bottom:821.265000px;}
.ye6{bottom:822.165000px;}
.y8d{bottom:825.585000px;}
.y17{bottom:830.445000px;}
.y56{bottom:830.805000px;}
.y142{bottom:836.565000px;}
.y11a{bottom:839.625000px;}
.y174{bottom:840.165000px;}
.ye5{bottom:840.525000px;}
.y8c{bottom:842.865000px;}
.yb3{bottom:844.125000px;}
.y16{bottom:846.105000px;}
.y55{bottom:848.085000px;}
.y119{bottom:856.905000px;}
.y8b{bottom:857.625000px;}
.ye4{bottom:857.805000px;}
.y173{bottom:858.165000px;}
.y15{bottom:863.565000px;}
.y54{bottom:865.365000px;}
.y118{bottom:875.130000px;}
.y89{bottom:875.670000px;}
.ye3{bottom:876.210000px;}
.y172{bottom:879.450000px;}
.y53{bottom:882.690000px;}
.y14{bottom:887.550000px;}
.y117{bottom:893.490000px;}
.ye2{bottom:894.390000px;}
.y171{bottom:896.550000px;}
.y52{bottom:899.790000px;}
.y13{bottom:903.030000px;}
.y116{bottom:910.770000px;}
.y87{bottom:910.950000px;}
.ye1{bottom:912.750000px;}
.y170{bottom:913.830000px;}
.y51{bottom:917.070000px;}
.y12{bottom:918.510000px;}
.y115{bottom:928.050000px;}
.ye0{bottom:930.030000px;}
.y16f{bottom:931.110000px;}
.y50{bottom:934.350000px;}
.y11{bottom:935.970000px;}
.y114{bottom:945.330000px;}
.y86{bottom:946.050000px;}
.ydf{bottom:948.390000px;}
.y4f{bottom:951.630000px;}
.y10{bottom:959.910000px;}
.y113{bottom:962.610000px;}
.y85{bottom:964.050000px;}
.y16e{bottom:965.670000px;}
.yde{bottom:966.750000px;}
.y4e{bottom:968.910000px;}
.yf{bottom:975.390000px;}
.y112{bottom:977.370000px;}
.y83{bottom:982.050000px;}
.y16d{bottom:982.950000px;}
.ydd{bottom:984.030000px;}
.y4d{bottom:986.190000px;}
.ye{bottom:991.050000px;}
.y111{bottom:995.370000px;}
.y16c{bottom:1000.050000px;}
.ydc{bottom:1002.210000px;}
.y4c{bottom:1003.290000px;}
.yd{bottom:1008.510000px;}
.y110{bottom:1013.370000px;}
.y16b{bottom:1018.410000px;}
.y4b{bottom:1020.570000px;}
.y10f{bottom:1031.370000px;}
.yc{bottom:1032.270000px;}
.y16a{bottom:1036.770000px;}
.y4a{bottom:1037.850000px;}
.y10e{bottom:1049.370000px;}
.yb{bottom:1050.810000px;}
.y49{bottom:1055.130000px;}
.y10d{bottom:1067.370000px;}
.y48{bottom:1072.410000px;}
.ya{bottom:1081.770000px;}
.y10c{bottom:1088.430000px;}
.y47{bottom:1089.510000px;}
.y10b{bottom:1105.710000px;}
.y46{bottom:1106.790000px;}
.y9{bottom:1112.910000px;}
.y10a{bottom:1122.990000px;}
.y45{bottom:1124.070000px;}
.y4{bottom:1143.000000px;}
.y3{bottom:1164.060000px;}
.y2{bottom:1180.620000px;}
.y1{bottom:1197.180000px;}
.y7{bottom:1220.040000px;}
.hf{height:17.100000px;}
.h14{height:17.136000px;}
.h9{height:17.280000px;}
.hb{height:17.316000px;}
.h4{height:18.180000px;}
.h13{height:29.160000px;}
.ha{height:34.380000px;}
.hd{height:34.560000px;}
.he{height:34.596000px;}
.h11{height:41.940000px;}
.h10{height:41.976000px;}
.h7{height:42.164648px;}
.h12{height:43.200000px;}
.h2{height:47.381836px;}
.hc{height:51.660000px;}
.h8{height:52.435898px;}
.h3{height:71.613281px;}
.h6{height:78.969727px;}
.h5{height:94.763672px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:5.760000px;}
.w2d{width:47.880000px;}
.w31{width:59.580000px;}
.w2a{width:68.796000px;}
.w30{width:70.200000px;}
.w2c{width:76.356000px;}
.w23{width:81.540000px;}
.w2e{width:82.080000px;}
.w2f{width:82.116000px;}
.w24{width:82.296000px;}
.w28{width:84.960000px;}
.w25{width:87.120000px;}
.w27{width:88.776000px;}
.w18{width:91.476000px;}
.w1e{width:98.136000px;}
.w35{width:100.080000px;}
.w29{width:107.820000px;}
.w1a{width:109.620000px;}
.w22{width:110.016000px;}
.w15{width:117.900000px;}
.w19{width:119.700000px;}
.wb{width:122.940000px;}
.we{width:127.620000px;}
.w1d{width:135.540000px;}
.w2b{width:135.900000px;}
.w26{width:136.260000px;}
.wa{width:138.996000px;}
.w7{width:140.580000px;}
.w16{width:142.956000px;}
.w33{width:146.376000px;}
.w1b{width:151.590000px;}
.w4{width:153.900000px;}
.w36{width:155.910000px;}
.w20{width:158.790000px;}
.w13{width:160.020000px;}
.w32{width:160.230000px;}
.wf{width:162.540000px;}
.w11{width:168.510000px;}
.w12{width:168.690000px;}
.w8{width:172.650000px;}
.w10{width:173.730000px;}
.wc{width:185.070000px;}
.w17{width:200.730000px;}
.w9{width:221.070000px;}
.w6{width:226.830000px;}
.wd{width:237.855000px;}
.w21{width:278.670000px;}
.w1f{width:280.650000px;}
.w5{width:293.475000px;}
.w34{width:306.750000px;}
.w1c{width:348.375000px;}
.w14{width:381.135000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x12{left:7.740000px;}
.x3{left:76.140000px;}
.x1{left:108.035987px;}
.x5{left:118.295987px;}
.xe{left:131.795987px;}
.xc{left:141.875987px;}
.x4{left:143.855987px;}
.xf{left:161.129987px;}
.x31{left:169.230000px;}
.x9{left:170.489987px;}
.x34{left:209.730000px;}
.x22{left:219.270000px;}
.x1e{left:227.370000px;}
.x18{left:232.410000px;}
.x23{left:245.190000px;}
.x15{left:250.050000px;}
.x8{left:254.369987px;}
.x13{left:263.370000px;}
.x6{left:268.769987px;}
.x1b{left:272.010000px;}
.xb{left:290.414987px;}
.xd{left:321.194987px;}
.x2d{left:327.135000px;}
.x32{left:330.375000px;}
.x2a{left:333.075000px;}
.x11{left:337.214987px;}
.xa{left:340.634987px;}
.x24{left:344.055000px;}
.x35{left:366.375000px;}
.x1f{left:371.055000px;}
.x2e{left:375.915000px;}
.x1d{left:384.374987px;}
.x10{left:386.534987px;}
.x27{left:388.155000px;}
.x36{left:391.574987px;}
.x37{left:396.074987px;}
.x26{left:412.994987px;}
.x19{left:418.215000px;}
.x16{left:423.435000px;}
.x2{left:428.294987px;}
.x7{left:446.474987px;}
.x2f{left:458.715000px;}
.x33{left:477.645000px;}
.x28{left:498.885000px;}
.x2b{left:516.165000px;}
.x30{left:541.545000px;}
.x14{left:557.565000px;}
.x20{left:572.505000px;}
.x29{left:581.145000px;}
.x1c{left:615.705000px;}
.x2c{left:623.985000px;}
.x25{left:625.605000px;}
.x17{left:645.405000px;}
.x1a{left:656.790000px;}
.x21{left:664.710000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls11{letter-spacing:-0.480000pt;}
.ls8{letter-spacing:-0.320000pt;}
.lsc{letter-spacing:-0.314667pt;}
.ls6{letter-spacing:-0.047360pt;}
.ls4{letter-spacing:0.000000pt;}
.lsd{letter-spacing:0.047360pt;}
.ls3{letter-spacing:0.160000pt;}
.lsb{letter-spacing:0.183467pt;}
.ls1{letter-spacing:0.192000pt;}
.ls2{letter-spacing:0.256000pt;}
.lsf{letter-spacing:0.265600pt;}
.lse{letter-spacing:0.272533pt;}
.ls7{letter-spacing:0.320000pt;}
.ls10{letter-spacing:0.592640pt;}
.ls9{letter-spacing:0.800000pt;}
.ls5{letter-spacing:20.432640pt;}
.lsa{letter-spacing:36.432640pt;}
.ls0{letter-spacing:176.800000pt;}
.ws6{word-spacing:-53.120000pt;}
.ws1{word-spacing:-14.656000pt;}
.ws5{word-spacing:-13.600000pt;}
.ws9{word-spacing:-13.552533pt;}
.wsa{word-spacing:-13.545600pt;}
.ws7{word-spacing:-13.463467pt;}
.ws8{word-spacing:-13.327360pt;}
.ws2{word-spacing:-13.280000pt;}
.ws4{word-spacing:-13.232640pt;}
.ws0{word-spacing:-12.000000pt;}
.ws3{word-spacing:0.000000pt;}
._2{margin-left:-163.200000pt;}
._5{margin-left:-10.944000pt;}
._0{margin-left:-7.200000pt;}
._19{margin-left:-5.736960pt;}
._6{margin-left:-4.800000pt;}
._4{margin-left:-3.264000pt;}
._3{margin-left:-1.845333pt;}
._f{margin-left:-0.904960pt;}
._7{width:0.960000pt;}
._a{width:2.174080pt;}
._e{width:3.293440pt;}
._11{width:4.621440pt;}
._b{width:6.234880pt;}
._c{width:7.320320pt;}
._d{width:8.210560pt;}
._9{width:9.823360pt;}
._8{width:10.836480pt;}
._10{width:11.848320pt;}
._12{width:15.048320pt;}
._1{width:16.106667pt;}
._17{width:17.419520pt;}
._1b{width:19.544320pt;}
._18{width:21.672960pt;}
._14{width:23.266560pt;}
._13{width:25.019520pt;}
._1a{width:27.097173pt;}
._16{width:28.043520pt;}
._15{width:29.109760pt;}
._1e{width:30.594133pt;}
._1c{width:32.509440pt;}
._1d{width:36.990507pt;}
.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;}
.y0{bottom:0.000000pt;}
.y8{bottom:0.800000pt;}
.y84{bottom:2.880000pt;}
.y6{bottom:4.160000pt;}
.y14f{bottom:13.440000pt;}
.y18e{bottom:15.200000pt;}
.y88{bottom:18.080000pt;}
.y8a{bottom:18.240000pt;}
.yb2{bottom:18.272000pt;}
.y5{bottom:23.680000pt;}
.y146{bottom:24.800000pt;}
.y14c{bottom:24.826667pt;}
.y143{bottom:24.960000pt;}
.y149{bottom:25.920000pt;}
.y9e{bottom:33.600000pt;}
.y44{bottom:44.480000pt;}
.y169{bottom:47.680000pt;}
.y82{bottom:48.480000pt;}
.yb1{bottom:49.600000pt;}
.ydb{bottom:51.680000pt;}
.y109{bottom:52.480000pt;}
.y19c{bottom:56.000000pt;}
.y43{bottom:59.840000pt;}
.y168{bottom:63.712000pt;}
.y81{bottom:63.872000pt;}
.yda{bottom:66.912000pt;}
.y108{bottom:68.832000pt;}
.y19b{bottom:71.392000pt;}
.y42{bottom:75.232000pt;}
.y141{bottom:77.952000pt;}
.y80{bottom:79.232000pt;}
.y167{bottom:79.712000pt;}
.yb0{bottom:80.992000pt;}
.yd9{bottom:82.272000pt;}
.y107{bottom:84.992000pt;}
.y19a{bottom:86.752000pt;}
.y41{bottom:90.432000pt;}
.y140{bottom:93.312000pt;}
.y7f{bottom:94.432000pt;}
.yd8{bottom:95.392000pt;}
.y166{bottom:95.712000pt;}
.y106{bottom:101.312000pt;}
.y199{bottom:102.112000pt;}
.y40{bottom:105.792000pt;}
.y13f{bottom:108.512000pt;}
.y7e{bottom:109.792000pt;}
.yd7{bottom:111.392000pt;}
.yaf{bottom:112.352000pt;}
.y165{bottom:114.592000pt;}
.y198{bottom:117.312000pt;}
.y105{bottom:117.632000pt;}
.y3f{bottom:121.152000pt;}
.y13e{bottom:124.832000pt;}
.y7d{bottom:125.152000pt;}
.yd6{bottom:127.392000pt;}
.y164{bottom:129.952000pt;}
.y197{bottom:132.672000pt;}
.y104{bottom:132.992000pt;}
.y3e{bottom:136.506667pt;}
.y7c{bottom:140.506667pt;}
.y13d{bottom:141.146667pt;}
.yd5{bottom:143.386667pt;}
.yae{bottom:143.546667pt;}
.y163{bottom:145.306667pt;}
.y103{bottom:148.346667pt;}
.y196{bottom:148.986667pt;}
.y3d{bottom:151.866667pt;}
.y7b{bottom:155.866667pt;}
.y13c{bottom:157.466667pt;}
.yd4{bottom:159.386667pt;}
.y162{bottom:160.666667pt;}
.y102{bottom:163.706667pt;}
.y195{bottom:164.346667pt;}
.y3c{bottom:167.226667pt;}
.y7a{bottom:171.226667pt;}
.y13b{bottom:172.826667pt;}
.yad{bottom:174.906667pt;}
.yd3{bottom:175.386667pt;}
.y161{bottom:175.866667pt;}
.y101{bottom:178.906667pt;}
.y194{bottom:180.666667pt;}
.y3b{bottom:182.426667pt;}
.y79{bottom:186.426667pt;}
.y13a{bottom:188.026667pt;}
.y160{bottom:191.226667pt;}
.yd2{bottom:191.386667pt;}
.yac{bottom:193.786667pt;}
.y100{bottom:195.226667pt;}
.y193{bottom:196.986667pt;}
.y3a{bottom:197.786667pt;}
.y78{bottom:201.786667pt;}
.y139{bottom:203.386667pt;}
.y15f{bottom:206.586667pt;}
.yab{bottom:209.146667pt;}
.yd1{bottom:210.266667pt;}
.yff{bottom:211.546667pt;}
.y192{bottom:212.186667pt;}
.y39{bottom:213.146667pt;}
.y77{bottom:217.146667pt;}
.y138{bottom:219.706667pt;}
.y15e{bottom:221.946667pt;}
.yaa{bottom:224.506667pt;}
.yd0{bottom:225.626667pt;}
.yfe{bottom:226.906667pt;}
.y38{bottom:228.506667pt;}
.y76{bottom:232.506667pt;}
.y137{bottom:236.026667pt;}
.y15d{bottom:237.306667pt;}
.ya9{bottom:239.866667pt;}
.ycf{bottom:240.986667pt;}
.yfd{bottom:243.226667pt;}
.y37{bottom:243.866667pt;}
.y75{bottom:247.866667pt;}
.y136{bottom:252.346667pt;}
.y15c{bottom:252.666667pt;}
.ya8{bottom:255.226667pt;}
.yce{bottom:256.346667pt;}
.yfc{bottom:258.426667pt;}
.y36{bottom:259.226667pt;}
.y74{bottom:263.226667pt;}
.y15b{bottom:264.986667pt;}
.y135{bottom:267.706667pt;}
.ya7{bottom:270.426667pt;}
.ycd{bottom:271.546667pt;}
.yfb{bottom:273.786667pt;}
.y35{bottom:274.426667pt;}
.y191{bottom:275.546667pt;}
.y73{bottom:278.426667pt;}
.y15a{bottom:280.346667pt;}
.y134{bottom:282.906667pt;}
.ya6{bottom:285.786667pt;}
.ycc{bottom:287.866667pt;}
.y190{bottom:289.626667pt;}
.y34{bottom:289.786667pt;}
.yfa{bottom:290.106667pt;}
.y72{bottom:293.786667pt;}
.y159{bottom:295.706667pt;}
.y133{bottom:298.266667pt;}
.ya5{bottom:301.186667pt;}
.ycb{bottom:304.226667pt;}
.y33{bottom:305.186667pt;}
.yf9{bottom:305.506667pt;}
.y18f{bottom:305.666667pt;}
.y71{bottom:309.186667pt;}
.y158{bottom:311.106667pt;}
.y132{bottom:314.626667pt;}
.ya4{bottom:316.546667pt;}
.y32{bottom:320.546667pt;}
.y18d{bottom:321.666667pt;}
.yf8{bottom:321.826667pt;}
.y70{bottom:324.546667pt;}
.y157{bottom:326.466667pt;}
.y131{bottom:330.946667pt;}
.ya3{bottom:331.906667pt;}
.yca{bottom:335.906667pt;}
.yf7{bottom:337.186667pt;}
.y31{bottom:337.826667pt;}
.y6f{bottom:339.906667pt;}
.y18c{bottom:340.546667pt;}
.y156{bottom:342.466667pt;}
.ya2{bottom:347.106667pt;}
.y130{bottom:347.266667pt;}
.yc9{bottom:351.106667pt;}
.yf6{bottom:352.386667pt;}
.y30{bottom:353.186667pt;}
.y6e{bottom:355.106667pt;}
.y18b{bottom:355.746667pt;}
.y155{bottom:360.546667pt;}
.ya1{bottom:362.466667pt;}
.y12f{bottom:363.426667pt;}
.yc8{bottom:366.466667pt;}
.y2f{bottom:368.546667pt;}
.yf5{bottom:368.706667pt;}
.y6d{bottom:370.466667pt;}
.y18a{bottom:371.106667pt;}
.ya0{bottom:375.586667pt;}
.y154{bottom:375.906667pt;}
.y12e{bottom:379.746667pt;}
.yc7{bottom:381.826667pt;}
.y2e{bottom:383.906667pt;}
.yf4{bottom:384.066667pt;}
.y6c{bottom:385.826667pt;}
.y189{bottom:386.466667pt;}
.y153{bottom:391.266667pt;}
.y12d{bottom:395.106667pt;}
.yc6{bottom:397.186667pt;}
.y2d{bottom:399.106667pt;}
.yf3{bottom:399.426667pt;}
.y6b{bottom:401.186667pt;}
.y188{bottom:401.826667pt;}
.y152{bottom:406.626667pt;}
.y9f{bottom:406.946667pt;}
.y12c{bottom:408.226667pt;}
.yc5{bottom:412.546667pt;}
.y2c{bottom:414.466667pt;}
.y6a{bottom:416.546667pt;}
.y187{bottom:417.186667pt;}
.y151{bottom:421.986667pt;}
.yc4{bottom:427.906667pt;}
.y2b{bottom:429.826667pt;}
.y69{bottom:431.906667pt;}
.y186{bottom:433.506667pt;}
.y150{bottom:437.346667pt;}
.y9d{bottom:438.306667pt;}
.y12b{bottom:439.586667pt;}
.yc3{bottom:443.106667pt;}
.yf2{bottom:443.906667pt;}
.y2a{bottom:445.186667pt;}
.y68{bottom:447.106667pt;}
.y185{bottom:449.666667pt;}
.y14e{bottom:450.466667pt;}
.yc2{bottom:458.466667pt;}
.y29{bottom:460.546667pt;}
.y67{bottom:462.466667pt;}
.y184{bottom:465.026667pt;}
.y12a{bottom:470.946667pt;}
.yc1{bottom:473.826667pt;}
.yf1{bottom:475.106667pt;}
.y28{bottom:475.906667pt;}
.y14d{bottom:477.026667pt;}
.y66{bottom:477.826667pt;}
.y183{bottom:480.386667pt;}
.y9c{bottom:485.026667pt;}
.yc0{bottom:489.186667pt;}
.y27{bottom:491.106667pt;}
.y65{bottom:493.186667pt;}
.y182{bottom:495.746667pt;}
.y129{bottom:502.146667pt;}
.ybf{bottom:504.546667pt;}
.y26{bottom:506.466667pt;}
.y64{bottom:508.546667pt;}
.y181{bottom:511.106667pt;}
.y14b{bottom:514.946667pt;}
.y9b{bottom:519.106667pt;}
.ybe{bottom:519.906667pt;}
.y128{bottom:521.026667pt;}
.y25{bottom:521.826667pt;}
.y63{bottom:523.906667pt;}
.y180{bottom:527.266667pt;}
.y9a{bottom:534.466667pt;}
.ybd{bottom:535.106667pt;}
.y127{bottom:536.386667pt;}
.y24{bottom:537.213333pt;}
.yf0{bottom:537.853333pt;}
.y62{bottom:539.133333pt;}
.y17f{bottom:543.613333pt;}
.y99{bottom:549.853333pt;}
.ybc{bottom:550.493333pt;}
.y126{bottom:551.773333pt;}
.y23{bottom:552.573333pt;}
.y14a{bottom:552.893333pt;}
.y61{bottom:554.493333pt;}
.y17e{bottom:558.973333pt;}
.y98{bottom:565.213333pt;}
.ybb{bottom:565.853333pt;}
.y22{bottom:567.933333pt;}
.y125{bottom:568.093333pt;}
.yef{bottom:569.213333pt;}
.y60{bottom:569.853333pt;}
.y17d{bottom:574.333333pt;}
.y97{bottom:580.573333pt;}
.yba{bottom:581.213333pt;}
.y21{bottom:583.133333pt;}
.y124{bottom:584.413333pt;}
.y5f{bottom:585.213333pt;}
.y17c{bottom:589.693333pt;}
.y148{bottom:590.813333pt;}
.y96{bottom:595.933333pt;}
.yb9{bottom:596.573333pt;}
.y20{bottom:598.493333pt;}
.y5e{bottom:600.573333pt;}
.y123{bottom:600.733333pt;}
.y17b{bottom:602.813333pt;}
.yee{bottom:603.453333pt;}
.y95{bottom:611.133333pt;}
.yb8{bottom:611.773333pt;}
.y1f{bottom:613.853333pt;}
.y5d{bottom:615.773333pt;}
.y122{bottom:616.893333pt;}
.yed{bottom:618.813333pt;}
.yb7{bottom:624.893333pt;}
.y94{bottom:626.493333pt;}
.y1e{bottom:629.213333pt;}
.y147{bottom:629.853333pt;}
.y5c{bottom:631.133333pt;}
.y121{bottom:633.213333pt;}
.y17a{bottom:634.813333pt;}
.yec{bottom:634.973333pt;}
.y93{bottom:641.853333pt;}
.y1d{bottom:644.573333pt;}
.y5b{bottom:646.493333pt;}
.y120{bottom:649.533333pt;}
.y179{bottom:650.813333pt;}
.yeb{bottom:651.293333pt;}
.yb6{bottom:656.253333pt;}
.y92{bottom:657.213333pt;}
.y1c{bottom:659.773333pt;}
.y5a{bottom:661.853333pt;}
.y11f{bottom:665.853333pt;}
.yea{bottom:666.653333pt;}
.y178{bottom:666.813333pt;}
.y145{bottom:667.773333pt;}
.y91{bottom:672.573333pt;}
.y1b{bottom:675.133333pt;}
.y59{bottom:677.213333pt;}
.y11e{bottom:682.173333pt;}
.y177{bottom:682.813333pt;}
.ye9{bottom:682.973333pt;}
.yb5{bottom:687.613333pt;}
.y90{bottom:687.773333pt;}
.y1a{bottom:690.493333pt;}
.y58{bottom:692.573333pt;}
.y11d{bottom:697.373333pt;}
.y176{bottom:698.813333pt;}
.ye8{bottom:699.293333pt;}
.y8f{bottom:703.133333pt;}
.y144{bottom:705.693333pt;}
.y19{bottom:705.853333pt;}
.y57{bottom:707.773333pt;}
.y11c{bottom:713.693333pt;}
.ye7{bottom:714.493333pt;}
.y175{bottom:714.813333pt;}
.y8e{bottom:718.493333pt;}
.yb4{bottom:718.973333pt;}
.y18{bottom:723.133333pt;}
.y11b{bottom:730.013333pt;}
.ye6{bottom:730.813333pt;}
.y8d{bottom:733.853333pt;}
.y17{bottom:738.173333pt;}
.y56{bottom:738.493333pt;}
.y142{bottom:743.613333pt;}
.y11a{bottom:746.333333pt;}
.y174{bottom:746.813333pt;}
.ye5{bottom:747.133333pt;}
.y8c{bottom:749.213333pt;}
.yb3{bottom:750.333333pt;}
.y16{bottom:752.093333pt;}
.y55{bottom:753.853333pt;}
.y119{bottom:761.693333pt;}
.y8b{bottom:762.333333pt;}
.ye4{bottom:762.493333pt;}
.y173{bottom:762.813333pt;}
.y15{bottom:767.613333pt;}
.y54{bottom:769.213333pt;}
.y118{bottom:777.893333pt;}
.y89{bottom:778.373333pt;}
.ye3{bottom:778.853333pt;}
.y172{bottom:781.733333pt;}
.y53{bottom:784.613333pt;}
.y14{bottom:788.933333pt;}
.y117{bottom:794.213333pt;}
.ye2{bottom:795.013333pt;}
.y171{bottom:796.933333pt;}
.y52{bottom:799.813333pt;}
.y13{bottom:802.693333pt;}
.y116{bottom:809.573333pt;}
.y87{bottom:809.733333pt;}
.ye1{bottom:811.333333pt;}
.y170{bottom:812.293333pt;}
.y51{bottom:815.173333pt;}
.y12{bottom:816.453333pt;}
.y115{bottom:824.933333pt;}
.ye0{bottom:826.693333pt;}
.y16f{bottom:827.653333pt;}
.y50{bottom:830.533333pt;}
.y11{bottom:831.973333pt;}
.y114{bottom:840.293333pt;}
.y86{bottom:840.933333pt;}
.ydf{bottom:843.013333pt;}
.y4f{bottom:845.893333pt;}
.y10{bottom:853.253333pt;}
.y113{bottom:855.653333pt;}
.y85{bottom:856.933333pt;}
.y16e{bottom:858.373333pt;}
.yde{bottom:859.333333pt;}
.y4e{bottom:861.253333pt;}
.yf{bottom:867.013333pt;}
.y112{bottom:868.773333pt;}
.y83{bottom:872.933333pt;}
.y16d{bottom:873.733333pt;}
.ydd{bottom:874.693333pt;}
.y4d{bottom:876.613333pt;}
.ye{bottom:880.933333pt;}
.y111{bottom:884.773333pt;}
.y16c{bottom:888.933333pt;}
.ydc{bottom:890.853333pt;}
.y4c{bottom:891.813333pt;}
.yd{bottom:896.453333pt;}
.y110{bottom:900.773333pt;}
.y16b{bottom:905.253333pt;}
.y4b{bottom:907.173333pt;}
.y10f{bottom:916.773333pt;}
.yc{bottom:917.573333pt;}
.y16a{bottom:921.573333pt;}
.y4a{bottom:922.533333pt;}
.y10e{bottom:932.773333pt;}
.yb{bottom:934.053333pt;}
.y49{bottom:937.893333pt;}
.y10d{bottom:948.773333pt;}
.y48{bottom:953.253333pt;}
.ya{bottom:961.573333pt;}
.y10c{bottom:967.493333pt;}
.y47{bottom:968.453333pt;}
.y10b{bottom:982.853333pt;}
.y46{bottom:983.813333pt;}
.y9{bottom:989.253333pt;}
.y10a{bottom:998.213333pt;}
.y45{bottom:999.173333pt;}
.y4{bottom:1016.000000pt;}
.y3{bottom:1034.720000pt;}
.y2{bottom:1049.440000pt;}
.y1{bottom:1064.160000pt;}
.y7{bottom:1084.480000pt;}
.hf{height:15.200000pt;}
.h14{height:15.232000pt;}
.h9{height:15.360000pt;}
.hb{height:15.392000pt;}
.h4{height:16.160000pt;}
.h13{height:25.920000pt;}
.ha{height:30.560000pt;}
.hd{height:30.720000pt;}
.he{height:30.752000pt;}
.h11{height:37.280000pt;}
.h10{height:37.312000pt;}
.h7{height:37.479688pt;}
.h12{height:38.400000pt;}
.h2{height:42.117188pt;}
.hc{height:45.920000pt;}
.h8{height:46.609688pt;}
.h3{height:63.656250pt;}
.h6{height:70.195312pt;}
.h5{height:84.234375pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:5.120000pt;}
.w2d{width:42.560000pt;}
.w31{width:52.960000pt;}
.w2a{width:61.152000pt;}
.w30{width:62.400000pt;}
.w2c{width:67.872000pt;}
.w23{width:72.480000pt;}
.w2e{width:72.960000pt;}
.w2f{width:72.992000pt;}
.w24{width:73.152000pt;}
.w28{width:75.520000pt;}
.w25{width:77.440000pt;}
.w27{width:78.912000pt;}
.w18{width:81.312000pt;}
.w1e{width:87.232000pt;}
.w35{width:88.960000pt;}
.w29{width:95.840000pt;}
.w1a{width:97.440000pt;}
.w22{width:97.792000pt;}
.w15{width:104.800000pt;}
.w19{width:106.400000pt;}
.wb{width:109.280000pt;}
.we{width:113.440000pt;}
.w1d{width:120.480000pt;}
.w2b{width:120.800000pt;}
.w26{width:121.120000pt;}
.wa{width:123.552000pt;}
.w7{width:124.960000pt;}
.w16{width:127.072000pt;}
.w33{width:130.112000pt;}
.w1b{width:134.746667pt;}
.w4{width:136.800000pt;}
.w36{width:138.586667pt;}
.w20{width:141.146667pt;}
.w13{width:142.240000pt;}
.w32{width:142.426667pt;}
.wf{width:144.480000pt;}
.w11{width:149.786667pt;}
.w12{width:149.946667pt;}
.w8{width:153.466667pt;}
.w10{width:154.426667pt;}
.wc{width:164.506667pt;}
.w17{width:178.426667pt;}
.w9{width:196.506667pt;}
.w6{width:201.626667pt;}
.wd{width:211.426667pt;}
.w21{width:247.706667pt;}
.w1f{width:249.466667pt;}
.w5{width:260.866667pt;}
.w34{width:272.666667pt;}
.w1c{width:309.666667pt;}
.w14{width:338.786667pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x12{left:6.880000pt;}
.x3{left:67.680000pt;}
.x1{left:96.031988pt;}
.x5{left:105.151988pt;}
.xe{left:117.151988pt;}
.xc{left:126.111988pt;}
.x4{left:127.871988pt;}
.xf{left:143.226655pt;}
.x31{left:150.426667pt;}
.x9{left:151.546655pt;}
.x34{left:186.426667pt;}
.x22{left:194.906667pt;}
.x1e{left:202.106667pt;}
.x18{left:206.586667pt;}
.x23{left:217.946667pt;}
.x15{left:222.266667pt;}
.x8{left:226.106655pt;}
.x13{left:234.106667pt;}
.x6{left:238.906655pt;}
.x1b{left:241.786667pt;}
.xb{left:258.146655pt;}
.xd{left:285.506655pt;}
.x2d{left:290.786667pt;}
.x32{left:293.666667pt;}
.x2a{left:296.066667pt;}
.x11{left:299.746655pt;}
.xa{left:302.786655pt;}
.x24{left:305.826667pt;}
.x35{left:325.666667pt;}
.x1f{left:329.826667pt;}
.x2e{left:334.146667pt;}
.x1d{left:341.666655pt;}
.x10{left:343.586655pt;}
.x27{left:345.026667pt;}
.x36{left:348.066655pt;}
.x37{left:352.066655pt;}
.x26{left:367.106655pt;}
.x19{left:371.746667pt;}
.x16{left:376.386667pt;}
.x2{left:380.706655pt;}
.x7{left:396.866655pt;}
.x2f{left:407.746667pt;}
.x33{left:424.573333pt;}
.x28{left:443.453333pt;}
.x2b{left:458.813333pt;}
.x30{left:481.373333pt;}
.x14{left:495.613333pt;}
.x20{left:508.893333pt;}
.x29{left:516.573333pt;}
.x1c{left:547.293333pt;}
.x2c{left:554.653333pt;}
.x25{left:556.093333pt;}
.x17{left:573.693333pt;}
.x1a{left:583.813333pt;}
.x21{left:590.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; }
  