
    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_9c9c5ff68a3a13bf8665a915.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_046b0dc337937178e88f950d.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.088379;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_ed965e4faa63a500600802a2.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.064941;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_483c40ed884434b120f1aa2c.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_d88bd538e437c5553884d621.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.435059;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_0cc343debb8afea87770cbff.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.088379;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_eecb55543cf740848669bade.woff2')format("woff");}.ff7{font-family:ff7;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;}
.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;}
.v1{vertical-align:15.120000px;}
.ls1e{letter-spacing:-0.732000px;}
.ls5{letter-spacing:-0.648000px;}
.ls6{letter-spacing:-0.370200px;}
.ls14{letter-spacing:-0.363000px;}
.ls7{letter-spacing:-0.326400px;}
.ls12{letter-spacing:-0.187200px;}
.ls15{letter-spacing:-0.107400px;}
.ls18{letter-spacing:-0.103800px;}
.ls1b{letter-spacing:-0.052560px;}
.lsb{letter-spacing:-0.036000px;}
.ls9{letter-spacing:-0.010800px;}
.ls3{letter-spacing:0.000000px;}
.lsc{letter-spacing:0.012960px;}
.ls2{letter-spacing:0.013200px;}
.ls8{letter-spacing:0.080400px;}
.ls4{letter-spacing:0.144000px;}
.lsf{letter-spacing:0.166320px;}
.ls13{letter-spacing:0.195000px;}
.lsd{letter-spacing:0.211680px;}
.ls16{letter-spacing:0.255600px;}
.ls17{letter-spacing:0.257760px;}
.ls1a{letter-spacing:0.319680px;}
.ls1{letter-spacing:0.348480px;}
.ls0{letter-spacing:0.360000px;}
.lsa{letter-spacing:0.385800px;}
.ls11{letter-spacing:0.532800px;}
.lse{letter-spacing:0.666720px;}
.ls1d{letter-spacing:1.080000px;}
.ls1c{letter-spacing:47.466720px;}
.ls19{letter-spacing:81.306720px;}
.ls10{letter-spacing:172.746720px;}
.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;}
}
.wsa{word-spacing:-14.958600px;}
.ws6{word-spacing:-14.572800px;}
.wsd{word-spacing:-13.402800px;}
.wsb{word-spacing:-13.342200px;}
.ws3{word-spacing:-13.160400px;}
.ws9{word-spacing:-13.160160px;}
.ws4{word-spacing:-13.147200px;}
.ws7{word-spacing:-13.111200px;}
.wsf{word-spacing:-13.094640px;}
.wse{word-spacing:-13.043400px;}
.wsc{word-spacing:-13.039800px;}
.ws2{word-spacing:-9.652800px;}
.ws1{word-spacing:-9.609000px;}
.ws0{word-spacing:-9.331200px;}
.ws8{word-spacing:0.000000px;}
.ws5{word-spacing:2.552040px;}
._b{margin-left:-3.389282px;}
._6{margin-left:-2.376239px;}
._0{margin-left:-1.134000px;}
._2{width:1.329119px;}
._4{width:2.865720px;}
._7{width:4.482000px;}
._8{width:5.497800px;}
._f{width:6.632882px;}
._5{width:8.127599px;}
._e{width:9.307683px;}
._c{width:10.517999px;}
._d{width:11.533202px;}
._3{width:14.267882px;}
._1{width:15.537600px;}
._a{width:16.943156px;}
._9{width:18.047400px;}
._41{width:19.302480px;}
._1b{width:20.318400px;}
._1c{width:21.513600px;}
._20{width:23.351761px;}
._39{width:24.438958px;}
._40{width:25.443361px;}
._3f{width:26.596080px;}
._18{width:28.146960px;}
._22{width:29.222640px;}
._17{width:30.238560px;}
._15{width:31.254480px;}
._16{width:32.270400px;}
._35{width:34.362000px;}
._11{width:35.363521px;}
._12{width:36.692640px;}
._38{width:37.947600px;}
._27{width:39.441600px;}
._24{width:40.636800px;}
._29{width:41.772240px;}
._28{width:42.788160px;}
._36{width:43.983360px;}
._1d{width:45.178560px;}
._10{width:47.090880px;}
._14{width:49.899600px;}
._19{width:51.871680px;}
._33{width:55.098720px;}
._25{width:57.011040px;}
._34{width:58.430881px;}
._2f{width:64.884961px;}
._2e{width:66.034800px;}
._31{width:70.024321px;}
._2c{width:74.401200px;}
._3b{width:75.715920px;}
._23{width:78.285600px;}
._2a{width:83.544480px;}
._1a{width:85.038480px;}
._30{width:88.444800px;}
._1f{width:94.585681px;}
._37{width:102.309120px;}
._32{width:105.402241px;}
._2d{width:109.062000px;}
._2b{width:132.726960px;}
._3a{width:144.141120px;}
._3c{width:162.248400px;}
._3e{width:165.879361px;}
._26{width:191.265121px;}
._21{width:214.000560px;}
._1e{width:237.844800px;}
._3d{width:291.793681px;}
._13{width:313.500960px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:41.760000px;}
.fs1{font-size:45.360000px;}
.fs6{font-size:48.240000px;}
.fs0{font-size:54.000000px;}
.fs5{font-size:59.760000px;}
.fs3{font-size:66.240000px;}
.fs2{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y11f{bottom:5.940000px;}
.y136{bottom:6.120000px;}
.y134{bottom:6.150000px;}
.y81{bottom:7.740000px;}
.y7e{bottom:7.920000px;}
.yc5{bottom:7.950000px;}
.ybc{bottom:7.965000px;}
.yda{bottom:25.380000px;}
.ydf{bottom:25.410000px;}
.yd9{bottom:25.560000px;}
.yde{bottom:25.590000px;}
.y124{bottom:26.100000px;}
.y129{bottom:26.280000px;}
.y133{bottom:26.310000px;}
.ydc{bottom:43.020000px;}
.y111{bottom:43.065000px;}
.ye6{bottom:43.200000px;}
.y123{bottom:46.440000px;}
.y132{bottom:46.650000px;}
.y10e{bottom:60.660000px;}
.y110{bottom:60.705000px;}
.y115{bottom:60.840000px;}
.y122{bottom:66.594000px;}
.y128{bottom:66.600000px;}
.y12d{bottom:66.645000px;}
.y131{bottom:66.810000px;}
.y2{bottom:73.296000px;}
.y10a{bottom:74.160000px;}
.y2b{bottom:74.196000px;}
.y114{bottom:78.300000px;}
.y11c{bottom:78.345000px;}
.y121{bottom:86.754000px;}
.y127{bottom:86.940000px;}
.y130{bottom:86.970000px;}
.y12c{bottom:86.985000px;}
.y117{bottom:95.790000px;}
.y11d{bottom:95.805000px;}
.y113{bottom:95.940000px;}
.y118{bottom:95.970000px;}
.y1{bottom:95.976000px;}
.y11b{bottom:95.985000px;}
.y120{bottom:103.176000px;}
.y126{bottom:107.100000px;}
.y12b{bottom:107.145000px;}
.y12f{bottom:107.310000px;}
.yc3{bottom:108.756000px;}
.y11a{bottom:113.445000px;}
.ya4{bottom:122.616000px;}
.y29{bottom:129.276000px;}
.y48{bottom:134.856000px;}
.yc2{bottom:136.116000px;}
.y28{bottom:146.736000px;}
.y108{bottom:153.930000px;}
.y160{bottom:154.110000px;}
.yeb{bottom:155.190000px;}
.ya3{bottom:158.070000px;}
.yc1{bottom:163.470000px;}
.y27{bottom:164.370000px;}
.y47{bottom:170.490000px;}
.y15f{bottom:171.750000px;}
.yea{bottom:172.830000px;}
.ya2{bottom:175.710000px;}
.y26{bottom:182.010000px;}
.y107{bottom:189.570000px;}
.ye9{bottom:190.470000px;}
.yc0{bottom:190.830000px;}
.ya1{bottom:193.350000px;}
.y15e{bottom:198.390000px;}
.y25{bottom:199.470000px;}
.y46{bottom:202.710000px;}
.y11e{bottom:205.050000px;}
.ya0{bottom:210.990000px;}
.y15d{bottom:216.030000px;}
.ye8{bottom:216.930000px;}
.y24{bottom:217.110000px;}
.ybf{bottom:218.010000px;}
.y106{bottom:225.210000px;}
.y119{bottom:225.930000px;}
.y71{bottom:226.110000px;}
.y9f{bottom:228.450000px;}
.y15c{bottom:242.490000px;}
.y70{bottom:243.750000px;}
.ybe{bottom:245.370000px;}
.y9e{bottom:246.090000px;}
.ye7{bottom:251.850000px;}
.y23{bottom:252.750000px;}
.y15b{bottom:260.130000px;}
.y105{bottom:260.670000px;}
.y6f{bottom:261.390000px;}
.ye5{bottom:263.910000px;}
.y22{bottom:270.390000px;}
.y9d{bottom:272.550000px;}
.ybd{bottom:272.730000px;}
.y104{bottom:278.310000px;}
.y89{bottom:278.670000px;}
.y6e{bottom:279.030000px;}
.y15a{bottom:286.770000px;}
.y21{bottom:287.850000px;}
.y138{bottom:288.255000px;}
.y88{bottom:290.910000px;}
.y181{bottom:292.710000px;}
.y103{bottom:295.950000px;}
.y6d{bottom:296.490000px;}
.ybb{bottom:300.090000px;}
.y137{bottom:303.195000px;}
.y159{bottom:304.410000px;}
.y20{bottom:305.490000px;}
.y9c{bottom:307.695000px;}
.y180{bottom:310.395000px;}
.y102{bottom:313.635000px;}
.y87{bottom:318.135000px;}
.y9b{bottom:319.755000px;}
.y158{bottom:321.915000px;}
.y1f{bottom:323.175000px;}
.ye4{bottom:326.595000px;}
.yba{bottom:327.495000px;}
.y101{bottom:331.275000px;}
.y6c{bottom:332.175000px;}
.y17f{bottom:337.035000px;}
.y1e{bottom:340.635000px;}
.y86{bottom:345.495000px;}
.y9a{bottom:347.115000px;}
.y100{bottom:348.735000px;}
.y6b{bottom:349.815000px;}
.y17e{bottom:354.675000px;}
.y1d{bottom:358.275000px;}
.y116{bottom:358.815000px;}
.yff{bottom:366.375000px;}
.y6a{bottom:367.275000px;}
.ye3{bottom:371.415000px;}
.y17d{bottom:372.135000px;}
.y85{bottom:372.855000px;}
.y99{bottom:374.295000px;}
.y1c{bottom:375.915000px;}
.yb9{bottom:376.095000px;}
.yfe{bottom:384.015000px;}
.y135{bottom:384.735000px;}
.y69{bottom:384.915000px;}
.y1b{bottom:393.375000px;}
.y157{bottom:397.155000px;}
.y17c{bottom:398.775000px;}
.y84{bottom:400.215000px;}
.yfd{bottom:401.475000px;}
.y98{bottom:401.655000px;}
.y68{bottom:402.555000px;}
.yb8{bottom:411.735000px;}
.ye2{bottom:416.415000px;}
.yfc{bottom:419.115000px;}
.y67{bottom:420.015000px;}
.y1a{bottom:420.195000px;}
.y156{bottom:423.975000px;}
.y83{bottom:427.575000px;}
.y97{bottom:429.015000px;}
.yb7{bottom:429.375000px;}
.y17b{bottom:433.875000px;}
.yfb{bottom:436.755000px;}
.y12e{bottom:446.115000px;}
.y66{bottom:446.655000px;}
.yb6{bottom:447.015000px;}
.yfa{bottom:454.215000px;}
.y82{bottom:454.935000px;}
.y96{bottom:456.375000px;}
.y17a{bottom:460.515000px;}
.ye1{bottom:461.235000px;}
.yb5{bottom:464.475000px;}
.y19{bottom:468.975000px;}
.y112{bottom:474.045000px;}
.y179{bottom:478.155000px;}
.yb4{bottom:482.115000px;}
.y65{bottom:482.295000px;}
.y95{bottom:483.735000px;}
.yf9{bottom:489.855000px;}
.y64{bottom:499.935000px;}
.y178{bottom:504.615000px;}
.y18{bottom:505.875000px;}
.ye0{bottom:506.235000px;}
.yf8{bottom:507.495000px;}
.yb3{bottom:508.755000px;}
.y80{bottom:509.475000px;}
.y155{bottom:509.655000px;}
.y94{bottom:511.095000px;}
.y177{bottom:522.255000px;}
.y17{bottom:523.515000px;}
.yf7{bottom:525.135000px;}
.y63{bottom:526.575000px;}
.y154{bottom:527.295000px;}
.y7f{bottom:536.835000px;}
.y93{bottom:538.455000px;}
.y16{bottom:541.155000px;}
.yf6{bottom:542.595000px;}
.yb2{bottom:544.215000px;}
.y153{bottom:544.935000px;}
.y176{bottom:548.715000px;}
.y15{bottom:558.795000px;}
.yf5{bottom:560.235000px;}
.y152{bottom:562.395000px;}
.y7d{bottom:564.195000px;}
.y92{bottom:565.815000px;}
.y175{bottom:566.355000px;}
.y12a{bottom:568.365000px;}
.ydd{bottom:568.695000px;}
.y62{bottom:574.995000px;}
.y14{bottom:576.255000px;}
.yb1{bottom:576.435000px;}
.y151{bottom:580.035000px;}
.y174{bottom:584.025000px;}
.yf4{bottom:586.725000px;}
.y10f{bottom:589.425000px;}
.y61{bottom:592.665000px;}
.y91{bottom:593.025000px;}
.y13{bottom:593.925000px;}
.y60{bottom:610.305000px;}
.y173{bottom:610.665000px;}
.y12{bottom:611.565000px;}
.y7c{bottom:613.005000px;}
.ydb{bottom:613.725000px;}
.y150{bottom:615.525000px;}
.yf3{bottom:622.365000px;}
.y45{bottom:624.525000px;}
.y172{bottom:628.305000px;}
.y11{bottom:629.025000px;}
.y14f{bottom:633.165000px;}
.y90{bottom:641.805000px;}
.y44{bottom:642.165000px;}
.y5f{bottom:645.765000px;}
.y10{bottom:646.665000px;}
.y7b{bottom:648.465000px;}
.y14e{bottom:650.805000px;}
.yf2{bottom:654.585000px;}
.y171{bottom:654.765000px;}
.y43{bottom:659.805000px;}
.y5e{bottom:663.405000px;}
.yf{bottom:664.305000px;}
.y7a{bottom:666.105000px;}
.y14d{bottom:668.445000px;}
.y10d{bottom:669.570000px;}
.y170{bottom:672.405000px;}
.yd8{bottom:676.185000px;}
.y42{bottom:677.445000px;}
.y5d{bottom:681.045000px;}
.ye{bottom:681.765000px;}
.y79{bottom:683.745000px;}
.y14c{bottom:685.905000px;}
.y16f{bottom:690.045000px;}
.y125{bottom:690.450000px;}
.y41{bottom:694.905000px;}
.y8f{bottom:695.085000px;}
.y5c{bottom:698.505000px;}
.yd{bottom:699.405000px;}
.y78{bottom:701.385000px;}
.y14b{bottom:703.545000px;}
.y40{bottom:712.545000px;}
.y5b{bottom:716.145000px;}
.y16e{bottom:716.505000px;}
.yc{bottom:717.045000px;}
.y77{bottom:719.025000px;}
.yd7{bottom:721.005000px;}
.y3f{bottom:730.185000px;}
.y5a{bottom:733.785000px;}
.y16d{bottom:734.145000px;}
.yb{bottom:734.685000px;}
.y76{bottom:736.485000px;}
.y14a{bottom:739.005000px;}
.y8e{bottom:747.825000px;}
.yd6{bottom:748.365000px;}
.y10c{bottom:749.670000px;}
.y16c{bottom:751.785000px;}
.y75{bottom:754.125000px;}
.y3e{bottom:756.645000px;}
.ya{bottom:761.325000px;}
.y8d{bottom:765.285000px;}
.y59{bottom:769.245000px;}
.yb0{bottom:771.045000px;}
.y149{bottom:774.285000px;}
.y16b{bottom:778.245000px;}
.y74{bottom:780.585000px;}
.y8c{bottom:791.925000px;}
.y3d{bottom:792.465000px;}
.y58{bottom:795.885000px;}
.yd5{bottom:797.145000px;}
.y10b{bottom:798.270000px;}
.yaf{bottom:806.145000px;}
.y148{bottom:809.565000px;}
.y9{bottom:809.745000px;}
.y16a{bottom:813.525000px;}
.y73{bottom:816.225000px;}
.yae{bottom:818.205000px;}
.y109{bottom:824.940000px;}
.y8b{bottom:827.385000px;}
.y57{bottom:831.525000px;}
.yd4{bottom:832.785000px;}
.y169{bottom:839.985000px;}
.y3c{bottom:840.885000px;}
.y147{bottom:845.025000px;}
.y8{bottom:845.565000px;}
.y72{bottom:848.445000px;}
.y56{bottom:849.165000px;}
.yd3{bottom:850.425000px;}
.y168{bottom:857.625000px;}
.y3b{bottom:858.570000px;}
.y8a{bottom:859.650000px;}
.y146{bottom:862.710000px;}
.y55{bottom:866.670000px;}
.yd2{bottom:867.930000px;}
.yad{bottom:872.970000px;}
.y167{bottom:875.310000px;}
.y3a{bottom:876.210000px;}
.y145{bottom:880.350000px;}
.y7{bottom:881.610000px;}
.y54{bottom:884.310000px;}
.yd1{bottom:885.570000px;}
.y39{bottom:893.670000px;}
.y144{bottom:897.810000px;}
.yac{bottom:900.150000px;}
.y166{bottom:901.770000px;}
.y53{bottom:901.950000px;}
.yd0{bottom:903.210000px;}
.y38{bottom:911.310000px;}
.y143{bottom:915.450000px;}
.y6{bottom:917.610000px;}
.y165{bottom:919.410000px;}
.ycf{bottom:920.670000px;}
.yab{bottom:927.510000px;}
.y37{bottom:928.950000px;}
.y142{bottom:933.090000px;}
.y5{bottom:935.610000px;}
.y52{bottom:937.410000px;}
.yce{bottom:938.310000px;}
.y164{bottom:946.050000px;}
.y36{bottom:946.410000px;}
.y141{bottom:950.550000px;}
.yaa{bottom:954.870000px;}
.y51{bottom:955.050000px;}
.ycd{bottom:955.950000px;}
.y163{bottom:963.690000px;}
.y35{bottom:964.050000px;}
.y4{bottom:971.610000px;}
.y50{bottom:972.690000px;}
.ycc{bottom:973.410000px;}
.y34{bottom:981.690000px;}
.yf1{bottom:982.050000px;}
.ya9{bottom:982.230000px;}
.y140{bottom:986.190000px;}
.y4f{bottom:990.150000px;}
.ycb{bottom:991.050000px;}
.y33{bottom:999.150000px;}
.yf0{bottom:999.690000px;}
.y13f{bottom:1003.830000px;}
.y4e{bottom:1007.790000px;}
.yca{bottom:1008.690000px;}
.ya8{bottom:1009.590000px;}
.y3{bottom:1009.950000px;}
.y32{bottom:1016.790000px;}
.yef{bottom:1017.150000px;}
.y13e{bottom:1021.470000px;}
.yc9{bottom:1026.330000px;}
.y31{bottom:1034.430000px;}
.yee{bottom:1034.790000px;}
.ya7{bottom:1036.950000px;}
.y13d{bottom:1038.930000px;}
.y4d{bottom:1043.430000px;}
.y162{bottom:1052.070000px;}
.yed{bottom:1052.430000px;}
.yc8{bottom:1052.790000px;}
.y13c{bottom:1056.570000px;}
.y4c{bottom:1061.070000px;}
.ya6{bottom:1064.310000px;}
.y30{bottom:1069.890000px;}
.yec{bottom:1070.070000px;}
.y13b{bottom:1074.210000px;}
.y4b{bottom:1078.530000px;}
.y2f{bottom:1087.530000px;}
.yc7{bottom:1087.710000px;}
.ya5{bottom:1091.490000px;}
.y13a{bottom:1091.670000px;}
.y4a{bottom:1096.170000px;}
.yc6{bottom:1099.770000px;}
.y2e{bottom:1105.170000px;}
.y49{bottom:1113.810000px;}
.y139{bottom:1118.490000px;}
.y161{bottom:1122.630000px;}
.y2d{bottom:1122.810000px;}
.yc4{bottom:1127.130000px;}
.y2c{bottom:1140.300000px;}
.y2a{bottom:1194.300000px;}
.h1d{height:20.160000px;}
.he{height:26.460000px;}
.hf{height:26.496000px;}
.hd{height:26.640000px;}
.hc{height:26.676000px;}
.h3{height:39.468516px;}
.h10{height:41.974453px;}
.h11{height:44.100000px;}
.h13{height:44.136000px;}
.h14{height:44.280000px;}
.h2{height:46.986328px;}
.h6{height:50.597578px;}
.h7{height:51.998203px;}
.h8{height:56.084062px;}
.h5{height:57.636562px;}
.h21{height:60.660000px;}
.hb{height:61.423863px;}
.h12{height:61.740000px;}
.h15{height:61.776000px;}
.ha{height:62.211094px;}
.h9{height:68.956875px;}
.h4{height:73.298672px;}
.h18{height:79.380000px;}
.h19{height:79.416000px;}
.h22{height:80.820000px;}
.h1e{height:100.980000px;}
.h1b{height:114.516000px;}
.h1a{height:114.660000px;}
.h1f{height:121.356000px;}
.h20{height:121.536000px;}
.h1c{height:132.156000px;}
.h16{height:893.160000px;}
.h17{height:893.250000px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w16{width:59.436000px;}
.wd{width:79.200000px;}
.w12{width:82.116000px;}
.w11{width:86.580000px;}
.w9{width:90.000000px;}
.w18{width:93.456000px;}
.wc{width:95.076000px;}
.w7{width:123.516000px;}
.w3{width:126.360000px;}
.w19{width:132.480000px;}
.we{width:153.030000px;}
.w8{width:156.450000px;}
.wa{width:158.610000px;}
.w6{width:158.790000px;}
.w4{width:162.390000px;}
.w10{width:169.410000px;}
.w17{width:193.320000px;}
.w1a{width:197.130000px;}
.wb{width:296.490000px;}
.w1b{width:365.790000px;}
.wf{width:392.505000px;}
.w5{width:413.895000px;}
.w2{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.w14{width:1262.250000px;}
.w15{width:1262.519981px;}
.w13{width:1262.520000px;}
.x0{left:0.000000px;}
.xa{left:7.740000px;}
.x2a{left:18.180000px;}
.x2c{left:23.940000px;}
.x2d{left:50.940000px;}
.x2b{left:64.080000px;}
.x1{left:68.040000px;}
.x1b{left:80.280000px;}
.x6{left:95.075987px;}
.x24{left:107.999981px;}
.x2e{left:111.275987px;}
.x17{left:133.596000px;}
.x1f{left:149.075987px;}
.xf{left:160.050000px;}
.x25{left:168.870000px;}
.x12{left:181.290000px;}
.x2{left:210.989987px;}
.x21{left:249.509987px;}
.x8{left:262.649987px;}
.xe{left:299.954987px;}
.x9{left:301.935000px;}
.x13{left:305.535000px;}
.x5{left:308.954987px;}
.x26{left:362.910000px;}
.xc{left:391.034987px;}
.x11{left:392.294987px;}
.x22{left:395.669981px;}
.xb{left:429.015000px;}
.x18{left:430.815000px;}
.x27{left:457.095000px;}
.x14{left:462.705000px;}
.x1c{left:473.505000px;}
.x19{left:526.605000px;}
.x15{left:553.425000px;}
.x10{left:574.665000px;}
.x28{left:590.295000px;}
.x1a{left:606.705000px;}
.x4{left:642.389987px;}
.x1d{left:643.650000px;}
.x20{left:669.389987px;}
.x7{left:701.969987px;}
.x1e{left:730.950000px;}
.xd{left:743.729987px;}
.x29{left:788.145000px;}
.x3{left:800.429987px;}
.x16{left:806.759987px;}
.x23{left:1129.829981px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:13.440000pt;}
.ls1e{letter-spacing:-0.650667pt;}
.ls5{letter-spacing:-0.576000pt;}
.ls6{letter-spacing:-0.329067pt;}
.ls14{letter-spacing:-0.322667pt;}
.ls7{letter-spacing:-0.290133pt;}
.ls12{letter-spacing:-0.166400pt;}
.ls15{letter-spacing:-0.095467pt;}
.ls18{letter-spacing:-0.092267pt;}
.ls1b{letter-spacing:-0.046720pt;}
.lsb{letter-spacing:-0.032000pt;}
.ls9{letter-spacing:-0.009600pt;}
.ls3{letter-spacing:0.000000pt;}
.lsc{letter-spacing:0.011520pt;}
.ls2{letter-spacing:0.011733pt;}
.ls8{letter-spacing:0.071467pt;}
.ls4{letter-spacing:0.128000pt;}
.lsf{letter-spacing:0.147840pt;}
.ls13{letter-spacing:0.173333pt;}
.lsd{letter-spacing:0.188160pt;}
.ls16{letter-spacing:0.227200pt;}
.ls17{letter-spacing:0.229120pt;}
.ls1a{letter-spacing:0.284160pt;}
.ls1{letter-spacing:0.309760pt;}
.ls0{letter-spacing:0.320000pt;}
.lsa{letter-spacing:0.342933pt;}
.ls11{letter-spacing:0.473600pt;}
.lse{letter-spacing:0.592640pt;}
.ls1d{letter-spacing:0.960000pt;}
.ls1c{letter-spacing:42.192640pt;}
.ls19{letter-spacing:72.272640pt;}
.ls10{letter-spacing:153.552640pt;}
.wsa{word-spacing:-13.296533pt;}
.ws6{word-spacing:-12.953600pt;}
.wsd{word-spacing:-11.913600pt;}
.wsb{word-spacing:-11.859733pt;}
.ws3{word-spacing:-11.698133pt;}
.ws9{word-spacing:-11.697920pt;}
.ws4{word-spacing:-11.686400pt;}
.ws7{word-spacing:-11.654400pt;}
.wsf{word-spacing:-11.639680pt;}
.wse{word-spacing:-11.594133pt;}
.wsc{word-spacing:-11.590933pt;}
.ws2{word-spacing:-8.580267pt;}
.ws1{word-spacing:-8.541333pt;}
.ws0{word-spacing:-8.294400pt;}
.ws8{word-spacing:0.000000pt;}
.ws5{word-spacing:2.268480pt;}
._b{margin-left:-3.012695pt;}
._6{margin-left:-2.112212pt;}
._0{margin-left:-1.008000pt;}
._2{width:1.181439pt;}
._4{width:2.547307pt;}
._7{width:3.984000pt;}
._8{width:4.886934pt;}
._f{width:5.895895pt;}
._5{width:7.224532pt;}
._e{width:8.273496pt;}
._c{width:9.349332pt;}
._d{width:10.251735pt;}
._3{width:12.682562pt;}
._1{width:13.811200pt;}
._a{width:15.060583pt;}
._9{width:16.042134pt;}
._41{width:17.157760pt;}
._1b{width:18.060800pt;}
._1c{width:19.123200pt;}
._20{width:20.757121pt;}
._39{width:21.723518pt;}
._40{width:22.616321pt;}
._3f{width:23.640960pt;}
._18{width:25.019520pt;}
._22{width:25.975680pt;}
._17{width:26.878720pt;}
._15{width:27.781760pt;}
._16{width:28.684800pt;}
._35{width:30.544000pt;}
._11{width:31.434241pt;}
._12{width:32.615680pt;}
._38{width:33.731200pt;}
._27{width:35.059200pt;}
._24{width:36.121600pt;}
._29{width:37.130880pt;}
._28{width:38.033920pt;}
._36{width:39.096320pt;}
._1d{width:40.158720pt;}
._10{width:41.858560pt;}
._14{width:44.355200pt;}
._19{width:46.108160pt;}
._33{width:48.976640pt;}
._25{width:50.676480pt;}
._34{width:51.938561pt;}
._2f{width:57.675521pt;}
._2e{width:58.697600pt;}
._31{width:62.243841pt;}
._2c{width:66.134400pt;}
._3b{width:67.303040pt;}
._23{width:69.587200pt;}
._2a{width:74.261760pt;}
._1a{width:75.589760pt;}
._30{width:78.617600pt;}
._1f{width:84.076161pt;}
._37{width:90.941440pt;}
._32{width:93.690881pt;}
._2d{width:96.944000pt;}
._2b{width:117.979520pt;}
._3a{width:128.125440pt;}
._3c{width:144.220800pt;}
._3e{width:147.448321pt;}
._26{width:170.013441pt;}
._21{width:190.222720pt;}
._1e{width:211.417600pt;}
._3d{width:259.372161pt;}
._13{width:278.667520pt;}
.fs4{font-size:37.120000pt;}
.fs1{font-size:40.320000pt;}
.fs6{font-size:42.880000pt;}
.fs0{font-size:48.000000pt;}
.fs5{font-size:53.120000pt;}
.fs3{font-size:58.880000pt;}
.fs2{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y11f{bottom:5.280000pt;}
.y136{bottom:5.440000pt;}
.y134{bottom:5.466667pt;}
.y81{bottom:6.880000pt;}
.y7e{bottom:7.040000pt;}
.yc5{bottom:7.066667pt;}
.ybc{bottom:7.080000pt;}
.yda{bottom:22.560000pt;}
.ydf{bottom:22.586667pt;}
.yd9{bottom:22.720000pt;}
.yde{bottom:22.746667pt;}
.y124{bottom:23.200000pt;}
.y129{bottom:23.360000pt;}
.y133{bottom:23.386667pt;}
.ydc{bottom:38.240000pt;}
.y111{bottom:38.280000pt;}
.ye6{bottom:38.400000pt;}
.y123{bottom:41.280000pt;}
.y132{bottom:41.466667pt;}
.y10e{bottom:53.920000pt;}
.y110{bottom:53.960000pt;}
.y115{bottom:54.080000pt;}
.y122{bottom:59.194667pt;}
.y128{bottom:59.200000pt;}
.y12d{bottom:59.240000pt;}
.y131{bottom:59.386667pt;}
.y2{bottom:65.152000pt;}
.y10a{bottom:65.920000pt;}
.y2b{bottom:65.952000pt;}
.y114{bottom:69.600000pt;}
.y11c{bottom:69.640000pt;}
.y121{bottom:77.114667pt;}
.y127{bottom:77.280000pt;}
.y130{bottom:77.306667pt;}
.y12c{bottom:77.320000pt;}
.y117{bottom:85.146667pt;}
.y11d{bottom:85.160000pt;}
.y113{bottom:85.280000pt;}
.y118{bottom:85.306667pt;}
.y1{bottom:85.312000pt;}
.y11b{bottom:85.320000pt;}
.y120{bottom:91.712000pt;}
.y126{bottom:95.200000pt;}
.y12b{bottom:95.240000pt;}
.y12f{bottom:95.386667pt;}
.yc3{bottom:96.672000pt;}
.y11a{bottom:100.840000pt;}
.ya4{bottom:108.992000pt;}
.y29{bottom:114.912000pt;}
.y48{bottom:119.872000pt;}
.yc2{bottom:120.992000pt;}
.y28{bottom:130.432000pt;}
.y108{bottom:136.826667pt;}
.y160{bottom:136.986667pt;}
.yeb{bottom:137.946667pt;}
.ya3{bottom:140.506667pt;}
.yc1{bottom:145.306667pt;}
.y27{bottom:146.106667pt;}
.y47{bottom:151.546667pt;}
.y15f{bottom:152.666667pt;}
.yea{bottom:153.626667pt;}
.ya2{bottom:156.186667pt;}
.y26{bottom:161.786667pt;}
.y107{bottom:168.506667pt;}
.ye9{bottom:169.306667pt;}
.yc0{bottom:169.626667pt;}
.ya1{bottom:171.866667pt;}
.y15e{bottom:176.346667pt;}
.y25{bottom:177.306667pt;}
.y46{bottom:180.186667pt;}
.y11e{bottom:182.266667pt;}
.ya0{bottom:187.546667pt;}
.y15d{bottom:192.026667pt;}
.ye8{bottom:192.826667pt;}
.y24{bottom:192.986667pt;}
.ybf{bottom:193.786667pt;}
.y106{bottom:200.186667pt;}
.y119{bottom:200.826667pt;}
.y71{bottom:200.986667pt;}
.y9f{bottom:203.066667pt;}
.y15c{bottom:215.546667pt;}
.y70{bottom:216.666667pt;}
.ybe{bottom:218.106667pt;}
.y9e{bottom:218.746667pt;}
.ye7{bottom:223.866667pt;}
.y23{bottom:224.666667pt;}
.y15b{bottom:231.226667pt;}
.y105{bottom:231.706667pt;}
.y6f{bottom:232.346667pt;}
.ye5{bottom:234.586667pt;}
.y22{bottom:240.346667pt;}
.y9d{bottom:242.266667pt;}
.ybd{bottom:242.426667pt;}
.y104{bottom:247.386667pt;}
.y89{bottom:247.706667pt;}
.y6e{bottom:248.026667pt;}
.y15a{bottom:254.906667pt;}
.y21{bottom:255.866667pt;}
.y138{bottom:256.226667pt;}
.y88{bottom:258.586667pt;}
.y181{bottom:260.186667pt;}
.y103{bottom:263.066667pt;}
.y6d{bottom:263.546667pt;}
.ybb{bottom:266.746667pt;}
.y137{bottom:269.506667pt;}
.y159{bottom:270.586667pt;}
.y20{bottom:271.546667pt;}
.y9c{bottom:273.506667pt;}
.y180{bottom:275.906667pt;}
.y102{bottom:278.786667pt;}
.y87{bottom:282.786667pt;}
.y9b{bottom:284.226667pt;}
.y158{bottom:286.146667pt;}
.y1f{bottom:287.266667pt;}
.ye4{bottom:290.306667pt;}
.yba{bottom:291.106667pt;}
.y101{bottom:294.466667pt;}
.y6c{bottom:295.266667pt;}
.y17f{bottom:299.586667pt;}
.y1e{bottom:302.786667pt;}
.y86{bottom:307.106667pt;}
.y9a{bottom:308.546667pt;}
.y100{bottom:309.986667pt;}
.y6b{bottom:310.946667pt;}
.y17e{bottom:315.266667pt;}
.y1d{bottom:318.466667pt;}
.y116{bottom:318.946667pt;}
.yff{bottom:325.666667pt;}
.y6a{bottom:326.466667pt;}
.ye3{bottom:330.146667pt;}
.y17d{bottom:330.786667pt;}
.y85{bottom:331.426667pt;}
.y99{bottom:332.706667pt;}
.y1c{bottom:334.146667pt;}
.yb9{bottom:334.306667pt;}
.yfe{bottom:341.346667pt;}
.y135{bottom:341.986667pt;}
.y69{bottom:342.146667pt;}
.y1b{bottom:349.666667pt;}
.y157{bottom:353.026667pt;}
.y17c{bottom:354.466667pt;}
.y84{bottom:355.746667pt;}
.yfd{bottom:356.866667pt;}
.y98{bottom:357.026667pt;}
.y68{bottom:357.826667pt;}
.yb8{bottom:365.986667pt;}
.ye2{bottom:370.146667pt;}
.yfc{bottom:372.546667pt;}
.y67{bottom:373.346667pt;}
.y1a{bottom:373.506667pt;}
.y156{bottom:376.866667pt;}
.y83{bottom:380.066667pt;}
.y97{bottom:381.346667pt;}
.yb7{bottom:381.666667pt;}
.y17b{bottom:385.666667pt;}
.yfb{bottom:388.226667pt;}
.y12e{bottom:396.546667pt;}
.y66{bottom:397.026667pt;}
.yb6{bottom:397.346667pt;}
.yfa{bottom:403.746667pt;}
.y82{bottom:404.386667pt;}
.y96{bottom:405.666667pt;}
.y17a{bottom:409.346667pt;}
.ye1{bottom:409.986667pt;}
.yb5{bottom:412.866667pt;}
.y19{bottom:416.866667pt;}
.y112{bottom:421.373333pt;}
.y179{bottom:425.026667pt;}
.yb4{bottom:428.546667pt;}
.y65{bottom:428.706667pt;}
.y95{bottom:429.986667pt;}
.yf9{bottom:435.426667pt;}
.y64{bottom:444.386667pt;}
.y178{bottom:448.546667pt;}
.y18{bottom:449.666667pt;}
.ye0{bottom:449.986667pt;}
.yf8{bottom:451.106667pt;}
.yb3{bottom:452.226667pt;}
.y80{bottom:452.866667pt;}
.y155{bottom:453.026667pt;}
.y94{bottom:454.306667pt;}
.y177{bottom:464.226667pt;}
.y17{bottom:465.346667pt;}
.yf7{bottom:466.786667pt;}
.y63{bottom:468.066667pt;}
.y154{bottom:468.706667pt;}
.y7f{bottom:477.186667pt;}
.y93{bottom:478.626667pt;}
.y16{bottom:481.026667pt;}
.yf6{bottom:482.306667pt;}
.yb2{bottom:483.746667pt;}
.y153{bottom:484.386667pt;}
.y176{bottom:487.746667pt;}
.y15{bottom:496.706667pt;}
.yf5{bottom:497.986667pt;}
.y152{bottom:499.906667pt;}
.y7d{bottom:501.506667pt;}
.y92{bottom:502.946667pt;}
.y175{bottom:503.426667pt;}
.y12a{bottom:505.213333pt;}
.ydd{bottom:505.506667pt;}
.y62{bottom:511.106667pt;}
.y14{bottom:512.226667pt;}
.yb1{bottom:512.386667pt;}
.y151{bottom:515.586667pt;}
.y174{bottom:519.133333pt;}
.yf4{bottom:521.533333pt;}
.y10f{bottom:523.933333pt;}
.y61{bottom:526.813333pt;}
.y91{bottom:527.133333pt;}
.y13{bottom:527.933333pt;}
.y60{bottom:542.493333pt;}
.y173{bottom:542.813333pt;}
.y12{bottom:543.613333pt;}
.y7c{bottom:544.893333pt;}
.ydb{bottom:545.533333pt;}
.y150{bottom:547.133333pt;}
.yf3{bottom:553.213333pt;}
.y45{bottom:555.133333pt;}
.y172{bottom:558.493333pt;}
.y11{bottom:559.133333pt;}
.y14f{bottom:562.813333pt;}
.y90{bottom:570.493333pt;}
.y44{bottom:570.813333pt;}
.y5f{bottom:574.013333pt;}
.y10{bottom:574.813333pt;}
.y7b{bottom:576.413333pt;}
.y14e{bottom:578.493333pt;}
.yf2{bottom:581.853333pt;}
.y171{bottom:582.013333pt;}
.y43{bottom:586.493333pt;}
.y5e{bottom:589.693333pt;}
.yf{bottom:590.493333pt;}
.y7a{bottom:592.093333pt;}
.y14d{bottom:594.173333pt;}
.y10d{bottom:595.173333pt;}
.y170{bottom:597.693333pt;}
.yd8{bottom:601.053333pt;}
.y42{bottom:602.173333pt;}
.y5d{bottom:605.373333pt;}
.ye{bottom:606.013333pt;}
.y79{bottom:607.773333pt;}
.y14c{bottom:609.693333pt;}
.y16f{bottom:613.373333pt;}
.y125{bottom:613.733333pt;}
.y41{bottom:617.693333pt;}
.y8f{bottom:617.853333pt;}
.y5c{bottom:620.893333pt;}
.yd{bottom:621.693333pt;}
.y78{bottom:623.453333pt;}
.y14b{bottom:625.373333pt;}
.y40{bottom:633.373333pt;}
.y5b{bottom:636.573333pt;}
.y16e{bottom:636.893333pt;}
.yc{bottom:637.373333pt;}
.y77{bottom:639.133333pt;}
.yd7{bottom:640.893333pt;}
.y3f{bottom:649.053333pt;}
.y5a{bottom:652.253333pt;}
.y16d{bottom:652.573333pt;}
.yb{bottom:653.053333pt;}
.y76{bottom:654.653333pt;}
.y14a{bottom:656.893333pt;}
.y8e{bottom:664.733333pt;}
.yd6{bottom:665.213333pt;}
.y10c{bottom:666.373333pt;}
.y16c{bottom:668.253333pt;}
.y75{bottom:670.333333pt;}
.y3e{bottom:672.573333pt;}
.ya{bottom:676.733333pt;}
.y8d{bottom:680.253333pt;}
.y59{bottom:683.773333pt;}
.yb0{bottom:685.373333pt;}
.y149{bottom:688.253333pt;}
.y16b{bottom:691.773333pt;}
.y74{bottom:693.853333pt;}
.y8c{bottom:703.933333pt;}
.y3d{bottom:704.413333pt;}
.y58{bottom:707.453333pt;}
.yd5{bottom:708.573333pt;}
.y10b{bottom:709.573333pt;}
.yaf{bottom:716.573333pt;}
.y148{bottom:719.613333pt;}
.y9{bottom:719.773333pt;}
.y16a{bottom:723.133333pt;}
.y73{bottom:725.533333pt;}
.yae{bottom:727.293333pt;}
.y109{bottom:733.280000pt;}
.y8b{bottom:735.453333pt;}
.y57{bottom:739.133333pt;}
.yd4{bottom:740.253333pt;}
.y169{bottom:746.653333pt;}
.y3c{bottom:747.453333pt;}
.y147{bottom:751.133333pt;}
.y8{bottom:751.613333pt;}
.y72{bottom:754.173333pt;}
.y56{bottom:754.813333pt;}
.yd3{bottom:755.933333pt;}
.y168{bottom:762.333333pt;}
.y3b{bottom:763.173333pt;}
.y8a{bottom:764.133333pt;}
.y146{bottom:766.853333pt;}
.y55{bottom:770.373333pt;}
.yd2{bottom:771.493333pt;}
.yad{bottom:775.973333pt;}
.y167{bottom:778.053333pt;}
.y3a{bottom:778.853333pt;}
.y145{bottom:782.533333pt;}
.y7{bottom:783.653333pt;}
.y54{bottom:786.053333pt;}
.yd1{bottom:787.173333pt;}
.y39{bottom:794.373333pt;}
.y144{bottom:798.053333pt;}
.yac{bottom:800.133333pt;}
.y166{bottom:801.573333pt;}
.y53{bottom:801.733333pt;}
.yd0{bottom:802.853333pt;}
.y38{bottom:810.053333pt;}
.y143{bottom:813.733333pt;}
.y6{bottom:815.653333pt;}
.y165{bottom:817.253333pt;}
.ycf{bottom:818.373333pt;}
.yab{bottom:824.453333pt;}
.y37{bottom:825.733333pt;}
.y142{bottom:829.413333pt;}
.y5{bottom:831.653333pt;}
.y52{bottom:833.253333pt;}
.yce{bottom:834.053333pt;}
.y164{bottom:840.933333pt;}
.y36{bottom:841.253333pt;}
.y141{bottom:844.933333pt;}
.yaa{bottom:848.773333pt;}
.y51{bottom:848.933333pt;}
.ycd{bottom:849.733333pt;}
.y163{bottom:856.613333pt;}
.y35{bottom:856.933333pt;}
.y4{bottom:863.653333pt;}
.y50{bottom:864.613333pt;}
.ycc{bottom:865.253333pt;}
.y34{bottom:872.613333pt;}
.yf1{bottom:872.933333pt;}
.ya9{bottom:873.093333pt;}
.y140{bottom:876.613333pt;}
.y4f{bottom:880.133333pt;}
.ycb{bottom:880.933333pt;}
.y33{bottom:888.133333pt;}
.yf0{bottom:888.613333pt;}
.y13f{bottom:892.293333pt;}
.y4e{bottom:895.813333pt;}
.yca{bottom:896.613333pt;}
.ya8{bottom:897.413333pt;}
.y3{bottom:897.733333pt;}
.y32{bottom:903.813333pt;}
.yef{bottom:904.133333pt;}
.y13e{bottom:907.973333pt;}
.yc9{bottom:912.293333pt;}
.y31{bottom:919.493333pt;}
.yee{bottom:919.813333pt;}
.ya7{bottom:921.733333pt;}
.y13d{bottom:923.493333pt;}
.y4d{bottom:927.493333pt;}
.y162{bottom:935.173333pt;}
.yed{bottom:935.493333pt;}
.yc8{bottom:935.813333pt;}
.y13c{bottom:939.173333pt;}
.y4c{bottom:943.173333pt;}
.ya6{bottom:946.053333pt;}
.y30{bottom:951.013333pt;}
.yec{bottom:951.173333pt;}
.y13b{bottom:954.853333pt;}
.y4b{bottom:958.693333pt;}
.y2f{bottom:966.693333pt;}
.yc7{bottom:966.853333pt;}
.ya5{bottom:970.213333pt;}
.y13a{bottom:970.373333pt;}
.y4a{bottom:974.373333pt;}
.yc6{bottom:977.573333pt;}
.y2e{bottom:982.373333pt;}
.y49{bottom:990.053333pt;}
.y139{bottom:994.213333pt;}
.y161{bottom:997.893333pt;}
.y2d{bottom:998.053333pt;}
.yc4{bottom:1001.893333pt;}
.y2c{bottom:1013.600000pt;}
.y2a{bottom:1061.600000pt;}
.h1d{height:17.920000pt;}
.he{height:23.520000pt;}
.hf{height:23.552000pt;}
.hd{height:23.680000pt;}
.hc{height:23.712000pt;}
.h3{height:35.083125pt;}
.h10{height:37.310625pt;}
.h11{height:39.200000pt;}
.h13{height:39.232000pt;}
.h14{height:39.360000pt;}
.h2{height:41.765625pt;}
.h6{height:44.975625pt;}
.h7{height:46.220625pt;}
.h8{height:49.852500pt;}
.h5{height:51.232500pt;}
.h21{height:53.920000pt;}
.hb{height:54.598989pt;}
.h12{height:54.880000pt;}
.h15{height:54.912000pt;}
.ha{height:55.298750pt;}
.h9{height:61.295000pt;}
.h4{height:65.154375pt;}
.h18{height:70.560000pt;}
.h19{height:70.592000pt;}
.h22{height:71.840000pt;}
.h1e{height:89.760000pt;}
.h1b{height:101.792000pt;}
.h1a{height:101.920000pt;}
.h1f{height:107.872000pt;}
.h20{height:108.032000pt;}
.h1c{height:117.472000pt;}
.h16{height:793.920000pt;}
.h17{height:794.000000pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w16{width:52.832000pt;}
.wd{width:70.400000pt;}
.w12{width:72.992000pt;}
.w11{width:76.960000pt;}
.w9{width:80.000000pt;}
.w18{width:83.072000pt;}
.wc{width:84.512000pt;}
.w7{width:109.792000pt;}
.w3{width:112.320000pt;}
.w19{width:117.760000pt;}
.we{width:136.026667pt;}
.w8{width:139.066667pt;}
.wa{width:140.986667pt;}
.w6{width:141.146667pt;}
.w4{width:144.346667pt;}
.w10{width:150.586667pt;}
.w17{width:171.840000pt;}
.w1a{width:175.226667pt;}
.wb{width:263.546667pt;}
.w1b{width:325.146667pt;}
.wf{width:348.893333pt;}
.w5{width:367.906667pt;}
.w2{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.w14{width:1122.000000pt;}
.w15{width:1122.239983pt;}
.w13{width:1122.240000pt;}
.x0{left:0.000000pt;}
.xa{left:6.880000pt;}
.x2a{left:16.160000pt;}
.x2c{left:21.280000pt;}
.x2d{left:45.280000pt;}
.x2b{left:56.960000pt;}
.x1{left:60.480000pt;}
.x1b{left:71.360000pt;}
.x6{left:84.511988pt;}
.x24{left:95.999983pt;}
.x2e{left:98.911988pt;}
.x17{left:118.752000pt;}
.x1f{left:132.511988pt;}
.xf{left:142.266667pt;}
.x25{left:150.106667pt;}
.x12{left:161.146667pt;}
.x2{left:187.546655pt;}
.x21{left:221.786655pt;}
.x8{left:233.466655pt;}
.xe{left:266.626655pt;}
.x9{left:268.386667pt;}
.x13{left:271.586667pt;}
.x5{left:274.626655pt;}
.x26{left:322.586667pt;}
.xc{left:347.586655pt;}
.x11{left:348.706655pt;}
.x22{left:351.706650pt;}
.xb{left:381.346667pt;}
.x18{left:382.946667pt;}
.x27{left:406.306667pt;}
.x14{left:411.293333pt;}
.x1c{left:420.893333pt;}
.x19{left:468.093333pt;}
.x15{left:491.933333pt;}
.x10{left:510.813333pt;}
.x28{left:524.706667pt;}
.x1a{left:539.293333pt;}
.x4{left:571.013322pt;}
.x1d{left:572.133333pt;}
.x20{left:595.013322pt;}
.x7{left:623.973322pt;}
.x1e{left:649.733333pt;}
.xd{left:661.093322pt;}
.x29{left:700.573333pt;}
.x3{left:711.493322pt;}
.x16{left:717.119988pt;}
.x23{left:1004.293317pt;}
}




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