
    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_6b83d7b9446eaf5d3c668744.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_833a911d9022ee68e65d9b52.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_b47d0b36ed2132dec6f95728.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_e451755fc76c0e65fc02587b.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_18e5a92ec7422d91697ff340.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.040039;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_0b79600b3e2ed2cd03f01dc9.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.938965;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_58b859c93890256edf7a17ac.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);}
.v2{vertical-align:-68.400000px;}
.v5{vertical-align:-64.800000px;}
.v1{vertical-align:-62.640000px;}
.v6{vertical-align:-61.200000px;}
.v4{vertical-align:-18.000000px;}
.v8{vertical-align:-5.760000px;}
.v7{vertical-align:-2.880000px;}
.v0{vertical-align:0.000000px;}
.v9{vertical-align:2.880000px;}
.va{vertical-align:18.000000px;}
.v3{vertical-align:23.760000px;}
.ls1d{letter-spacing:-1.944000px;}
.ls1c{letter-spacing:-1.584000px;}
.ls1e{letter-spacing:-1.548000px;}
.ls1b{letter-spacing:-1.080000px;}
.ls27{letter-spacing:-1.044000px;}
.ls10{letter-spacing:-0.936000px;}
.ls22{letter-spacing:-0.828000px;}
.ls18{letter-spacing:-0.702000px;}
.ls12{letter-spacing:-0.594000px;}
.ls2f{letter-spacing:-0.540000px;}
.ls23{letter-spacing:-0.504000px;}
.lsb{letter-spacing:-0.360000px;}
.lsd{letter-spacing:-0.220800px;}
.ls1a{letter-spacing:-0.216000px;}
.ls26{letter-spacing:-0.180000px;}
.lse{letter-spacing:-0.126000px;}
.ls17{letter-spacing:-0.108000px;}
.lsc{letter-spacing:-0.027360px;}
.ls1f{letter-spacing:-0.018000px;}
.lsa{letter-spacing:0.000000px;}
.ls6{letter-spacing:0.018000px;}
.lsf{letter-spacing:0.108000px;}
.ls2e{letter-spacing:0.126000px;}
.ls1{letter-spacing:0.180000px;}
.ls28{letter-spacing:0.252000px;}
.ls16{letter-spacing:0.262200px;}
.ls2{letter-spacing:0.360000px;}
.ls11{letter-spacing:0.738000px;}
.ls29{letter-spacing:0.792000px;}
.ls24{letter-spacing:2.340000px;}
.ls2d{letter-spacing:2.988000px;}
.ls4{letter-spacing:5.220000px;}
.ls20{letter-spacing:11.700000px;}
.ls5{letter-spacing:13.140000px;}
.ls2c{letter-spacing:30.348000px;}
.ls7{letter-spacing:52.560000px;}
.ls9{letter-spacing:55.620000px;}
.ls3{letter-spacing:66.420000px;}
.ls0{letter-spacing:154.980000px;}
.ls19{letter-spacing:536.700000px;}
.ls21{letter-spacing:839.280000px;}
.ls13{letter-spacing:1200.000000px;}
.ls14{letter-spacing:1220.160000px;}
.ls25{letter-spacing:1233.840000px;}
.ls15{letter-spacing:1261.176000px;}
.ls8{letter-spacing:1367.040000px;}
.ls2a{letter-spacing:1410.960000px;}
.ls2b{letter-spacing:1412.400000px;}
.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;}
}
.ws1{word-spacing:-19.980000px;}
.ws0{word-spacing:-18.000000px;}
.ws11{word-spacing:-16.822200px;}
.ws3{word-spacing:-14.580000px;}
.wsd{word-spacing:-14.238000px;}
.ws6{word-spacing:-14.220000px;}
.ws2{word-spacing:-14.192640px;}
.ws4{word-spacing:-13.999200px;}
.ws5{word-spacing:-13.860000px;}
.wsc{word-spacing:-13.608000px;}
.wse{word-spacing:-13.518000px;}
.ws9{word-spacing:-13.500000px;}
.ws1c{word-spacing:-13.482000px;}
.ws12{word-spacing:-13.392000px;}
.wsb{word-spacing:-13.374000px;}
.ws15{word-spacing:-13.284000px;}
.wsa{word-spacing:-13.140000px;}
.ws18{word-spacing:-12.996000px;}
.wsf{word-spacing:-12.906000px;}
.ws17{word-spacing:-12.672000px;}
.ws13{word-spacing:-12.420000px;}
.ws14{word-spacing:-11.916000px;}
.ws16{word-spacing:-11.556000px;}
.ws7{word-spacing:-10.440000px;}
.ws1b{word-spacing:-9.792000px;}
.ws1a{word-spacing:-9.252000px;}
.ws8{word-spacing:-9.000000px;}
.ws19{word-spacing:-7.956000px;}
.ws10{word-spacing:0.000000px;}
._1{margin-left:-3.225600px;}
._0{margin-left:-1.368000px;}
._2{width:1.078560px;}
._7{width:2.858880px;}
._8{width:3.861840px;}
._9{width:4.945440px;}
._5{width:6.534000px;}
._6{width:7.626000px;}
._d{width:9.180000px;}
._f{width:11.070000px;}
._a{width:12.378000px;}
._b{width:15.138000px;}
._e{width:805.602000px;}
._c{width:1041.420000px;}
._4{width:1441.200000px;}
._3{width:1574.520000px;}
.fc4{color:rgb(32,36,41);}
.fc3{color:rgb(255,0,0);}
.fc2{color:rgb(0,112,186);}
.fc5{color:rgb(0,0,255);}
.fc1{color:rgb(23,110,184);}
.fc0{color:rgb(0,0,0);}
.fs9{font-size:36.000000px;}
.fsb{font-size:38.880000px;}
.fs7{font-size:41.760000px;}
.fs4{font-size:48.240000px;}
.fs8{font-size:54.000000px;}
.fs5{font-size:56.880000px;}
.fs2{font-size:59.760000px;}
.fsa{font-size:63.360000px;}
.fs0{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs3{font-size:81.360000px;}
.fs6{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y79{bottom:2.880000px;}
.y68{bottom:3.060000px;}
.y6a{bottom:3.240000px;}
.y6c{bottom:3.420000px;}
.y7b{bottom:18.360000px;}
.y7c{bottom:18.390000px;}
.yb6{bottom:18.540000px;}
.y7f{bottom:18.720000px;}
.y7a{bottom:33.840000px;}
.y7d{bottom:33.870000px;}
.yb7{bottom:34.020000px;}
.y3a{bottom:54.180000px;}
.y2{bottom:57.960000px;}
.y39{bottom:58.860000px;}
.y1{bottom:76.860000px;}
.yd3{bottom:78.660000px;}
.y5f{bottom:84.060000px;}
.y8f{bottom:85.860000px;}
.y104{bottom:89.280000px;}
.yd2{bottom:94.320000px;}
.y5e{bottom:96.480000px;}
.y8e{bottom:101.520000px;}
.ya1{bottom:101.880000px;}
.y103{bottom:104.580000px;}
.yd1{bottom:109.980000px;}
.y36{bottom:113.400000px;}
.ya0{bottom:114.120000px;}
.y8d{bottom:117.540000px;}
.y102{bottom:120.600000px;}
.yd0{bottom:125.460000px;}
.y35{bottom:128.880000px;}
.y80{bottom:130.500000px;}
.y101{bottom:136.116000px;}
.ycf{bottom:141.156000px;}
.y34{bottom:144.576000px;}
.y100{bottom:151.770000px;}
.yce{bottom:157.170000px;}
.y33{bottom:160.050000px;}
.yff{bottom:166.890000px;}
.ycd{bottom:170.130000px;}
.yaf{bottom:173.010000px;}
.y32{bottom:175.530000px;}
.yfe{bottom:182.550000px;}
.yae{bottom:188.670000px;}
.y31{bottom:191.190000px;}
.ycc{bottom:191.550000px;}
.y89{bottom:197.310000px;}
.yfd{bottom:198.030000px;}
.yad{bottom:204.150000px;}
.y30{bottom:206.670000px;}
.ycb{bottom:212.610000px;}
.yfc{bottom:214.050000px;}
.yac{bottom:219.450000px;}
.y2f{bottom:222.150000px;}
.y81{bottom:227.010000px;}
.yca{bottom:228.990000px;}
.yfb{bottom:229.530000px;}
.y8c{bottom:230.250000px;}
.yab{bottom:235.470000px;}
.y2e{bottom:237.810000px;}
.yfa{bottom:245.190000px;}
.yaa{bottom:247.710000px;}
.yc9{bottom:250.230000px;}
.yf9{bottom:260.670000px;}
.y8b{bottom:263.370000px;}
.y2d{bottom:268.590000px;}
.yf8{bottom:276.330000px;}
.yc8{bottom:282.090000px;}
.yf7{bottom:291.810000px;}
.y8a{bottom:296.490000px;}
.y2c{bottom:299.550000px;}
.yf6{bottom:307.290000px;}
.yc7{bottom:313.950000px;}
.y2b{bottom:317.730000px;}
.yf5{bottom:322.950000px;}
.y85{bottom:329.610000px;}
.yc6{bottom:335.190000px;}
.yf4{bottom:338.430000px;}
.y2a{bottom:346.710000px;}
.yf3{bottom:354.090000px;}
.yc5{bottom:360.210000px;}
.y88{bottom:362.550000px;}
.y5d{bottom:363.090000px;}
.y29{bottom:365.070000px;}
.yf2{bottom:369.570000px;}
.y5c{bottom:378.750000px;}
.y28{bottom:380.730000px;}
.yf1{bottom:384.870000px;}
.y5b{bottom:393.915000px;}
.y87{bottom:395.715000px;}
.yf0{bottom:400.935000px;}
.y27{bottom:403.095000px;}
.y5a{bottom:409.575000px;}
.y26{bottom:418.755000px;}
.yc4{bottom:424.875000px;}
.y59{bottom:425.595000px;}
.y86{bottom:428.835000px;}
.yef{bottom:431.715000px;}
.yc3{bottom:440.355000px;}
.y25{bottom:441.075000px;}
.yee{bottom:447.555000px;}
.yc2{bottom:456.015000px;}
.y24{bottom:456.555000px;}
.y58{bottom:456.735000px;}
.y7e{bottom:461.955000px;}
.yed{bottom:463.215000px;}
.yc1{bottom:471.495000px;}
.y23{bottom:472.215000px;}
.y126{bottom:473.475000px;}
.yec{bottom:478.695000px;}
.yc0{bottom:486.975000px;}
.y22{bottom:487.695000px;}
.y57{bottom:487.875000px;}
.y125{bottom:489.135000px;}
.yeb{bottom:494.355000px;}
.y84{bottom:494.895000px;}
.ybf{bottom:502.455000px;}
.y21{bottom:503.175000px;}
.y56{bottom:503.355000px;}
.y124{bottom:504.615000px;}
.yea{bottom:509.835000px;}
.ybe{bottom:518.115000px;}
.y20{bottom:518.655000px;}
.y55{bottom:519.015000px;}
.y123{bottom:520.275000px;}
.ye9{bottom:525.495000px;}
.y83{bottom:528.015000px;}
.ybd{bottom:533.415000px;}
.y1f{bottom:534.315000px;}
.y54{bottom:534.495000px;}
.y122{bottom:535.935000px;}
.ye8{bottom:540.975000px;}
.ybc{bottom:548.895000px;}
.y53{bottom:549.795000px;}
.y121{bottom:551.415000px;}
.ye7{bottom:556.455000px;}
.y1e{bottom:556.815000px;}
.y82{bottom:561.135000px;}
.ybb{bottom:564.555000px;}
.y52{bottom:565.815000px;}
.y120{bottom:567.075000px;}
.ye6{bottom:571.755000px;}
.y1d{bottom:572.475000px;}
.y9f{bottom:576.795000px;}
.yba{bottom:577.875000px;}
.y51{bottom:581.295000px;}
.y11f{bottom:582.735000px;}
.ye5{bottom:587.775000px;}
.y9e{bottom:592.275000px;}
.y78{bottom:594.255000px;}
.y1c{bottom:594.795000px;}
.y50{bottom:596.955000px;}
.y11e{bottom:598.215000px;}
.ye4{bottom:600.195000px;}
.y9d{bottom:607.755000px;}
.y1b{bottom:610.455000px;}
.y4f{bottom:612.435000px;}
.yb9{bottom:613.515000px;}
.y11d{bottom:613.875000px;}
.y9c{bottom:623.415000px;}
.y4e{bottom:628.095000px;}
.y11c{bottom:629.535000px;}
.y1a{bottom:632.775000px;}
.y9b{bottom:638.895000px;}
.y4d{bottom:643.245000px;}
.ya9{bottom:645.045000px;}
.y19{bottom:648.465000px;}
.yb8{bottom:649.005000px;}
.y9a{bottom:654.405000px;}
.y4c{bottom:658.905000px;}
.ya8{bottom:660.525000px;}
.y11b{bottom:660.705000px;}
.y99{bottom:670.065000px;}
.y18{bottom:670.965000px;}
.y4b{bottom:674.925000px;}
.ya7{bottom:676.005000px;}
.y11a{bottom:676.365000px;}
.yb4{bottom:684.645000px;}
.y98{bottom:685.185000px;}
.y4a{bottom:690.405000px;}
.ya6{bottom:691.665000px;}
.y119{bottom:691.845000px;}
.y17{bottom:693.105000px;}
.y97{bottom:700.845000px;}
.y49{bottom:705.885000px;}
.ya5{bottom:706.785000px;}
.y118{bottom:707.505000px;}
.y77{bottom:714.705000px;}
.y16{bottom:715.605000px;}
.y96{bottom:716.505000px;}
.yb5{bottom:720.105000px;}
.y48{bottom:721.545000px;}
.ya4{bottom:722.805000px;}
.y76{bottom:730.185000px;}
.y95{bottom:731.985000px;}
.ya3{bottom:735.225000px;}
.y47{bottom:737.025000px;}
.y117{bottom:738.645000px;}
.y15{bottom:742.425000px;}
.y75{bottom:745.665000px;}
.y94{bottom:748.005000px;}
.y46{bottom:752.325000px;}
.y116{bottom:754.305000px;}
.y14{bottom:757.905000px;}
.y93{bottom:760.425000px;}
.y74{bottom:761.145000px;}
.y115{bottom:769.785000px;}
.y13{bottom:773.385000px;}
.y73{bottom:776.805000px;}
.y45{bottom:783.825000px;}
.y114{bottom:785.265000px;}
.y72{bottom:792.465000px;}
.yb3{bottom:794.625000px;}
.y44{bottom:799.305000px;}
.y113{bottom:800.925000px;}
.y71{bottom:805.425000px;}
.y12{bottom:808.125000px;}
.yb2{bottom:810.285000px;}
.y43{bottom:814.785000px;}
.y112{bottom:816.405000px;}
.yb1{bottom:825.765000px;}
.y11{bottom:828.105000px;}
.y42{bottom:830.445000px;}
.y111{bottom:832.065000px;}
.y70{bottom:835.485000px;}
.yb0{bottom:838.185000px;}
.y41{bottom:846.105000px;}
.y110{bottom:847.185000px;}
.y10{bottom:858.345000px;}
.y40{bottom:861.225000px;}
.y6f{bottom:865.725000px;}
.y3f{bottom:876.885000px;}
.y10f{bottom:878.325000px;}
.ye3{bottom:878.505000px;}
.yf{bottom:893.310000px;}
.ye2{bottom:894.030000px;}
.y10e{bottom:894.390000px;}
.y6e{bottom:895.830000px;}
.y3e{bottom:908.430000px;}
.ye1{bottom:909.690000px;}
.y10d{bottom:909.870000px;}
.y3d{bottom:924.090000px;}
.ye0{bottom:925.170000px;}
.y10c{bottom:925.530000px;}
.y6d{bottom:926.070000px;}
.ye{bottom:932.370000px;}
.ydf{bottom:940.830000px;}
.y10b{bottom:941.010000px;}
.y3c{bottom:955.230000px;}
.yde{bottom:955.950000px;}
.y6b{bottom:956.130000px;}
.yd{bottom:956.670000px;}
.y3b{bottom:967.650000px;}
.ydd{bottom:971.610000px;}
.y10a{bottom:972.150000px;}
.y69{bottom:986.370000px;}
.ydc{bottom:987.630000px;}
.ydb{bottom:1003.110000px;}
.y109{bottom:1003.290000px;}
.yc{bottom:1016.070000px;}
.y67{bottom:1016.430000px;}
.yda{bottom:1018.590000px;}
.y108{bottom:1018.770000px;}
.y9{bottom:1034.070000px;}
.yd9{bottom:1034.250000px;}
.y107{bottom:1034.430000px;}
.yb{bottom:1039.290000px;}
.yd8{bottom:1049.730000px;}
.y106{bottom:1049.910000px;}
.y8{bottom:1057.290000px;}
.yd7{bottom:1065.390000px;}
.y66{bottom:1065.570000px;}
.ya{bottom:1071.330000px;}
.yd6{bottom:1080.690000px;}
.y65{bottom:1081.050000px;}
.y7{bottom:1086.630000px;}
.yd5{bottom:1096.170000px;}
.y64{bottom:1096.530000px;}
.y92{bottom:1096.710000px;}
.y6{bottom:1105.710000px;}
.yd4{bottom:1111.830000px;}
.y63{bottom:1112.190000px;}
.y5{bottom:1122.990000px;}
.y105{bottom:1127.310000px;}
.y62{bottom:1127.670000px;}
.y91{bottom:1127.850000px;}
.y4{bottom:1140.270000px;}
.y61{bottom:1142.970000px;}
.y90{bottom:1143.330000px;}
.y3{bottom:1158.300000px;}
.ya2{bottom:1158.660000px;}
.y60{bottom:1159.020000px;}
.y38{bottom:1175.220000px;}
.y37{bottom:1193.760000px;}
.h2b{height:15.480000px;}
.h2c{height:20.340000px;}
.h28{height:20.520000px;}
.h2d{height:20.700000px;}
.h27{height:24.300000px;}
.h14{height:29.340000px;}
.h15{height:29.376000px;}
.h13{height:29.520000px;}
.h2a{height:30.960000px;}
.h29{height:31.140000px;}
.h1c{height:32.220000px;}
.h1b{height:32.400000px;}
.h1e{height:32.436000px;}
.h18{height:32.940000px;}
.h22{height:34.740000px;}
.h25{height:34.776000px;}
.h23{height:34.920000px;}
.hc{height:35.314453px;}
.hf{height:38.158594px;}
.h26{height:45.036000px;}
.h10{height:47.344922px;}
.h7{height:48.616875px;}
.hb{height:52.971680px;}
.h11{height:52.998047px;}
.h24{height:53.332031px;}
.hd{height:54.421875px;}
.h2e{height:55.503491px;}
.h8{height:55.796836px;}
.h12{height:55.824609px;}
.h9{height:58.621992px;}
.h4{height:60.226875px;}
.he{height:62.153438px;}
.h2{height:65.010937px;}
.h1f{height:66.096000px;}
.h5{height:66.757500px;}
.h17{height:66.816000px;}
.h21{height:70.380000px;}
.h3{height:72.562500px;}
.h6{height:81.995625px;}
.ha{height:84.898125px;}
.h16{height:100.656000px;}
.h20{height:105.840000px;}
.h19{height:131.580000px;}
.h1d{height:131.616000px;}
.h1a{height:463.035000px;}
.h1{height:1263.000000px;}
.h0{height:1263.060000px;}
.w5{width:56.520000px;}
.w11{width:68.220000px;}
.w15{width:68.580000px;}
.w8{width:73.800000px;}
.wd{width:74.160000px;}
.wf{width:77.220000px;}
.w13{width:84.600000px;}
.w17{width:84.960000px;}
.w1b{width:86.400000px;}
.w1c{width:86.616000px;}
.w1d{width:86.976000px;}
.w7{width:94.536000px;}
.wc{width:94.896000px;}
.w1a{width:96.876000px;}
.w10{width:109.656000px;}
.w19{width:110.196000px;}
.wa{width:115.776000px;}
.wb{width:116.136000px;}
.w12{width:118.116000px;}
.w16{width:118.656000px;}
.w9{width:148.176000px;}
.w6{width:148.536000px;}
.we{width:148.896000px;}
.w3{width:166.530000px;}
.w14{width:176.475000px;}
.w18{width:176.835000px;}
.w4{width:268.635000px;}
.w1e{width:347.475000px;}
.w1{width:894.000000px;}
.w2{width:894.059987px;}
.w0{width:894.060000px;}
.x0{left:0.000000px;}
.x49{left:8.100000px;}
.x17{left:9.720000px;}
.x16{left:11.340000px;}
.x34{left:13.500000px;}
.x45{left:14.580000px;}
.x25{left:16.560000px;}
.x23{left:18.180000px;}
.x36{left:19.440000px;}
.x29{left:21.780000px;}
.x26{left:23.040000px;}
.x1c{left:24.165000px;}
.x30{left:25.194000px;}
.x1e{left:27.585000px;}
.x50{left:28.650000px;}
.x1{left:30.059987px;}
.x27{left:32.580000px;}
.x2d{left:34.380000px;}
.x4a{left:35.634000px;}
.x1a{left:37.305000px;}
.x46{left:40.890000px;}
.x33{left:43.380000px;}
.x2f{left:44.460000px;}
.xa{left:46.799987px;}
.x35{left:48.240000px;}
.xd{left:50.399987px;}
.x32{left:51.660000px;}
.x31{left:54.540000px;}
.x7{left:55.799987px;}
.x18{left:57.645000px;}
.x2b{left:59.400000px;}
.x2e{left:60.660000px;}
.x15{left:61.965000px;}
.x4b{left:73.665000px;}
.x54{left:101.375987px;}
.x19{left:102.630000px;}
.x1f{left:104.970000px;}
.x14{left:106.230000px;}
.x20{left:111.810000px;}
.x1d{left:113.970000px;}
.x1b{left:120.990000px;}
.x21{left:132.696000px;}
.x41{left:133.956000px;}
.x51{left:162.570000px;}
.x9{left:170.849987px;}
.x22{left:189.930000px;}
.x42{left:212.070000px;}
.x4c{left:230.790000px;}
.x12{left:235.290000px;}
.x4{left:244.109987px;}
.x40{left:261.434987px;}
.x3e{left:269.174987px;}
.x2{left:270.254987px;}
.x3c{left:272.774987px;}
.x11{left:277.094987px;}
.x3a{left:282.494987px;}
.x3{left:290.594987px;}
.x53{left:304.994987px;}
.x43{left:322.455000px;}
.x38{left:328.394987px;}
.x24{left:339.195000px;}
.x8{left:365.654987px;}
.x44{left:391.575000px;}
.x13{left:402.195000px;}
.xb{left:412.454987px;}
.x4d{left:414.795000px;}
.x28{left:434.445000px;}
.xe{left:440.744987px;}
.xc{left:449.204987px;}
.x5{left:478.904987px;}
.x4e{left:501.765000px;}
.x6{left:506.444987px;}
.x2a{left:508.965000px;}
.x47{left:510.405000px;}
.x4f{left:588.525000px;}
.x48{left:595.725000px;}
.xf{left:613.589987px;}
.x2c{left:657.870000px;}
.x10{left:669.929987px;}
.x52{left:698.369987px;}
.x3f{left:702.689987px;}
.x37{left:710.609987px;}
.x3b{left:753.449987px;}
.x3d{left:755.249987px;}
.x39{left:766.949987px;}
@media print{
.v2{vertical-align:-60.800000pt;}
.v5{vertical-align:-57.600000pt;}
.v1{vertical-align:-55.680000pt;}
.v6{vertical-align:-54.400000pt;}
.v4{vertical-align:-16.000000pt;}
.v8{vertical-align:-5.120000pt;}
.v7{vertical-align:-2.560000pt;}
.v0{vertical-align:0.000000pt;}
.v9{vertical-align:2.560000pt;}
.va{vertical-align:16.000000pt;}
.v3{vertical-align:21.120000pt;}
.ls1d{letter-spacing:-1.728000pt;}
.ls1c{letter-spacing:-1.408000pt;}
.ls1e{letter-spacing:-1.376000pt;}
.ls1b{letter-spacing:-0.960000pt;}
.ls27{letter-spacing:-0.928000pt;}
.ls10{letter-spacing:-0.832000pt;}
.ls22{letter-spacing:-0.736000pt;}
.ls18{letter-spacing:-0.624000pt;}
.ls12{letter-spacing:-0.528000pt;}
.ls2f{letter-spacing:-0.480000pt;}
.ls23{letter-spacing:-0.448000pt;}
.lsb{letter-spacing:-0.320000pt;}
.lsd{letter-spacing:-0.196267pt;}
.ls1a{letter-spacing:-0.192000pt;}
.ls26{letter-spacing:-0.160000pt;}
.lse{letter-spacing:-0.112000pt;}
.ls17{letter-spacing:-0.096000pt;}
.lsc{letter-spacing:-0.024320pt;}
.ls1f{letter-spacing:-0.016000pt;}
.lsa{letter-spacing:0.000000pt;}
.ls6{letter-spacing:0.016000pt;}
.lsf{letter-spacing:0.096000pt;}
.ls2e{letter-spacing:0.112000pt;}
.ls1{letter-spacing:0.160000pt;}
.ls28{letter-spacing:0.224000pt;}
.ls16{letter-spacing:0.233067pt;}
.ls2{letter-spacing:0.320000pt;}
.ls11{letter-spacing:0.656000pt;}
.ls29{letter-spacing:0.704000pt;}
.ls24{letter-spacing:2.080000pt;}
.ls2d{letter-spacing:2.656000pt;}
.ls4{letter-spacing:4.640000pt;}
.ls20{letter-spacing:10.400000pt;}
.ls5{letter-spacing:11.680000pt;}
.ls2c{letter-spacing:26.976000pt;}
.ls7{letter-spacing:46.720000pt;}
.ls9{letter-spacing:49.440000pt;}
.ls3{letter-spacing:59.040000pt;}
.ls0{letter-spacing:137.760000pt;}
.ls19{letter-spacing:477.066667pt;}
.ls21{letter-spacing:746.026667pt;}
.ls13{letter-spacing:1066.666667pt;}
.ls14{letter-spacing:1084.586667pt;}
.ls25{letter-spacing:1096.746667pt;}
.ls15{letter-spacing:1121.045333pt;}
.ls8{letter-spacing:1215.146667pt;}
.ls2a{letter-spacing:1254.186667pt;}
.ls2b{letter-spacing:1255.466667pt;}
.ws1{word-spacing:-17.760000pt;}
.ws0{word-spacing:-16.000000pt;}
.ws11{word-spacing:-14.953067pt;}
.ws3{word-spacing:-12.960000pt;}
.wsd{word-spacing:-12.656000pt;}
.ws6{word-spacing:-12.640000pt;}
.ws2{word-spacing:-12.615680pt;}
.ws4{word-spacing:-12.443733pt;}
.ws5{word-spacing:-12.320000pt;}
.wsc{word-spacing:-12.096000pt;}
.wse{word-spacing:-12.016000pt;}
.ws9{word-spacing:-12.000000pt;}
.ws1c{word-spacing:-11.984000pt;}
.ws12{word-spacing:-11.904000pt;}
.wsb{word-spacing:-11.888000pt;}
.ws15{word-spacing:-11.808000pt;}
.wsa{word-spacing:-11.680000pt;}
.ws18{word-spacing:-11.552000pt;}
.wsf{word-spacing:-11.472000pt;}
.ws17{word-spacing:-11.264000pt;}
.ws13{word-spacing:-11.040000pt;}
.ws14{word-spacing:-10.592000pt;}
.ws16{word-spacing:-10.272000pt;}
.ws7{word-spacing:-9.280000pt;}
.ws1b{word-spacing:-8.704000pt;}
.ws1a{word-spacing:-8.224000pt;}
.ws8{word-spacing:-8.000000pt;}
.ws19{word-spacing:-7.072000pt;}
.ws10{word-spacing:0.000000pt;}
._1{margin-left:-2.867200pt;}
._0{margin-left:-1.216000pt;}
._2{width:0.958720pt;}
._7{width:2.541227pt;}
._8{width:3.432747pt;}
._9{width:4.395947pt;}
._5{width:5.808000pt;}
._6{width:6.778667pt;}
._d{width:8.160000pt;}
._f{width:9.840000pt;}
._a{width:11.002667pt;}
._b{width:13.456000pt;}
._e{width:716.090667pt;}
._c{width:925.706667pt;}
._4{width:1281.066667pt;}
._3{width:1399.573333pt;}
.fs9{font-size:32.000000pt;}
.fsb{font-size:34.560000pt;}
.fs7{font-size:37.120000pt;}
.fs4{font-size:42.880000pt;}
.fs8{font-size:48.000000pt;}
.fs5{font-size:50.560000pt;}
.fs2{font-size:53.120000pt;}
.fsa{font-size:56.320000pt;}
.fs0{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs3{font-size:72.320000pt;}
.fs6{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y79{bottom:2.560000pt;}
.y68{bottom:2.720000pt;}
.y6a{bottom:2.880000pt;}
.y6c{bottom:3.040000pt;}
.y7b{bottom:16.320000pt;}
.y7c{bottom:16.346667pt;}
.yb6{bottom:16.480000pt;}
.y7f{bottom:16.640000pt;}
.y7a{bottom:30.080000pt;}
.y7d{bottom:30.106667pt;}
.yb7{bottom:30.240000pt;}
.y3a{bottom:48.160000pt;}
.y2{bottom:51.520000pt;}
.y39{bottom:52.320000pt;}
.y1{bottom:68.320000pt;}
.yd3{bottom:69.920000pt;}
.y5f{bottom:74.720000pt;}
.y8f{bottom:76.320000pt;}
.y104{bottom:79.360000pt;}
.yd2{bottom:83.840000pt;}
.y5e{bottom:85.760000pt;}
.y8e{bottom:90.240000pt;}
.ya1{bottom:90.560000pt;}
.y103{bottom:92.960000pt;}
.yd1{bottom:97.760000pt;}
.y36{bottom:100.800000pt;}
.ya0{bottom:101.440000pt;}
.y8d{bottom:104.480000pt;}
.y102{bottom:107.200000pt;}
.yd0{bottom:111.520000pt;}
.y35{bottom:114.560000pt;}
.y80{bottom:116.000000pt;}
.y101{bottom:120.992000pt;}
.ycf{bottom:125.472000pt;}
.y34{bottom:128.512000pt;}
.y100{bottom:134.906667pt;}
.yce{bottom:139.706667pt;}
.y33{bottom:142.266667pt;}
.yff{bottom:148.346667pt;}
.ycd{bottom:151.226667pt;}
.yaf{bottom:153.786667pt;}
.y32{bottom:156.026667pt;}
.yfe{bottom:162.266667pt;}
.yae{bottom:167.706667pt;}
.y31{bottom:169.946667pt;}
.ycc{bottom:170.266667pt;}
.y89{bottom:175.386667pt;}
.yfd{bottom:176.026667pt;}
.yad{bottom:181.466667pt;}
.y30{bottom:183.706667pt;}
.ycb{bottom:188.986667pt;}
.yfc{bottom:190.266667pt;}
.yac{bottom:195.066667pt;}
.y2f{bottom:197.466667pt;}
.y81{bottom:201.786667pt;}
.yca{bottom:203.546667pt;}
.yfb{bottom:204.026667pt;}
.y8c{bottom:204.666667pt;}
.yab{bottom:209.306667pt;}
.y2e{bottom:211.386667pt;}
.yfa{bottom:217.946667pt;}
.yaa{bottom:220.186667pt;}
.yc9{bottom:222.426667pt;}
.yf9{bottom:231.706667pt;}
.y8b{bottom:234.106667pt;}
.y2d{bottom:238.746667pt;}
.yf8{bottom:245.626667pt;}
.yc8{bottom:250.746667pt;}
.yf7{bottom:259.386667pt;}
.y8a{bottom:263.546667pt;}
.y2c{bottom:266.266667pt;}
.yf6{bottom:273.146667pt;}
.yc7{bottom:279.066667pt;}
.y2b{bottom:282.426667pt;}
.yf5{bottom:287.066667pt;}
.y85{bottom:292.986667pt;}
.yc6{bottom:297.946667pt;}
.yf4{bottom:300.826667pt;}
.y2a{bottom:308.186667pt;}
.yf3{bottom:314.746667pt;}
.yc5{bottom:320.186667pt;}
.y88{bottom:322.266667pt;}
.y5d{bottom:322.746667pt;}
.y29{bottom:324.506667pt;}
.yf2{bottom:328.506667pt;}
.y5c{bottom:336.666667pt;}
.y28{bottom:338.426667pt;}
.yf1{bottom:342.106667pt;}
.y5b{bottom:350.146667pt;}
.y87{bottom:351.746667pt;}
.yf0{bottom:356.386667pt;}
.y27{bottom:358.306667pt;}
.y5a{bottom:364.066667pt;}
.y26{bottom:372.226667pt;}
.yc4{bottom:377.666667pt;}
.y59{bottom:378.306667pt;}
.y86{bottom:381.186667pt;}
.yef{bottom:383.746667pt;}
.yc3{bottom:391.426667pt;}
.y25{bottom:392.066667pt;}
.yee{bottom:397.826667pt;}
.yc2{bottom:405.346667pt;}
.y24{bottom:405.826667pt;}
.y58{bottom:405.986667pt;}
.y7e{bottom:410.626667pt;}
.yed{bottom:411.746667pt;}
.yc1{bottom:419.106667pt;}
.y23{bottom:419.746667pt;}
.y126{bottom:420.866667pt;}
.yec{bottom:425.506667pt;}
.yc0{bottom:432.866667pt;}
.y22{bottom:433.506667pt;}
.y57{bottom:433.666667pt;}
.y125{bottom:434.786667pt;}
.yeb{bottom:439.426667pt;}
.y84{bottom:439.906667pt;}
.ybf{bottom:446.626667pt;}
.y21{bottom:447.266667pt;}
.y56{bottom:447.426667pt;}
.y124{bottom:448.546667pt;}
.yea{bottom:453.186667pt;}
.ybe{bottom:460.546667pt;}
.y20{bottom:461.026667pt;}
.y55{bottom:461.346667pt;}
.y123{bottom:462.466667pt;}
.ye9{bottom:467.106667pt;}
.y83{bottom:469.346667pt;}
.ybd{bottom:474.146667pt;}
.y1f{bottom:474.946667pt;}
.y54{bottom:475.106667pt;}
.y122{bottom:476.386667pt;}
.ye8{bottom:480.866667pt;}
.ybc{bottom:487.906667pt;}
.y53{bottom:488.706667pt;}
.y121{bottom:490.146667pt;}
.ye7{bottom:494.626667pt;}
.y1e{bottom:494.946667pt;}
.y82{bottom:498.786667pt;}
.ybb{bottom:501.826667pt;}
.y52{bottom:502.946667pt;}
.y120{bottom:504.066667pt;}
.ye6{bottom:508.226667pt;}
.y1d{bottom:508.866667pt;}
.y9f{bottom:512.706667pt;}
.yba{bottom:513.666667pt;}
.y51{bottom:516.706667pt;}
.y11f{bottom:517.986667pt;}
.ye5{bottom:522.466667pt;}
.y9e{bottom:526.466667pt;}
.y78{bottom:528.226667pt;}
.y1c{bottom:528.706667pt;}
.y50{bottom:530.626667pt;}
.y11e{bottom:531.746667pt;}
.ye4{bottom:533.506667pt;}
.y9d{bottom:540.226667pt;}
.y1b{bottom:542.626667pt;}
.y4f{bottom:544.386667pt;}
.yb9{bottom:545.346667pt;}
.y11d{bottom:545.666667pt;}
.y9c{bottom:554.146667pt;}
.y4e{bottom:558.306667pt;}
.y11c{bottom:559.586667pt;}
.y1a{bottom:562.466667pt;}
.y9b{bottom:567.906667pt;}
.y4d{bottom:571.773333pt;}
.ya9{bottom:573.373333pt;}
.y19{bottom:576.413333pt;}
.yb8{bottom:576.893333pt;}
.y9a{bottom:581.693333pt;}
.y4c{bottom:585.693333pt;}
.ya8{bottom:587.133333pt;}
.y11b{bottom:587.293333pt;}
.y99{bottom:595.613333pt;}
.y18{bottom:596.413333pt;}
.y4b{bottom:599.933333pt;}
.ya7{bottom:600.893333pt;}
.y11a{bottom:601.213333pt;}
.yb4{bottom:608.573333pt;}
.y98{bottom:609.053333pt;}
.y4a{bottom:613.693333pt;}
.ya6{bottom:614.813333pt;}
.y119{bottom:614.973333pt;}
.y17{bottom:616.093333pt;}
.y97{bottom:622.973333pt;}
.y49{bottom:627.453333pt;}
.ya5{bottom:628.253333pt;}
.y118{bottom:628.893333pt;}
.y77{bottom:635.293333pt;}
.y16{bottom:636.093333pt;}
.y96{bottom:636.893333pt;}
.yb5{bottom:640.093333pt;}
.y48{bottom:641.373333pt;}
.ya4{bottom:642.493333pt;}
.y76{bottom:649.053333pt;}
.y95{bottom:650.653333pt;}
.ya3{bottom:653.533333pt;}
.y47{bottom:655.133333pt;}
.y117{bottom:656.573333pt;}
.y15{bottom:659.933333pt;}
.y75{bottom:662.813333pt;}
.y94{bottom:664.893333pt;}
.y46{bottom:668.733333pt;}
.y116{bottom:670.493333pt;}
.y14{bottom:673.693333pt;}
.y93{bottom:675.933333pt;}
.y74{bottom:676.573333pt;}
.y115{bottom:684.253333pt;}
.y13{bottom:687.453333pt;}
.y73{bottom:690.493333pt;}
.y45{bottom:696.733333pt;}
.y114{bottom:698.013333pt;}
.y72{bottom:704.413333pt;}
.yb3{bottom:706.333333pt;}
.y44{bottom:710.493333pt;}
.y113{bottom:711.933333pt;}
.y71{bottom:715.933333pt;}
.y12{bottom:718.333333pt;}
.yb2{bottom:720.253333pt;}
.y43{bottom:724.253333pt;}
.y112{bottom:725.693333pt;}
.yb1{bottom:734.013333pt;}
.y11{bottom:736.093333pt;}
.y42{bottom:738.173333pt;}
.y111{bottom:739.613333pt;}
.y70{bottom:742.653333pt;}
.yb0{bottom:745.053333pt;}
.y41{bottom:752.093333pt;}
.y110{bottom:753.053333pt;}
.y10{bottom:762.973333pt;}
.y40{bottom:765.533333pt;}
.y6f{bottom:769.533333pt;}
.y3f{bottom:779.453333pt;}
.y10f{bottom:780.733333pt;}
.ye3{bottom:780.893333pt;}
.yf{bottom:794.053333pt;}
.ye2{bottom:794.693333pt;}
.y10e{bottom:795.013333pt;}
.y6e{bottom:796.293333pt;}
.y3e{bottom:807.493333pt;}
.ye1{bottom:808.613333pt;}
.y10d{bottom:808.773333pt;}
.y3d{bottom:821.413333pt;}
.ye0{bottom:822.373333pt;}
.y10c{bottom:822.693333pt;}
.y6d{bottom:823.173333pt;}
.ye{bottom:828.773333pt;}
.ydf{bottom:836.293333pt;}
.y10b{bottom:836.453333pt;}
.y3c{bottom:849.093333pt;}
.yde{bottom:849.733333pt;}
.y6b{bottom:849.893333pt;}
.yd{bottom:850.373333pt;}
.y3b{bottom:860.133333pt;}
.ydd{bottom:863.653333pt;}
.y10a{bottom:864.133333pt;}
.y69{bottom:876.773333pt;}
.ydc{bottom:877.893333pt;}
.ydb{bottom:891.653333pt;}
.y109{bottom:891.813333pt;}
.yc{bottom:903.173333pt;}
.y67{bottom:903.493333pt;}
.yda{bottom:905.413333pt;}
.y108{bottom:905.573333pt;}
.y9{bottom:919.173333pt;}
.yd9{bottom:919.333333pt;}
.y107{bottom:919.493333pt;}
.yb{bottom:923.813333pt;}
.yd8{bottom:933.093333pt;}
.y106{bottom:933.253333pt;}
.y8{bottom:939.813333pt;}
.yd7{bottom:947.013333pt;}
.y66{bottom:947.173333pt;}
.ya{bottom:952.293333pt;}
.yd6{bottom:960.613333pt;}
.y65{bottom:960.933333pt;}
.y7{bottom:965.893333pt;}
.yd5{bottom:974.373333pt;}
.y64{bottom:974.693333pt;}
.y92{bottom:974.853333pt;}
.y6{bottom:982.853333pt;}
.yd4{bottom:988.293333pt;}
.y63{bottom:988.613333pt;}
.y5{bottom:998.213333pt;}
.y105{bottom:1002.053333pt;}
.y62{bottom:1002.373333pt;}
.y91{bottom:1002.533333pt;}
.y4{bottom:1013.573333pt;}
.y61{bottom:1015.973333pt;}
.y90{bottom:1016.293333pt;}
.y3{bottom:1029.600000pt;}
.ya2{bottom:1029.920000pt;}
.y60{bottom:1030.240000pt;}
.y38{bottom:1044.640000pt;}
.y37{bottom:1061.120000pt;}
.h2b{height:13.760000pt;}
.h2c{height:18.080000pt;}
.h28{height:18.240000pt;}
.h2d{height:18.400000pt;}
.h27{height:21.600000pt;}
.h14{height:26.080000pt;}
.h15{height:26.112000pt;}
.h13{height:26.240000pt;}
.h2a{height:27.520000pt;}
.h29{height:27.680000pt;}
.h1c{height:28.640000pt;}
.h1b{height:28.800000pt;}
.h1e{height:28.832000pt;}
.h18{height:29.280000pt;}
.h22{height:30.880000pt;}
.h25{height:30.912000pt;}
.h23{height:31.040000pt;}
.hc{height:31.390625pt;}
.hf{height:33.918750pt;}
.h26{height:40.032000pt;}
.h10{height:42.084375pt;}
.h7{height:43.215000pt;}
.hb{height:47.085938pt;}
.h11{height:47.109375pt;}
.h24{height:47.406250pt;}
.hd{height:48.375000pt;}
.h2e{height:49.336436pt;}
.h8{height:49.597187pt;}
.h12{height:49.621875pt;}
.h9{height:52.108438pt;}
.h4{height:53.535000pt;}
.he{height:55.247500pt;}
.h2{height:57.787500pt;}
.h1f{height:58.752000pt;}
.h5{height:59.340000pt;}
.h17{height:59.392000pt;}
.h21{height:62.560000pt;}
.h3{height:64.500000pt;}
.h6{height:72.885000pt;}
.ha{height:75.465000pt;}
.h16{height:89.472000pt;}
.h20{height:94.080000pt;}
.h19{height:116.960000pt;}
.h1d{height:116.992000pt;}
.h1a{height:411.586667pt;}
.h1{height:1122.666667pt;}
.h0{height:1122.720000pt;}
.w5{width:50.240000pt;}
.w11{width:60.640000pt;}
.w15{width:60.960000pt;}
.w8{width:65.600000pt;}
.wd{width:65.920000pt;}
.wf{width:68.640000pt;}
.w13{width:75.200000pt;}
.w17{width:75.520000pt;}
.w1b{width:76.800000pt;}
.w1c{width:76.992000pt;}
.w1d{width:77.312000pt;}
.w7{width:84.032000pt;}
.wc{width:84.352000pt;}
.w1a{width:86.112000pt;}
.w10{width:97.472000pt;}
.w19{width:97.952000pt;}
.wa{width:102.912000pt;}
.wb{width:103.232000pt;}
.w12{width:104.992000pt;}
.w16{width:105.472000pt;}
.w9{width:131.712000pt;}
.w6{width:132.032000pt;}
.we{width:132.352000pt;}
.w3{width:148.026667pt;}
.w14{width:156.866667pt;}
.w18{width:157.186667pt;}
.w4{width:238.786667pt;}
.w1e{width:308.866667pt;}
.w1{width:794.666667pt;}
.w2{width:794.719988pt;}
.w0{width:794.720000pt;}
.x0{left:0.000000pt;}
.x49{left:7.200000pt;}
.x17{left:8.640000pt;}
.x16{left:10.080000pt;}
.x34{left:12.000000pt;}
.x45{left:12.960000pt;}
.x25{left:14.720000pt;}
.x23{left:16.160000pt;}
.x36{left:17.280000pt;}
.x29{left:19.360000pt;}
.x26{left:20.480000pt;}
.x1c{left:21.480000pt;}
.x30{left:22.394667pt;}
.x1e{left:24.520000pt;}
.x50{left:25.466667pt;}
.x1{left:26.719988pt;}
.x27{left:28.960000pt;}
.x2d{left:30.560000pt;}
.x4a{left:31.674667pt;}
.x1a{left:33.160000pt;}
.x46{left:36.346667pt;}
.x33{left:38.560000pt;}
.x2f{left:39.520000pt;}
.xa{left:41.599988pt;}
.x35{left:42.880000pt;}
.xd{left:44.799988pt;}
.x32{left:45.920000pt;}
.x31{left:48.480000pt;}
.x7{left:49.599988pt;}
.x18{left:51.240000pt;}
.x2b{left:52.800000pt;}
.x2e{left:53.920000pt;}
.x15{left:55.080000pt;}
.x4b{left:65.480000pt;}
.x54{left:90.111988pt;}
.x19{left:91.226667pt;}
.x1f{left:93.306667pt;}
.x14{left:94.426667pt;}
.x20{left:99.386667pt;}
.x1d{left:101.306667pt;}
.x1b{left:107.546667pt;}
.x21{left:117.952000pt;}
.x41{left:119.072000pt;}
.x51{left:144.506667pt;}
.x9{left:151.866655pt;}
.x22{left:168.826667pt;}
.x42{left:188.506667pt;}
.x4c{left:205.146667pt;}
.x12{left:209.146667pt;}
.x4{left:216.986655pt;}
.x40{left:232.386655pt;}
.x3e{left:239.266655pt;}
.x2{left:240.226655pt;}
.x3c{left:242.466655pt;}
.x11{left:246.306655pt;}
.x3a{left:251.106655pt;}
.x3{left:258.306655pt;}
.x53{left:271.106655pt;}
.x43{left:286.626667pt;}
.x38{left:291.906655pt;}
.x24{left:301.506667pt;}
.x8{left:325.026655pt;}
.x44{left:348.066667pt;}
.x13{left:357.506667pt;}
.xb{left:366.626655pt;}
.x4d{left:368.706667pt;}
.x28{left:386.173333pt;}
.xe{left:391.773321pt;}
.xc{left:399.293321pt;}
.x5{left:425.693321pt;}
.x4e{left:446.013333pt;}
.x6{left:450.173321pt;}
.x2a{left:452.413333pt;}
.x47{left:453.693333pt;}
.x4f{left:523.133333pt;}
.x48{left:529.533333pt;}
.xf{left:545.413321pt;}
.x2c{left:584.773333pt;}
.x10{left:595.493321pt;}
.x52{left:620.773321pt;}
.x3f{left:624.613321pt;}
.x37{left:631.653321pt;}
.x3b{left:669.733321pt;}
.x3d{left:671.333321pt;}
.x39{left:681.733321pt;}
}




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