
    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_9d17af113c5e544499b2578b.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_68977f4e1487a55e389b3435.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_69e5baff220dd461a1d4332b.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_e98b7c0318bdf61356e9f4a4.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.976562;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_9b098ccda1dc0586fcd57040.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.050293;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);}
.v5{vertical-align:-23.760000px;}
.v2{vertical-align:-20.880000px;}
.v3{vertical-align:-5.760000px;}
.v0{vertical-align:0.000000px;}
.v6{vertical-align:20.880000px;}
.v1{vertical-align:23.760000px;}
.v4{vertical-align:29.520000px;}
.ls3{letter-spacing:-0.720000px;}
.ls6{letter-spacing:-0.460200px;}
.ls7{letter-spacing:-0.360000px;}
.lse{letter-spacing:-0.219000px;}
.ls5{letter-spacing:-0.206400px;}
.lsd{letter-spacing:-0.051840px;}
.ls2{letter-spacing:0.000000px;}
.lsc{letter-spacing:0.051840px;}
.ls1{letter-spacing:0.053280px;}
.lsf{letter-spacing:0.166800px;}
.ls10{letter-spacing:0.180000px;}
.ls0{letter-spacing:0.360000px;}
.ls4{letter-spacing:0.720000px;}
.ls9{letter-spacing:1.440000px;}
.ls8{letter-spacing:2.880000px;}
.lsb{letter-spacing:6.480000px;}
.lsa{letter-spacing:8.640000px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0{word-spacing:-18.000000px;}
.wsc{word-spacing:-16.560000px;}
.wsb{word-spacing:-16.006800px;}
.ws8{word-spacing:-15.891840px;}
.ws7{word-spacing:-15.840000px;}
.ws9{word-spacing:-15.788160px;}
.wsa{word-spacing:-15.621000px;}
.ws5{word-spacing:-15.300000px;}
.ws2{word-spacing:-14.993280px;}
.ws3{word-spacing:-14.940000px;}
.ws6{word-spacing:-14.580000px;}
.wsd{word-spacing:-14.220000px;}
.ws1{word-spacing:-10.440000px;}
.ws4{word-spacing:0.000000px;}
._1a{margin-left:-5.282640px;}
._4{margin-left:-4.158000px;}
._5{margin-left:-2.484000px;}
._0{margin-left:-1.324800px;}
._1{width:1.180800px;}
._c{width:2.228400px;}
._6{width:3.402000px;}
._19{width:4.422720px;}
._8{width:5.454000px;}
._7{width:6.534000px;}
._b{width:7.812000px;}
._9{width:9.666000px;}
._a{width:10.699200px;}
._11{width:11.934000px;}
._17{width:13.049280px;}
._18{width:15.059520px;}
._10{width:16.272000px;}
._13{width:18.083520px;}
._14{width:19.482240px;}
._f{width:20.848800px;}
._12{width:21.927600px;}
._3{width:23.004000px;}
._2{width:24.030000px;}
._15{width:26.032320px;}
._1b{width:27.239040px;}
._16{width:28.339200px;}
._e{width:29.538000px;}
._d{width:40.338000px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs8{font-size:18.000000px;}
.fs4{font-size:38.880000px;}
.fs5{font-size:41.760000px;}
.fs3{font-size:48.240000px;}
.fs9{font-size:54.000000px;}
.fsb{font-size:56.880000px;}
.fs7{font-size:59.760000px;}
.fs6{font-size:63.360000px;}
.fs0{font-size:66.240000px;}
.fs2{font-size:72.000000px;}
.fs1{font-size:95.760000px;}
.fsa{font-size:156.240000px;}
.y0{bottom:0.000000px;}
.y39{bottom:3.240000px;}
.y96{bottom:3.420000px;}
.y13{bottom:14.400000px;}
.y1a{bottom:21.240000px;}
.y38{bottom:29.160000px;}
.y19{bottom:38.520000px;}
.y37{bottom:44.640000px;}
.y18{bottom:55.800000px;}
.y36{bottom:60.300000px;}
.y17{bottom:73.110000px;}
.y35{bottom:75.780000px;}
.y16{bottom:90.390000px;}
.y34{bottom:91.260000px;}
.y1b{bottom:95.430000px;}
.y15{bottom:105.330000px;}
.y33{bottom:106.740000px;}
.y32{bottom:122.400000px;}
.y31{bottom:137.880000px;}
.y30{bottom:153.360000px;}
.yc6{bottom:160.950000px;}
.ye5{bottom:162.030000px;}
.y46{bottom:164.910000px;}
.y2f{bottom:168.885000px;}
.y7b{bottom:169.950000px;}
.y93{bottom:173.910000px;}
.y11d{bottom:176.610000px;}
.y102{bottom:177.870000px;}
.yc5{bottom:179.130000px;}
.ye4{bottom:179.310000px;}
.y18b{bottom:181.110000px;}
.y15c{bottom:181.290000px;}
.y45{bottom:183.810000px;}
.y2e{bottom:184.545000px;}
.y7a{bottom:188.130000px;}
.y101{bottom:196.050000px;}
.ye3{bottom:196.590000px;}
.yc4{bottom:197.130000px;}
.y18a{bottom:197.490000px;}
.y13d{bottom:199.290000px;}
.y2d{bottom:200.025000px;}
.y92{bottom:200.910000px;}
.y11c{bottom:203.790000px;}
.y79{bottom:206.130000px;}
.y15b{bottom:209.010000px;}
.y44{bottom:211.710000px;}
.ye2{bottom:213.870000px;}
.y100{bottom:214.230000px;}
.yc3{bottom:215.310000px;}
.y2c{bottom:215.505000px;}
.y41{bottom:216.225000px;}
.y13c{bottom:217.470000px;}
.y189{bottom:218.370000px;}
.y91{bottom:219.090000px;}
.y11b{bottom:221.970000px;}
.y78{bottom:224.310000px;}
.y15a{bottom:227.190000px;}
.y43{bottom:230.430000px;}
.y2b{bottom:230.985000px;}
.ye1{bottom:231.150000px;}
.yff{bottom:232.230000px;}
.yc2{bottom:233.310000px;}
.y40{bottom:233.505000px;}
.y188{bottom:234.750000px;}
.y13b{bottom:235.470000px;}
.y90{bottom:237.270000px;}
.y11a{bottom:239.970000px;}
.y77{bottom:242.490000px;}
.y159{bottom:245.370000px;}
.y1c{bottom:246.630000px;}
.y2a{bottom:246.645000px;}
.yfe{bottom:250.410000px;}
.y3f{bottom:250.785000px;}
.yc1{bottom:251.490000px;}
.y13a{bottom:253.650000px;}
.y8f{bottom:255.270000px;}
.y187{bottom:255.630000px;}
.ye0{bottom:257.430000px;}
.y119{bottom:258.150000px;}
.y76{bottom:260.490000px;}
.y29{bottom:262.125000px;}
.y158{bottom:263.550000px;}
.y3e{bottom:268.065000px;}
.yfd{bottom:268.590000px;}
.yc0{bottom:269.670000px;}
.y139{bottom:271.830000px;}
.y186{bottom:272.010000px;}
.y8e{bottom:273.450000px;}
.y118{bottom:276.150000px;}
.y28{bottom:277.605000px;}
.y75{bottom:278.670000px;}
.ydf{bottom:281.370000px;}
.y157{bottom:281.550000px;}
.y3d{bottom:285.345000px;}
.yfc{bottom:286.590000px;}
.ybf{bottom:287.670000px;}
.y185{bottom:288.390000px;}
.y138{bottom:289.830000px;}
.y8d{bottom:291.630000px;}
.y27{bottom:293.085000px;}
.y117{bottom:294.330000px;}
.y74{bottom:296.670000px;}
.y156{bottom:299.730000px;}
.y3c{bottom:302.625000px;}
.yfb{bottom:304.770000px;}
.ybe{bottom:305.850000px;}
.y137{bottom:308.010000px;}
.y26{bottom:308.745000px;}
.y184{bottom:309.270000px;}
.y8c{bottom:309.630000px;}
.y116{bottom:312.510000px;}
.y73{bottom:314.850000px;}
.y155{bottom:317.910000px;}
.y3b{bottom:319.725000px;}
.yfa{bottom:322.770000px;}
.ybd{bottom:323.850000px;}
.y25{bottom:324.225000px;}
.y42{bottom:324.945000px;}
.y183{bottom:325.650000px;}
.y136{bottom:326.010000px;}
.y8b{bottom:327.810000px;}
.y115{bottom:330.510000px;}
.y72{bottom:333.030000px;}
.y3a{bottom:334.665000px;}
.y154{bottom:335.910000px;}
.y24{bottom:339.705000px;}
.yf9{bottom:340.950000px;}
.ybc{bottom:342.030000px;}
.y135{bottom:344.190000px;}
.y8a{bottom:345.990000px;}
.y114{bottom:348.690000px;}
.y71{bottom:351.030000px;}
.y153{bottom:354.090000px;}
.y23{bottom:355.185000px;}
.yf8{bottom:359.130000px;}
.y134{bottom:362.370000px;}
.y182{bottom:362.910000px;}
.y113{bottom:366.870000px;}
.ybb{bottom:369.030000px;}
.y70{bottom:369.210000px;}
.y22{bottom:370.845000px;}
.y152{bottom:372.090000px;}
.y89{bottom:373.170000px;}
.yf7{bottom:377.130000px;}
.y181{bottom:379.290000px;}
.y112{bottom:384.870000px;}
.y21{bottom:386.325000px;}
.yba{bottom:387.210000px;}
.y6f{bottom:387.390000px;}
.y133{bottom:389.370000px;}
.y151{bottom:390.270000px;}
.yf6{bottom:395.310000px;}
.y180{bottom:395.670000px;}
.y88{bottom:400.890000px;}
.y20{bottom:401.805000px;}
.y111{bottom:403.050000px;}
.y6e{bottom:405.390000px;}
.y132{bottom:407.595000px;}
.y150{bottom:408.495000px;}
.yf5{bottom:413.535000px;}
.y17f{bottom:416.595000px;}
.y1f{bottom:417.315000px;}
.y110{bottom:421.095000px;}
.yb9{bottom:423.615000px;}
.y87{bottom:424.695000px;}
.y131{bottom:425.595000px;}
.y14f{bottom:426.495000px;}
.y6d{bottom:432.615000px;}
.y1e{bottom:432.975000px;}
.y10f{bottom:439.275000px;}
.yf4{bottom:440.535000px;}
.yb8{bottom:441.615000px;}
.y130{bottom:443.775000px;}
.y14e{bottom:444.675000px;}
.y1d{bottom:446.475000px;}
.y17e{bottom:449.355000px;}
.yf3{bottom:458.715000px;}
.yb7{bottom:459.795000px;}
.y6c{bottom:460.695000px;}
.y12f{bottom:461.955000px;}
.y17d{bottom:465.735000px;}
.y10e{bottom:466.275000px;}
.y14d{bottom:471.855000px;}
.yf2{bottom:476.715000px;}
.yb6{bottom:477.795000px;}
.y12e{bottom:479.955000px;}
.y10d{bottom:484.455000px;}
.y17c{bottom:486.615000px;}
.yf1{bottom:494.895000px;}
.yb5{bottom:495.975000px;}
.y6b{bottom:497.595000px;}
.y12d{bottom:498.135000px;}
.y14c{bottom:499.575000px;}
.y10c{bottom:502.635000px;}
.y17b{bottom:502.995000px;}
.yf0{bottom:513.075000px;}
.yb4{bottom:514.155000px;}
.y12c{bottom:516.315000px;}
.y6a{bottom:516.675000px;}
.y14b{bottom:517.755000px;}
.y17a{bottom:519.555000px;}
.y10b{bottom:520.815000px;}
.yef{bottom:531.075000px;}
.yb3{bottom:532.155000px;}
.y12b{bottom:534.315000px;}
.y69{bottom:535.755000px;}
.y14a{bottom:535.935000px;}
.y10a{bottom:538.815000px;}
.yee{bottom:549.255000px;}
.yb2{bottom:550.335000px;}
.y12a{bottom:552.495000px;}
.y149{bottom:554.115000px;}
.y68{bottom:554.655000px;}
.y179{bottom:556.815000px;}
.y109{bottom:556.995000px;}
.yed{bottom:567.255000px;}
.yb1{bottom:568.335000px;}
.y129{bottom:570.495000px;}
.y148{bottom:572.115000px;}
.y178{bottom:573.195000px;}
.y67{bottom:573.735000px;}
.y108{bottom:574.995000px;}
.yec{bottom:585.435000px;}
.yb0{bottom:586.515000px;}
.y14{bottom:587.775000px;}
.y128{bottom:588.675000px;}
.y177{bottom:589.575000px;}
.y147{bottom:590.295000px;}
.y66{bottom:592.635000px;}
.y107{bottom:593.175000px;}
.yeb{bottom:603.615000px;}
.yaf{bottom:604.695000px;}
.y146{bottom:608.475000px;}
.y176{bottom:610.455000px;}
.y106{bottom:611.355000px;}
.y65{bottom:611.535000px;}
.y127{bottom:615.495000px;}
.yde{bottom:617.295000px;}
.yea{bottom:621.615000px;}
.yae{bottom:622.695000px;}
.y145{bottom:626.475000px;}
.y175{bottom:626.835000px;}
.y64{bottom:630.615000px;}
.y126{bottom:632.775000px;}
.ydd{bottom:635.475000px;}
.y105{bottom:638.355000px;}
.ye9{bottom:639.795000px;}
.yad{bottom:640.875000px;}
.y174{bottom:643.215000px;}
.y144{bottom:644.655000px;}
.y63{bottom:649.515000px;}
.y125{bottom:650.055000px;}
.ydc{bottom:653.685000px;}
.y104{bottom:656.565000px;}
.ye8{bottom:658.005000px;}
.yac{bottom:659.085000px;}
.y173{bottom:664.125000px;}
.y124{bottom:667.365000px;}
.y62{bottom:668.625000px;}
.ydb{bottom:671.685000px;}
.yab{bottom:677.085000px;}
.y103{bottom:680.145000px;}
.y172{bottom:680.505000px;}
.y123{bottom:684.645000px;}
.ye7{bottom:685.005000px;}
.y61{bottom:687.525000px;}
.yda{bottom:689.865000px;}
.yaa{bottom:695.265000px;}
.y171{bottom:696.885000px;}
.y12{bottom:699.585000px;}
.y122{bottom:701.925000px;}
.y60{bottom:706.425000px;}
.yd9{bottom:708.045000px;}
.ye6{bottom:708.585000px;}
.ya9{bottom:713.265000px;}
.y5f{bottom:725.505000px;}
.yd8{bottom:726.045000px;}
.y121{bottom:728.205000px;}
.ya8{bottom:731.445000px;}
.y170{bottom:734.145000px;}
.y11{bottom:744.045000px;}
.yd7{bottom:744.225000px;}
.y120{bottom:746.385000px;}
.y5e{bottom:748.725000px;}
.y16f{bottom:750.525000px;}
.ya7{bottom:758.625000px;}
.y10{bottom:761.145000px;}
.yd6{bottom:762.225000px;}
.y5d{bottom:767.985000px;}
.y16e{bottom:771.405000px;}
.y11f{bottom:773.385000px;}
.yf{bottom:778.425000px;}
.yd5{bottom:780.405000px;}
.ya6{bottom:786.525000px;}
.y5c{bottom:786.885000px;}
.y16d{bottom:787.785000px;}
.ye{bottom:795.885000px;}
.y11e{bottom:797.145000px;}
.yd4{bottom:798.585000px;}
.y16c{bottom:804.165000px;}
.ya5{bottom:804.705000px;}
.y5b{bottom:805.965000px;}
.yd{bottom:814.065000px;}
.yd3{bottom:816.585000px;}
.y19c{bottom:816.945000px;}
.ya4{bottom:822.705000px;}
.y5a{bottom:824.865000px;}
.y16b{bottom:825.045000px;}
.yd2{bottom:834.765000px;}
.yc{bottom:837.285000px;}
.ya3{bottom:840.885000px;}
.y19b{bottom:841.245000px;}
.y16a{bottom:841.425000px;}
.y59{bottom:843.765000px;}
.yd1{bottom:852.945000px;}
.yb{bottom:855.465000px;}
.y19a{bottom:857.625000px;}
.y169{bottom:862.305000px;}
.y58{bottom:862.845000px;}
.ya2{bottom:868.065000px;}
.yd0{bottom:870.945000px;}
.ya{bottom:873.465000px;}
.y199{bottom:874.005000px;}
.y168{bottom:878.685000px;}
.y57{bottom:881.745000px;}
.ycf{bottom:889.125000px;}
.y9{bottom:892.905000px;}
.y198{bottom:894.885000px;}
.ya1{bottom:895.965000px;}
.y167{bottom:899.565000px;}
.y56{bottom:900.870000px;}
.y8{bottom:905.730000px;}
.yce{bottom:907.170000px;}
.y197{bottom:911.310000px;}
.ya0{bottom:914.190000px;}
.y166{bottom:915.990000px;}
.y143{bottom:916.170000px;}
.y55{bottom:919.770000px;}
.ycd{bottom:925.350000px;}
.y196{bottom:927.690000px;}
.y9f{bottom:932.190000px;}
.y165{bottom:932.370000px;}
.y142{bottom:934.350000px;}
.y54{bottom:938.670000px;}
.y86{bottom:943.350000px;}
.ycc{bottom:943.530000px;}
.y7{bottom:944.430000px;}
.y195{bottom:948.570000px;}
.y9e{bottom:950.370000px;}
.y141{bottom:952.530000px;}
.y164{bottom:953.250000px;}
.y53{bottom:957.750000px;}
.y85{bottom:961.530000px;}
.y194{bottom:964.950000px;}
.y6{bottom:965.130000px;}
.y9d{bottom:968.370000px;}
.y163{bottom:969.630000px;}
.y140{bottom:970.530000px;}
.y52{bottom:976.650000px;}
.y84{bottom:979.710000px;}
.y193{bottom:981.330000px;}
.y9c{bottom:986.550000px;}
.y13f{bottom:988.710000px;}
.y51{bottom:995.730000px;}
.y83{bottom:997.890000px;}
.y192{bottom:1002.210000px;}
.y5{bottom:1003.830000px;}
.y162{bottom:1004.550000px;}
.y9b{bottom:1004.730000px;}
.y13e{bottom:1006.890000px;}
.y50{bottom:1014.630000px;}
.y82{bottom:1015.890000px;}
.y191{bottom:1018.590000px;}
.ycb{bottom:1024.890000px;}
.y9a{bottom:1029.030000px;}
.y161{bottom:1032.450000px;}
.y81{bottom:1034.070000px;}
.y4f{bottom:1037.850000px;}
.y4{bottom:1038.570000px;}
.y190{bottom:1039.470000px;}
.yca{bottom:1043.070000px;}
.y99{bottom:1047.210000px;}
.y80{bottom:1052.070000px;}
.y4e{bottom:1057.110000px;}
.y160{bottom:1060.350000px;}
.yc9{bottom:1061.070000px;}
.y98{bottom:1065.390000px;}
.y7f{bottom:1070.250000px;}
.y4d{bottom:1076.010000px;}
.yc8{bottom:1079.250000px;}
.y18f{bottom:1081.230000px;}
.y97{bottom:1083.390000px;}
.y15f{bottom:1087.350000px;}
.y4c{bottom:1095.090000px;}
.y7e{bottom:1097.250000px;}
.yc7{bottom:1097.430000px;}
.y18e{bottom:1102.110000px;}
.y95{bottom:1102.290000px;}
.y15e{bottom:1105.530000px;}
.y4b{bottom:1113.990000px;}
.y7d{bottom:1115.430000px;}
.y18d{bottom:1118.490000px;}
.y15d{bottom:1132.710000px;}
.y4a{bottom:1132.890000px;}
.y94{bottom:1133.430000px;}
.y7c{bottom:1133.610000px;}
.y18c{bottom:1134.870000px;}
.y3{bottom:1168.200000px;}
.y49{bottom:1169.460000px;}
.y48{bottom:1186.740000px;}
.y2{bottom:1187.280000px;}
.y47{bottom:1204.740000px;}
.y1{bottom:1206.180000px;}
.hd{height:17.657227px;}
.h16{height:18.000000px;}
.h15{height:18.180000px;}
.h5{height:38.158594px;}
.ha{height:40.320000px;}
.h6{height:41.304375px;}
.h10{height:52.971680px;}
.h17{height:55.824609px;}
.he{height:58.621992px;}
.h8{height:58.651172px;}
.h9{height:60.226875px;}
.h7{height:62.184375px;}
.h14{height:63.855000px;}
.h2{height:65.010937px;}
.hb{height:66.757500px;}
.h12{height:70.664062px;}
.h4{height:72.562500px;}
.h3{height:96.508125px;}
.hc{height:109.476000px;}
.h13{height:153.341016px;}
.h11{height:338.970000px;}
.hf{height:450.615000px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w4{width:17.640000px;}
.w6{width:89.100000px;}
.w8{width:121.536000px;}
.w9{width:128.160000px;}
.w3{width:237.990000px;}
.w7{width:364.575000px;}
.w5{width:406.875000px;}
.w2{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x7{left:8.100000px;}
.x19{left:19.620000px;}
.x12{left:22.140000px;}
.x17{left:31.680000px;}
.x15{left:34.380000px;}
.x18{left:36.180000px;}
.x5{left:108.035987px;}
.x1d{left:109.655987px;}
.x1c{left:112.535987px;}
.x1b{left:117.575987px;}
.x27{left:120.635987px;}
.x11{left:121.715987px;}
.x6{left:122.796000px;}
.x25{left:124.415987px;}
.x2{left:131.255987px;}
.x26{left:132.695987px;}
.x1e{left:144.215987px;}
.xc{left:149.255987px;}
.x21{left:170.849987px;}
.xa{left:185.250000px;}
.x13{left:197.130000px;}
.x24{left:199.649987px;}
.x1f{left:266.789987px;}
.xf{left:273.269987px;}
.x23{left:307.154987px;}
.x3{left:314.354987px;}
.x28{left:357.194987px;}
.x8{left:360.795000px;}
.xd{left:375.374987px;}
.x9{left:378.435000px;}
.x10{left:446.654987px;}
.x14{left:561.705000px;}
.x16{left:683.250000px;}
.x20{left:702.149987px;}
.xb{left:758.309987px;}
.x1{left:760.469987px;}
.x4{left:781.349987px;}
.xe{left:787.649987px;}
.x22{left:812.309987px;}
.x1a{left:823.649987px;}
@media print{
.v5{vertical-align:-21.120000pt;}
.v2{vertical-align:-18.560000pt;}
.v3{vertical-align:-5.120000pt;}
.v0{vertical-align:0.000000pt;}
.v6{vertical-align:18.560000pt;}
.v1{vertical-align:21.120000pt;}
.v4{vertical-align:26.240000pt;}
.ls3{letter-spacing:-0.640000pt;}
.ls6{letter-spacing:-0.409067pt;}
.ls7{letter-spacing:-0.320000pt;}
.lse{letter-spacing:-0.194667pt;}
.ls5{letter-spacing:-0.183467pt;}
.lsd{letter-spacing:-0.046080pt;}
.ls2{letter-spacing:0.000000pt;}
.lsc{letter-spacing:0.046080pt;}
.ls1{letter-spacing:0.047360pt;}
.lsf{letter-spacing:0.148267pt;}
.ls10{letter-spacing:0.160000pt;}
.ls0{letter-spacing:0.320000pt;}
.ls4{letter-spacing:0.640000pt;}
.ls9{letter-spacing:1.280000pt;}
.ls8{letter-spacing:2.560000pt;}
.lsb{letter-spacing:5.760000pt;}
.lsa{letter-spacing:7.680000pt;}
.ws0{word-spacing:-16.000000pt;}
.wsc{word-spacing:-14.720000pt;}
.wsb{word-spacing:-14.228267pt;}
.ws8{word-spacing:-14.126080pt;}
.ws7{word-spacing:-14.080000pt;}
.ws9{word-spacing:-14.033920pt;}
.wsa{word-spacing:-13.885333pt;}
.ws5{word-spacing:-13.600000pt;}
.ws2{word-spacing:-13.327360pt;}
.ws3{word-spacing:-13.280000pt;}
.ws6{word-spacing:-12.960000pt;}
.wsd{word-spacing:-12.640000pt;}
.ws1{word-spacing:-9.280000pt;}
.ws4{word-spacing:0.000000pt;}
._1a{margin-left:-4.695680pt;}
._4{margin-left:-3.696000pt;}
._5{margin-left:-2.208000pt;}
._0{margin-left:-1.177600pt;}
._1{width:1.049600pt;}
._c{width:1.980800pt;}
._6{width:3.024000pt;}
._19{width:3.931307pt;}
._8{width:4.848000pt;}
._7{width:5.808000pt;}
._b{width:6.944000pt;}
._9{width:8.592000pt;}
._a{width:9.510400pt;}
._11{width:10.608000pt;}
._17{width:11.599360pt;}
._18{width:13.386240pt;}
._10{width:14.464000pt;}
._13{width:16.074240pt;}
._14{width:17.317547pt;}
._f{width:18.532267pt;}
._12{width:19.491200pt;}
._3{width:20.448000pt;}
._2{width:21.360000pt;}
._15{width:23.139840pt;}
._1b{width:24.212480pt;}
._16{width:25.190400pt;}
._e{width:26.256000pt;}
._d{width:35.856000pt;}
.fs8{font-size:16.000000pt;}
.fs4{font-size:34.560000pt;}
.fs5{font-size:37.120000pt;}
.fs3{font-size:42.880000pt;}
.fs9{font-size:48.000000pt;}
.fsb{font-size:50.560000pt;}
.fs7{font-size:53.120000pt;}
.fs6{font-size:56.320000pt;}
.fs0{font-size:58.880000pt;}
.fs2{font-size:64.000000pt;}
.fs1{font-size:85.120000pt;}
.fsa{font-size:138.880000pt;}
.y0{bottom:0.000000pt;}
.y39{bottom:2.880000pt;}
.y96{bottom:3.040000pt;}
.y13{bottom:12.800000pt;}
.y1a{bottom:18.880000pt;}
.y38{bottom:25.920000pt;}
.y19{bottom:34.240000pt;}
.y37{bottom:39.680000pt;}
.y18{bottom:49.600000pt;}
.y36{bottom:53.600000pt;}
.y17{bottom:64.986667pt;}
.y35{bottom:67.360000pt;}
.y16{bottom:80.346667pt;}
.y34{bottom:81.120000pt;}
.y1b{bottom:84.826667pt;}
.y15{bottom:93.626667pt;}
.y33{bottom:94.880000pt;}
.y32{bottom:108.800000pt;}
.y31{bottom:122.560000pt;}
.y30{bottom:136.320000pt;}
.yc6{bottom:143.066667pt;}
.ye5{bottom:144.026667pt;}
.y46{bottom:146.586667pt;}
.y2f{bottom:150.120000pt;}
.y7b{bottom:151.066667pt;}
.y93{bottom:154.586667pt;}
.y11d{bottom:156.986667pt;}
.y102{bottom:158.106667pt;}
.yc5{bottom:159.226667pt;}
.ye4{bottom:159.386667pt;}
.y18b{bottom:160.986667pt;}
.y15c{bottom:161.146667pt;}
.y45{bottom:163.386667pt;}
.y2e{bottom:164.040000pt;}
.y7a{bottom:167.226667pt;}
.y101{bottom:174.266667pt;}
.ye3{bottom:174.746667pt;}
.yc4{bottom:175.226667pt;}
.y18a{bottom:175.546667pt;}
.y13d{bottom:177.146667pt;}
.y2d{bottom:177.800000pt;}
.y92{bottom:178.586667pt;}
.y11c{bottom:181.146667pt;}
.y79{bottom:183.226667pt;}
.y15b{bottom:185.786667pt;}
.y44{bottom:188.186667pt;}
.ye2{bottom:190.106667pt;}
.y100{bottom:190.426667pt;}
.yc3{bottom:191.386667pt;}
.y2c{bottom:191.560000pt;}
.y41{bottom:192.200000pt;}
.y13c{bottom:193.306667pt;}
.y189{bottom:194.106667pt;}
.y91{bottom:194.746667pt;}
.y11b{bottom:197.306667pt;}
.y78{bottom:199.386667pt;}
.y15a{bottom:201.946667pt;}
.y43{bottom:204.826667pt;}
.y2b{bottom:205.320000pt;}
.ye1{bottom:205.466667pt;}
.yff{bottom:206.426667pt;}
.yc2{bottom:207.386667pt;}
.y40{bottom:207.560000pt;}
.y188{bottom:208.666667pt;}
.y13b{bottom:209.306667pt;}
.y90{bottom:210.906667pt;}
.y11a{bottom:213.306667pt;}
.y77{bottom:215.546667pt;}
.y159{bottom:218.106667pt;}
.y1c{bottom:219.226667pt;}
.y2a{bottom:219.240000pt;}
.yfe{bottom:222.586667pt;}
.y3f{bottom:222.920000pt;}
.yc1{bottom:223.546667pt;}
.y13a{bottom:225.466667pt;}
.y8f{bottom:226.906667pt;}
.y187{bottom:227.226667pt;}
.ye0{bottom:228.826667pt;}
.y119{bottom:229.466667pt;}
.y76{bottom:231.546667pt;}
.y29{bottom:233.000000pt;}
.y158{bottom:234.266667pt;}
.y3e{bottom:238.280000pt;}
.yfd{bottom:238.746667pt;}
.yc0{bottom:239.706667pt;}
.y139{bottom:241.626667pt;}
.y186{bottom:241.786667pt;}
.y8e{bottom:243.066667pt;}
.y118{bottom:245.466667pt;}
.y28{bottom:246.760000pt;}
.y75{bottom:247.706667pt;}
.ydf{bottom:250.106667pt;}
.y157{bottom:250.266667pt;}
.y3d{bottom:253.640000pt;}
.yfc{bottom:254.746667pt;}
.ybf{bottom:255.706667pt;}
.y185{bottom:256.346667pt;}
.y138{bottom:257.626667pt;}
.y8d{bottom:259.226667pt;}
.y27{bottom:260.520000pt;}
.y117{bottom:261.626667pt;}
.y74{bottom:263.706667pt;}
.y156{bottom:266.426667pt;}
.y3c{bottom:269.000000pt;}
.yfb{bottom:270.906667pt;}
.ybe{bottom:271.866667pt;}
.y137{bottom:273.786667pt;}
.y26{bottom:274.440000pt;}
.y184{bottom:274.906667pt;}
.y8c{bottom:275.226667pt;}
.y116{bottom:277.786667pt;}
.y73{bottom:279.866667pt;}
.y155{bottom:282.586667pt;}
.y3b{bottom:284.200000pt;}
.yfa{bottom:286.906667pt;}
.ybd{bottom:287.866667pt;}
.y25{bottom:288.200000pt;}
.y42{bottom:288.840000pt;}
.y183{bottom:289.466667pt;}
.y136{bottom:289.786667pt;}
.y8b{bottom:291.386667pt;}
.y115{bottom:293.786667pt;}
.y72{bottom:296.026667pt;}
.y3a{bottom:297.480000pt;}
.y154{bottom:298.586667pt;}
.y24{bottom:301.960000pt;}
.yf9{bottom:303.066667pt;}
.ybc{bottom:304.026667pt;}
.y135{bottom:305.946667pt;}
.y8a{bottom:307.546667pt;}
.y114{bottom:309.946667pt;}
.y71{bottom:312.026667pt;}
.y153{bottom:314.746667pt;}
.y23{bottom:315.720000pt;}
.yf8{bottom:319.226667pt;}
.y134{bottom:322.106667pt;}
.y182{bottom:322.586667pt;}
.y113{bottom:326.106667pt;}
.ybb{bottom:328.026667pt;}
.y70{bottom:328.186667pt;}
.y22{bottom:329.640000pt;}
.y152{bottom:330.746667pt;}
.y89{bottom:331.706667pt;}
.yf7{bottom:335.226667pt;}
.y181{bottom:337.146667pt;}
.y112{bottom:342.106667pt;}
.y21{bottom:343.400000pt;}
.yba{bottom:344.186667pt;}
.y6f{bottom:344.346667pt;}
.y133{bottom:346.106667pt;}
.y151{bottom:346.906667pt;}
.yf6{bottom:351.386667pt;}
.y180{bottom:351.706667pt;}
.y88{bottom:356.346667pt;}
.y20{bottom:357.160000pt;}
.y111{bottom:358.266667pt;}
.y6e{bottom:360.346667pt;}
.y132{bottom:362.306667pt;}
.y150{bottom:363.106667pt;}
.yf5{bottom:367.586667pt;}
.y17f{bottom:370.306667pt;}
.y1f{bottom:370.946667pt;}
.y110{bottom:374.306667pt;}
.yb9{bottom:376.546667pt;}
.y87{bottom:377.506667pt;}
.y131{bottom:378.306667pt;}
.y14f{bottom:379.106667pt;}
.y6d{bottom:384.546667pt;}
.y1e{bottom:384.866667pt;}
.y10f{bottom:390.466667pt;}
.yf4{bottom:391.586667pt;}
.yb8{bottom:392.546667pt;}
.y130{bottom:394.466667pt;}
.y14e{bottom:395.266667pt;}
.y1d{bottom:396.866667pt;}
.y17e{bottom:399.426667pt;}
.yf3{bottom:407.746667pt;}
.yb7{bottom:408.706667pt;}
.y6c{bottom:409.506667pt;}
.y12f{bottom:410.626667pt;}
.y17d{bottom:413.986667pt;}
.y10e{bottom:414.466667pt;}
.y14d{bottom:419.426667pt;}
.yf2{bottom:423.746667pt;}
.yb6{bottom:424.706667pt;}
.y12e{bottom:426.626667pt;}
.y10d{bottom:430.626667pt;}
.y17c{bottom:432.546667pt;}
.yf1{bottom:439.906667pt;}
.yb5{bottom:440.866667pt;}
.y6b{bottom:442.306667pt;}
.y12d{bottom:442.786667pt;}
.y14c{bottom:444.066667pt;}
.y10c{bottom:446.786667pt;}
.y17b{bottom:447.106667pt;}
.yf0{bottom:456.066667pt;}
.yb4{bottom:457.026667pt;}
.y12c{bottom:458.946667pt;}
.y6a{bottom:459.266667pt;}
.y14b{bottom:460.226667pt;}
.y17a{bottom:461.826667pt;}
.y10b{bottom:462.946667pt;}
.yef{bottom:472.066667pt;}
.yb3{bottom:473.026667pt;}
.y12b{bottom:474.946667pt;}
.y69{bottom:476.226667pt;}
.y14a{bottom:476.386667pt;}
.y10a{bottom:478.946667pt;}
.yee{bottom:488.226667pt;}
.yb2{bottom:489.186667pt;}
.y12a{bottom:491.106667pt;}
.y149{bottom:492.546667pt;}
.y68{bottom:493.026667pt;}
.y179{bottom:494.946667pt;}
.y109{bottom:495.106667pt;}
.yed{bottom:504.226667pt;}
.yb1{bottom:505.186667pt;}
.y129{bottom:507.106667pt;}
.y148{bottom:508.546667pt;}
.y178{bottom:509.506667pt;}
.y67{bottom:509.986667pt;}
.y108{bottom:511.106667pt;}
.yec{bottom:520.386667pt;}
.yb0{bottom:521.346667pt;}
.y14{bottom:522.466667pt;}
.y128{bottom:523.266667pt;}
.y177{bottom:524.066667pt;}
.y147{bottom:524.706667pt;}
.y66{bottom:526.786667pt;}
.y107{bottom:527.266667pt;}
.yeb{bottom:536.546667pt;}
.yaf{bottom:537.506667pt;}
.y146{bottom:540.866667pt;}
.y176{bottom:542.626667pt;}
.y106{bottom:543.426667pt;}
.y65{bottom:543.586667pt;}
.y127{bottom:547.106667pt;}
.yde{bottom:548.706667pt;}
.yea{bottom:552.546667pt;}
.yae{bottom:553.506667pt;}
.y145{bottom:556.866667pt;}
.y175{bottom:557.186667pt;}
.y64{bottom:560.546667pt;}
.y126{bottom:562.466667pt;}
.ydd{bottom:564.866667pt;}
.y105{bottom:567.426667pt;}
.ye9{bottom:568.706667pt;}
.yad{bottom:569.666667pt;}
.y174{bottom:571.746667pt;}
.y144{bottom:573.026667pt;}
.y63{bottom:577.346667pt;}
.y125{bottom:577.826667pt;}
.ydc{bottom:581.053333pt;}
.y104{bottom:583.613333pt;}
.ye8{bottom:584.893333pt;}
.yac{bottom:585.853333pt;}
.y173{bottom:590.333333pt;}
.y124{bottom:593.213333pt;}
.y62{bottom:594.333333pt;}
.ydb{bottom:597.053333pt;}
.yab{bottom:601.853333pt;}
.y103{bottom:604.573333pt;}
.y172{bottom:604.893333pt;}
.y123{bottom:608.573333pt;}
.ye7{bottom:608.893333pt;}
.y61{bottom:611.133333pt;}
.yda{bottom:613.213333pt;}
.yaa{bottom:618.013333pt;}
.y171{bottom:619.453333pt;}
.y12{bottom:621.853333pt;}
.y122{bottom:623.933333pt;}
.y60{bottom:627.933333pt;}
.yd9{bottom:629.373333pt;}
.ye6{bottom:629.853333pt;}
.ya9{bottom:634.013333pt;}
.y5f{bottom:644.893333pt;}
.yd8{bottom:645.373333pt;}
.y121{bottom:647.293333pt;}
.ya8{bottom:650.173333pt;}
.y170{bottom:652.573333pt;}
.y11{bottom:661.373333pt;}
.yd7{bottom:661.533333pt;}
.y120{bottom:663.453333pt;}
.y5e{bottom:665.533333pt;}
.y16f{bottom:667.133333pt;}
.ya7{bottom:674.333333pt;}
.y10{bottom:676.573333pt;}
.yd6{bottom:677.533333pt;}
.y5d{bottom:682.653333pt;}
.y16e{bottom:685.693333pt;}
.y11f{bottom:687.453333pt;}
.yf{bottom:691.933333pt;}
.yd5{bottom:693.693333pt;}
.ya6{bottom:699.133333pt;}
.y5c{bottom:699.453333pt;}
.y16d{bottom:700.253333pt;}
.ye{bottom:707.453333pt;}
.y11e{bottom:708.573333pt;}
.yd4{bottom:709.853333pt;}
.y16c{bottom:714.813333pt;}
.ya5{bottom:715.293333pt;}
.y5b{bottom:716.413333pt;}
.yd{bottom:723.613333pt;}
.yd3{bottom:725.853333pt;}
.y19c{bottom:726.173333pt;}
.ya4{bottom:731.293333pt;}
.y5a{bottom:733.213333pt;}
.y16b{bottom:733.373333pt;}
.yd2{bottom:742.013333pt;}
.yc{bottom:744.253333pt;}
.ya3{bottom:747.453333pt;}
.y19b{bottom:747.773333pt;}
.y16a{bottom:747.933333pt;}
.y59{bottom:750.013333pt;}
.yd1{bottom:758.173333pt;}
.yb{bottom:760.413333pt;}
.y19a{bottom:762.333333pt;}
.y169{bottom:766.493333pt;}
.y58{bottom:766.973333pt;}
.ya2{bottom:771.613333pt;}
.yd0{bottom:774.173333pt;}
.ya{bottom:776.413333pt;}
.y199{bottom:776.893333pt;}
.y168{bottom:781.053333pt;}
.y57{bottom:783.773333pt;}
.ycf{bottom:790.333333pt;}
.y9{bottom:793.693333pt;}
.y198{bottom:795.453333pt;}
.ya1{bottom:796.413333pt;}
.y167{bottom:799.613333pt;}
.y56{bottom:800.773333pt;}
.y8{bottom:805.093333pt;}
.yce{bottom:806.373333pt;}
.y197{bottom:810.053333pt;}
.ya0{bottom:812.613333pt;}
.y166{bottom:814.213333pt;}
.y143{bottom:814.373333pt;}
.y55{bottom:817.573333pt;}
.ycd{bottom:822.533333pt;}
.y196{bottom:824.613333pt;}
.y9f{bottom:828.613333pt;}
.y165{bottom:828.773333pt;}
.y142{bottom:830.533333pt;}
.y54{bottom:834.373333pt;}
.y86{bottom:838.533333pt;}
.ycc{bottom:838.693333pt;}
.y7{bottom:839.493333pt;}
.y195{bottom:843.173333pt;}
.y9e{bottom:844.773333pt;}
.y141{bottom:846.693333pt;}
.y164{bottom:847.333333pt;}
.y53{bottom:851.333333pt;}
.y85{bottom:854.693333pt;}
.y194{bottom:857.733333pt;}
.y6{bottom:857.893333pt;}
.y9d{bottom:860.773333pt;}
.y163{bottom:861.893333pt;}
.y140{bottom:862.693333pt;}
.y52{bottom:868.133333pt;}
.y84{bottom:870.853333pt;}
.y193{bottom:872.293333pt;}
.y9c{bottom:876.933333pt;}
.y13f{bottom:878.853333pt;}
.y51{bottom:885.093333pt;}
.y83{bottom:887.013333pt;}
.y192{bottom:890.853333pt;}
.y5{bottom:892.293333pt;}
.y162{bottom:892.933333pt;}
.y9b{bottom:893.093333pt;}
.y13e{bottom:895.013333pt;}
.y50{bottom:901.893333pt;}
.y82{bottom:903.013333pt;}
.y191{bottom:905.413333pt;}
.ycb{bottom:911.013333pt;}
.y9a{bottom:914.693333pt;}
.y161{bottom:917.733333pt;}
.y81{bottom:919.173333pt;}
.y4f{bottom:922.533333pt;}
.y4{bottom:923.173333pt;}
.y190{bottom:923.973333pt;}
.yca{bottom:927.173333pt;}
.y99{bottom:930.853333pt;}
.y80{bottom:935.173333pt;}
.y4e{bottom:939.653333pt;}
.y160{bottom:942.533333pt;}
.yc9{bottom:943.173333pt;}
.y98{bottom:947.013333pt;}
.y7f{bottom:951.333333pt;}
.y4d{bottom:956.453333pt;}
.yc8{bottom:959.333333pt;}
.y18f{bottom:961.093333pt;}
.y97{bottom:963.013333pt;}
.y15f{bottom:966.533333pt;}
.y4c{bottom:973.413333pt;}
.y7e{bottom:975.333333pt;}
.yc7{bottom:975.493333pt;}
.y18e{bottom:979.653333pt;}
.y95{bottom:979.813333pt;}
.y15e{bottom:982.693333pt;}
.y4b{bottom:990.213333pt;}
.y7d{bottom:991.493333pt;}
.y18d{bottom:994.213333pt;}
.y15d{bottom:1006.853333pt;}
.y4a{bottom:1007.013333pt;}
.y94{bottom:1007.493333pt;}
.y7c{bottom:1007.653333pt;}
.y18c{bottom:1008.773333pt;}
.y3{bottom:1038.400000pt;}
.y49{bottom:1039.520000pt;}
.y48{bottom:1054.880000pt;}
.y2{bottom:1055.360000pt;}
.y47{bottom:1070.880000pt;}
.y1{bottom:1072.160000pt;}
.hd{height:15.695312pt;}
.h16{height:16.000000pt;}
.h15{height:16.160000pt;}
.h5{height:33.918750pt;}
.ha{height:35.840000pt;}
.h6{height:36.715000pt;}
.h10{height:47.085938pt;}
.h17{height:49.621875pt;}
.he{height:52.108438pt;}
.h8{height:52.134375pt;}
.h9{height:53.535000pt;}
.h7{height:55.275000pt;}
.h14{height:56.760000pt;}
.h2{height:57.787500pt;}
.hb{height:59.340000pt;}
.h12{height:62.812500pt;}
.h4{height:64.500000pt;}
.h3{height:85.785000pt;}
.hc{height:97.312000pt;}
.h13{height:136.303125pt;}
.h11{height:301.306667pt;}
.hf{height:400.546667pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w4{width:15.680000pt;}
.w6{width:79.200000pt;}
.w8{width:108.032000pt;}
.w9{width:113.920000pt;}
.w3{width:211.546667pt;}
.w7{width:324.066667pt;}
.w5{width:361.666667pt;}
.w2{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x7{left:7.200000pt;}
.x19{left:17.440000pt;}
.x12{left:19.680000pt;}
.x17{left:28.160000pt;}
.x15{left:30.560000pt;}
.x18{left:32.160000pt;}
.x5{left:96.031988pt;}
.x1d{left:97.471988pt;}
.x1c{left:100.031988pt;}
.x1b{left:104.511988pt;}
.x27{left:107.231988pt;}
.x11{left:108.191988pt;}
.x6{left:109.152000pt;}
.x25{left:110.591988pt;}
.x2{left:116.671988pt;}
.x26{left:117.951988pt;}
.x1e{left:128.191988pt;}
.xc{left:132.671988pt;}
.x21{left:151.866655pt;}
.xa{left:164.666667pt;}
.x13{left:175.226667pt;}
.x24{left:177.466655pt;}
.x1f{left:237.146655pt;}
.xf{left:242.906655pt;}
.x23{left:273.026655pt;}
.x3{left:279.426655pt;}
.x28{left:317.506655pt;}
.x8{left:320.706667pt;}
.xd{left:333.666655pt;}
.x9{left:336.386667pt;}
.x10{left:397.026655pt;}
.x14{left:499.293333pt;}
.x16{left:607.333333pt;}
.x20{left:624.133322pt;}
.xb{left:674.053322pt;}
.x1{left:675.973322pt;}
.x4{left:694.533322pt;}
.xe{left:700.133322pt;}
.x22{left:722.053322pt;}
.x1a{left:732.133322pt;}
}




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