
    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_1672479662706ca962358172.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.202148;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_15548a8a3913b55e93f96a38.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.202148;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_8bc600869b14735b68596f57.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.050293;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_f64c6eb1a8bcecd426c60752.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_c62e52a199a2fcf861ec61f8.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.073242;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_7ac702baadd22cc60cc660e3.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.073242;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_6cb72317d0376f5c12ce11c8.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.050293;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_b5c24f40d06f386b4e81a383.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.065430;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_152cdc0cc16c5edacc887cea.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.065430;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:-27.360000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.760000px;}
.ls12{letter-spacing:-0.720000px;}
.ls5{letter-spacing:-0.360000px;}
.ls14{letter-spacing:-0.288000px;}
.ls3{letter-spacing:-0.216000px;}
.ls2{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.174000px;}
.ls13{letter-spacing:0.180000px;}
.ls4{letter-spacing:0.259920px;}
.ls1{letter-spacing:0.360000px;}
.ls7{letter-spacing:0.432000px;}
.ls8{letter-spacing:3.600000px;}
.ls11{letter-spacing:4.320000px;}
.lsf{letter-spacing:5.040000px;}
.ls6{letter-spacing:7.920000px;}
.ls9{letter-spacing:9.360000px;}
.lse{letter-spacing:11.520000px;}
.lsa{letter-spacing:14.400000px;}
.lsd{letter-spacing:15.120000px;}
.lsc{letter-spacing:16.560000px;}
.ls10{letter-spacing:25.920000px;}
.lsb{letter-spacing:28.080000px;}
.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;}
}
.ws1{word-spacing:-18.000000px;}
.ws4{word-spacing:-17.784000px;}
.ws8{word-spacing:-17.712000px;}
.ws5{word-spacing:-15.300000px;}
.ws6{word-spacing:-14.940000px;}
.ws7{word-spacing:-14.580000px;}
.ws0{word-spacing:-13.505760px;}
.ws2{word-spacing:-12.060000px;}
.ws3{word-spacing:0.000000px;}
._e{margin-left:-4.824000px;}
._7{margin-left:-3.624000px;}
._13{margin-left:-2.519520px;}
._2{margin-left:-1.008000px;}
._0{width:1.055520px;}
._10{width:2.088000px;}
._14{width:3.168000px;}
._15{width:4.272480px;}
._16{width:5.375520px;}
._c{width:7.272000px;}
._d{width:8.640000px;}
._11{width:10.008000px;}
._5{width:11.160000px;}
._6{width:12.600000px;}
._a{width:13.896000px;}
._1c{width:14.976000px;}
._1a{width:16.848000px;}
._1b{width:19.116480px;}
._21{width:20.193600px;}
._27{width:21.318720px;}
._17{width:22.392000px;}
._8{width:23.472000px;}
._9{width:24.624000px;}
._b{width:26.088480px;}
._2c{width:27.144000px;}
._3{width:28.152000px;}
._12{width:29.736000px;}
._26{width:31.176000px;}
._24{width:32.400000px;}
._25{width:33.720480px;}
._2b{width:35.640000px;}
._28{width:37.080000px;}
._20{width:38.232000px;}
._4{width:39.312000px;}
._f{width:41.328000px;}
._18{width:42.480000px;}
._19{width:43.632000px;}
._22{width:46.584000px;}
._23{width:47.952000px;}
._29{width:48.960000px;}
._2d{width:50.544000px;}
._1e{width:54.000000px;}
._1f{width:55.656000px;}
._1d{width:63.264000px;}
._2e{width:64.944000px;}
._1{width:82.776000px;}
._2a{width:88.200000px;}
._36{width:105.912000px;}
._37{width:107.796000px;}
._34{width:116.136000px;}
._35{width:117.276000px;}
._33{width:136.584000px;}
._2f{width:144.408000px;}
._30{width:145.476480px;}
._31{width:208.872000px;}
._32{width:210.300000px;}
.fc4{color:rgb(5,99,193);}
.fc3{color:transparent;}
.fc2{color:rgb(255,0,0);}
.fc1{color:rgb(0,112,192);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:48.240000px;}
.fs2{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.yd{bottom:4.319850px;}
.y8{bottom:4.500000px;}
.y3{bottom:5.400000px;}
.y9{bottom:6.300000px;}
.yb5{bottom:12.060000px;}
.yb1{bottom:12.240000px;}
.yb8{bottom:12.270000px;}
.yc2{bottom:12.285000px;}
.yf{bottom:12.600000px;}
.y6{bottom:14.400000px;}
.y7{bottom:19.080000px;}
.yc{bottom:20.160000px;}
.y2{bottom:40.140000px;}
.y5{bottom:49.140000px;}
.y6a{bottom:112.860000px;}
.y9f{bottom:115.560000px;}
.y149{bottom:120.960000px;}
.y1a8{bottom:122.760000px;}
.y8d{bottom:124.560000px;}
.yba{bottom:124.740000px;}
.y3a{bottom:126.360000px;}
.y131{bottom:127.260000px;}
.y18b{bottom:129.960000px;}
.y108{bottom:132.660000px;}
.y69{bottom:133.560000px;}
.y169{bottom:136.260000px;}
.ye2{bottom:140.400000px;}
.y148{bottom:141.660000px;}
.y185{bottom:142.560000px;}
.y1a7{bottom:143.460000px;}
.y124{bottom:144.360000px;}
.y8c{bottom:145.260000px;}
.y39{bottom:147.060000px;}
.y130{bottom:147.960000px;}
.y1c0{bottom:152.460000px;}
.y107{bottom:153.360000px;}
.y68{bottom:154.260000px;}
.y168{bottom:156.960000px;}
.y18a{bottom:159.660000px;}
.yb9{bottom:160.020000px;}
.ye1{bottom:161.100000px;}
.y147{bottom:162.360000px;}
.y184{bottom:163.260000px;}
.y123{bottom:165.060000px;}
.y8b{bottom:165.960000px;}
.y38{bottom:167.760000px;}
.y12f{bottom:168.660000px;}
.y15c{bottom:171.360000px;}
.y1a6{bottom:173.160000px;}
.y106{bottom:174.060000px;}
.y67{bottom:174.960000px;}
.y161{bottom:177.660000px;}
.y146{bottom:183.060000px;}
.y183{bottom:183.960000px;}
.y122{bottom:185.760000px;}
.y9e{bottom:186.660000px;}
.y37{bottom:188.460000px;}
.y189{bottom:189.360000px;}
.ye0{bottom:190.800000px;}
.y15b{bottom:192.060000px;}
.y1a5{bottom:193.860000px;}
.yb7{bottom:195.300000px;}
.y66{bottom:195.660000px;}
.y12e{bottom:198.390000px;}
.y105{bottom:203.790000px;}
.y182{bottom:204.690000px;}
.y121{bottom:206.490000px;}
.y160{bottom:207.390000px;}
.y36{bottom:209.190000px;}
.y145{bottom:212.790000px;}
.y1c5{bottom:214.590000px;}
.y65{bottom:216.390000px;}
.y12d{bottom:219.090000px;}
.ydf{bottom:220.530000px;}
.y15a{bottom:221.790000px;}
.y1a4{bottom:223.590000px;}
.y104{bottom:224.490000px;}
.y181{bottom:225.390000px;}
.y120{bottom:227.190000px;}
.y35{bottom:229.890000px;}
.yb6{bottom:230.610000px;}
.y144{bottom:233.490000px;}
.y64{bottom:237.090000px;}
.y167{bottom:239.790000px;}
.y159{bottom:242.490000px;}
.y1a3{bottom:244.290000px;}
.y103{bottom:245.190000px;}
.y9d{bottom:246.090000px;}
.y11f{bottom:247.890000px;}
.y12c{bottom:248.790000px;}
.yde{bottom:250.230000px;}
.y34{bottom:250.590000px;}
.y1bf{bottom:253.290000px;}
.y143{bottom:254.190000px;}
.y180{bottom:255.090000px;}
.y63{bottom:257.790000px;}
.yb4{bottom:265.890000px;}
.y9c{bottom:266.790000px;}
.y12b{bottom:269.490000px;}
.ydd{bottom:270.930000px;}
.y33{bottom:271.290000px;}
.y158{bottom:272.190000px;}
.y1a2{bottom:273.990000px;}
.y142{bottom:274.890000px;}
.y17f{bottom:275.790000px;}
.y11e{bottom:277.590000px;}
.y62{bottom:278.490000px;}
.y102{bottom:286.590000px;}
.y8a{bottom:287.490000px;}
.y12a{bottom:290.190000px;}
.ydc{bottom:291.630000px;}
.y157{bottom:292.890000px;}
.y1a1{bottom:294.690000px;}
.y141{bottom:295.590000px;}
.y17e{bottom:296.490000px;}
.y11d{bottom:298.290000px;}
.y61{bottom:299.190000px;}
.y32{bottom:300.990000px;}
.y1be{bottom:303.690000px;}
.y89{bottom:308.190000px;}
.y166{bottom:310.890000px;}
.ydb{bottom:312.330000px;}
.y101{bottom:316.290000px;}
.y17d{bottom:317.190000px;}
.y11c{bottom:318.990000px;}
.y60{bottom:319.890000px;}
.y156{bottom:322.590000px;}
.y1a0{bottom:324.390000px;}
.y140{bottom:325.290000px;}
.y88{bottom:328.890000px;}
.y31{bottom:330.690000px;}
.y165{bottom:331.590000px;}
.yda{bottom:333.030000px;}
.yb3{bottom:336.270000px;}
.y100{bottom:336.990000px;}
.y17c{bottom:337.890000px;}
.y11b{bottom:339.690000px;}
.y5f{bottom:340.590000px;}
.y155{bottom:343.290000px;}
.y19f{bottom:345.090000px;}
.y13f{bottom:345.990000px;}
.y87{bottom:349.590000px;}
.y164{bottom:352.290000px;}
.yd9{bottom:353.730000px;}
.y1bd{bottom:354.090000px;}
.yff{bottom:357.690000px;}
.y17b{bottom:358.590000px;}
.y30{bottom:360.390000px;}
.y5e{bottom:361.290000px;}
.y19e{bottom:365.790000px;}
.y13e{bottom:366.690000px;}
.y86{bottom:370.290000px;}
.yb2{bottom:371.550000px;}
.y154{bottom:372.990000px;}
.yd8{bottom:374.430000px;}
.y1bc{bottom:374.790000px;}
.y17a{bottom:379.290000px;}
.y11a{bottom:381.090000px;}
.y5d{bottom:381.990000px;}
.y1c4{bottom:383.790000px;}
.yfe{bottom:387.390000px;}
.y2f{bottom:390.090000px;}
.y85{bottom:390.990000px;}
.y153{bottom:393.690000px;}
.yd7{bottom:395.130000px;}
.y19d{bottom:395.490000px;}
.y9b{bottom:399.990000px;}
.y5c{bottom:402.690000px;}
.y1bb{bottom:404.490000px;}
.yb0{bottom:406.830000px;}
.yfd{bottom:408.090000px;}
.y179{bottom:408.990000px;}
.y2e{bottom:410.790000px;}
.y84{bottom:411.690000px;}
.y19c{bottom:416.190000px;}
.y13d{bottom:417.090000px;}
.y9a{bottom:420.690000px;}
.y5b{bottom:423.390000px;}
.yd6{bottom:424.830000px;}
.y1ba{bottom:425.190000px;}
.yfc{bottom:428.790000px;}
.y178{bottom:429.690000px;}
.y2d{bottom:431.490000px;}
.y83{bottom:432.390000px;}
.y13c{bottom:437.835000px;}
.y99{bottom:441.435000px;}
.y5a{bottom:444.135000px;}
.yd5{bottom:445.575000px;}
.y19b{bottom:445.935000px;}
.y177{bottom:450.435000px;}
.y2c{bottom:452.235000px;}
.y15f{bottom:453.135000px;}
.y1b9{bottom:454.935000px;}
.yaf{bottom:455.835000px;}
.yfb{bottom:458.535000px;}
.y82{bottom:462.135000px;}
.y59{bottom:464.835000px;}
.yd4{bottom:466.275000px;}
.y19a{bottom:466.635000px;}
.y176{bottom:471.135000px;}
.y2b{bottom:472.935000px;}
.y152{bottom:473.835000px;}
.yfa{bottom:479.235000px;}
.y119{bottom:481.935000px;}
.y81{bottom:482.835000px;}
.y1b8{bottom:484.635000px;}
.yae{bottom:485.535000px;}
.yd3{bottom:486.975000px;}
.y150{bottom:488.235000px;}
.y175{bottom:491.835000px;}
.y2a{bottom:493.635000px;}
.y58{bottom:494.535000px;}
.y199{bottom:496.335000px;}
.yf9{bottom:499.935000px;}
.y118{bottom:502.635000px;}
.y80{bottom:503.535000px;}
.y1b7{bottom:505.335000px;}
.y188{bottom:506.235000px;}
.yd2{bottom:507.675000px;}
.y13b{bottom:508.935000px;}
.y174{bottom:512.535000px;}
.y29{bottom:514.335000px;}
.y57{bottom:515.235000px;}
.y7f{bottom:524.235000px;}
.y198{bottom:526.035000px;}
.yd1{bottom:528.375000px;}
.yf8{bottom:529.635000px;}
.y117{bottom:532.335000px;}
.y173{bottom:533.235000px;}
.y28{bottom:535.035000px;}
.y56{bottom:535.935000px;}
.y14f{bottom:538.635000px;}
.y1c3{bottom:544.035000px;}
.y7e{bottom:544.935000px;}
.y197{bottom:546.735000px;}
.yd0{bottom:549.075000px;}
.yf7{bottom:550.335000px;}
.y116{bottom:553.035000px;}
.y98{bottom:553.935000px;}
.y27{bottom:555.735000px;}
.y55{bottom:556.635000px;}
.y14e{bottom:559.335000px;}
.y172{bottom:562.935000px;}
.y1c2{bottom:564.735000px;}
.y7d{bottom:565.635000px;}
.yf6{bottom:571.035000px;}
.y97{bottom:574.635000px;}
.y26{bottom:576.435000px;}
.y54{bottom:577.335000px;}
.ycf{bottom:578.775000px;}
.y115{bottom:582.735000px;}
.y171{bottom:583.635000px;}
.y1b6{bottom:585.435000px;}
.y129{bottom:586.335000px;}
.y14d{bottom:589.035000px;}
.y13a{bottom:591.735000px;}
.y7c{bottom:595.335000px;}
.y25{bottom:597.135000px;}
.y53{bottom:598.035000px;}
.yce{bottom:599.475000px;}
.yf5{bottom:600.735000px;}
.y114{bottom:603.435000px;}
.y170{bottom:604.335000px;}
.y196{bottom:606.135000px;}
.y151{bottom:607.035000px;}
.y14c{bottom:609.735000px;}
.y1b5{bottom:615.135000px;}
.y96{bottom:616.035000px;}
.ye{bottom:617.475000px;}
.y24{bottom:617.835000px;}
.y52{bottom:618.735000px;}
.ycd{bottom:620.175000px;}
.yf4{bottom:621.435000px;}
.y7b{bottom:625.035000px;}
.y195{bottom:626.835000px;}
.y15e{bottom:627.735000px;}
.y113{bottom:633.135000px;}
.y1b4{bottom:635.835000px;}
.y95{bottom:636.735000px;}
.y23{bottom:638.535000px;}
.y51{bottom:639.435000px;}
.ycc{bottom:640.875000px;}
.yf3{bottom:642.135000px;}
.y7a{bottom:645.735000px;}
.y15d{bottom:648.435000px;}
.y112{bottom:653.835000px;}
.y194{bottom:656.535000px;}
.y94{bottom:657.435000px;}
.y22{bottom:659.235000px;}
.y50{bottom:660.135000px;}
.ycb{bottom:661.575000px;}
.y139{bottom:662.835000px;}
.y1c1{bottom:665.535000px;}
.y79{bottom:666.435000px;}
.y187{bottom:669.135000px;}
.yf2{bottom:671.835000px;}
.y16f{bottom:675.465000px;}
.y128{bottom:678.165000px;}
.y21{bottom:679.965000px;}
.y4f{bottom:680.865000px;}
.y111{bottom:683.565000px;}
.y193{bottom:686.265000px;}
.y78{bottom:687.165000px;}
.yad{bottom:689.865000px;}
.yca{bottom:691.305000px;}
.yf1{bottom:692.565000px;}
.y16e{bottom:696.165000px;}
.y127{bottom:698.865000px;}
.y20{bottom:700.665000px;}
.y4e{bottom:701.565000px;}
.y110{bottom:704.265000px;}
.y77{bottom:707.865000px;}
.y14b{bottom:710.565000px;}
.yf0{bottom:713.265000px;}
.y192{bottom:715.965000px;}
.y16d{bottom:716.865000px;}
.yac{bottom:719.565000px;}
.yc9{bottom:721.005000px;}
.y1f{bottom:721.365000px;}
.y4d{bottom:722.265000px;}
.y93{bottom:728.565000px;}
.y14a{bottom:731.265000px;}
.y10f{bottom:733.965000px;}
.y1b3{bottom:736.665000px;}
.y76{bottom:737.565000px;}
.yab{bottom:740.265000px;}
.yc8{bottom:741.705000px;}
.y1e{bottom:742.065000px;}
.y4c{bottom:742.965000px;}
.y191{bottom:745.665000px;}
.y92{bottom:749.265000px;}
.y163{bottom:751.965000px;}
.y10e{bottom:754.665000px;}
.y1b2{bottom:757.365000px;}
.y75{bottom:758.265000px;}
.yaa{bottom:760.965000px;}
.yc7{bottom:762.405000px;}
.y1d{bottom:762.765000px;}
.y4b{bottom:763.665000px;}
.y190{bottom:766.365000px;}
.y91{bottom:769.965000px;}
.y162{bottom:772.665000px;}
.y138{bottom:775.365000px;}
.y74{bottom:778.965000px;}
.ya9{bottom:781.665000px;}
.yc6{bottom:783.105000px;}
.y1c{bottom:783.465000px;}
.y4a{bottom:784.365000px;}
.y1b1{bottom:787.065000px;}
.y90{bottom:790.665000px;}
.y137{bottom:796.065000px;}
.y73{bottom:799.665000px;}
.ya8{bottom:802.365000px;}
.yef{bottom:805.065000px;}
.y1b0{bottom:807.765000px;}
.y8f{bottom:811.365000px;}
.yc5{bottom:812.805000px;}
.y1b{bottom:813.165000px;}
.y49{bottom:814.065000px;}
.y136{bottom:816.765000px;}
.y72{bottom:820.365000px;}
.ya7{bottom:823.065000px;}
.y10d{bottom:825.765000px;}
.y1af{bottom:828.465000px;}
.y126{bottom:832.065000px;}
.yee{bottom:834.765000px;}
.y135{bottom:837.465000px;}
.yc4{bottom:839.265000px;}
.y71{bottom:841.065000px;}
.y1a{bottom:842.865000px;}
.y48{bottom:843.765000px;}
.y125{bottom:852.765000px;}
.yed{bottom:855.465000px;}
.y1ae{bottom:858.165000px;}
.y70{bottom:861.765000px;}
.ya6{bottom:864.465000px;}
.y134{bottom:867.165000px;}
.y16c{bottom:870.765000px;}
.y47{bottom:873.465000px;}
.yc3{bottom:874.545000px;}
.yec{bottom:876.165000px;}
.y1ad{bottom:878.865000px;}
.y19{bottom:879.405000px;}
.y6f{bottom:882.465000px;}
.y186{bottom:885.165000px;}
.y133{bottom:887.865000px;}
.y16b{bottom:891.465000px;}
.ya5{bottom:894.165000px;}
.yeb{bottom:896.865000px;}
.y46{bottom:903.165000px;}
.y10c{bottom:905.865000px;}
.y18f{bottom:908.565000px;}
.y18{bottom:909.105000px;}
.yc1{bottom:909.825000px;}
.y16a{bottom:912.165000px;}
.ya4{bottom:914.910000px;}
.yea{bottom:917.610000px;}
.y45{bottom:923.910000px;}
.y1ac{bottom:929.310000px;}
.y17{bottom:932.010000px;}
.y6e{bottom:932.910000px;}
.ya3{bottom:935.610000px;}
.y132{bottom:938.310000px;}
.y44{bottom:944.610000px;}
.yc0{bottom:945.150000px;}
.ye9{bottom:947.310000px;}
.y6d{bottom:953.610000px;}
.y10b{bottom:956.310000px;}
.y18e{bottom:959.010000px;}
.y16{bottom:961.710000px;}
.y43{bottom:965.310000px;}
.ye8{bottom:968.010000px;}
.y6c{bottom:974.310000px;}
.y10a{bottom:977.010000px;}
.y1ab{bottom:979.710000px;}
.ybf{bottom:980.250000px;}
.y42{bottom:986.010000px;}
.ye7{bottom:988.710000px;}
.y15{bottom:991.410000px;}
.y6b{bottom:995.010000px;}
.y109{bottom:997.710000px;}
.y8e{bottom:1006.710000px;}
.y18d{bottom:1009.410000px;}
.ybe{bottom:1015.530000px;}
.y41{bottom:1015.710000px;}
.ye6{bottom:1018.410000px;}
.y14{bottom:1021.110000px;}
.ya2{bottom:1027.410000px;}
.y1aa{bottom:1030.110000px;}
.y40{bottom:1036.410000px;}
.ye5{bottom:1039.110000px;}
.y13{bottom:1041.810000px;}
.ya1{bottom:1048.110000px;}
.ybd{bottom:1050.810000px;}
.y3f{bottom:1057.110000px;}
.ye4{bottom:1059.810000px;}
.ya0{bottom:1068.810000px;}
.y12{bottom:1071.510000px;}
.y3e{bottom:1077.810000px;}
.y1a9{bottom:1080.510000px;}
.ybc{bottom:1086.090000px;}
.ye3{bottom:1089.510000px;}
.y3d{bottom:1098.510000px;}
.y11{bottom:1101.210000px;}
.y18c{bottom:1110.210000px;}
.y3c{bottom:1119.210000px;}
.ybb{bottom:1121.370000px;}
.y10{bottom:1130.910000px;}
.y3b{bottom:1139.910000px;}
.y4{bottom:1191.780000px;}
.y1{bottom:1200.780000px;}
.yb{bottom:1246.320000px;}
.ya{bottom:1261.980000px;}
.h6{height:19.620000px;}
.h8{height:21.420000px;}
.hb{height:28.260000px;}
.h13{height:35.100000px;}
.h12{height:35.280000px;}
.h10{height:35.316000px;}
.hf{height:40.254961px;}
.h9{height:49.868086px;}
.h11{height:51.239531px;}
.h2{height:54.900000px;}
.hd{height:60.082031px;}
.h14{height:61.171875px;}
.h7{height:61.189805px;}
.hc{height:61.734375px;}
.h4{height:63.900000px;}
.he{height:65.122031px;}
.ha{height:65.884219px;}
.h5{height:67.824844px;}
.h3{height:73.722656px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.wb{width:49.716000px;}
.w3{width:75.240000px;}
.w8{width:84.990000px;}
.w5{width:188.130000px;}
.w4{width:192.090000px;}
.w6{width:200.595000px;}
.wa{width:349.275000px;}
.w9{width:349.410000px;}
.w2{width:359.175000px;}
.w7{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x6{left:1.440000px;}
.x15{left:5.400000px;}
.xd{left:10.800000px;}
.x5{left:21.780000px;}
.xa{left:31.185000px;}
.x7{left:47.340000px;}
.x3{left:51.120000px;}
.xb{left:106.235987px;}
.x10{left:145.295987px;}
.xe{left:146.735987px;}
.x2{left:161.145000px;}
.x14{left:174.449987px;}
.x1{left:212.430000px;}
.x13{left:220.529987px;}
.x12{left:305.894987px;}
.xf{left:400.934987px;}
.x8{left:420.375000px;}
.x11{left:446.474987px;}
.x16{left:455.655000px;}
.x9{left:656.205000px;}
.x4{left:761.010000px;}
.x17{left:804.930000px;}
.xc{left:807.990000px;}
@media print{
.v2{vertical-align:-24.320000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.120000pt;}
.ls12{letter-spacing:-0.640000pt;}
.ls5{letter-spacing:-0.320000pt;}
.ls14{letter-spacing:-0.256000pt;}
.ls3{letter-spacing:-0.192000pt;}
.ls2{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.154667pt;}
.ls13{letter-spacing:0.160000pt;}
.ls4{letter-spacing:0.231040pt;}
.ls1{letter-spacing:0.320000pt;}
.ls7{letter-spacing:0.384000pt;}
.ls8{letter-spacing:3.200000pt;}
.ls11{letter-spacing:3.840000pt;}
.lsf{letter-spacing:4.480000pt;}
.ls6{letter-spacing:7.040000pt;}
.ls9{letter-spacing:8.320000pt;}
.lse{letter-spacing:10.240000pt;}
.lsa{letter-spacing:12.800000pt;}
.lsd{letter-spacing:13.440000pt;}
.lsc{letter-spacing:14.720000pt;}
.ls10{letter-spacing:23.040000pt;}
.lsb{letter-spacing:24.960000pt;}
.ws1{word-spacing:-16.000000pt;}
.ws4{word-spacing:-15.808000pt;}
.ws8{word-spacing:-15.744000pt;}
.ws5{word-spacing:-13.600000pt;}
.ws6{word-spacing:-13.280000pt;}
.ws7{word-spacing:-12.960000pt;}
.ws0{word-spacing:-12.005120pt;}
.ws2{word-spacing:-10.720000pt;}
.ws3{word-spacing:0.000000pt;}
._e{margin-left:-4.288000pt;}
._7{margin-left:-3.221333pt;}
._13{margin-left:-2.239573pt;}
._2{margin-left:-0.896000pt;}
._0{width:0.938240pt;}
._10{width:1.856000pt;}
._14{width:2.816000pt;}
._15{width:3.797760pt;}
._16{width:4.778240pt;}
._c{width:6.464000pt;}
._d{width:7.680000pt;}
._11{width:8.896000pt;}
._5{width:9.920000pt;}
._6{width:11.200000pt;}
._a{width:12.352000pt;}
._1c{width:13.312000pt;}
._1a{width:14.976000pt;}
._1b{width:16.992427pt;}
._21{width:17.949867pt;}
._27{width:18.949973pt;}
._17{width:19.904000pt;}
._8{width:20.864000pt;}
._9{width:21.888000pt;}
._b{width:23.189760pt;}
._2c{width:24.128000pt;}
._3{width:25.024000pt;}
._12{width:26.432000pt;}
._26{width:27.712000pt;}
._24{width:28.800000pt;}
._25{width:29.973760pt;}
._2b{width:31.680000pt;}
._28{width:32.960000pt;}
._20{width:33.984000pt;}
._4{width:34.944000pt;}
._f{width:36.736000pt;}
._18{width:37.760000pt;}
._19{width:38.784000pt;}
._22{width:41.408000pt;}
._23{width:42.624000pt;}
._29{width:43.520000pt;}
._2d{width:44.928000pt;}
._1e{width:48.000000pt;}
._1f{width:49.472000pt;}
._1d{width:56.234667pt;}
._2e{width:57.728000pt;}
._1{width:73.578667pt;}
._2a{width:78.400000pt;}
._36{width:94.144000pt;}
._37{width:95.818667pt;}
._34{width:103.232000pt;}
._35{width:104.245333pt;}
._33{width:121.408000pt;}
._2f{width:128.362667pt;}
._30{width:129.312427pt;}
._31{width:185.664000pt;}
._32{width:186.933333pt;}
.fs3{font-size:42.880000pt;}
.fs2{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.yd{bottom:3.839867pt;}
.y8{bottom:4.000000pt;}
.y3{bottom:4.800000pt;}
.y9{bottom:5.600000pt;}
.yb5{bottom:10.720000pt;}
.yb1{bottom:10.880000pt;}
.yb8{bottom:10.906667pt;}
.yc2{bottom:10.920000pt;}
.yf{bottom:11.200000pt;}
.y6{bottom:12.800000pt;}
.y7{bottom:16.960000pt;}
.yc{bottom:17.920000pt;}
.y2{bottom:35.680000pt;}
.y5{bottom:43.680000pt;}
.y6a{bottom:100.320000pt;}
.y9f{bottom:102.720000pt;}
.y149{bottom:107.520000pt;}
.y1a8{bottom:109.120000pt;}
.y8d{bottom:110.720000pt;}
.yba{bottom:110.880000pt;}
.y3a{bottom:112.320000pt;}
.y131{bottom:113.120000pt;}
.y18b{bottom:115.520000pt;}
.y108{bottom:117.920000pt;}
.y69{bottom:118.720000pt;}
.y169{bottom:121.120000pt;}
.ye2{bottom:124.800000pt;}
.y148{bottom:125.920000pt;}
.y185{bottom:126.720000pt;}
.y1a7{bottom:127.520000pt;}
.y124{bottom:128.320000pt;}
.y8c{bottom:129.120000pt;}
.y39{bottom:130.720000pt;}
.y130{bottom:131.520000pt;}
.y1c0{bottom:135.520000pt;}
.y107{bottom:136.320000pt;}
.y68{bottom:137.120000pt;}
.y168{bottom:139.520000pt;}
.y18a{bottom:141.920000pt;}
.yb9{bottom:142.240000pt;}
.ye1{bottom:143.200000pt;}
.y147{bottom:144.320000pt;}
.y184{bottom:145.120000pt;}
.y123{bottom:146.720000pt;}
.y8b{bottom:147.520000pt;}
.y38{bottom:149.120000pt;}
.y12f{bottom:149.920000pt;}
.y15c{bottom:152.320000pt;}
.y1a6{bottom:153.920000pt;}
.y106{bottom:154.720000pt;}
.y67{bottom:155.520000pt;}
.y161{bottom:157.920000pt;}
.y146{bottom:162.720000pt;}
.y183{bottom:163.520000pt;}
.y122{bottom:165.120000pt;}
.y9e{bottom:165.920000pt;}
.y37{bottom:167.520000pt;}
.y189{bottom:168.320000pt;}
.ye0{bottom:169.600000pt;}
.y15b{bottom:170.720000pt;}
.y1a5{bottom:172.320000pt;}
.yb7{bottom:173.600000pt;}
.y66{bottom:173.920000pt;}
.y12e{bottom:176.346667pt;}
.y105{bottom:181.146667pt;}
.y182{bottom:181.946667pt;}
.y121{bottom:183.546667pt;}
.y160{bottom:184.346667pt;}
.y36{bottom:185.946667pt;}
.y145{bottom:189.146667pt;}
.y1c5{bottom:190.746667pt;}
.y65{bottom:192.346667pt;}
.y12d{bottom:194.746667pt;}
.ydf{bottom:196.026667pt;}
.y15a{bottom:197.146667pt;}
.y1a4{bottom:198.746667pt;}
.y104{bottom:199.546667pt;}
.y181{bottom:200.346667pt;}
.y120{bottom:201.946667pt;}
.y35{bottom:204.346667pt;}
.yb6{bottom:204.986667pt;}
.y144{bottom:207.546667pt;}
.y64{bottom:210.746667pt;}
.y167{bottom:213.146667pt;}
.y159{bottom:215.546667pt;}
.y1a3{bottom:217.146667pt;}
.y103{bottom:217.946667pt;}
.y9d{bottom:218.746667pt;}
.y11f{bottom:220.346667pt;}
.y12c{bottom:221.146667pt;}
.yde{bottom:222.426667pt;}
.y34{bottom:222.746667pt;}
.y1bf{bottom:225.146667pt;}
.y143{bottom:225.946667pt;}
.y180{bottom:226.746667pt;}
.y63{bottom:229.146667pt;}
.yb4{bottom:236.346667pt;}
.y9c{bottom:237.146667pt;}
.y12b{bottom:239.546667pt;}
.ydd{bottom:240.826667pt;}
.y33{bottom:241.146667pt;}
.y158{bottom:241.946667pt;}
.y1a2{bottom:243.546667pt;}
.y142{bottom:244.346667pt;}
.y17f{bottom:245.146667pt;}
.y11e{bottom:246.746667pt;}
.y62{bottom:247.546667pt;}
.y102{bottom:254.746667pt;}
.y8a{bottom:255.546667pt;}
.y12a{bottom:257.946667pt;}
.ydc{bottom:259.226667pt;}
.y157{bottom:260.346667pt;}
.y1a1{bottom:261.946667pt;}
.y141{bottom:262.746667pt;}
.y17e{bottom:263.546667pt;}
.y11d{bottom:265.146667pt;}
.y61{bottom:265.946667pt;}
.y32{bottom:267.546667pt;}
.y1be{bottom:269.946667pt;}
.y89{bottom:273.946667pt;}
.y166{bottom:276.346667pt;}
.ydb{bottom:277.626667pt;}
.y101{bottom:281.146667pt;}
.y17d{bottom:281.946667pt;}
.y11c{bottom:283.546667pt;}
.y60{bottom:284.346667pt;}
.y156{bottom:286.746667pt;}
.y1a0{bottom:288.346667pt;}
.y140{bottom:289.146667pt;}
.y88{bottom:292.346667pt;}
.y31{bottom:293.946667pt;}
.y165{bottom:294.746667pt;}
.yda{bottom:296.026667pt;}
.yb3{bottom:298.906667pt;}
.y100{bottom:299.546667pt;}
.y17c{bottom:300.346667pt;}
.y11b{bottom:301.946667pt;}
.y5f{bottom:302.746667pt;}
.y155{bottom:305.146667pt;}
.y19f{bottom:306.746667pt;}
.y13f{bottom:307.546667pt;}
.y87{bottom:310.746667pt;}
.y164{bottom:313.146667pt;}
.yd9{bottom:314.426667pt;}
.y1bd{bottom:314.746667pt;}
.yff{bottom:317.946667pt;}
.y17b{bottom:318.746667pt;}
.y30{bottom:320.346667pt;}
.y5e{bottom:321.146667pt;}
.y19e{bottom:325.146667pt;}
.y13e{bottom:325.946667pt;}
.y86{bottom:329.146667pt;}
.yb2{bottom:330.266667pt;}
.y154{bottom:331.546667pt;}
.yd8{bottom:332.826667pt;}
.y1bc{bottom:333.146667pt;}
.y17a{bottom:337.146667pt;}
.y11a{bottom:338.746667pt;}
.y5d{bottom:339.546667pt;}
.y1c4{bottom:341.146667pt;}
.yfe{bottom:344.346667pt;}
.y2f{bottom:346.746667pt;}
.y85{bottom:347.546667pt;}
.y153{bottom:349.946667pt;}
.yd7{bottom:351.226667pt;}
.y19d{bottom:351.546667pt;}
.y9b{bottom:355.546667pt;}
.y5c{bottom:357.946667pt;}
.y1bb{bottom:359.546667pt;}
.yb0{bottom:361.626667pt;}
.yfd{bottom:362.746667pt;}
.y179{bottom:363.546667pt;}
.y2e{bottom:365.146667pt;}
.y84{bottom:365.946667pt;}
.y19c{bottom:369.946667pt;}
.y13d{bottom:370.746667pt;}
.y9a{bottom:373.946667pt;}
.y5b{bottom:376.346667pt;}
.yd6{bottom:377.626667pt;}
.y1ba{bottom:377.946667pt;}
.yfc{bottom:381.146667pt;}
.y178{bottom:381.946667pt;}
.y2d{bottom:383.546667pt;}
.y83{bottom:384.346667pt;}
.y13c{bottom:389.186667pt;}
.y99{bottom:392.386667pt;}
.y5a{bottom:394.786667pt;}
.yd5{bottom:396.066667pt;}
.y19b{bottom:396.386667pt;}
.y177{bottom:400.386667pt;}
.y2c{bottom:401.986667pt;}
.y15f{bottom:402.786667pt;}
.y1b9{bottom:404.386667pt;}
.yaf{bottom:405.186667pt;}
.yfb{bottom:407.586667pt;}
.y82{bottom:410.786667pt;}
.y59{bottom:413.186667pt;}
.yd4{bottom:414.466667pt;}
.y19a{bottom:414.786667pt;}
.y176{bottom:418.786667pt;}
.y2b{bottom:420.386667pt;}
.y152{bottom:421.186667pt;}
.yfa{bottom:425.986667pt;}
.y119{bottom:428.386667pt;}
.y81{bottom:429.186667pt;}
.y1b8{bottom:430.786667pt;}
.yae{bottom:431.586667pt;}
.yd3{bottom:432.866667pt;}
.y150{bottom:433.986667pt;}
.y175{bottom:437.186667pt;}
.y2a{bottom:438.786667pt;}
.y58{bottom:439.586667pt;}
.y199{bottom:441.186667pt;}
.yf9{bottom:444.386667pt;}
.y118{bottom:446.786667pt;}
.y80{bottom:447.586667pt;}
.y1b7{bottom:449.186667pt;}
.y188{bottom:449.986667pt;}
.yd2{bottom:451.266667pt;}
.y13b{bottom:452.386667pt;}
.y174{bottom:455.586667pt;}
.y29{bottom:457.186667pt;}
.y57{bottom:457.986667pt;}
.y7f{bottom:465.986667pt;}
.y198{bottom:467.586667pt;}
.yd1{bottom:469.666667pt;}
.yf8{bottom:470.786667pt;}
.y117{bottom:473.186667pt;}
.y173{bottom:473.986667pt;}
.y28{bottom:475.586667pt;}
.y56{bottom:476.386667pt;}
.y14f{bottom:478.786667pt;}
.y1c3{bottom:483.586667pt;}
.y7e{bottom:484.386667pt;}
.y197{bottom:485.986667pt;}
.yd0{bottom:488.066667pt;}
.yf7{bottom:489.186667pt;}
.y116{bottom:491.586667pt;}
.y98{bottom:492.386667pt;}
.y27{bottom:493.986667pt;}
.y55{bottom:494.786667pt;}
.y14e{bottom:497.186667pt;}
.y172{bottom:500.386667pt;}
.y1c2{bottom:501.986667pt;}
.y7d{bottom:502.786667pt;}
.yf6{bottom:507.586667pt;}
.y97{bottom:510.786667pt;}
.y26{bottom:512.386667pt;}
.y54{bottom:513.186667pt;}
.ycf{bottom:514.466667pt;}
.y115{bottom:517.986667pt;}
.y171{bottom:518.786667pt;}
.y1b6{bottom:520.386667pt;}
.y129{bottom:521.186667pt;}
.y14d{bottom:523.586667pt;}
.y13a{bottom:525.986667pt;}
.y7c{bottom:529.186667pt;}
.y25{bottom:530.786667pt;}
.y53{bottom:531.586667pt;}
.yce{bottom:532.866667pt;}
.yf5{bottom:533.986667pt;}
.y114{bottom:536.386667pt;}
.y170{bottom:537.186667pt;}
.y196{bottom:538.786667pt;}
.y151{bottom:539.586667pt;}
.y14c{bottom:541.986667pt;}
.y1b5{bottom:546.786667pt;}
.y96{bottom:547.586667pt;}
.ye{bottom:548.866667pt;}
.y24{bottom:549.186667pt;}
.y52{bottom:549.986667pt;}
.ycd{bottom:551.266667pt;}
.yf4{bottom:552.386667pt;}
.y7b{bottom:555.586667pt;}
.y195{bottom:557.186667pt;}
.y15e{bottom:557.986667pt;}
.y113{bottom:562.786667pt;}
.y1b4{bottom:565.186667pt;}
.y95{bottom:565.986667pt;}
.y23{bottom:567.586667pt;}
.y51{bottom:568.386667pt;}
.ycc{bottom:569.666667pt;}
.yf3{bottom:570.786667pt;}
.y7a{bottom:573.986667pt;}
.y15d{bottom:576.386667pt;}
.y112{bottom:581.186667pt;}
.y194{bottom:583.586667pt;}
.y94{bottom:584.386667pt;}
.y22{bottom:585.986667pt;}
.y50{bottom:586.786667pt;}
.ycb{bottom:588.066667pt;}
.y139{bottom:589.186667pt;}
.y1c1{bottom:591.586667pt;}
.y79{bottom:592.386667pt;}
.y187{bottom:594.786667pt;}
.yf2{bottom:597.186667pt;}
.y16f{bottom:600.413333pt;}
.y128{bottom:602.813333pt;}
.y21{bottom:604.413333pt;}
.y4f{bottom:605.213333pt;}
.y111{bottom:607.613333pt;}
.y193{bottom:610.013333pt;}
.y78{bottom:610.813333pt;}
.yad{bottom:613.213333pt;}
.yca{bottom:614.493333pt;}
.yf1{bottom:615.613333pt;}
.y16e{bottom:618.813333pt;}
.y127{bottom:621.213333pt;}
.y20{bottom:622.813333pt;}
.y4e{bottom:623.613333pt;}
.y110{bottom:626.013333pt;}
.y77{bottom:629.213333pt;}
.y14b{bottom:631.613333pt;}
.yf0{bottom:634.013333pt;}
.y192{bottom:636.413333pt;}
.y16d{bottom:637.213333pt;}
.yac{bottom:639.613333pt;}
.yc9{bottom:640.893333pt;}
.y1f{bottom:641.213333pt;}
.y4d{bottom:642.013333pt;}
.y93{bottom:647.613333pt;}
.y14a{bottom:650.013333pt;}
.y10f{bottom:652.413333pt;}
.y1b3{bottom:654.813333pt;}
.y76{bottom:655.613333pt;}
.yab{bottom:658.013333pt;}
.yc8{bottom:659.293333pt;}
.y1e{bottom:659.613333pt;}
.y4c{bottom:660.413333pt;}
.y191{bottom:662.813333pt;}
.y92{bottom:666.013333pt;}
.y163{bottom:668.413333pt;}
.y10e{bottom:670.813333pt;}
.y1b2{bottom:673.213333pt;}
.y75{bottom:674.013333pt;}
.yaa{bottom:676.413333pt;}
.yc7{bottom:677.693333pt;}
.y1d{bottom:678.013333pt;}
.y4b{bottom:678.813333pt;}
.y190{bottom:681.213333pt;}
.y91{bottom:684.413333pt;}
.y162{bottom:686.813333pt;}
.y138{bottom:689.213333pt;}
.y74{bottom:692.413333pt;}
.ya9{bottom:694.813333pt;}
.yc6{bottom:696.093333pt;}
.y1c{bottom:696.413333pt;}
.y4a{bottom:697.213333pt;}
.y1b1{bottom:699.613333pt;}
.y90{bottom:702.813333pt;}
.y137{bottom:707.613333pt;}
.y73{bottom:710.813333pt;}
.ya8{bottom:713.213333pt;}
.yef{bottom:715.613333pt;}
.y1b0{bottom:718.013333pt;}
.y8f{bottom:721.213333pt;}
.yc5{bottom:722.493333pt;}
.y1b{bottom:722.813333pt;}
.y49{bottom:723.613333pt;}
.y136{bottom:726.013333pt;}
.y72{bottom:729.213333pt;}
.ya7{bottom:731.613333pt;}
.y10d{bottom:734.013333pt;}
.y1af{bottom:736.413333pt;}
.y126{bottom:739.613333pt;}
.yee{bottom:742.013333pt;}
.y135{bottom:744.413333pt;}
.yc4{bottom:746.013333pt;}
.y71{bottom:747.613333pt;}
.y1a{bottom:749.213333pt;}
.y48{bottom:750.013333pt;}
.y125{bottom:758.013333pt;}
.yed{bottom:760.413333pt;}
.y1ae{bottom:762.813333pt;}
.y70{bottom:766.013333pt;}
.ya6{bottom:768.413333pt;}
.y134{bottom:770.813333pt;}
.y16c{bottom:774.013333pt;}
.y47{bottom:776.413333pt;}
.yc3{bottom:777.373333pt;}
.yec{bottom:778.813333pt;}
.y1ad{bottom:781.213333pt;}
.y19{bottom:781.693333pt;}
.y6f{bottom:784.413333pt;}
.y186{bottom:786.813333pt;}
.y133{bottom:789.213333pt;}
.y16b{bottom:792.413333pt;}
.ya5{bottom:794.813333pt;}
.yeb{bottom:797.213333pt;}
.y46{bottom:802.813333pt;}
.y10c{bottom:805.213333pt;}
.y18f{bottom:807.613333pt;}
.y18{bottom:808.093333pt;}
.yc1{bottom:808.733333pt;}
.y16a{bottom:810.813333pt;}
.ya4{bottom:813.253333pt;}
.yea{bottom:815.653333pt;}
.y45{bottom:821.253333pt;}
.y1ac{bottom:826.053333pt;}
.y17{bottom:828.453333pt;}
.y6e{bottom:829.253333pt;}
.ya3{bottom:831.653333pt;}
.y132{bottom:834.053333pt;}
.y44{bottom:839.653333pt;}
.yc0{bottom:840.133333pt;}
.ye9{bottom:842.053333pt;}
.y6d{bottom:847.653333pt;}
.y10b{bottom:850.053333pt;}
.y18e{bottom:852.453333pt;}
.y16{bottom:854.853333pt;}
.y43{bottom:858.053333pt;}
.ye8{bottom:860.453333pt;}
.y6c{bottom:866.053333pt;}
.y10a{bottom:868.453333pt;}
.y1ab{bottom:870.853333pt;}
.ybf{bottom:871.333333pt;}
.y42{bottom:876.453333pt;}
.ye7{bottom:878.853333pt;}
.y15{bottom:881.253333pt;}
.y6b{bottom:884.453333pt;}
.y109{bottom:886.853333pt;}
.y8e{bottom:894.853333pt;}
.y18d{bottom:897.253333pt;}
.ybe{bottom:902.693333pt;}
.y41{bottom:902.853333pt;}
.ye6{bottom:905.253333pt;}
.y14{bottom:907.653333pt;}
.ya2{bottom:913.253333pt;}
.y1aa{bottom:915.653333pt;}
.y40{bottom:921.253333pt;}
.ye5{bottom:923.653333pt;}
.y13{bottom:926.053333pt;}
.ya1{bottom:931.653333pt;}
.ybd{bottom:934.053333pt;}
.y3f{bottom:939.653333pt;}
.ye4{bottom:942.053333pt;}
.ya0{bottom:950.053333pt;}
.y12{bottom:952.453333pt;}
.y3e{bottom:958.053333pt;}
.y1a9{bottom:960.453333pt;}
.ybc{bottom:965.413333pt;}
.ye3{bottom:968.453333pt;}
.y3d{bottom:976.453333pt;}
.y11{bottom:978.853333pt;}
.y18c{bottom:986.853333pt;}
.y3c{bottom:994.853333pt;}
.ybb{bottom:996.773333pt;}
.y10{bottom:1005.253333pt;}
.y3b{bottom:1013.253333pt;}
.y4{bottom:1059.360000pt;}
.y1{bottom:1067.360000pt;}
.yb{bottom:1107.840000pt;}
.ya{bottom:1121.760000pt;}
.h6{height:17.440000pt;}
.h8{height:19.040000pt;}
.hb{height:25.120000pt;}
.h13{height:31.200000pt;}
.h12{height:31.360000pt;}
.h10{height:31.392000pt;}
.hf{height:35.782187pt;}
.h9{height:44.327188pt;}
.h11{height:45.546250pt;}
.h2{height:48.800000pt;}
.hd{height:53.406250pt;}
.h14{height:54.375000pt;}
.h7{height:54.390938pt;}
.hc{height:54.875000pt;}
.h4{height:56.800000pt;}
.he{height:57.886250pt;}
.ha{height:58.563750pt;}
.h5{height:60.288750pt;}
.h3{height:65.531250pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.wb{width:44.192000pt;}
.w3{width:66.880000pt;}
.w8{width:75.546667pt;}
.w5{width:167.226667pt;}
.w4{width:170.746667pt;}
.w6{width:178.306667pt;}
.wa{width:310.466667pt;}
.w9{width:310.586667pt;}
.w2{width:319.266667pt;}
.w7{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x6{left:1.280000pt;}
.x15{left:4.800000pt;}
.xd{left:9.600000pt;}
.x5{left:19.360000pt;}
.xa{left:27.720000pt;}
.x7{left:42.080000pt;}
.x3{left:45.440000pt;}
.xb{left:94.431988pt;}
.x10{left:129.151988pt;}
.xe{left:130.431988pt;}
.x2{left:143.240000pt;}
.x14{left:155.066655pt;}
.x1{left:188.826667pt;}
.x13{left:196.026655pt;}
.x12{left:271.906655pt;}
.xf{left:356.386655pt;}
.x8{left:373.666667pt;}
.x11{left:396.866655pt;}
.x16{left:405.026667pt;}
.x9{left:583.293333pt;}
.x4{left:676.453333pt;}
.x17{left:715.493333pt;}
.xc{left:718.213333pt;}
}




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