
    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_10230cbcb60ee179e5d86417.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_fe04b75d6d36aa95fa91e3cd.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.914062;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_945d4d39b762b143e1bc21aa.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.854004;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_13c7c4da9540ae467ecf6342.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_27ecb649bf9beb584b25b551.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.003906;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_a4330831dda60df521e7a9d6.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.914062;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_944ae98208cb0ca4df4e643f.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.999512;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_4579bff5bdad0c7d4e6fe997.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.740234;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_ecf06d85db0e8225331f4e7a.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.999512;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:ffa;src:url('chunks/assets/font_6193fc93719873dbca485474.woff2')format("woff");}.ffa{font-family:ffa;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);}
.v2{vertical-align:-20.880000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.760000px;}
.ls1{letter-spacing:-0.720000px;}
.ls9{letter-spacing:-0.612000px;}
.ls4{letter-spacing:-0.540000px;}
.ls5{letter-spacing:-0.360000px;}
.lsa{letter-spacing:-0.259800px;}
.ls13{letter-spacing:-0.106800px;}
.lsb{letter-spacing:-0.053280px;}
.ls0{letter-spacing:0.000000px;}
.lsd{letter-spacing:0.053280px;}
.ls12{letter-spacing:0.106800px;}
.ls11{letter-spacing:0.135600px;}
.ls3{letter-spacing:0.180000px;}
.ls2{letter-spacing:0.259800px;}
.lsf{letter-spacing:0.298800px;}
.ls7{letter-spacing:0.360000px;}
.lse{letter-spacing:0.828000px;}
.ls14{letter-spacing:16.506720px;}
.lsc{letter-spacing:33.066720px;}
.ls6{letter-spacing:36.666720px;}
.ls8{letter-spacing:46.026720px;}
.ls10{letter-spacing:49.626720px;}
.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;}
}
.ws0{word-spacing:-16.560000px;}
.ws2{word-spacing:-15.840000px;}
.ws6{word-spacing:-15.300000px;}
.ws9{word-spacing:-15.046800px;}
.ws8{word-spacing:-14.993280px;}
.ws3{word-spacing:-14.940000px;}
.ws7{word-spacing:-14.886720px;}
.ws5{word-spacing:-14.680200px;}
.ws1{word-spacing:-10.440000px;}
.ws4{word-spacing:0.000000px;}
._25{margin-left:-8.307840px;}
._22{margin-left:-7.090080px;}
._12{margin-left:-5.718960px;}
._13{margin-left:-4.152960px;}
._14{margin-left:-2.215920px;}
._0{margin-left:-1.080000px;}
._11{width:1.149120px;}
._1{width:2.220000px;}
._1b{width:3.266160px;}
._18{width:4.672080px;}
._1c{width:5.739120px;}
._16{width:7.228800px;}
._1d{width:8.665200px;}
._1e{width:9.679440px;}
._6{width:10.800000px;}
._17{width:12.027600px;}
._15{width:13.087440px;}
._1a{width:16.429920px;}
._19{width:17.826720px;}
._f{width:18.948000px;}
._20{width:20.288160px;}
._1f{width:21.513600px;}
._27{width:24.455520px;}
._28{width:25.604640px;}
._26{width:26.639280px;}
._21{width:44.999280px;}
._23{width:59.281920px;}
._7{width:76.284960px;}
._24{width:93.942720px;}
._10{width:99.660000px;}
._8{width:154.080000px;}
._c{width:195.120000px;}
._e{width:199.584000px;}
._2{width:255.512640px;}
._3{width:357.300000px;}
._4{width:388.054560px;}
._5{width:436.440000px;}
._9{width:604.364160px;}
._d{width:637.320000px;}
._a{width:1096.860000px;}
._b{width:1176.060000px;}
.fc2{color:rgb(5,99,193);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(0,112,192);}
.fs3{font-size:2.880000px;}
.fs7{font-size:38.880000px;}
.fs5{font-size:41.760000px;}
.fs2{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs4{font-size:72.000000px;}
.fs0{font-size:90.000000px;}
.fs6{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.ye{bottom:5.760000px;}
.y6a{bottom:5.940000px;}
.y124{bottom:7.200000px;}
.ya0{bottom:7.380000px;}
.ya2{bottom:7.560000px;}
.yae{bottom:7.590000px;}
.yca{bottom:7.605000px;}
.y6{bottom:12.600000px;}
.y55{bottom:15.660000px;}
.y59{bottom:15.705000px;}
.y6d{bottom:15.840000px;}
.y8{bottom:18.180000px;}
.y56{bottom:25.560000px;}
.y5a{bottom:25.605000px;}
.y6e{bottom:25.740000px;}
.y121{bottom:29.880000px;}
.y133{bottom:35.460000px;}
.y122{bottom:35.640000px;}
.yc{bottom:36.000000px;}
.y5{bottom:40.500000px;}
.y87{bottom:45.360000px;}
.y83{bottom:45.405000px;}
.y80{bottom:45.540000px;}
.yb{bottom:57.780000px;}
.y4{bottom:68.400000px;}
.yd{bottom:75.960000px;}
.ya{bottom:79.560000px;}
.y3{bottom:96.510000px;}
.y15b{bottom:103.680000px;}
.y132{bottom:104.400000px;}
.y118{bottom:110.340000px;}
.y177{bottom:111.240000px;}
.y68{bottom:111.600000px;}
.y9c{bottom:117.720000px;}
.yee{bottom:118.800000px;}
.yb8{bottom:120.780000px;}
.y15a{bottom:123.480000px;}
.y8c{bottom:124.020000px;}
.y131{bottom:124.200000px;}
.y2{bottom:125.850000px;}
.y39{bottom:128.160000px;}
.y117{bottom:130.140000px;}
.y176{bottom:131.220000px;}
.y67{bottom:131.400000px;}
.y174{bottom:133.380000px;}
.y9b{bottom:134.280000px;}
.yed{bottom:138.600000px;}
.y159{bottom:143.460000px;}
.y8b{bottom:143.820000px;}
.y130{bottom:144.180000px;}
.yc4{bottom:144.720000px;}
.y38{bottom:147.960000px;}
.y116{bottom:150.120000px;}
.y175{bottom:150.840000px;}
.y66{bottom:151.380000px;}
.y173{bottom:153.210000px;}
.yec{bottom:158.610000px;}
.y158{bottom:163.290000px;}
.y8a{bottom:163.650000px;}
.y12f{bottom:164.010000px;}
.y115{bottom:167.430000px;}
.y37{bottom:167.970000px;}
.yc3{bottom:168.690000px;}
.y65{bottom:171.210000px;}
.y172{bottom:173.010000px;}
.y9f{bottom:177.345000px;}
.yeb{bottom:178.410000px;}
.y114{bottom:182.190000px;}
.y157{bottom:183.090000px;}
.y89{bottom:183.450000px;}
.y12e{bottom:183.810000px;}
.y36{bottom:187.770000px;}
.y64{bottom:191.010000px;}
.yc2{bottom:192.810000px;}
.y171{bottom:192.990000px;}
.yea{bottom:198.210000px;}
.y156{bottom:202.890000px;}
.y88{bottom:203.430000px;}
.y12d{bottom:203.610000px;}
.y113{bottom:205.410000px;}
.y35{bottom:207.570000px;}
.y63{bottom:210.810000px;}
.y170{bottom:212.790000px;}
.yc1{bottom:216.750000px;}
.ye9{bottom:218.010000px;}
.y86{bottom:218.190000px;}
.y155{bottom:222.690000px;}
.y12c{bottom:223.410000px;}
.y34{bottom:227.370000px;}
.y112{bottom:228.630000px;}
.y62{bottom:230.610000px;}
.y16f{bottom:232.590000px;}
.ye8{bottom:237.810000px;}
.yc0{bottom:240.690000px;}
.y154{bottom:242.670000px;}
.y12b{bottom:243.390000px;}
.y33{bottom:247.170000px;}
.y61{bottom:250.590000px;}
.y16e{bottom:252.390000px;}
.y111{bottom:257.610000px;}
.y153{bottom:262.470000px;}
.y12a{bottom:263.190000px;}
.ybf{bottom:264.810000px;}
.ye7{bottom:266.790000px;}
.y32{bottom:267.150000px;}
.y60{bottom:270.390000px;}
.y16d{bottom:272.190000px;}
.yb9{bottom:273.090000px;}
.y110{bottom:277.410000px;}
.y85{bottom:278.310000px;}
.y152{bottom:282.270000px;}
.y129{bottom:282.990000px;}
.ye6{bottom:286.590000px;}
.y31{bottom:286.950000px;}
.ybe{bottom:288.750000px;}
.y16c{bottom:292.170000px;}
.y10f{bottom:294.690000px;}
.y5f{bottom:299.190000px;}
.y151{bottom:302.070000px;}
.y128{bottom:302.790000px;}
.ye5{bottom:306.390000px;}
.y16b{bottom:311.970000px;}
.ybd{bottom:312.690000px;}
.y10e{bottom:314.490000px;}
.y30{bottom:315.750000px;}
.y5e{bottom:318.990000px;}
.ya9{bottom:321.150000px;}
.y150{bottom:321.870000px;}
.y127{bottom:322.590000px;}
.ye4{bottom:326.190000px;}
.y16a{bottom:331.770000px;}
.y10d{bottom:334.470000px;}
.y2f{bottom:335.550000px;}
.ybc{bottom:336.810000px;}
.y126{bottom:337.530000px;}
.y84{bottom:338.610000px;}
.y5d{bottom:338.790000px;}
.ye3{bottom:340.950000px;}
.y14f{bottom:341.850000px;}
.y169{bottom:351.570000px;}
.y10c{bottom:354.270000px;}
.y2e{bottom:355.350000px;}
.y5c{bottom:358.770000px;}
.ybb{bottom:360.750000px;}
.ye2{bottom:364.350000px;}
.y14e{bottom:370.650000px;}
.y168{bottom:371.370000px;}
.y10b{bottom:374.070000px;}
.y2d{bottom:375.330000px;}
.y125{bottom:377.850000px;}
.y5b{bottom:378.570000px;}
.y82{bottom:379.110000px;}
.yba{bottom:384.690000px;}
.ye1{bottom:387.570000px;}
.y14d{bottom:390.450000px;}
.y10a{bottom:391.350000px;}
.y58{bottom:393.330000px;}
.y2c{bottom:395.130000px;}
.y123{bottom:401.115000px;}
.y109{bottom:406.155000px;}
.ya8{bottom:408.855000px;}
.y14c{bottom:410.295000px;}
.ye0{bottom:410.835000px;}
.y167{bottom:411.195000px;}
.y2b{bottom:414.975000px;}
.y120{bottom:424.335000px;}
.y108{bottom:429.375000px;}
.y166{bottom:430.995000px;}
.yb7{bottom:432.795000px;}
.y57{bottom:433.875000px;}
.y2a{bottom:434.775000px;}
.y14b{bottom:439.095000px;}
.y81{bottom:439.455000px;}
.y165{bottom:450.795000px;}
.y107{bottom:452.595000px;}
.y29{bottom:454.575000px;}
.yb6{bottom:456.735000px;}
.ydf{bottom:457.095000px;}
.y14a{bottom:459.075000px;}
.y164{bottom:470.595000px;}
.y54{bottom:474.195000px;}
.y28{bottom:474.555000px;}
.y106{bottom:475.995000px;}
.yde{bottom:476.895000px;}
.y149{bottom:478.875000px;}
.y7f{bottom:479.775000px;}
.yb5{bottom:480.855000px;}
.y11f{bottom:490.395000px;}
.y163{bottom:490.575000px;}
.y27{bottom:494.355000px;}
.ydd{bottom:496.695000px;}
.yb4{bottom:504.795000px;}
.y105{bottom:504.975000px;}
.y148{bottom:507.675000px;}
.y11e{bottom:510.375000px;}
.y26{bottom:514.155000px;}
.y53{bottom:514.695000px;}
.ydc{bottom:516.495000px;}
.y104{bottom:524.775000px;}
.y147{bottom:527.475000px;}
.yb3{bottom:528.735000px;}
.y11d{bottom:530.175000px;}
.y25{bottom:533.955000px;}
.ydb{bottom:536.295000px;}
.y7e{bottom:540.075000px;}
.y52{bottom:540.975000px;}
.y103{bottom:542.055000px;}
.y146{bottom:547.275000px;}
.y11c{bottom:549.975000px;}
.yb2{bottom:552.855000px;}
.y24{bottom:553.755000px;}
.yda{bottom:556.275000px;}
.y51{bottom:560.775000px;}
.y102{bottom:561.855000px;}
.y7d{bottom:566.355000px;}
.y145{bottom:567.255000px;}
.y11b{bottom:569.775000px;}
.y23{bottom:573.735000px;}
.yd9{bottom:576.075000px;}
.yb1{bottom:576.795000px;}
.y50{bottom:580.755000px;}
.y101{bottom:581.655000px;}
.y7c{bottom:586.335000px;}
.y11a{bottom:589.575000px;}
.y162{bottom:589.755000px;}
.yd8{bottom:590.835000px;}
.y22{bottom:593.535000px;}
.y144{bottom:596.055000px;}
.y4f{bottom:600.555000px;}
.yb0{bottom:600.735000px;}
.y100{bottom:601.635000px;}
.y7b{bottom:606.135000px;}
.y119{bottom:606.315000px;}
.y161{bottom:609.555000px;}
.y21{bottom:613.335000px;}
.yd7{bottom:614.055000px;}
.y143{bottom:615.855000px;}
.y4e{bottom:620.355000px;}
.yff{bottom:621.435000px;}
.yaf{bottom:624.855000px;}
.y7a{bottom:625.935000px;}
.y160{bottom:629.355000px;}
.y20{bottom:633.135000px;}
.y142{bottom:635.655000px;}
.yd6{bottom:637.275000px;}
.y4d{bottom:640.155000px;}
.yfe{bottom:641.235000px;}
.yad{bottom:648.795000px;}
.y15f{bottom:649.185000px;}
.y1f{bottom:652.965000px;}
.y79{bottom:654.765000px;}
.y141{bottom:655.485000px;}
.yfd{bottom:656.025000px;}
.y4c{bottom:659.985000px;}
.yd5{bottom:660.705000px;}
.y15e{bottom:668.985000px;}
.yac{bottom:672.765000px;}
.y1e{bottom:672.945000px;}
.y78{bottom:674.565000px;}
.y140{bottom:675.465000px;}
.yfc{bottom:679.245000px;}
.y4b{bottom:679.965000px;}
.y15d{bottom:688.965000px;}
.yd4{bottom:689.685000px;}
.y1d{bottom:692.745000px;}
.y77{bottom:694.545000px;}
.yab{bottom:696.885000px;}
.y4a{bottom:699.765000px;}
.yfb{bottom:702.465000px;}
.y13f{bottom:704.265000px;}
.y15c{bottom:708.765000px;}
.yd3{bottom:709.485000px;}
.y1c{bottom:712.545000px;}
.y76{bottom:714.345000px;}
.y49{bottom:719.565000px;}
.yaa{bottom:720.825000px;}
.y13e{bottom:724.065000px;}
.y9a{bottom:728.565000px;}
.yd2{bottom:729.285000px;}
.yfa{bottom:731.625000px;}
.y1b{bottom:732.345000px;}
.y48{bottom:739.365000px;}
.y75{bottom:743.145000px;}
.y13d{bottom:743.865000px;}
.y9e{bottom:744.765000px;}
.y99{bottom:748.365000px;}
.yd1{bottom:749.085000px;}
.yf9{bottom:751.425000px;}
.y1a{bottom:752.145000px;}
.y47{bottom:759.165000px;}
.y74{bottom:762.945000px;}
.y13c{bottom:763.665000px;}
.y98{bottom:768.165000px;}
.ya7{bottom:768.885000px;}
.yd0{bottom:769.065000px;}
.yf8{bottom:771.225000px;}
.y19{bottom:772.125000px;}
.y46{bottom:779.145000px;}
.y73{bottom:782.745000px;}
.y13b{bottom:783.645000px;}
.y97{bottom:788.145000px;}
.ycf{bottom:788.865000px;}
.y18{bottom:791.925000px;}
.ya6{bottom:792.825000px;}
.y45{bottom:798.945000px;}
.y72{bottom:802.725000px;}
.y13a{bottom:803.445000px;}
.y96{bottom:807.945000px;}
.yf7{bottom:809.025000px;}
.y17{bottom:811.725000px;}
.ya5{bottom:816.765000px;}
.y71{bottom:817.485000px;}
.yce{bottom:817.665000px;}
.y44{bottom:818.745000px;}
.y139{bottom:823.245000px;}
.y95{bottom:827.745000px;}
.yf6{bottom:829.005000px;}
.y16{bottom:831.525000px;}
.ycd{bottom:837.465000px;}
.y43{bottom:838.545000px;}
.ya4{bottom:840.885000px;}
.y138{bottom:843.045000px;}
.yf5{bottom:846.285000px;}
.y94{bottom:847.545000px;}
.y15{bottom:851.325000px;}
.ycc{bottom:857.265000px;}
.y70{bottom:857.805000px;}
.y42{bottom:858.345000px;}
.yf4{bottom:861.045000px;}
.y137{bottom:862.845000px;}
.ya3{bottom:864.825000px;}
.y93{bottom:867.345000px;}
.ycb{bottom:872.205000px;}
.y14{bottom:876.525000px;}
.y41{bottom:878.325000px;}
.y136{bottom:882.825000px;}
.yf3{bottom:884.265000px;}
.y92{bottom:887.325000px;}
.ya1{bottom:888.765000px;}
.y13{bottom:891.645000px;}
.yc9{bottom:896.145000px;}
.y40{bottom:898.170000px;}
.y6f{bottom:898.350000px;}
.y135{bottom:902.670000px;}
.y91{bottom:907.170000px;}
.yf2{bottom:907.530000px;}
.y12{bottom:912.930000px;}
.y3f{bottom:917.970000px;}
.y134{bottom:918.150000px;}
.y6c{bottom:918.870000px;}
.yc8{bottom:920.130000px;}
.y90{bottom:926.970000px;}
.yf1{bottom:930.750000px;}
.y11{bottom:936.330000px;}
.y9d{bottom:936.870000px;}
.y3e{bottom:937.770000px;}
.yc7{bottom:944.250000px;}
.y8f{bottom:946.770000px;}
.yf0{bottom:953.970000px;}
.y3d{bottom:957.570000px;}
.y6b{bottom:959.370000px;}
.y8e{bottom:966.570000px;}
.y10{bottom:968.190000px;}
.yef{bottom:977.190000px;}
.y3c{bottom:977.550000px;}
.y8d{bottom:986.550000px;}
.yc6{bottom:992.130000px;}
.y69{bottom:999.690000px;}
.yf{bottom:999.870000px;}
.y3b{bottom:1006.350000px;}
.yc5{bottom:1016.250000px;}
.y3a{bottom:1026.150000px;}
.y9{bottom:1045.230000px;}
.y1{bottom:1062.870000px;}
.y7{bottom:1097.250000px;}
.h6{height:2.010938px;}
.h12{height:19.800000px;}
.h16{height:19.980000px;}
.hb{height:21.240000px;}
.h20{height:22.500000px;}
.h21{height:22.536000px;}
.h1b{height:23.220000px;}
.h1d{height:23.256000px;}
.hf{height:27.147656px;}
.h7{height:33.480000px;}
.h13{height:39.600000px;}
.h14{height:39.636000px;}
.h17{height:39.780000px;}
.he{height:41.726953px;}
.h10{height:42.164648px;}
.h15{height:43.506914px;}
.h11{height:45.024258px;}
.hc{height:46.251562px;}
.h4{height:46.736719px;}
.h9{height:53.224453px;}
.h1a{height:59.400000px;}
.h19{height:59.436000px;}
.h18{height:59.580000px;}
.h8{height:60.855469px;}
.h3{height:63.500977px;}
.ha{height:65.884219px;}
.hd{height:67.565039px;}
.h5{height:112.536000px;}
.h2{height:146.916000px;}
.h1c{height:191.370000px;}
.h1f{height:287.175000px;}
.h1e{height:335.190000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w5{width:9.900000px;}
.w6{width:39.240000px;}
.wb{width:41.940000px;}
.w38{width:59.400000px;}
.w35{width:80.280000px;}
.w2d{width:80.820000px;}
.w30{width:84.276000px;}
.w2e{width:85.896000px;}
.w2c{width:86.076000px;}
.w32{width:86.436000px;}
.w36{width:86.940000px;}
.w34{width:93.096000px;}
.w3a{width:93.816000px;}
.w37{width:94.716000px;}
.w2f{width:95.220000px;}
.wf{width:113.616000px;}
.w25{width:114.696000px;}
.w27{width:115.056000px;}
.w20{width:124.956000px;}
.w23{width:125.316000px;}
.w3{width:130.716000px;}
.w10{width:131.616000px;}
.w16{width:155.730000px;}
.w1a{width:156.270000px;}
.we{width:159.870000px;}
.w19{width:175.530000px;}
.w22{width:175.710000px;}
.w15{width:176.430000px;}
.w21{width:182.190000px;}
.w18{width:188.355000px;}
.w1d{width:194.970000px;}
.w2a{width:195.330000px;}
.w29{width:195.510000px;}
.w28{width:196.275000px;}
.w17{width:202.710000px;}
.wc{width:204.690000px;}
.w9{width:205.050000px;}
.w7{width:205.230000px;}
.w1c{width:239.655000px;}
.w1f{width:240.015000px;}
.w39{width:241.590000px;}
.w33{width:243.030000px;}
.w31{width:289.695000px;}
.w2b{width:290.415000px;}
.w12{width:319.395000px;}
.w14{width:319.755000px;}
.w1e{width:348.375000px;}
.w1b{width:349.095000px;}
.w26{width:351.795000px;}
.w24{width:352.515000px;}
.wd{width:438.915000px;}
.w8{width:441.075000px;}
.wa{width:441.255000px;}
.w13{width:463.965000px;}
.w11{width:464.685000px;}
.w2{width:649.410000px;}
.w4{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:8.100000px;}
.x5{left:53.999987px;}
.x1{left:56.520000px;}
.x7{left:65.699987px;}
.x23{left:74.339987px;}
.xf{left:80.999987px;}
.x19{left:83.880000px;}
.xb{left:89.675987px;}
.xc{left:102.996000px;}
.x12{left:108.035987px;}
.x2c{left:115.236000px;}
.x4{left:118.290000px;}
.xd{left:143.136000px;}
.x10{left:145.836000px;}
.x1e{left:203.970000px;}
.x21{left:212.430000px;}
.x15{left:243.570000px;}
.x24{left:250.410000px;}
.x1a{left:260.850000px;}
.x26{left:302.114987px;}
.xa{left:319.754987px;}
.x14{left:325.874987px;}
.xe{left:349.095000px;}
.x11{left:351.255000px;}
.x2d{left:358.995000px;}
.x27{left:374.655000px;}
.x1f{left:380.775000px;}
.x8{left:390.134987px;}
.x16{left:403.815000px;}
.x1b{left:416.955000px;}
.x9{left:446.504987px;}
.x2e{left:452.805000px;}
.x28{left:461.085000px;}
.x20{left:506.085000px;}
.x17{left:517.785000px;}
.x18{left:519.045000px;}
.x2f{left:533.805000px;}
.x29{left:542.265000px;}
.x22{left:565.305000px;}
.x1c{left:620.025000px;}
.x30{left:621.645000px;}
.x2a{left:628.530000px;}
.x1d{left:643.470000px;}
.x3{left:705.930000px;}
.x31{left:717.090000px;}
.x2b{left:724.110000px;}
.x25{left:743.909987px;}
.x13{left:821.699987px;}
.x6{left:829.260000px;}
@media print{
.v2{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.120000pt;}
.ls1{letter-spacing:-0.640000pt;}
.ls9{letter-spacing:-0.544000pt;}
.ls4{letter-spacing:-0.480000pt;}
.ls5{letter-spacing:-0.320000pt;}
.lsa{letter-spacing:-0.230933pt;}
.ls13{letter-spacing:-0.094933pt;}
.lsb{letter-spacing:-0.047360pt;}
.ls0{letter-spacing:0.000000pt;}
.lsd{letter-spacing:0.047360pt;}
.ls12{letter-spacing:0.094933pt;}
.ls11{letter-spacing:0.120533pt;}
.ls3{letter-spacing:0.160000pt;}
.ls2{letter-spacing:0.230933pt;}
.lsf{letter-spacing:0.265600pt;}
.ls7{letter-spacing:0.320000pt;}
.lse{letter-spacing:0.736000pt;}
.ls14{letter-spacing:14.672640pt;}
.lsc{letter-spacing:29.392640pt;}
.ls6{letter-spacing:32.592640pt;}
.ls8{letter-spacing:40.912640pt;}
.ls10{letter-spacing:44.112640pt;}
.ws0{word-spacing:-14.720000pt;}
.ws2{word-spacing:-14.080000pt;}
.ws6{word-spacing:-13.600000pt;}
.ws9{word-spacing:-13.374933pt;}
.ws8{word-spacing:-13.327360pt;}
.ws3{word-spacing:-13.280000pt;}
.ws7{word-spacing:-13.232640pt;}
.ws5{word-spacing:-13.049067pt;}
.ws1{word-spacing:-9.280000pt;}
.ws4{word-spacing:0.000000pt;}
._25{margin-left:-7.384747pt;}
._22{margin-left:-6.302293pt;}
._12{margin-left:-5.083520pt;}
._13{margin-left:-3.691520pt;}
._14{margin-left:-1.969707pt;}
._0{margin-left:-0.960000pt;}
._11{width:1.021440pt;}
._1{width:1.973333pt;}
._1b{width:2.903253pt;}
._18{width:4.152960pt;}
._1c{width:5.101440pt;}
._16{width:6.425600pt;}
._1d{width:7.702400pt;}
._1e{width:8.603947pt;}
._6{width:9.600000pt;}
._17{width:10.691200pt;}
._15{width:11.633280pt;}
._1a{width:14.604373pt;}
._19{width:15.845973pt;}
._f{width:16.842667pt;}
._20{width:18.033920pt;}
._1f{width:19.123200pt;}
._27{width:21.738240pt;}
._28{width:22.759680pt;}
._26{width:23.679360pt;}
._21{width:39.999360pt;}
._23{width:52.695040pt;}
._7{width:67.808853pt;}
._24{width:83.504640pt;}
._10{width:88.586667pt;}
._8{width:136.960000pt;}
._c{width:173.440000pt;}
._e{width:177.408000pt;}
._2{width:227.122347pt;}
._3{width:317.600000pt;}
._4{width:344.937387pt;}
._5{width:387.946667pt;}
._9{width:537.212587pt;}
._d{width:566.506667pt;}
._a{width:974.986667pt;}
._b{width:1045.386667pt;}
.fs3{font-size:2.560000pt;}
.fs7{font-size:34.560000pt;}
.fs5{font-size:37.120000pt;}
.fs2{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs4{font-size:64.000000pt;}
.fs0{font-size:80.000000pt;}
.fs6{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.ye{bottom:5.120000pt;}
.y6a{bottom:5.280000pt;}
.y124{bottom:6.400000pt;}
.ya0{bottom:6.560000pt;}
.ya2{bottom:6.720000pt;}
.yae{bottom:6.746667pt;}
.yca{bottom:6.760000pt;}
.y6{bottom:11.200000pt;}
.y55{bottom:13.920000pt;}
.y59{bottom:13.960000pt;}
.y6d{bottom:14.080000pt;}
.y8{bottom:16.160000pt;}
.y56{bottom:22.720000pt;}
.y5a{bottom:22.760000pt;}
.y6e{bottom:22.880000pt;}
.y121{bottom:26.560000pt;}
.y133{bottom:31.520000pt;}
.y122{bottom:31.680000pt;}
.yc{bottom:32.000000pt;}
.y5{bottom:36.000000pt;}
.y87{bottom:40.320000pt;}
.y83{bottom:40.360000pt;}
.y80{bottom:40.480000pt;}
.yb{bottom:51.360000pt;}
.y4{bottom:60.800000pt;}
.yd{bottom:67.520000pt;}
.ya{bottom:70.720000pt;}
.y3{bottom:85.786667pt;}
.y15b{bottom:92.160000pt;}
.y132{bottom:92.800000pt;}
.y118{bottom:98.080000pt;}
.y177{bottom:98.880000pt;}
.y68{bottom:99.200000pt;}
.y9c{bottom:104.640000pt;}
.yee{bottom:105.600000pt;}
.yb8{bottom:107.360000pt;}
.y15a{bottom:109.760000pt;}
.y8c{bottom:110.240000pt;}
.y131{bottom:110.400000pt;}
.y2{bottom:111.866667pt;}
.y39{bottom:113.920000pt;}
.y117{bottom:115.680000pt;}
.y176{bottom:116.640000pt;}
.y67{bottom:116.800000pt;}
.y174{bottom:118.560000pt;}
.y9b{bottom:119.360000pt;}
.yed{bottom:123.200000pt;}
.y159{bottom:127.520000pt;}
.y8b{bottom:127.840000pt;}
.y130{bottom:128.160000pt;}
.yc4{bottom:128.640000pt;}
.y38{bottom:131.520000pt;}
.y116{bottom:133.440000pt;}
.y175{bottom:134.080000pt;}
.y66{bottom:134.560000pt;}
.y173{bottom:136.186667pt;}
.yec{bottom:140.986667pt;}
.y158{bottom:145.146667pt;}
.y8a{bottom:145.466667pt;}
.y12f{bottom:145.786667pt;}
.y115{bottom:148.826667pt;}
.y37{bottom:149.306667pt;}
.yc3{bottom:149.946667pt;}
.y65{bottom:152.186667pt;}
.y172{bottom:153.786667pt;}
.y9f{bottom:157.640000pt;}
.yeb{bottom:158.586667pt;}
.y114{bottom:161.946667pt;}
.y157{bottom:162.746667pt;}
.y89{bottom:163.066667pt;}
.y12e{bottom:163.386667pt;}
.y36{bottom:166.906667pt;}
.y64{bottom:169.786667pt;}
.yc2{bottom:171.386667pt;}
.y171{bottom:171.546667pt;}
.yea{bottom:176.186667pt;}
.y156{bottom:180.346667pt;}
.y88{bottom:180.826667pt;}
.y12d{bottom:180.986667pt;}
.y113{bottom:182.586667pt;}
.y35{bottom:184.506667pt;}
.y63{bottom:187.386667pt;}
.y170{bottom:189.146667pt;}
.yc1{bottom:192.666667pt;}
.ye9{bottom:193.786667pt;}
.y86{bottom:193.946667pt;}
.y155{bottom:197.946667pt;}
.y12c{bottom:198.586667pt;}
.y34{bottom:202.106667pt;}
.y112{bottom:203.226667pt;}
.y62{bottom:204.986667pt;}
.y16f{bottom:206.746667pt;}
.ye8{bottom:211.386667pt;}
.yc0{bottom:213.946667pt;}
.y154{bottom:215.706667pt;}
.y12b{bottom:216.346667pt;}
.y33{bottom:219.706667pt;}
.y61{bottom:222.746667pt;}
.y16e{bottom:224.346667pt;}
.y111{bottom:228.986667pt;}
.y153{bottom:233.306667pt;}
.y12a{bottom:233.946667pt;}
.ybf{bottom:235.386667pt;}
.ye7{bottom:237.146667pt;}
.y32{bottom:237.466667pt;}
.y60{bottom:240.346667pt;}
.y16d{bottom:241.946667pt;}
.yb9{bottom:242.746667pt;}
.y110{bottom:246.586667pt;}
.y85{bottom:247.386667pt;}
.y152{bottom:250.906667pt;}
.y129{bottom:251.546667pt;}
.ye6{bottom:254.746667pt;}
.y31{bottom:255.066667pt;}
.ybe{bottom:256.666667pt;}
.y16c{bottom:259.706667pt;}
.y10f{bottom:261.946667pt;}
.y5f{bottom:265.946667pt;}
.y151{bottom:268.506667pt;}
.y128{bottom:269.146667pt;}
.ye5{bottom:272.346667pt;}
.y16b{bottom:277.306667pt;}
.ybd{bottom:277.946667pt;}
.y10e{bottom:279.546667pt;}
.y30{bottom:280.666667pt;}
.y5e{bottom:283.546667pt;}
.ya9{bottom:285.466667pt;}
.y150{bottom:286.106667pt;}
.y127{bottom:286.746667pt;}
.ye4{bottom:289.946667pt;}
.y16a{bottom:294.906667pt;}
.y10d{bottom:297.306667pt;}
.y2f{bottom:298.266667pt;}
.ybc{bottom:299.386667pt;}
.y126{bottom:300.026667pt;}
.y84{bottom:300.986667pt;}
.y5d{bottom:301.146667pt;}
.ye3{bottom:303.066667pt;}
.y14f{bottom:303.866667pt;}
.y169{bottom:312.506667pt;}
.y10c{bottom:314.906667pt;}
.y2e{bottom:315.866667pt;}
.y5c{bottom:318.906667pt;}
.ybb{bottom:320.666667pt;}
.ye2{bottom:323.866667pt;}
.y14e{bottom:329.466667pt;}
.y168{bottom:330.106667pt;}
.y10b{bottom:332.506667pt;}
.y2d{bottom:333.626667pt;}
.y125{bottom:335.866667pt;}
.y5b{bottom:336.506667pt;}
.y82{bottom:336.986667pt;}
.yba{bottom:341.946667pt;}
.ye1{bottom:344.506667pt;}
.y14d{bottom:347.066667pt;}
.y10a{bottom:347.866667pt;}
.y58{bottom:349.626667pt;}
.y2c{bottom:351.226667pt;}
.y123{bottom:356.546667pt;}
.y109{bottom:361.026667pt;}
.ya8{bottom:363.426667pt;}
.y14c{bottom:364.706667pt;}
.ye0{bottom:365.186667pt;}
.y167{bottom:365.506667pt;}
.y2b{bottom:368.866667pt;}
.y120{bottom:377.186667pt;}
.y108{bottom:381.666667pt;}
.y166{bottom:383.106667pt;}
.yb7{bottom:384.706667pt;}
.y57{bottom:385.666667pt;}
.y2a{bottom:386.466667pt;}
.y14b{bottom:390.306667pt;}
.y81{bottom:390.626667pt;}
.y165{bottom:400.706667pt;}
.y107{bottom:402.306667pt;}
.y29{bottom:404.066667pt;}
.yb6{bottom:405.986667pt;}
.ydf{bottom:406.306667pt;}
.y14a{bottom:408.066667pt;}
.y164{bottom:418.306667pt;}
.y54{bottom:421.506667pt;}
.y28{bottom:421.826667pt;}
.y106{bottom:423.106667pt;}
.yde{bottom:423.906667pt;}
.y149{bottom:425.666667pt;}
.y7f{bottom:426.466667pt;}
.yb5{bottom:427.426667pt;}
.y11f{bottom:435.906667pt;}
.y163{bottom:436.066667pt;}
.y27{bottom:439.426667pt;}
.ydd{bottom:441.506667pt;}
.yb4{bottom:448.706667pt;}
.y105{bottom:448.866667pt;}
.y148{bottom:451.266667pt;}
.y11e{bottom:453.666667pt;}
.y26{bottom:457.026667pt;}
.y53{bottom:457.506667pt;}
.ydc{bottom:459.106667pt;}
.y104{bottom:466.466667pt;}
.y147{bottom:468.866667pt;}
.yb3{bottom:469.986667pt;}
.y11d{bottom:471.266667pt;}
.y25{bottom:474.626667pt;}
.ydb{bottom:476.706667pt;}
.y7e{bottom:480.066667pt;}
.y52{bottom:480.866667pt;}
.y103{bottom:481.826667pt;}
.y146{bottom:486.466667pt;}
.y11c{bottom:488.866667pt;}
.yb2{bottom:491.426667pt;}
.y24{bottom:492.226667pt;}
.yda{bottom:494.466667pt;}
.y51{bottom:498.466667pt;}
.y102{bottom:499.426667pt;}
.y7d{bottom:503.426667pt;}
.y145{bottom:504.226667pt;}
.y11b{bottom:506.466667pt;}
.y23{bottom:509.986667pt;}
.yd9{bottom:512.066667pt;}
.yb1{bottom:512.706667pt;}
.y50{bottom:516.226667pt;}
.y101{bottom:517.026667pt;}
.y7c{bottom:521.186667pt;}
.y11a{bottom:524.066667pt;}
.y162{bottom:524.226667pt;}
.yd8{bottom:525.186667pt;}
.y22{bottom:527.586667pt;}
.y144{bottom:529.826667pt;}
.y4f{bottom:533.826667pt;}
.yb0{bottom:533.986667pt;}
.y100{bottom:534.786667pt;}
.y7b{bottom:538.786667pt;}
.y119{bottom:538.946667pt;}
.y161{bottom:541.826667pt;}
.y21{bottom:545.186667pt;}
.yd7{bottom:545.826667pt;}
.y143{bottom:547.426667pt;}
.y4e{bottom:551.426667pt;}
.yff{bottom:552.386667pt;}
.yaf{bottom:555.426667pt;}
.y7a{bottom:556.386667pt;}
.y160{bottom:559.426667pt;}
.y20{bottom:562.786667pt;}
.y142{bottom:565.026667pt;}
.yd6{bottom:566.466667pt;}
.y4d{bottom:569.026667pt;}
.yfe{bottom:569.986667pt;}
.yad{bottom:576.706667pt;}
.y15f{bottom:577.053333pt;}
.y1f{bottom:580.413333pt;}
.y79{bottom:582.013333pt;}
.y141{bottom:582.653333pt;}
.yfd{bottom:583.133333pt;}
.y4c{bottom:586.653333pt;}
.yd5{bottom:587.293333pt;}
.y15e{bottom:594.653333pt;}
.yac{bottom:598.013333pt;}
.y1e{bottom:598.173333pt;}
.y78{bottom:599.613333pt;}
.y140{bottom:600.413333pt;}
.yfc{bottom:603.773333pt;}
.y4b{bottom:604.413333pt;}
.y15d{bottom:612.413333pt;}
.yd4{bottom:613.053333pt;}
.y1d{bottom:615.773333pt;}
.y77{bottom:617.373333pt;}
.yab{bottom:619.453333pt;}
.y4a{bottom:622.013333pt;}
.yfb{bottom:624.413333pt;}
.y13f{bottom:626.013333pt;}
.y15c{bottom:630.013333pt;}
.yd3{bottom:630.653333pt;}
.y1c{bottom:633.373333pt;}
.y76{bottom:634.973333pt;}
.y49{bottom:639.613333pt;}
.yaa{bottom:640.733333pt;}
.y13e{bottom:643.613333pt;}
.y9a{bottom:647.613333pt;}
.yd2{bottom:648.253333pt;}
.yfa{bottom:650.333333pt;}
.y1b{bottom:650.973333pt;}
.y48{bottom:657.213333pt;}
.y75{bottom:660.573333pt;}
.y13d{bottom:661.213333pt;}
.y9e{bottom:662.013333pt;}
.y99{bottom:665.213333pt;}
.yd1{bottom:665.853333pt;}
.yf9{bottom:667.933333pt;}
.y1a{bottom:668.573333pt;}
.y47{bottom:674.813333pt;}
.y74{bottom:678.173333pt;}
.y13c{bottom:678.813333pt;}
.y98{bottom:682.813333pt;}
.ya7{bottom:683.453333pt;}
.yd0{bottom:683.613333pt;}
.yf8{bottom:685.533333pt;}
.y19{bottom:686.333333pt;}
.y46{bottom:692.573333pt;}
.y73{bottom:695.773333pt;}
.y13b{bottom:696.573333pt;}
.y97{bottom:700.573333pt;}
.ycf{bottom:701.213333pt;}
.y18{bottom:703.933333pt;}
.ya6{bottom:704.733333pt;}
.y45{bottom:710.173333pt;}
.y72{bottom:713.533333pt;}
.y13a{bottom:714.173333pt;}
.y96{bottom:718.173333pt;}
.yf7{bottom:719.133333pt;}
.y17{bottom:721.533333pt;}
.ya5{bottom:726.013333pt;}
.y71{bottom:726.653333pt;}
.yce{bottom:726.813333pt;}
.y44{bottom:727.773333pt;}
.y139{bottom:731.773333pt;}
.y95{bottom:735.773333pt;}
.yf6{bottom:736.893333pt;}
.y16{bottom:739.133333pt;}
.ycd{bottom:744.413333pt;}
.y43{bottom:745.373333pt;}
.ya4{bottom:747.453333pt;}
.y138{bottom:749.373333pt;}
.yf5{bottom:752.253333pt;}
.y94{bottom:753.373333pt;}
.y15{bottom:756.733333pt;}
.ycc{bottom:762.013333pt;}
.y70{bottom:762.493333pt;}
.y42{bottom:762.973333pt;}
.yf4{bottom:765.373333pt;}
.y137{bottom:766.973333pt;}
.ya3{bottom:768.733333pt;}
.y93{bottom:770.973333pt;}
.ycb{bottom:775.293333pt;}
.y14{bottom:779.133333pt;}
.y41{bottom:780.733333pt;}
.y136{bottom:784.733333pt;}
.yf3{bottom:786.013333pt;}
.y92{bottom:788.733333pt;}
.ya1{bottom:790.013333pt;}
.y13{bottom:792.573333pt;}
.yc9{bottom:796.573333pt;}
.y40{bottom:798.373333pt;}
.y6f{bottom:798.533333pt;}
.y135{bottom:802.373333pt;}
.y91{bottom:806.373333pt;}
.yf2{bottom:806.693333pt;}
.y12{bottom:811.493333pt;}
.y3f{bottom:815.973333pt;}
.y134{bottom:816.133333pt;}
.y6c{bottom:816.773333pt;}
.yc8{bottom:817.893333pt;}
.y90{bottom:823.973333pt;}
.yf1{bottom:827.333333pt;}
.y11{bottom:832.293333pt;}
.y9d{bottom:832.773333pt;}
.y3e{bottom:833.573333pt;}
.yc7{bottom:839.333333pt;}
.y8f{bottom:841.573333pt;}
.yf0{bottom:847.973333pt;}
.y3d{bottom:851.173333pt;}
.y6b{bottom:852.773333pt;}
.y8e{bottom:859.173333pt;}
.y10{bottom:860.613333pt;}
.yef{bottom:868.613333pt;}
.y3c{bottom:868.933333pt;}
.y8d{bottom:876.933333pt;}
.yc6{bottom:881.893333pt;}
.y69{bottom:888.613333pt;}
.yf{bottom:888.773333pt;}
.y3b{bottom:894.533333pt;}
.yc5{bottom:903.333333pt;}
.y3a{bottom:912.133333pt;}
.y9{bottom:929.093333pt;}
.y1{bottom:944.773333pt;}
.y7{bottom:975.333333pt;}
.h6{height:1.787500pt;}
.h12{height:17.600000pt;}
.h16{height:17.760000pt;}
.hb{height:18.880000pt;}
.h20{height:20.000000pt;}
.h21{height:20.032000pt;}
.h1b{height:20.640000pt;}
.h1d{height:20.672000pt;}
.hf{height:24.131250pt;}
.h7{height:29.760000pt;}
.h13{height:35.200000pt;}
.h14{height:35.232000pt;}
.h17{height:35.360000pt;}
.he{height:37.090625pt;}
.h10{height:37.479688pt;}
.h15{height:38.672812pt;}
.h11{height:40.021563pt;}
.hc{height:41.112500pt;}
.h4{height:41.543750pt;}
.h9{height:47.310625pt;}
.h1a{height:52.800000pt;}
.h19{height:52.832000pt;}
.h18{height:52.960000pt;}
.h8{height:54.093750pt;}
.h3{height:56.445312pt;}
.ha{height:58.563750pt;}
.hd{height:60.057813pt;}
.h5{height:100.032000pt;}
.h2{height:130.592000pt;}
.h1c{height:170.106667pt;}
.h1f{height:255.266667pt;}
.h1e{height:297.946667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w5{width:8.800000pt;}
.w6{width:34.880000pt;}
.wb{width:37.280000pt;}
.w38{width:52.800000pt;}
.w35{width:71.360000pt;}
.w2d{width:71.840000pt;}
.w30{width:74.912000pt;}
.w2e{width:76.352000pt;}
.w2c{width:76.512000pt;}
.w32{width:76.832000pt;}
.w36{width:77.280000pt;}
.w34{width:82.752000pt;}
.w3a{width:83.392000pt;}
.w37{width:84.192000pt;}
.w2f{width:84.640000pt;}
.wf{width:100.992000pt;}
.w25{width:101.952000pt;}
.w27{width:102.272000pt;}
.w20{width:111.072000pt;}
.w23{width:111.392000pt;}
.w3{width:116.192000pt;}
.w10{width:116.992000pt;}
.w16{width:138.426667pt;}
.w1a{width:138.906667pt;}
.we{width:142.106667pt;}
.w19{width:156.026667pt;}
.w22{width:156.186667pt;}
.w15{width:156.826667pt;}
.w21{width:161.946667pt;}
.w18{width:167.426667pt;}
.w1d{width:173.306667pt;}
.w2a{width:173.626667pt;}
.w29{width:173.786667pt;}
.w28{width:174.466667pt;}
.w17{width:180.186667pt;}
.wc{width:181.946667pt;}
.w9{width:182.266667pt;}
.w7{width:182.426667pt;}
.w1c{width:213.026667pt;}
.w1f{width:213.346667pt;}
.w39{width:214.746667pt;}
.w33{width:216.026667pt;}
.w31{width:257.506667pt;}
.w2b{width:258.146667pt;}
.w12{width:283.906667pt;}
.w14{width:284.226667pt;}
.w1e{width:309.666667pt;}
.w1b{width:310.306667pt;}
.w26{width:312.706667pt;}
.w24{width:313.346667pt;}
.wd{width:390.146667pt;}
.w8{width:392.066667pt;}
.wa{width:392.226667pt;}
.w13{width:412.413333pt;}
.w11{width:413.053333pt;}
.w2{width:577.253333pt;}
.w4{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:7.200000pt;}
.x5{left:47.999988pt;}
.x1{left:50.240000pt;}
.x7{left:58.399988pt;}
.x23{left:66.079988pt;}
.xf{left:71.999988pt;}
.x19{left:74.560000pt;}
.xb{left:79.711988pt;}
.xc{left:91.552000pt;}
.x12{left:96.031988pt;}
.x2c{left:102.432000pt;}
.x4{left:105.146667pt;}
.xd{left:127.232000pt;}
.x10{left:129.632000pt;}
.x1e{left:181.306667pt;}
.x21{left:188.826667pt;}
.x15{left:216.506667pt;}
.x24{left:222.586667pt;}
.x1a{left:231.866667pt;}
.x26{left:268.546655pt;}
.xa{left:284.226655pt;}
.x14{left:289.666655pt;}
.xe{left:310.306667pt;}
.x11{left:312.226667pt;}
.x2d{left:319.106667pt;}
.x27{left:333.026667pt;}
.x1f{left:338.466667pt;}
.x8{left:346.786655pt;}
.x16{left:358.946667pt;}
.x1b{left:370.626667pt;}
.x9{left:396.893322pt;}
.x2e{left:402.493333pt;}
.x28{left:409.853333pt;}
.x20{left:449.853333pt;}
.x17{left:460.253333pt;}
.x18{left:461.373333pt;}
.x2f{left:474.493333pt;}
.x29{left:482.013333pt;}
.x22{left:502.493333pt;}
.x1c{left:551.133333pt;}
.x30{left:552.573333pt;}
.x2a{left:558.693333pt;}
.x1d{left:571.973333pt;}
.x3{left:627.493333pt;}
.x31{left:637.413333pt;}
.x2b{left:643.653333pt;}
.x25{left:661.253322pt;}
.x13{left:730.399988pt;}
.x6{left:737.120000pt;}
}




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