
    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_f58ecea5245e3e74a8f1ca34.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_a4c04aea816b743bba4ac230.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_930426dd2b19e821f3a56840.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_2c87d70034de48282d0a8740.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.003906;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_fd3e19c0f9a114090630ced1.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.914062;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_e906f6dafc34123d319ac4bc.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.690918;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_16e005240900332084af7ce1.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);}
.v1{vertical-align:-69.120000px;}
.v0{vertical-align:0.000000px;}
.ls9{letter-spacing:-0.666000px;}
.lsa{letter-spacing:-0.360000px;}
.ls8{letter-spacing:-0.206400px;}
.ls5{letter-spacing:-0.053280px;}
.ls3{letter-spacing:0.000000px;}
.ls4{letter-spacing:0.153600px;}
.ls7{letter-spacing:0.259800px;}
.ls1{letter-spacing:0.324000px;}
.ls0{letter-spacing:0.360000px;}
.ls6{letter-spacing:1.080000px;}
.lsb{letter-spacing:5.940000px;}
.lsd{letter-spacing:16.506720px;}
.lsc{letter-spacing:46.026720px;}
.ls2{letter-spacing:64.170720px;}
.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;}
}
.ws3{word-spacing:-59.760000px;}
.ws0{word-spacing:-18.000000px;}
.ws6{word-spacing:-15.300000px;}
.ws5{word-spacing:-15.199800px;}
.ws2{word-spacing:-15.093600px;}
.ws1{word-spacing:-14.940000px;}
.ws7{word-spacing:-14.733600px;}
.ws8{word-spacing:-14.580000px;}
.ws9{word-spacing:-14.274000px;}
.ws4{word-spacing:0.000000px;}
._2{margin-left:-1.152000px;}
._0{width:1.195200px;}
._1{width:2.538240px;}
._3{width:3.706080px;}
._8{width:5.378400px;}
._7{width:6.872400px;}
._5{width:8.831520px;}
._4{width:10.039680px;}
._11{width:11.046960px;}
._e{width:12.075840px;}
._6{width:13.804560px;}
._f{width:16.852320px;}
._d{width:18.884160px;}
._a{width:20.198880px;}
._9{width:21.513600px;}
._c{width:23.067360px;}
._b{width:24.382080px;}
._14{width:25.560000px;}
._15{width:27.354240px;}
._13{width:42.969360px;}
._10{width:201.204000px;}
._12{width:339.029040px;}
.fc3{color:transparent;}
.fc2{color:rgb(255,255,255);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(255,0,0);}
.fs0{font-size:59.760000px;}
.fs2{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.yda{bottom:3.240000px;}
.yb5{bottom:3.420000px;}
.ybc{bottom:3.600000px;}
.y128{bottom:3.774000px;}
.yb7{bottom:3.780000px;}
.y5{bottom:4.500000px;}
.y4{bottom:24.120000px;}
.y13c{bottom:59.220000px;}
.y6e{bottom:60.300000px;}
.yaf{bottom:61.560000px;}
.y12d{bottom:61.920000px;}
.yf4{bottom:66.420000px;}
.y160{bottom:68.040000px;}
.y172{bottom:73.440000px;}
.y44{bottom:74.520000px;}
.y13b{bottom:76.500000px;}
.y6d{bottom:77.580000px;}
.yae{bottom:78.840000px;}
.y12c{bottom:79.560000px;}
.ybf{bottom:84.060000px;}
.y15f{bottom:85.500000px;}
.yf3{bottom:88.200000px;}
.y13a{bottom:90.000000px;}
.y171{bottom:90.720000px;}
.y43{bottom:91.800000px;}
.y6c{bottom:95.220000px;}
.yad{bottom:96.120000px;}
.y12b{bottom:96.840000px;}
.ybe{bottom:101.376000px;}
.y15e{bottom:102.816000px;}
.y170{bottom:108.036000px;}
.y42{bottom:109.116000px;}
.yf2{bottom:110.016000px;}
.y6b{bottom:112.536000px;}
.yac{bottom:113.076000px;}
.y12a{bottom:114.156000px;}
.ybd{bottom:118.656000px;}
.y15d{bottom:120.096000px;}
.y16f{bottom:125.316000px;}
.y41{bottom:126.396000px;}
.y6a{bottom:129.636000px;}
.yab{bottom:130.716000px;}
.y129{bottom:131.436000px;}
.yf1{bottom:134.316000px;}
.ybb{bottom:135.576000px;}
.y15c{bottom:137.376000px;}
.y16e{bottom:142.416000px;}
.y40{bottom:144.756000px;}
.y69{bottom:146.916000px;}
.yaa{bottom:147.816000px;}
.y127{bottom:148.176000px;}
.yf0{bottom:151.590000px;}
.y15b{bottom:154.650000px;}
.yba{bottom:157.170000px;}
.y16d{bottom:159.690000px;}
.y3f{bottom:161.850000px;}
.y68{bottom:164.190000px;}
.ya9{bottom:165.090000px;}
.yef{bottom:168.870000px;}
.y126{bottom:169.950000px;}
.y15a{bottom:171.390000px;}
.y16c{bottom:176.610000px;}
.yb9{bottom:178.950000px;}
.y3e{bottom:179.130000px;}
.y67{bottom:181.470000px;}
.ya8{bottom:182.370000px;}
.yee{bottom:186.150000px;}
.y159{bottom:189.030000px;}
.y125{bottom:191.730000px;}
.y16b{bottom:194.250000px;}
.y3d{bottom:196.410000px;}
.y66{bottom:198.750000px;}
.ya7{bottom:199.650000px;}
.yb8{bottom:200.730000px;}
.yed{bottom:203.430000px;}
.y158{bottom:206.310000px;}
.y16a{bottom:211.530000px;}
.y124{bottom:213.510000px;}
.y3c{bottom:213.690000px;}
.y65{bottom:216.030000px;}
.ya6{bottom:216.930000px;}
.yec{bottom:220.530000px;}
.yb6{bottom:222.510000px;}
.y157{bottom:223.590000px;}
.y169{bottom:229.890000px;}
.y3b{bottom:232.050000px;}
.y64{bottom:233.130000px;}
.ya5{bottom:234.030000px;}
.y123{bottom:235.290000px;}
.yeb{bottom:237.450000px;}
.y156{bottom:240.870000px;}
.yb4{bottom:244.290000px;}
.y168{bottom:246.990000px;}
.y3a{bottom:249.150000px;}
.y63{bottom:250.410000px;}
.ya4{bottom:251.310000px;}
.y122{bottom:256.890000px;}
.y155{bottom:258.150000px;}
.yea{bottom:259.230000px;}
.y167{bottom:265.350000px;}
.y39{bottom:266.430000px;}
.y62{bottom:267.690000px;}
.ya3{bottom:268.590000px;}
.y154{bottom:275.250000px;}
.ye9{bottom:281.010000px;}
.y121{bottom:281.370000px;}
.y166{bottom:282.630000px;}
.y38{bottom:283.710000px;}
.y61{bottom:284.970000px;}
.ya2{bottom:285.870000px;}
.y153{bottom:292.170000px;}
.y37{bottom:300.990000px;}
.y60{bottom:301.890000px;}
.ye8{bottom:302.790000px;}
.ya1{bottom:303.150000px;}
.y152{bottom:309.450000px;}
.y120{bottom:315.930000px;}
.y165{bottom:318.270000px;}
.y36{bottom:318.990000px;}
.y5f{bottom:319.350000px;}
.ya0{bottom:320.430000px;}
.ye7{bottom:324.390000px;}
.y151{bottom:327.090000px;}
.y11f{bottom:333.030000px;}
.y164{bottom:336.450000px;}
.y35{bottom:336.630000px;}
.y9f{bottom:337.530000px;}
.y5e{bottom:337.710000px;}
.y150{bottom:344.370000px;}
.ye6{bottom:346.170000px;}
.y11e{bottom:350.310000px;}
.y34{bottom:353.730000px;}
.y9e{bottom:354.810000px;}
.y5d{bottom:356.070000px;}
.y14f{bottom:361.695000px;}
.y11d{bottom:367.635000px;}
.ye5{bottom:370.695000px;}
.y33{bottom:371.055000px;}
.y9d{bottom:372.135000px;}
.y5c{bottom:374.475000px;}
.y14e{bottom:378.795000px;}
.y11c{bottom:384.555000px;}
.ye4{bottom:387.975000px;}
.y32{bottom:388.335000px;}
.yb3{bottom:389.055000px;}
.y9c{bottom:389.415000px;}
.y5b{bottom:391.755000px;}
.y14d{bottom:396.075000px;}
.ye3{bottom:405.075000px;}
.y31{bottom:405.615000px;}
.y11b{bottom:406.335000px;}
.y9b{bottom:406.695000px;}
.y5a{bottom:408.675000px;}
.y14c{bottom:412.995000px;}
.ye2{bottom:422.355000px;}
.y30{bottom:422.895000px;}
.y9a{bottom:423.975000px;}
.y59{bottom:426.135000px;}
.y11a{bottom:427.935000px;}
.y14b{bottom:430.275000px;}
.ye1{bottom:439.635000px;}
.y2f{bottom:440.175000px;}
.y99{bottom:441.075000px;}
.y58{bottom:443.415000px;}
.y14a{bottom:447.915000px;}
.y119{bottom:449.715000px;}
.ye0{bottom:456.915000px;}
.y2e{bottom:457.275000px;}
.y98{bottom:458.355000px;}
.y57{bottom:460.695000px;}
.y149{bottom:465.015000px;}
.y118{bottom:471.495000px;}
.ydf{bottom:474.195000px;}
.y2d{bottom:474.555000px;}
.y97{bottom:475.635000px;}
.y56{bottom:477.975000px;}
.y148{bottom:482.295000px;}
.yde{bottom:490.935000px;}
.y2c{bottom:491.835000px;}
.y96{bottom:492.915000px;}
.y117{bottom:493.275000px;}
.y55{bottom:495.255000px;}
.y147{bottom:499.575000px;}
.y2b{bottom:509.115000px;}
.y95{bottom:510.195000px;}
.y54{bottom:512.535000px;}
.ydd{bottom:512.715000px;}
.y146{bottom:516.855000px;}
.y116{bottom:517.575000px;}
.y139{bottom:521.355000px;}
.y53{bottom:526.035000px;}
.y2a{bottom:526.395000px;}
.yb2{bottom:526.935000px;}
.y94{bottom:527.295000px;}
.y145{bottom:534.135000px;}
.ydc{bottom:534.495000px;}
.y115{bottom:534.855000px;}
.y138{bottom:538.635000px;}
.y29{bottom:543.495000px;}
.y93{bottom:544.575000px;}
.y144{bottom:551.055000px;}
.y114{bottom:552.135000px;}
.y137{bottom:555.915000px;}
.ydb{bottom:556.275000px;}
.y28{bottom:560.775000px;}
.y92{bottom:561.855000px;}
.y143{bottom:568.515000px;}
.y113{bottom:569.415000px;}
.y136{bottom:572.655000px;}
.y27{bottom:578.055000px;}
.y91{bottom:579.135000px;}
.y142{bottom:585.795000px;}
.y112{bottom:586.695000px;}
.y135{bottom:590.295000px;}
.y26{bottom:595.335000px;}
.y163{bottom:596.055000px;}
.y90{bottom:596.415000px;}
.yd9{bottom:599.835000px;}
.y141{bottom:603.075000px;}
.y111{bottom:603.795000px;}
.y134{bottom:607.575000px;}
.y25{bottom:612.615000px;}
.y8f{bottom:613.695000px;}
.y140{bottom:620.385000px;}
.y110{bottom:620.745000px;}
.yd8{bottom:624.165000px;}
.y133{bottom:624.885000px;}
.y24{bottom:629.925000px;}
.y8e{bottom:630.825000px;}
.y13f{bottom:637.665000px;}
.y132{bottom:642.165000px;}
.y10f{bottom:642.525000px;}
.y23{bottom:647.025000px;}
.y8d{bottom:648.105000px;}
.y13e{bottom:651.165000px;}
.yd7{bottom:658.725000px;}
.y131{bottom:659.445000px;}
.y22{bottom:663.945000px;}
.y10e{bottom:664.305000px;}
.y8c{bottom:665.385000px;}
.yd6{bottom:675.825000px;}
.y130{bottom:676.545000px;}
.y21{bottom:681.585000px;}
.yb1{bottom:682.305000px;}
.y8b{bottom:682.665000px;}
.y10d{bottom:686.085000px;}
.y12f{bottom:690.225000px;}
.yd5{bottom:693.105000px;}
.y20{bottom:698.865000px;}
.y8a{bottom:699.945000px;}
.y10c{bottom:707.685000px;}
.yd4{bottom:710.385000px;}
.y1f{bottom:716.145000px;}
.y89{bottom:717.225000px;}
.yd3{bottom:727.665000px;}
.y10b{bottom:729.465000px;}
.y1e{bottom:733.425000px;}
.y88{bottom:734.325000px;}
.yd2{bottom:744.585000px;}
.y1d{bottom:750.525000px;}
.y87{bottom:751.605000px;}
.y10a{bottom:753.945000px;}
.yd1{bottom:766.185000px;}
.y1c{bottom:767.805000px;}
.y86{bottom:768.885000px;}
.y109{bottom:771.225000px;}
.y1b{bottom:785.085000px;}
.y85{bottom:786.165000px;}
.yd0{bottom:787.965000px;}
.y108{bottom:788.325000px;}
.y1a{bottom:802.365000px;}
.y84{bottom:803.445000px;}
.y107{bottom:805.605000px;}
.ycf{bottom:809.745000px;}
.y19{bottom:819.645000px;}
.y83{bottom:820.725000px;}
.y106{bottom:822.885000px;}
.yce{bottom:831.525000px;}
.y18{bottom:836.925000px;}
.yb0{bottom:837.465000px;}
.y82{bottom:837.825000px;}
.y105{bottom:840.165000px;}
.ycd{bottom:853.305000px;}
.y17{bottom:854.025000px;}
.y81{bottom:855.105000px;}
.y104{bottom:857.085000px;}
.y16{bottom:870.945000px;}
.y162{bottom:872.025000px;}
.y80{bottom:872.385000px;}
.ycc{bottom:877.650000px;}
.y103{bottom:878.730000px;}
.y7f{bottom:889.710000px;}
.y15{bottom:890.250000px;}
.ycb{bottom:894.930000px;}
.y102{bottom:900.510000px;}
.y7e{bottom:906.990000px;}
.y14{bottom:908.070000px;}
.yca{bottom:912.210000px;}
.y101{bottom:922.290000px;}
.y7d{bottom:924.090000px;}
.y13{bottom:925.350000px;}
.yc9{bottom:929.490000px;}
.y52{bottom:939.210000px;}
.y7c{bottom:941.370000px;}
.y12{bottom:942.630000px;}
.y100{bottom:944.070000px;}
.yc8{bottom:946.590000px;}
.y51{bottom:956.490000px;}
.y7b{bottom:958.650000px;}
.y11{bottom:959.910000px;}
.yc7{bottom:963.870000px;}
.yff{bottom:965.850000px;}
.y50{bottom:973.770000px;}
.y7a{bottom:975.930000px;}
.y10{bottom:977.190000px;}
.yc6{bottom:980.790000px;}
.yfe{bottom:990.150000px;}
.y4f{bottom:990.690000px;}
.y79{bottom:992.850000px;}
.y161{bottom:993.210000px;}
.yf{bottom:994.290000px;}
.yc5{bottom:1002.570000px;}
.yfd{bottom:1007.430000px;}
.y4e{bottom:1008.330000px;}
.y78{bottom:1010.490000px;}
.ye{bottom:1013.910000px;}
.yc4{bottom:1024.350000px;}
.yfc{bottom:1024.710000px;}
.y4d{bottom:1025.430000px;}
.y77{bottom:1027.590000px;}
.yd{bottom:1031.190000px;}
.yfb{bottom:1041.990000px;}
.y4c{bottom:1042.710000px;}
.y76{bottom:1044.870000px;}
.yc3{bottom:1045.950000px;}
.yc{bottom:1048.290000px;}
.yfa{bottom:1059.090000px;}
.y4b{bottom:1059.990000px;}
.y75{bottom:1062.150000px;}
.yb{bottom:1065.570000px;}
.yc2{bottom:1067.730000px;}
.yf9{bottom:1076.370000px;}
.y4a{bottom:1077.270000px;}
.y74{bottom:1079.430000px;}
.ya{bottom:1082.850000px;}
.yc1{bottom:1089.510000px;}
.yf8{bottom:1093.290000px;}
.y49{bottom:1095.630000px;}
.y13d{bottom:1096.350000px;}
.y73{bottom:1096.710000px;}
.y9{bottom:1100.490000px;}
.y48{bottom:1112.910000px;}
.y72{bottom:1113.990000px;}
.yf7{bottom:1115.070000px;}
.y8{bottom:1121.190000px;}
.y47{bottom:1130.010000px;}
.y71{bottom:1131.090000px;}
.yf6{bottom:1136.880000px;}
.y7{bottom:1141.920000px;}
.y46{bottom:1147.320000px;}
.y12e{bottom:1148.040000px;}
.y70{bottom:1148.400000px;}
.yf5{bottom:1158.480000px;}
.y6{bottom:1162.620000px;}
.y45{bottom:1164.600000px;}
.y6f{bottom:1165.320000px;}
.yc0{bottom:1165.680000px;}
.y3{bottom:1182.600000px;}
.y2{bottom:1199.880000px;}
.y1{bottom:1216.980000px;}
.ha{height:17.100000px;}
.hb{height:17.136000px;}
.h9{height:17.280000px;}
.hc{height:17.316000px;}
.h8{height:41.726953px;}
.h2{height:58.621992px;}
.h3{height:58.651172px;}
.h6{height:60.226875px;}
.h7{height:61.423863px;}
.h5{height:65.884219px;}
.h4{height:72.562500px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:50.436000px;}
.w1d{width:62.676000px;}
.w6{width:65.376000px;}
.we{width:66.816000px;}
.w14{width:69.516000px;}
.w11{width:69.876000px;}
.wb{width:70.416000px;}
.w17{width:76.896000px;}
.w1a{width:80.676000px;}
.w5{width:152.130000px;}
.w1f{width:254.055000px;}
.w19{width:256.215000px;}
.w4{width:263.235000px;}
.w3{width:314.850000px;}
.wf{width:316.650000px;}
.w16{width:320.835000px;}
.w1b{width:328.935000px;}
.w9{width:329.790000px;}
.w12{width:338.295000px;}
.w8{width:341.535000px;}
.wc{width:345.135000px;}
.wd{width:367.455000px;}
.w1c{width:373.395000px;}
.w13{width:375.015000px;}
.w7{width:376.095000px;}
.wa{width:387.975000px;}
.w15{width:392.295000px;}
.w10{width:399.165000px;}
.w18{width:449.895000px;}
.w1e{width:466.275000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x14{left:9.360000px;}
.x4c{left:15.300000px;}
.x1e{left:16.740000px;}
.x2b{left:19.260000px;}
.x41{left:22.500000px;}
.x47{left:24.480000px;}
.x19{left:26.280000px;}
.x17{left:45.030000px;}
.x13{left:52.920000px;}
.x5{left:54.000000px;}
.x1d{left:56.700000px;}
.x4f{left:59.805000px;}
.x1c{left:62.280000px;}
.x45{left:72.945000px;}
.x34{left:79.914000px;}
.x10{left:81.000000px;}
.x22{left:84.060000px;}
.x39{left:88.554000px;}
.x2d{left:91.254000px;}
.x20{left:92.334000px;}
.x28{left:95.040000px;}
.x2f{left:97.020000px;}
.x3b{left:98.280000px;}
.x36{left:100.650000px;}
.x3e{left:102.054000px;}
.x15{left:105.696000px;}
.xf{left:108.036000px;}
.x4a{left:109.800000px;}
.x4d{left:117.756000px;}
.x51{left:119.385000px;}
.x1f{left:120.636000px;}
.x33{left:122.076000px;}
.x1b{left:124.230000px;}
.x2c{left:125.496000px;}
.x43{left:127.614000px;}
.x42{left:131.976000px;}
.x48{left:135.936000px;}
.x1a{left:149.934000px;}
.x29{left:151.599000px;}
.xd{left:153.390000px;}
.x4b{left:156.999000px;}
.x3c{left:161.499000px;}
.x24{left:163.305000px;}
.x30{left:165.099000px;}
.x31{left:176.265000px;}
.x23{left:178.599000px;}
.x3d{left:180.045000px;}
.x25{left:184.179000px;}
.x2a{left:186.525000px;}
.x40{left:188.679000px;}
.x6{left:189.750000px;}
.x37{left:192.135000px;}
.x26{left:206.130000px;}
.x46{left:217.479000px;}
.xa{left:219.990000px;}
.x12{left:224.310000px;}
.x50{left:229.359000px;}
.x32{left:234.570000px;}
.x38{left:243.210000px;}
.xb{left:251.670000px;}
.x3{left:256.710000px;}
.x8{left:257.790000px;}
.x2{left:268.770000px;}
.x7{left:277.635000px;}
.x1{left:355.575000px;}
.xe{left:391.395000px;}
.x9{left:409.035000px;}
.x16{left:422.715000px;}
.x35{left:441.075000px;}
.x27{left:452.445000px;}
.xc{left:455.505000px;}
.x3a{left:465.405000px;}
.x49{left:467.025000px;}
.x2e{left:472.785000px;}
.x21{left:498.885000px;}
.x3f{left:519.405000px;}
.x44{left:584.205000px;}
.x4e{left:586.365000px;}
.x18{left:688.110000px;}
.x52{left:793.050000px;}
.x11{left:795.390000px;}
.x4{left:812.130000px;}
@media print{
.v1{vertical-align:-61.440000pt;}
.v0{vertical-align:0.000000pt;}
.ls9{letter-spacing:-0.592000pt;}
.lsa{letter-spacing:-0.320000pt;}
.ls8{letter-spacing:-0.183467pt;}
.ls5{letter-spacing:-0.047360pt;}
.ls3{letter-spacing:0.000000pt;}
.ls4{letter-spacing:0.136533pt;}
.ls7{letter-spacing:0.230933pt;}
.ls1{letter-spacing:0.288000pt;}
.ls0{letter-spacing:0.320000pt;}
.ls6{letter-spacing:0.960000pt;}
.lsb{letter-spacing:5.280000pt;}
.lsd{letter-spacing:14.672640pt;}
.lsc{letter-spacing:40.912640pt;}
.ls2{letter-spacing:57.040640pt;}
.ws3{word-spacing:-53.120000pt;}
.ws0{word-spacing:-16.000000pt;}
.ws6{word-spacing:-13.600000pt;}
.ws5{word-spacing:-13.510933pt;}
.ws2{word-spacing:-13.416533pt;}
.ws1{word-spacing:-13.280000pt;}
.ws7{word-spacing:-13.096533pt;}
.ws8{word-spacing:-12.960000pt;}
.ws9{word-spacing:-12.688000pt;}
.ws4{word-spacing:0.000000pt;}
._2{margin-left:-1.024000pt;}
._0{width:1.062400pt;}
._1{width:2.256213pt;}
._3{width:3.294293pt;}
._8{width:4.780800pt;}
._7{width:6.108800pt;}
._5{width:7.850240pt;}
._4{width:8.924160pt;}
._11{width:9.819520pt;}
._e{width:10.734080pt;}
._6{width:12.270720pt;}
._f{width:14.979840pt;}
._d{width:16.785920pt;}
._a{width:17.954560pt;}
._9{width:19.123200pt;}
._c{width:20.504320pt;}
._b{width:21.672960pt;}
._14{width:22.720000pt;}
._15{width:24.314880pt;}
._13{width:38.194987pt;}
._10{width:178.848000pt;}
._12{width:301.359147pt;}
.fs0{font-size:53.120000pt;}
.fs2{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.yda{bottom:2.880000pt;}
.yb5{bottom:3.040000pt;}
.ybc{bottom:3.200000pt;}
.y128{bottom:3.354667pt;}
.yb7{bottom:3.360000pt;}
.y5{bottom:4.000000pt;}
.y4{bottom:21.440000pt;}
.y13c{bottom:52.640000pt;}
.y6e{bottom:53.600000pt;}
.yaf{bottom:54.720000pt;}
.y12d{bottom:55.040000pt;}
.yf4{bottom:59.040000pt;}
.y160{bottom:60.480000pt;}
.y172{bottom:65.280000pt;}
.y44{bottom:66.240000pt;}
.y13b{bottom:68.000000pt;}
.y6d{bottom:68.960000pt;}
.yae{bottom:70.080000pt;}
.y12c{bottom:70.720000pt;}
.ybf{bottom:74.720000pt;}
.y15f{bottom:76.000000pt;}
.yf3{bottom:78.400000pt;}
.y13a{bottom:80.000000pt;}
.y171{bottom:80.640000pt;}
.y43{bottom:81.600000pt;}
.y6c{bottom:84.640000pt;}
.yad{bottom:85.440000pt;}
.y12b{bottom:86.080000pt;}
.ybe{bottom:90.112000pt;}
.y15e{bottom:91.392000pt;}
.y170{bottom:96.032000pt;}
.y42{bottom:96.992000pt;}
.yf2{bottom:97.792000pt;}
.y6b{bottom:100.032000pt;}
.yac{bottom:100.512000pt;}
.y12a{bottom:101.472000pt;}
.ybd{bottom:105.472000pt;}
.y15d{bottom:106.752000pt;}
.y16f{bottom:111.392000pt;}
.y41{bottom:112.352000pt;}
.y6a{bottom:115.232000pt;}
.yab{bottom:116.192000pt;}
.y129{bottom:116.832000pt;}
.yf1{bottom:119.392000pt;}
.ybb{bottom:120.512000pt;}
.y15c{bottom:122.112000pt;}
.y16e{bottom:126.592000pt;}
.y40{bottom:128.672000pt;}
.y69{bottom:130.592000pt;}
.yaa{bottom:131.392000pt;}
.y127{bottom:131.712000pt;}
.yf0{bottom:134.746667pt;}
.y15b{bottom:137.466667pt;}
.yba{bottom:139.706667pt;}
.y16d{bottom:141.946667pt;}
.y3f{bottom:143.866667pt;}
.y68{bottom:145.946667pt;}
.ya9{bottom:146.746667pt;}
.yef{bottom:150.106667pt;}
.y126{bottom:151.066667pt;}
.y15a{bottom:152.346667pt;}
.y16c{bottom:156.986667pt;}
.yb9{bottom:159.066667pt;}
.y3e{bottom:159.226667pt;}
.y67{bottom:161.306667pt;}
.ya8{bottom:162.106667pt;}
.yee{bottom:165.466667pt;}
.y159{bottom:168.026667pt;}
.y125{bottom:170.426667pt;}
.y16b{bottom:172.666667pt;}
.y3d{bottom:174.586667pt;}
.y66{bottom:176.666667pt;}
.ya7{bottom:177.466667pt;}
.yb8{bottom:178.426667pt;}
.yed{bottom:180.826667pt;}
.y158{bottom:183.386667pt;}
.y16a{bottom:188.026667pt;}
.y124{bottom:189.786667pt;}
.y3c{bottom:189.946667pt;}
.y65{bottom:192.026667pt;}
.ya6{bottom:192.826667pt;}
.yec{bottom:196.026667pt;}
.yb6{bottom:197.786667pt;}
.y157{bottom:198.746667pt;}
.y169{bottom:204.346667pt;}
.y3b{bottom:206.266667pt;}
.y64{bottom:207.226667pt;}
.ya5{bottom:208.026667pt;}
.y123{bottom:209.146667pt;}
.yeb{bottom:211.066667pt;}
.y156{bottom:214.106667pt;}
.yb4{bottom:217.146667pt;}
.y168{bottom:219.546667pt;}
.y3a{bottom:221.466667pt;}
.y63{bottom:222.586667pt;}
.ya4{bottom:223.386667pt;}
.y122{bottom:228.346667pt;}
.y155{bottom:229.466667pt;}
.yea{bottom:230.426667pt;}
.y167{bottom:235.866667pt;}
.y39{bottom:236.826667pt;}
.y62{bottom:237.946667pt;}
.ya3{bottom:238.746667pt;}
.y154{bottom:244.666667pt;}
.ye9{bottom:249.786667pt;}
.y121{bottom:250.106667pt;}
.y166{bottom:251.226667pt;}
.y38{bottom:252.186667pt;}
.y61{bottom:253.306667pt;}
.ya2{bottom:254.106667pt;}
.y153{bottom:259.706667pt;}
.y37{bottom:267.546667pt;}
.y60{bottom:268.346667pt;}
.ye8{bottom:269.146667pt;}
.ya1{bottom:269.466667pt;}
.y152{bottom:275.066667pt;}
.y120{bottom:280.826667pt;}
.y165{bottom:282.906667pt;}
.y36{bottom:283.546667pt;}
.y5f{bottom:283.866667pt;}
.ya0{bottom:284.826667pt;}
.ye7{bottom:288.346667pt;}
.y151{bottom:290.746667pt;}
.y11f{bottom:296.026667pt;}
.y164{bottom:299.066667pt;}
.y35{bottom:299.226667pt;}
.y9f{bottom:300.026667pt;}
.y5e{bottom:300.186667pt;}
.y150{bottom:306.106667pt;}
.ye6{bottom:307.706667pt;}
.y11e{bottom:311.386667pt;}
.y34{bottom:314.426667pt;}
.y9e{bottom:315.386667pt;}
.y5d{bottom:316.506667pt;}
.y14f{bottom:321.506667pt;}
.y11d{bottom:326.786667pt;}
.ye5{bottom:329.506667pt;}
.y33{bottom:329.826667pt;}
.y9d{bottom:330.786667pt;}
.y5c{bottom:332.866667pt;}
.y14e{bottom:336.706667pt;}
.y11c{bottom:341.826667pt;}
.ye4{bottom:344.866667pt;}
.y32{bottom:345.186667pt;}
.yb3{bottom:345.826667pt;}
.y9c{bottom:346.146667pt;}
.y5b{bottom:348.226667pt;}
.y14d{bottom:352.066667pt;}
.ye3{bottom:360.066667pt;}
.y31{bottom:360.546667pt;}
.y11b{bottom:361.186667pt;}
.y9b{bottom:361.506667pt;}
.y5a{bottom:363.266667pt;}
.y14c{bottom:367.106667pt;}
.ye2{bottom:375.426667pt;}
.y30{bottom:375.906667pt;}
.y9a{bottom:376.866667pt;}
.y59{bottom:378.786667pt;}
.y11a{bottom:380.386667pt;}
.y14b{bottom:382.466667pt;}
.ye1{bottom:390.786667pt;}
.y2f{bottom:391.266667pt;}
.y99{bottom:392.066667pt;}
.y58{bottom:394.146667pt;}
.y14a{bottom:398.146667pt;}
.y119{bottom:399.746667pt;}
.ye0{bottom:406.146667pt;}
.y2e{bottom:406.466667pt;}
.y98{bottom:407.426667pt;}
.y57{bottom:409.506667pt;}
.y149{bottom:413.346667pt;}
.y118{bottom:419.106667pt;}
.ydf{bottom:421.506667pt;}
.y2d{bottom:421.826667pt;}
.y97{bottom:422.786667pt;}
.y56{bottom:424.866667pt;}
.y148{bottom:428.706667pt;}
.yde{bottom:436.386667pt;}
.y2c{bottom:437.186667pt;}
.y96{bottom:438.146667pt;}
.y117{bottom:438.466667pt;}
.y55{bottom:440.226667pt;}
.y147{bottom:444.066667pt;}
.y2b{bottom:452.546667pt;}
.y95{bottom:453.506667pt;}
.y54{bottom:455.586667pt;}
.ydd{bottom:455.746667pt;}
.y146{bottom:459.426667pt;}
.y116{bottom:460.066667pt;}
.y139{bottom:463.426667pt;}
.y53{bottom:467.586667pt;}
.y2a{bottom:467.906667pt;}
.yb2{bottom:468.386667pt;}
.y94{bottom:468.706667pt;}
.y145{bottom:474.786667pt;}
.ydc{bottom:475.106667pt;}
.y115{bottom:475.426667pt;}
.y138{bottom:478.786667pt;}
.y29{bottom:483.106667pt;}
.y93{bottom:484.066667pt;}
.y144{bottom:489.826667pt;}
.y114{bottom:490.786667pt;}
.y137{bottom:494.146667pt;}
.ydb{bottom:494.466667pt;}
.y28{bottom:498.466667pt;}
.y92{bottom:499.426667pt;}
.y143{bottom:505.346667pt;}
.y113{bottom:506.146667pt;}
.y136{bottom:509.026667pt;}
.y27{bottom:513.826667pt;}
.y91{bottom:514.786667pt;}
.y142{bottom:520.706667pt;}
.y112{bottom:521.506667pt;}
.y135{bottom:524.706667pt;}
.y26{bottom:529.186667pt;}
.y163{bottom:529.826667pt;}
.y90{bottom:530.146667pt;}
.yd9{bottom:533.186667pt;}
.y141{bottom:536.066667pt;}
.y111{bottom:536.706667pt;}
.y134{bottom:540.066667pt;}
.y25{bottom:544.546667pt;}
.y8f{bottom:545.506667pt;}
.y140{bottom:551.453333pt;}
.y110{bottom:551.773333pt;}
.yd8{bottom:554.813333pt;}
.y133{bottom:555.453333pt;}
.y24{bottom:559.933333pt;}
.y8e{bottom:560.733333pt;}
.y13f{bottom:566.813333pt;}
.y132{bottom:570.813333pt;}
.y10f{bottom:571.133333pt;}
.y23{bottom:575.133333pt;}
.y8d{bottom:576.093333pt;}
.y13e{bottom:578.813333pt;}
.yd7{bottom:585.533333pt;}
.y131{bottom:586.173333pt;}
.y22{bottom:590.173333pt;}
.y10e{bottom:590.493333pt;}
.y8c{bottom:591.453333pt;}
.yd6{bottom:600.733333pt;}
.y130{bottom:601.373333pt;}
.y21{bottom:605.853333pt;}
.yb1{bottom:606.493333pt;}
.y8b{bottom:606.813333pt;}
.y10d{bottom:609.853333pt;}
.y12f{bottom:613.533333pt;}
.yd5{bottom:616.093333pt;}
.y20{bottom:621.213333pt;}
.y8a{bottom:622.173333pt;}
.y10c{bottom:629.053333pt;}
.yd4{bottom:631.453333pt;}
.y1f{bottom:636.573333pt;}
.y89{bottom:637.533333pt;}
.yd3{bottom:646.813333pt;}
.y10b{bottom:648.413333pt;}
.y1e{bottom:651.933333pt;}
.y88{bottom:652.733333pt;}
.yd2{bottom:661.853333pt;}
.y1d{bottom:667.133333pt;}
.y87{bottom:668.093333pt;}
.y10a{bottom:670.173333pt;}
.yd1{bottom:681.053333pt;}
.y1c{bottom:682.493333pt;}
.y86{bottom:683.453333pt;}
.y109{bottom:685.533333pt;}
.y1b{bottom:697.853333pt;}
.y85{bottom:698.813333pt;}
.yd0{bottom:700.413333pt;}
.y108{bottom:700.733333pt;}
.y1a{bottom:713.213333pt;}
.y84{bottom:714.173333pt;}
.y107{bottom:716.093333pt;}
.ycf{bottom:719.773333pt;}
.y19{bottom:728.573333pt;}
.y83{bottom:729.533333pt;}
.y106{bottom:731.453333pt;}
.yce{bottom:739.133333pt;}
.y18{bottom:743.933333pt;}
.yb0{bottom:744.413333pt;}
.y82{bottom:744.733333pt;}
.y105{bottom:746.813333pt;}
.ycd{bottom:758.493333pt;}
.y17{bottom:759.133333pt;}
.y81{bottom:760.093333pt;}
.y104{bottom:761.853333pt;}
.y16{bottom:774.173333pt;}
.y162{bottom:775.133333pt;}
.y80{bottom:775.453333pt;}
.ycc{bottom:780.133333pt;}
.y103{bottom:781.093333pt;}
.y7f{bottom:790.853333pt;}
.y15{bottom:791.333333pt;}
.ycb{bottom:795.493333pt;}
.y102{bottom:800.453333pt;}
.y7e{bottom:806.213333pt;}
.y14{bottom:807.173333pt;}
.yca{bottom:810.853333pt;}
.y101{bottom:819.813333pt;}
.y7d{bottom:821.413333pt;}
.y13{bottom:822.533333pt;}
.yc9{bottom:826.213333pt;}
.y52{bottom:834.853333pt;}
.y7c{bottom:836.773333pt;}
.y12{bottom:837.893333pt;}
.y100{bottom:839.173333pt;}
.yc8{bottom:841.413333pt;}
.y51{bottom:850.213333pt;}
.y7b{bottom:852.133333pt;}
.y11{bottom:853.253333pt;}
.yc7{bottom:856.773333pt;}
.yff{bottom:858.533333pt;}
.y50{bottom:865.573333pt;}
.y7a{bottom:867.493333pt;}
.y10{bottom:868.613333pt;}
.yc6{bottom:871.813333pt;}
.yfe{bottom:880.133333pt;}
.y4f{bottom:880.613333pt;}
.y79{bottom:882.533333pt;}
.y161{bottom:882.853333pt;}
.yf{bottom:883.813333pt;}
.yc5{bottom:891.173333pt;}
.yfd{bottom:895.493333pt;}
.y4e{bottom:896.293333pt;}
.y78{bottom:898.213333pt;}
.ye{bottom:901.253333pt;}
.yc4{bottom:910.533333pt;}
.yfc{bottom:910.853333pt;}
.y4d{bottom:911.493333pt;}
.y77{bottom:913.413333pt;}
.yd{bottom:916.613333pt;}
.yfb{bottom:926.213333pt;}
.y4c{bottom:926.853333pt;}
.y76{bottom:928.773333pt;}
.yc3{bottom:929.733333pt;}
.yc{bottom:931.813333pt;}
.yfa{bottom:941.413333pt;}
.y4b{bottom:942.213333pt;}
.y75{bottom:944.133333pt;}
.yb{bottom:947.173333pt;}
.yc2{bottom:949.093333pt;}
.yf9{bottom:956.773333pt;}
.y4a{bottom:957.573333pt;}
.y74{bottom:959.493333pt;}
.ya{bottom:962.533333pt;}
.yc1{bottom:968.453333pt;}
.yf8{bottom:971.813333pt;}
.y49{bottom:973.893333pt;}
.y13d{bottom:974.533333pt;}
.y73{bottom:974.853333pt;}
.y9{bottom:978.213333pt;}
.y48{bottom:989.253333pt;}
.y72{bottom:990.213333pt;}
.yf7{bottom:991.173333pt;}
.y8{bottom:996.613333pt;}
.y47{bottom:1004.453333pt;}
.y71{bottom:1005.413333pt;}
.yf6{bottom:1010.560000pt;}
.y7{bottom:1015.040000pt;}
.y46{bottom:1019.840000pt;}
.y12e{bottom:1020.480000pt;}
.y70{bottom:1020.800000pt;}
.yf5{bottom:1029.760000pt;}
.y6{bottom:1033.440000pt;}
.y45{bottom:1035.200000pt;}
.y6f{bottom:1035.840000pt;}
.yc0{bottom:1036.160000pt;}
.y3{bottom:1051.200000pt;}
.y2{bottom:1066.560000pt;}
.y1{bottom:1081.760000pt;}
.ha{height:15.200000pt;}
.hb{height:15.232000pt;}
.h9{height:15.360000pt;}
.hc{height:15.392000pt;}
.h8{height:37.090625pt;}
.h2{height:52.108438pt;}
.h3{height:52.134375pt;}
.h6{height:53.535000pt;}
.h7{height:54.598989pt;}
.h5{height:58.563750pt;}
.h4{height:64.500000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:44.832000pt;}
.w1d{width:55.712000pt;}
.w6{width:58.112000pt;}
.we{width:59.392000pt;}
.w14{width:61.792000pt;}
.w11{width:62.112000pt;}
.wb{width:62.592000pt;}
.w17{width:68.352000pt;}
.w1a{width:71.712000pt;}
.w5{width:135.226667pt;}
.w1f{width:225.826667pt;}
.w19{width:227.746667pt;}
.w4{width:233.986667pt;}
.w3{width:279.866667pt;}
.wf{width:281.466667pt;}
.w16{width:285.186667pt;}
.w1b{width:292.386667pt;}
.w9{width:293.146667pt;}
.w12{width:300.706667pt;}
.w8{width:303.586667pt;}
.wc{width:306.786667pt;}
.wd{width:326.626667pt;}
.w1c{width:331.906667pt;}
.w13{width:333.346667pt;}
.w7{width:334.306667pt;}
.wa{width:344.866667pt;}
.w15{width:348.706667pt;}
.w10{width:354.813333pt;}
.w18{width:399.906667pt;}
.w1e{width:414.466667pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x14{left:8.320000pt;}
.x4c{left:13.600000pt;}
.x1e{left:14.880000pt;}
.x2b{left:17.120000pt;}
.x41{left:20.000000pt;}
.x47{left:21.760000pt;}
.x19{left:23.360000pt;}
.x17{left:40.026667pt;}
.x13{left:47.040000pt;}
.x5{left:48.000000pt;}
.x1d{left:50.400000pt;}
.x4f{left:53.160000pt;}
.x1c{left:55.360000pt;}
.x45{left:64.840000pt;}
.x34{left:71.034667pt;}
.x10{left:72.000000pt;}
.x22{left:74.720000pt;}
.x39{left:78.714667pt;}
.x2d{left:81.114667pt;}
.x20{left:82.074667pt;}
.x28{left:84.480000pt;}
.x2f{left:86.240000pt;}
.x3b{left:87.360000pt;}
.x36{left:89.466667pt;}
.x3e{left:90.714667pt;}
.x15{left:93.952000pt;}
.xf{left:96.032000pt;}
.x4a{left:97.600000pt;}
.x4d{left:104.672000pt;}
.x51{left:106.120000pt;}
.x1f{left:107.232000pt;}
.x33{left:108.512000pt;}
.x1b{left:110.426667pt;}
.x2c{left:111.552000pt;}
.x43{left:113.434667pt;}
.x42{left:117.312000pt;}
.x48{left:120.832000pt;}
.x1a{left:133.274667pt;}
.x29{left:134.754667pt;}
.xd{left:136.346667pt;}
.x4b{left:139.554667pt;}
.x3c{left:143.554667pt;}
.x24{left:145.160000pt;}
.x30{left:146.754667pt;}
.x31{left:156.680000pt;}
.x23{left:158.754667pt;}
.x3d{left:160.040000pt;}
.x25{left:163.714667pt;}
.x2a{left:165.800000pt;}
.x40{left:167.714667pt;}
.x6{left:168.666667pt;}
.x37{left:170.786667pt;}
.x26{left:183.226667pt;}
.x46{left:193.314667pt;}
.xa{left:195.546667pt;}
.x12{left:199.386667pt;}
.x50{left:203.874667pt;}
.x32{left:208.506667pt;}
.x38{left:216.186667pt;}
.xb{left:223.706667pt;}
.x3{left:228.186667pt;}
.x8{left:229.146667pt;}
.x2{left:238.906667pt;}
.x7{left:246.786667pt;}
.x1{left:316.066667pt;}
.xe{left:347.906667pt;}
.x9{left:363.586667pt;}
.x16{left:375.746667pt;}
.x35{left:392.066667pt;}
.x27{left:402.173333pt;}
.xc{left:404.893333pt;}
.x3a{left:413.693333pt;}
.x49{left:415.133333pt;}
.x2e{left:420.253333pt;}
.x21{left:443.453333pt;}
.x3f{left:461.693333pt;}
.x44{left:519.293333pt;}
.x4e{left:521.213333pt;}
.x18{left:611.653333pt;}
.x52{left:704.933333pt;}
.x11{left:707.013333pt;}
.x4{left:721.893333pt;}
}




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