
    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_88883b8748129c4b08a7585c.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.104004;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_a73e947190f3de8beb7c3bbe.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.093262;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_97f14ac870c96319bd9bd864.woff2')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_bedf1b8a73fd17533ec44975.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.093262;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_6ba6a6abb19328000f9eb113.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_01ce8cbd34e42b9a86a59126.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_6193fc93719873dbca485474.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_21e726764909697fd3522775.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.104004;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_d36bc63a68baea19efc9c51f.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.752441;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_fc4431fc33d36eb1661a9f23.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.783691;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_477635e40b416f1c0930d89f.woff2')format("woff");}.ffb{font-family:ffb;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;}
.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:-24.480000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:21.600000px;}
.v1{vertical-align:24.660000px;}
.ls7{letter-spacing:-0.972000px;}
.ls5{letter-spacing:-0.936000px;}
.ls3{letter-spacing:-0.720000px;}
.lsd{letter-spacing:-0.507000px;}
.ls4{letter-spacing:-0.498000px;}
.lsa{letter-spacing:-0.486600px;}
.ls12{letter-spacing:-0.466800px;}
.ls10{letter-spacing:-0.305400px;}
.ls2{letter-spacing:0.000000px;}
.lse{letter-spacing:0.020160px;}
.lsc{letter-spacing:0.120000px;}
.ls6{letter-spacing:0.466800px;}
.ls0{letter-spacing:0.498240px;}
.ls1{letter-spacing:0.720000px;}
.ls11{letter-spacing:37.745280px;}
.lsb{letter-spacing:46.558560px;}
.lsf{letter-spacing:59.357280px;}
.ls9{letter-spacing:63.838560px;}
.ls8{letter-spacing:82.690560px;}
.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;}
}
.ws9{word-spacing:-66.240000px;}
.ws6{word-spacing:-60.480000px;}
.wsa{word-spacing:-16.560000px;}
.wsb{word-spacing:-16.254600px;}
.wsc{word-spacing:-15.586800px;}
.ws8{word-spacing:-15.140160px;}
.ws3{word-spacing:-15.120000px;}
.wsd{word-spacing:-14.653200px;}
.ws5{word-spacing:-14.633400px;}
.ws7{word-spacing:-14.613000px;}
.ws2{word-spacing:-14.184000px;}
.ws0{word-spacing:-13.182000px;}
.ws1{word-spacing:-9.720000px;}
.ws4{word-spacing:0.000000px;}
._11{margin-left:-4.242240px;}
._6{margin-left:-2.851200px;}
._1{margin-left:-1.512000px;}
._0{width:1.080000px;}
._2{width:2.176800px;}
._7{width:3.307200px;}
._16{width:4.313760px;}
._e{width:5.341440px;}
._14{width:6.405600px;}
._d{width:7.445280px;}
._b{width:8.976000px;}
._a{width:10.075200px;}
._9{width:11.102400px;}
._8{width:12.156480px;}
._15{width:13.487040px;}
._c{width:16.813440px;}
._12{width:20.200320px;}
._13{width:21.479040px;}
._17{width:24.443040px;}
._10{width:26.680320px;}
._f{width:28.304640px;}
._5{width:393.960000px;}
._4{width:833.340000px;}
._3{width:1591.176000px;}
.fc6{color:transparent;}
.fc3{color:rgb(0,0,255);}
.fc5{color:rgb(128,128,128);}
.fc4{color:rgb(255,255,255);}
.fc2{color:rgb(0,0,0);}
.fc1{color:rgb(192,0,0);}
.fc0{color:rgb(0,32,96);}
.fs3{font-size:30.240000px;}
.fs6{font-size:38.880000px;}
.fs5{font-size:41.760000px;}
.fs2{font-size:54.720000px;}
.fs0{font-size:60.480000px;}
.fs8{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs4{font-size:83.520000px;}
.fs7{font-size:96.480000px;}
.yb{bottom:-3.960000px;}
.y0{bottom:0.000000px;}
.yd{bottom:2.880000px;}
.y30{bottom:3.240000px;}
.y8c{bottom:5.760000px;}
.y8e{bottom:11.520000px;}
.y86{bottom:11.880000px;}
.yac{bottom:11.910000px;}
.ydb{bottom:11.925000px;}
.y2f{bottom:20.520000px;}
.y8b{bottom:25.560000px;}
.y2e{bottom:37.800000px;}
.yab{bottom:37.830000px;}
.ye{bottom:43.560000px;}
.y2d{bottom:55.080000px;}
.yc{bottom:68.400000px;}
.y2c{bottom:70.920000px;}
.y2b{bottom:89.640000px;}
.ya{bottom:94.716000px;}
.y2a{bottom:115.230000px;}
.y88{bottom:128.556000px;}
.yd5{bottom:136.116000px;}
.y33{bottom:137.196000px;}
.yb3{bottom:138.276000px;}
.y29{bottom:141.150000px;}
.y119{bottom:145.116000px;}
.y5e{bottom:145.836000px;}
.yf3{bottom:152.310000px;}
.y136{bottom:153.030000px;}
.y87{bottom:155.190000px;}
.yd4{bottom:162.030000px;}
.yb2{bottom:163.830000px;}
.y32{bottom:164.910000px;}
.y28{bottom:167.070000px;}
.y118{bottom:171.030000px;}
.y5d{bottom:171.750000px;}
.yb1{bottom:178.590000px;}
.y85{bottom:181.830000px;}
.yd3{bottom:187.950000px;}
.y31{bottom:192.270000px;}
.y27{bottom:192.990000px;}
.y117{bottom:196.950000px;}
.y5c{bottom:197.715000px;}
.y135{bottom:204.555000px;}
.yb0{bottom:205.275000px;}
.y84{bottom:208.515000px;}
.yf2{bottom:211.755000px;}
.yd2{bottom:213.915000px;}
.y1f{bottom:217.155000px;}
.y26{bottom:218.910000px;}
.y116{bottom:222.915000px;}
.y5b{bottom:223.275000px;}
.y83{bottom:229.755000px;}
.y134{bottom:231.555000px;}
.yaf{bottom:231.915000px;}
.y156{bottom:237.675000px;}
.yd1{bottom:239.835000px;}
.yf1{bottom:240.195000px;}
.y25{bottom:244.875000px;}
.y115{bottom:248.835000px;}
.y5a{bottom:249.195000px;}
.y82{bottom:255.675000px;}
.y133{bottom:257.475000px;}
.yae{bottom:258.555000px;}
.y155{bottom:263.595000px;}
.yd0{bottom:265.395000px;}
.yf0{bottom:265.755000px;}
.y24{bottom:270.795000px;}
.y59{bottom:275.115000px;}
.y114{bottom:275.835000px;}
.y81{bottom:281.595000px;}
.y132{bottom:283.395000px;}
.yad{bottom:285.195000px;}
.y154{bottom:290.595000px;}
.ycf{bottom:291.315000px;}
.yef{bottom:291.675000px;}
.y23{bottom:296.715000px;}
.y58{bottom:301.035000px;}
.y113{bottom:302.835000px;}
.y80{bottom:307.155000px;}
.y131{bottom:310.395000px;}
.yaa{bottom:311.835000px;}
.yce{bottom:317.235000px;}
.yee{bottom:317.595000px;}
.y22{bottom:322.275000px;}
.y57{bottom:326.985000px;}
.y112{bottom:329.865000px;}
.y7f{bottom:333.105000px;}
.y130{bottom:336.345000px;}
.y153{bottom:343.545000px;}
.ycd{bottom:344.625000px;}
.yed{bottom:345.345000px;}
.y21{bottom:348.195000px;}
.y56{bottom:352.905000px;}
.y111{bottom:355.425000px;}
.y7e{bottom:359.025000px;}
.y12f{bottom:362.985000px;}
.ya9{bottom:367.665000px;}
.y20{bottom:368.385000px;}
.y152{bottom:370.545000px;}
.y7d{bottom:373.785000px;}
.ycc{bottom:374.145000px;}
.yec{bottom:374.865000px;}
.y55{bottom:379.905000px;}
.y110{bottom:381.345000px;}
.y7c{bottom:391.785000px;}
.y12e{bottom:392.145000px;}
.ya8{bottom:393.585000px;}
.y151{bottom:396.465000px;}
.ycb{bottom:403.665000px;}
.yeb{bottom:404.385000px;}
.y54{bottom:406.545000px;}
.y10f{bottom:407.265000px;}
.y7b{bottom:409.785000px;}
.y12d{bottom:417.705000px;}
.ya7{bottom:419.505000px;}
.y150{bottom:423.105000px;}
.y7a{bottom:427.785000px;}
.y53{bottom:432.465000px;}
.y10e{bottom:433.185000px;}
.yca{bottom:433.545000px;}
.yea{bottom:433.905000px;}
.y12c{bottom:443.625000px;}
.ya6{bottom:445.425000px;}
.y79{bottom:445.785000px;}
.y14f{bottom:450.150000px;}
.y10d{bottom:459.150000px;}
.y52{bottom:459.510000px;}
.ye9{bottom:462.390000px;}
.yc9{bottom:463.110000px;}
.y78{bottom:463.830000px;}
.y12b{bottom:469.590000px;}
.ya5{bottom:471.030000px;}
.y14e{bottom:477.150000px;}
.y77{bottom:485.070000px;}
.y51{bottom:486.510000px;}
.ye8{bottom:488.310000px;}
.yc8{bottom:491.550000px;}
.y12a{bottom:495.510000px;}
.ya4{bottom:496.950000px;}
.y14d{bottom:504.150000px;}
.y76{bottom:510.990000px;}
.y10c{bottom:512.070000px;}
.y50{bottom:512.430000px;}
.ye7{bottom:514.230000px;}
.yc7{bottom:517.470000px;}
.y129{bottom:521.430000px;}
.ya3{bottom:522.870000px;}
.y75{bottom:528.270000px;}
.y14c{bottom:531.150000px;}
.y10b{bottom:537.630000px;}
.y4f{bottom:538.350000px;}
.ye6{bottom:540.150000px;}
.yc6{bottom:543.390000px;}
.y128{bottom:547.350000px;}
.ya2{bottom:548.790000px;}
.y74{bottom:554.190000px;}
.y14b{bottom:558.150000px;}
.y4e{bottom:564.270000px;}
.y10a{bottom:564.630000px;}
.ye5{bottom:566.070000px;}
.yc5{bottom:568.950000px;}
.y127{bottom:573.270000px;}
.ya1{bottom:574.710000px;}
.y73{bottom:580.140000px;}
.y14a{bottom:585.180000px;}
.y4d{bottom:590.220000px;}
.y109{bottom:591.660000px;}
.ye4{bottom:593.100000px;}
.yc4{bottom:594.900000px;}
.y1e{bottom:596.340000px;}
.y126{bottom:599.220000px;}
.ya0{bottom:600.660000px;}
.y72{bottom:606.060000px;}
.y149{bottom:612.180000px;}
.y1d{bottom:615.060000px;}
.y4c{bottom:615.780000px;}
.y108{bottom:618.660000px;}
.yc3{bottom:620.820000px;}
.ye3{bottom:622.620000px;}
.y125{bottom:624.780000px;}
.y9f{bottom:627.660000px;}
.y71{bottom:631.620000px;}
.y148{bottom:638.820000px;}
.y1c{bottom:640.980000px;}
.y4b{bottom:641.700000px;}
.y107{bottom:645.660000px;}
.yc2{bottom:646.740000px;}
.y124{bottom:650.700000px;}
.ye2{bottom:652.500000px;}
.y9e{bottom:654.660000px;}
.y70{bottom:657.540000px;}
.y147{bottom:665.820000px;}
.y1b{bottom:666.900000px;}
.y4a{bottom:667.620000px;}
.y106{bottom:671.580000px;}
.yc1{bottom:672.660000px;}
.y123{bottom:676.620000px;}
.ye1{bottom:680.940000px;}
.y9d{bottom:681.300000px;}
.y6f{bottom:683.460000px;}
.y146{bottom:691.740000px;}
.y1a{bottom:692.820000px;}
.y49{bottom:693.540000px;}
.y105{bottom:697.500000px;}
.yc0{bottom:698.580000px;}
.y122{bottom:702.570000px;}
.ye0{bottom:706.530000px;}
.y9c{bottom:707.250000px;}
.y6e{bottom:709.410000px;}
.y145{bottom:717.690000px;}
.y19{bottom:718.770000px;}
.y48{bottom:719.490000px;}
.y104{bottom:723.450000px;}
.ybf{bottom:724.530000px;}
.y121{bottom:728.490000px;}
.ydf{bottom:732.450000px;}
.y9b{bottom:733.170000px;}
.y6d{bottom:735.330000px;}
.y18{bottom:744.690000px;}
.y47{bottom:745.410000px;}
.y103{bottom:749.010000px;}
.ybe{bottom:750.090000px;}
.y120{bottom:754.410000px;}
.yde{bottom:758.370000px;}
.y9a{bottom:759.090000px;}
.y6c{bottom:761.250000px;}
.y17{bottom:770.610000px;}
.y46{bottom:771.330000px;}
.y144{bottom:771.690000px;}
.y102{bottom:774.930000px;}
.ybd{bottom:776.010000px;}
.y11f{bottom:780.330000px;}
.ydd{bottom:784.290000px;}
.y99{bottom:785.010000px;}
.y6b{bottom:787.170000px;}
.y16{bottom:796.170000px;}
.y45{bottom:796.890000px;}
.y143{bottom:798.690000px;}
.ydc{bottom:799.050000px;}
.y101{bottom:800.850000px;}
.ybc{bottom:801.930000px;}
.y11e{bottom:805.890000px;}
.y98{bottom:810.930000px;}
.y6a{bottom:812.730000px;}
.y15{bottom:822.090000px;}
.y44{bottom:822.810000px;}
.y142{bottom:825.330000px;}
.yda{bottom:825.690000px;}
.y100{bottom:826.815000px;}
.ybb{bottom:827.895000px;}
.y11d{bottom:831.855000px;}
.y97{bottom:836.895000px;}
.y14{bottom:837.975000px;}
.y69{bottom:838.695000px;}
.y13{bottom:846.975000px;}
.y43{bottom:848.775000px;}
.y141{bottom:851.295000px;}
.yd9{bottom:852.375000px;}
.yff{bottom:852.735000px;}
.yba{bottom:853.815000px;}
.y11c{bottom:857.775000px;}
.y12{bottom:861.735000px;}
.y96{bottom:862.455000px;}
.y68{bottom:864.615000px;}
.y42{bottom:874.695000px;}
.y140{bottom:877.215000px;}
.yfe{bottom:878.655000px;}
.yd8{bottom:879.015000px;}
.yb9{bottom:879.735000px;}
.y67{bottom:881.895000px;}
.y11b{bottom:883.695000px;}
.y11{bottom:885.855000px;}
.y95{bottom:889.455000px;}
.y66{bottom:899.175000px;}
.y41{bottom:900.615000px;}
.y13f{bottom:904.215000px;}
.yfd{bottom:904.575000px;}
.yb8{bottom:905.655000px;}
.y11a{bottom:909.615000px;}
.y10{bottom:909.975000px;}
.y94{bottom:916.455000px;}
.y40{bottom:926.535000px;}
.yfc{bottom:930.135000px;}
.yf{bottom:931.215000px;}
.yb7{bottom:931.575000px;}
.yd7{bottom:935.535000px;}
.y9{bottom:941.295000px;}
.y93{bottom:943.455000px;}
.y3f{bottom:952.485000px;}
.yfb{bottom:956.085000px;}
.y13e{bottom:957.165000px;}
.y65{bottom:958.245000px;}
.y8{bottom:958.605000px;}
.yb6{bottom:959.325000px;}
.yd6{bottom:961.485000px;}
.y92{bottom:970.485000px;}
.y7{bottom:972.645000px;}
.y3e{bottom:978.405000px;}
.yfa{bottom:982.005000px;}
.y13d{bottom:983.085000px;}
.y64{bottom:985.245000px;}
.yb5{bottom:987.405000px;}
.y91{bottom:996.405000px;}
.y3d{bottom:1003.965000px;}
.yf9{bottom:1007.925000px;}
.y13c{bottom:1009.725000px;}
.y63{bottom:1011.885000px;}
.yb4{bottom:1012.965000px;}
.y90{bottom:1022.325000px;}
.y6{bottom:1027.365000px;}
.y3c{bottom:1029.885000px;}
.yf8{bottom:1033.845000px;}
.y13b{bottom:1035.645000px;}
.y62{bottom:1038.885000px;}
.y8f{bottom:1048.245000px;}
.y5{bottom:1052.205000px;}
.y3b{bottom:1055.805000px;}
.yf7{bottom:1059.765000px;}
.y13a{bottom:1062.645000px;}
.y8d{bottom:1063.005000px;}
.y61{bottom:1064.805000px;}
.y4{bottom:1072.725000px;}
.y3a{bottom:1081.770000px;}
.yf6{bottom:1085.730000px;}
.y139{bottom:1088.610000px;}
.y8a{bottom:1089.690000px;}
.y60{bottom:1090.770000px;}
.y3{bottom:1094.010000px;}
.y39{bottom:1107.690000px;}
.yf5{bottom:1112.730000px;}
.y2{bottom:1114.530000px;}
.y138{bottom:1115.610000px;}
.y5f{bottom:1116.690000px;}
.y89{bottom:1130.010000px;}
.y1{bottom:1131.450000px;}
.yf4{bottom:1141.170000px;}
.y137{bottom:1141.530000px;}
.y38{bottom:1142.610000px;}
.y37{bottom:1166.370000px;}
.y36{bottom:1180.410000px;}
.y35{bottom:1201.290000px;}
.y34{bottom:1227.600000px;}
.h6{height:8.640000px;}
.h8{height:15.516000px;}
.h12{height:17.280000px;}
.h13{height:17.316000px;}
.h17{height:25.596000px;}
.h15{height:25.920000px;}
.h14{height:25.956000px;}
.he{height:26.533828px;}
.h9{height:26.858672px;}
.hb{height:37.090547px;}
.h16{height:39.600000px;}
.h5{height:45.101250px;}
.h7{height:48.013594px;}
.h19{height:49.848750px;}
.h18{height:51.876000px;}
.h4{height:53.067656px;}
.h2{height:53.717344px;}
.h10{height:55.714922px;}
.h1a{height:58.121719px;}
.h1b{height:58.833281px;}
.hd{height:59.012578px;}
.hc{height:59.192578px;}
.h3{height:63.949219px;}
.ha{height:74.181094px;}
.h11{height:85.691953px;}
.hf{height:375.225000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w10{width:64.476000px;}
.wf{width:77.436000px;}
.w8{width:96.516000px;}
.wd{width:96.552000px;}
.we{width:117.036000px;}
.w11{width:154.830000px;}
.w14{width:164.595000px;}
.w12{width:165.315000px;}
.w15{width:168.195000px;}
.w13{width:197.355000px;}
.wb{width:204.945000px;}
.wc{width:226.155000px;}
.wa{width:246.675000px;}
.w9{width:280.905000px;}
.w7{width:339.270000px;}
.w4{width:339.990000px;}
.w3{width:340.710000px;}
.w6{width:341.430000px;}
.w5{width:679.965000px;}
.w1{width:892.500000px;}
.w2{width:892.799987px;}
.w0{width:892.800000px;}
.x0{left:0.000000px;}
.x15{left:7.560000px;}
.x9{left:8.640000px;}
.x30{left:12.600000px;}
.x33{left:14.760000px;}
.x28{left:16.560000px;}
.x34{left:19.800000px;}
.x31{left:21.240000px;}
.x38{left:25.590000px;}
.x39{left:29.520000px;}
.x2f{left:31.320000px;}
.x37{left:32.430000px;}
.x16{left:40.320000px;}
.x1e{left:42.510000px;}
.x17{left:45.030000px;}
.x22{left:46.800000px;}
.x24{left:48.960000px;}
.x21{left:50.430000px;}
.x20{left:56.880000px;}
.x27{left:59.070000px;}
.x25{left:63.030000px;}
.x23{left:64.110000px;}
.x3a{left:69.480000px;}
.x3b{left:72.750000px;}
.x26{left:74.910000px;}
.x1c{left:83.193000px;}
.x29{left:95.070000px;}
.x2a{left:99.780000px;}
.x7{left:106.235987px;}
.xb{left:114.875987px;}
.x19{left:124.590000px;}
.x18{left:128.190000px;}
.x11{left:133.271987px;}
.x1b{left:138.672000px;}
.xc{left:151.634987px;}
.x12{left:160.274987px;}
.xf{left:180.794987px;}
.x2c{left:186.914987px;}
.x2b{left:204.914987px;}
.x2e{left:225.105000px;}
.x2{left:254.264987px;}
.x13{left:257.505000px;}
.x6{left:274.064987px;}
.xd{left:282.344987px;}
.xa{left:304.350000px;}
.xe{left:339.984000px;}
.x2d{left:342.869987px;}
.x14{left:354.750000px;}
.x5{left:355.829987px;}
.x1a{left:366.629987px;}
.x3c{left:378.870000px;}
.x4{left:379.949987px;}
.x1d{left:386.070000px;}
.x3{left:398.339987px;}
.x32{left:421.020000px;}
.x8{left:446.579987px;}
.x10{left:447.660000px;}
.x35{left:486.210000px;}
.x3d{left:544.170000px;}
.x1f{left:591.735000px;}
.x36{left:641.775000px;}
.x1{left:786.929987px;}
@media print{
.v2{vertical-align:-21.760000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:19.200000pt;}
.v1{vertical-align:21.920000pt;}
.ls7{letter-spacing:-0.864000pt;}
.ls5{letter-spacing:-0.832000pt;}
.ls3{letter-spacing:-0.640000pt;}
.lsd{letter-spacing:-0.450667pt;}
.ls4{letter-spacing:-0.442667pt;}
.lsa{letter-spacing:-0.432533pt;}
.ls12{letter-spacing:-0.414933pt;}
.ls10{letter-spacing:-0.271467pt;}
.ls2{letter-spacing:0.000000pt;}
.lse{letter-spacing:0.017920pt;}
.lsc{letter-spacing:0.106667pt;}
.ls6{letter-spacing:0.414933pt;}
.ls0{letter-spacing:0.442880pt;}
.ls1{letter-spacing:0.640000pt;}
.ls11{letter-spacing:33.551360pt;}
.lsb{letter-spacing:41.385387pt;}
.lsf{letter-spacing:52.762027pt;}
.ls9{letter-spacing:56.745387pt;}
.ls8{letter-spacing:73.502720pt;}
.ws9{word-spacing:-58.880000pt;}
.ws6{word-spacing:-53.760000pt;}
.wsa{word-spacing:-14.720000pt;}
.wsb{word-spacing:-14.448533pt;}
.wsc{word-spacing:-13.854933pt;}
.ws8{word-spacing:-13.457920pt;}
.ws3{word-spacing:-13.440000pt;}
.wsd{word-spacing:-13.025067pt;}
.ws5{word-spacing:-13.007467pt;}
.ws7{word-spacing:-12.989333pt;}
.ws2{word-spacing:-12.608000pt;}
.ws0{word-spacing:-11.717333pt;}
.ws1{word-spacing:-8.640000pt;}
.ws4{word-spacing:0.000000pt;}
._11{margin-left:-3.770880pt;}
._6{margin-left:-2.534400pt;}
._1{margin-left:-1.344000pt;}
._0{width:0.960000pt;}
._2{width:1.934933pt;}
._7{width:2.939733pt;}
._16{width:3.834453pt;}
._e{width:4.747947pt;}
._14{width:5.693867pt;}
._d{width:6.618027pt;}
._b{width:7.978667pt;}
._a{width:8.955733pt;}
._9{width:9.868800pt;}
._8{width:10.805760pt;}
._15{width:11.988480pt;}
._c{width:14.945280pt;}
._12{width:17.955840pt;}
._13{width:19.092480pt;}
._17{width:21.727147pt;}
._10{width:23.715840pt;}
._f{width:25.159680pt;}
._5{width:350.186667pt;}
._4{width:740.746667pt;}
._3{width:1414.378667pt;}
.fs3{font-size:26.880000pt;}
.fs6{font-size:34.560000pt;}
.fs5{font-size:37.120000pt;}
.fs2{font-size:48.640000pt;}
.fs0{font-size:53.760000pt;}
.fs8{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs4{font-size:74.240000pt;}
.fs7{font-size:85.760000pt;}
.yb{bottom:-3.520000pt;}
.y0{bottom:0.000000pt;}
.yd{bottom:2.560000pt;}
.y30{bottom:2.880000pt;}
.y8c{bottom:5.120000pt;}
.y8e{bottom:10.240000pt;}
.y86{bottom:10.560000pt;}
.yac{bottom:10.586667pt;}
.ydb{bottom:10.600000pt;}
.y2f{bottom:18.240000pt;}
.y8b{bottom:22.720000pt;}
.y2e{bottom:33.600000pt;}
.yab{bottom:33.626667pt;}
.ye{bottom:38.720000pt;}
.y2d{bottom:48.960000pt;}
.yc{bottom:60.800000pt;}
.y2c{bottom:63.040000pt;}
.y2b{bottom:79.680000pt;}
.ya{bottom:84.192000pt;}
.y2a{bottom:102.426667pt;}
.y88{bottom:114.272000pt;}
.yd5{bottom:120.992000pt;}
.y33{bottom:121.952000pt;}
.yb3{bottom:122.912000pt;}
.y29{bottom:125.466667pt;}
.y119{bottom:128.992000pt;}
.y5e{bottom:129.632000pt;}
.yf3{bottom:135.386667pt;}
.y136{bottom:136.026667pt;}
.y87{bottom:137.946667pt;}
.yd4{bottom:144.026667pt;}
.yb2{bottom:145.626667pt;}
.y32{bottom:146.586667pt;}
.y28{bottom:148.506667pt;}
.y118{bottom:152.026667pt;}
.y5d{bottom:152.666667pt;}
.yb1{bottom:158.746667pt;}
.y85{bottom:161.626667pt;}
.yd3{bottom:167.066667pt;}
.y31{bottom:170.906667pt;}
.y27{bottom:171.546667pt;}
.y117{bottom:175.066667pt;}
.y5c{bottom:175.746667pt;}
.y135{bottom:181.826667pt;}
.yb0{bottom:182.466667pt;}
.y84{bottom:185.346667pt;}
.yf2{bottom:188.226667pt;}
.yd2{bottom:190.146667pt;}
.y1f{bottom:193.026667pt;}
.y26{bottom:194.586667pt;}
.y116{bottom:198.146667pt;}
.y5b{bottom:198.466667pt;}
.y83{bottom:204.226667pt;}
.y134{bottom:205.826667pt;}
.yaf{bottom:206.146667pt;}
.y156{bottom:211.266667pt;}
.yd1{bottom:213.186667pt;}
.yf1{bottom:213.506667pt;}
.y25{bottom:217.666667pt;}
.y115{bottom:221.186667pt;}
.y5a{bottom:221.506667pt;}
.y82{bottom:227.266667pt;}
.y133{bottom:228.866667pt;}
.yae{bottom:229.826667pt;}
.y155{bottom:234.306667pt;}
.yd0{bottom:235.906667pt;}
.yf0{bottom:236.226667pt;}
.y24{bottom:240.706667pt;}
.y59{bottom:244.546667pt;}
.y114{bottom:245.186667pt;}
.y81{bottom:250.306667pt;}
.y132{bottom:251.906667pt;}
.yad{bottom:253.506667pt;}
.y154{bottom:258.306667pt;}
.ycf{bottom:258.946667pt;}
.yef{bottom:259.266667pt;}
.y23{bottom:263.746667pt;}
.y58{bottom:267.586667pt;}
.y113{bottom:269.186667pt;}
.y80{bottom:273.026667pt;}
.y131{bottom:275.906667pt;}
.yaa{bottom:277.186667pt;}
.yce{bottom:281.986667pt;}
.yee{bottom:282.306667pt;}
.y22{bottom:286.466667pt;}
.y57{bottom:290.653333pt;}
.y112{bottom:293.213333pt;}
.y7f{bottom:296.093333pt;}
.y130{bottom:298.973333pt;}
.y153{bottom:305.373333pt;}
.ycd{bottom:306.333333pt;}
.yed{bottom:306.973333pt;}
.y21{bottom:309.506667pt;}
.y56{bottom:313.693333pt;}
.y111{bottom:315.933333pt;}
.y7e{bottom:319.133333pt;}
.y12f{bottom:322.653333pt;}
.ya9{bottom:326.813333pt;}
.y20{bottom:327.453333pt;}
.y152{bottom:329.373333pt;}
.y7d{bottom:332.253333pt;}
.ycc{bottom:332.573333pt;}
.yec{bottom:333.213333pt;}
.y55{bottom:337.693333pt;}
.y110{bottom:338.973333pt;}
.y7c{bottom:348.253333pt;}
.y12e{bottom:348.573333pt;}
.ya8{bottom:349.853333pt;}
.y151{bottom:352.413333pt;}
.ycb{bottom:358.813333pt;}
.yeb{bottom:359.453333pt;}
.y54{bottom:361.373333pt;}
.y10f{bottom:362.013333pt;}
.y7b{bottom:364.253333pt;}
.y12d{bottom:371.293333pt;}
.ya7{bottom:372.893333pt;}
.y150{bottom:376.093333pt;}
.y7a{bottom:380.253333pt;}
.y53{bottom:384.413333pt;}
.y10e{bottom:385.053333pt;}
.yca{bottom:385.373333pt;}
.yea{bottom:385.693333pt;}
.y12c{bottom:394.333333pt;}
.ya6{bottom:395.933333pt;}
.y79{bottom:396.253333pt;}
.y14f{bottom:400.133333pt;}
.y10d{bottom:408.133333pt;}
.y52{bottom:408.453333pt;}
.ye9{bottom:411.013333pt;}
.yc9{bottom:411.653333pt;}
.y78{bottom:412.293333pt;}
.y12b{bottom:417.413333pt;}
.ya5{bottom:418.693333pt;}
.y14e{bottom:424.133333pt;}
.y77{bottom:431.173333pt;}
.y51{bottom:432.453333pt;}
.ye8{bottom:434.053333pt;}
.yc8{bottom:436.933333pt;}
.y12a{bottom:440.453333pt;}
.ya4{bottom:441.733333pt;}
.y14d{bottom:448.133333pt;}
.y76{bottom:454.213333pt;}
.y10c{bottom:455.173333pt;}
.y50{bottom:455.493333pt;}
.ye7{bottom:457.093333pt;}
.yc7{bottom:459.973333pt;}
.y129{bottom:463.493333pt;}
.ya3{bottom:464.773333pt;}
.y75{bottom:469.573333pt;}
.y14c{bottom:472.133333pt;}
.y10b{bottom:477.893333pt;}
.y4f{bottom:478.533333pt;}
.ye6{bottom:480.133333pt;}
.yc6{bottom:483.013333pt;}
.y128{bottom:486.533333pt;}
.ya2{bottom:487.813333pt;}
.y74{bottom:492.613333pt;}
.y14b{bottom:496.133333pt;}
.y4e{bottom:501.573333pt;}
.y10a{bottom:501.893333pt;}
.ye5{bottom:503.173333pt;}
.yc5{bottom:505.733333pt;}
.y127{bottom:509.573333pt;}
.ya1{bottom:510.853333pt;}
.y73{bottom:515.680000pt;}
.y14a{bottom:520.160000pt;}
.y4d{bottom:524.640000pt;}
.y109{bottom:525.920000pt;}
.ye4{bottom:527.200000pt;}
.yc4{bottom:528.800000pt;}
.y1e{bottom:530.080000pt;}
.y126{bottom:532.640000pt;}
.ya0{bottom:533.920000pt;}
.y72{bottom:538.720000pt;}
.y149{bottom:544.160000pt;}
.y1d{bottom:546.720000pt;}
.y4c{bottom:547.360000pt;}
.y108{bottom:549.920000pt;}
.yc3{bottom:551.840000pt;}
.ye3{bottom:553.440000pt;}
.y125{bottom:555.360000pt;}
.y9f{bottom:557.920000pt;}
.y71{bottom:561.440000pt;}
.y148{bottom:567.840000pt;}
.y1c{bottom:569.760000pt;}
.y4b{bottom:570.400000pt;}
.y107{bottom:573.920000pt;}
.yc2{bottom:574.880000pt;}
.y124{bottom:578.400000pt;}
.ye2{bottom:580.000000pt;}
.y9e{bottom:581.920000pt;}
.y70{bottom:584.480000pt;}
.y147{bottom:591.840000pt;}
.y1b{bottom:592.800000pt;}
.y4a{bottom:593.440000pt;}
.y106{bottom:596.960000pt;}
.yc1{bottom:597.920000pt;}
.y123{bottom:601.440000pt;}
.ye1{bottom:605.280000pt;}
.y9d{bottom:605.600000pt;}
.y6f{bottom:607.520000pt;}
.y146{bottom:614.880000pt;}
.y1a{bottom:615.840000pt;}
.y49{bottom:616.480000pt;}
.y105{bottom:620.000000pt;}
.yc0{bottom:620.960000pt;}
.y122{bottom:624.506667pt;}
.ye0{bottom:628.026667pt;}
.y9c{bottom:628.666667pt;}
.y6e{bottom:630.586667pt;}
.y145{bottom:637.946667pt;}
.y19{bottom:638.906667pt;}
.y48{bottom:639.546667pt;}
.y104{bottom:643.066667pt;}
.ybf{bottom:644.026667pt;}
.y121{bottom:647.546667pt;}
.ydf{bottom:651.066667pt;}
.y9b{bottom:651.706667pt;}
.y6d{bottom:653.626667pt;}
.y18{bottom:661.946667pt;}
.y47{bottom:662.586667pt;}
.y103{bottom:665.786667pt;}
.ybe{bottom:666.746667pt;}
.y120{bottom:670.586667pt;}
.yde{bottom:674.106667pt;}
.y9a{bottom:674.746667pt;}
.y6c{bottom:676.666667pt;}
.y17{bottom:684.986667pt;}
.y46{bottom:685.626667pt;}
.y144{bottom:685.946667pt;}
.y102{bottom:688.826667pt;}
.ybd{bottom:689.786667pt;}
.y11f{bottom:693.626667pt;}
.ydd{bottom:697.146667pt;}
.y99{bottom:697.786667pt;}
.y6b{bottom:699.706667pt;}
.y16{bottom:707.706667pt;}
.y45{bottom:708.346667pt;}
.y143{bottom:709.946667pt;}
.ydc{bottom:710.266667pt;}
.y101{bottom:711.866667pt;}
.ybc{bottom:712.826667pt;}
.y11e{bottom:716.346667pt;}
.y98{bottom:720.826667pt;}
.y6a{bottom:722.426667pt;}
.y15{bottom:730.746667pt;}
.y44{bottom:731.386667pt;}
.y142{bottom:733.626667pt;}
.yda{bottom:733.946667pt;}
.y100{bottom:734.946667pt;}
.ybb{bottom:735.906667pt;}
.y11d{bottom:739.426667pt;}
.y97{bottom:743.906667pt;}
.y14{bottom:744.866667pt;}
.y69{bottom:745.506667pt;}
.y13{bottom:752.866667pt;}
.y43{bottom:754.466667pt;}
.y141{bottom:756.706667pt;}
.yd9{bottom:757.666667pt;}
.yff{bottom:757.986667pt;}
.yba{bottom:758.946667pt;}
.y11c{bottom:762.466667pt;}
.y12{bottom:765.986667pt;}
.y96{bottom:766.626667pt;}
.y68{bottom:768.546667pt;}
.y42{bottom:777.506667pt;}
.y140{bottom:779.746667pt;}
.yfe{bottom:781.026667pt;}
.yd8{bottom:781.346667pt;}
.yb9{bottom:781.986667pt;}
.y67{bottom:783.906667pt;}
.y11b{bottom:785.506667pt;}
.y11{bottom:787.426667pt;}
.y95{bottom:790.626667pt;}
.y66{bottom:799.266667pt;}
.y41{bottom:800.546667pt;}
.y13f{bottom:803.746667pt;}
.yfd{bottom:804.066667pt;}
.yb8{bottom:805.026667pt;}
.y11a{bottom:808.546667pt;}
.y10{bottom:808.866667pt;}
.y94{bottom:814.626667pt;}
.y40{bottom:823.586667pt;}
.yfc{bottom:826.786667pt;}
.yf{bottom:827.746667pt;}
.yb7{bottom:828.066667pt;}
.yd7{bottom:831.586667pt;}
.y9{bottom:836.706667pt;}
.y93{bottom:838.626667pt;}
.y3f{bottom:846.653333pt;}
.yfb{bottom:849.853333pt;}
.y13e{bottom:850.813333pt;}
.y65{bottom:851.773333pt;}
.y8{bottom:852.093333pt;}
.yb6{bottom:852.733333pt;}
.yd6{bottom:854.653333pt;}
.y92{bottom:862.653333pt;}
.y7{bottom:864.573333pt;}
.y3e{bottom:869.693333pt;}
.yfa{bottom:872.893333pt;}
.y13d{bottom:873.853333pt;}
.y64{bottom:875.773333pt;}
.yb5{bottom:877.693333pt;}
.y91{bottom:885.693333pt;}
.y3d{bottom:892.413333pt;}
.yf9{bottom:895.933333pt;}
.y13c{bottom:897.533333pt;}
.y63{bottom:899.453333pt;}
.yb4{bottom:900.413333pt;}
.y90{bottom:908.733333pt;}
.y6{bottom:913.213333pt;}
.y3c{bottom:915.453333pt;}
.yf8{bottom:918.973333pt;}
.y13b{bottom:920.573333pt;}
.y62{bottom:923.453333pt;}
.y8f{bottom:931.773333pt;}
.y5{bottom:935.293333pt;}
.y3b{bottom:938.493333pt;}
.yf7{bottom:942.013333pt;}
.y13a{bottom:944.573333pt;}
.y8d{bottom:944.893333pt;}
.y61{bottom:946.493333pt;}
.y4{bottom:953.533333pt;}
.y3a{bottom:961.573333pt;}
.yf6{bottom:965.093333pt;}
.y139{bottom:967.653333pt;}
.y8a{bottom:968.613333pt;}
.y60{bottom:969.573333pt;}
.y3{bottom:972.453333pt;}
.y39{bottom:984.613333pt;}
.yf5{bottom:989.093333pt;}
.y2{bottom:990.693333pt;}
.y138{bottom:991.653333pt;}
.y5f{bottom:992.613333pt;}
.y89{bottom:1004.453333pt;}
.y1{bottom:1005.733333pt;}
.yf4{bottom:1014.373333pt;}
.y137{bottom:1014.693333pt;}
.y38{bottom:1015.653333pt;}
.y37{bottom:1036.773333pt;}
.y36{bottom:1049.253333pt;}
.y35{bottom:1067.813333pt;}
.y34{bottom:1091.200000pt;}
.h6{height:7.680000pt;}
.h8{height:13.792000pt;}
.h12{height:15.360000pt;}
.h13{height:15.392000pt;}
.h17{height:22.752000pt;}
.h15{height:23.040000pt;}
.h14{height:23.072000pt;}
.he{height:23.585625pt;}
.h9{height:23.874375pt;}
.hb{height:32.969375pt;}
.h16{height:35.200000pt;}
.h5{height:40.090000pt;}
.h7{height:42.678750pt;}
.h19{height:44.310000pt;}
.h18{height:46.112000pt;}
.h4{height:47.171250pt;}
.h2{height:47.748750pt;}
.h10{height:49.524375pt;}
.h1a{height:51.663750pt;}
.h1b{height:52.296250pt;}
.hd{height:52.455625pt;}
.hc{height:52.615625pt;}
.h3{height:56.843750pt;}
.ha{height:65.938750pt;}
.h11{height:76.170625pt;}
.hf{height:333.533333pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w10{width:57.312000pt;}
.wf{width:68.832000pt;}
.w8{width:85.792000pt;}
.wd{width:85.824000pt;}
.we{width:104.032000pt;}
.w11{width:137.626667pt;}
.w14{width:146.306667pt;}
.w12{width:146.946667pt;}
.w15{width:149.506667pt;}
.w13{width:175.426667pt;}
.wb{width:182.173333pt;}
.wc{width:201.026667pt;}
.wa{width:219.266667pt;}
.w9{width:249.693333pt;}
.w7{width:301.573333pt;}
.w4{width:302.213333pt;}
.w3{width:302.853333pt;}
.w6{width:303.493333pt;}
.w5{width:604.413333pt;}
.w1{width:793.333333pt;}
.w2{width:793.599988pt;}
.w0{width:793.600000pt;}
.x0{left:0.000000pt;}
.x15{left:6.720000pt;}
.x9{left:7.680000pt;}
.x30{left:11.200000pt;}
.x33{left:13.120000pt;}
.x28{left:14.720000pt;}
.x34{left:17.600000pt;}
.x31{left:18.880000pt;}
.x38{left:22.746667pt;}
.x39{left:26.240000pt;}
.x2f{left:27.840000pt;}
.x37{left:28.826667pt;}
.x16{left:35.840000pt;}
.x1e{left:37.786667pt;}
.x17{left:40.026667pt;}
.x22{left:41.600000pt;}
.x24{left:43.520000pt;}
.x21{left:44.826667pt;}
.x20{left:50.560000pt;}
.x27{left:52.506667pt;}
.x25{left:56.026667pt;}
.x23{left:56.986667pt;}
.x3a{left:61.760000pt;}
.x3b{left:64.666667pt;}
.x26{left:66.586667pt;}
.x1c{left:73.949333pt;}
.x29{left:84.506667pt;}
.x2a{left:88.693333pt;}
.x7{left:94.431988pt;}
.xb{left:102.111988pt;}
.x19{left:110.746667pt;}
.x18{left:113.946667pt;}
.x11{left:118.463988pt;}
.x1b{left:123.264000pt;}
.xc{left:134.786655pt;}
.x12{left:142.466655pt;}
.xf{left:160.706655pt;}
.x2c{left:166.146655pt;}
.x2b{left:182.146655pt;}
.x2e{left:200.093333pt;}
.x2{left:226.013322pt;}
.x13{left:228.893333pt;}
.x6{left:243.613322pt;}
.xd{left:250.973322pt;}
.xa{left:270.533333pt;}
.xe{left:302.208000pt;}
.x2d{left:304.773322pt;}
.x14{left:315.333333pt;}
.x5{left:316.293322pt;}
.x1a{left:325.893322pt;}
.x3c{left:336.773333pt;}
.x4{left:337.733322pt;}
.x1d{left:343.173333pt;}
.x3{left:354.079988pt;}
.x32{left:374.240000pt;}
.x8{left:396.959988pt;}
.x10{left:397.920000pt;}
.x35{left:432.186667pt;}
.x3d{left:483.706667pt;}
.x1f{left:525.986667pt;}
.x36{left:570.466667pt;}
.x1{left:699.493322pt;}
}




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