
    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_12cfa3332e9683ebbdc018d6.woff')format("woff");}.ff1{font-family:ff1;line-height:0.961914;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_130301694ab792f9947e2b7d.woff')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_09a6ce756a2f49087e607e97.woff')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_53316644b487b2165a673b35.woff')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_4b495c96b2e66a346b75ab23.woff')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_9477cd8f4ecfc5435d9b0faa.woff')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_97a2d36a0ff9626f59258cff.woff')format("woff");}.ff7{font-family:ff7;line-height:0.986328;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_969826557900095a4d25905e.woff')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;}
@font-face{font-family:ff9;src:url('chunks/assets/font_aaf6653ddaa2f6acd3b2726d.woff')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_854c280bdf8d104300d6c857.woff')format("woff");}.ffa{font-family:ffa;line-height:0.853027;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:-23.760000px;}
.v1{vertical-align:-13.680000px;}
.v0{vertical-align:0.000000px;}
.lsb{letter-spacing:-1.080000px;}
.ls14{letter-spacing:-0.720000px;}
.ls13{letter-spacing:-0.612000px;}
.ls8{letter-spacing:-0.540000px;}
.lsa{letter-spacing:-0.360000px;}
.ls10{letter-spacing:-0.305400px;}
.ls9{letter-spacing:-0.288000px;}
.lse{letter-spacing:-0.053280px;}
.lsc{letter-spacing:-0.017280px;}
.ls7{letter-spacing:0.000000px;}
.lsd{letter-spacing:0.017280px;}
.ls2{letter-spacing:0.034560px;}
.ls12{letter-spacing:0.109200px;}
.ls6{letter-spacing:0.144720px;}
.ls4{letter-spacing:0.180000px;}
.lsf{letter-spacing:0.206400px;}
.ls1{letter-spacing:0.259920px;}
.ls11{letter-spacing:0.262080px;}
.ls17{letter-spacing:0.288000px;}
.ls0{letter-spacing:0.360000px;}
.ls3{letter-spacing:10.980000px;}
.ls18{letter-spacing:15.840000px;}
.ls16{letter-spacing:16.865280px;}
.ls15{letter-spacing:20.465280px;}
.ls5{letter-spacing:130.500000px;}
.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;}
}
.ws7{word-spacing:-19.457280px;}
.ws6{word-spacing:-19.440000px;}
.wsc{word-spacing:-16.669200px;}
.wse{word-spacing:-16.560000px;}
.wsa{word-spacing:-16.254600px;}
.wsd{word-spacing:-15.948000px;}
.ws2{word-spacing:-15.300000px;}
.ws8{word-spacing:-15.146400px;}
.ws5{word-spacing:-14.940000px;}
.ws3{word-spacing:-14.580000px;}
.wsf{word-spacing:-14.572800px;}
.ws4{word-spacing:-13.860000px;}
.ws1{word-spacing:-12.060000px;}
.ws0{word-spacing:-11.700000px;}
.ws9{word-spacing:-10.980000px;}
.wsb{word-spacing:0.000000px;}
._11{margin-left:-8.443680px;}
._14{margin-left:-7.315680px;}
._18{margin-left:-6.027840px;}
._13{margin-left:-4.888320px;}
._10{margin-left:-3.867840px;}
._4{margin-left:-2.440080px;}
._0{margin-left:-1.254240px;}
._3{width:1.028880px;}
._5{width:2.496960px;}
._6{width:3.514560px;}
._b{width:4.945680px;}
._7{width:6.872400px;}
._a{width:8.114400px;}
._e{width:9.727920px;}
._8{width:11.162160px;}
._d{width:12.524880px;}
._9{width:13.530480px;}
._12{width:15.229440px;}
._c{width:16.326720px;}
._17{width:17.834400px;}
._16{width:18.861120px;}
._15{width:20.269440px;}
._f{width:21.833760px;}
._1c{width:23.272080px;}
._1b{width:26.297280px;}
._1d{width:30.934080px;}
._1e{width:32.652000px;}
._1a{width:56.502720px;}
._19{width:199.440000px;}
._2{width:255.780000px;}
._1{width:1099.168800px;}
.fc3{color:rgb(79,129,189);}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fs5{font-size:41.760000px;}
.fs2{font-size:48.240000px;}
.fs3{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs4{font-size:77.760000px;}
.y0{bottom:0.000000px;}
.ya1{bottom:3.594000px;}
.y7b{bottom:3.600000px;}
.y7f{bottom:3.780000px;}
.y88{bottom:3.810000px;}
.yd5{bottom:3.816000px;}
.y2{bottom:6.660000px;}
.ya9{bottom:7.020000px;}
.yfb{bottom:10.440000px;}
.y4{bottom:56.340000px;}
.yd8{bottom:72.360000px;}
.y133{bottom:77.760000px;}
.y10e{bottom:79.200000px;}
.ya4{bottom:88.560000px;}
.y41{bottom:89.820000px;}
.y79{bottom:91.620000px;}
.yd7{bottom:92.880000px;}
.y132{bottom:96.660000px;}
.y10d{bottom:98.280000px;}
.ya3{bottom:108.180000px;}
.y40{bottom:108.720000px;}
.y78{bottom:110.520000px;}
.yd6{bottom:113.220000px;}
.y131{bottom:115.560000px;}
.y10c{bottom:117.180000px;}
.ya2{bottom:127.260000px;}
.y3f{bottom:127.800000px;}
.y77{bottom:129.420000px;}
.yd4{bottom:133.740000px;}
.y130{bottom:134.640000px;}
.y10b{bottom:136.116000px;}
.y3e{bottom:146.736000px;}
.ya0{bottom:147.816000px;}
.y76{bottom:148.536000px;}
.y12f{bottom:153.570000px;}
.yd3{bottom:154.290000px;}
.y10a{bottom:155.190000px;}
.y3d{bottom:165.810000px;}
.y75{bottom:167.430000px;}
.y9f{bottom:168.150000px;}
.y12e{bottom:172.650000px;}
.y109{bottom:174.090000px;}
.yd2{bottom:174.810000px;}
.y3c{bottom:184.710000px;}
.y74{bottom:186.510000px;}
.y9e{bottom:188.670000px;}
.y12d{bottom:191.550000px;}
.y108{bottom:193.170000px;}
.yd1{bottom:194.430000px;}
.y3b{bottom:203.610000px;}
.y73{bottom:205.410000px;}
.y9d{bottom:209.190000px;}
.y12c{bottom:210.450000px;}
.yd0{bottom:214.950000px;}
.y3a{bottom:221.430000px;}
.y72{bottom:224.310000px;}
.y107{bottom:228.810000px;}
.y12b{bottom:229.530000px;}
.y9c{bottom:229.710000px;}
.ycf{bottom:234.750000px;}
.y39{bottom:235.290000px;}
.y71{bottom:243.390000px;}
.y12a{bottom:248.430000px;}
.y106{bottom:248.610000px;}
.y38{bottom:249.870000px;}
.y9b{bottom:250.050000px;}
.yce{bottom:254.370000px;}
.y70{bottom:262.290000px;}
.y37{bottom:267.150000px;}
.y129{bottom:267.510000px;}
.y105{bottom:268.410000px;}
.y9a{bottom:270.570000px;}
.ycd{bottom:274.890000px;}
.y6f{bottom:281.370000px;}
.y36{bottom:284.250000px;}
.y128{bottom:286.410000px;}
.y104{bottom:288.030000px;}
.y99{bottom:291.090000px;}
.ycc{bottom:295.410000px;}
.y6e{bottom:300.270000px;}
.y35{bottom:301.530000px;}
.y127{bottom:303.150000px;}
.y103{bottom:307.830000px;}
.y98{bottom:311.610000px;}
.ycb{bottom:315.750000px;}
.y34{bottom:318.810000px;}
.y6d{bottom:319.170000px;}
.y126{bottom:322.230000px;}
.y102{bottom:327.450000px;}
.y97{bottom:331.950000px;}
.y33{bottom:336.090000px;}
.y6c{bottom:338.250000px;}
.yca{bottom:339.870000px;}
.y125{bottom:341.130000px;}
.y101{bottom:350.850000px;}
.y96{bottom:352.470000px;}
.y32{bottom:353.370000px;}
.y6b{bottom:357.150000px;}
.yc9{bottom:358.950000px;}
.y124{bottom:361.650000px;}
.y100{bottom:369.930000px;}
.y31{bottom:370.650000px;}
.y95{bottom:372.990000px;}
.y6a{bottom:376.230000px;}
.yc8{bottom:377.850000px;}
.y123{bottom:385.770000px;}
.y30{bottom:387.795000px;}
.yff{bottom:388.875000px;}
.y94{bottom:393.555000px;}
.y69{bottom:395.175000px;}
.yc7{bottom:396.975000px;}
.y122{bottom:404.715000px;}
.y2f{bottom:405.075000px;}
.yfe{bottom:407.775000px;}
.y93{bottom:413.895000px;}
.y68{bottom:414.255000px;}
.yc6{bottom:415.875000px;}
.y2e{bottom:422.355000px;}
.y121{bottom:423.795000px;}
.yfd{bottom:423.975000px;}
.y67{bottom:433.155000px;}
.y92{bottom:434.415000px;}
.yc5{bottom:434.775000px;}
.y2d{bottom:439.635000px;}
.y120{bottom:442.695000px;}
.yfc{bottom:443.595000px;}
.y66{bottom:452.055000px;}
.yc4{bottom:453.855000px;}
.y91{bottom:454.935000px;}
.y2c{bottom:456.915000px;}
.y11f{bottom:461.775000px;}
.yfa{bottom:463.395000px;}
.y65{bottom:471.135000px;}
.yc3{bottom:472.755000px;}
.y2b{bottom:474.015000px;}
.y90{bottom:475.275000px;}
.y11e{bottom:480.675000px;}
.yf9{bottom:489.855000px;}
.y64{bottom:490.035000px;}
.y2a{bottom:491.295000px;}
.yc2{bottom:491.835000px;}
.y8f{bottom:495.795000px;}
.y11d{bottom:499.575000px;}
.y29{bottom:508.575000px;}
.y63{bottom:509.115000px;}
.yf8{bottom:509.475000px;}
.yc1{bottom:510.735000px;}
.y8e{bottom:516.315000px;}
.y11c{bottom:516.495000px;}
.y28{bottom:525.855000px;}
.y62{bottom:528.015000px;}
.yc0{bottom:529.815000px;}
.yf7{bottom:532.875000px;}
.y8d{bottom:536.835000px;}
.y11b{bottom:537.015000px;}
.y27{bottom:543.135000px;}
.y61{bottom:546.915000px;}
.ybf{bottom:548.715000px;}
.yf6{bottom:551.955000px;}
.y8c{bottom:557.175000px;}
.y26{bottom:560.415000px;}
.y11a{bottom:561.135000px;}
.y60{bottom:565.995000px;}
.ybe{bottom:567.615000px;}
.yf5{bottom:570.855000px;}
.y25{bottom:577.515000px;}
.y8b{bottom:577.695000px;}
.y119{bottom:580.035000px;}
.y5f{bottom:584.895000px;}
.ybd{bottom:586.695000px;}
.yf4{bottom:589.935000px;}
.y24{bottom:594.795000px;}
.y8a{bottom:598.215000px;}
.y118{bottom:599.115000px;}
.y5e{bottom:603.975000px;}
.ybc{bottom:605.595000px;}
.yf3{bottom:608.835000px;}
.y23{bottom:612.075000px;}
.y117{bottom:618.015000px;}
.y89{bottom:618.735000px;}
.y5d{bottom:622.875000px;}
.ybb{bottom:624.675000px;}
.yf2{bottom:627.735000px;}
.y22{bottom:629.355000px;}
.y116{bottom:636.915000px;}
.y87{bottom:639.075000px;}
.y5c{bottom:641.805000px;}
.yba{bottom:643.605000px;}
.yf1{bottom:643.965000px;}
.y21{bottom:646.665000px;}
.y115{bottom:656.025000px;}
.y86{bottom:659.625000px;}
.y5b{bottom:660.885000px;}
.yb9{bottom:662.505000px;}
.yf0{bottom:663.585000px;}
.y20{bottom:663.945000px;}
.y134{bottom:666.825000px;}
.y114{bottom:674.925000px;}
.y5a{bottom:679.785000px;}
.y85{bottom:680.145000px;}
.y1f{bottom:681.045000px;}
.yb8{bottom:681.585000px;}
.yef{bottom:684.105000px;}
.y113{bottom:694.365000px;}
.y1e{bottom:698.325000px;}
.y59{bottom:698.865000px;}
.yb7{bottom:700.485000px;}
.y84{bottom:700.665000px;}
.yee{bottom:704.625000px;}
.y112{bottom:713.265000px;}
.y1d{bottom:715.605000px;}
.yb6{bottom:716.505000px;}
.y58{bottom:717.765000px;}
.y83{bottom:721.005000px;}
.yed{bottom:724.965000px;}
.y111{bottom:730.005000px;}
.y1c{bottom:732.885000px;}
.yb5{bottom:736.305000px;}
.y57{bottom:736.665000px;}
.y82{bottom:741.525000px;}
.yec{bottom:745.485000px;}
.y110{bottom:749.085000px;}
.y1b{bottom:750.165000px;}
.y56{bottom:755.745000px;}
.yb4{bottom:756.105000px;}
.y81{bottom:762.045000px;}
.yeb{bottom:766.005000px;}
.y1a{bottom:767.445000px;}
.y10f{bottom:769.605000px;}
.y55{bottom:774.645000px;}
.yb3{bottom:775.725000px;}
.y80{bottom:782.565000px;}
.y19{bottom:784.545000px;}
.yea{bottom:785.625000px;}
.y54{bottom:793.725000px;}
.yb2{bottom:795.525000px;}
.y18{bottom:801.825000px;}
.y7e{bottom:802.905000px;}
.ye9{bottom:805.425000px;}
.y53{bottom:812.625000px;}
.yb1{bottom:815.145000px;}
.y17{bottom:819.105000px;}
.y7d{bottom:823.425000px;}
.ye8{bottom:825.225000px;}
.y52{bottom:831.525000px;}
.yb0{bottom:834.945000px;}
.y16{bottom:836.385000px;}
.y7c{bottom:843.945000px;}
.ye7{bottom:844.845000px;}
.y51{bottom:850.605000px;}
.y15{bottom:853.665000px;}
.yaf{bottom:858.345000px;}
.y7a{bottom:864.465000px;}
.ye6{bottom:864.645000px;}
.y50{bottom:869.505000px;}
.y14{bottom:870.765000px;}
.yae{bottom:877.245000px;}
.ye5{bottom:885.165000px;}
.y13{bottom:888.045000px;}
.y4f{bottom:888.585000px;}
.yad{bottom:896.370000px;}
.ye4{bottom:905.550000px;}
.y12{bottom:905.910000px;}
.y4e{bottom:907.530000px;}
.yac{bottom:915.270000px;}
.y11{bottom:924.450000px;}
.ye3{bottom:926.070000px;}
.y4d{bottom:926.610000px;}
.yab{bottom:931.290000px;}
.y10{bottom:941.550000px;}
.y4c{bottom:945.510000px;}
.ye2{bottom:946.590000px;}
.yaa{bottom:951.090000px;}
.yf{bottom:958.830000px;}
.y4b{bottom:964.410000px;}
.ye1{bottom:966.930000px;}
.ya8{bottom:970.710000px;}
.ye{bottom:976.470000px;}
.y4a{bottom:983.490000px;}
.ye0{bottom:987.450000px;}
.yd{bottom:994.290000px;}
.ya7{bottom:997.170000px;}
.y49{bottom:1002.390000px;}
.ydf{bottom:1007.970000px;}
.yc{bottom:1009.770000px;}
.ya6{bottom:1016.970000px;}
.y48{bottom:1021.470000px;}
.yde{bottom:1028.490000px;}
.yb{bottom:1032.270000px;}
.y47{bottom:1040.370000px;}
.ydd{bottom:1048.830000px;}
.ya{bottom:1052.970000px;}
.y46{bottom:1059.270000px;}
.y9{bottom:1067.550000px;}
.ydc{bottom:1069.350000px;}
.ya5{bottom:1078.170000px;}
.y45{bottom:1078.350000px;}
.y8{bottom:1084.830000px;}
.ydb{bottom:1089.870000px;}
.y44{bottom:1097.250000px;}
.y7{bottom:1102.110000px;}
.yda{bottom:1110.390000px;}
.y43{bottom:1116.330000px;}
.y6{bottom:1119.210000px;}
.yd9{bottom:1130.730000px;}
.y42{bottom:1135.230000px;}
.y5{bottom:1136.490000px;}
.y3{bottom:1166.940000px;}
.y1{bottom:1182.420000px;}
.h11{height:18.900000px;}
.h14{height:18.936000px;}
.h12{height:19.080000px;}
.h13{height:19.116000px;}
.h15{height:25.740000px;}
.h2{height:26.640000px;}
.h17{height:30.836250px;}
.he{height:33.683203px;}
.h7{height:34.036523px;}
.h5{height:39.760312px;}
.hb{height:41.726953px;}
.h6{height:42.164648px;}
.hc{height:46.251562px;}
.ha{height:46.736719px;}
.h4{height:48.224531px;}
.hd{height:49.255313px;}
.h10{height:49.906406px;}
.h3{height:54.105469px;}
.hf{height:54.596250px;}
.h9{height:54.864844px;}
.h16{height:55.825312px;}
.h8{height:58.585781px;}
.h1{height:1263.000000px;}
.h0{height:1263.060000px;}
.wf{width:34.740000px;}
.w12{width:35.460000px;}
.w14{width:39.060000px;}
.w8{width:39.240000px;}
.w5{width:58.320000px;}
.w2{width:62.280000px;}
.w15{width:83.736000px;}
.w9{width:84.276000px;}
.wa{width:99.720000px;}
.w16{width:107.280000px;}
.w21{width:141.120000px;}
.we{width:142.236000px;}
.w1a{width:147.636000px;}
.w1f{width:148.896000px;}
.w17{width:152.850000px;}
.wb{width:153.930000px;}
.w1e{width:158.610000px;}
.w20{width:163.110000px;}
.wd{width:163.470000px;}
.w19{width:168.690000px;}
.w7{width:180.030000px;}
.w23{width:203.790000px;}
.w22{width:203.970000px;}
.w18{width:224.670000px;}
.wc{width:230.610000px;}
.w1b{width:230.970000px;}
.w1c{width:231.150000px;}
.w1d{width:231.195000px;}
.w11{width:243.750000px;}
.w13{width:298.335000px;}
.w10{width:298.695000px;}
.w6{width:333.975000px;}
.w3{width:618.270000px;}
.w1{width:893.250000px;}
.w4{width:893.339987px;}
.w0{width:893.340000px;}
.x0{left:0.000000px;}
.x2{left:3.420000px;}
.x4{left:8.100000px;}
.x33{left:9.354000px;}
.x36{left:10.620000px;}
.x3a{left:13.134000px;}
.x57{left:14.580000px;}
.x3e{left:17.280000px;}
.x12{left:18.900000px;}
.x1e{left:20.700000px;}
.x17{left:24.840000px;}
.x3b{left:27.180000px;}
.x2d{left:28.980000px;}
.x67{left:30.594000px;}
.x48{left:31.860000px;}
.x5c{left:34.560000px;}
.x5f{left:36.000000px;}
.x46{left:37.440000px;}
.x38{left:39.420000px;}
.x3c{left:41.400000px;}
.x5d{left:43.740000px;}
.x1f{left:46.305000px;}
.x16{left:48.825000px;}
.x3d{left:51.510000px;}
.x44{left:52.560000px;}
.x49{left:54.540000px;}
.x3f{left:55.650000px;}
.x45{left:56.700000px;}
.x55{left:57.825000px;}
.x24{left:59.805000px;}
.x47{left:62.820000px;}
.x4f{left:65.925000px;}
.x51{left:67.005000px;}
.x56{left:68.445000px;}
.x5b{left:69.480000px;}
.x40{left:71.505000px;}
.x30{left:73.845000px;}
.x25{left:75.645000px;}
.x52{left:76.905000px;}
.x29{left:77.985000px;}
.x4e{left:79.425000px;}
.x1d{left:80.865000px;}
.x19{left:82.125000px;}
.x21{left:84.825000px;}
.x2a{left:86.625000px;}
.x4d{left:87.705000px;}
.x26{left:88.965000px;}
.x2f{left:90.405000px;}
.x2b{left:92.565000px;}
.x2c{left:94.365000px;}
.x1{left:95.616000px;}
.x1b{left:97.605000px;}
.x54{left:98.865000px;}
.x18{left:100.305000px;}
.x1c{left:103.545000px;}
.x6{left:105.695987px;}
.x9{left:107.495987px;}
.x53{left:108.945000px;}
.x27{left:110.025000px;}
.x31{left:113.435987px;}
.x28{left:114.705000px;}
.x23{left:116.685000px;}
.x14{left:124.065000px;}
.x22{left:126.765000px;}
.x50{left:128.925000px;}
.x1a{left:132.885000px;}
.x62{left:140.796000px;}
.x7{left:142.235987px;}
.x20{left:146.745000px;}
.xe{left:148.715987px;}
.xf{left:150.509987px;}
.x3{left:157.890000px;}
.x11{left:159.870000px;}
.x2e{left:167.265000px;}
.x41{left:173.189987px;}
.x34{left:181.290000px;}
.x4b{left:193.350000px;}
.x13{left:218.910000px;}
.x4a{left:263.774987px;}
.x35{left:266.475000px;}
.x8{left:280.334987px;}
.x5a{left:288.255000px;}
.x5e{left:290.594987px;}
.x42{left:293.475000px;}
.x63{left:299.415000px;}
.x32{left:314.174987px;}
.xa{left:317.414987px;}
.xb{left:331.274987px;}
.x68{left:344.775000px;}
.x61{left:358.814987px;}
.x37{left:366.915000px;}
.x58{left:373.935000px;}
.x66{left:377.174987px;}
.x10{left:403.094987px;}
.xc{left:419.504987px;}
.xd{left:428.864987px;}
.x5{left:446.684987px;}
.x64{left:448.305000px;}
.x43{left:457.665000px;}
.x4c{left:492.765000px;}
.x39{left:521.565000px;}
.x59{left:527.505000px;}
.x69{left:548.565000px;}
.x15{left:553.605000px;}
.x60{left:562.245000px;}
.x65{left:611.430000px;}
@media print{
.v2{vertical-align:-21.120000pt;}
.v1{vertical-align:-12.160000pt;}
.v0{vertical-align:0.000000pt;}
.lsb{letter-spacing:-0.960000pt;}
.ls14{letter-spacing:-0.640000pt;}
.ls13{letter-spacing:-0.544000pt;}
.ls8{letter-spacing:-0.480000pt;}
.lsa{letter-spacing:-0.320000pt;}
.ls10{letter-spacing:-0.271467pt;}
.ls9{letter-spacing:-0.256000pt;}
.lse{letter-spacing:-0.047360pt;}
.lsc{letter-spacing:-0.015360pt;}
.ls7{letter-spacing:0.000000pt;}
.lsd{letter-spacing:0.015360pt;}
.ls2{letter-spacing:0.030720pt;}
.ls12{letter-spacing:0.097067pt;}
.ls6{letter-spacing:0.128640pt;}
.ls4{letter-spacing:0.160000pt;}
.lsf{letter-spacing:0.183467pt;}
.ls1{letter-spacing:0.231040pt;}
.ls11{letter-spacing:0.232960pt;}
.ls17{letter-spacing:0.256000pt;}
.ls0{letter-spacing:0.320000pt;}
.ls3{letter-spacing:9.760000pt;}
.ls18{letter-spacing:14.080000pt;}
.ls16{letter-spacing:14.991360pt;}
.ls15{letter-spacing:18.191360pt;}
.ls5{letter-spacing:116.000000pt;}
.ws7{word-spacing:-17.295360pt;}
.ws6{word-spacing:-17.280000pt;}
.wsc{word-spacing:-14.817067pt;}
.wse{word-spacing:-14.720000pt;}
.wsa{word-spacing:-14.448533pt;}
.wsd{word-spacing:-14.176000pt;}
.ws2{word-spacing:-13.600000pt;}
.ws8{word-spacing:-13.463467pt;}
.ws5{word-spacing:-13.280000pt;}
.ws3{word-spacing:-12.960000pt;}
.wsf{word-spacing:-12.953600pt;}
.ws4{word-spacing:-12.320000pt;}
.ws1{word-spacing:-10.720000pt;}
.ws0{word-spacing:-10.400000pt;}
.ws9{word-spacing:-9.760000pt;}
.wsb{word-spacing:0.000000pt;}
._11{margin-left:-7.505493pt;}
._14{margin-left:-6.502827pt;}
._18{margin-left:-5.358080pt;}
._13{margin-left:-4.345173pt;}
._10{margin-left:-3.438080pt;}
._4{margin-left:-2.168960pt;}
._0{margin-left:-1.114880pt;}
._3{width:0.914560pt;}
._5{width:2.219520pt;}
._6{width:3.124053pt;}
._b{width:4.396160pt;}
._7{width:6.108800pt;}
._a{width:7.212800pt;}
._e{width:8.647040pt;}
._8{width:9.921920pt;}
._d{width:11.133227pt;}
._9{width:12.027093pt;}
._12{width:13.537280pt;}
._c{width:14.512640pt;}
._17{width:15.852800pt;}
._16{width:16.765440pt;}
._15{width:18.017280pt;}
._f{width:19.407787pt;}
._1c{width:20.686293pt;}
._1b{width:23.375360pt;}
._1d{width:27.496960pt;}
._1e{width:29.024000pt;}
._1a{width:50.224640pt;}
._19{width:177.280000pt;}
._2{width:227.360000pt;}
._1{width:977.038933pt;}
.fs5{font-size:37.120000pt;}
.fs2{font-size:42.880000pt;}
.fs3{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs4{font-size:69.120000pt;}
.y0{bottom:0.000000pt;}
.ya1{bottom:3.194667pt;}
.y7b{bottom:3.200000pt;}
.y7f{bottom:3.360000pt;}
.y88{bottom:3.386667pt;}
.yd5{bottom:3.392000pt;}
.y2{bottom:5.920000pt;}
.ya9{bottom:6.240000pt;}
.yfb{bottom:9.280000pt;}
.y4{bottom:50.080000pt;}
.yd8{bottom:64.320000pt;}
.y133{bottom:69.120000pt;}
.y10e{bottom:70.400000pt;}
.ya4{bottom:78.720000pt;}
.y41{bottom:79.840000pt;}
.y79{bottom:81.440000pt;}
.yd7{bottom:82.560000pt;}
.y132{bottom:85.920000pt;}
.y10d{bottom:87.360000pt;}
.ya3{bottom:96.160000pt;}
.y40{bottom:96.640000pt;}
.y78{bottom:98.240000pt;}
.yd6{bottom:100.640000pt;}
.y131{bottom:102.720000pt;}
.y10c{bottom:104.160000pt;}
.ya2{bottom:113.120000pt;}
.y3f{bottom:113.600000pt;}
.y77{bottom:115.040000pt;}
.yd4{bottom:118.880000pt;}
.y130{bottom:119.680000pt;}
.y10b{bottom:120.992000pt;}
.y3e{bottom:130.432000pt;}
.ya0{bottom:131.392000pt;}
.y76{bottom:132.032000pt;}
.y12f{bottom:136.506667pt;}
.yd3{bottom:137.146667pt;}
.y10a{bottom:137.946667pt;}
.y3d{bottom:147.386667pt;}
.y75{bottom:148.826667pt;}
.y9f{bottom:149.466667pt;}
.y12e{bottom:153.466667pt;}
.y109{bottom:154.746667pt;}
.yd2{bottom:155.386667pt;}
.y3c{bottom:164.186667pt;}
.y74{bottom:165.786667pt;}
.y9e{bottom:167.706667pt;}
.y12d{bottom:170.266667pt;}
.y108{bottom:171.706667pt;}
.yd1{bottom:172.826667pt;}
.y3b{bottom:180.986667pt;}
.y73{bottom:182.586667pt;}
.y9d{bottom:185.946667pt;}
.y12c{bottom:187.066667pt;}
.yd0{bottom:191.066667pt;}
.y3a{bottom:196.826667pt;}
.y72{bottom:199.386667pt;}
.y107{bottom:203.386667pt;}
.y12b{bottom:204.026667pt;}
.y9c{bottom:204.186667pt;}
.ycf{bottom:208.666667pt;}
.y39{bottom:209.146667pt;}
.y71{bottom:216.346667pt;}
.y12a{bottom:220.826667pt;}
.y106{bottom:220.986667pt;}
.y38{bottom:222.106667pt;}
.y9b{bottom:222.266667pt;}
.yce{bottom:226.106667pt;}
.y70{bottom:233.146667pt;}
.y37{bottom:237.466667pt;}
.y129{bottom:237.786667pt;}
.y105{bottom:238.586667pt;}
.y9a{bottom:240.506667pt;}
.ycd{bottom:244.346667pt;}
.y6f{bottom:250.106667pt;}
.y36{bottom:252.666667pt;}
.y128{bottom:254.586667pt;}
.y104{bottom:256.026667pt;}
.y99{bottom:258.746667pt;}
.ycc{bottom:262.586667pt;}
.y6e{bottom:266.906667pt;}
.y35{bottom:268.026667pt;}
.y127{bottom:269.466667pt;}
.y103{bottom:273.626667pt;}
.y98{bottom:276.986667pt;}
.ycb{bottom:280.666667pt;}
.y34{bottom:283.386667pt;}
.y6d{bottom:283.706667pt;}
.y126{bottom:286.426667pt;}
.y102{bottom:291.066667pt;}
.y97{bottom:295.066667pt;}
.y33{bottom:298.746667pt;}
.y6c{bottom:300.666667pt;}
.yca{bottom:302.106667pt;}
.y125{bottom:303.226667pt;}
.y101{bottom:311.866667pt;}
.y96{bottom:313.306667pt;}
.y32{bottom:314.106667pt;}
.y6b{bottom:317.466667pt;}
.yc9{bottom:319.066667pt;}
.y124{bottom:321.466667pt;}
.y100{bottom:328.826667pt;}
.y31{bottom:329.466667pt;}
.y95{bottom:331.546667pt;}
.y6a{bottom:334.426667pt;}
.yc8{bottom:335.866667pt;}
.y123{bottom:342.906667pt;}
.y30{bottom:344.706667pt;}
.yff{bottom:345.666667pt;}
.y94{bottom:349.826667pt;}
.y69{bottom:351.266667pt;}
.yc7{bottom:352.866667pt;}
.y122{bottom:359.746667pt;}
.y2f{bottom:360.066667pt;}
.yfe{bottom:362.466667pt;}
.y93{bottom:367.906667pt;}
.y68{bottom:368.226667pt;}
.yc6{bottom:369.666667pt;}
.y2e{bottom:375.426667pt;}
.y121{bottom:376.706667pt;}
.yfd{bottom:376.866667pt;}
.y67{bottom:385.026667pt;}
.y92{bottom:386.146667pt;}
.yc5{bottom:386.466667pt;}
.y2d{bottom:390.786667pt;}
.y120{bottom:393.506667pt;}
.yfc{bottom:394.306667pt;}
.y66{bottom:401.826667pt;}
.yc4{bottom:403.426667pt;}
.y91{bottom:404.386667pt;}
.y2c{bottom:406.146667pt;}
.y11f{bottom:410.466667pt;}
.yfa{bottom:411.906667pt;}
.y65{bottom:418.786667pt;}
.yc3{bottom:420.226667pt;}
.y2b{bottom:421.346667pt;}
.y90{bottom:422.466667pt;}
.y11e{bottom:427.266667pt;}
.yf9{bottom:435.426667pt;}
.y64{bottom:435.586667pt;}
.y2a{bottom:436.706667pt;}
.yc2{bottom:437.186667pt;}
.y8f{bottom:440.706667pt;}
.y11d{bottom:444.066667pt;}
.y29{bottom:452.066667pt;}
.y63{bottom:452.546667pt;}
.yf8{bottom:452.866667pt;}
.yc1{bottom:453.986667pt;}
.y8e{bottom:458.946667pt;}
.y11c{bottom:459.106667pt;}
.y28{bottom:467.426667pt;}
.y62{bottom:469.346667pt;}
.yc0{bottom:470.946667pt;}
.yf7{bottom:473.666667pt;}
.y8d{bottom:477.186667pt;}
.y11b{bottom:477.346667pt;}
.y27{bottom:482.786667pt;}
.y61{bottom:486.146667pt;}
.ybf{bottom:487.746667pt;}
.yf6{bottom:490.626667pt;}
.y8c{bottom:495.266667pt;}
.y26{bottom:498.146667pt;}
.y11a{bottom:498.786667pt;}
.y60{bottom:503.106667pt;}
.ybe{bottom:504.546667pt;}
.yf5{bottom:507.426667pt;}
.y25{bottom:513.346667pt;}
.y8b{bottom:513.506667pt;}
.y119{bottom:515.586667pt;}
.y5f{bottom:519.906667pt;}
.ybd{bottom:521.506667pt;}
.yf4{bottom:524.386667pt;}
.y24{bottom:528.706667pt;}
.y8a{bottom:531.746667pt;}
.y118{bottom:532.546667pt;}
.y5e{bottom:536.866667pt;}
.ybc{bottom:538.306667pt;}
.yf3{bottom:541.186667pt;}
.y23{bottom:544.066667pt;}
.y117{bottom:549.346667pt;}
.y89{bottom:549.986667pt;}
.y5d{bottom:553.666667pt;}
.ybb{bottom:555.266667pt;}
.yf2{bottom:557.986667pt;}
.y22{bottom:559.426667pt;}
.y116{bottom:566.146667pt;}
.y87{bottom:568.066667pt;}
.y5c{bottom:570.493333pt;}
.yba{bottom:572.093333pt;}
.yf1{bottom:572.413333pt;}
.y21{bottom:574.813333pt;}
.y115{bottom:583.133333pt;}
.y86{bottom:586.333333pt;}
.y5b{bottom:587.453333pt;}
.yb9{bottom:588.893333pt;}
.yf0{bottom:589.853333pt;}
.y20{bottom:590.173333pt;}
.y134{bottom:592.733333pt;}
.y114{bottom:599.933333pt;}
.y5a{bottom:604.253333pt;}
.y85{bottom:604.573333pt;}
.y1f{bottom:605.373333pt;}
.yb8{bottom:605.853333pt;}
.yef{bottom:608.093333pt;}
.y113{bottom:617.213333pt;}
.y1e{bottom:620.733333pt;}
.y59{bottom:621.213333pt;}
.yb7{bottom:622.653333pt;}
.y84{bottom:622.813333pt;}
.yee{bottom:626.333333pt;}
.y112{bottom:634.013333pt;}
.y1d{bottom:636.093333pt;}
.yb6{bottom:636.893333pt;}
.y58{bottom:638.013333pt;}
.y83{bottom:640.893333pt;}
.yed{bottom:644.413333pt;}
.y111{bottom:648.893333pt;}
.y1c{bottom:651.453333pt;}
.yb5{bottom:654.493333pt;}
.y57{bottom:654.813333pt;}
.y82{bottom:659.133333pt;}
.yec{bottom:662.653333pt;}
.y110{bottom:665.853333pt;}
.y1b{bottom:666.813333pt;}
.y56{bottom:671.773333pt;}
.yb4{bottom:672.093333pt;}
.y81{bottom:677.373333pt;}
.yeb{bottom:680.893333pt;}
.y1a{bottom:682.173333pt;}
.y10f{bottom:684.093333pt;}
.y55{bottom:688.573333pt;}
.yb3{bottom:689.533333pt;}
.y80{bottom:695.613333pt;}
.y19{bottom:697.373333pt;}
.yea{bottom:698.333333pt;}
.y54{bottom:705.533333pt;}
.yb2{bottom:707.133333pt;}
.y18{bottom:712.733333pt;}
.y7e{bottom:713.693333pt;}
.ye9{bottom:715.933333pt;}
.y53{bottom:722.333333pt;}
.yb1{bottom:724.573333pt;}
.y17{bottom:728.093333pt;}
.y7d{bottom:731.933333pt;}
.ye8{bottom:733.533333pt;}
.y52{bottom:739.133333pt;}
.yb0{bottom:742.173333pt;}
.y16{bottom:743.453333pt;}
.y7c{bottom:750.173333pt;}
.ye7{bottom:750.973333pt;}
.y51{bottom:756.093333pt;}
.y15{bottom:758.813333pt;}
.yaf{bottom:762.973333pt;}
.y7a{bottom:768.413333pt;}
.ye6{bottom:768.573333pt;}
.y50{bottom:772.893333pt;}
.y14{bottom:774.013333pt;}
.yae{bottom:779.773333pt;}
.ye5{bottom:786.813333pt;}
.y13{bottom:789.373333pt;}
.y4f{bottom:789.853333pt;}
.yad{bottom:796.773333pt;}
.ye4{bottom:804.933333pt;}
.y12{bottom:805.253333pt;}
.y4e{bottom:806.693333pt;}
.yac{bottom:813.573333pt;}
.y11{bottom:821.733333pt;}
.ye3{bottom:823.173333pt;}
.y4d{bottom:823.653333pt;}
.yab{bottom:827.813333pt;}
.y10{bottom:836.933333pt;}
.y4c{bottom:840.453333pt;}
.ye2{bottom:841.413333pt;}
.yaa{bottom:845.413333pt;}
.yf{bottom:852.293333pt;}
.y4b{bottom:857.253333pt;}
.ye1{bottom:859.493333pt;}
.ya8{bottom:862.853333pt;}
.ye{bottom:867.973333pt;}
.y4a{bottom:874.213333pt;}
.ye0{bottom:877.733333pt;}
.yd{bottom:883.813333pt;}
.ya7{bottom:886.373333pt;}
.y49{bottom:891.013333pt;}
.ydf{bottom:895.973333pt;}
.yc{bottom:897.573333pt;}
.ya6{bottom:903.973333pt;}
.y48{bottom:907.973333pt;}
.yde{bottom:914.213333pt;}
.yb{bottom:917.573333pt;}
.y47{bottom:924.773333pt;}
.ydd{bottom:932.293333pt;}
.ya{bottom:935.973333pt;}
.y46{bottom:941.573333pt;}
.y9{bottom:948.933333pt;}
.ydc{bottom:950.533333pt;}
.ya5{bottom:958.373333pt;}
.y45{bottom:958.533333pt;}
.y8{bottom:964.293333pt;}
.ydb{bottom:968.773333pt;}
.y44{bottom:975.333333pt;}
.y7{bottom:979.653333pt;}
.yda{bottom:987.013333pt;}
.y43{bottom:992.293333pt;}
.y6{bottom:994.853333pt;}
.yd9{bottom:1005.093333pt;}
.y42{bottom:1009.093333pt;}
.y5{bottom:1010.213333pt;}
.y3{bottom:1037.280000pt;}
.y1{bottom:1051.040000pt;}
.h11{height:16.800000pt;}
.h14{height:16.832000pt;}
.h12{height:16.960000pt;}
.h13{height:16.992000pt;}
.h15{height:22.880000pt;}
.h2{height:23.680000pt;}
.h17{height:27.410000pt;}
.he{height:29.940625pt;}
.h7{height:30.254687pt;}
.h5{height:35.342500pt;}
.hb{height:37.090625pt;}
.h6{height:37.479688pt;}
.hc{height:41.112500pt;}
.ha{height:41.543750pt;}
.h4{height:42.866250pt;}
.hd{height:43.782500pt;}
.h10{height:44.361250pt;}
.h3{height:48.093750pt;}
.hf{height:48.530000pt;}
.h9{height:48.768750pt;}
.h16{height:49.622500pt;}
.h8{height:52.076250pt;}
.h1{height:1122.666667pt;}
.h0{height:1122.720000pt;}
.wf{width:30.880000pt;}
.w12{width:31.520000pt;}
.w14{width:34.720000pt;}
.w8{width:34.880000pt;}
.w5{width:51.840000pt;}
.w2{width:55.360000pt;}
.w15{width:74.432000pt;}
.w9{width:74.912000pt;}
.wa{width:88.640000pt;}
.w16{width:95.360000pt;}
.w21{width:125.440000pt;}
.we{width:126.432000pt;}
.w1a{width:131.232000pt;}
.w1f{width:132.352000pt;}
.w17{width:135.866667pt;}
.wb{width:136.826667pt;}
.w1e{width:140.986667pt;}
.w20{width:144.986667pt;}
.wd{width:145.306667pt;}
.w19{width:149.946667pt;}
.w7{width:160.026667pt;}
.w23{width:181.146667pt;}
.w22{width:181.306667pt;}
.w18{width:199.706667pt;}
.wc{width:204.986667pt;}
.w1b{width:205.306667pt;}
.w1c{width:205.466667pt;}
.w1d{width:205.506667pt;}
.w11{width:216.666667pt;}
.w13{width:265.186667pt;}
.w10{width:265.506667pt;}
.w6{width:296.866667pt;}
.w3{width:549.573333pt;}
.w1{width:794.000000pt;}
.w4{width:794.079988pt;}
.w0{width:794.080000pt;}
.x0{left:0.000000pt;}
.x2{left:3.040000pt;}
.x4{left:7.200000pt;}
.x33{left:8.314667pt;}
.x36{left:9.440000pt;}
.x3a{left:11.674667pt;}
.x57{left:12.960000pt;}
.x3e{left:15.360000pt;}
.x12{left:16.800000pt;}
.x1e{left:18.400000pt;}
.x17{left:22.080000pt;}
.x3b{left:24.160000pt;}
.x2d{left:25.760000pt;}
.x67{left:27.194667pt;}
.x48{left:28.320000pt;}
.x5c{left:30.720000pt;}
.x5f{left:32.000000pt;}
.x46{left:33.280000pt;}
.x38{left:35.040000pt;}
.x3c{left:36.800000pt;}
.x5d{left:38.880000pt;}
.x1f{left:41.160000pt;}
.x16{left:43.400000pt;}
.x3d{left:45.786667pt;}
.x44{left:46.720000pt;}
.x49{left:48.480000pt;}
.x3f{left:49.466667pt;}
.x45{left:50.400000pt;}
.x55{left:51.400000pt;}
.x24{left:53.160000pt;}
.x47{left:55.840000pt;}
.x4f{left:58.600000pt;}
.x51{left:59.560000pt;}
.x56{left:60.840000pt;}
.x5b{left:61.760000pt;}
.x40{left:63.560000pt;}
.x30{left:65.640000pt;}
.x25{left:67.240000pt;}
.x52{left:68.360000pt;}
.x29{left:69.320000pt;}
.x4e{left:70.600000pt;}
.x1d{left:71.880000pt;}
.x19{left:73.000000pt;}
.x21{left:75.400000pt;}
.x2a{left:77.000000pt;}
.x4d{left:77.960000pt;}
.x26{left:79.080000pt;}
.x2f{left:80.360000pt;}
.x2b{left:82.280000pt;}
.x2c{left:83.880000pt;}
.x1{left:84.992000pt;}
.x1b{left:86.760000pt;}
.x54{left:87.880000pt;}
.x18{left:89.160000pt;}
.x1c{left:92.040000pt;}
.x6{left:93.951988pt;}
.x9{left:95.551988pt;}
.x53{left:96.840000pt;}
.x27{left:97.800000pt;}
.x31{left:100.831988pt;}
.x28{left:101.960000pt;}
.x23{left:103.720000pt;}
.x14{left:110.280000pt;}
.x22{left:112.680000pt;}
.x50{left:114.600000pt;}
.x1a{left:118.120000pt;}
.x62{left:125.152000pt;}
.x7{left:126.431988pt;}
.x20{left:130.440000pt;}
.xe{left:132.191988pt;}
.xf{left:133.786655pt;}
.x3{left:140.346667pt;}
.x11{left:142.106667pt;}
.x2e{left:148.680000pt;}
.x41{left:153.946655pt;}
.x34{left:161.146667pt;}
.x4b{left:171.866667pt;}
.x13{left:194.586667pt;}
.x4a{left:234.466655pt;}
.x35{left:236.866667pt;}
.x8{left:249.186655pt;}
.x5a{left:256.226667pt;}
.x5e{left:258.306655pt;}
.x42{left:260.866667pt;}
.x63{left:266.146667pt;}
.x32{left:279.266655pt;}
.xa{left:282.146655pt;}
.xb{left:294.466655pt;}
.x68{left:306.466667pt;}
.x61{left:318.946655pt;}
.x37{left:326.146667pt;}
.x58{left:332.386667pt;}
.x66{left:335.266655pt;}
.x10{left:358.306655pt;}
.xc{left:372.893321pt;}
.xd{left:381.213321pt;}
.x5{left:397.053321pt;}
.x64{left:398.493333pt;}
.x43{left:406.813333pt;}
.x4c{left:438.013333pt;}
.x39{left:463.613333pt;}
.x59{left:468.893333pt;}
.x69{left:487.613333pt;}
.x15{left:492.093333pt;}
.x60{left:499.773333pt;}
.x65{left:543.493333pt;}
}




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