
    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_729dabc12d887afbe7431ee0.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.311035;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_9dc79da9cadb4a90d413938a.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.284668;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_13703c9b450d0a8ce8a1d8e9.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_58985701b4c755d552b4c977.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_309b96aafd736e8d690db78c.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_24fcddfd55dba7bf551bb390.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.060547;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_e2d1526a85fa56428b4c7b81.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.758789;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;}
.ls18{letter-spacing:-0.460200px;}
.ls1c{letter-spacing:-0.360000px;}
.ls1b{letter-spacing:-0.259800px;}
.ls15{letter-spacing:-0.053280px;}
.ls9{letter-spacing:0.000000px;}
.ls16{letter-spacing:0.053280px;}
.ls11{letter-spacing:0.106800px;}
.ls10{letter-spacing:0.178800px;}
.lsc{letter-spacing:0.180000px;}
.lsa{letter-spacing:0.259800px;}
.ls1d{letter-spacing:0.259920px;}
.ls14{letter-spacing:0.298800px;}
.ls8{letter-spacing:0.360000px;}
.lsb{letter-spacing:0.513600px;}
.ls17{letter-spacing:0.666000px;}
.lsf{letter-spacing:0.828000px;}
.ls7{letter-spacing:1.134720px;}
.ls2{letter-spacing:1.330560px;}
.ls1{letter-spacing:1.440000px;}
.ls6{letter-spacing:1.549440px;}
.ls0{letter-spacing:1.592640px;}
.ls5{letter-spacing:1.620000px;}
.ls4{letter-spacing:1.702080px;}
.ls3{letter-spacing:1.745280px;}
.ls13{letter-spacing:9.306720px;}
.ls1a{letter-spacing:11.466720px;}
.lse{letter-spacing:31.345920px;}
.ls19{letter-spacing:41.706720px;}
.ls12{letter-spacing:46.026720px;}
.lsd{letter-spacing:64.026720px;}
.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;}
}
.ws4{word-spacing:-59.760000px;}
.ws1{word-spacing:-16.560000px;}
.ws7{word-spacing:-15.300000px;}
.ws6{word-spacing:-15.046800px;}
.ws8{word-spacing:-14.993280px;}
.ws2{word-spacing:-14.940000px;}
.wsa{word-spacing:-14.680200px;}
.wsb{word-spacing:-14.580000px;}
.ws9{word-spacing:-14.479800px;}
.ws5{word-spacing:-14.118000px;}
.ws0{word-spacing:-13.500000px;}
.ws3{word-spacing:0.000000px;}
._3{margin-left:-2617.164000px;}
._7{margin-left:-1594.356480px;}
._5{margin-left:-1366.159680px;}
._6{margin-left:-997.269120px;}
._8{margin-left:-576.313920px;}
._9{margin-left:-8.544960px;}
._a{margin-left:-5.082720px;}
._b{margin-left:-3.643200px;}
._f{margin-left:-2.107200px;}
._4{margin-left:-1.059840px;}
._0{width:1.296000px;}
._2{width:2.526000px;}
._1{width:3.810000px;}
._c{width:5.376480px;}
._13{width:6.513840px;}
._d{width:7.710720px;}
._12{width:8.904240px;}
._14{width:10.083600px;}
._10{width:11.518560px;}
._11{width:12.540720px;}
._17{width:13.590720px;}
._e{width:16.637040px;}
._16{width:18.226800px;}
._15{width:19.242720px;}
._19{width:24.542640px;}
._18{width:180.015840px;}
.fc3{color:transparent;}
.fc1{color:rgb(0,0,255);}
.fc2{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs1{font-size:54.000000px;}
.fs3{font-size:59.760000px;}
.fs4{font-size:63.360000px;}
.fs0{font-size:66.240000px;}
.fs5{font-size:72.000000px;}
.fs2{font-size:95.760000px;}
.y85{bottom:-14.910000px;}
.y7d{bottom:-12.240000px;}
.y0{bottom:0.000000px;}
.yde{bottom:3.240000px;}
.yb0{bottom:3.420000px;}
.yb4{bottom:3.600000px;}
.yb2{bottom:3.780000px;}
.y178{bottom:4.680000px;}
.y17b{bottom:5.040000px;}
.y179{bottom:5.760000px;}
.y7c{bottom:6.120000px;}
.y17e{bottom:6.300000px;}
.yfa{bottom:8.100000px;}
.y87{bottom:12.060000px;}
.y83{bottom:13.680000px;}
.y80{bottom:14.040000px;}
.yf0{bottom:16.560000px;}
.ye3{bottom:16.740000px;}
.ydd{bottom:20.520000px;}
.ybb{bottom:20.694000px;}
.yfc{bottom:20.730000px;}
.yf2{bottom:20.880000px;}
.ye6{bottom:21.060000px;}
.yf7{bottom:22.140000px;}
.yf9{bottom:25.380000px;}
.y7b{bottom:27.360000px;}
.y102{bottom:29.700000px;}
.y105{bottom:34.020000px;}
.yeb{bottom:34.920000px;}
.y82{bottom:35.100000px;}
.y7f{bottom:35.280000px;}
.yed{bottom:38.160000px;}
.ye5{bottom:38.340000px;}
.yf6{bottom:40.500000px;}
.yf8{bottom:42.660000px;}
.y101{bottom:48.060000px;}
.y7a{bottom:48.600000px;}
.y104{bottom:51.300000px;}
.yef{bottom:53.280000px;}
.yea{bottom:53.325000px;}
.ye2{bottom:53.460000px;}
.yf1{bottom:55.440000px;}
.yec{bottom:55.485000px;}
.ye4{bottom:55.620000px;}
.yf5{bottom:58.680000px;}
.yf4{bottom:59.760000px;}
.y6{bottom:61.020000px;}
.y100{bottom:66.240000px;}
.y79{bottom:67.185000px;}
.y103{bottom:68.400000px;}
.ye1{bottom:71.640000px;}
.ye9{bottom:71.685000px;}
.ye0{bottom:72.720000px;}
.ye8{bottom:72.765000px;}
.yff{bottom:84.600000px;}
.yfe{bottom:85.680000px;}
.y78{bottom:85.725000px;}
.y187{bottom:96.120000px;}
.y6c{bottom:97.020000px;}
.y15a{bottom:98.820000px;}
.ybd{bottom:99.360000px;}
.y34{bottom:103.500000px;}
.y77{bottom:104.445000px;}
.y161{bottom:107.820000px;}
.y130{bottom:112.680000px;}
.y75{bottom:113.580000px;}
.y186{bottom:115.920000px;}
.y6b{bottom:116.820000px;}
.y159{bottom:118.620000px;}
.ybc{bottom:122.580000px;}
.y33{bottom:123.300000px;}
.y160{bottom:127.656000px;}
.y12f{bottom:132.696000px;}
.y74{bottom:134.496000px;}
.y185{bottom:135.396000px;}
.y6a{bottom:136.656000px;}
.y158{bottom:138.456000px;}
.y32{bottom:143.136000px;}
.yba{bottom:145.836000px;}
.y15f{bottom:147.456000px;}
.y12e{bottom:152.490000px;}
.y73{bottom:155.370000px;}
.y184{bottom:155.550000px;}
.y69{bottom:156.450000px;}
.y157{bottom:158.250000px;}
.y31{bottom:163.110000px;}
.y15e{bottom:167.250000px;}
.y12d{bottom:172.290000px;}
.y183{bottom:175.530000px;}
.y68{bottom:176.250000px;}
.y156{bottom:178.230000px;}
.yf3{bottom:179.130000px;}
.y30{bottom:182.910000px;}
.y15d{bottom:187.230000px;}
.yb9{bottom:189.570000px;}
.y12c{bottom:192.090000px;}
.y182{bottom:195.330000px;}
.y67{bottom:196.230000px;}
.y155{bottom:197.670000px;}
.y2f{bottom:202.710000px;}
.y15c{bottom:207.030000px;}
.yb8{bottom:209.370000px;}
.y12b{bottom:211.890000px;}
.y181{bottom:215.130000px;}
.y72{bottom:215.670000px;}
.y66{bottom:216.030000px;}
.y2e{bottom:222.510000px;}
.y154{bottom:226.830000px;}
.yb7{bottom:229.170000px;}
.y12a{bottom:231.870000px;}
.y180{bottom:234.570000px;}
.y71{bottom:235.470000px;}
.y65{bottom:235.830000px;}
.y2d{bottom:242.310000px;}
.y7e{bottom:242.670000px;}
.y81{bottom:246.450000px;}
.yb6{bottom:246.630000px;}
.y129{bottom:251.670000px;}
.y17f{bottom:252.030000px;}
.yee{bottom:253.290000px;}
.y70{bottom:255.270000px;}
.y64{bottom:255.630000px;}
.y2c{bottom:262.290000px;}
.y153{bottom:266.430000px;}
.yb5{bottom:269.850000px;}
.y128{bottom:271.470000px;}
.y6f{bottom:275.070000px;}
.y63{bottom:275.430000px;}
.y17d{bottom:277.770000px;}
.y2b{bottom:282.090000px;}
.y152{bottom:286.410000px;}
.y84{bottom:291.060000px;}
.y127{bottom:291.270000px;}
.yb3{bottom:293.250000px;}
.y62{bottom:295.410000px;}
.y2a{bottom:301.890000px;}
.y17c{bottom:303.690000px;}
.y151{bottom:306.210000px;}
.y126{bottom:311.070000px;}
.y61{bottom:315.210000px;}
.yb1{bottom:316.470000px;}
.y29{bottom:321.690000px;}
.y150{bottom:326.010000px;}
.y76{bottom:328.710000px;}
.y86{bottom:329.250000px;}
.y17a{bottom:329.610000px;}
.y125{bottom:331.050000px;}
.y60{bottom:335.010000px;}
.yaf{bottom:339.690000px;}
.ye7{bottom:340.230000px;}
.y28{bottom:341.490000px;}
.y14f{bottom:345.810000px;}
.y124{bottom:350.850000px;}
.y5f{bottom:354.810000px;}
.y177{bottom:355.350000px;}
.y27{bottom:361.470000px;}
.y14e{bottom:365.610000px;}
.yae{bottom:366.150000px;}
.y123{bottom:370.650000px;}
.y5e{bottom:374.610000px;}
.y26{bottom:381.315000px;}
.y176{bottom:384.375000px;}
.y14d{bottom:385.635000px;}
.yad{bottom:386.355000px;}
.y122{bottom:390.495000px;}
.y5d{bottom:394.635000px;}
.y25{bottom:401.115000px;}
.y175{bottom:404.535000px;}
.y14c{bottom:405.435000px;}
.yac{bottom:406.155000px;}
.y121{bottom:410.295000px;}
.y5c{bottom:414.435000px;}
.y24{bottom:420.915000px;}
.y174{bottom:424.515000px;}
.y14b{bottom:425.235000px;}
.yab{bottom:425.955000px;}
.ydf{bottom:427.215000px;}
.y120{bottom:429.915000px;}
.y5b{bottom:434.235000px;}
.y23{bottom:440.715000px;}
.y173{bottom:444.315000px;}
.y14a{bottom:445.035000px;}
.yaa{bottom:445.755000px;}
.y5a{bottom:454.035000px;}
.y11f{bottom:459.075000px;}
.y22{bottom:460.695000px;}
.y172{bottom:464.115000px;}
.y149{bottom:464.835000px;}
.ya9{bottom:465.735000px;}
.y59{bottom:473.835000px;}
.y11e{bottom:478.875000px;}
.y21{bottom:480.495000px;}
.y171{bottom:483.555000px;}
.y148{bottom:484.815000px;}
.ya8{bottom:485.535000px;}
.y58{bottom:493.815000px;}
.y11d{bottom:498.675000px;}
.y20{bottom:500.295000px;}
.y147{bottom:504.615000px;}
.ya7{bottom:504.975000px;}
.y170{bottom:512.715000px;}
.y6e{bottom:513.255000px;}
.y57{bottom:513.615000px;}
.ydc{bottom:514.335000px;}
.y11c{bottom:518.475000px;}
.y1f{bottom:520.095000px;}
.y146{bottom:524.415000px;}
.y16f{bottom:532.695000px;}
.y56{bottom:533.415000px;}
.ya6{bottom:534.135000px;}
.y11b{bottom:538.095000px;}
.y1e{bottom:539.895000px;}
.y145{bottom:544.215000px;}
.y16e{bottom:552.495000px;}
.y55{bottom:553.215000px;}
.ya5{bottom:553.935000px;}
.ydb{bottom:555.375000px;}
.y1d{bottom:559.875000px;}
.y144{bottom:564.015000px;}
.y16d{bottom:571.935000px;}
.y54{bottom:573.015000px;}
.ya4{bottom:573.915000px;}
.yda{bottom:575.535000px;}
.y11a{bottom:578.775000px;}
.y1c{bottom:579.675000px;}
.y15b{bottom:583.635000px;}
.y143{bottom:583.995000px;}
.y16c{bottom:589.395000px;}
.y53{bottom:592.995000px;}
.ya3{bottom:593.715000px;}
.yd9{bottom:594.975000px;}
.y1b{bottom:599.475000px;}
.y119{bottom:601.995000px;}
.y142{bottom:603.795000px;}
.y16b{bottom:612.615000px;}
.y52{bottom:612.795000px;}
.ya2{bottom:613.515000px;}
.yd8{bottom:614.775000px;}
.y1a{bottom:619.275000px;}
.y141{bottom:623.595000px;}
.y118{bottom:625.215000px;}
.y51{bottom:632.625000px;}
.ya1{bottom:633.345000px;}
.yd7{bottom:634.965000px;}
.y16a{bottom:635.865000px;}
.y19{bottom:639.105000px;}
.y140{bottom:643.425000px;}
.y117{bottom:648.465000px;}
.y50{bottom:652.425000px;}
.ya0{bottom:653.145000px;}
.yd6{bottom:654.945000px;}
.y18{bottom:658.725000px;}
.y169{bottom:659.085000px;}
.y13f{bottom:663.225000px;}
.y4f{bottom:672.225000px;}
.y9f{bottom:673.125000px;}
.yd5{bottom:674.745000px;}
.y116{bottom:674.925000px;}
.y17{bottom:676.725000px;}
.y168{bottom:682.305000px;}
.y13e{bottom:683.205000px;}
.y4e{bottom:692.205000px;}
.y9e{bottom:692.925000px;}
.yd4{bottom:694.545000px;}
.y115{bottom:694.725000px;}
.y16{bottom:697.425000px;}
.y13d{bottom:703.005000px;}
.y167{bottom:705.705000px;}
.y4d{bottom:712.005000px;}
.y9d{bottom:712.725000px;}
.yd3{bottom:714.345000px;}
.y15{bottom:714.885000px;}
.y13c{bottom:722.805000px;}
.y166{bottom:728.925000px;}
.y4c{bottom:731.805000px;}
.y9c{bottom:732.525000px;}
.yd2{bottom:734.145000px;}
.y114{bottom:734.685000px;}
.y13b{bottom:742.605000px;}
.y14{bottom:743.505000px;}
.y18b{bottom:751.245000px;}
.y4b{bottom:751.605000px;}
.y9b{bottom:751.965000px;}
.y165{bottom:752.145000px;}
.yd1{bottom:754.125000px;}
.y113{bottom:754.665000px;}
.y13a{bottom:762.405000px;}
.y13{bottom:763.485000px;}
.y18a{bottom:771.045000px;}
.y4a{bottom:771.405000px;}
.yd0{bottom:773.925000px;}
.y112{bottom:774.465000px;}
.y164{bottom:775.365000px;}
.y9a{bottom:781.305000px;}
.y139{bottom:782.385000px;}
.y12{bottom:783.285000px;}
.y49{bottom:791.385000px;}
.ycf{bottom:793.725000px;}
.y111{bottom:794.265000px;}
.y99{bottom:801.105000px;}
.y163{bottom:801.825000px;}
.y138{bottom:802.185000px;}
.y11{bottom:803.085000px;}
.y48{bottom:811.185000px;}
.yce{bottom:813.525000px;}
.y110{bottom:814.065000px;}
.y98{bottom:820.545000px;}
.y137{bottom:821.985000px;}
.y10{bottom:822.885000px;}
.y47{bottom:830.985000px;}
.ycd{bottom:833.325000px;}
.y10f{bottom:833.865000px;}
.y136{bottom:841.785000px;}
.yf{bottom:842.685000px;}
.y97{bottom:849.705000px;}
.y46{bottom:850.785000px;}
.ycc{bottom:853.305000px;}
.y10e{bottom:853.845000px;}
.y135{bottom:861.585000px;}
.ye{bottom:862.665000px;}
.y96{bottom:869.505000px;}
.y45{bottom:870.585000px;}
.ycb{bottom:873.105000px;}
.y10d{bottom:873.645000px;}
.y134{bottom:881.565000px;}
.yd{bottom:885.030000px;}
.y95{bottom:889.530000px;}
.y189{bottom:890.250000px;}
.y44{bottom:890.610000px;}
.yca{bottom:892.950000px;}
.y10c{bottom:893.490000px;}
.y133{bottom:901.410000px;}
.yc{bottom:906.450000px;}
.y94{bottom:909.330000px;}
.y43{bottom:910.410000px;}
.yc9{bottom:912.390000px;}
.y10b{bottom:913.290000px;}
.y132{bottom:921.210000px;}
.yb{bottom:926.430000px;}
.y93{bottom:929.130000px;}
.y42{bottom:930.210000px;}
.yc8{bottom:932.190000px;}
.y10a{bottom:933.090000px;}
.y131{bottom:940.650000px;}
.ya{bottom:946.590000px;}
.y92{bottom:948.930000px;}
.y41{bottom:950.010000px;}
.yc7{bottom:952.530000px;}
.y109{bottom:953.070000px;}
.y162{bottom:960.450000px;}
.y9{bottom:967.650000px;}
.y91{bottom:968.730000px;}
.y40{bottom:969.810000px;}
.yc6{bottom:972.330000px;}
.y108{bottom:972.870000px;}
.y90{bottom:988.710000px;}
.y3f{bottom:989.790000px;}
.y8{bottom:991.050000px;}
.yc5{bottom:992.130000px;}
.y107{bottom:992.670000px;}
.y8f{bottom:1008.510000px;}
.y3e{bottom:1009.590000px;}
.yc4{bottom:1011.930000px;}
.y106{bottom:1012.110000px;}
.y7{bottom:1022.910000px;}
.yfd{bottom:1026.870000px;}
.y8e{bottom:1028.310000px;}
.y3d{bottom:1029.390000px;}
.yc3{bottom:1031.370000px;}
.y8d{bottom:1048.110000px;}
.yc2{bottom:1048.830000px;}
.y3c{bottom:1049.190000px;}
.y5{bottom:1061.790000px;}
.y8c{bottom:1067.910000px;}
.y188{bottom:1068.630000px;}
.y3b{bottom:1068.990000px;}
.yc1{bottom:1072.050000px;}
.y8b{bottom:1087.890000px;}
.y3a{bottom:1088.610000px;}
.y6d{bottom:1088.970000px;}
.y4{bottom:1092.570000px;}
.yc0{bottom:1095.270000px;}
.y8a{bottom:1107.330000px;}
.y39{bottom:1108.770000px;}
.ybf{bottom:1118.670000px;}
.y3{bottom:1123.530000px;}
.yfb{bottom:1126.770000px;}
.y89{bottom:1127.490000px;}
.y38{bottom:1128.570000px;}
.ybe{bottom:1141.920000px;}
.y88{bottom:1147.320000px;}
.y37{bottom:1148.400000px;}
.y2{bottom:1154.340000px;}
.y36{bottom:1174.860000px;}
.y1{bottom:1184.760000px;}
.y35{bottom:1193.760000px;}
.he{height:0.035980px;}
.h12{height:17.100000px;}
.h11{height:17.280000px;}
.h14{height:17.316000px;}
.h1b{height:19.800000px;}
.h1c{height:19.980000px;}
.hf{height:24.480000px;}
.h15{height:34.380000px;}
.h13{height:34.560000px;}
.h19{height:34.596000px;}
.hd{height:51.300000px;}
.hb{height:51.480000px;}
.h10{height:52.998047px;}
.ha{height:53.645625px;}
.h6{height:58.651172px;}
.h5{height:60.226875px;}
.h7{height:61.423863px;}
.h3{height:65.010937px;}
.h9{height:65.124096px;}
.h2{height:66.757500px;}
.hc{height:70.664062px;}
.h18{height:73.260000px;}
.h16{height:86.220000px;}
.h17{height:86.256000px;}
.h4{height:96.508125px;}
.h1a{height:99.180000px;}
.h8{height:119.376000px;}
.h1{height:1263.000000px;}
.h0{height:1263.060000px;}
.w17{width:28.440000px;}
.w9{width:54.900000px;}
.wc{width:62.640000px;}
.w10{width:63.180000px;}
.w15{width:74.700000px;}
.w19{width:74.916000px;}
.w1a{width:88.200000px;}
.w16{width:105.336000px;}
.w11{width:117.396000px;}
.w6{width:130.896000px;}
.w12{width:149.436000px;}
.w18{width:150.510000px;}
.w13{width:152.820000px;}
.wd{width:170.850000px;}
.w4{width:179.490000px;}
.we{width:180.750000px;}
.w7{width:183.630000px;}
.w5{width:186.150000px;}
.w14{width:217.695000px;}
.w3{width:223.590000px;}
.wf{width:244.515000px;}
.wb{width:355.935000px;}
.wa{width:422.745000px;}
.w8{width:449.745000px;}
.w1{width:893.250000px;}
.w2{width:893.339987px;}
.w0{width:893.340000px;}
.x1e{left:-5.220000px;}
.x1d{left:-2.520000px;}
.x0{left:0.000000px;}
.x11{left:1.080000px;}
.x2e{left:4.500000px;}
.x19{left:8.100000px;}
.x2d{left:9.540000px;}
.x8{left:12.060000px;}
.xb{left:15.120000px;}
.x2b{left:19.980000px;}
.xf{left:24.840000px;}
.x4{left:37.800000px;}
.x20{left:43.560000px;}
.x1{left:54.179987px;}
.x7{left:55.254000px;}
.x15{left:56.340000px;}
.xa{left:57.960000px;}
.xd{left:65.340000px;}
.x17{left:80.999987px;}
.x1f{left:92.016000px;}
.x2{left:96.515987px;}
.x2f{left:108.035987px;}
.x5{left:111.780000px;}
.x18{left:117.396000px;}
.x6{left:137.556000px;}
.x21{left:157.350000px;}
.x1a{left:180.030000px;}
.x10{left:193.350000px;}
.x26{left:263.775000px;}
.x22{left:277.095000px;}
.x3{left:292.035000px;}
.xe{left:313.275000px;}
.x13{left:322.994987px;}
.xc{left:332.715000px;}
.x27{left:340.815000px;}
.x1b{left:350.895000px;}
.x2a{left:364.035000px;}
.x25{left:393.014987px;}
.x23{left:428.685000px;}
.x2c{left:441.105000px;}
.x14{left:446.684987px;}
.x28{left:448.305000px;}
.x9{left:477.645000px;}
.x29{left:479.085000px;}
.x16{left:481.245000px;}
.x1c{left:531.645000px;}
.x24{left:583.665000px;}
.x12{left:645.270000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls18{letter-spacing:-0.409067pt;}
.ls1c{letter-spacing:-0.320000pt;}
.ls1b{letter-spacing:-0.230933pt;}
.ls15{letter-spacing:-0.047360pt;}
.ls9{letter-spacing:0.000000pt;}
.ls16{letter-spacing:0.047360pt;}
.ls11{letter-spacing:0.094933pt;}
.ls10{letter-spacing:0.158933pt;}
.lsc{letter-spacing:0.160000pt;}
.lsa{letter-spacing:0.230933pt;}
.ls1d{letter-spacing:0.231040pt;}
.ls14{letter-spacing:0.265600pt;}
.ls8{letter-spacing:0.320000pt;}
.lsb{letter-spacing:0.456533pt;}
.ls17{letter-spacing:0.592000pt;}
.lsf{letter-spacing:0.736000pt;}
.ls7{letter-spacing:1.008640pt;}
.ls2{letter-spacing:1.182720pt;}
.ls1{letter-spacing:1.280000pt;}
.ls6{letter-spacing:1.377280pt;}
.ls0{letter-spacing:1.415680pt;}
.ls5{letter-spacing:1.440000pt;}
.ls4{letter-spacing:1.512960pt;}
.ls3{letter-spacing:1.551360pt;}
.ls13{letter-spacing:8.272640pt;}
.ls1a{letter-spacing:10.192640pt;}
.lse{letter-spacing:27.863040pt;}
.ls19{letter-spacing:37.072640pt;}
.ls12{letter-spacing:40.912640pt;}
.lsd{letter-spacing:56.912640pt;}
.ws4{word-spacing:-53.120000pt;}
.ws1{word-spacing:-14.720000pt;}
.ws7{word-spacing:-13.600000pt;}
.ws6{word-spacing:-13.374933pt;}
.ws8{word-spacing:-13.327360pt;}
.ws2{word-spacing:-13.280000pt;}
.wsa{word-spacing:-13.049067pt;}
.wsb{word-spacing:-12.960000pt;}
.ws9{word-spacing:-12.870933pt;}
.ws5{word-spacing:-12.549333pt;}
.ws0{word-spacing:-12.000000pt;}
.ws3{word-spacing:0.000000pt;}
._3{margin-left:-2326.368000pt;}
._7{margin-left:-1417.205760pt;}
._5{margin-left:-1214.364160pt;}
._6{margin-left:-886.461440pt;}
._8{margin-left:-512.279040pt;}
._9{margin-left:-7.595520pt;}
._a{margin-left:-4.517973pt;}
._b{margin-left:-3.238400pt;}
._f{margin-left:-1.873067pt;}
._4{margin-left:-0.942080pt;}
._0{width:1.152000pt;}
._2{width:2.245333pt;}
._1{width:3.386667pt;}
._c{width:4.779093pt;}
._13{width:5.790080pt;}
._d{width:6.853973pt;}
._12{width:7.914880pt;}
._14{width:8.963200pt;}
._10{width:10.238720pt;}
._11{width:11.147307pt;}
._17{width:12.080640pt;}
._e{width:14.788480pt;}
._16{width:16.201600pt;}
._15{width:17.104640pt;}
._19{width:21.815680pt;}
._18{width:160.014080pt;}
.fs1{font-size:48.000000pt;}
.fs3{font-size:53.120000pt;}
.fs4{font-size:56.320000pt;}
.fs0{font-size:58.880000pt;}
.fs5{font-size:64.000000pt;}
.fs2{font-size:85.120000pt;}
.y85{bottom:-13.253333pt;}
.y7d{bottom:-10.880000pt;}
.y0{bottom:0.000000pt;}
.yde{bottom:2.880000pt;}
.yb0{bottom:3.040000pt;}
.yb4{bottom:3.200000pt;}
.yb2{bottom:3.360000pt;}
.y178{bottom:4.160000pt;}
.y17b{bottom:4.480000pt;}
.y179{bottom:5.120000pt;}
.y7c{bottom:5.440000pt;}
.y17e{bottom:5.600000pt;}
.yfa{bottom:7.200000pt;}
.y87{bottom:10.720000pt;}
.y83{bottom:12.160000pt;}
.y80{bottom:12.480000pt;}
.yf0{bottom:14.720000pt;}
.ye3{bottom:14.880000pt;}
.ydd{bottom:18.240000pt;}
.ybb{bottom:18.394667pt;}
.yfc{bottom:18.426667pt;}
.yf2{bottom:18.560000pt;}
.ye6{bottom:18.720000pt;}
.yf7{bottom:19.680000pt;}
.yf9{bottom:22.560000pt;}
.y7b{bottom:24.320000pt;}
.y102{bottom:26.400000pt;}
.y105{bottom:30.240000pt;}
.yeb{bottom:31.040000pt;}
.y82{bottom:31.200000pt;}
.y7f{bottom:31.360000pt;}
.yed{bottom:33.920000pt;}
.ye5{bottom:34.080000pt;}
.yf6{bottom:36.000000pt;}
.yf8{bottom:37.920000pt;}
.y101{bottom:42.720000pt;}
.y7a{bottom:43.200000pt;}
.y104{bottom:45.600000pt;}
.yef{bottom:47.360000pt;}
.yea{bottom:47.400000pt;}
.ye2{bottom:47.520000pt;}
.yf1{bottom:49.280000pt;}
.yec{bottom:49.320000pt;}
.ye4{bottom:49.440000pt;}
.yf5{bottom:52.160000pt;}
.yf4{bottom:53.120000pt;}
.y6{bottom:54.240000pt;}
.y100{bottom:58.880000pt;}
.y79{bottom:59.720000pt;}
.y103{bottom:60.800000pt;}
.ye1{bottom:63.680000pt;}
.ye9{bottom:63.720000pt;}
.ye0{bottom:64.640000pt;}
.ye8{bottom:64.680000pt;}
.yff{bottom:75.200000pt;}
.yfe{bottom:76.160000pt;}
.y78{bottom:76.200000pt;}
.y187{bottom:85.440000pt;}
.y6c{bottom:86.240000pt;}
.y15a{bottom:87.840000pt;}
.ybd{bottom:88.320000pt;}
.y34{bottom:92.000000pt;}
.y77{bottom:92.840000pt;}
.y161{bottom:95.840000pt;}
.y130{bottom:100.160000pt;}
.y75{bottom:100.960000pt;}
.y186{bottom:103.040000pt;}
.y6b{bottom:103.840000pt;}
.y159{bottom:105.440000pt;}
.ybc{bottom:108.960000pt;}
.y33{bottom:109.600000pt;}
.y160{bottom:113.472000pt;}
.y12f{bottom:117.952000pt;}
.y74{bottom:119.552000pt;}
.y185{bottom:120.352000pt;}
.y6a{bottom:121.472000pt;}
.y158{bottom:123.072000pt;}
.y32{bottom:127.232000pt;}
.yba{bottom:129.632000pt;}
.y15f{bottom:131.072000pt;}
.y12e{bottom:135.546667pt;}
.y73{bottom:138.106667pt;}
.y184{bottom:138.266667pt;}
.y69{bottom:139.066667pt;}
.y157{bottom:140.666667pt;}
.y31{bottom:144.986667pt;}
.y15e{bottom:148.666667pt;}
.y12d{bottom:153.146667pt;}
.y183{bottom:156.026667pt;}
.y68{bottom:156.666667pt;}
.y156{bottom:158.426667pt;}
.yf3{bottom:159.226667pt;}
.y30{bottom:162.586667pt;}
.y15d{bottom:166.426667pt;}
.yb9{bottom:168.506667pt;}
.y12c{bottom:170.746667pt;}
.y182{bottom:173.626667pt;}
.y67{bottom:174.426667pt;}
.y155{bottom:175.706667pt;}
.y2f{bottom:180.186667pt;}
.y15c{bottom:184.026667pt;}
.yb8{bottom:186.106667pt;}
.y12b{bottom:188.346667pt;}
.y181{bottom:191.226667pt;}
.y72{bottom:191.706667pt;}
.y66{bottom:192.026667pt;}
.y2e{bottom:197.786667pt;}
.y154{bottom:201.626667pt;}
.yb7{bottom:203.706667pt;}
.y12a{bottom:206.106667pt;}
.y180{bottom:208.506667pt;}
.y71{bottom:209.306667pt;}
.y65{bottom:209.626667pt;}
.y2d{bottom:215.386667pt;}
.y7e{bottom:215.706667pt;}
.y81{bottom:219.066667pt;}
.yb6{bottom:219.226667pt;}
.y129{bottom:223.706667pt;}
.y17f{bottom:224.026667pt;}
.yee{bottom:225.146667pt;}
.y70{bottom:226.906667pt;}
.y64{bottom:227.226667pt;}
.y2c{bottom:233.146667pt;}
.y153{bottom:236.826667pt;}
.yb5{bottom:239.866667pt;}
.y128{bottom:241.306667pt;}
.y6f{bottom:244.506667pt;}
.y63{bottom:244.826667pt;}
.y17d{bottom:246.906667pt;}
.y2b{bottom:250.746667pt;}
.y152{bottom:254.586667pt;}
.y84{bottom:258.720000pt;}
.y127{bottom:258.906667pt;}
.yb3{bottom:260.666667pt;}
.y62{bottom:262.586667pt;}
.y2a{bottom:268.346667pt;}
.y17c{bottom:269.946667pt;}
.y151{bottom:272.186667pt;}
.y126{bottom:276.506667pt;}
.y61{bottom:280.186667pt;}
.yb1{bottom:281.306667pt;}
.y29{bottom:285.946667pt;}
.y150{bottom:289.786667pt;}
.y76{bottom:292.186667pt;}
.y86{bottom:292.666667pt;}
.y17a{bottom:292.986667pt;}
.y125{bottom:294.266667pt;}
.y60{bottom:297.786667pt;}
.yaf{bottom:301.946667pt;}
.ye7{bottom:302.426667pt;}
.y28{bottom:303.546667pt;}
.y14f{bottom:307.386667pt;}
.y124{bottom:311.866667pt;}
.y5f{bottom:315.386667pt;}
.y177{bottom:315.866667pt;}
.y27{bottom:321.306667pt;}
.y14e{bottom:324.986667pt;}
.yae{bottom:325.466667pt;}
.y123{bottom:329.466667pt;}
.y5e{bottom:332.986667pt;}
.y26{bottom:338.946667pt;}
.y176{bottom:341.666667pt;}
.y14d{bottom:342.786667pt;}
.yad{bottom:343.426667pt;}
.y122{bottom:347.106667pt;}
.y5d{bottom:350.786667pt;}
.y25{bottom:356.546667pt;}
.y175{bottom:359.586667pt;}
.y14c{bottom:360.386667pt;}
.yac{bottom:361.026667pt;}
.y121{bottom:364.706667pt;}
.y5c{bottom:368.386667pt;}
.y24{bottom:374.146667pt;}
.y174{bottom:377.346667pt;}
.y14b{bottom:377.986667pt;}
.yab{bottom:378.626667pt;}
.ydf{bottom:379.746667pt;}
.y120{bottom:382.146667pt;}
.y5b{bottom:385.986667pt;}
.y23{bottom:391.746667pt;}
.y173{bottom:394.946667pt;}
.y14a{bottom:395.586667pt;}
.yaa{bottom:396.226667pt;}
.y5a{bottom:403.586667pt;}
.y11f{bottom:408.066667pt;}
.y22{bottom:409.506667pt;}
.y172{bottom:412.546667pt;}
.y149{bottom:413.186667pt;}
.ya9{bottom:413.986667pt;}
.y59{bottom:421.186667pt;}
.y11e{bottom:425.666667pt;}
.y21{bottom:427.106667pt;}
.y171{bottom:429.826667pt;}
.y148{bottom:430.946667pt;}
.ya8{bottom:431.586667pt;}
.y58{bottom:438.946667pt;}
.y11d{bottom:443.266667pt;}
.y20{bottom:444.706667pt;}
.y147{bottom:448.546667pt;}
.ya7{bottom:448.866667pt;}
.y170{bottom:455.746667pt;}
.y6e{bottom:456.226667pt;}
.y57{bottom:456.546667pt;}
.ydc{bottom:457.186667pt;}
.y11c{bottom:460.866667pt;}
.y1f{bottom:462.306667pt;}
.y146{bottom:466.146667pt;}
.y16f{bottom:473.506667pt;}
.y56{bottom:474.146667pt;}
.ya6{bottom:474.786667pt;}
.y11b{bottom:478.306667pt;}
.y1e{bottom:479.906667pt;}
.y145{bottom:483.746667pt;}
.y16e{bottom:491.106667pt;}
.y55{bottom:491.746667pt;}
.ya5{bottom:492.386667pt;}
.ydb{bottom:493.666667pt;}
.y1d{bottom:497.666667pt;}
.y144{bottom:501.346667pt;}
.y16d{bottom:508.386667pt;}
.y54{bottom:509.346667pt;}
.ya4{bottom:510.146667pt;}
.yda{bottom:511.586667pt;}
.y11a{bottom:514.466667pt;}
.y1c{bottom:515.266667pt;}
.y15b{bottom:518.786667pt;}
.y143{bottom:519.106667pt;}
.y16c{bottom:523.906667pt;}
.y53{bottom:527.106667pt;}
.ya3{bottom:527.746667pt;}
.yd9{bottom:528.866667pt;}
.y1b{bottom:532.866667pt;}
.y119{bottom:535.106667pt;}
.y142{bottom:536.706667pt;}
.y16b{bottom:544.546667pt;}
.y52{bottom:544.706667pt;}
.ya2{bottom:545.346667pt;}
.yd8{bottom:546.466667pt;}
.y1a{bottom:550.466667pt;}
.y141{bottom:554.306667pt;}
.y118{bottom:555.746667pt;}
.y51{bottom:562.333333pt;}
.ya1{bottom:562.973333pt;}
.yd7{bottom:564.413333pt;}
.y16a{bottom:565.213333pt;}
.y19{bottom:568.093333pt;}
.y140{bottom:571.933333pt;}
.y117{bottom:576.413333pt;}
.y50{bottom:579.933333pt;}
.ya0{bottom:580.573333pt;}
.yd6{bottom:582.173333pt;}
.y18{bottom:585.533333pt;}
.y169{bottom:585.853333pt;}
.y13f{bottom:589.533333pt;}
.y4f{bottom:597.533333pt;}
.y9f{bottom:598.333333pt;}
.yd5{bottom:599.773333pt;}
.y116{bottom:599.933333pt;}
.y17{bottom:601.533333pt;}
.y168{bottom:606.493333pt;}
.y13e{bottom:607.293333pt;}
.y4e{bottom:615.293333pt;}
.y9e{bottom:615.933333pt;}
.yd4{bottom:617.373333pt;}
.y115{bottom:617.533333pt;}
.y16{bottom:619.933333pt;}
.y13d{bottom:624.893333pt;}
.y167{bottom:627.293333pt;}
.y4d{bottom:632.893333pt;}
.y9d{bottom:633.533333pt;}
.yd3{bottom:634.973333pt;}
.y15{bottom:635.453333pt;}
.y13c{bottom:642.493333pt;}
.y166{bottom:647.933333pt;}
.y4c{bottom:650.493333pt;}
.y9c{bottom:651.133333pt;}
.yd2{bottom:652.573333pt;}
.y114{bottom:653.053333pt;}
.y13b{bottom:660.093333pt;}
.y14{bottom:660.893333pt;}
.y18b{bottom:667.773333pt;}
.y4b{bottom:668.093333pt;}
.y9b{bottom:668.413333pt;}
.y165{bottom:668.573333pt;}
.yd1{bottom:670.333333pt;}
.y113{bottom:670.813333pt;}
.y13a{bottom:677.693333pt;}
.y13{bottom:678.653333pt;}
.y18a{bottom:685.373333pt;}
.y4a{bottom:685.693333pt;}
.yd0{bottom:687.933333pt;}
.y112{bottom:688.413333pt;}
.y164{bottom:689.213333pt;}
.y9a{bottom:694.493333pt;}
.y139{bottom:695.453333pt;}
.y12{bottom:696.253333pt;}
.y49{bottom:703.453333pt;}
.ycf{bottom:705.533333pt;}
.y111{bottom:706.013333pt;}
.y99{bottom:712.093333pt;}
.y163{bottom:712.733333pt;}
.y138{bottom:713.053333pt;}
.y11{bottom:713.853333pt;}
.y48{bottom:721.053333pt;}
.yce{bottom:723.133333pt;}
.y110{bottom:723.613333pt;}
.y98{bottom:729.373333pt;}
.y137{bottom:730.653333pt;}
.y10{bottom:731.453333pt;}
.y47{bottom:738.653333pt;}
.ycd{bottom:740.733333pt;}
.y10f{bottom:741.213333pt;}
.y136{bottom:748.253333pt;}
.yf{bottom:749.053333pt;}
.y97{bottom:755.293333pt;}
.y46{bottom:756.253333pt;}
.ycc{bottom:758.493333pt;}
.y10e{bottom:758.973333pt;}
.y135{bottom:765.853333pt;}
.ye{bottom:766.813333pt;}
.y96{bottom:772.893333pt;}
.y45{bottom:773.853333pt;}
.ycb{bottom:776.093333pt;}
.y10d{bottom:776.573333pt;}
.y134{bottom:783.613333pt;}
.yd{bottom:786.693333pt;}
.y95{bottom:790.693333pt;}
.y189{bottom:791.333333pt;}
.y44{bottom:791.653333pt;}
.yca{bottom:793.733333pt;}
.y10c{bottom:794.213333pt;}
.y133{bottom:801.253333pt;}
.yc{bottom:805.733333pt;}
.y94{bottom:808.293333pt;}
.y43{bottom:809.253333pt;}
.yc9{bottom:811.013333pt;}
.y10b{bottom:811.813333pt;}
.y132{bottom:818.853333pt;}
.yb{bottom:823.493333pt;}
.y93{bottom:825.893333pt;}
.y42{bottom:826.853333pt;}
.yc8{bottom:828.613333pt;}
.y10a{bottom:829.413333pt;}
.y131{bottom:836.133333pt;}
.ya{bottom:841.413333pt;}
.y92{bottom:843.493333pt;}
.y41{bottom:844.453333pt;}
.yc7{bottom:846.693333pt;}
.y109{bottom:847.173333pt;}
.y162{bottom:853.733333pt;}
.y9{bottom:860.133333pt;}
.y91{bottom:861.093333pt;}
.y40{bottom:862.053333pt;}
.yc6{bottom:864.293333pt;}
.y108{bottom:864.773333pt;}
.y90{bottom:878.853333pt;}
.y3f{bottom:879.813333pt;}
.y8{bottom:880.933333pt;}
.yc5{bottom:881.893333pt;}
.y107{bottom:882.373333pt;}
.y8f{bottom:896.453333pt;}
.y3e{bottom:897.413333pt;}
.yc4{bottom:899.493333pt;}
.y106{bottom:899.653333pt;}
.y7{bottom:909.253333pt;}
.yfd{bottom:912.773333pt;}
.y8e{bottom:914.053333pt;}
.y3d{bottom:915.013333pt;}
.yc3{bottom:916.773333pt;}
.y8d{bottom:931.653333pt;}
.yc2{bottom:932.293333pt;}
.y3c{bottom:932.613333pt;}
.y5{bottom:943.813333pt;}
.y8c{bottom:949.253333pt;}
.y188{bottom:949.893333pt;}
.y3b{bottom:950.213333pt;}
.yc1{bottom:952.933333pt;}
.y8b{bottom:967.013333pt;}
.y3a{bottom:967.653333pt;}
.y6d{bottom:967.973333pt;}
.y4{bottom:971.173333pt;}
.yc0{bottom:973.573333pt;}
.y8a{bottom:984.293333pt;}
.y39{bottom:985.573333pt;}
.ybf{bottom:994.373333pt;}
.y3{bottom:998.693333pt;}
.yfb{bottom:1001.573333pt;}
.y89{bottom:1002.213333pt;}
.y38{bottom:1003.173333pt;}
.ybe{bottom:1015.040000pt;}
.y88{bottom:1019.840000pt;}
.y37{bottom:1020.800000pt;}
.y2{bottom:1026.080000pt;}
.y36{bottom:1044.320000pt;}
.y1{bottom:1053.120000pt;}
.y35{bottom:1061.120000pt;}
.he{height:0.031983pt;}
.h12{height:15.200000pt;}
.h11{height:15.360000pt;}
.h14{height:15.392000pt;}
.h1b{height:17.600000pt;}
.h1c{height:17.760000pt;}
.hf{height:21.760000pt;}
.h15{height:30.560000pt;}
.h13{height:30.720000pt;}
.h19{height:30.752000pt;}
.hd{height:45.600000pt;}
.hb{height:45.760000pt;}
.h10{height:47.109375pt;}
.ha{height:47.685000pt;}
.h6{height:52.134375pt;}
.h5{height:53.535000pt;}
.h7{height:54.598989pt;}
.h3{height:57.787500pt;}
.h9{height:57.888085pt;}
.h2{height:59.340000pt;}
.hc{height:62.812500pt;}
.h18{height:65.120000pt;}
.h16{height:76.640000pt;}
.h17{height:76.672000pt;}
.h4{height:85.785000pt;}
.h1a{height:88.160000pt;}
.h8{height:106.112000pt;}
.h1{height:1122.666667pt;}
.h0{height:1122.720000pt;}
.w17{width:25.280000pt;}
.w9{width:48.800000pt;}
.wc{width:55.680000pt;}
.w10{width:56.160000pt;}
.w15{width:66.400000pt;}
.w19{width:66.592000pt;}
.w1a{width:78.400000pt;}
.w16{width:93.632000pt;}
.w11{width:104.352000pt;}
.w6{width:116.352000pt;}
.w12{width:132.832000pt;}
.w18{width:133.786667pt;}
.w13{width:135.840000pt;}
.wd{width:151.866667pt;}
.w4{width:159.546667pt;}
.we{width:160.666667pt;}
.w7{width:163.226667pt;}
.w5{width:165.466667pt;}
.w14{width:193.506667pt;}
.w3{width:198.746667pt;}
.wf{width:217.346667pt;}
.wb{width:316.386667pt;}
.wa{width:375.773333pt;}
.w8{width:399.773333pt;}
.w1{width:794.000000pt;}
.w2{width:794.079988pt;}
.w0{width:794.080000pt;}
.x1e{left:-4.640000pt;}
.x1d{left:-2.240000pt;}
.x0{left:0.000000pt;}
.x11{left:0.960000pt;}
.x2e{left:4.000000pt;}
.x19{left:7.200000pt;}
.x2d{left:8.480000pt;}
.x8{left:10.720000pt;}
.xb{left:13.440000pt;}
.x2b{left:17.760000pt;}
.xf{left:22.080000pt;}
.x4{left:33.600000pt;}
.x20{left:38.720000pt;}
.x1{left:48.159988pt;}
.x7{left:49.114667pt;}
.x15{left:50.080000pt;}
.xa{left:51.520000pt;}
.xd{left:58.080000pt;}
.x17{left:71.999988pt;}
.x1f{left:81.792000pt;}
.x2{left:85.791988pt;}
.x2f{left:96.031988pt;}
.x5{left:99.360000pt;}
.x18{left:104.352000pt;}
.x6{left:122.272000pt;}
.x21{left:139.866667pt;}
.x1a{left:160.026667pt;}
.x10{left:171.866667pt;}
.x26{left:234.466667pt;}
.x22{left:246.306667pt;}
.x3{left:259.586667pt;}
.xe{left:278.466667pt;}
.x13{left:287.106655pt;}
.xc{left:295.746667pt;}
.x27{left:302.946667pt;}
.x1b{left:311.906667pt;}
.x2a{left:323.586667pt;}
.x25{left:349.346655pt;}
.x23{left:381.053333pt;}
.x2c{left:392.093333pt;}
.x14{left:397.053321pt;}
.x28{left:398.493333pt;}
.x9{left:424.573333pt;}
.x29{left:425.853333pt;}
.x16{left:427.773333pt;}
.x1c{left:472.573333pt;}
.x24{left:518.813333pt;}
.x12{left:573.573333pt;}
}




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