
    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_e81d1ad5b4612357eaa2f3a6.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_f2a99f16ca3237c079377e26.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.000977;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_dd6b83826266cc7a20392b79.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.914062;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_f5442a6002e7d30f00bec002.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.921387;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_41b9e692f8a69c3861e72853.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.914062;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_57c659558db0ccd4f2e7e099.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_7409f332182c8fd426bed82c.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.040039;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_ffb678a262ff31baa8ca4c79.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.040039;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_d5c60ae6612a1f08d511e61d.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.966309;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_6193fc93719873dbca485474.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;}
@font-face{font-family:ffb;src:url('chunks/assets/font_295ddd5804f4d635870b6000.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.758789;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-20.880000px;}
.v4{vertical-align:-4.620000px;}
.v3{vertical-align:-2.880000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:20.880000px;}
.ls6{letter-spacing:-1.008000px;}
.lsc{letter-spacing:-0.540000px;}
.ls9{letter-spacing:-0.226200px;}
.lsb{letter-spacing:-0.108000px;}
.lsf{letter-spacing:-0.106800px;}
.ls7{letter-spacing:-0.089400px;}
.lsa{letter-spacing:-0.072000px;}
.ls10{letter-spacing:-0.018000px;}
.ls5{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.072000px;}
.lse{letter-spacing:0.120000px;}
.ls4{letter-spacing:0.149760px;}
.ls1{letter-spacing:0.180000px;}
.ls11{letter-spacing:0.214560px;}
.ls0{letter-spacing:0.360000px;}
.ls8{letter-spacing:0.720000px;}
.ls2{letter-spacing:16.014240px;}
.ls13{letter-spacing:16.506720px;}
.ls12{letter-spacing:43.866720px;}
.lsd{letter-spacing:46.026720px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0{word-spacing:-16.560000px;}
.ws1{word-spacing:-15.300000px;}
.ws3{word-spacing:-14.940000px;}
.wsa{word-spacing:-14.833200px;}
.ws8{word-spacing:-13.392000px;}
.ws4{word-spacing:-11.160000px;}
.ws6{word-spacing:-10.440000px;}
.ws5{word-spacing:-10.213800px;}
.ws2{word-spacing:-9.720000px;}
.ws7{word-spacing:-8.928000px;}
.ws9{word-spacing:0.000000px;}
.wsc{word-spacing:81.168000px;}
.ws10{word-spacing:87.522000px;}
.wse{word-spacing:350.082000px;}
.wsd{word-spacing:350.262000px;}
.wsf{word-spacing:363.942000px;}
.wsb{word-spacing:701.562000px;}
._0{margin-left:-1.093680px;}
._1{width:1.015920px;}
._2{width:2.100720px;}
._9{width:3.672000px;}
._b{width:5.561280px;}
._c{width:6.588000px;}
._4{width:7.776720px;}
._3{width:9.072000px;}
._f{width:10.077840px;}
._e{width:11.095920px;}
._7{width:12.473040px;}
._10{width:13.719840px;}
._6{width:15.457680px;}
._5{width:16.848000px;}
._d{width:17.887680px;}
._a{width:19.008000px;}
._8{width:20.898000px;}
._15{width:22.290480px;}
._12{width:25.876080px;}
._11{width:27.609120px;}
._14{width:32.736000px;}
._13{width:33.907680px;}
._17{width:35.258400px;}
._16{width:36.573120px;}
._18{width:160.794000px;}
._19{width:202.440000px;}
._1a{width:264.792000px;}
.fc4{color:rgb(17,24,39);}
.fc2{color:rgb(0,0,255);}
.fc3{color:rgb(0,176,240);}
.fc1{color:rgb(0,112,192);}
.fc7{color:rgb(127,127,127);}
.fc6{color:rgb(89,89,89);}
.fc5{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:5.760000px;}
.fs6{font-size:30.240000px;}
.fsa{font-size:36.000000px;}
.fs5{font-size:38.880000px;}
.fs8{font-size:41.760000px;}
.fsb{font-size:48.240000px;}
.fs9{font-size:54.000000px;}
.fs3{font-size:56.880000px;}
.fs2{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs4{font-size:84.240000px;}
.fs1{font-size:156.240000px;}
.y0{bottom:0.000000px;}
.y4f{bottom:2.160000px;}
.y44{bottom:3.240000px;}
.y5{bottom:3.780000px;}
.y5c{bottom:5.010000px;}
.y2{bottom:9.900000px;}
.y4e{bottom:10.260000px;}
.yf1{bottom:17.610000px;}
.y11b{bottom:17.790000px;}
.y5a{bottom:20.160000px;}
.y43{bottom:20.340000px;}
.y4{bottom:22.710000px;}
.y59{bottom:36.900000px;}
.y42{bottom:37.620000px;}
.y4d{bottom:39.960000px;}
.yef{bottom:47.520000px;}
.y119{bottom:47.700000px;}
.y3{bottom:47.910000px;}
.y4c{bottom:51.120000px;}
.y58{bottom:53.640000px;}
.y41{bottom:54.900000px;}
.y7{bottom:57.060000px;}
.y4b{bottom:62.820000px;}
.ye9{bottom:65.085000px;}
.y112{bottom:65.235000px;}
.y57{bottom:71.460000px;}
.y40{bottom:72.180000px;}
.y4a{bottom:75.960000px;}
.y111{bottom:80.925000px;}
.y56{bottom:86.940000px;}
.y110{bottom:87.045000px;}
.y49{bottom:88.920000px;}
.y3f{bottom:89.460000px;}
.y14f{bottom:90.000000px;}
.yea{bottom:90.330000px;}
.y113{bottom:90.465000px;}
.y45{bottom:94.860000px;}
.ydf{bottom:96.300000px;}
.ya7{bottom:99.360000px;}
.y55{bottom:99.900000px;}
.y3e{bottom:106.560000px;}
.y10f{bottom:107.250000px;}
.y14e{bottom:107.280000px;}
.y48{bottom:110.910000px;}
.yde{bottom:113.580000px;}
.yeb{bottom:115.530000px;}
.y114{bottom:115.665000px;}
.ya6{bottom:117.360000px;}
.y54{bottom:122.070000px;}
.y3d{bottom:123.840000px;}
.y14d{bottom:124.560000px;}
.ydd{bottom:130.860000px;}
.ya5{bottom:135.360000px;}
.y53{bottom:137.550000px;}
.yec{bottom:140.760000px;}
.y115{bottom:140.910000px;}
.y3c{bottom:141.165000px;}
.y14c{bottom:141.840000px;}
.ydc{bottom:148.140000px;}
.y10e{bottom:152.610000px;}
.y52{bottom:153.030000px;}
.ya4{bottom:153.360000px;}
.y3b{bottom:158.445000px;}
.y14b{bottom:159.120000px;}
.yed{bottom:165.990000px;}
.y116{bottom:166.110000px;}
.y51{bottom:168.690000px;}
.ye7{bottom:169.740000px;}
.ya3{bottom:171.360000px;}
.y47{bottom:173.010000px;}
.y3a{bottom:175.725000px;}
.y14a{bottom:176.760000px;}
.y46{bottom:183.450000px;}
.y50{bottom:184.170000px;}
.ye6{bottom:187.020000px;}
.ya2{bottom:189.360000px;}
.y91{bottom:190.980000px;}
.yee{bottom:191.235000px;}
.y117{bottom:191.340000px;}
.y39{bottom:193.005000px;}
.y149{bottom:194.040000px;}
.ye5{bottom:204.330000px;}
.ya1{bottom:207.390000px;}
.y90{bottom:208.290000px;}
.y38{bottom:210.105000px;}
.y148{bottom:211.350000px;}
.y24{bottom:214.065000px;}
.y118{bottom:216.540000px;}
.yf0{bottom:217.470000px;}
.ye4{bottom:221.610000px;}
.y10d{bottom:223.230000px;}
.ya0{bottom:225.390000px;}
.y8f{bottom:225.930000px;}
.y37{bottom:227.925000px;}
.y147{bottom:228.450000px;}
.y23{bottom:238.185000px;}
.ye3{bottom:238.710000px;}
.y11a{bottom:239.790000px;}
.y8e{bottom:243.210000px;}
.y9f{bottom:243.390000px;}
.y36{bottom:245.205000px;}
.y146{bottom:245.730000px;}
.y8d{bottom:260.490000px;}
.y35{bottom:260.865000px;}
.y22{bottom:262.305000px;}
.y145{bottom:263.010000px;}
.y9e{bottom:264.630000px;}
.y34{bottom:276.345000px;}
.y8c{bottom:277.770000px;}
.y144{bottom:280.290000px;}
.y9d{bottom:281.910000px;}
.y21{bottom:286.605000px;}
.yc4{bottom:288.930000px;}
.y33{bottom:291.825000px;}
.y8b{bottom:295.050000px;}
.y15e{bottom:295.410000px;}
.y143{bottom:297.570000px;}
.y9c{bottom:299.190000px;}
.yc3{bottom:306.210000px;}
.y32{bottom:307.305000px;}
.y16{bottom:308.550000px;}
.y20{bottom:310.725000px;}
.y8a{bottom:312.150000px;}
.y15d{bottom:312.690000px;}
.y142{bottom:314.670000px;}
.y9b{bottom:316.470000px;}
.y31{bottom:322.965000px;}
.yc2{bottom:323.490000px;}
.y89{bottom:329.430000px;}
.y15c{bottom:329.970000px;}
.y141{bottom:331.950000px;}
.y9a{bottom:333.750000px;}
.y1f{bottom:334.845000px;}
.y30{bottom:338.445000px;}
.y124{bottom:339.150000px;}
.yc1{bottom:340.770000px;}
.y88{bottom:346.710000px;}
.y15b{bottom:347.250000px;}
.y140{bottom:349.590000px;}
.y99{bottom:350.850000px;}
.y2f{bottom:353.925000px;}
.y123{bottom:356.250000px;}
.yc0{bottom:358.050000px;}
.y1e{bottom:358.965000px;}
.y87{bottom:363.990000px;}
.y15a{bottom:364.350000px;}
.y13f{bottom:366.870000px;}
.y98{bottom:368.130000px;}
.y2e{bottom:369.435000px;}
.y122{bottom:373.530000px;}
.yd0{bottom:374.790000px;}
.ybf{bottom:375.150000px;}
.y10b{bottom:375.330000px;}
.y86{bottom:381.270000px;}
.y159{bottom:381.630000px;}
.y1d{bottom:383.115000px;}
.y13e{bottom:384.150000px;}
.y2d{bottom:384.915000px;}
.y97{bottom:385.410000px;}
.ycf{bottom:392.070000px;}
.ybe{bottom:392.430000px;}
.y10a{bottom:392.610000px;}
.y85{bottom:398.550000px;}
.y158{bottom:398.910000px;}
.y2c{bottom:400.575000px;}
.y13d{bottom:401.430000px;}
.y1c{bottom:407.235000px;}
.yce{bottom:409.350000px;}
.ybd{bottom:409.710000px;}
.y109{bottom:409.890000px;}
.y84{bottom:415.650000px;}
.y2b{bottom:416.055000px;}
.y157{bottom:416.190000px;}
.y13c{bottom:418.710000px;}
.ycd{bottom:426.630000px;}
.ybc{bottom:426.990000px;}
.y108{bottom:427.170000px;}
.y1b{bottom:431.535000px;}
.ydb{bottom:432.570000px;}
.y83{bottom:432.930000px;}
.y156{bottom:433.470000px;}
.y13b{bottom:435.990000px;}
.ycc{bottom:443.955000px;}
.ybb{bottom:444.315000px;}
.y2a{bottom:447.015000px;}
.ye8{bottom:447.840000px;}
.yda{bottom:449.895000px;}
.y82{bottom:450.255000px;}
.y155{bottom:450.795000px;}
.y13a{bottom:453.315000px;}
.y1a{bottom:455.655000px;}
.ycb{bottom:461.055000px;}
.yba{bottom:461.595000px;}
.y29{bottom:462.675000px;}
.yd9{bottom:466.995000px;}
.y81{bottom:467.895000px;}
.y139{bottom:470.415000px;}
.y28{bottom:478.155000px;}
.yca{bottom:478.335000px;}
.yb9{bottom:478.695000px;}
.y107{bottom:478.875000px;}
.y19{bottom:479.775000px;}
.yd8{bottom:484.275000px;}
.y80{bottom:485.175000px;}
.y138{bottom:487.695000px;}
.y27{bottom:493.635000px;}
.yc9{bottom:495.615000px;}
.y106{bottom:496.155000px;}
.yd7{bottom:501.555000px;}
.y7f{bottom:502.455000px;}
.y18{bottom:503.895000px;}
.y137{bottom:505.335000px;}
.y26{bottom:509.115000px;}
.yc8{bottom:512.895000px;}
.y105{bottom:513.435000px;}
.yd6{bottom:518.835000px;}
.y7e{bottom:519.735000px;}
.y136{bottom:522.615000px;}
.y25{bottom:525.135000px;}
.y17{bottom:528.015000px;}
.y104{bottom:530.715000px;}
.yd5{bottom:536.115000px;}
.y7d{bottom:537.015000px;}
.y135{bottom:539.895000px;}
.y103{bottom:547.815000px;}
.yd4{bottom:553.395000px;}
.y7c{bottom:554.115000px;}
.ye2{bottom:554.295000px;}
.y134{bottom:557.175000px;}
.y102{bottom:565.095000px;}
.yd3{bottom:570.495000px;}
.y7b{bottom:571.395000px;}
.ye1{bottom:571.575000px;}
.y133{bottom:574.455000px;}
.y101{bottom:582.375000px;}
.yd2{bottom:587.775000px;}
.y7a{bottom:588.675000px;}
.ye0{bottom:588.855000px;}
.y132{bottom:591.735000px;}
.y100{bottom:599.655000px;}
.yd1{bottom:605.055000px;}
.y79{bottom:605.955000px;}
.y131{bottom:608.835000px;}
.yff{bottom:616.935000px;}
.y78{bottom:623.235000px;}
.y130{bottom:626.115000px;}
.yfe{bottom:634.035000px;}
.y96{bottom:640.335000px;}
.y77{bottom:640.515000px;}
.y12f{bottom:643.395000px;}
.yfd{bottom:651.315000px;}
.y76{bottom:657.615000px;}
.y12e{bottom:660.675000px;}
.yfc{bottom:668.595000px;}
.y75{bottom:674.925000px;}
.y121{bottom:675.465000px;}
.y12d{bottom:677.985000px;}
.yfb{bottom:685.905000px;}
.y95{bottom:692.025000px;}
.y74{bottom:692.205000px;}
.y120{bottom:692.745000px;}
.y12c{bottom:695.265000px;}
.yfa{bottom:703.185000px;}
.y94{bottom:709.305000px;}
.y73{bottom:709.485000px;}
.y11f{bottom:710.025000px;}
.y12b{bottom:712.905000px;}
.yf9{bottom:720.465000px;}
.y93{bottom:726.585000px;}
.y72{bottom:726.765000px;}
.y11e{bottom:727.125000px;}
.y12a{bottom:730.185000px;}
.yf8{bottom:737.565000px;}
.y92{bottom:743.865000px;}
.y71{bottom:744.045000px;}
.y11d{bottom:744.405000px;}
.y129{bottom:747.465000px;}
.yf7{bottom:754.845000px;}
.y70{bottom:761.145000px;}
.y11c{bottom:761.685000px;}
.y128{bottom:764.565000px;}
.yf6{bottom:772.125000px;}
.y6f{bottom:778.425000px;}
.y127{bottom:781.845000px;}
.yf5{bottom:789.405000px;}
.yc7{bottom:791.745000px;}
.y6e{bottom:795.705000px;}
.y126{bottom:799.125000px;}
.yb8{bottom:800.745000px;}
.yf4{bottom:806.685000px;}
.yc6{bottom:809.025000px;}
.y6d{bottom:812.985000px;}
.y125{bottom:813.165000px;}
.yb7{bottom:815.505000px;}
.yf3{bottom:823.965000px;}
.yc5{bottom:826.305000px;}
.y6c{bottom:830.265000px;}
.yb6{bottom:833.505000px;}
.yf2{bottom:837.825000px;}
.y10c{bottom:838.440000px;}
.y6b{bottom:847.545000px;}
.y15{bottom:848.805000px;}
.yb5{bottom:851.505000px;}
.y14{bottom:851.865000px;}
.y13{bottom:862.125000px;}
.y154{bottom:864.645000px;}
.y6a{bottom:865.185000px;}
.yb4{bottom:869.505000px;}
.y12{bottom:879.405000px;}
.y153{bottom:881.925000px;}
.y69{bottom:882.465000px;}
.yb3{bottom:887.325000px;}
.y11{bottom:896.685000px;}
.y152{bottom:899.205000px;}
.y68{bottom:899.565000px;}
.yb2{bottom:905.325000px;}
.y10{bottom:914.010000px;}
.y151{bottom:916.530000px;}
.y67{bottom:916.890000px;}
.yb1{bottom:923.370000px;}
.y150{bottom:933.810000px;}
.y66{bottom:934.170000px;}
.yf{bottom:936.330000px;}
.yb0{bottom:941.370000px;}
.ye{bottom:948.390000px;}
.y65{bottom:951.450000px;}
.yaf{bottom:959.370000px;}
.y64{bottom:968.730000px;}
.yd{bottom:970.890000px;}
.yae{bottom:977.370000px;}
.yc{bottom:982.950000px;}
.y63{bottom:986.010000px;}
.yad{bottom:995.370000px;}
.yb{bottom:1000.230000px;}
.y62{bottom:1003.110000px;}
.yac{bottom:1013.370000px;}
.ya{bottom:1019.130000px;}
.y61{bottom:1020.390000px;}
.yab{bottom:1031.370000px;}
.y60{bottom:1037.670000px;}
.y9{bottom:1043.250000px;}
.yaa{bottom:1049.370000px;}
.y5f{bottom:1054.950000px;}
.ya9{bottom:1067.370000px;}
.y8{bottom:1071.870000px;}
.y5e{bottom:1072.230000px;}
.y5b{bottom:1075.140000px;}
.ya8{bottom:1085.370000px;}
.y5d{bottom:1089.510000px;}
.y6{bottom:1107.870000px;}
.y1{bottom:1123.530000px;}
.hd{height:4.021875px;}
.h17{height:4.747500px;}
.h1d{height:17.100000px;}
.h1b{height:17.280000px;}
.h1c{height:17.316000px;}
.hc{height:21.114844px;}
.h15{height:25.136719px;}
.ha{height:27.147656px;}
.h18{height:27.720000px;}
.h10{height:29.158594px;}
.hf{height:29.464453px;}
.h16{height:38.100586px;}
.h11{height:38.997070px;}
.h7{height:40.132617px;}
.h6{height:41.726953px;}
.hb{height:42.164648px;}
.h20{height:43.156758px;}
.h1a{height:43.506914px;}
.h23{height:44.265586px;}
.h12{height:44.507812px;}
.h5{height:46.251562px;}
.h22{height:47.980898px;}
.h9{height:48.312422px;}
.h24{height:49.255313px;}
.h1f{height:53.709961px;}
.h8{height:59.436914px;}
.h13{height:59.439023px;}
.h19{height:64.002656px;}
.h3{height:65.884219px;}
.h2{height:84.996000px;}
.h4{height:117.180000px;}
.h14{height:212.790000px;}
.h1e{height:241.740000px;}
.h21{height:264.960000px;}
.he{height:537.735000px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.wb{width:81.180000px;}
.w9{width:81.540000px;}
.wc{width:86.256000px;}
.wa{width:86.796000px;}
.w2{width:104.076000px;}
.w5{width:132.696000px;}
.w7{width:162.900000px;}
.w8{width:299.415000px;}
.we{width:508.140000px;}
.wd{width:528.840000px;}
.w6{width:596.490000px;}
.w3{width:622.410000px;}
.w4{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x23{left:7.056000px;}
.x1d{left:8.100000px;}
.x2b{left:9.795000px;}
.x4{left:12.780000px;}
.x2a{left:16.665000px;}
.x6{left:18.720000px;}
.x1b{left:20.016000px;}
.x1a{left:29.556000px;}
.x34{left:34.200000px;}
.x14{left:43.776000px;}
.x20{left:47.736000px;}
.x15{left:50.796000px;}
.x13{left:54.936000px;}
.x21{left:57.096000px;}
.x1e{left:62.145000px;}
.x30{left:64.365000px;}
.x19{left:67.170000px;}
.x18{left:73.290000px;}
.x17{left:75.270000px;}
.x1{left:78.300000px;}
.x9{left:86.399987px;}
.x2{left:95.790000px;}
.x22{left:102.810000px;}
.x1f{left:106.770000px;}
.x24{left:113.435987px;}
.x16{left:124.590000px;}
.x2c{left:126.180000px;}
.x2d{left:134.850000px;}
.x5{left:141.345000px;}
.x31{left:178.305000px;}
.x3{left:182.370000px;}
.x35{left:189.825000px;}
.x2f{left:192.240000px;}
.x29{left:207.360000px;}
.x26{left:212.430000px;}
.x1c{left:219.090000px;}
.x32{left:292.215000px;}
.x25{left:331.274987px;}
.x33{left:409.575000px;}
.xb{left:486.644987px;}
.x27{left:512.205000px;}
.x12{left:561.344987px;}
.xd{left:572.144987px;}
.xf{left:589.784987px;}
.x28{left:594.105000px;}
.x11{left:612.284987px;}
.x10{left:655.529987px;}
.xe{left:682.889987px;}
.xc{left:697.469987px;}
.x2e{left:700.889987px;}
.x36{left:725.729987px;}
.x8{left:766.049987px;}
.x7{left:784.409987px;}
.xa{left:806.939987px;}
@media print{
.v2{vertical-align:-18.560000pt;}
.v4{vertical-align:-4.106667pt;}
.v3{vertical-align:-2.560000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:18.560000pt;}
.ls6{letter-spacing:-0.896000pt;}
.lsc{letter-spacing:-0.480000pt;}
.ls9{letter-spacing:-0.201067pt;}
.lsb{letter-spacing:-0.096000pt;}
.lsf{letter-spacing:-0.094933pt;}
.ls7{letter-spacing:-0.079467pt;}
.lsa{letter-spacing:-0.064000pt;}
.ls10{letter-spacing:-0.016000pt;}
.ls5{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.064000pt;}
.lse{letter-spacing:0.106667pt;}
.ls4{letter-spacing:0.133120pt;}
.ls1{letter-spacing:0.160000pt;}
.ls11{letter-spacing:0.190720pt;}
.ls0{letter-spacing:0.320000pt;}
.ls8{letter-spacing:0.640000pt;}
.ls2{letter-spacing:14.234880pt;}
.ls13{letter-spacing:14.672640pt;}
.ls12{letter-spacing:38.992640pt;}
.lsd{letter-spacing:40.912640pt;}
.ws0{word-spacing:-14.720000pt;}
.ws1{word-spacing:-13.600000pt;}
.ws3{word-spacing:-13.280000pt;}
.wsa{word-spacing:-13.185067pt;}
.ws8{word-spacing:-11.904000pt;}
.ws4{word-spacing:-9.920000pt;}
.ws6{word-spacing:-9.280000pt;}
.ws5{word-spacing:-9.078933pt;}
.ws2{word-spacing:-8.640000pt;}
.ws7{word-spacing:-7.936000pt;}
.ws9{word-spacing:0.000000pt;}
.wsc{word-spacing:72.149333pt;}
.ws10{word-spacing:77.797333pt;}
.wse{word-spacing:311.184000pt;}
.wsd{word-spacing:311.344000pt;}
.wsf{word-spacing:323.504000pt;}
.wsb{word-spacing:623.610667pt;}
._0{margin-left:-0.972160pt;}
._1{width:0.903040pt;}
._2{width:1.867307pt;}
._9{width:3.264000pt;}
._b{width:4.943360pt;}
._c{width:5.856000pt;}
._4{width:6.912640pt;}
._3{width:8.064000pt;}
._f{width:8.958080pt;}
._e{width:9.863040pt;}
._7{width:11.087147pt;}
._10{width:12.195413pt;}
._6{width:13.740160pt;}
._5{width:14.976000pt;}
._d{width:15.900160pt;}
._a{width:16.896000pt;}
._8{width:18.576000pt;}
._15{width:19.813760pt;}
._12{width:23.000960pt;}
._11{width:24.541440pt;}
._14{width:29.098667pt;}
._13{width:30.140160pt;}
._17{width:31.340800pt;}
._16{width:32.509440pt;}
._18{width:142.928000pt;}
._19{width:179.946667pt;}
._1a{width:235.370667pt;}
.fs7{font-size:5.120000pt;}
.fs6{font-size:26.880000pt;}
.fsa{font-size:32.000000pt;}
.fs5{font-size:34.560000pt;}
.fs8{font-size:37.120000pt;}
.fsb{font-size:42.880000pt;}
.fs9{font-size:48.000000pt;}
.fs3{font-size:50.560000pt;}
.fs2{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs4{font-size:74.880000pt;}
.fs1{font-size:138.880000pt;}
.y0{bottom:0.000000pt;}
.y4f{bottom:1.920000pt;}
.y44{bottom:2.880000pt;}
.y5{bottom:3.360000pt;}
.y5c{bottom:4.453333pt;}
.y2{bottom:8.800000pt;}
.y4e{bottom:9.120000pt;}
.yf1{bottom:15.653333pt;}
.y11b{bottom:15.813333pt;}
.y5a{bottom:17.920000pt;}
.y43{bottom:18.080000pt;}
.y4{bottom:20.186667pt;}
.y59{bottom:32.800000pt;}
.y42{bottom:33.440000pt;}
.y4d{bottom:35.520000pt;}
.yef{bottom:42.240000pt;}
.y119{bottom:42.400000pt;}
.y3{bottom:42.586667pt;}
.y4c{bottom:45.440000pt;}
.y58{bottom:47.680000pt;}
.y41{bottom:48.800000pt;}
.y7{bottom:50.720000pt;}
.y4b{bottom:55.840000pt;}
.ye9{bottom:57.853333pt;}
.y112{bottom:57.986667pt;}
.y57{bottom:63.520000pt;}
.y40{bottom:64.160000pt;}
.y4a{bottom:67.520000pt;}
.y111{bottom:71.933333pt;}
.y56{bottom:77.280000pt;}
.y110{bottom:77.373333pt;}
.y49{bottom:79.040000pt;}
.y3f{bottom:79.520000pt;}
.y14f{bottom:80.000000pt;}
.yea{bottom:80.293333pt;}
.y113{bottom:80.413333pt;}
.y45{bottom:84.320000pt;}
.ydf{bottom:85.600000pt;}
.ya7{bottom:88.320000pt;}
.y55{bottom:88.800000pt;}
.y3e{bottom:94.720000pt;}
.y10f{bottom:95.333333pt;}
.y14e{bottom:95.360000pt;}
.y48{bottom:98.586667pt;}
.yde{bottom:100.960000pt;}
.yeb{bottom:102.693333pt;}
.y114{bottom:102.813333pt;}
.ya6{bottom:104.320000pt;}
.y54{bottom:108.506667pt;}
.y3d{bottom:110.080000pt;}
.y14d{bottom:110.720000pt;}
.ydd{bottom:116.320000pt;}
.ya5{bottom:120.320000pt;}
.y53{bottom:122.266667pt;}
.yec{bottom:125.120000pt;}
.y115{bottom:125.253333pt;}
.y3c{bottom:125.480000pt;}
.y14c{bottom:126.080000pt;}
.ydc{bottom:131.680000pt;}
.y10e{bottom:135.653333pt;}
.y52{bottom:136.026667pt;}
.ya4{bottom:136.320000pt;}
.y3b{bottom:140.840000pt;}
.y14b{bottom:141.440000pt;}
.yed{bottom:147.546667pt;}
.y116{bottom:147.653333pt;}
.y51{bottom:149.946667pt;}
.ye7{bottom:150.880000pt;}
.ya3{bottom:152.320000pt;}
.y47{bottom:153.786667pt;}
.y3a{bottom:156.200000pt;}
.y14a{bottom:157.120000pt;}
.y46{bottom:163.066667pt;}
.y50{bottom:163.706667pt;}
.ye6{bottom:166.240000pt;}
.ya2{bottom:168.320000pt;}
.y91{bottom:169.760000pt;}
.yee{bottom:169.986667pt;}
.y117{bottom:170.080000pt;}
.y39{bottom:171.560000pt;}
.y149{bottom:172.480000pt;}
.ye5{bottom:181.626667pt;}
.ya1{bottom:184.346667pt;}
.y90{bottom:185.146667pt;}
.y38{bottom:186.760000pt;}
.y148{bottom:187.866667pt;}
.y24{bottom:190.280000pt;}
.y118{bottom:192.480000pt;}
.yf0{bottom:193.306667pt;}
.ye4{bottom:196.986667pt;}
.y10d{bottom:198.426667pt;}
.ya0{bottom:200.346667pt;}
.y8f{bottom:200.826667pt;}
.y37{bottom:202.600000pt;}
.y147{bottom:203.066667pt;}
.y23{bottom:211.720000pt;}
.ye3{bottom:212.186667pt;}
.y11a{bottom:213.146667pt;}
.y8e{bottom:216.186667pt;}
.y9f{bottom:216.346667pt;}
.y36{bottom:217.960000pt;}
.y146{bottom:218.426667pt;}
.y8d{bottom:231.546667pt;}
.y35{bottom:231.880000pt;}
.y22{bottom:233.160000pt;}
.y145{bottom:233.786667pt;}
.y9e{bottom:235.226667pt;}
.y34{bottom:245.640000pt;}
.y8c{bottom:246.906667pt;}
.y144{bottom:249.146667pt;}
.y9d{bottom:250.586667pt;}
.y21{bottom:254.760000pt;}
.yc4{bottom:256.826667pt;}
.y33{bottom:259.400000pt;}
.y8b{bottom:262.266667pt;}
.y15e{bottom:262.586667pt;}
.y143{bottom:264.506667pt;}
.y9c{bottom:265.946667pt;}
.yc3{bottom:272.186667pt;}
.y32{bottom:273.160000pt;}
.y16{bottom:274.266667pt;}
.y20{bottom:276.200000pt;}
.y8a{bottom:277.466667pt;}
.y15d{bottom:277.946667pt;}
.y142{bottom:279.706667pt;}
.y9b{bottom:281.306667pt;}
.y31{bottom:287.080000pt;}
.yc2{bottom:287.546667pt;}
.y89{bottom:292.826667pt;}
.y15c{bottom:293.306667pt;}
.y141{bottom:295.066667pt;}
.y9a{bottom:296.666667pt;}
.y1f{bottom:297.640000pt;}
.y30{bottom:300.840000pt;}
.y124{bottom:301.466667pt;}
.yc1{bottom:302.906667pt;}
.y88{bottom:308.186667pt;}
.y15b{bottom:308.666667pt;}
.y140{bottom:310.746667pt;}
.y99{bottom:311.866667pt;}
.y2f{bottom:314.600000pt;}
.y123{bottom:316.666667pt;}
.yc0{bottom:318.266667pt;}
.y1e{bottom:319.080000pt;}
.y87{bottom:323.546667pt;}
.y15a{bottom:323.866667pt;}
.y13f{bottom:326.106667pt;}
.y98{bottom:327.226667pt;}
.y2e{bottom:328.386667pt;}
.y122{bottom:332.026667pt;}
.yd0{bottom:333.146667pt;}
.ybf{bottom:333.466667pt;}
.y10b{bottom:333.626667pt;}
.y86{bottom:338.906667pt;}
.y159{bottom:339.226667pt;}
.y1d{bottom:340.546667pt;}
.y13e{bottom:341.466667pt;}
.y2d{bottom:342.146667pt;}
.y97{bottom:342.586667pt;}
.ycf{bottom:348.506667pt;}
.ybe{bottom:348.826667pt;}
.y10a{bottom:348.986667pt;}
.y85{bottom:354.266667pt;}
.y158{bottom:354.586667pt;}
.y2c{bottom:356.066667pt;}
.y13d{bottom:356.826667pt;}
.y1c{bottom:361.986667pt;}
.yce{bottom:363.866667pt;}
.ybd{bottom:364.186667pt;}
.y109{bottom:364.346667pt;}
.y84{bottom:369.466667pt;}
.y2b{bottom:369.826667pt;}
.y157{bottom:369.946667pt;}
.y13c{bottom:372.186667pt;}
.ycd{bottom:379.226667pt;}
.ybc{bottom:379.546667pt;}
.y108{bottom:379.706667pt;}
.y1b{bottom:383.586667pt;}
.ydb{bottom:384.506667pt;}
.y83{bottom:384.826667pt;}
.y156{bottom:385.306667pt;}
.y13b{bottom:387.546667pt;}
.ycc{bottom:394.626667pt;}
.ybb{bottom:394.946667pt;}
.y2a{bottom:397.346667pt;}
.ye8{bottom:398.080000pt;}
.yda{bottom:399.906667pt;}
.y82{bottom:400.226667pt;}
.y155{bottom:400.706667pt;}
.y13a{bottom:402.946667pt;}
.y1a{bottom:405.026667pt;}
.ycb{bottom:409.826667pt;}
.yba{bottom:410.306667pt;}
.y29{bottom:411.266667pt;}
.yd9{bottom:415.106667pt;}
.y81{bottom:415.906667pt;}
.y139{bottom:418.146667pt;}
.y28{bottom:425.026667pt;}
.yca{bottom:425.186667pt;}
.yb9{bottom:425.506667pt;}
.y107{bottom:425.666667pt;}
.y19{bottom:426.466667pt;}
.yd8{bottom:430.466667pt;}
.y80{bottom:431.266667pt;}
.y138{bottom:433.506667pt;}
.y27{bottom:438.786667pt;}
.yc9{bottom:440.546667pt;}
.y106{bottom:441.026667pt;}
.yd7{bottom:445.826667pt;}
.y7f{bottom:446.626667pt;}
.y18{bottom:447.906667pt;}
.y137{bottom:449.186667pt;}
.y26{bottom:452.546667pt;}
.yc8{bottom:455.906667pt;}
.y105{bottom:456.386667pt;}
.yd6{bottom:461.186667pt;}
.y7e{bottom:461.986667pt;}
.y136{bottom:464.546667pt;}
.y25{bottom:466.786667pt;}
.y17{bottom:469.346667pt;}
.y104{bottom:471.746667pt;}
.yd5{bottom:476.546667pt;}
.y7d{bottom:477.346667pt;}
.y135{bottom:479.906667pt;}
.y103{bottom:486.946667pt;}
.yd4{bottom:491.906667pt;}
.y7c{bottom:492.546667pt;}
.ye2{bottom:492.706667pt;}
.y134{bottom:495.266667pt;}
.y102{bottom:502.306667pt;}
.yd3{bottom:507.106667pt;}
.y7b{bottom:507.906667pt;}
.ye1{bottom:508.066667pt;}
.y133{bottom:510.626667pt;}
.y101{bottom:517.666667pt;}
.yd2{bottom:522.466667pt;}
.y7a{bottom:523.266667pt;}
.ye0{bottom:523.426667pt;}
.y132{bottom:525.986667pt;}
.y100{bottom:533.026667pt;}
.yd1{bottom:537.826667pt;}
.y79{bottom:538.626667pt;}
.y131{bottom:541.186667pt;}
.yff{bottom:548.386667pt;}
.y78{bottom:553.986667pt;}
.y130{bottom:556.546667pt;}
.yfe{bottom:563.586667pt;}
.y96{bottom:569.186667pt;}
.y77{bottom:569.346667pt;}
.y12f{bottom:571.906667pt;}
.yfd{bottom:578.946667pt;}
.y76{bottom:584.546667pt;}
.y12e{bottom:587.266667pt;}
.yfc{bottom:594.306667pt;}
.y75{bottom:599.933333pt;}
.y121{bottom:600.413333pt;}
.y12d{bottom:602.653333pt;}
.yfb{bottom:609.693333pt;}
.y95{bottom:615.133333pt;}
.y74{bottom:615.293333pt;}
.y120{bottom:615.773333pt;}
.y12c{bottom:618.013333pt;}
.yfa{bottom:625.053333pt;}
.y94{bottom:630.493333pt;}
.y73{bottom:630.653333pt;}
.y11f{bottom:631.133333pt;}
.y12b{bottom:633.693333pt;}
.yf9{bottom:640.413333pt;}
.y93{bottom:645.853333pt;}
.y72{bottom:646.013333pt;}
.y11e{bottom:646.333333pt;}
.y12a{bottom:649.053333pt;}
.yf8{bottom:655.613333pt;}
.y92{bottom:661.213333pt;}
.y71{bottom:661.373333pt;}
.y11d{bottom:661.693333pt;}
.y129{bottom:664.413333pt;}
.yf7{bottom:670.973333pt;}
.y70{bottom:676.573333pt;}
.y11c{bottom:677.053333pt;}
.y128{bottom:679.613333pt;}
.yf6{bottom:686.333333pt;}
.y6f{bottom:691.933333pt;}
.y127{bottom:694.973333pt;}
.yf5{bottom:701.693333pt;}
.yc7{bottom:703.773333pt;}
.y6e{bottom:707.293333pt;}
.y126{bottom:710.333333pt;}
.yb8{bottom:711.773333pt;}
.yf4{bottom:717.053333pt;}
.yc6{bottom:719.133333pt;}
.y6d{bottom:722.653333pt;}
.y125{bottom:722.813333pt;}
.yb7{bottom:724.893333pt;}
.yf3{bottom:732.413333pt;}
.yc5{bottom:734.493333pt;}
.y6c{bottom:738.013333pt;}
.yb6{bottom:740.893333pt;}
.yf2{bottom:744.733333pt;}
.y10c{bottom:745.280000pt;}
.y6b{bottom:753.373333pt;}
.y15{bottom:754.493333pt;}
.yb5{bottom:756.893333pt;}
.y14{bottom:757.213333pt;}
.y13{bottom:766.333333pt;}
.y154{bottom:768.573333pt;}
.y6a{bottom:769.053333pt;}
.yb4{bottom:772.893333pt;}
.y12{bottom:781.693333pt;}
.y153{bottom:783.933333pt;}
.y69{bottom:784.413333pt;}
.yb3{bottom:788.733333pt;}
.y11{bottom:797.053333pt;}
.y152{bottom:799.293333pt;}
.y68{bottom:799.613333pt;}
.yb2{bottom:804.733333pt;}
.y10{bottom:812.453333pt;}
.y151{bottom:814.693333pt;}
.y67{bottom:815.013333pt;}
.yb1{bottom:820.773333pt;}
.y150{bottom:830.053333pt;}
.y66{bottom:830.373333pt;}
.yf{bottom:832.293333pt;}
.yb0{bottom:836.773333pt;}
.ye{bottom:843.013333pt;}
.y65{bottom:845.733333pt;}
.yaf{bottom:852.773333pt;}
.y64{bottom:861.093333pt;}
.yd{bottom:863.013333pt;}
.yae{bottom:868.773333pt;}
.yc{bottom:873.733333pt;}
.y63{bottom:876.453333pt;}
.yad{bottom:884.773333pt;}
.yb{bottom:889.093333pt;}
.y62{bottom:891.653333pt;}
.yac{bottom:900.773333pt;}
.ya{bottom:905.893333pt;}
.y61{bottom:907.013333pt;}
.yab{bottom:916.773333pt;}
.y60{bottom:922.373333pt;}
.y9{bottom:927.333333pt;}
.yaa{bottom:932.773333pt;}
.y5f{bottom:937.733333pt;}
.ya9{bottom:948.773333pt;}
.y8{bottom:952.773333pt;}
.y5e{bottom:953.093333pt;}
.y5b{bottom:955.680000pt;}
.ya8{bottom:964.773333pt;}
.y5d{bottom:968.453333pt;}
.y6{bottom:984.773333pt;}
.y1{bottom:998.693333pt;}
.hd{height:3.575000pt;}
.h17{height:4.220000pt;}
.h1d{height:15.200000pt;}
.h1b{height:15.360000pt;}
.h1c{height:15.392000pt;}
.hc{height:18.768750pt;}
.h15{height:22.343750pt;}
.ha{height:24.131250pt;}
.h18{height:24.640000pt;}
.h10{height:25.918750pt;}
.hf{height:26.190625pt;}
.h16{height:33.867188pt;}
.h11{height:34.664062pt;}
.h7{height:35.673437pt;}
.h6{height:37.090625pt;}
.hb{height:37.479688pt;}
.h20{height:38.361562pt;}
.h1a{height:38.672812pt;}
.h23{height:39.347188pt;}
.h12{height:39.562500pt;}
.h5{height:41.112500pt;}
.h22{height:42.649687pt;}
.h9{height:42.944375pt;}
.h24{height:43.782500pt;}
.h1f{height:47.742188pt;}
.h8{height:52.832812pt;}
.h13{height:52.834688pt;}
.h19{height:56.891250pt;}
.h3{height:58.563750pt;}
.h2{height:75.552000pt;}
.h4{height:104.160000pt;}
.h14{height:189.146667pt;}
.h1e{height:214.880000pt;}
.h21{height:235.520000pt;}
.he{height:477.986667pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.wb{width:72.160000pt;}
.w9{width:72.480000pt;}
.wc{width:76.672000pt;}
.wa{width:77.152000pt;}
.w2{width:92.512000pt;}
.w5{width:117.952000pt;}
.w7{width:144.800000pt;}
.w8{width:266.146667pt;}
.we{width:451.680000pt;}
.wd{width:470.080000pt;}
.w6{width:530.213333pt;}
.w3{width:553.253333pt;}
.w4{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x23{left:6.272000pt;}
.x1d{left:7.200000pt;}
.x2b{left:8.706667pt;}
.x4{left:11.360000pt;}
.x2a{left:14.813333pt;}
.x6{left:16.640000pt;}
.x1b{left:17.792000pt;}
.x1a{left:26.272000pt;}
.x34{left:30.400000pt;}
.x14{left:38.912000pt;}
.x20{left:42.432000pt;}
.x15{left:45.152000pt;}
.x13{left:48.832000pt;}
.x21{left:50.752000pt;}
.x1e{left:55.240000pt;}
.x30{left:57.213333pt;}
.x19{left:59.706667pt;}
.x18{left:65.146667pt;}
.x17{left:66.906667pt;}
.x1{left:69.600000pt;}
.x9{left:76.799988pt;}
.x2{left:85.146667pt;}
.x22{left:91.386667pt;}
.x1f{left:94.906667pt;}
.x24{left:100.831988pt;}
.x16{left:110.746667pt;}
.x2c{left:112.160000pt;}
.x2d{left:119.866667pt;}
.x5{left:125.640000pt;}
.x31{left:158.493333pt;}
.x3{left:162.106667pt;}
.x35{left:168.733333pt;}
.x2f{left:170.880000pt;}
.x29{left:184.320000pt;}
.x26{left:188.826667pt;}
.x1c{left:194.746667pt;}
.x32{left:259.746667pt;}
.x25{left:294.466655pt;}
.x33{left:364.066667pt;}
.xb{left:432.573322pt;}
.x27{left:455.293333pt;}
.x12{left:498.973322pt;}
.xd{left:508.573322pt;}
.xf{left:524.253322pt;}
.x28{left:528.093333pt;}
.x11{left:544.253322pt;}
.x10{left:582.693322pt;}
.xe{left:607.013322pt;}
.xc{left:619.973322pt;}
.x2e{left:623.013322pt;}
.x36{left:645.093322pt;}
.x8{left:680.933322pt;}
.x7{left:697.253322pt;}
.xa{left:717.279988pt;}
}




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