
    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_3c55b18fc05ecfef363ec5e7.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.942383;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_7009d64427525684ce98d3cf.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.172852;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_33708a99bab75e3d93a98d46.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.035156;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_da02c9e892749758220da4c0.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.432129;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_bc153d24b1a15aa1e431a573.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.432129;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_0cb2fed4aa4b475dc9d45e95.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_36fbedd19d2b5b638c37d244.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.107422;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_58985701b4c755d552b4c977.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_5da7876f73142f7b3818135a.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.432129;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_ef6bc32901bb5ecded580305.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:-30.240000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:33.120000px;}
.ls5{letter-spacing:-0.414600px;}
.ls14{letter-spacing:-0.306600px;}
.lsa{letter-spacing:-0.259800px;}
.ls8{letter-spacing:-0.106800px;}
.ls10{letter-spacing:-0.072000px;}
.ls3{letter-spacing:-0.058320px;}
.ls6{letter-spacing:-0.053280px;}
.ls9{letter-spacing:-0.018000px;}
.ls1{letter-spacing:0.000000px;}
.lse{letter-spacing:0.053280px;}
.ls12{letter-spacing:0.073440px;}
.ls2{letter-spacing:0.180000px;}
.lsc{letter-spacing:0.259920px;}
.ls4{letter-spacing:0.305400px;}
.ls7{letter-spacing:0.360000px;}
.ls15{letter-spacing:0.413400px;}
.ls0{letter-spacing:0.541440px;}
.lsf{letter-spacing:0.612000px;}
.lsb{letter-spacing:0.666000px;}
.ls13{letter-spacing:0.666720px;}
.lsd{letter-spacing:4.266000px;}
.ls11{letter-spacing:10.740000px;}
.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;}
}
.wsb{word-spacing:-59.760000px;}
.ws3{word-spacing:-18.414720px;}
.ws9{word-spacing:-17.279280px;}
.wsd{word-spacing:-17.225280px;}
.wsf{word-spacing:-17.026680px;}
.wsc{word-spacing:-16.666560px;}
.wsa{word-spacing:-16.613280px;}
.ws4{word-spacing:-16.506480px;}
.ws8{word-spacing:-16.353480px;}
.wse{word-spacing:-16.306680px;}
.ws0{word-spacing:-13.447440px;}
.ws1{word-spacing:-13.410720px;}
.ws5{word-spacing:-12.204000px;}
.ws6{word-spacing:-12.186000px;}
.ws2{word-spacing:-11.609280px;}
.ws7{word-spacing:0.000000px;}
._19{margin-left:-15.965280px;}
._1{margin-left:-2.021760px;}
._2{margin-left:-1.011360px;}
._0{width:1.073520px;}
._6{width:2.357760px;}
._5{width:4.049520px;}
._a{width:5.255040px;}
._7{width:6.637200px;}
._9{width:7.776480px;}
._8{width:8.904240px;}
._4{width:10.278720px;}
._3{width:11.384640px;}
._b{width:12.403920px;}
._c{width:13.559760px;}
._f{width:15.537600px;}
._e{width:17.622240px;}
._d{width:18.764640px;}
._15{width:19.900080px;}
._11{width:20.916000px;}
._10{width:22.051440px;}
._18{width:23.129280px;}
._14{width:25.098960px;}
._13{width:26.652960px;}
._16{width:28.445760px;}
._17{width:29.496480px;}
._12{width:40.857120px;}
.fc3{color:transparent;}
.fc1{color:rgb(0,0,255);}
.fc2{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs1{font-size:36.000000px;}
.fs6{font-size:41.760000px;}
.fs5{font-size:48.240000px;}
.fs7{font-size:54.000000px;}
.fs0{font-size:59.760000px;}
.fs2{font-size:66.240000px;}
.fs4{font-size:72.000000px;}
.fs3{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y10c{bottom:3.225000px;}
.y113{bottom:3.232500px;}
.y101{bottom:3.240000px;}
.yff{bottom:3.420000px;}
.y2{bottom:4.140000px;}
.y38{bottom:6.090000px;}
.y37{bottom:6.270000px;}
.y10a{bottom:12.405000px;}
.yfe{bottom:20.700000px;}
.y5{bottom:55.440000px;}
.y4{bottom:75.240000px;}
.y35{bottom:111.456000px;}
.ye9{bottom:111.636000px;}
.y114{bottom:120.283500px;}
.yc7{bottom:121.896000px;}
.y96{bottom:123.156000px;}
.y150{bottom:123.696000px;}
.ybd{bottom:123.876000px;}
.y34{bottom:128.736000px;}
.y66{bottom:131.796000px;}
.ye8{bottom:137.916000px;}
.y112{bottom:138.283500px;}
.yc6{bottom:139.176000px;}
.y95{bottom:140.436000px;}
.y14f{bottom:140.976000px;}
.ybc{bottom:141.156000px;}
.y33{bottom:146.016000px;}
.y65{bottom:149.076000px;}
.ye7{bottom:155.010000px;}
.y111{bottom:156.285000px;}
.yc5{bottom:156.450000px;}
.y94{bottom:157.710000px;}
.ybb{bottom:158.430000px;}
.y14e{bottom:167.430000px;}
.ye6{bottom:172.290000px;}
.y32{bottom:173.010000px;}
.yc4{bottom:173.730000px;}
.y110{bottom:174.285000px;}
.y93{bottom:174.810000px;}
.y64{bottom:175.350000px;}
.yba{bottom:184.530000px;}
.yc3{bottom:190.830000px;}
.y10f{bottom:192.285000px;}
.ye5{bottom:198.570000px;}
.y92{bottom:201.090000px;}
.y63{bottom:201.630000px;}
.y31{bottom:201.990000px;}
.yc2{bottom:208.110000px;}
.y10e{bottom:210.285000px;}
.y14d{bottom:210.990000px;}
.yb9{bottom:211.890000px;}
.ye4{bottom:215.850000px;}
.y91{bottom:218.370000px;}
.y30{bottom:219.270000px;}
.yc1{bottom:225.390000px;}
.y62{bottom:227.910000px;}
.y14c{bottom:228.090000px;}
.y10d{bottom:228.285000px;}
.ye3{bottom:233.130000px;}
.y90{bottom:235.650000px;}
.y2f{bottom:236.550000px;}
.yb8{bottom:239.250000px;}
.y12a{bottom:242.670000px;}
.y14b{bottom:245.190000px;}
.y10b{bottom:246.285000px;}
.yc0{bottom:248.430000px;}
.y8f{bottom:252.930000px;}
.y2e{bottom:253.650000px;}
.y61{bottom:254.010000px;}
.yb7{bottom:256.350000px;}
.ye2{bottom:259.230000px;}
.y129{bottom:259.950000px;}
.y109{bottom:264.285000px;}
.y8e{bottom:270.210000px;}
.y2d{bottom:270.930000px;}
.y14a{bottom:271.470000px;}
.ye1{bottom:276.510000px;}
.y60{bottom:280.290000px;}
.yb6{bottom:282.630000px;}
.y128{bottom:286.230000px;}
.y149{bottom:288.750000px;}
.ye0{bottom:293.790000px;}
.y2c{bottom:297.210000px;}
.y127{bottom:303.330000px;}
.y5f{bottom:306.570000px;}
.yb5{bottom:309.810000px;}
.ydf{bottom:311.070000px;}
.y108{bottom:312.510000px;}
.y2b{bottom:314.490000px;}
.y148{bottom:315.030000px;}
.y5e{bottom:323.850000px;}
.y8d{bottom:326.010000px;}
.yde{bottom:328.350000px;}
.y126{bottom:330.330000px;}
.y2a{bottom:331.770000px;}
.yb4{bottom:337.170000px;}
.y107{bottom:338.790000px;}
.y5d{bottom:341.130000px;}
.y147{bottom:341.310000px;}
.y8c{bottom:343.290000px;}
.ydd{bottom:345.630000px;}
.y29{bottom:349.050000px;}
.yb3{bottom:354.495000px;}
.y106{bottom:356.115000px;}
.y5c{bottom:358.455000px;}
.y146{bottom:358.635000px;}
.y125{bottom:359.355000px;}
.y8b{bottom:360.615000px;}
.y28{bottom:366.195000px;}
.ydc{bottom:372.675000px;}
.y105{bottom:373.395000px;}
.y145{bottom:375.735000px;}
.y124{bottom:376.635000px;}
.y8a{bottom:377.895000px;}
.yb2{bottom:380.595000px;}
.y27{bottom:383.475000px;}
.y5b{bottom:385.455000px;}
.y123{bottom:393.915000px;}
.y89{bottom:395.175000px;}
.y104{bottom:400.395000px;}
.y26{bottom:400.755000px;}
.ydb{bottom:401.475000px;}
.y144{bottom:402.195000px;}
.yb1{bottom:407.955000px;}
.y5a{bottom:414.255000px;}
.yda{bottom:418.755000px;}
.y143{bottom:419.295000px;}
.y122{bottom:420.015000px;}
.y88{bottom:422.175000px;}
.y25{bottom:427.755000px;}
.y103{bottom:429.375000px;}
.yb0{bottom:435.315000px;}
.yd9{bottom:436.035000px;}
.y59{bottom:440.535000px;}
.y142{bottom:445.575000px;}
.y102{bottom:446.475000px;}
.y121{bottom:447.375000px;}
.y87{bottom:451.155000px;}
.yaf{bottom:452.415000px;}
.yd8{bottom:453.315000px;}
.y24{bottom:456.915000px;}
.y141{bottom:463.035000px;}
.y58{bottom:466.815000px;}
.y86{bottom:468.255000px;}
.y100{bottom:470.235000px;}
.yd7{bottom:470.595000px;}
.y120{bottom:474.555000px;}
.yae{bottom:479.415000px;}
.y140{bottom:480.135000px;}
.y23{bottom:483.195000px;}
.y85{bottom:485.535000px;}
.yd6{bottom:487.875000px;}
.yfd{bottom:488.235000px;}
.y57{bottom:493.095000px;}
.y11f{bottom:501.915000px;}
.y84{bottom:502.815000px;}
.y13f{bottom:506.415000px;}
.yad{bottom:508.395000px;}
.y22{bottom:509.295000px;}
.yd5{bottom:513.975000px;}
.y56{bottom:520.095000px;}
.y13e{bottom:523.515000px;}
.y11e{bottom:529.095000px;}
.yd4{bottom:531.255000px;}
.y21{bottom:535.575000px;}
.yfc{bottom:535.935000px;}
.y11d{bottom:546.375000px;}
.y83{bottom:547.095000px;}
.yd3{bottom:548.535000px;}
.y55{bottom:549.075000px;}
.y13d{bottom:549.975000px;}
.y20{bottom:561.675000px;}
.yfb{bottom:562.035000px;}
.yac{bottom:562.935000px;}
.yd2{bottom:565.815000px;}
.y54{bottom:566.175000px;}
.y13c{bottom:567.075000px;}
.y11c{bottom:573.375000px;}
.y82{bottom:576.075000px;}
.y1f{bottom:578.955000px;}
.yfa{bottom:579.315000px;}
.yd1{bottom:583.095000px;}
.y53{bottom:583.455000px;}
.y13b{bottom:584.175000px;}
.yab{bottom:590.295000px;}
.y81{bottom:593.175000px;}
.y1e{bottom:596.235000px;}
.y11b{bottom:602.355000px;}
.yf9{bottom:606.315000px;}
.yaa{bottom:607.395000px;}
.y52{bottom:609.735000px;}
.yd0{bottom:610.095000px;}
.y80{bottom:610.455000px;}
.y13a{bottom:611.175000px;}
.y1d{bottom:613.515000px;}
.y11a{bottom:619.665000px;}
.ya9{bottom:624.705000px;}
.y51{bottom:627.045000px;}
.y1c{bottom:630.645000px;}
.yf8{bottom:635.325000px;}
.y7f{bottom:636.765000px;}
.y119{bottom:636.945000px;}
.ycf{bottom:638.925000px;}
.y139{bottom:640.185000px;}
.ya8{bottom:641.985000px;}
.y50{bottom:644.325000px;}
.y1b{bottom:647.925000px;}
.y7e{bottom:654.045000px;}
.y118{bottom:654.225000px;}
.yce{bottom:656.205000px;}
.ya7{bottom:659.265000px;}
.yf7{bottom:661.605000px;}
.y1a{bottom:665.205000px;}
.y138{bottom:666.465000px;}
.y4f{bottom:671.325000px;}
.ycd{bottom:673.485000px;}
.ya6{bottom:676.545000px;}
.y7d{bottom:681.045000px;}
.y19{bottom:682.485000px;}
.yf6{bottom:687.705000px;}
.ycc{bottom:690.765000px;}
.y137{bottom:692.745000px;}
.y117{bottom:697.605000px;}
.y18{bottom:699.765000px;}
.y4e{bottom:700.305000px;}
.ya5{bottom:702.645000px;}
.y7c{bottom:710.025000px;}
.yf5{bottom:713.985000px;}
.y17{bottom:717.045000px;}
.y4d{bottom:717.405000px;}
.y162{bottom:720.105000px;}
.y116{bottom:723.885000px;}
.y7b{bottom:727.305000px;}
.ya4{bottom:730.005000px;}
.yf4{bottom:731.265000px;}
.y16{bottom:734.145000px;}
.ycb{bottom:734.325000px;}
.y4c{bottom:734.685000px;}
.y7a{bottom:744.405000px;}
.y161{bottom:746.385000px;}
.y115{bottom:746.745000px;}
.y15{bottom:751.425000px;}
.y4b{bottom:751.965000px;}
.ya3{bottom:757.185000px;}
.yf3{bottom:757.545000px;}
.y136{bottom:761.685000px;}
.y160{bottom:763.665000px;}
.y79{bottom:770.685000px;}
.yca{bottom:777.705000px;}
.y4a{bottom:778.245000px;}
.y14{bottom:778.425000px;}
.y135{bottom:778.965000px;}
.yf2{bottom:783.825000px;}
.ya2{bottom:784.545000px;}
.y78{bottom:787.965000px;}
.y15f{bottom:789.945000px;}
.y134{bottom:796.245000px;}
.ya1{bottom:801.825000px;}
.yc9{bottom:803.985000px;}
.y49{bottom:804.525000px;}
.y77{bottom:805.245000px;}
.y15e{bottom:807.225000px;}
.y13{bottom:807.405000px;}
.yf1{bottom:810.105000px;}
.ya0{bottom:819.105000px;}
.y133{bottom:822.525000px;}
.yc8{bottom:826.845000px;}
.y48{bottom:830.805000px;}
.y76{bottom:831.525000px;}
.y15d{bottom:833.505000px;}
.y12{bottom:833.865000px;}
.y9f{bottom:836.205000px;}
.y132{bottom:839.805000px;}
.y75{bottom:848.805000px;}
.y15c{bottom:850.785000px;}
.y11{bottom:852.945000px;}
.y9e{bottom:853.485000px;}
.y47{bottom:856.905000px;}
.y74{bottom:865.905000px;}
.y15b{bottom:867.885000px;}
.y131{bottom:874.185000px;}
.y10{bottom:879.450000px;}
.yf0{bottom:879.810000px;}
.y9d{bottom:880.530000px;}
.y46{bottom:883.230000px;}
.yf{bottom:890.970000px;}
.y130{bottom:891.510000px;}
.y15a{bottom:894.210000px;}
.yef{bottom:897.090000px;}
.y45{bottom:900.510000px;}
.y73{bottom:909.510000px;}
.ye{bottom:917.430000px;}
.y44{bottom:917.790000px;}
.y159{bottom:920.490000px;}
.yee{bottom:924.090000px;}
.y72{bottom:926.790000px;}
.yd{bottom:929.310000px;}
.y12f{bottom:935.070000px;}
.y71{bottom:944.070000px;}
.y43{bottom:944.790000px;}
.y158{bottom:946.770000px;}
.y12e{bottom:952.170000px;}
.yed{bottom:953.070000px;}
.yc{bottom:958.290000px;}
.y70{bottom:961.170000px;}
.y12d{bottom:969.450000px;}
.yec{bottom:970.170000px;}
.y157{bottom:972.870000px;}
.y42{bottom:973.770000px;}
.y6f{bottom:978.450000px;}
.yb{bottom:985.830000px;}
.y12c{bottom:986.730000px;}
.yeb{bottom:987.450000px;}
.y9c{bottom:988.170000px;}
.y156{bottom:990.150000px;}
.y41{bottom:990.870000px;}
.y6e{bottom:995.730000px;}
.yea{bottom:1004.730000px;}
.y40{bottom:1008.150000px;}
.ya{bottom:1009.950000px;}
.ybf{bottom:1013.010000px;}
.y12b{bottom:1013.730000px;}
.y155{bottom:1016.430000px;}
.y9b{bottom:1017.150000px;}
.y6d{bottom:1022.010000px;}
.y3f{bottom:1025.430000px;}
.ybe{bottom:1030.290000px;}
.y154{bottom:1033.710000px;}
.y9a{bottom:1034.430000px;}
.y6c{bottom:1039.290000px;}
.y9{bottom:1041.810000px;}
.y3e{bottom:1042.710000px;}
.y99{bottom:1051.710000px;}
.y6b{bottom:1056.570000px;}
.y3d{bottom:1059.990000px;}
.y153{bottom:1060.170000px;}
.y8{bottom:1068.090000px;}
.y98{bottom:1068.990000px;}
.y6a{bottom:1073.670000px;}
.y3c{bottom:1077.270000px;}
.y97{bottom:1086.270000px;}
.y69{bottom:1090.950000px;}
.y7{bottom:1094.370000px;}
.y3b{bottom:1103.370000px;}
.y152{bottom:1103.550000px;}
.y68{bottom:1108.230000px;}
.y36{bottom:1120.320000px;}
.y3a{bottom:1120.650000px;}
.y151{bottom:1120.830000px;}
.y6{bottom:1122.810000px;}
.y67{bottom:1135.230000px;}
.y39{bottom:1137.930000px;}
.y3{bottom:1154.160000px;}
.y1{bottom:1167.480000px;}
.h13{height:17.085000px;}
.h15{height:17.092500px;}
.h2{height:18.360000px;}
.h5{height:18.396000px;}
.hf{height:21.420000px;}
.h12{height:34.365000px;}
.h14{height:35.085000px;}
.h4{height:35.806641px;}
.hc{height:43.554375px;}
.h3{height:45.637031px;}
.h11{height:53.603086px;}
.h10{height:53.709961px;}
.h6{height:59.439023px;}
.h9{height:62.327813px;}
.h7{height:65.884219px;}
.hd{height:69.086250px;}
.he{height:75.093750px;}
.hb{height:83.432812px;}
.h8{height:86.255508px;}
.ha{height:87.859687px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w6{width:48.420000px;}
.w4{width:52.560000px;}
.wa{width:116.085000px;}
.w8{width:131.076000px;}
.w7{width:133.401000px;}
.w9{width:169.395000px;}
.wc{width:201.090000px;}
.wb{width:232.939500px;}
.w5{width:259.740000px;}
.wd{width:265.020000px;}
.w3{width:669.735000px;}
.w2{width:719.955000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x4{left:8.629500px;}
.x12{left:10.836000px;}
.x13{left:13.536000px;}
.x1a{left:21.225000px;}
.x2f{left:25.725000px;}
.x6{left:28.980000px;}
.x1b{left:31.125000px;}
.x1d{left:37.980000px;}
.x28{left:39.240000px;}
.x2c{left:41.929500px;}
.x22{left:44.280000px;}
.x2e{left:45.349500px;}
.x1f{left:49.125000px;}
.x21{left:54.165000px;}
.x2d{left:55.290000px;}
.x2a{left:56.323500px;}
.x2b{left:65.730000px;}
.x2{left:71.983500px;}
.x23{left:76.305000px;}
.x26{left:83.683500px;}
.x3{left:84.996000px;}
.x1{left:86.626500px;}
.x15{left:88.056000px;}
.x8{left:92.916000px;}
.x25{left:96.346500px;}
.x30{left:99.523500px;}
.xb{left:102.276000px;}
.x33{left:127.476000px;}
.x11{left:133.380000px;}
.xd{left:137.556000px;}
.x9{left:142.416000px;}
.x19{left:170.505000px;}
.xa{left:173.730000px;}
.x18{left:182.550000px;}
.x24{left:237.630000px;}
.x1c{left:304.635000px;}
.x32{left:308.055000px;}
.x27{left:330.015000px;}
.x16{left:354.675000px;}
.xc{left:359.175000px;}
.xf{left:362.415000px;}
.xe{left:371.955000px;}
.x10{left:409.965000px;}
.x1e{left:436.440000px;}
.x7{left:446.505000px;}
.x29{left:531.840000px;}
.x20{left:606.570000px;}
.x31{left:754.020000px;}
.x5{left:755.460000px;}
.x14{left:795.240000px;}
.x17{left:807.660000px;}
@media print{
.v2{vertical-align:-26.880000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:29.440000pt;}
.ls5{letter-spacing:-0.368533pt;}
.ls14{letter-spacing:-0.272533pt;}
.lsa{letter-spacing:-0.230933pt;}
.ls8{letter-spacing:-0.094933pt;}
.ls10{letter-spacing:-0.064000pt;}
.ls3{letter-spacing:-0.051840pt;}
.ls6{letter-spacing:-0.047360pt;}
.ls9{letter-spacing:-0.016000pt;}
.ls1{letter-spacing:0.000000pt;}
.lse{letter-spacing:0.047360pt;}
.ls12{letter-spacing:0.065280pt;}
.ls2{letter-spacing:0.160000pt;}
.lsc{letter-spacing:0.231040pt;}
.ls4{letter-spacing:0.271467pt;}
.ls7{letter-spacing:0.320000pt;}
.ls15{letter-spacing:0.367467pt;}
.ls0{letter-spacing:0.481280pt;}
.lsf{letter-spacing:0.544000pt;}
.lsb{letter-spacing:0.592000pt;}
.ls13{letter-spacing:0.592640pt;}
.lsd{letter-spacing:3.792000pt;}
.ls11{letter-spacing:9.546667pt;}
.wsb{word-spacing:-53.120000pt;}
.ws3{word-spacing:-16.368640pt;}
.ws9{word-spacing:-15.359360pt;}
.wsd{word-spacing:-15.311360pt;}
.wsf{word-spacing:-15.134827pt;}
.wsc{word-spacing:-14.814720pt;}
.wsa{word-spacing:-14.767360pt;}
.ws4{word-spacing:-14.672427pt;}
.ws8{word-spacing:-14.536427pt;}
.wse{word-spacing:-14.494827pt;}
.ws0{word-spacing:-11.953280pt;}
.ws1{word-spacing:-11.920640pt;}
.ws5{word-spacing:-10.848000pt;}
.ws6{word-spacing:-10.832000pt;}
.ws2{word-spacing:-10.319360pt;}
.ws7{word-spacing:0.000000pt;}
._19{margin-left:-14.191360pt;}
._1{margin-left:-1.797120pt;}
._2{margin-left:-0.898987pt;}
._0{width:0.954240pt;}
._6{width:2.095787pt;}
._5{width:3.599573pt;}
._a{width:4.671147pt;}
._7{width:5.899733pt;}
._9{width:6.912427pt;}
._8{width:7.914880pt;}
._4{width:9.136640pt;}
._3{width:10.119680pt;}
._b{width:11.025707pt;}
._c{width:12.053120pt;}
._f{width:13.811200pt;}
._e{width:15.664213pt;}
._d{width:16.679680pt;}
._15{width:17.688960pt;}
._11{width:18.592000pt;}
._10{width:19.601280pt;}
._18{width:20.559360pt;}
._14{width:22.310187pt;}
._13{width:23.691520pt;}
._16{width:25.285120pt;}
._17{width:26.219093pt;}
._12{width:36.317440pt;}
.fs1{font-size:32.000000pt;}
.fs6{font-size:37.120000pt;}
.fs5{font-size:42.880000pt;}
.fs7{font-size:48.000000pt;}
.fs0{font-size:53.120000pt;}
.fs2{font-size:58.880000pt;}
.fs4{font-size:64.000000pt;}
.fs3{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y10c{bottom:2.866667pt;}
.y113{bottom:2.873333pt;}
.y101{bottom:2.880000pt;}
.yff{bottom:3.040000pt;}
.y2{bottom:3.680000pt;}
.y38{bottom:5.413333pt;}
.y37{bottom:5.573333pt;}
.y10a{bottom:11.026667pt;}
.yfe{bottom:18.400000pt;}
.y5{bottom:49.280000pt;}
.y4{bottom:66.880000pt;}
.y35{bottom:99.072000pt;}
.ye9{bottom:99.232000pt;}
.y114{bottom:106.918667pt;}
.yc7{bottom:108.352000pt;}
.y96{bottom:109.472000pt;}
.y150{bottom:109.952000pt;}
.ybd{bottom:110.112000pt;}
.y34{bottom:114.432000pt;}
.y66{bottom:117.152000pt;}
.ye8{bottom:122.592000pt;}
.y112{bottom:122.918667pt;}
.yc6{bottom:123.712000pt;}
.y95{bottom:124.832000pt;}
.y14f{bottom:125.312000pt;}
.ybc{bottom:125.472000pt;}
.y33{bottom:129.792000pt;}
.y65{bottom:132.512000pt;}
.ye7{bottom:137.786667pt;}
.y111{bottom:138.920000pt;}
.yc5{bottom:139.066667pt;}
.y94{bottom:140.186667pt;}
.ybb{bottom:140.826667pt;}
.y14e{bottom:148.826667pt;}
.ye6{bottom:153.146667pt;}
.y32{bottom:153.786667pt;}
.yc4{bottom:154.426667pt;}
.y110{bottom:154.920000pt;}
.y93{bottom:155.386667pt;}
.y64{bottom:155.866667pt;}
.yba{bottom:164.026667pt;}
.yc3{bottom:169.626667pt;}
.y10f{bottom:170.920000pt;}
.ye5{bottom:176.506667pt;}
.y92{bottom:178.746667pt;}
.y63{bottom:179.226667pt;}
.y31{bottom:179.546667pt;}
.yc2{bottom:184.986667pt;}
.y10e{bottom:186.920000pt;}
.y14d{bottom:187.546667pt;}
.yb9{bottom:188.346667pt;}
.ye4{bottom:191.866667pt;}
.y91{bottom:194.106667pt;}
.y30{bottom:194.906667pt;}
.yc1{bottom:200.346667pt;}
.y62{bottom:202.586667pt;}
.y14c{bottom:202.746667pt;}
.y10d{bottom:202.920000pt;}
.ye3{bottom:207.226667pt;}
.y90{bottom:209.466667pt;}
.y2f{bottom:210.266667pt;}
.yb8{bottom:212.666667pt;}
.y12a{bottom:215.706667pt;}
.y14b{bottom:217.946667pt;}
.y10b{bottom:218.920000pt;}
.yc0{bottom:220.826667pt;}
.y8f{bottom:224.826667pt;}
.y2e{bottom:225.466667pt;}
.y61{bottom:225.786667pt;}
.yb7{bottom:227.866667pt;}
.ye2{bottom:230.426667pt;}
.y129{bottom:231.066667pt;}
.y109{bottom:234.920000pt;}
.y8e{bottom:240.186667pt;}
.y2d{bottom:240.826667pt;}
.y14a{bottom:241.306667pt;}
.ye1{bottom:245.786667pt;}
.y60{bottom:249.146667pt;}
.yb6{bottom:251.226667pt;}
.y128{bottom:254.426667pt;}
.y149{bottom:256.666667pt;}
.ye0{bottom:261.146667pt;}
.y2c{bottom:264.186667pt;}
.y127{bottom:269.626667pt;}
.y5f{bottom:272.506667pt;}
.yb5{bottom:275.386667pt;}
.ydf{bottom:276.506667pt;}
.y108{bottom:277.786667pt;}
.y2b{bottom:279.546667pt;}
.y148{bottom:280.026667pt;}
.y5e{bottom:287.866667pt;}
.y8d{bottom:289.786667pt;}
.yde{bottom:291.866667pt;}
.y126{bottom:293.626667pt;}
.y2a{bottom:294.906667pt;}
.yb4{bottom:299.706667pt;}
.y107{bottom:301.146667pt;}
.y5d{bottom:303.226667pt;}
.y147{bottom:303.386667pt;}
.y8c{bottom:305.146667pt;}
.ydd{bottom:307.226667pt;}
.y29{bottom:310.266667pt;}
.yb3{bottom:315.106667pt;}
.y106{bottom:316.546667pt;}
.y5c{bottom:318.626667pt;}
.y146{bottom:318.786667pt;}
.y125{bottom:319.426667pt;}
.y8b{bottom:320.546667pt;}
.y28{bottom:325.506667pt;}
.ydc{bottom:331.266667pt;}
.y105{bottom:331.906667pt;}
.y145{bottom:333.986667pt;}
.y124{bottom:334.786667pt;}
.y8a{bottom:335.906667pt;}
.yb2{bottom:338.306667pt;}
.y27{bottom:340.866667pt;}
.y5b{bottom:342.626667pt;}
.y123{bottom:350.146667pt;}
.y89{bottom:351.266667pt;}
.y104{bottom:355.906667pt;}
.y26{bottom:356.226667pt;}
.ydb{bottom:356.866667pt;}
.y144{bottom:357.506667pt;}
.yb1{bottom:362.626667pt;}
.y5a{bottom:368.226667pt;}
.yda{bottom:372.226667pt;}
.y143{bottom:372.706667pt;}
.y122{bottom:373.346667pt;}
.y88{bottom:375.266667pt;}
.y25{bottom:380.226667pt;}
.y103{bottom:381.666667pt;}
.yb0{bottom:386.946667pt;}
.yd9{bottom:387.586667pt;}
.y59{bottom:391.586667pt;}
.y142{bottom:396.066667pt;}
.y102{bottom:396.866667pt;}
.y121{bottom:397.666667pt;}
.y87{bottom:401.026667pt;}
.yaf{bottom:402.146667pt;}
.yd8{bottom:402.946667pt;}
.y24{bottom:406.146667pt;}
.y141{bottom:411.586667pt;}
.y58{bottom:414.946667pt;}
.y86{bottom:416.226667pt;}
.y100{bottom:417.986667pt;}
.yd7{bottom:418.306667pt;}
.y120{bottom:421.826667pt;}
.yae{bottom:426.146667pt;}
.y140{bottom:426.786667pt;}
.y23{bottom:429.506667pt;}
.y85{bottom:431.586667pt;}
.yd6{bottom:433.666667pt;}
.yfd{bottom:433.986667pt;}
.y57{bottom:438.306667pt;}
.y11f{bottom:446.146667pt;}
.y84{bottom:446.946667pt;}
.y13f{bottom:450.146667pt;}
.yad{bottom:451.906667pt;}
.y22{bottom:452.706667pt;}
.yd5{bottom:456.866667pt;}
.y56{bottom:462.306667pt;}
.y13e{bottom:465.346667pt;}
.y11e{bottom:470.306667pt;}
.yd4{bottom:472.226667pt;}
.y21{bottom:476.066667pt;}
.yfc{bottom:476.386667pt;}
.y11d{bottom:485.666667pt;}
.y83{bottom:486.306667pt;}
.yd3{bottom:487.586667pt;}
.y55{bottom:488.066667pt;}
.y13d{bottom:488.866667pt;}
.y20{bottom:499.266667pt;}
.yfb{bottom:499.586667pt;}
.yac{bottom:500.386667pt;}
.yd2{bottom:502.946667pt;}
.y54{bottom:503.266667pt;}
.y13c{bottom:504.066667pt;}
.y11c{bottom:509.666667pt;}
.y82{bottom:512.066667pt;}
.y1f{bottom:514.626667pt;}
.yfa{bottom:514.946667pt;}
.yd1{bottom:518.306667pt;}
.y53{bottom:518.626667pt;}
.y13b{bottom:519.266667pt;}
.yab{bottom:524.706667pt;}
.y81{bottom:527.266667pt;}
.y1e{bottom:529.986667pt;}
.y11b{bottom:535.426667pt;}
.yf9{bottom:538.946667pt;}
.yaa{bottom:539.906667pt;}
.y52{bottom:541.986667pt;}
.yd0{bottom:542.306667pt;}
.y80{bottom:542.626667pt;}
.y13a{bottom:543.266667pt;}
.y1d{bottom:545.346667pt;}
.y11a{bottom:550.813333pt;}
.ya9{bottom:555.293333pt;}
.y51{bottom:557.373333pt;}
.y1c{bottom:560.573333pt;}
.yf8{bottom:564.733333pt;}
.y7f{bottom:566.013333pt;}
.y119{bottom:566.173333pt;}
.ycf{bottom:567.933333pt;}
.y139{bottom:569.053333pt;}
.ya8{bottom:570.653333pt;}
.y50{bottom:572.733333pt;}
.y1b{bottom:575.933333pt;}
.y7e{bottom:581.373333pt;}
.y118{bottom:581.533333pt;}
.yce{bottom:583.293333pt;}
.ya7{bottom:586.013333pt;}
.yf7{bottom:588.093333pt;}
.y1a{bottom:591.293333pt;}
.y138{bottom:592.413333pt;}
.y4f{bottom:596.733333pt;}
.ycd{bottom:598.653333pt;}
.ya6{bottom:601.373333pt;}
.y7d{bottom:605.373333pt;}
.y19{bottom:606.653333pt;}
.yf6{bottom:611.293333pt;}
.ycc{bottom:614.013333pt;}
.y137{bottom:615.773333pt;}
.y117{bottom:620.093333pt;}
.y18{bottom:622.013333pt;}
.y4e{bottom:622.493333pt;}
.ya5{bottom:624.573333pt;}
.y7c{bottom:631.133333pt;}
.yf5{bottom:634.653333pt;}
.y17{bottom:637.373333pt;}
.y4d{bottom:637.693333pt;}
.y162{bottom:640.093333pt;}
.y116{bottom:643.453333pt;}
.y7b{bottom:646.493333pt;}
.ya4{bottom:648.893333pt;}
.yf4{bottom:650.013333pt;}
.y16{bottom:652.573333pt;}
.ycb{bottom:652.733333pt;}
.y4c{bottom:653.053333pt;}
.y7a{bottom:661.693333pt;}
.y161{bottom:663.453333pt;}
.y115{bottom:663.773333pt;}
.y15{bottom:667.933333pt;}
.y4b{bottom:668.413333pt;}
.ya3{bottom:673.053333pt;}
.yf3{bottom:673.373333pt;}
.y136{bottom:677.053333pt;}
.y160{bottom:678.813333pt;}
.y79{bottom:685.053333pt;}
.yca{bottom:691.293333pt;}
.y4a{bottom:691.773333pt;}
.y14{bottom:691.933333pt;}
.y135{bottom:692.413333pt;}
.yf2{bottom:696.733333pt;}
.ya2{bottom:697.373333pt;}
.y78{bottom:700.413333pt;}
.y15f{bottom:702.173333pt;}
.y134{bottom:707.773333pt;}
.ya1{bottom:712.733333pt;}
.yc9{bottom:714.653333pt;}
.y49{bottom:715.133333pt;}
.y77{bottom:715.773333pt;}
.y15e{bottom:717.533333pt;}
.y13{bottom:717.693333pt;}
.yf1{bottom:720.093333pt;}
.ya0{bottom:728.093333pt;}
.y133{bottom:731.133333pt;}
.yc8{bottom:734.973333pt;}
.y48{bottom:738.493333pt;}
.y76{bottom:739.133333pt;}
.y15d{bottom:740.893333pt;}
.y12{bottom:741.213333pt;}
.y9f{bottom:743.293333pt;}
.y132{bottom:746.493333pt;}
.y75{bottom:754.493333pt;}
.y15c{bottom:756.253333pt;}
.y11{bottom:758.173333pt;}
.y9e{bottom:758.653333pt;}
.y47{bottom:761.693333pt;}
.y74{bottom:769.693333pt;}
.y15b{bottom:771.453333pt;}
.y131{bottom:777.053333pt;}
.y10{bottom:781.733333pt;}
.yf0{bottom:782.053333pt;}
.y9d{bottom:782.693333pt;}
.y46{bottom:785.093333pt;}
.yf{bottom:791.973333pt;}
.y130{bottom:792.453333pt;}
.y15a{bottom:794.853333pt;}
.yef{bottom:797.413333pt;}
.y45{bottom:800.453333pt;}
.y73{bottom:808.453333pt;}
.ye{bottom:815.493333pt;}
.y44{bottom:815.813333pt;}
.y159{bottom:818.213333pt;}
.yee{bottom:821.413333pt;}
.y72{bottom:823.813333pt;}
.yd{bottom:826.053333pt;}
.y12f{bottom:831.173333pt;}
.y71{bottom:839.173333pt;}
.y43{bottom:839.813333pt;}
.y158{bottom:841.573333pt;}
.y12e{bottom:846.373333pt;}
.yed{bottom:847.173333pt;}
.yc{bottom:851.813333pt;}
.y70{bottom:854.373333pt;}
.y12d{bottom:861.733333pt;}
.yec{bottom:862.373333pt;}
.y157{bottom:864.773333pt;}
.y42{bottom:865.573333pt;}
.y6f{bottom:869.733333pt;}
.yb{bottom:876.293333pt;}
.y12c{bottom:877.093333pt;}
.yeb{bottom:877.733333pt;}
.y9c{bottom:878.373333pt;}
.y156{bottom:880.133333pt;}
.y41{bottom:880.773333pt;}
.y6e{bottom:885.093333pt;}
.yea{bottom:893.093333pt;}
.y40{bottom:896.133333pt;}
.ya{bottom:897.733333pt;}
.ybf{bottom:900.453333pt;}
.y12b{bottom:901.093333pt;}
.y155{bottom:903.493333pt;}
.y9b{bottom:904.133333pt;}
.y6d{bottom:908.453333pt;}
.y3f{bottom:911.493333pt;}
.ybe{bottom:915.813333pt;}
.y154{bottom:918.853333pt;}
.y9a{bottom:919.493333pt;}
.y6c{bottom:923.813333pt;}
.y9{bottom:926.053333pt;}
.y3e{bottom:926.853333pt;}
.y99{bottom:934.853333pt;}
.y6b{bottom:939.173333pt;}
.y3d{bottom:942.213333pt;}
.y153{bottom:942.373333pt;}
.y8{bottom:949.413333pt;}
.y98{bottom:950.213333pt;}
.y6a{bottom:954.373333pt;}
.y3c{bottom:957.573333pt;}
.y97{bottom:965.573333pt;}
.y69{bottom:969.733333pt;}
.y7{bottom:972.773333pt;}
.y3b{bottom:980.773333pt;}
.y152{bottom:980.933333pt;}
.y68{bottom:985.093333pt;}
.y36{bottom:995.840000pt;}
.y3a{bottom:996.133333pt;}
.y151{bottom:996.293333pt;}
.y6{bottom:998.053333pt;}
.y67{bottom:1009.093333pt;}
.y39{bottom:1011.493333pt;}
.y3{bottom:1025.920000pt;}
.y1{bottom:1037.760000pt;}
.h13{height:15.186667pt;}
.h15{height:15.193333pt;}
.h2{height:16.320000pt;}
.h5{height:16.352000pt;}
.hf{height:19.040000pt;}
.h12{height:30.546667pt;}
.h14{height:31.186667pt;}
.h4{height:31.828125pt;}
.hc{height:38.715000pt;}
.h3{height:40.566250pt;}
.h11{height:47.647188pt;}
.h10{height:47.742188pt;}
.h6{height:52.834688pt;}
.h9{height:55.402500pt;}
.h7{height:58.563750pt;}
.hd{height:61.410000pt;}
.he{height:66.750000pt;}
.hb{height:74.162500pt;}
.h8{height:76.671562pt;}
.ha{height:78.097500pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w6{width:43.040000pt;}
.w4{width:46.720000pt;}
.wa{width:103.186667pt;}
.w8{width:116.512000pt;}
.w7{width:118.578667pt;}
.w9{width:150.573333pt;}
.wc{width:178.746667pt;}
.wb{width:207.057333pt;}
.w5{width:230.880000pt;}
.wd{width:235.573333pt;}
.w3{width:595.320000pt;}
.w2{width:639.960000pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x4{left:7.670667pt;}
.x12{left:9.632000pt;}
.x13{left:12.032000pt;}
.x1a{left:18.866667pt;}
.x2f{left:22.866667pt;}
.x6{left:25.760000pt;}
.x1b{left:27.666667pt;}
.x1d{left:33.760000pt;}
.x28{left:34.880000pt;}
.x2c{left:37.270667pt;}
.x22{left:39.360000pt;}
.x2e{left:40.310667pt;}
.x1f{left:43.666667pt;}
.x21{left:48.146667pt;}
.x2d{left:49.146667pt;}
.x2a{left:50.065333pt;}
.x2b{left:58.426667pt;}
.x2{left:63.985333pt;}
.x23{left:67.826667pt;}
.x26{left:74.385333pt;}
.x3{left:75.552000pt;}
.x1{left:77.001333pt;}
.x15{left:78.272000pt;}
.x8{left:82.592000pt;}
.x25{left:85.641333pt;}
.x30{left:88.465333pt;}
.xb{left:90.912000pt;}
.x33{left:113.312000pt;}
.x11{left:118.560000pt;}
.xd{left:122.272000pt;}
.x9{left:126.592000pt;}
.x19{left:151.560000pt;}
.xa{left:154.426667pt;}
.x18{left:162.266667pt;}
.x24{left:211.226667pt;}
.x1c{left:270.786667pt;}
.x32{left:273.826667pt;}
.x27{left:293.346667pt;}
.x16{left:315.266667pt;}
.xc{left:319.266667pt;}
.xf{left:322.146667pt;}
.xe{left:330.626667pt;}
.x10{left:364.413333pt;}
.x1e{left:387.946667pt;}
.x7{left:396.893333pt;}
.x29{left:472.746667pt;}
.x20{left:539.173333pt;}
.x31{left:670.240000pt;}
.x5{left:671.520000pt;}
.x14{left:706.880000pt;}
.x17{left:717.920000pt;}
}




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