
    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_a073073950aca7c2510a90ac.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.065430;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_cd7326cb1738c969ffb7cf9c.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.064941;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_93874cd4e144c023b5255989.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.064941;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_3abefcbbb4dc9f91511d2f33.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.064941;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_3064714f55cb88e25095e754.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.435059;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_de3de3dd94bea855c86036d5.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_091b83fe7acb388af4536e06.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v1{vertical-align:-15.120000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:15.120000px;}
.ls8{letter-spacing:-0.391800px;}
.lsb{letter-spacing:-0.186600px;}
.ls6{letter-spacing:-0.135000px;}
.ls9{letter-spacing:-0.121200px;}
.ls5{letter-spacing:-0.090000px;}
.ls7{letter-spacing:-0.084600px;}
.lsd{letter-spacing:-0.014760px;}
.ls3{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.014760px;}
.lsa{letter-spacing:0.045360px;}
.lsf{letter-spacing:0.051840px;}
.lse{letter-spacing:0.068400px;}
.ls12{letter-spacing:0.086400px;}
.ls1{letter-spacing:0.090000px;}
.ls10{letter-spacing:0.098400px;}
.ls4{letter-spacing:0.144000px;}
.lsc{letter-spacing:0.173400px;}
.ls11{letter-spacing:0.180000px;}
.ls13{letter-spacing:0.806400px;}
.ls14{letter-spacing:2.606400px;}
.ls0{letter-spacing:13.347360px;}
.ls16{letter-spacing:47.726640px;}
.ls15{letter-spacing:80.846640px;}
.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;}
}
.ws4{word-spacing:-14.493600px;}
.ws8{word-spacing:-14.372400px;}
.ws7{word-spacing:-13.399800px;}
.wsb{word-spacing:-13.324800px;}
.ws9{word-spacing:-13.294800px;}
.wsa{word-spacing:-13.278240px;}
.ws2{word-spacing:-13.226400px;}
.ws6{word-spacing:-13.039800px;}
.ws0{word-spacing:-9.810000px;}
.ws1{word-spacing:-9.765000px;}
.ws5{word-spacing:0.000000px;}
.ws3{word-spacing:4.304880px;}
._11{margin-left:-4.300800px;}
._a{margin-left:-3.246480px;}
._8{margin-left:-2.180292px;}
._0{margin-left:-1.110000px;}
._1{width:1.006812px;}
._4{width:2.029765px;}
._6{width:3.169857px;}
._2{width:4.808976px;}
._9{width:5.961436px;}
._5{width:7.054819px;}
._f{width:8.615723px;}
._3{width:9.979800px;}
._7{width:11.062200px;}
._e{width:12.171840px;}
._10{width:14.428800px;}
._b{width:15.991920px;}
._c{width:17.194320px;}
._d{width:24.168240px;}
._14{width:25.430760px;}
._16{width:26.528148px;}
._15{width:28.076040px;}
._12{width:49.659120px;}
._13{width:50.709000px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:38.880000px;}
.fs5{font-size:42.120000px;}
.fs2{font-size:45.000000px;}
.fs1{font-size:54.000000px;}
.fs6{font-size:60.120000px;}
.fs4{font-size:65.880000px;}
.fs3{font-size:83.880000px;}
.y0{bottom:0.000000px;}
.y59{bottom:7.830000px;}
.y5e{bottom:7.860000px;}
.y5b{bottom:7.920000px;}
.y73{bottom:7.950000px;}
.y107{bottom:25.380000px;}
.y113{bottom:25.470000px;}
.y104{bottom:25.500000px;}
.yd0{bottom:29.970000px;}
.y2{bottom:73.380000px;}
.y29{bottom:74.190000px;}
.y1{bottom:100.200000px;}
.y135{bottom:114.780000px;}
.y17a{bottom:117.390000px;}
.y10f{bottom:125.130000px;}
.y190{bottom:128.640000px;}
.yb8{bottom:129.180000px;}
.y27{bottom:129.360000px;}
.ya6{bottom:131.520000px;}
.y134{bottom:132.420000px;}
.y7f{bottom:134.760000px;}
.y179{bottom:134.940000px;}
.y18f{bottom:146.190000px;}
.y26{bottom:146.910000px;}
.y157{bottom:148.170000px;}
.ya5{bottom:149.070000px;}
.y133{bottom:149.970000px;}
.y57{bottom:150.150000px;}
.y178{bottom:152.580000px;}
.yb7{bottom:156.540000px;}
.y7e{bottom:162.120000px;}
.y25{bottom:164.460000px;}
.y156{bottom:165.720000px;}
.ya4{bottom:166.620000px;}
.y132{bottom:167.610000px;}
.y177{bottom:170.130000px;}
.y18e{bottom:172.740000px;}
.y10e{bottom:174.540000px;}
.yf3{bottom:177.240000px;}
.yce{bottom:178.860000px;}
.y155{bottom:183.270000px;}
.yb6{bottom:183.900000px;}
.ya3{bottom:184.260000px;}
.y56{bottom:185.700000px;}
.y7d{bottom:189.480000px;}
.y18d{bottom:190.380000px;}
.y24{bottom:191.370000px;}
.y154{bottom:200.910000px;}
.ya2{bottom:201.810000px;}
.y10d{bottom:201.900000px;}
.y131{bottom:203.160000px;}
.y55{bottom:203.250000px;}
.y176{bottom:205.680000px;}
.y18c{bottom:207.930000px;}
.yb5{bottom:211.260000px;}
.yf2{bottom:212.790000px;}
.ycd{bottom:214.410000px;}
.y7c{bottom:216.840000px;}
.y153{bottom:218.460000px;}
.ya1{bottom:219.450000px;}
.y130{bottom:220.710000px;}
.y54{bottom:220.890000px;}
.y175{bottom:223.320000px;}
.y10c{bottom:229.260000px;}
.yf1{bottom:230.430000px;}
.y18b{bottom:234.570000px;}
.y152{bottom:236.100000px;}
.y12f{bottom:238.350000px;}
.y53{bottom:238.440000px;}
.yb4{bottom:238.530000px;}
.y23{bottom:239.700000px;}
.y174{bottom:240.870000px;}
.y7b{bottom:244.110000px;}
.yf0{bottom:247.980000px;}
.ycc{bottom:249.960000px;}
.ya0{bottom:252.390000px;}
.y151{bottom:253.650000px;}
.y12e{bottom:255.900000px;}
.y52{bottom:256.080000px;}
.y22{bottom:257.610000px;}
.y173{bottom:258.510000px;}
.y18a{bottom:261.390000px;}
.yef{bottom:265.620000px;}
.yb3{bottom:265.890000px;}
.ycb{bottom:267.600000px;}
.y150{bottom:271.200000px;}
.y7a{bottom:271.470000px;}
.y12d{bottom:273.540000px;}
.y10b{bottom:274.170000px;}
.y172{bottom:276.060000px;}
.y9f{bottom:279.750000px;}
.y51{bottom:282.990000px;}
.yee{bottom:283.170000px;}
.yca{bottom:285.150000px;}
.y12c{bottom:291.090000px;}
.yb2{bottom:293.250000px;}
.y171{bottom:293.610000px;}
.y21{bottom:294.600000px;}
.y79{bottom:298.830000px;}
.yed{bottom:300.720000px;}
.y10a{bottom:301.440000px;}
.yc9{bottom:302.790000px;}
.y14f{bottom:306.840000px;}
.y9e{bottom:307.020000px;}
.y12b{bottom:308.640000px;}
.y189{bottom:309.900000px;}
.y170{bottom:311.250000px;}
.y20{bottom:312.150000px;}
.yec{bottom:318.360000px;}
.yc8{bottom:320.340000px;}
.yb1{bottom:320.520000px;}
.y14e{bottom:324.390000px;}
.y78{bottom:326.190000px;}
.y12a{bottom:326.280000px;}
.y109{bottom:328.800000px;}
.y1f{bottom:329.790000px;}
.y50{bottom:331.230000px;}
.y9d{bottom:334.380000px;}
.yeb{bottom:335.910000px;}
.yc7{bottom:337.890000px;}
.y188{bottom:337.980000px;}
.y129{bottom:343.830000px;}
.y16f{bottom:346.440000px;}
.y1e{bottom:347.340000px;}
.yb0{bottom:347.880000px;}
.y4f{bottom:348.780000px;}
.y77{bottom:353.460000px;}
.yea{bottom:353.550000px;}
.yc6{bottom:355.530000px;}
.y108{bottom:356.160000px;}
.y14d{bottom:359.940000px;}
.y9c{bottom:361.740000px;}
.y16e{bottom:363.990000px;}
.y1d{bottom:364.980000px;}
.y4e{bottom:366.420000px;}
.ye9{bottom:371.100000px;}
.yaf{bottom:375.240000px;}
.y14c{bottom:377.580000px;}
.y128{bottom:379.470000px;}
.y76{bottom:380.820000px;}
.y16d{bottom:381.540000px;}
.y106{bottom:383.520000px;}
.y4d{bottom:383.970000px;}
.ye8{bottom:388.650000px;}
.y9b{bottom:389.100000px;}
.yc5{bottom:391.080000px;}
.y187{bottom:394.230000px;}
.y14b{bottom:395.130000px;}
.y127{bottom:397.020000px;}
.y1c{bottom:400.530000px;}
.y4c{bottom:401.610000px;}
.yae{bottom:402.600000px;}
.y75{bottom:408.180000px;}
.yc4{bottom:408.720000px;}
.y14a{bottom:412.770000px;}
.y126{bottom:414.570000px;}
.y9a{bottom:416.370000px;}
.y16c{bottom:417.180000px;}
.y1b{bottom:418.080000px;}
.y4b{bottom:419.160000px;}
.ye7{bottom:421.680000px;}
.y186{bottom:422.310000px;}
.yc3{bottom:426.270000px;}
.y105{bottom:428.430000px;}
.y149{bottom:430.320000px;}
.y125{bottom:432.210000px;}
.y16b{bottom:434.730000px;}
.y74{bottom:435.450000px;}
.y1a{bottom:435.720000px;}
.y4a{bottom:436.710000px;}
.y99{bottom:443.730000px;}
.yc2{bottom:443.820000px;}
.y148{bottom:447.870000px;}
.ye6{bottom:448.950000px;}
.y124{bottom:449.760000px;}
.yad{bottom:451.290000px;}
.y16a{bottom:452.370000px;}
.y19{bottom:453.270000px;}
.y49{bottom:454.350000px;}
.y103{bottom:455.700000px;}
.y185{bottom:459.300000px;}
.yc1{bottom:461.460000px;}
.y72{bottom:462.810000px;}
.y169{bottom:469.950000px;}
.y18{bottom:470.940000px;}
.y98{bottom:471.120000px;}
.ye5{bottom:476.340000px;}
.yc0{bottom:479.040000px;}
.y123{bottom:482.730000px;}
.y147{bottom:483.540000px;}
.y184{bottom:486.240000px;}
.yac{bottom:486.870000px;}
.y168{bottom:487.500000px;}
.y17{bottom:488.490000px;}
.y48{bottom:489.930000px;}
.y71{bottom:490.200000px;}
.ybf{bottom:496.590000px;}
.y97{bottom:498.480000px;}
.y102{bottom:500.730000px;}
.y146{bottom:501.090000px;}
.ye4{bottom:503.700000px;}
.yab{bottom:504.510000px;}
.y167{bottom:505.140000px;}
.y16{bottom:506.040000px;}
.y47{bottom:507.480000px;}
.y122{bottom:510.090000px;}
.ybe{bottom:514.230000px;}
.y70{bottom:517.560000px;}
.y145{bottom:518.730000px;}
.yaa{bottom:522.060000px;}
.y166{bottom:522.690000px;}
.y183{bottom:523.590000px;}
.y15{bottom:523.680000px;}
.y46{bottom:525.120000px;}
.y96{bottom:525.750000px;}
.y101{bottom:528.000000px;}
.ye3{bottom:531.060000px;}
.ybd{bottom:531.780000px;}
.y144{bottom:536.280000px;}
.y121{bottom:537.450000px;}
.ya9{bottom:539.610000px;}
.y165{bottom:540.330000px;}
.y14{bottom:541.230000px;}
.y45{bottom:542.670000px;}
.y6f{bottom:544.830000px;}
.ybc{bottom:549.420000px;}
.y95{bottom:553.110000px;}
.y143{bottom:553.830000px;}
.y100{bottom:555.360000px;}
.ya8{bottom:557.250000px;}
.y164{bottom:557.880000px;}
.ye2{bottom:558.330000px;}
.y13{bottom:558.780000px;}
.y44{bottom:560.310000px;}
.y120{bottom:564.810000px;}
.ybb{bottom:566.970000px;}
.y182{bottom:571.830000px;}
.y6e{bottom:572.190000px;}
.ya7{bottom:574.800000px;}
.y12{bottom:576.420000px;}
.y43{bottom:577.860000px;}
.y94{bottom:580.470000px;}
.yff{bottom:582.720000px;}
.y1a6{bottom:584.070000px;}
.yba{bottom:584.520000px;}
.ye1{bottom:585.690000px;}
.y142{bottom:589.470000px;}
.y11f{bottom:592.080000px;}
.y163{bottom:593.430000px;}
.y11{bottom:593.970000px;}
.y42{bottom:595.410000px;}
.y6d{bottom:599.550000px;}
.y1a5{bottom:601.620000px;}
.yb9{bottom:602.160000px;}
.y141{bottom:607.020000px;}
.y93{bottom:607.740000px;}
.y162{bottom:611.070000px;}
.y41{bottom:613.050000px;}
.y1a4{bottom:619.260000px;}
.y140{bottom:624.660000px;}
.y6c{bottom:626.910000px;}
.y161{bottom:628.620000px;}
.y10{bottom:629.610000px;}
.yfe{bottom:632.130000px;}
.ye0{bottom:634.380000px;}
.y92{bottom:635.100000px;}
.y11e{bottom:636.990000px;}
.y40{bottom:639.960000px;}
.y13f{bottom:642.210000px;}
.y1a3{bottom:645.810000px;}
.y160{bottom:646.260000px;}
.yf{bottom:647.160000px;}
.y6b{bottom:654.180000px;}
.yfd{bottom:659.490000px;}
.y13e{bottom:659.760000px;}
.y91{bottom:662.460000px;}
.y1a2{bottom:663.360000px;}
.y15f{bottom:663.810000px;}
.y11d{bottom:664.350000px;}
.ye{bottom:664.710000px;}
.ydf{bottom:670.020000px;}
.y13d{bottom:677.400000px;}
.y15e{bottom:681.360000px;}
.y6a{bottom:681.540000px;}
.yd{bottom:682.350000px;}
.y181{bottom:686.670000px;}
.yfc{bottom:686.760000px;}
.yde{bottom:687.570000px;}
.y3f{bottom:688.200000px;}
.y90{bottom:689.820000px;}
.y1a1{bottom:690.000000px;}
.y11c{bottom:691.710000px;}
.y13c{bottom:694.950000px;}
.y15d{bottom:699.000000px;}
.y3e{bottom:705.840000px;}
.y1a0{bottom:707.550000px;}
.y69{bottom:708.900000px;}
.y13b{bottom:712.590000px;}
.yfb{bottom:714.120000px;}
.y8f{bottom:717.090000px;}
.yc{bottom:717.900000px;}
.y11b{bottom:719.070000px;}
.ydd{bottom:723.120000px;}
.y19f{bottom:725.190000px;}
.y15c{bottom:734.550000px;}
.y180{bottom:735.000000px;}
.yb{bottom:735.540000px;}
.y68{bottom:736.170000px;}
.y13a{bottom:739.500000px;}
.ydc{bottom:740.760000px;}
.y3d{bottom:741.390000px;}
.yfa{bottom:741.480000px;}
.y8e{bottom:744.450000px;}
.y11a{bottom:746.340000px;}
.y19e{bottom:751.740000px;}
.y15b{bottom:752.190000px;}
.y17f{bottom:752.550000px;}
.y3c{bottom:758.940000px;}
.ya{bottom:762.450000px;}
.y67{bottom:763.530000px;}
.yf9{bottom:768.750000px;}
.y19d{bottom:769.290000px;}
.y15a{bottom:769.740000px;}
.y17e{bottom:770.190000px;}
.y8d{bottom:771.810000px;}
.y119{bottom:773.700000px;}
.ydb{bottom:776.310000px;}
.y3b{bottom:785.850000px;}
.y159{bottom:787.290000px;}
.y139{bottom:787.740000px;}
.y66{bottom:790.890000px;}
.yda{bottom:793.950000px;}
.y19c{bottom:795.930000px;}
.yf8{bottom:796.110000px;}
.y8c{bottom:799.170000px;}
.y118{bottom:801.060000px;}
.y158{bottom:804.930000px;}
.y138{bottom:805.290000px;}
.y9{bottom:810.690000px;}
.yd9{bottom:811.500000px;}
.y19b{bottom:813.480000px;}
.y65{bottom:818.250000px;}
.y3a{bottom:822.930000px;}
.yf7{bottom:823.470000px;}
.y8b{bottom:826.440000px;}
.y19a{bottom:840.030000px;}
.y39{bottom:840.480000px;}
.y64{bottom:845.520000px;}
.y117{bottom:845.970000px;}
.y8{bottom:846.510000px;}
.yd8{bottom:847.050000px;}
.yf6{bottom:850.830000px;}
.y8a{bottom:853.800000px;}
.y199{bottom:857.670000px;}
.y38{bottom:858.030000px;}
.yd7{bottom:864.690000px;}
.y63{bottom:872.880000px;}
.y116{bottom:873.330000px;}
.y37{bottom:875.670000px;}
.y17d{bottom:876.030000px;}
.yf5{bottom:878.100000px;}
.y89{bottom:881.160000px;}
.yd6{bottom:882.240000px;}
.y7{bottom:882.510000px;}
.y198{bottom:884.220000px;}
.y36{bottom:893.220000px;}
.y17c{bottom:893.670000px;}
.y62{bottom:900.240000px;}
.y115{bottom:900.600000px;}
.y197{bottom:901.860000px;}
.yf4{bottom:905.460000px;}
.y88{bottom:908.430000px;}
.y137{bottom:910.860000px;}
.y17b{bottom:911.220000px;}
.yd5{bottom:915.180000px;}
.y6{bottom:918.510000px;}
.y61{bottom:927.600000px;}
.y114{bottom:927.960000px;}
.y196{bottom:928.410000px;}
.y35{bottom:928.860000px;}
.y87{bottom:935.790000px;}
.yd4{bottom:942.540000px;}
.y195{bottom:945.960000px;}
.y34{bottom:946.410000px;}
.y5{bottom:954.600000px;}
.y60{bottom:954.870000px;}
.y112{bottom:955.320000px;}
.y86{bottom:963.150000px;}
.y33{bottom:963.960000px;}
.yd3{bottom:969.900000px;}
.y194{bottom:972.600000px;}
.y4{bottom:973.950000px;}
.y32{bottom:981.600000px;}
.y5f{bottom:982.230000px;}
.y193{bottom:990.150000px;}
.y85{bottom:990.510000px;}
.yd2{bottom:997.260000px;}
.y31{bottom:999.150000px;}
.y111{bottom:1000.230000px;}
.y5d{bottom:1009.590000px;}
.y3{bottom:1012.230000px;}
.y30{bottom:1016.820000px;}
.y84{bottom:1017.810000px;}
.yd1{bottom:1024.560000px;}
.y110{bottom:1027.620000px;}
.y2f{bottom:1034.370000px;}
.y5c{bottom:1036.890000px;}
.y83{bottom:1045.170000px;}
.ycf{bottom:1051.920000px;}
.y5a{bottom:1064.250000px;}
.y136{bottom:1069.560000px;}
.y2e{bottom:1069.920000px;}
.y82{bottom:1072.530000px;}
.y192{bottom:1078.560000px;}
.y2d{bottom:1087.560000px;}
.y58{bottom:1091.610000px;}
.y191{bottom:1096.110000px;}
.y81{bottom:1099.890000px;}
.y2c{bottom:1105.110000px;}
.y2b{bottom:1122.750000px;}
.y80{bottom:1127.160000px;}
.y2a{bottom:1140.300000px;}
.y28{bottom:1194.300000px;}
.h8{height:26.550000px;}
.ha{height:26.580000px;}
.h9{height:26.640000px;}
.hb{height:26.670000px;}
.h2{height:32.918906px;}
.h3{height:38.100586px;}
.he{height:44.100000px;}
.hf{height:44.190000px;}
.hd{height:44.220000px;}
.hc{height:48.690000px;}
.h6{height:50.902383px;}
.h5{height:55.779258px;}
.h11{height:61.793886px;}
.h10{height:64.657617px;}
.h7{height:68.582109px;}
.h4{height:71.019492px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w19{width:51.750000px;}
.w16{width:65.100000px;}
.w13{width:67.320000px;}
.w11{width:84.870000px;}
.wb{width:88.050000px;}
.w18{width:103.860000px;}
.w17{width:108.180000px;}
.w15{width:110.880000px;}
.we{width:121.710000px;}
.w5{width:123.030000px;}
.w7{width:123.120000px;}
.wd{width:127.800000px;}
.wa{width:148.530000px;}
.w4{width:148.620000px;}
.wc{width:151.650000px;}
.w10{width:171.540000px;}
.wf{width:179.730000px;}
.w12{width:187.500000px;}
.w3{width:201.690000px;}
.w6{width:274.410000px;}
.w9{width:294.570000px;}
.w14{width:312.240000px;}
.w1b{width:442.740000px;}
.w8{width:547.590000px;}
.w1a{width:755.700000px;}
.w2{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x5{left:7.740000px;}
.x1{left:68.040000px;}
.xe{left:110.610000px;}
.xb{left:162.750000px;}
.x8{left:172.830000px;}
.x13{left:189.930000px;}
.x2{left:192.719987px;}
.xf{left:199.380000px;}
.x4{left:209.190000px;}
.x10{left:351.750000px;}
.x14{left:362.280000px;}
.x16{left:381.720000px;}
.x6{left:411.690000px;}
.x9{left:447.960000px;}
.xc{left:458.130000px;}
.x11{left:480.360000px;}
.x17{left:493.410000px;}
.x18{left:559.230000px;}
.x7{left:561.030000px;}
.xa{left:597.300000px;}
.x12{left:602.880000px;}
.xd{left:607.470000px;}
.x15{left:636.090000px;}
.x19{left:668.130000px;}
.x1a{left:772.710000px;}
.x3{left:800.339987px;}
@media print{
.v1{vertical-align:-13.440000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:13.440000pt;}
.ls8{letter-spacing:-0.348267pt;}
.lsb{letter-spacing:-0.165867pt;}
.ls6{letter-spacing:-0.120000pt;}
.ls9{letter-spacing:-0.107733pt;}
.ls5{letter-spacing:-0.080000pt;}
.ls7{letter-spacing:-0.075200pt;}
.lsd{letter-spacing:-0.013120pt;}
.ls3{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.013120pt;}
.lsa{letter-spacing:0.040320pt;}
.lsf{letter-spacing:0.046080pt;}
.lse{letter-spacing:0.060800pt;}
.ls12{letter-spacing:0.076800pt;}
.ls1{letter-spacing:0.080000pt;}
.ls10{letter-spacing:0.087467pt;}
.ls4{letter-spacing:0.128000pt;}
.lsc{letter-spacing:0.154133pt;}
.ls11{letter-spacing:0.160000pt;}
.ls13{letter-spacing:0.716800pt;}
.ls14{letter-spacing:2.316800pt;}
.ls0{letter-spacing:11.864320pt;}
.ls16{letter-spacing:42.423680pt;}
.ls15{letter-spacing:71.863680pt;}
.ws4{word-spacing:-12.883200pt;}
.ws8{word-spacing:-12.775467pt;}
.ws7{word-spacing:-11.910933pt;}
.wsb{word-spacing:-11.844267pt;}
.ws9{word-spacing:-11.817600pt;}
.wsa{word-spacing:-11.802880pt;}
.ws2{word-spacing:-11.756800pt;}
.ws6{word-spacing:-11.590933pt;}
.ws0{word-spacing:-8.720000pt;}
.ws1{word-spacing:-8.680000pt;}
.ws5{word-spacing:0.000000pt;}
.ws3{word-spacing:3.826560pt;}
._11{margin-left:-3.822933pt;}
._a{margin-left:-2.885760pt;}
._8{margin-left:-1.938037pt;}
._0{margin-left:-0.986667pt;}
._1{width:0.894944pt;}
._4{width:1.804236pt;}
._6{width:2.817651pt;}
._2{width:4.274646pt;}
._9{width:5.299055pt;}
._5{width:6.270950pt;}
._f{width:7.658420pt;}
._3{width:8.870933pt;}
._7{width:9.833067pt;}
._e{width:10.819413pt;}
._10{width:12.825600pt;}
._b{width:14.215040pt;}
._c{width:15.283840pt;}
._d{width:21.482880pt;}
._14{width:22.605120pt;}
._16{width:23.580576pt;}
._15{width:24.956480pt;}
._12{width:44.141440pt;}
._13{width:45.074667pt;}
.fs0{font-size:34.560000pt;}
.fs5{font-size:37.440000pt;}
.fs2{font-size:40.000000pt;}
.fs1{font-size:48.000000pt;}
.fs6{font-size:53.440000pt;}
.fs4{font-size:58.560000pt;}
.fs3{font-size:74.560000pt;}
.y0{bottom:0.000000pt;}
.y59{bottom:6.960000pt;}
.y5e{bottom:6.986667pt;}
.y5b{bottom:7.040000pt;}
.y73{bottom:7.066667pt;}
.y107{bottom:22.560000pt;}
.y113{bottom:22.640000pt;}
.y104{bottom:22.666667pt;}
.yd0{bottom:26.640000pt;}
.y2{bottom:65.226667pt;}
.y29{bottom:65.946667pt;}
.y1{bottom:89.066667pt;}
.y135{bottom:102.026667pt;}
.y17a{bottom:104.346667pt;}
.y10f{bottom:111.226667pt;}
.y190{bottom:114.346667pt;}
.yb8{bottom:114.826667pt;}
.y27{bottom:114.986667pt;}
.ya6{bottom:116.906667pt;}
.y134{bottom:117.706667pt;}
.y7f{bottom:119.786667pt;}
.y179{bottom:119.946667pt;}
.y18f{bottom:129.946667pt;}
.y26{bottom:130.586667pt;}
.y157{bottom:131.706667pt;}
.ya5{bottom:132.506667pt;}
.y133{bottom:133.306667pt;}
.y57{bottom:133.466667pt;}
.y178{bottom:135.626667pt;}
.yb7{bottom:139.146667pt;}
.y7e{bottom:144.106667pt;}
.y25{bottom:146.186667pt;}
.y156{bottom:147.306667pt;}
.ya4{bottom:148.106667pt;}
.y132{bottom:148.986667pt;}
.y177{bottom:151.226667pt;}
.y18e{bottom:153.546667pt;}
.y10e{bottom:155.146667pt;}
.yf3{bottom:157.546667pt;}
.yce{bottom:158.986667pt;}
.y155{bottom:162.906667pt;}
.yb6{bottom:163.466667pt;}
.ya3{bottom:163.786667pt;}
.y56{bottom:165.066667pt;}
.y7d{bottom:168.426667pt;}
.y18d{bottom:169.226667pt;}
.y24{bottom:170.106667pt;}
.y154{bottom:178.586667pt;}
.ya2{bottom:179.386667pt;}
.y10d{bottom:179.466667pt;}
.y131{bottom:180.586667pt;}
.y55{bottom:180.666667pt;}
.y176{bottom:182.826667pt;}
.y18c{bottom:184.826667pt;}
.yb5{bottom:187.786667pt;}
.yf2{bottom:189.146667pt;}
.ycd{bottom:190.586667pt;}
.y7c{bottom:192.746667pt;}
.y153{bottom:194.186667pt;}
.ya1{bottom:195.066667pt;}
.y130{bottom:196.186667pt;}
.y54{bottom:196.346667pt;}
.y175{bottom:198.506667pt;}
.y10c{bottom:203.786667pt;}
.yf1{bottom:204.826667pt;}
.y18b{bottom:208.506667pt;}
.y152{bottom:209.866667pt;}
.y12f{bottom:211.866667pt;}
.y53{bottom:211.946667pt;}
.yb4{bottom:212.026667pt;}
.y23{bottom:213.066667pt;}
.y174{bottom:214.106667pt;}
.y7b{bottom:216.986667pt;}
.yf0{bottom:220.426667pt;}
.ycc{bottom:222.186667pt;}
.ya0{bottom:224.346667pt;}
.y151{bottom:225.466667pt;}
.y12e{bottom:227.466667pt;}
.y52{bottom:227.626667pt;}
.y22{bottom:228.986667pt;}
.y173{bottom:229.786667pt;}
.y18a{bottom:232.346667pt;}
.yef{bottom:236.106667pt;}
.yb3{bottom:236.346667pt;}
.ycb{bottom:237.866667pt;}
.y150{bottom:241.066667pt;}
.y7a{bottom:241.306667pt;}
.y12d{bottom:243.146667pt;}
.y10b{bottom:243.706667pt;}
.y172{bottom:245.386667pt;}
.y9f{bottom:248.666667pt;}
.y51{bottom:251.546667pt;}
.yee{bottom:251.706667pt;}
.yca{bottom:253.466667pt;}
.y12c{bottom:258.746667pt;}
.yb2{bottom:260.666667pt;}
.y171{bottom:260.986667pt;}
.y21{bottom:261.866667pt;}
.y79{bottom:265.626667pt;}
.yed{bottom:267.306667pt;}
.y10a{bottom:267.946667pt;}
.yc9{bottom:269.146667pt;}
.y14f{bottom:272.746667pt;}
.y9e{bottom:272.906667pt;}
.y12b{bottom:274.346667pt;}
.y189{bottom:275.466667pt;}
.y170{bottom:276.666667pt;}
.y20{bottom:277.466667pt;}
.yec{bottom:282.986667pt;}
.yc8{bottom:284.746667pt;}
.yb1{bottom:284.906667pt;}
.y14e{bottom:288.346667pt;}
.y78{bottom:289.946667pt;}
.y12a{bottom:290.026667pt;}
.y109{bottom:292.266667pt;}
.y1f{bottom:293.146667pt;}
.y50{bottom:294.426667pt;}
.y9d{bottom:297.226667pt;}
.yeb{bottom:298.586667pt;}
.yc7{bottom:300.346667pt;}
.y188{bottom:300.426667pt;}
.y129{bottom:305.626667pt;}
.y16f{bottom:307.946667pt;}
.y1e{bottom:308.746667pt;}
.yb0{bottom:309.226667pt;}
.y4f{bottom:310.026667pt;}
.y77{bottom:314.186667pt;}
.yea{bottom:314.266667pt;}
.yc6{bottom:316.026667pt;}
.y108{bottom:316.586667pt;}
.y14d{bottom:319.946667pt;}
.y9c{bottom:321.546667pt;}
.y16e{bottom:323.546667pt;}
.y1d{bottom:324.426667pt;}
.y4e{bottom:325.706667pt;}
.ye9{bottom:329.866667pt;}
.yaf{bottom:333.546667pt;}
.y14c{bottom:335.626667pt;}
.y128{bottom:337.306667pt;}
.y76{bottom:338.506667pt;}
.y16d{bottom:339.146667pt;}
.y106{bottom:340.906667pt;}
.y4d{bottom:341.306667pt;}
.ye8{bottom:345.466667pt;}
.y9b{bottom:345.866667pt;}
.yc5{bottom:347.626667pt;}
.y187{bottom:350.426667pt;}
.y14b{bottom:351.226667pt;}
.y127{bottom:352.906667pt;}
.y1c{bottom:356.026667pt;}
.y4c{bottom:356.986667pt;}
.yae{bottom:357.866667pt;}
.y75{bottom:362.826667pt;}
.yc4{bottom:363.306667pt;}
.y14a{bottom:366.906667pt;}
.y126{bottom:368.506667pt;}
.y9a{bottom:370.106667pt;}
.y16c{bottom:370.826667pt;}
.y1b{bottom:371.626667pt;}
.y4b{bottom:372.586667pt;}
.ye7{bottom:374.826667pt;}
.y186{bottom:375.386667pt;}
.yc3{bottom:378.906667pt;}
.y105{bottom:380.826667pt;}
.y149{bottom:382.506667pt;}
.y125{bottom:384.186667pt;}
.y16b{bottom:386.426667pt;}
.y74{bottom:387.066667pt;}
.y1a{bottom:387.306667pt;}
.y4a{bottom:388.186667pt;}
.y99{bottom:394.426667pt;}
.yc2{bottom:394.506667pt;}
.y148{bottom:398.106667pt;}
.ye6{bottom:399.066667pt;}
.y124{bottom:399.786667pt;}
.yad{bottom:401.146667pt;}
.y16a{bottom:402.106667pt;}
.y19{bottom:402.906667pt;}
.y49{bottom:403.866667pt;}
.y103{bottom:405.066667pt;}
.y185{bottom:408.266667pt;}
.yc1{bottom:410.186667pt;}
.y72{bottom:411.386667pt;}
.y169{bottom:417.733333pt;}
.y18{bottom:418.613333pt;}
.y98{bottom:418.773333pt;}
.ye5{bottom:423.413333pt;}
.yc0{bottom:425.813333pt;}
.y123{bottom:429.093333pt;}
.y147{bottom:429.813333pt;}
.y184{bottom:432.213333pt;}
.yac{bottom:432.773333pt;}
.y168{bottom:433.333333pt;}
.y17{bottom:434.213333pt;}
.y48{bottom:435.493333pt;}
.y71{bottom:435.733333pt;}
.ybf{bottom:441.413333pt;}
.y97{bottom:443.093333pt;}
.y102{bottom:445.093333pt;}
.y146{bottom:445.413333pt;}
.ye4{bottom:447.733333pt;}
.yab{bottom:448.453333pt;}
.y167{bottom:449.013333pt;}
.y16{bottom:449.813333pt;}
.y47{bottom:451.093333pt;}
.y122{bottom:453.413333pt;}
.ybe{bottom:457.093333pt;}
.y70{bottom:460.053333pt;}
.y145{bottom:461.093333pt;}
.yaa{bottom:464.053333pt;}
.y166{bottom:464.613333pt;}
.y183{bottom:465.413333pt;}
.y15{bottom:465.493333pt;}
.y46{bottom:466.773333pt;}
.y96{bottom:467.333333pt;}
.y101{bottom:469.333333pt;}
.ye3{bottom:472.053333pt;}
.ybd{bottom:472.693333pt;}
.y144{bottom:476.693333pt;}
.y121{bottom:477.733333pt;}
.ya9{bottom:479.653333pt;}
.y165{bottom:480.293333pt;}
.y14{bottom:481.093333pt;}
.y45{bottom:482.373333pt;}
.y6f{bottom:484.293333pt;}
.ybc{bottom:488.373333pt;}
.y95{bottom:491.653333pt;}
.y143{bottom:492.293333pt;}
.y100{bottom:493.653333pt;}
.ya8{bottom:495.333333pt;}
.y164{bottom:495.893333pt;}
.ye2{bottom:496.293333pt;}
.y13{bottom:496.693333pt;}
.y44{bottom:498.053333pt;}
.y120{bottom:502.053333pt;}
.ybb{bottom:503.973333pt;}
.y182{bottom:508.293333pt;}
.y6e{bottom:508.613333pt;}
.ya7{bottom:510.933333pt;}
.y12{bottom:512.373333pt;}
.y43{bottom:513.653333pt;}
.y94{bottom:515.973333pt;}
.yff{bottom:517.973333pt;}
.y1a6{bottom:519.173333pt;}
.yba{bottom:519.573333pt;}
.ye1{bottom:520.613333pt;}
.y142{bottom:523.973333pt;}
.y11f{bottom:526.293333pt;}
.y163{bottom:527.493333pt;}
.y11{bottom:527.973333pt;}
.y42{bottom:529.253333pt;}
.y6d{bottom:532.933333pt;}
.y1a5{bottom:534.773333pt;}
.yb9{bottom:535.253333pt;}
.y141{bottom:539.573333pt;}
.y93{bottom:540.213333pt;}
.y162{bottom:543.173333pt;}
.y41{bottom:544.933333pt;}
.y1a4{bottom:550.453333pt;}
.y140{bottom:555.253333pt;}
.y6c{bottom:557.253333pt;}
.y161{bottom:558.773333pt;}
.y10{bottom:559.653333pt;}
.yfe{bottom:561.893333pt;}
.ye0{bottom:563.893333pt;}
.y92{bottom:564.533333pt;}
.y11e{bottom:566.213333pt;}
.y40{bottom:568.853333pt;}
.y13f{bottom:570.853333pt;}
.y1a3{bottom:574.053333pt;}
.y160{bottom:574.453333pt;}
.yf{bottom:575.253333pt;}
.y6b{bottom:581.493333pt;}
.yfd{bottom:586.213333pt;}
.y13e{bottom:586.453333pt;}
.y91{bottom:588.853333pt;}
.y1a2{bottom:589.653333pt;}
.y15f{bottom:590.053333pt;}
.y11d{bottom:590.533333pt;}
.ye{bottom:590.853333pt;}
.ydf{bottom:595.573333pt;}
.y13d{bottom:602.133333pt;}
.y15e{bottom:605.653333pt;}
.y6a{bottom:605.813333pt;}
.yd{bottom:606.533333pt;}
.y181{bottom:610.373333pt;}
.yfc{bottom:610.453333pt;}
.yde{bottom:611.173333pt;}
.y3f{bottom:611.733333pt;}
.y90{bottom:613.173333pt;}
.y1a1{bottom:613.333333pt;}
.y11c{bottom:614.853333pt;}
.y13c{bottom:617.733333pt;}
.y15d{bottom:621.333333pt;}
.y3e{bottom:627.413333pt;}
.y1a0{bottom:628.933333pt;}
.y69{bottom:630.133333pt;}
.y13b{bottom:633.413333pt;}
.yfb{bottom:634.773333pt;}
.y8f{bottom:637.413333pt;}
.yc{bottom:638.133333pt;}
.y11b{bottom:639.173333pt;}
.ydd{bottom:642.773333pt;}
.y19f{bottom:644.613333pt;}
.y15c{bottom:652.933333pt;}
.y180{bottom:653.333333pt;}
.yb{bottom:653.813333pt;}
.y68{bottom:654.373333pt;}
.y13a{bottom:657.333333pt;}
.ydc{bottom:658.453333pt;}
.y3d{bottom:659.013333pt;}
.yfa{bottom:659.093333pt;}
.y8e{bottom:661.733333pt;}
.y11a{bottom:663.413333pt;}
.y19e{bottom:668.213333pt;}
.y15b{bottom:668.613333pt;}
.y17f{bottom:668.933333pt;}
.y3c{bottom:674.613333pt;}
.ya{bottom:677.733333pt;}
.y67{bottom:678.693333pt;}
.yf9{bottom:683.333333pt;}
.y19d{bottom:683.813333pt;}
.y15a{bottom:684.213333pt;}
.y17e{bottom:684.613333pt;}
.y8d{bottom:686.053333pt;}
.y119{bottom:687.733333pt;}
.ydb{bottom:690.053333pt;}
.y3b{bottom:698.533333pt;}
.y159{bottom:699.813333pt;}
.y139{bottom:700.213333pt;}
.y66{bottom:703.013333pt;}
.yda{bottom:705.733333pt;}
.y19c{bottom:707.493333pt;}
.yf8{bottom:707.653333pt;}
.y8c{bottom:710.373333pt;}
.y118{bottom:712.053333pt;}
.y158{bottom:715.493333pt;}
.y138{bottom:715.813333pt;}
.y9{bottom:720.613333pt;}
.yd9{bottom:721.333333pt;}
.y19b{bottom:723.093333pt;}
.y65{bottom:727.333333pt;}
.y3a{bottom:731.493333pt;}
.yf7{bottom:731.973333pt;}
.y8b{bottom:734.613333pt;}
.y19a{bottom:746.693333pt;}
.y39{bottom:747.093333pt;}
.y64{bottom:751.573333pt;}
.y117{bottom:751.973333pt;}
.y8{bottom:752.453333pt;}
.yd8{bottom:752.933333pt;}
.yf6{bottom:756.293333pt;}
.y8a{bottom:758.933333pt;}
.y199{bottom:762.373333pt;}
.y38{bottom:762.693333pt;}
.yd7{bottom:768.613333pt;}
.y63{bottom:775.893333pt;}
.y116{bottom:776.293333pt;}
.y37{bottom:778.373333pt;}
.y17d{bottom:778.693333pt;}
.yf5{bottom:780.533333pt;}
.y89{bottom:783.253333pt;}
.yd6{bottom:784.213333pt;}
.y7{bottom:784.453333pt;}
.y198{bottom:785.973333pt;}
.y36{bottom:793.973333pt;}
.y17c{bottom:794.373333pt;}
.y62{bottom:800.213333pt;}
.y115{bottom:800.533333pt;}
.y197{bottom:801.653333pt;}
.yf4{bottom:804.853333pt;}
.y88{bottom:807.493333pt;}
.y137{bottom:809.653333pt;}
.y17b{bottom:809.973333pt;}
.yd5{bottom:813.493333pt;}
.y6{bottom:816.453333pt;}
.y61{bottom:824.533333pt;}
.y114{bottom:824.853333pt;}
.y196{bottom:825.253333pt;}
.y35{bottom:825.653333pt;}
.y87{bottom:831.813333pt;}
.yd4{bottom:837.813333pt;}
.y195{bottom:840.853333pt;}
.y34{bottom:841.253333pt;}
.y5{bottom:848.533333pt;}
.y60{bottom:848.773333pt;}
.y112{bottom:849.173333pt;}
.y86{bottom:856.133333pt;}
.y33{bottom:856.853333pt;}
.yd3{bottom:862.133333pt;}
.y194{bottom:864.533333pt;}
.y4{bottom:865.733333pt;}
.y32{bottom:872.533333pt;}
.y5f{bottom:873.093333pt;}
.y193{bottom:880.133333pt;}
.y85{bottom:880.453333pt;}
.yd2{bottom:886.453333pt;}
.y31{bottom:888.133333pt;}
.y111{bottom:889.093333pt;}
.y5d{bottom:897.413333pt;}
.y3{bottom:899.760000pt;}
.y30{bottom:903.840000pt;}
.y84{bottom:904.720000pt;}
.yd1{bottom:910.720000pt;}
.y110{bottom:913.440000pt;}
.y2f{bottom:919.440000pt;}
.y5c{bottom:921.680000pt;}
.y83{bottom:929.040000pt;}
.ycf{bottom:935.040000pt;}
.y5a{bottom:946.000000pt;}
.y136{bottom:950.720000pt;}
.y2e{bottom:951.040000pt;}
.y82{bottom:953.360000pt;}
.y192{bottom:958.720000pt;}
.y2d{bottom:966.720000pt;}
.y58{bottom:970.320000pt;}
.y191{bottom:974.320000pt;}
.y81{bottom:977.680000pt;}
.y2c{bottom:982.320000pt;}
.y2b{bottom:998.000000pt;}
.y80{bottom:1001.920000pt;}
.y2a{bottom:1013.600000pt;}
.y28{bottom:1061.600000pt;}
.h8{height:23.600000pt;}
.ha{height:23.626667pt;}
.h9{height:23.680000pt;}
.hb{height:23.706667pt;}
.h2{height:29.261250pt;}
.h3{height:33.867188pt;}
.he{height:39.200000pt;}
.hf{height:39.280000pt;}
.hd{height:39.306667pt;}
.hc{height:43.280000pt;}
.h6{height:45.246562pt;}
.h5{height:49.581562pt;}
.h11{height:54.927899pt;}
.h10{height:57.473437pt;}
.h7{height:60.961875pt;}
.h4{height:63.128437pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w19{width:46.000000pt;}
.w16{width:57.866667pt;}
.w13{width:59.840000pt;}
.w11{width:75.440000pt;}
.wb{width:78.266667pt;}
.w18{width:92.320000pt;}
.w17{width:96.160000pt;}
.w15{width:98.560000pt;}
.we{width:108.186667pt;}
.w5{width:109.360000pt;}
.w7{width:109.440000pt;}
.wd{width:113.600000pt;}
.wa{width:132.026667pt;}
.w4{width:132.106667pt;}
.wc{width:134.800000pt;}
.w10{width:152.480000pt;}
.wf{width:159.760000pt;}
.w12{width:166.666667pt;}
.w3{width:179.280000pt;}
.w6{width:243.920000pt;}
.w9{width:261.840000pt;}
.w14{width:277.546667pt;}
.w1b{width:393.546667pt;}
.w8{width:486.746667pt;}
.w1a{width:671.733333pt;}
.w2{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x5{left:6.880000pt;}
.x1{left:60.480000pt;}
.xe{left:98.320000pt;}
.xb{left:144.666667pt;}
.x8{left:153.626667pt;}
.x13{left:168.826667pt;}
.x2{left:171.306655pt;}
.xf{left:177.226667pt;}
.x4{left:185.946667pt;}
.x10{left:312.666667pt;}
.x14{left:322.026667pt;}
.x16{left:339.306667pt;}
.x6{left:365.946667pt;}
.x9{left:398.186667pt;}
.xc{left:407.226667pt;}
.x11{left:426.986667pt;}
.x17{left:438.586667pt;}
.x18{left:497.093333pt;}
.x7{left:498.693333pt;}
.xa{left:530.933333pt;}
.x12{left:535.893333pt;}
.xd{left:539.973333pt;}
.x15{left:565.413333pt;}
.x19{left:593.893333pt;}
.x1a{left:686.853333pt;}
.x3{left:711.413322pt;}
}




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