
    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_f7f0c109b93222fb37365e40.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_d00b5a7afb24677b5e7f51b6.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_1b8ae3d5e241a34338b4fb19.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_be2a88ceea3cbf148de65dfd.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.284180;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_c46b6647657187b7244fe815.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.112305;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_c57592535a7069a85203f223.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.080566;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_ee19fe80126fb6d96834d177.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_e97515d4a423ace1a03c587f.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.914062;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2{transform:matrix(0.192865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192865,0.000000,0.000000,0.250000,0,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);}
.v1{vertical-align:-69.120000px;}
.v0{vertical-align:0.000000px;}
.lsf{letter-spacing:-1.771425px;}
.lse{letter-spacing:-1.370460px;}
.ls8{letter-spacing:-0.540000px;}
.lsd{letter-spacing:-0.360000px;}
.ls16{letter-spacing:-0.091200px;}
.ls5{letter-spacing:-0.058320px;}
.ls15{letter-spacing:-0.018000px;}
.ls3{letter-spacing:0.000000px;}
.ls7{letter-spacing:0.106800px;}
.ls4{letter-spacing:0.180000px;}
.ls6{letter-spacing:0.259800px;}
.ls2{letter-spacing:0.360000px;}
.lsa{letter-spacing:1.047295px;}
.lsc{letter-spacing:1.196909px;}
.lsb{letter-spacing:1.346522px;}
.ls9{letter-spacing:3.590726px;}
.ls12{letter-spacing:13.320000px;}
.ls13{letter-spacing:14.040000px;}
.ls14{letter-spacing:14.160000px;}
.ls11{letter-spacing:114.042000px;}
.ls10{letter-spacing:434.340000px;}
.ls1{letter-spacing:1153.080000px;}
.ls0{letter-spacing:1732.794240px;}
.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:-15.300000px;}
.ws4{word-spacing:-15.199800px;}
.ws2{word-spacing:-14.940000px;}
.ws5{word-spacing:-13.500000px;}
.ws0{word-spacing:-13.447440px;}
.ws7{word-spacing:-13.091187px;}
.ws6{word-spacing:-11.744665px;}
.ws8{word-spacing:-10.374205px;}
.ws3{word-spacing:0.000000px;}
.ws9{word-spacing:74.514000px;}
._19{margin-left:-5.633280px;}
._9{margin-left:-3.286800px;}
._3{margin-left:-1.874400px;}
._0{width:1.075680px;}
._1{width:2.199600px;}
._e{width:3.466080px;}
._6{width:5.199120px;}
._7{width:6.215040px;}
._2{width:7.230960px;}
._5{width:8.545680px;}
._4{width:9.561600px;}
._d{width:10.697040px;}
._15{width:12.011760px;}
._b{width:13.027680px;}
._c{width:16.135200px;}
._10{width:17.270640px;}
._f{width:18.585360px;}
._17{width:19.900080px;}
._14{width:21.095280px;}
._16{width:23.127120px;}
._8{width:25.137120px;}
._13{width:28.744560px;}
._1b{width:33.107040px;}
._a{width:35.019360px;}
._18{width:50.019120px;}
._20{width:59.340000px;}
._1f{width:72.840000px;}
._1a{width:174.359040px;}
._1d{width:553.404901px;}
._1c{width:585.278959px;}
._1e{width:615.768408px;}
._11{width:849.216000px;}
._12{width:1732.050240px;}
.fc1{color:transparent;}
.fc2{color:rgb(127,127,127);}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:36.000000px;}
.fs1{font-size:38.880000px;}
.fs5{font-size:46.978661px;}
.fs4{font-size:53.860885px;}
.fs3{font-size:54.000000px;}
.fs6{font-size:54.144000px;}
.fs0{font-size:59.760000px;}
.y0{bottom:0.000000px;}
.y11b{bottom:2.393822px;}
.y117{bottom:2.393823px;}
.y11f{bottom:2.393852px;}
.y130{bottom:2.431225px;}
.y111{bottom:2.431226px;}
.y109{bottom:2.468629px;}
.y10b{bottom:2.468631px;}
.yfb{bottom:2.506033px;}
.yfd{bottom:2.506034px;}
.yf3{bottom:2.543437px;}
.yf5{bottom:2.543438px;}
.ye3{bottom:2.573359px;}
.ye5{bottom:2.573361px;}
.yeb{bottom:2.580840px;}
.yed{bottom:2.580841px;}
.ydb{bottom:2.618244px;}
.ydd{bottom:2.618245px;}
.yd6{bottom:2.648166px;}
.ycd{bottom:2.648167px;}
.yc8{bottom:2.693053px;}
.yc4{bottom:2.693054px;}
.yc6{bottom:2.693056px;}
.ybe{bottom:2.722973px;}
.yc2{bottom:2.722977px;}
.yc0{bottom:2.722983px;}
.y43{bottom:3.240000px;}
.ybc{bottom:3.291523px;}
.yba{bottom:3.321446px;}
.y12e{bottom:5.199183px;}
.y40{bottom:11.880000px;}
.y15d{bottom:17.640000px;}
.y42{bottom:20.520000px;}
.y12d{bottom:25.435016px;}
.y48{bottom:28.980000px;}
.y3f{bottom:29.190000px;}
.y4a{bottom:37.620000px;}
.y41{bottom:37.650000px;}
.y46{bottom:37.800000px;}
.y12c{bottom:45.632848px;}
.y152{bottom:47.520000px;}
.y49{bottom:54.900000px;}
.y12b{bottom:65.868084px;}
.y151{bottom:80.130000px;}
.y15c{bottom:80.460000px;}
.y12a{bottom:86.103319px;}
.y8b{bottom:87.840000px;}
.y7b{bottom:100.260000px;}
.y87{bottom:103.320000px;}
.y129{bottom:106.301151px;}
.y150{bottom:111.780000px;}
.y15b{bottom:112.110000px;}
.yb4{bottom:113.760000px;}
.y146{bottom:116.100000px;}
.y7a{bottom:117.540000px;}
.y86{bottom:118.800000px;}
.y8a{bottom:123.300000px;}
.y128{bottom:126.536386px;}
.yb3{bottom:131.040000px;}
.y145{bottom:133.200000px;}
.y85{bottom:134.460000px;}
.y79{bottom:134.856000px;}
.y84{bottom:138.996000px;}
.y3d{bottom:139.356000px;}
.y14f{bottom:143.385000px;}
.y15a{bottom:143.460000px;}
.y127{bottom:146.771622px;}
.yb2{bottom:148.356000px;}
.y83{bottom:149.976000px;}
.y144{bottom:150.510000px;}
.y78{bottom:152.130000px;}
.y3c{bottom:156.630000px;}
.y82{bottom:165.450000px;}
.yb1{bottom:165.630000px;}
.y126{bottom:166.966461px;}
.y143{bottom:167.790000px;}
.y77{bottom:169.410000px;}
.y3b{bottom:173.910000px;}
.y14e{bottom:175.035000px;}
.y159{bottom:175.320000px;}
.y81{bottom:180.930000px;}
.yb0{bottom:182.730000px;}
.y142{bottom:185.070000px;}
.y80{bottom:185.430000px;}
.y76{bottom:186.510000px;}
.y125{bottom:187.209177px;}
.y3a{bottom:191.010000px;}
.y7f{bottom:196.770000px;}
.yaf{bottom:200.010000px;}
.y141{bottom:202.350000px;}
.y75{bottom:203.790000px;}
.y14d{bottom:206.640000px;}
.y158{bottom:206.715000px;}
.yb8{bottom:207.436932px;}
.y39{bottom:208.290000px;}
.yae{bottom:217.290000px;}
.y140{bottom:219.630000px;}
.y74{bottom:221.070000px;}
.y38{bottom:225.570000px;}
.yb7{bottom:227.634764px;}
.y7e{bottom:230.790000px;}
.yad{bottom:234.570000px;}
.y13f{bottom:236.730000px;}
.y14c{bottom:238.245000px;}
.y73{bottom:238.350000px;}
.y157{bottom:238.575000px;}
.y37{bottom:242.850000px;}
.yac{bottom:251.850000px;}
.y13e{bottom:254.010000px;}
.y72{bottom:255.630000px;}
.y36{bottom:260.130000px;}
.yab{bottom:269.130000px;}
.y14b{bottom:269.895000px;}
.y156{bottom:269.925000px;}
.y13d{bottom:271.290000px;}
.y71{bottom:272.910000px;}
.y35{bottom:277.410000px;}
.y89{bottom:282.630000px;}
.yb6{bottom:284.936761px;}
.yaa{bottom:286.230000px;}
.y13c{bottom:288.570000px;}
.y70{bottom:290.010000px;}
.y34{bottom:294.510000px;}
.y14a{bottom:301.500000px;}
.y155{bottom:301.575000px;}
.ya9{bottom:303.510000px;}
.y13b{bottom:305.850000px;}
.y6f{bottom:307.290000px;}
.y33{bottom:311.790000px;}
.ya8{bottom:320.790000px;}
.y13a{bottom:322.950000px;}
.y6e{bottom:324.570000px;}
.y32{bottom:329.070000px;}
.y149{bottom:333.105000px;}
.y154{bottom:333.180000px;}
.ya7{bottom:338.070000px;}
.y139{bottom:340.230000px;}
.y6d{bottom:341.850000px;}
.y31{bottom:346.350000px;}
.ya6{bottom:355.350000px;}
.y138{bottom:357.510000px;}
.y6c{bottom:359.130000px;}
.y30{bottom:363.630000px;}
.y148{bottom:364.755000px;}
.y153{bottom:364.785000px;}
.ya5{bottom:372.450000px;}
.y137{bottom:374.790000px;}
.y6b{bottom:376.230000px;}
.y2f{bottom:380.730000px;}
.ya4{bottom:389.775000px;}
.y136{bottom:392.115000px;}
.y6a{bottom:393.555000px;}
.y2e{bottom:398.055000px;}
.ya3{bottom:407.055000px;}
.y135{bottom:409.395000px;}
.y69{bottom:410.835000px;}
.y2d{bottom:415.335000px;}
.ya2{bottom:424.335000px;}
.y134{bottom:426.495000px;}
.y68{bottom:428.115000px;}
.y2c{bottom:432.615000px;}
.ya1{bottom:441.615000px;}
.y133{bottom:443.775000px;}
.y67{bottom:445.395000px;}
.y2b{bottom:449.895000px;}
.ya0{bottom:458.895000px;}
.y132{bottom:461.055000px;}
.y66{bottom:462.675000px;}
.y2a{bottom:467.175000px;}
.y7d{bottom:472.395000px;}
.y131{bottom:475.095000px;}
.y9f{bottom:475.995000px;}
.y147{bottom:476.280000px;}
.y65{bottom:479.775000px;}
.y29{bottom:484.275000px;}
.y9e{bottom:493.275000px;}
.y64{bottom:497.055000px;}
.y28{bottom:501.555000px;}
.y9d{bottom:510.555000px;}
.y63{bottom:514.335000px;}
.y27{bottom:518.835000px;}
.y9c{bottom:527.835000px;}
.y62{bottom:531.615000px;}
.y26{bottom:536.115000px;}
.y9b{bottom:545.115000px;}
.y61{bottom:548.895000px;}
.y25{bottom:553.395000px;}
.y9a{bottom:562.395000px;}
.y60{bottom:566.175000px;}
.y24{bottom:570.675000px;}
.y99{bottom:579.495000px;}
.y5f{bottom:583.275000px;}
.y23{bottom:587.775000px;}
.y98{bottom:596.775000px;}
.y5e{bottom:600.555000px;}
.y22{bottom:605.055000px;}
.y97{bottom:614.055000px;}
.y5d{bottom:617.835000px;}
.y21{bottom:622.335000px;}
.y96{bottom:631.335000px;}
.y5c{bottom:635.115000px;}
.y20{bottom:639.615000px;}
.y95{bottom:648.645000px;}
.y5b{bottom:652.425000px;}
.y1f{bottom:656.925000px;}
.y94{bottom:665.925000px;}
.y5a{bottom:669.525000px;}
.y1e{bottom:674.025000px;}
.y93{bottom:683.025000px;}
.y59{bottom:686.805000px;}
.y1d{bottom:691.305000px;}
.y92{bottom:700.305000px;}
.y58{bottom:704.085000px;}
.y1c{bottom:708.585000px;}
.y91{bottom:717.585000px;}
.y57{bottom:721.365000px;}
.y1b{bottom:725.865000px;}
.y90{bottom:734.865000px;}
.y56{bottom:738.645000px;}
.y1a{bottom:743.145000px;}
.y8f{bottom:752.145000px;}
.y55{bottom:755.925000px;}
.y19{bottom:760.425000px;}
.y8e{bottom:769.245000px;}
.y54{bottom:773.025000px;}
.y18{bottom:777.525000px;}
.y8d{bottom:786.525000px;}
.y53{bottom:790.305000px;}
.y17{bottom:794.805000px;}
.y8c{bottom:800.565000px;}
.yb5{bottom:801.990389px;}
.y124{bottom:802.551440px;}
.y123{bottom:802.551448px;}
.y122{bottom:802.551457px;}
.y121{bottom:802.551466px;}
.y120{bottom:802.551475px;}
.y11e{bottom:802.551486px;}
.y52{bottom:807.585000px;}
.y16{bottom:812.085000px;}
.y11d{bottom:822.749900px;}
.y11c{bottom:822.749908px;}
.y11a{bottom:822.749918px;}
.y119{bottom:822.749926px;}
.y118{bottom:822.749935px;}
.y116{bottom:822.749947px;}
.y51{bottom:824.865000px;}
.y15{bottom:829.365000px;}
.y50{bottom:842.145000px;}
.y12f{bottom:842.947732px;}
.y115{bottom:842.947740px;}
.y114{bottom:842.947750px;}
.y113{bottom:842.947758px;}
.y112{bottom:842.947767px;}
.y110{bottom:842.947779px;}
.y14{bottom:846.645000px;}
.y4f{bottom:859.425000px;}
.y10f{bottom:863.145564px;}
.y10e{bottom:863.145572px;}
.y10d{bottom:863.145582px;}
.y10c{bottom:863.145590px;}
.y10a{bottom:863.145599px;}
.y108{bottom:863.145611px;}
.y13{bottom:863.925000px;}
.y88{bottom:869.145000px;}
.y4e{bottom:876.525000px;}
.y12{bottom:881.025000px;}
.y107{bottom:883.343396px;}
.y106{bottom:883.343404px;}
.y105{bottom:883.343414px;}
.y104{bottom:883.343422px;}
.y103{bottom:883.343431px;}
.y102{bottom:883.343442px;}
.y4d{bottom:893.850000px;}
.y11{bottom:898.350000px;}
.y101{bottom:903.541228px;}
.y100{bottom:903.541236px;}
.yff{bottom:903.541246px;}
.yfe{bottom:903.541254px;}
.yfc{bottom:903.541263px;}
.yfa{bottom:903.541274px;}
.y4c{bottom:911.130000px;}
.y10{bottom:915.630000px;}
.yf9{bottom:923.739060px;}
.yf8{bottom:923.739068px;}
.yf7{bottom:923.739077px;}
.yf6{bottom:923.739086px;}
.yf4{bottom:923.739095px;}
.yf2{bottom:923.739106px;}
.yf{bottom:932.910000px;}
.y4b{bottom:943.170000px;}
.yf1{bottom:943.936892px;}
.yf0{bottom:943.936900px;}
.yef{bottom:943.936909px;}
.yee{bottom:943.936918px;}
.yec{bottom:943.936927px;}
.yea{bottom:943.936938px;}
.ye{bottom:950.190000px;}
.ye9{bottom:964.139212px;}
.ye8{bottom:964.139220px;}
.ye7{bottom:964.139230px;}
.ye6{bottom:964.139238px;}
.ye4{bottom:964.139247px;}
.ye2{bottom:964.139259px;}
.yd{bottom:967.470000px;}
.y47{bottom:978.450000px;}
.ye1{bottom:984.337044px;}
.ye0{bottom:984.337052px;}
.ydf{bottom:984.337062px;}
.yde{bottom:984.337070px;}
.ydc{bottom:984.337079px;}
.yda{bottom:984.337091px;}
.yc{bottom:984.570000px;}
.yb{bottom:1001.850000px;}
.yd9{bottom:1004.534876px;}
.yd8{bottom:1004.534884px;}
.yd7{bottom:1004.534894px;}
.yd5{bottom:1004.534902px;}
.yd4{bottom:1004.534911px;}
.yd3{bottom:1004.534923px;}
.ya{bottom:1019.130000px;}
.yd2{bottom:1024.732708px;}
.yd1{bottom:1024.732716px;}
.yd0{bottom:1024.732726px;}
.ycf{bottom:1024.732734px;}
.yce{bottom:1024.732743px;}
.ycc{bottom:1024.732755px;}
.y9{bottom:1036.410000px;}
.ycb{bottom:1044.930540px;}
.yca{bottom:1044.930548px;}
.yc9{bottom:1044.930558px;}
.yc7{bottom:1044.930566px;}
.yc5{bottom:1044.930575px;}
.yc3{bottom:1044.930586px;}
.ybb{bottom:1044.930597px;}
.y45{bottom:1048.110000px;}
.y8{bottom:1053.690000px;}
.yc1{bottom:1061.762067px;}
.ybf{bottom:1061.762084px;}
.ybd{bottom:1061.762113px;}
.yb9{bottom:1061.762123px;}
.y7{bottom:1070.790000px;}
.y6{bottom:1088.070000px;}
.y44{bottom:1100.670000px;}
.y5{bottom:1105.350000px;}
.y3e{bottom:1118.670000px;}
.y7c{bottom:1122.630000px;}
.y4{bottom:1139.910000px;}
.y3{bottom:1157.220000px;}
.y2{bottom:1174.320000px;}
.y1{bottom:1195.560000px;}
.h1b{height:16.270485px;}
.h19{height:16.270486px;}
.h1a{height:16.270487px;}
.h15{height:16.270501px;}
.h8{height:17.280000px;}
.h1d{height:19.636790px;}
.h16{height:19.636791px;}
.h1c{height:19.636793px;}
.h18{height:19.636798px;}
.h14{height:19.636806px;}
.h17{height:19.636810px;}
.hc{height:34.560000px;}
.he{height:35.332031px;}
.hd{height:38.158594px;}
.h13{height:46.106987px;}
.hf{height:48.410156px;}
.h7{height:51.677227px;}
.h6{height:51.696000px;}
.h9{height:51.840000px;}
.h12{height:52.861513px;}
.h10{height:52.998047px;}
.hb{height:53.573906px;}
.h1f{height:53.709961px;}
.h20{height:53.853187px;}
.h4{height:58.621992px;}
.h5{height:58.651172px;}
.h2{height:59.439023px;}
.h3{height:60.226875px;}
.ha{height:68.940000px;}
.h11{height:299.601255px;}
.h1e{height:401.580000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w13{width:61.894498px;}
.w11{width:63.625813px;}
.w10{width:67.954100px;}
.w12{width:70.551071px;}
.wc{width:76.610673px;}
.wf{width:88.297046px;}
.w6{width:106.236000px;}
.w4{width:111.276000px;}
.w3{width:124.200000px;}
.we{width:132.872627px;}
.w7{width:158.940000px;}
.w5{width:175.350000px;}
.wb{width:190.017552px;}
.wd{width:220.742615px;}
.wa{width:621.980560px;}
.w14{width:622.800000px;}
.w8{width:678.885000px;}
.w9{width:892.979973px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2a{left:1.298475px;}
.x1c{left:7.740000px;}
.xe{left:10.260000px;}
.x17{left:11.520000px;}
.x1a{left:14.040000px;}
.x36{left:15.466411px;}
.x35{left:17.578615px;}
.x15{left:19.080000px;}
.x3b{left:20.175587px;}
.x34{left:21.814565px;}
.x39{left:23.661300px;}
.x12{left:25.740000px;}
.x37{left:27.412482px;}
.x11{left:28.440000px;}
.x2c{left:30.009454px;}
.x3a{left:31.325253px;}
.x13{left:32.625000px;}
.x3c{left:33.922225px;}
.x38{left:35.722792px;}
.x3d{left:37.454107px;}
.x18{left:40.680000px;}
.x3e{left:42.174825px;}
.xf{left:49.494000px;}
.x50{left:52.200000px;}
.x1b{left:56.520000px;}
.x30{left:58.379930px;}
.x1d{left:61.920000px;}
.x1e{left:65.700000px;}
.x4f{left:77.730000px;}
.x4e{left:87.120000px;}
.x53{left:91.155000px;}
.x51{left:99.210000px;}
.x2e{left:101.974432px;}
.x1{left:106.415987px;}
.x54{left:109.905000px;}
.x24{left:110.915987px;}
.x55{left:115.920000px;}
.x2{left:131.255987px;}
.x42{left:134.820000px;}
.xa{left:136.115987px;}
.x52{left:157.890000px;}
.x10{left:232.050000px;}
.x4d{left:294.225000px;}
.x4c{left:306.645000px;}
.x56{left:310.110000px;}
.x2b{left:325.733199px;}
.x4b{left:332.025000px;}
.x14{left:344.055000px;}
.x23{left:352.154987px;}
.x3{left:377.174987px;}
.x1f{left:390.314973px;}
.x20{left:395.174987px;}
.x2d{left:402.776700px;}
.x49{left:408.990000px;}
.x21{left:410.294973px;}
.x22{left:415.154987px;}
.x4a{left:417.240000px;}
.xd{left:446.504987px;}
.x48{left:448.455000px;}
.xb{left:457.304987px;}
.x40{left:459.104987px;}
.x4{left:461.444987px;}
.x5{left:462.524987px;}
.x47{left:466.590000px;}
.x46{left:480.420000px;}
.xc{left:487.004987px;}
.x3f{left:490.244987px;}
.x31{left:491.500804px;}
.x45{left:493.485000px;}
.x44{left:505.950000px;}
.x41{left:517.244987px;}
.x43{left:518.790000px;}
.x16{left:520.125000px;}
.x8{left:537.944987px;}
.x32{left:559.887731px;}
.x6{left:590.504987px;}
.x2f{left:623.946372px;}
.x19{left:627.090000px;}
.x27{left:635.009973px;}
.x28{left:639.869987px;}
.x33{left:694.930272px;}
.x7{left:709.169987px;}
.x29{left:758.129987px;}
.x25{left:778.289973px;}
.x26{left:783.149987px;}
.x9{left:786.749987px;}
@media print{
.v1{vertical-align:-61.440000pt;}
.v0{vertical-align:0.000000pt;}
.lsf{letter-spacing:-1.574600pt;}
.lse{letter-spacing:-1.218187pt;}
.ls8{letter-spacing:-0.480000pt;}
.lsd{letter-spacing:-0.320000pt;}
.ls16{letter-spacing:-0.081067pt;}
.ls5{letter-spacing:-0.051840pt;}
.ls15{letter-spacing:-0.016000pt;}
.ls3{letter-spacing:0.000000pt;}
.ls7{letter-spacing:0.094933pt;}
.ls4{letter-spacing:0.160000pt;}
.ls6{letter-spacing:0.230933pt;}
.ls2{letter-spacing:0.320000pt;}
.lsa{letter-spacing:0.930929pt;}
.lsc{letter-spacing:1.063919pt;}
.lsb{letter-spacing:1.196909pt;}
.ls9{letter-spacing:3.191756pt;}
.ls12{letter-spacing:11.840000pt;}
.ls13{letter-spacing:12.480000pt;}
.ls14{letter-spacing:12.586667pt;}
.ls11{letter-spacing:101.370667pt;}
.ls10{letter-spacing:386.080000pt;}
.ls1{letter-spacing:1024.960000pt;}
.ls0{letter-spacing:1540.261547pt;}
.ws1{word-spacing:-13.600000pt;}
.ws4{word-spacing:-13.510933pt;}
.ws2{word-spacing:-13.280000pt;}
.ws5{word-spacing:-12.000000pt;}
.ws0{word-spacing:-11.953280pt;}
.ws7{word-spacing:-11.636611pt;}
.ws6{word-spacing:-10.439702pt;}
.ws8{word-spacing:-9.221516pt;}
.ws3{word-spacing:0.000000pt;}
.ws9{word-spacing:66.234667pt;}
._19{margin-left:-5.007360pt;}
._9{margin-left:-2.921600pt;}
._3{margin-left:-1.666133pt;}
._0{width:0.956160pt;}
._1{width:1.955200pt;}
._e{width:3.080960pt;}
._6{width:4.621440pt;}
._7{width:5.524480pt;}
._2{width:6.427520pt;}
._5{width:7.596160pt;}
._4{width:8.499200pt;}
._d{width:9.508480pt;}
._15{width:10.677120pt;}
._b{width:11.580160pt;}
._c{width:14.342400pt;}
._10{width:15.351680pt;}
._f{width:16.520320pt;}
._17{width:17.688960pt;}
._14{width:18.751360pt;}
._16{width:20.557440pt;}
._8{width:22.344107pt;}
._13{width:25.550720pt;}
._1b{width:29.428480pt;}
._a{width:31.128320pt;}
._18{width:44.461440pt;}
._20{width:52.746667pt;}
._1f{width:64.746667pt;}
._1a{width:154.985813pt;}
._1d{width:491.915468pt;}
._1c{width:520.247964pt;}
._1e{width:547.349696pt;}
._11{width:754.858667pt;}
._12{width:1539.600213pt;}
.fs2{font-size:32.000000pt;}
.fs1{font-size:34.560000pt;}
.fs5{font-size:41.758810pt;}
.fs4{font-size:47.876342pt;}
.fs3{font-size:48.000000pt;}
.fs6{font-size:48.128000pt;}
.fs0{font-size:53.120000pt;}
.y0{bottom:0.000000pt;}
.y11b{bottom:2.127841pt;}
.y117{bottom:2.127842pt;}
.y11f{bottom:2.127869pt;}
.y130{bottom:2.161089pt;}
.y111{bottom:2.161090pt;}
.y109{bottom:2.194337pt;}
.y10b{bottom:2.194338pt;}
.yfb{bottom:2.227585pt;}
.yfd{bottom:2.227586pt;}
.yf3{bottom:2.260833pt;}
.yf5{bottom:2.260834pt;}
.ye3{bottom:2.287431pt;}
.ye5{bottom:2.287432pt;}
.yeb{bottom:2.294080pt;}
.yed{bottom:2.294081pt;}
.ydb{bottom:2.327328pt;}
.ydd{bottom:2.327329pt;}
.yd6{bottom:2.353925pt;}
.ycd{bottom:2.353927pt;}
.yc8{bottom:2.393825pt;}
.yc4{bottom:2.393826pt;}
.yc6{bottom:2.393827pt;}
.ybe{bottom:2.420421pt;}
.yc2{bottom:2.420424pt;}
.yc0{bottom:2.420429pt;}
.y43{bottom:2.880000pt;}
.ybc{bottom:2.925798pt;}
.yba{bottom:2.952396pt;}
.y12e{bottom:4.621496pt;}
.y40{bottom:10.560000pt;}
.y15d{bottom:15.680000pt;}
.y42{bottom:18.240000pt;}
.y12d{bottom:22.608903pt;}
.y48{bottom:25.760000pt;}
.y3f{bottom:25.946667pt;}
.y4a{bottom:33.440000pt;}
.y41{bottom:33.466667pt;}
.y46{bottom:33.600000pt;}
.y12c{bottom:40.562532pt;}
.y152{bottom:42.240000pt;}
.y49{bottom:48.800000pt;}
.y12b{bottom:58.549408pt;}
.y151{bottom:71.226667pt;}
.y15c{bottom:71.520000pt;}
.y12a{bottom:76.536284pt;}
.y8b{bottom:78.080000pt;}
.y7b{bottom:89.120000pt;}
.y87{bottom:91.840000pt;}
.y129{bottom:94.489912pt;}
.y150{bottom:99.360000pt;}
.y15b{bottom:99.653333pt;}
.yb4{bottom:101.120000pt;}
.y146{bottom:103.200000pt;}
.y7a{bottom:104.480000pt;}
.y86{bottom:105.600000pt;}
.y8a{bottom:109.600000pt;}
.y128{bottom:112.476788pt;}
.yb3{bottom:116.480000pt;}
.y145{bottom:118.400000pt;}
.y85{bottom:119.520000pt;}
.y79{bottom:119.872000pt;}
.y84{bottom:123.552000pt;}
.y3d{bottom:123.872000pt;}
.y14f{bottom:127.453333pt;}
.y15a{bottom:127.520000pt;}
.y127{bottom:130.463664pt;}
.yb2{bottom:131.872000pt;}
.y83{bottom:133.312000pt;}
.y144{bottom:133.786667pt;}
.y78{bottom:135.226667pt;}
.y3c{bottom:139.226667pt;}
.y82{bottom:147.066667pt;}
.yb1{bottom:147.226667pt;}
.y126{bottom:148.414632pt;}
.y143{bottom:149.146667pt;}
.y77{bottom:150.586667pt;}
.y3b{bottom:154.586667pt;}
.y14e{bottom:155.586667pt;}
.y159{bottom:155.840000pt;}
.y81{bottom:160.826667pt;}
.yb0{bottom:162.426667pt;}
.y142{bottom:164.506667pt;}
.y80{bottom:164.826667pt;}
.y76{bottom:165.786667pt;}
.y125{bottom:166.408158pt;}
.y3a{bottom:169.786667pt;}
.y7f{bottom:174.906667pt;}
.yaf{bottom:177.786667pt;}
.y141{bottom:179.866667pt;}
.y75{bottom:181.146667pt;}
.y14d{bottom:183.680000pt;}
.y158{bottom:183.746667pt;}
.yb8{bottom:184.388384pt;}
.y39{bottom:185.146667pt;}
.yae{bottom:193.146667pt;}
.y140{bottom:195.226667pt;}
.y74{bottom:196.506667pt;}
.y38{bottom:200.506667pt;}
.yb7{bottom:202.342012pt;}
.y7e{bottom:205.146667pt;}
.yad{bottom:208.506667pt;}
.y13f{bottom:210.426667pt;}
.y14c{bottom:211.773333pt;}
.y73{bottom:211.866667pt;}
.y157{bottom:212.066667pt;}
.y37{bottom:215.866667pt;}
.yac{bottom:223.866667pt;}
.y13e{bottom:225.786667pt;}
.y72{bottom:227.226667pt;}
.y36{bottom:231.226667pt;}
.yab{bottom:239.226667pt;}
.y14b{bottom:239.906667pt;}
.y156{bottom:239.933333pt;}
.y13d{bottom:241.146667pt;}
.y71{bottom:242.586667pt;}
.y35{bottom:246.586667pt;}
.y89{bottom:251.226667pt;}
.yb6{bottom:253.277121pt;}
.yaa{bottom:254.426667pt;}
.y13c{bottom:256.506667pt;}
.y70{bottom:257.786667pt;}
.y34{bottom:261.786667pt;}
.y14a{bottom:268.000000pt;}
.y155{bottom:268.066667pt;}
.ya9{bottom:269.786667pt;}
.y13b{bottom:271.866667pt;}
.y6f{bottom:273.146667pt;}
.y33{bottom:277.146667pt;}
.ya8{bottom:285.146667pt;}
.y13a{bottom:287.066667pt;}
.y6e{bottom:288.506667pt;}
.y32{bottom:292.506667pt;}
.y149{bottom:296.093333pt;}
.y154{bottom:296.160000pt;}
.ya7{bottom:300.506667pt;}
.y139{bottom:302.426667pt;}
.y6d{bottom:303.866667pt;}
.y31{bottom:307.866667pt;}
.ya6{bottom:315.866667pt;}
.y138{bottom:317.786667pt;}
.y6c{bottom:319.226667pt;}
.y30{bottom:323.226667pt;}
.y148{bottom:324.226667pt;}
.y153{bottom:324.253333pt;}
.ya5{bottom:331.066667pt;}
.y137{bottom:333.146667pt;}
.y6b{bottom:334.426667pt;}
.y2f{bottom:338.426667pt;}
.ya4{bottom:346.466667pt;}
.y136{bottom:348.546667pt;}
.y6a{bottom:349.826667pt;}
.y2e{bottom:353.826667pt;}
.ya3{bottom:361.826667pt;}
.y135{bottom:363.906667pt;}
.y69{bottom:365.186667pt;}
.y2d{bottom:369.186667pt;}
.ya2{bottom:377.186667pt;}
.y134{bottom:379.106667pt;}
.y68{bottom:380.546667pt;}
.y2c{bottom:384.546667pt;}
.ya1{bottom:392.546667pt;}
.y133{bottom:394.466667pt;}
.y67{bottom:395.906667pt;}
.y2b{bottom:399.906667pt;}
.ya0{bottom:407.906667pt;}
.y132{bottom:409.826667pt;}
.y66{bottom:411.266667pt;}
.y2a{bottom:415.266667pt;}
.y7d{bottom:419.906667pt;}
.y131{bottom:422.306667pt;}
.y9f{bottom:423.106667pt;}
.y147{bottom:423.360000pt;}
.y65{bottom:426.466667pt;}
.y29{bottom:430.466667pt;}
.y9e{bottom:438.466667pt;}
.y64{bottom:441.826667pt;}
.y28{bottom:445.826667pt;}
.y9d{bottom:453.826667pt;}
.y63{bottom:457.186667pt;}
.y27{bottom:461.186667pt;}
.y9c{bottom:469.186667pt;}
.y62{bottom:472.546667pt;}
.y26{bottom:476.546667pt;}
.y9b{bottom:484.546667pt;}
.y61{bottom:487.906667pt;}
.y25{bottom:491.906667pt;}
.y9a{bottom:499.906667pt;}
.y60{bottom:503.266667pt;}
.y24{bottom:507.266667pt;}
.y99{bottom:515.106667pt;}
.y5f{bottom:518.466667pt;}
.y23{bottom:522.466667pt;}
.y98{bottom:530.466667pt;}
.y5e{bottom:533.826667pt;}
.y22{bottom:537.826667pt;}
.y97{bottom:545.826667pt;}
.y5d{bottom:549.186667pt;}
.y21{bottom:553.186667pt;}
.y96{bottom:561.186667pt;}
.y5c{bottom:564.546667pt;}
.y20{bottom:568.546667pt;}
.y95{bottom:576.573333pt;}
.y5b{bottom:579.933333pt;}
.y1f{bottom:583.933333pt;}
.y94{bottom:591.933333pt;}
.y5a{bottom:595.133333pt;}
.y1e{bottom:599.133333pt;}
.y93{bottom:607.133333pt;}
.y59{bottom:610.493333pt;}
.y1d{bottom:614.493333pt;}
.y92{bottom:622.493333pt;}
.y58{bottom:625.853333pt;}
.y1c{bottom:629.853333pt;}
.y91{bottom:637.853333pt;}
.y57{bottom:641.213333pt;}
.y1b{bottom:645.213333pt;}
.y90{bottom:653.213333pt;}
.y56{bottom:656.573333pt;}
.y1a{bottom:660.573333pt;}
.y8f{bottom:668.573333pt;}
.y55{bottom:671.933333pt;}
.y19{bottom:675.933333pt;}
.y8e{bottom:683.773333pt;}
.y54{bottom:687.133333pt;}
.y18{bottom:691.133333pt;}
.y8d{bottom:699.133333pt;}
.y53{bottom:702.493333pt;}
.y17{bottom:706.493333pt;}
.y8c{bottom:711.613333pt;}
.yb5{bottom:712.880346pt;}
.y124{bottom:713.379058pt;}
.y123{bottom:713.379065pt;}
.y122{bottom:713.379073pt;}
.y121{bottom:713.379081pt;}
.y120{bottom:713.379089pt;}
.y11e{bottom:713.379099pt;}
.y52{bottom:717.853333pt;}
.y16{bottom:721.853333pt;}
.y11d{bottom:731.333245pt;}
.y11c{bottom:731.333252pt;}
.y11a{bottom:731.333260pt;}
.y119{bottom:731.333268pt;}
.y118{bottom:731.333276pt;}
.y116{bottom:731.333286pt;}
.y51{bottom:733.213333pt;}
.y15{bottom:737.213333pt;}
.y50{bottom:748.573333pt;}
.y12f{bottom:749.286873pt;}
.y115{bottom:749.286880pt;}
.y114{bottom:749.286889pt;}
.y113{bottom:749.286896pt;}
.y112{bottom:749.286904pt;}
.y110{bottom:749.286914pt;}
.y14{bottom:752.573333pt;}
.y4f{bottom:763.933333pt;}
.y10f{bottom:767.240501pt;}
.y10e{bottom:767.240509pt;}
.y10d{bottom:767.240517pt;}
.y10c{bottom:767.240524pt;}
.y10a{bottom:767.240532pt;}
.y108{bottom:767.240543pt;}
.y13{bottom:767.933333pt;}
.y88{bottom:772.573333pt;}
.y4e{bottom:779.133333pt;}
.y12{bottom:783.133333pt;}
.y107{bottom:785.194130pt;}
.y106{bottom:785.194137pt;}
.y105{bottom:785.194145pt;}
.y104{bottom:785.194153pt;}
.y103{bottom:785.194161pt;}
.y102{bottom:785.194171pt;}
.y4d{bottom:794.533333pt;}
.y11{bottom:798.533333pt;}
.y101{bottom:803.147758pt;}
.y100{bottom:803.147766pt;}
.yff{bottom:803.147774pt;}
.yfe{bottom:803.147781pt;}
.yfc{bottom:803.147789pt;}
.yfa{bottom:803.147799pt;}
.y4c{bottom:809.893333pt;}
.y10{bottom:813.893333pt;}
.yf9{bottom:821.101387pt;}
.yf8{bottom:821.101394pt;}
.yf7{bottom:821.101402pt;}
.yf6{bottom:821.101410pt;}
.yf4{bottom:821.101418pt;}
.yf2{bottom:821.101428pt;}
.yf{bottom:829.253333pt;}
.y4b{bottom:838.373333pt;}
.yf1{bottom:839.055015pt;}
.yf0{bottom:839.055022pt;}
.yef{bottom:839.055031pt;}
.yee{bottom:839.055038pt;}
.yec{bottom:839.055046pt;}
.yea{bottom:839.055056pt;}
.ye{bottom:844.613333pt;}
.ye9{bottom:857.012633pt;}
.ye8{bottom:857.012640pt;}
.ye7{bottom:857.012649pt;}
.ye6{bottom:857.012656pt;}
.ye4{bottom:857.012664pt;}
.ye2{bottom:857.012674pt;}
.yd{bottom:859.973333pt;}
.y47{bottom:869.733333pt;}
.ye1{bottom:874.966262pt;}
.ye0{bottom:874.966269pt;}
.ydf{bottom:874.966277pt;}
.yde{bottom:874.966285pt;}
.ydc{bottom:874.966292pt;}
.yda{bottom:874.966303pt;}
.yc{bottom:875.173333pt;}
.yb{bottom:890.533333pt;}
.yd9{bottom:892.919890pt;}
.yd8{bottom:892.919897pt;}
.yd7{bottom:892.919905pt;}
.yd5{bottom:892.919913pt;}
.yd4{bottom:892.919921pt;}
.yd3{bottom:892.919931pt;}
.ya{bottom:905.893333pt;}
.yd2{bottom:910.873518pt;}
.yd1{bottom:910.873526pt;}
.yd0{bottom:910.873534pt;}
.ycf{bottom:910.873541pt;}
.yce{bottom:910.873549pt;}
.ycc{bottom:910.873560pt;}
.y9{bottom:921.253333pt;}
.ycb{bottom:928.827147pt;}
.yca{bottom:928.827154pt;}
.yc9{bottom:928.827162pt;}
.yc7{bottom:928.827170pt;}
.yc5{bottom:928.827178pt;}
.yc3{bottom:928.827188pt;}
.ybb{bottom:928.827197pt;}
.y45{bottom:931.653333pt;}
.y8{bottom:936.613333pt;}
.yc1{bottom:943.788504pt;}
.ybf{bottom:943.788519pt;}
.ybd{bottom:943.788545pt;}
.yb9{bottom:943.788554pt;}
.y7{bottom:951.813333pt;}
.y6{bottom:967.173333pt;}
.y44{bottom:978.373333pt;}
.y5{bottom:982.533333pt;}
.y3e{bottom:994.373333pt;}
.y7c{bottom:997.893333pt;}
.y4{bottom:1013.253333pt;}
.y3{bottom:1028.640000pt;}
.y2{bottom:1043.840000pt;}
.y1{bottom:1062.720000pt;}
.h1b{height:14.462653pt;}
.h19{height:14.462654pt;}
.h1a{height:14.462655pt;}
.h15{height:14.462667pt;}
.h8{height:15.360000pt;}
.h1d{height:17.454924pt;}
.h16{height:17.454925pt;}
.h1c{height:17.454927pt;}
.h18{height:17.454932pt;}
.h14{height:17.454939pt;}
.h17{height:17.454942pt;}
.hc{height:30.720000pt;}
.he{height:31.406250pt;}
.hd{height:33.918750pt;}
.h13{height:40.983988pt;}
.hf{height:43.031250pt;}
.h7{height:45.935313pt;}
.h6{height:45.952000pt;}
.h9{height:46.080000pt;}
.h12{height:46.988012pt;}
.h10{height:47.109375pt;}
.hb{height:47.621250pt;}
.h1f{height:47.742188pt;}
.h20{height:47.869500pt;}
.h4{height:52.108438pt;}
.h5{height:52.134375pt;}
.h2{height:52.834688pt;}
.h3{height:53.535000pt;}
.ha{height:61.280000pt;}
.h11{height:266.312227pt;}
.h1e{height:356.960000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w13{width:55.017332pt;}
.w11{width:56.556278pt;}
.w10{width:60.403644pt;}
.w12{width:62.712064pt;}
.wc{width:68.098376pt;}
.wf{width:78.486263pt;}
.w6{width:94.432000pt;}
.w4{width:98.912000pt;}
.w3{width:110.400000pt;}
.we{width:118.109002pt;}
.w7{width:141.280000pt;}
.w5{width:155.866667pt;}
.wb{width:168.904490pt;}
.wd{width:196.215658pt;}
.wa{width:552.871609pt;}
.w14{width:553.600000pt;}
.w8{width:603.453333pt;}
.w9{width:793.759976pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2a{left:1.154200pt;}
.x1c{left:6.880000pt;}
.xe{left:9.120000pt;}
.x17{left:10.240000pt;}
.x1a{left:12.480000pt;}
.x36{left:13.747921pt;}
.x35{left:15.625436pt;}
.x15{left:16.960000pt;}
.x3b{left:17.933855pt;}
.x34{left:19.390724pt;}
.x39{left:21.032267pt;}
.x12{left:22.880000pt;}
.x37{left:24.366651pt;}
.x11{left:25.280000pt;}
.x2c{left:26.675070pt;}
.x3a{left:27.844669pt;}
.x13{left:29.000000pt;}
.x3c{left:30.153089pt;}
.x38{left:31.753593pt;}
.x3d{left:33.292539pt;}
.x18{left:36.160000pt;}
.x3e{left:37.488733pt;}
.xf{left:43.994667pt;}
.x50{left:46.400000pt;}
.x1b{left:50.240000pt;}
.x30{left:51.893271pt;}
.x1d{left:55.040000pt;}
.x1e{left:58.400000pt;}
.x4f{left:69.093333pt;}
.x4e{left:77.440000pt;}
.x53{left:81.026667pt;}
.x51{left:88.186667pt;}
.x2e{left:90.643939pt;}
.x1{left:94.591988pt;}
.x54{left:97.693333pt;}
.x24{left:98.591988pt;}
.x55{left:103.040000pt;}
.x2{left:116.671988pt;}
.x42{left:119.840000pt;}
.xa{left:120.991988pt;}
.x52{left:140.346667pt;}
.x10{left:206.266667pt;}
.x4d{left:261.533333pt;}
.x4c{left:272.573333pt;}
.x56{left:275.653333pt;}
.x2b{left:289.540621pt;}
.x4b{left:295.133333pt;}
.x14{left:305.826667pt;}
.x23{left:313.026655pt;}
.x3{left:335.266655pt;}
.x1f{left:346.946643pt;}
.x20{left:351.266655pt;}
.x2d{left:358.023733pt;}
.x49{left:363.546667pt;}
.x21{left:364.706643pt;}
.x22{left:369.026655pt;}
.x4a{left:370.880000pt;}
.xd{left:396.893322pt;}
.x48{left:398.626667pt;}
.xb{left:406.493322pt;}
.x40{left:408.093322pt;}
.x4{left:410.173322pt;}
.x5{left:411.133322pt;}
.x47{left:414.746667pt;}
.x46{left:427.040000pt;}
.xc{left:432.893322pt;}
.x3f{left:435.773322pt;}
.x31{left:436.889603pt;}
.x45{left:438.653333pt;}
.x44{left:449.733333pt;}
.x41{left:459.773322pt;}
.x43{left:461.146667pt;}
.x16{left:462.333333pt;}
.x8{left:478.173322pt;}
.x32{left:497.677983pt;}
.x6{left:524.893322pt;}
.x2f{left:554.618997pt;}
.x19{left:557.413333pt;}
.x27{left:564.453310pt;}
.x28{left:568.773322pt;}
.x33{left:617.715797pt;}
.x7{left:630.373322pt;}
.x29{left:673.893322pt;}
.x25{left:691.813310pt;}
.x26{left:696.133322pt;}
.x9{left:699.333322pt;}
}




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