
    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_3e9d8567d3962c4b409f81e4.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_3397e10ed886e0f679a5b5e3.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.432129;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_12d81382803d917d9fd1116e.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.432129;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_8416220d09e7b921f40f087c.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_3286245f147ad6ceacdddea4.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_c76098ae173c61c3fed3a1df.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_0bc5447a87659556840844a1.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.910645;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_041e691391f19a5b334f5a28.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_7f28bb8bbc50d5bee143d8ba.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.706543;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;}
.m2{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,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);}
.v3{vertical-align:-81.360000px;}
.v2{vertical-align:-33.120000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:33.120000px;}
.ls4{letter-spacing:-1.440000px;}
.lsd{letter-spacing:-0.457800px;}
.ls9{letter-spacing:-0.288000px;}
.ls6{letter-spacing:-0.216000px;}
.ls2{letter-spacing:-0.072000px;}
.ls1{letter-spacing:0.000000px;}
.lsa{letter-spacing:0.072000px;}
.ls8{letter-spacing:0.144000px;}
.lsf{letter-spacing:0.181200px;}
.lse{letter-spacing:0.181440px;}
.lsb{letter-spacing:0.216000px;}
.ls3{letter-spacing:0.360000px;}
.ls5{letter-spacing:0.504000px;}
.ls0{letter-spacing:0.720000px;}
.lsc{letter-spacing:0.792000px;}
.ls7{letter-spacing:54.864000px;}
.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;}
}
.ws6{word-spacing:-72.000000px;}
.wsd{word-spacing:-66.240000px;}
.ws0{word-spacing:-19.944000px;}
.wsb{word-spacing:-18.792000px;}
.ws3{word-spacing:-18.504000px;}
.ws7{word-spacing:-18.144000px;}
.wsa{word-spacing:-18.072000px;}
.ws2{word-spacing:-18.000000px;}
.ws9{word-spacing:-17.928000px;}
.ws4{word-spacing:-17.784000px;}
.ws8{word-spacing:-17.712000px;}
.wse{word-spacing:-16.560000px;}
.wsc{word-spacing:-16.102200px;}
.wsf{word-spacing:-13.860000px;}
.ws1{word-spacing:-13.410720px;}
.ws5{word-spacing:0.000000px;}
._3{margin-left:-2.413440px;}
._1{margin-left:-1.261440px;}
._0{width:1.056000px;}
._2{width:2.354880px;}
._4{width:559.884000px;}
.fc2{color:transparent;}
.fc1{color:rgb(51,51,51);}
.fc0{color:rgb(0,0,0);}
.fs1{font-size:48.240000px;}
.fs5{font-size:54.000000px;}
.fs4{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs3{font-size:84.240000px;}
.fs2{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y85{bottom:3.585000px;}
.y77{bottom:3.600000px;}
.y82{bottom:3.765000px;}
.y79{bottom:3.780000px;}
.y86{bottom:3.945000px;}
.y7b{bottom:3.960000px;}
.y83{bottom:4.125000px;}
.y7a{bottom:4.140000px;}
.yb2{bottom:4.485000px;}
.y3{bottom:4.500000px;}
.yea{bottom:6.285000px;}
.y96{bottom:6.300000px;}
.ye8{bottom:6.330000px;}
.y103{bottom:7.200000px;}
.yc5{bottom:8.460000px;}
.yfb{bottom:10.260000px;}
.yd2{bottom:10.965000px;}
.yc9{bottom:10.980000px;}
.yd5{bottom:11.145000px;}
.yc4{bottom:11.160000px;}
.yc7{bottom:11.340000px;}
.y8c{bottom:14.205000px;}
.y8d{bottom:14.565000px;}
.y11d{bottom:15.480000px;}
.y12b{bottom:15.660000px;}
.y120{bottom:18.720000px;}
.y11a{bottom:18.900000px;}
.y76{bottom:22.680000px;}
.y11b{bottom:23.400000px;}
.yf5{bottom:23.760000px;}
.yfe{bottom:23.790000px;}
.ydd{bottom:25.200000px;}
.y110{bottom:25.920000px;}
.y10b{bottom:26.460000px;}
.y10e{bottom:26.640000px;}
.y11c{bottom:31.140000px;}
.y119{bottom:43.380000px;}
.y2{bottom:52.920000px;}
.y1{bottom:57.420000px;}
.ydc{bottom:66.600000px;}
.y10a{bottom:67.860000px;}
.yf3{bottom:95.040000px;}
.yc2{bottom:109.470000px;}
.yf1{bottom:114.480000px;}
.ybc{bottom:117.180000px;}
.y91{bottom:118.080000px;}
.y156{bottom:124.380000px;}
.yd9{bottom:125.100000px;}
.y24{bottom:133.200000px;}
.y90{bottom:138.780000px;}
.y68{bottom:138.960000px;}
.y4d{bottom:139.860000px;}
.yd8{bottom:145.800000px;}
.y52{bottom:146.340000px;}
.y6c{bottom:146.700000px;}
.y169{bottom:148.500000px;}
.y8f{bottom:155.700000px;}
.y155{bottom:165.780000px;}
.y108{bottom:166.500000px;}
.y141{bottom:167.400000px;}
.y23{bottom:174.990000px;}
.yf0{bottom:177.510000px;}
.y67{bottom:180.390000px;}
.y4c{bottom:181.290000px;}
.y5c{bottom:182.910000px;}
.y8e{bottom:183.645000px;}
.yd7{bottom:184.170000px;}
.y3b{bottom:185.610000px;}
.y51{bottom:187.770000px;}
.y6b{bottom:188.130000px;}
.y127{bottom:189.210000px;}
.y168{bottom:189.930000px;}
.y154{bottom:207.210000px;}
.y140{bottom:208.830000px;}
.y8b{bottom:211.725000px;}
.ybb{bottom:215.325000px;}
.y22{bottom:216.390000px;}
.y66{bottom:221.790000px;}
.y4b{bottom:222.690000px;}
.y5b{bottom:224.310000px;}
.y3a{bottom:227.010000px;}
.y107{bottom:229.350000px;}
.y50{bottom:229.530000px;}
.yba{bottom:236.745000px;}
.y167{bottom:240.330000px;}
.yef{bottom:240.510000px;}
.y153{bottom:248.430000px;}
.y126{bottom:248.610000px;}
.y13f{bottom:250.230000px;}
.y8a{bottom:250.245000px;}
.yb9{bottom:257.445000px;}
.y21{bottom:257.790000px;}
.y65{bottom:263.190000px;}
.y4a{bottom:263.730000px;}
.y5a{bottom:265.710000px;}
.y39{bottom:268.410000px;}
.y4f{bottom:270.930000px;}
.yb8{bottom:278.145000px;}
.y89{bottom:278.325000px;}
.y166{bottom:290.730000px;}
.y106{bottom:292.350000px;}
.yee{bottom:293.625000px;}
.y152{bottom:298.830000px;}
.yb7{bottom:298.845000px;}
.y20{bottom:299.190000px;}
.y13e{bottom:300.630000px;}
.y64{bottom:304.590000px;}
.y88{bottom:306.225000px;}
.y59{bottom:306.930000px;}
.y125{bottom:308.010000px;}
.y49{bottom:309.090000px;}
.y38{bottom:309.810000px;}
.y71{bottom:311.970000px;}
.y4e{bottom:312.330000px;}
.yed{bottom:316.845000px;}
.yb6{bottom:319.545000px;}
.yd6{bottom:321.885000px;}
.y165{bottom:332.130000px;}
.y87{bottom:334.305000px;}
.yec{bottom:339.345000px;}
.y151{bottom:340.230000px;}
.yb5{bottom:340.245000px;}
.y1f{bottom:340.590000px;}
.y13d{bottom:342.030000px;}
.yd4{bottom:345.825000px;}
.y63{bottom:345.990000px;}
.y58{bottom:349.770000px;}
.y37{bottom:351.210000px;}
.y6a{bottom:353.370000px;}
.y48{bottom:353.730000px;}
.y105{bottom:355.170000px;}
.yb4{bottom:360.945000px;}
.yeb{bottom:361.845000px;}
.y84{bottom:362.205000px;}
.y124{bottom:367.410000px;}
.yd3{bottom:369.225000px;}
.y1e{bottom:381.630000px;}
.yb3{bottom:381.645000px;}
.y164{bottom:382.530000px;}
.ye9{bottom:384.345000px;}
.y62{bottom:387.210000px;}
.y81{bottom:390.105000px;}
.y150{bottom:390.630000px;}
.y57{bottom:391.170000px;}
.y13c{bottom:392.430000px;}
.yd1{bottom:392.445000px;}
.y36{bottom:392.610000px;}
.y69{bottom:394.770000px;}
.y47{bottom:395.130000px;}
.yb1{bottom:402.345000px;}
.y123{bottom:406.290000px;}
.ye7{bottom:406.845000px;}
.y1d{bottom:412.995000px;}
.yd0{bottom:415.695000px;}
.y80{bottom:418.215000px;}
.yb0{bottom:423.075000px;}
.y122{bottom:423.255000px;}
.y163{bottom:423.975000px;}
.ye6{bottom:429.375000px;}
.y61{bottom:429.915000px;}
.y14f{bottom:432.075000px;}
.y56{bottom:432.615000px;}
.y13b{bottom:433.875000px;}
.y35{bottom:434.055000px;}
.y70{bottom:436.215000px;}
.y46{bottom:436.575000px;}
.ycf{bottom:439.095000px;}
.y1c{bottom:443.955000px;}
.yaf{bottom:444.495000px;}
.y7f{bottom:446.115000px;}
.ye5{bottom:451.875000px;}
.yce{bottom:462.315000px;}
.y121{bottom:463.215000px;}
.y162{bottom:465.375000px;}
.yae{bottom:470.415000px;}
.y60{bottom:472.575000px;}
.y14e{bottom:473.475000px;}
.y7e{bottom:474.195000px;}
.y1b{bottom:475.095000px;}
.y34{bottom:475.455000px;}
.y6f{bottom:477.615000px;}
.y45{bottom:477.975000px;}
.y104{bottom:481.035000px;}
.y13a{bottom:484.275000px;}
.ycd{bottom:485.535000px;}
.y7d{bottom:502.095000px;}
.y11f{bottom:503.355000px;}
.y1a{bottom:506.055000px;}
.ycc{bottom:508.935000px;}
.yad{bottom:509.115000px;}
.y5f{bottom:515.415000px;}
.y161{bottom:515.775000px;}
.ye4{bottom:515.955000px;}
.y33{bottom:516.855000px;}
.y44{bottom:519.375000px;}
.y14d{bottom:523.875000px;}
.y139{bottom:525.675000px;}
.yac{bottom:529.815000px;}
.y7c{bottom:529.995000px;}
.ycb{bottom:532.155000px;}
.y102{bottom:534.315000px;}
.y19{bottom:537.195000px;}
.y11e{bottom:543.315000px;}
.yab{bottom:550.515000px;}
.ye3{bottom:551.595000px;}
.yca{bottom:555.375000px;}
.y160{bottom:557.175000px;}
.y5e{bottom:558.075000px;}
.y32{bottom:558.255000px;}
.y101{bottom:558.615000px;}
.y43{bottom:560.775000px;}
.y14c{bottom:565.275000px;}
.y18{bottom:568.155000px;}
.yaa{bottom:571.215000px;}
.y138{bottom:576.075000px;}
.yc8{bottom:578.775000px;}
.y118{bottom:584.175000px;}
.y78{bottom:585.975000px;}
.ye2{bottom:587.235000px;}
.ya9{bottom:591.915000px;}
.y100{bottom:594.615000px;}
.y173{bottom:598.575000px;}
.y17{bottom:599.295000px;}
.y31{bottom:599.475000px;}
.y5d{bottom:600.735000px;}
.y73{bottom:601.815000px;}
.yc6{bottom:601.995000px;}
.y42{bottom:602.175000px;}
.y14b{bottom:606.675000px;}
.y15f{bottom:607.575000px;}
.ya8{bottom:612.615000px;}
.y75{bottom:614.775000px;}
.yff{bottom:617.115000px;}
.y137{bottom:617.475000px;}
.yc1{bottom:626.475000px;}
.y16{bottom:630.255000px;}
.ya7{bottom:633.315000px;}
.ye1{bottom:637.275000px;}
.yfd{bottom:639.615000px;}
.y172{bottom:639.975000px;}
.y30{bottom:640.875000px;}
.y72{bottom:643.215000px;}
.y41{bottom:643.575000px;}
.y15e{bottom:648.975000px;}
.ya6{bottom:654.015000px;}
.y14a{bottom:657.075000px;}
.y136{bottom:658.545000px;}
.y15{bottom:661.245000px;}
.ye0{bottom:661.425000px;}
.y117{bottom:666.105000px;}
.ya5{bottom:674.745000px;}
.yfc{bottom:675.645000px;}
.y171{bottom:681.405000px;}
.y2f{bottom:682.305000px;}
.y55{bottom:683.745000px;}
.y40{bottom:685.005000px;}
.y15d{bottom:690.405000px;}
.y14{bottom:692.385000px;}
.y116{bottom:693.105000px;}
.ya4{bottom:695.445000px;}
.y149{bottom:698.505000px;}
.y135{bottom:699.945000px;}
.y74{bottom:705.345000px;}
.yfa{bottom:711.645000px;}
.ydf{bottom:711.825000px;}
.ya3{bottom:716.145000px;}
.y13{bottom:723.345000px;}
.y2e{bottom:723.705000px;}
.y54{bottom:724.965000px;}
.y3f{bottom:726.405000px;}
.y115{bottom:728.925000px;}
.y170{bottom:731.805000px;}
.yf9{bottom:734.145000px;}
.ya2{bottom:736.845000px;}
.y148{bottom:739.905000px;}
.y15c{bottom:740.805000px;}
.y134{bottom:741.705000px;}
.y114{bottom:749.625000px;}
.ya1{bottom:753.765000px;}
.yde{bottom:762.225000px;}
.y133{bottom:762.405000px;}
.y2d{bottom:765.105000px;}
.y3e{bottom:767.805000px;}
.y12{bottom:768.705000px;}
.yf8{bottom:770.145000px;}
.y113{bottom:770.325000px;}
.ya0{bottom:776.985000px;}
.y15b{bottom:782.205000px;}
.y132{bottom:783.105000px;}
.y147{bottom:790.305000px;}
.y112{bottom:791.025000px;}
.y11{bottom:796.785000px;}
.y9f{bottom:799.485000px;}
.y131{bottom:803.805000px;}
.yf7{bottom:806.145000px;}
.y2c{bottom:807.765000px;}
.y3d{bottom:809.205000px;}
.ydb{bottom:813.345000px;}
.y10{bottom:821.625000px;}
.y9e{bottom:821.985000px;}
.yc3{bottom:823.245000px;}
.y16f{bottom:823.605000px;}
.y130{bottom:824.505000px;}
.y146{bottom:831.705000px;}
.y15a{bottom:832.605000px;}
.y111{bottom:840.885000px;}
.y12f{bottom:841.425000px;}
.yf6{bottom:842.145000px;}
.y9d{bottom:844.485000px;}
.yf{bottom:846.465000px;}
.y2b{bottom:850.605000px;}
.y10f{bottom:864.825000px;}
.y16e{bottom:865.005000px;}
.y9c{bottom:866.985000px;}
.yc0{bottom:872.925000px;}
.y145{bottom:873.105000px;}
.y159{bottom:874.005000px;}
.yf4{bottom:878.145000px;}
.ye{bottom:879.585000px;}
.y12e{bottom:881.565000px;}
.y9b{bottom:889.485000px;}
.yd{bottom:892.005000px;}
.y9a{bottom:912.030000px;}
.yf2{bottom:914.910000px;}
.y158{bottom:915.450000px;}
.y10d{bottom:916.530000px;}
.yc{bottom:916.890000px;}
.y12d{bottom:921.570000px;}
.y144{bottom:923.550000px;}
.yda{bottom:931.470000px;}
.y2a{bottom:933.450000px;}
.y99{bottom:934.530000px;}
.yb{bottom:941.730000px;}
.y16d{bottom:956.850000px;}
.y98{bottom:957.030000px;}
.y12c{bottom:961.710000px;}
.y143{bottom:965.310000px;}
.y157{bottom:965.850000px;}
.ya{bottom:966.570000px;}
.y10c{bottom:968.370000px;}
.y6e{bottom:974.490000px;}
.y29{bottom:974.850000px;}
.y97{bottom:979.530000px;}
.ybf{bottom:995.550000px;}
.y16c{bottom:998.250000px;}
.y9{bottom:999.690000px;}
.y95{bottom:1002.030000px;}
.y12a{bottom:1002.390000px;}
.y142{bottom:1007.250000px;}
.y6d{bottom:1015.890000px;}
.y28{bottom:1016.250000px;}
.y109{bottom:1020.930000px;}
.y8{bottom:1024.530000px;}
.y94{bottom:1025.250000px;}
.ybe{bottom:1036.950000px;}
.y7{bottom:1046.670000px;}
.y16b{bottom:1048.650000px;}
.y27{bottom:1057.650000px;}
.y93{bottom:1060.350000px;}
.y6{bottom:1077.810000px;}
.ybd{bottom:1078.350000px;}
.y16a{bottom:1090.050000px;}
.y53{bottom:1098.690000px;}
.y129{bottom:1098.870000px;}
.y26{bottom:1099.050000px;}
.y5{bottom:1108.770000px;}
.y92{bottom:1119.750000px;}
.y4{bottom:1139.910000px;}
.y25{bottom:1140.090000px;}
.y128{bottom:1140.270000px;}
.y3c{bottom:1140.450000px;}
.h14{height:20.685000px;}
.h3{height:20.698500px;}
.h18{height:20.721000px;}
.h15{height:22.485000px;}
.h17{height:22.500000px;}
.h23{height:22.521000px;}
.h16{height:22.522500px;}
.h1e{height:23.205000px;}
.h20{height:23.241000px;}
.h1f{height:23.385000px;}
.h1b{height:23.400000px;}
.h1d{height:23.565000px;}
.h10{height:27.885000px;}
.h13{height:27.936000px;}
.he{height:28.065000px;}
.h11{height:28.101000px;}
.h28{height:35.985000px;}
.h26{height:36.000000px;}
.h25{height:36.022500px;}
.h27{height:36.030000px;}
.h12{height:38.505000px;}
.h2f{height:39.945000px;}
.h30{height:39.982500px;}
.h2e{height:40.125000px;}
.h31{height:40.140000px;}
.hc{height:47.010000px;}
.h6{height:47.321367px;}
.h7{height:47.344922px;}
.ha{height:50.027344px;}
.h22{height:50.400000px;}
.h2a{height:51.645000px;}
.h2c{height:51.682500px;}
.h2b{height:51.825000px;}
.h1a{height:52.998047px;}
.h2d{height:55.605000px;}
.hf{height:65.010937px;}
.hd{height:66.757500px;}
.h2{height:70.664062px;}
.h9{height:72.562500px;}
.h4{height:75.093750px;}
.hb{height:80.464922px;}
.h8{height:84.898125px;}
.h21{height:91.822500px;}
.h29{height:93.045000px;}
.h5{height:112.640625px;}
.h1c{height:196.050000px;}
.h24{height:199.065000px;}
.h19{height:220.170000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:8.985000px;}
.w3{width:17.985000px;}
.w21{width:32.565000px;}
.w1d{width:36.705000px;}
.w36{width:40.845000px;}
.w42{width:42.465000px;}
.w1b{width:42.480000px;}
.w40{width:42.645000px;}
.w30{width:44.100000px;}
.w34{width:44.985000px;}
.w1c{width:46.296000px;}
.w32{width:46.440000px;}
.w35{width:47.505000px;}
.w33{width:47.556000px;}
.w31{width:49.140000px;}
.w1f{width:49.305000px;}
.w4a{width:49.341000px;}
.w1a{width:51.480000px;}
.w20{width:51.501000px;}
.w48{width:51.516000px;}
.w3f{width:53.100000px;}
.w1e{width:53.445000px;}
.w18{width:53.625000px;}
.w37{width:55.641000px;}
.w19{width:56.001000px;}
.w3a{width:85.161000px;}
.w6{width:94.536000px;}
.w24{width:95.745000px;}
.w47{width:97.560000px;}
.w8{width:101.916000px;}
.w46{width:106.041000px;}
.w26{width:106.365000px;}
.w27{width:106.401000px;}
.w38{width:116.856000px;}
.we{width:117.021000px;}
.w23{width:117.036000px;}
.wc{width:118.281000px;}
.w39{width:127.476000px;}
.w25{width:127.656000px;}
.w49{width:136.425000px;}
.w2c{width:136.461000px;}
.w4{width:137.181000px;}
.w15{width:137.721000px;}
.w2a{width:137.901000px;}
.w13{width:138.261000px;}
.w5{width:146.520000px;}
.w7{width:147.621000px;}
.w16{width:148.849500px;}
.w12{width:148.896000px;}
.w44{width:149.076000px;}
.w14{width:149.436000px;}
.w29{width:151.590000px;}
.w2e{width:156.450000px;}
.w43{width:157.515000px;}
.w41{width:159.495000px;}
.w9{width:162.195000px;}
.w3e{width:170.119500px;}
.w2f{width:174.259500px;}
.wb{width:176.070000px;}
.w22{width:180.735000px;}
.w10{width:180.750000px;}
.w45{width:185.775000px;}
.w3c{width:191.550000px;}
.w2d{width:199.455000px;}
.w3d{width:201.975000px;}
.w28{width:202.515000px;}
.w2b{width:204.135000px;}
.w3b{width:223.219500px;}
.wf{width:224.479500px;}
.wa{width:227.175000px;}
.wd{width:229.159500px;}
.w11{width:258.135000px;}
.w17{width:462.330000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2a{left:5.203500px;}
.x6a{left:6.825000px;}
.x1a{left:8.085000px;}
.x4f{left:9.360000px;}
.x4b{left:10.980000px;}
.x4c{left:12.780000px;}
.x17{left:14.430000px;}
.x4e{left:15.480000px;}
.x4d{left:16.560000px;}
.x15{left:17.640000px;}
.x46{left:19.065000px;}
.x27{left:21.060000px;}
.x13{left:22.305000px;}
.x44{left:23.790000px;}
.x70{left:25.005000px;}
.x41{left:26.280000px;}
.x23{left:27.885000px;}
.x1d{left:30.405000px;}
.x59{left:32.925000px;}
.x1f{left:34.545000px;}
.x53{left:36.900000px;}
.x34{left:38.145000px;}
.x1c{left:40.890000px;}
.x2e{left:42.645000px;}
.x58{left:44.085000px;}
.x56{left:46.065000px;}
.x31{left:47.145000px;}
.x20{left:49.170000px;}
.x21{left:51.510000px;}
.x3a{left:53.085000px;}
.x3b{left:54.210000px;}
.x76{left:55.243500px;}
.x19{left:57.585000px;}
.x39{left:59.385000px;}
.x1b{left:60.660000px;}
.x79{left:61.905000px;}
.x2c{left:63.180000px;}
.x1e{left:64.800000px;}
.x77{left:68.940000px;}
.x30{left:70.020000px;}
.x32{left:76.860000px;}
.x33{left:81.360000px;}
.x51{left:90.345000px;}
.x3d{left:117.046500px;}
.x1{left:127.656000px;}
.x75{left:138.286500px;}
.xb{left:141.876000px;}
.x63{left:144.406500px;}
.x29{left:148.906500px;}
.xf{left:153.570000px;}
.x3{left:154.650000px;}
.x36{left:159.525000px;}
.x25{left:160.785000px;}
.x5{left:170.130000px;}
.x12{left:172.665000px;}
.x4{left:181.650000px;}
.x3f{left:184.350000px;}
.x7e{left:185.445000px;}
.x6d{left:191.385000px;}
.x5a{left:199.470000px;}
.x50{left:201.450000px;}
.x73{left:204.150000px;}
.x6c{left:213.150000px;}
.x7d{left:224.670000px;}
.x8{left:255.630000px;}
.xa{left:262.470000px;}
.x3e{left:265.905000px;}
.xe{left:274.170000px;}
.x9{left:280.155000px;}
.x24{left:288.615000px;}
.x10{left:289.875000px;}
.xd{left:291.855000px;}
.x7{left:296.715000px;}
.x7a{left:308.415000px;}
.x14{left:309.855000px;}
.x35{left:313.095000px;}
.x64{left:318.675000px;}
.x3c{left:321.915000px;}
.x5b{left:324.795000px;}
.x62{left:333.615000px;}
.x7f{left:342.975000px;}
.x52{left:361.515000px;}
.x65{left:362.775000px;}
.x60{left:370.155000px;}
.x6e{left:372.135000px;}
.x2f{left:373.395000px;}
.x5e{left:375.015000px;}
.x2b{left:378.075000px;}
.x5c{left:384.915000px;}
.x26{left:387.975000px;}
.x66{left:411.915000px;}
.x42{left:415.875000px;}
.x37{left:417.675000px;}
.x74{left:439.635000px;}
.x11{left:446.475000px;}
.x16{left:456.375000px;}
.x43{left:458.355000px;}
.x6b{left:466.995000px;}
.x61{left:473.145000px;}
.x54{left:478.560000px;}
.x57{left:489.180000px;}
.x80{left:492.060000px;}
.x71{left:499.620000px;}
.x45{left:504.660000px;}
.x67{left:505.920000px;}
.x7b{left:510.420000px;}
.x5f{left:526.620000px;}
.x5d{left:536.520000px;}
.x47{left:541.380000px;}
.x18{left:550.920000px;}
.x78{left:553.080000px;}
.x2d{left:554.160000px;}
.x22{left:558.300000px;}
.x28{left:564.060000px;}
.x38{left:566.580000px;}
.x55{left:574.320000px;}
.x6f{left:584.760000px;}
.x48{left:594.840000px;}
.x68{left:598.440000px;}
.x72{left:606.000000px;}
.x81{left:628.500000px;}
.x69{left:639.300000px;}
.x49{left:644.160000px;}
.x6{left:678.030000px;}
.x4a{left:695.670000px;}
.x7c{left:712.590000px;}
.x40{left:728.250000px;}
.xc{left:747.510000px;}
.x2{left:756.510000px;}
@media print{
.v3{vertical-align:-72.320000pt;}
.v2{vertical-align:-29.440000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:29.440000pt;}
.ls4{letter-spacing:-1.280000pt;}
.lsd{letter-spacing:-0.406933pt;}
.ls9{letter-spacing:-0.256000pt;}
.ls6{letter-spacing:-0.192000pt;}
.ls2{letter-spacing:-0.064000pt;}
.ls1{letter-spacing:0.000000pt;}
.lsa{letter-spacing:0.064000pt;}
.ls8{letter-spacing:0.128000pt;}
.lsf{letter-spacing:0.161067pt;}
.lse{letter-spacing:0.161280pt;}
.lsb{letter-spacing:0.192000pt;}
.ls3{letter-spacing:0.320000pt;}
.ls5{letter-spacing:0.448000pt;}
.ls0{letter-spacing:0.640000pt;}
.lsc{letter-spacing:0.704000pt;}
.ls7{letter-spacing:48.768000pt;}
.ws6{word-spacing:-64.000000pt;}
.wsd{word-spacing:-58.880000pt;}
.ws0{word-spacing:-17.728000pt;}
.wsb{word-spacing:-16.704000pt;}
.ws3{word-spacing:-16.448000pt;}
.ws7{word-spacing:-16.128000pt;}
.wsa{word-spacing:-16.064000pt;}
.ws2{word-spacing:-16.000000pt;}
.ws9{word-spacing:-15.936000pt;}
.ws4{word-spacing:-15.808000pt;}
.ws8{word-spacing:-15.744000pt;}
.wse{word-spacing:-14.720000pt;}
.wsc{word-spacing:-14.313067pt;}
.wsf{word-spacing:-12.320000pt;}
.ws1{word-spacing:-11.920640pt;}
.ws5{word-spacing:0.000000pt;}
._3{margin-left:-2.145280pt;}
._1{margin-left:-1.121280pt;}
._0{width:0.938667pt;}
._2{width:2.093227pt;}
._4{width:497.674667pt;}
.fs1{font-size:42.880000pt;}
.fs5{font-size:48.000000pt;}
.fs4{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs3{font-size:74.880000pt;}
.fs2{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y85{bottom:3.186667pt;}
.y77{bottom:3.200000pt;}
.y82{bottom:3.346667pt;}
.y79{bottom:3.360000pt;}
.y86{bottom:3.506667pt;}
.y7b{bottom:3.520000pt;}
.y83{bottom:3.666667pt;}
.y7a{bottom:3.680000pt;}
.yb2{bottom:3.986667pt;}
.y3{bottom:4.000000pt;}
.yea{bottom:5.586667pt;}
.y96{bottom:5.600000pt;}
.ye8{bottom:5.626667pt;}
.y103{bottom:6.400000pt;}
.yc5{bottom:7.520000pt;}
.yfb{bottom:9.120000pt;}
.yd2{bottom:9.746667pt;}
.yc9{bottom:9.760000pt;}
.yd5{bottom:9.906667pt;}
.yc4{bottom:9.920000pt;}
.yc7{bottom:10.080000pt;}
.y8c{bottom:12.626667pt;}
.y8d{bottom:12.946667pt;}
.y11d{bottom:13.760000pt;}
.y12b{bottom:13.920000pt;}
.y120{bottom:16.640000pt;}
.y11a{bottom:16.800000pt;}
.y76{bottom:20.160000pt;}
.y11b{bottom:20.800000pt;}
.yf5{bottom:21.120000pt;}
.yfe{bottom:21.146667pt;}
.ydd{bottom:22.400000pt;}
.y110{bottom:23.040000pt;}
.y10b{bottom:23.520000pt;}
.y10e{bottom:23.680000pt;}
.y11c{bottom:27.680000pt;}
.y119{bottom:38.560000pt;}
.y2{bottom:47.040000pt;}
.y1{bottom:51.040000pt;}
.ydc{bottom:59.200000pt;}
.y10a{bottom:60.320000pt;}
.yf3{bottom:84.480000pt;}
.yc2{bottom:97.306667pt;}
.yf1{bottom:101.760000pt;}
.ybc{bottom:104.160000pt;}
.y91{bottom:104.960000pt;}
.y156{bottom:110.560000pt;}
.yd9{bottom:111.200000pt;}
.y24{bottom:118.400000pt;}
.y90{bottom:123.360000pt;}
.y68{bottom:123.520000pt;}
.y4d{bottom:124.320000pt;}
.yd8{bottom:129.600000pt;}
.y52{bottom:130.080000pt;}
.y6c{bottom:130.400000pt;}
.y169{bottom:132.000000pt;}
.y8f{bottom:138.400000pt;}
.y155{bottom:147.360000pt;}
.y108{bottom:148.000000pt;}
.y141{bottom:148.800000pt;}
.y23{bottom:155.546667pt;}
.yf0{bottom:157.786667pt;}
.y67{bottom:160.346667pt;}
.y4c{bottom:161.146667pt;}
.y5c{bottom:162.586667pt;}
.y8e{bottom:163.240000pt;}
.yd7{bottom:163.706667pt;}
.y3b{bottom:164.986667pt;}
.y51{bottom:166.906667pt;}
.y6b{bottom:167.226667pt;}
.y127{bottom:168.186667pt;}
.y168{bottom:168.826667pt;}
.y154{bottom:184.186667pt;}
.y140{bottom:185.626667pt;}
.y8b{bottom:188.200000pt;}
.ybb{bottom:191.400000pt;}
.y22{bottom:192.346667pt;}
.y66{bottom:197.146667pt;}
.y4b{bottom:197.946667pt;}
.y5b{bottom:199.386667pt;}
.y3a{bottom:201.786667pt;}
.y107{bottom:203.866667pt;}
.y50{bottom:204.026667pt;}
.yba{bottom:210.440000pt;}
.y167{bottom:213.626667pt;}
.yef{bottom:213.786667pt;}
.y153{bottom:220.826667pt;}
.y126{bottom:220.986667pt;}
.y13f{bottom:222.426667pt;}
.y8a{bottom:222.440000pt;}
.yb9{bottom:228.840000pt;}
.y21{bottom:229.146667pt;}
.y65{bottom:233.946667pt;}
.y4a{bottom:234.426667pt;}
.y5a{bottom:236.186667pt;}
.y39{bottom:238.586667pt;}
.y4f{bottom:240.826667pt;}
.yb8{bottom:247.240000pt;}
.y89{bottom:247.400000pt;}
.y166{bottom:258.426667pt;}
.y106{bottom:259.866667pt;}
.yee{bottom:261.000000pt;}
.y152{bottom:265.626667pt;}
.yb7{bottom:265.640000pt;}
.y20{bottom:265.946667pt;}
.y13e{bottom:267.226667pt;}
.y64{bottom:270.746667pt;}
.y88{bottom:272.200000pt;}
.y59{bottom:272.826667pt;}
.y125{bottom:273.786667pt;}
.y49{bottom:274.746667pt;}
.y38{bottom:275.386667pt;}
.y71{bottom:277.306667pt;}
.y4e{bottom:277.626667pt;}
.yed{bottom:281.640000pt;}
.yb6{bottom:284.040000pt;}
.yd6{bottom:286.120000pt;}
.y165{bottom:295.226667pt;}
.y87{bottom:297.160000pt;}
.yec{bottom:301.640000pt;}
.y151{bottom:302.426667pt;}
.yb5{bottom:302.440000pt;}
.y1f{bottom:302.746667pt;}
.y13d{bottom:304.026667pt;}
.yd4{bottom:307.400000pt;}
.y63{bottom:307.546667pt;}
.y58{bottom:310.906667pt;}
.y37{bottom:312.186667pt;}
.y6a{bottom:314.106667pt;}
.y48{bottom:314.426667pt;}
.y105{bottom:315.706667pt;}
.yb4{bottom:320.840000pt;}
.yeb{bottom:321.640000pt;}
.y84{bottom:321.960000pt;}
.y124{bottom:326.586667pt;}
.yd3{bottom:328.200000pt;}
.y1e{bottom:339.226667pt;}
.yb3{bottom:339.240000pt;}
.y164{bottom:340.026667pt;}
.ye9{bottom:341.640000pt;}
.y62{bottom:344.186667pt;}
.y81{bottom:346.760000pt;}
.y150{bottom:347.226667pt;}
.y57{bottom:347.706667pt;}
.y13c{bottom:348.826667pt;}
.yd1{bottom:348.840000pt;}
.y36{bottom:348.986667pt;}
.y69{bottom:350.906667pt;}
.y47{bottom:351.226667pt;}
.yb1{bottom:357.640000pt;}
.y123{bottom:361.146667pt;}
.ye7{bottom:361.640000pt;}
.y1d{bottom:367.106667pt;}
.yd0{bottom:369.506667pt;}
.y80{bottom:371.746667pt;}
.yb0{bottom:376.066667pt;}
.y122{bottom:376.226667pt;}
.y163{bottom:376.866667pt;}
.ye6{bottom:381.666667pt;}
.y61{bottom:382.146667pt;}
.y14f{bottom:384.066667pt;}
.y56{bottom:384.546667pt;}
.y13b{bottom:385.666667pt;}
.y35{bottom:385.826667pt;}
.y70{bottom:387.746667pt;}
.y46{bottom:388.066667pt;}
.ycf{bottom:390.306667pt;}
.y1c{bottom:394.626667pt;}
.yaf{bottom:395.106667pt;}
.y7f{bottom:396.546667pt;}
.ye5{bottom:401.666667pt;}
.yce{bottom:410.946667pt;}
.y121{bottom:411.746667pt;}
.y162{bottom:413.666667pt;}
.yae{bottom:418.146667pt;}
.y60{bottom:420.066667pt;}
.y14e{bottom:420.866667pt;}
.y7e{bottom:421.506667pt;}
.y1b{bottom:422.306667pt;}
.y34{bottom:422.626667pt;}
.y6f{bottom:424.546667pt;}
.y45{bottom:424.866667pt;}
.y104{bottom:427.586667pt;}
.y13a{bottom:430.466667pt;}
.ycd{bottom:431.586667pt;}
.y7d{bottom:446.306667pt;}
.y11f{bottom:447.426667pt;}
.y1a{bottom:449.826667pt;}
.ycc{bottom:452.386667pt;}
.yad{bottom:452.546667pt;}
.y5f{bottom:458.146667pt;}
.y161{bottom:458.466667pt;}
.ye4{bottom:458.626667pt;}
.y33{bottom:459.426667pt;}
.y44{bottom:461.666667pt;}
.y14d{bottom:465.666667pt;}
.y139{bottom:467.266667pt;}
.yac{bottom:470.946667pt;}
.y7c{bottom:471.106667pt;}
.ycb{bottom:473.026667pt;}
.y102{bottom:474.946667pt;}
.y19{bottom:477.506667pt;}
.y11e{bottom:482.946667pt;}
.yab{bottom:489.346667pt;}
.ye3{bottom:490.306667pt;}
.yca{bottom:493.666667pt;}
.y160{bottom:495.266667pt;}
.y5e{bottom:496.066667pt;}
.y32{bottom:496.226667pt;}
.y101{bottom:496.546667pt;}
.y43{bottom:498.466667pt;}
.y14c{bottom:502.466667pt;}
.y18{bottom:505.026667pt;}
.yaa{bottom:507.746667pt;}
.y138{bottom:512.066667pt;}
.yc8{bottom:514.466667pt;}
.y118{bottom:519.266667pt;}
.y78{bottom:520.866667pt;}
.ye2{bottom:521.986667pt;}
.ya9{bottom:526.146667pt;}
.y100{bottom:528.546667pt;}
.y173{bottom:532.066667pt;}
.y17{bottom:532.706667pt;}
.y31{bottom:532.866667pt;}
.y5d{bottom:533.986667pt;}
.y73{bottom:534.946667pt;}
.yc6{bottom:535.106667pt;}
.y42{bottom:535.266667pt;}
.y14b{bottom:539.266667pt;}
.y15f{bottom:540.066667pt;}
.ya8{bottom:544.546667pt;}
.y75{bottom:546.466667pt;}
.yff{bottom:548.546667pt;}
.y137{bottom:548.866667pt;}
.yc1{bottom:556.866667pt;}
.y16{bottom:560.226667pt;}
.ya7{bottom:562.946667pt;}
.ye1{bottom:566.466667pt;}
.yfd{bottom:568.546667pt;}
.y172{bottom:568.866667pt;}
.y30{bottom:569.666667pt;}
.y72{bottom:571.746667pt;}
.y41{bottom:572.066667pt;}
.y15e{bottom:576.866667pt;}
.ya6{bottom:581.346667pt;}
.y14a{bottom:584.066667pt;}
.y136{bottom:585.373333pt;}
.y15{bottom:587.773333pt;}
.ye0{bottom:587.933333pt;}
.y117{bottom:592.093333pt;}
.ya5{bottom:599.773333pt;}
.yfc{bottom:600.573333pt;}
.y171{bottom:605.693333pt;}
.y2f{bottom:606.493333pt;}
.y55{bottom:607.773333pt;}
.y40{bottom:608.893333pt;}
.y15d{bottom:613.693333pt;}
.y14{bottom:615.453333pt;}
.y116{bottom:616.093333pt;}
.ya4{bottom:618.173333pt;}
.y149{bottom:620.893333pt;}
.y135{bottom:622.173333pt;}
.y74{bottom:626.973333pt;}
.yfa{bottom:632.573333pt;}
.ydf{bottom:632.733333pt;}
.ya3{bottom:636.573333pt;}
.y13{bottom:642.973333pt;}
.y2e{bottom:643.293333pt;}
.y54{bottom:644.413333pt;}
.y3f{bottom:645.693333pt;}
.y115{bottom:647.933333pt;}
.y170{bottom:650.493333pt;}
.yf9{bottom:652.573333pt;}
.ya2{bottom:654.973333pt;}
.y148{bottom:657.693333pt;}
.y15c{bottom:658.493333pt;}
.y134{bottom:659.293333pt;}
.y114{bottom:666.333333pt;}
.ya1{bottom:670.013333pt;}
.yde{bottom:677.533333pt;}
.y133{bottom:677.693333pt;}
.y2d{bottom:680.093333pt;}
.y3e{bottom:682.493333pt;}
.y12{bottom:683.293333pt;}
.yf8{bottom:684.573333pt;}
.y113{bottom:684.733333pt;}
.ya0{bottom:690.653333pt;}
.y15b{bottom:695.293333pt;}
.y132{bottom:696.093333pt;}
.y147{bottom:702.493333pt;}
.y112{bottom:703.133333pt;}
.y11{bottom:708.253333pt;}
.y9f{bottom:710.653333pt;}
.y131{bottom:714.493333pt;}
.yf7{bottom:716.573333pt;}
.y2c{bottom:718.013333pt;}
.y3d{bottom:719.293333pt;}
.ydb{bottom:722.973333pt;}
.y10{bottom:730.333333pt;}
.y9e{bottom:730.653333pt;}
.yc3{bottom:731.773333pt;}
.y16f{bottom:732.093333pt;}
.y130{bottom:732.893333pt;}
.y146{bottom:739.293333pt;}
.y15a{bottom:740.093333pt;}
.y111{bottom:747.453333pt;}
.y12f{bottom:747.933333pt;}
.yf6{bottom:748.573333pt;}
.y9d{bottom:750.653333pt;}
.yf{bottom:752.413333pt;}
.y2b{bottom:756.093333pt;}
.y10f{bottom:768.733333pt;}
.y16e{bottom:768.893333pt;}
.y9c{bottom:770.653333pt;}
.yc0{bottom:775.933333pt;}
.y145{bottom:776.093333pt;}
.y159{bottom:776.893333pt;}
.yf4{bottom:780.573333pt;}
.ye{bottom:781.853333pt;}
.y12e{bottom:783.613333pt;}
.y9b{bottom:790.653333pt;}
.yd{bottom:792.893333pt;}
.y9a{bottom:810.693333pt;}
.yf2{bottom:813.253333pt;}
.y158{bottom:813.733333pt;}
.y10d{bottom:814.693333pt;}
.yc{bottom:815.013333pt;}
.y12d{bottom:819.173333pt;}
.y144{bottom:820.933333pt;}
.yda{bottom:827.973333pt;}
.y2a{bottom:829.733333pt;}
.y99{bottom:830.693333pt;}
.yb{bottom:837.093333pt;}
.y16d{bottom:850.533333pt;}
.y98{bottom:850.693333pt;}
.y12c{bottom:854.853333pt;}
.y143{bottom:858.053333pt;}
.y157{bottom:858.533333pt;}
.ya{bottom:859.173333pt;}
.y10c{bottom:860.773333pt;}
.y6e{bottom:866.213333pt;}
.y29{bottom:866.533333pt;}
.y97{bottom:870.693333pt;}
.ybf{bottom:884.933333pt;}
.y16c{bottom:887.333333pt;}
.y9{bottom:888.613333pt;}
.y95{bottom:890.693333pt;}
.y12a{bottom:891.013333pt;}
.y142{bottom:895.333333pt;}
.y6d{bottom:903.013333pt;}
.y28{bottom:903.333333pt;}
.y109{bottom:907.493333pt;}
.y8{bottom:910.693333pt;}
.y94{bottom:911.333333pt;}
.ybe{bottom:921.733333pt;}
.y7{bottom:930.373333pt;}
.y16b{bottom:932.133333pt;}
.y27{bottom:940.133333pt;}
.y93{bottom:942.533333pt;}
.y6{bottom:958.053333pt;}
.ybd{bottom:958.533333pt;}
.y16a{bottom:968.933333pt;}
.y53{bottom:976.613333pt;}
.y129{bottom:976.773333pt;}
.y26{bottom:976.933333pt;}
.y5{bottom:985.573333pt;}
.y92{bottom:995.333333pt;}
.y4{bottom:1013.253333pt;}
.y25{bottom:1013.413333pt;}
.y128{bottom:1013.573333pt;}
.y3c{bottom:1013.733333pt;}
.h14{height:18.386667pt;}
.h3{height:18.398667pt;}
.h18{height:18.418667pt;}
.h15{height:19.986667pt;}
.h17{height:20.000000pt;}
.h23{height:20.018667pt;}
.h16{height:20.020000pt;}
.h1e{height:20.626667pt;}
.h20{height:20.658667pt;}
.h1f{height:20.786667pt;}
.h1b{height:20.800000pt;}
.h1d{height:20.946667pt;}
.h10{height:24.786667pt;}
.h13{height:24.832000pt;}
.he{height:24.946667pt;}
.h11{height:24.978667pt;}
.h28{height:31.986667pt;}
.h26{height:32.000000pt;}
.h25{height:32.020000pt;}
.h27{height:32.026667pt;}
.h12{height:34.226667pt;}
.h2f{height:35.506667pt;}
.h30{height:35.540000pt;}
.h2e{height:35.666667pt;}
.h31{height:35.680000pt;}
.hc{height:41.786667pt;}
.h6{height:42.063437pt;}
.h7{height:42.084375pt;}
.ha{height:44.468750pt;}
.h22{height:44.800000pt;}
.h2a{height:45.906667pt;}
.h2c{height:45.940000pt;}
.h2b{height:46.066667pt;}
.h1a{height:47.109375pt;}
.h2d{height:49.426667pt;}
.hf{height:57.787500pt;}
.hd{height:59.340000pt;}
.h2{height:62.812500pt;}
.h9{height:64.500000pt;}
.h4{height:66.750000pt;}
.hb{height:71.524375pt;}
.h8{height:75.465000pt;}
.h21{height:81.620000pt;}
.h29{height:82.706667pt;}
.h5{height:100.125000pt;}
.h1c{height:174.266667pt;}
.h24{height:176.946667pt;}
.h19{height:195.706667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:7.986667pt;}
.w3{width:15.986667pt;}
.w21{width:28.946667pt;}
.w1d{width:32.626667pt;}
.w36{width:36.306667pt;}
.w42{width:37.746667pt;}
.w1b{width:37.760000pt;}
.w40{width:37.906667pt;}
.w30{width:39.200000pt;}
.w34{width:39.986667pt;}
.w1c{width:41.152000pt;}
.w32{width:41.280000pt;}
.w35{width:42.226667pt;}
.w33{width:42.272000pt;}
.w31{width:43.680000pt;}
.w1f{width:43.826667pt;}
.w4a{width:43.858667pt;}
.w1a{width:45.760000pt;}
.w20{width:45.778667pt;}
.w48{width:45.792000pt;}
.w3f{width:47.200000pt;}
.w1e{width:47.506667pt;}
.w18{width:47.666667pt;}
.w37{width:49.458667pt;}
.w19{width:49.778667pt;}
.w3a{width:75.698667pt;}
.w6{width:84.032000pt;}
.w24{width:85.106667pt;}
.w47{width:86.720000pt;}
.w8{width:90.592000pt;}
.w46{width:94.258667pt;}
.w26{width:94.546667pt;}
.w27{width:94.578667pt;}
.w38{width:103.872000pt;}
.we{width:104.018667pt;}
.w23{width:104.032000pt;}
.wc{width:105.138667pt;}
.w39{width:113.312000pt;}
.w25{width:113.472000pt;}
.w49{width:121.266667pt;}
.w2c{width:121.298667pt;}
.w4{width:121.938667pt;}
.w15{width:122.418667pt;}
.w2a{width:122.578667pt;}
.w13{width:122.898667pt;}
.w5{width:130.240000pt;}
.w7{width:131.218667pt;}
.w16{width:132.310667pt;}
.w12{width:132.352000pt;}
.w44{width:132.512000pt;}
.w14{width:132.832000pt;}
.w29{width:134.746667pt;}
.w2e{width:139.066667pt;}
.w43{width:140.013333pt;}
.w41{width:141.773333pt;}
.w9{width:144.173333pt;}
.w3e{width:151.217333pt;}
.w2f{width:154.897333pt;}
.wb{width:156.506667pt;}
.w22{width:160.653333pt;}
.w10{width:160.666667pt;}
.w45{width:165.133333pt;}
.w3c{width:170.266667pt;}
.w2d{width:177.293333pt;}
.w3d{width:179.533333pt;}
.w28{width:180.013333pt;}
.w2b{width:181.453333pt;}
.w3b{width:198.417333pt;}
.wf{width:199.537333pt;}
.wa{width:201.933333pt;}
.wd{width:203.697333pt;}
.w11{width:229.453333pt;}
.w17{width:410.960000pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2a{left:4.625333pt;}
.x6a{left:6.066667pt;}
.x1a{left:7.186667pt;}
.x4f{left:8.320000pt;}
.x4b{left:9.760000pt;}
.x4c{left:11.360000pt;}
.x17{left:12.826667pt;}
.x4e{left:13.760000pt;}
.x4d{left:14.720000pt;}
.x15{left:15.680000pt;}
.x46{left:16.946667pt;}
.x27{left:18.720000pt;}
.x13{left:19.826667pt;}
.x44{left:21.146667pt;}
.x70{left:22.226667pt;}
.x41{left:23.360000pt;}
.x23{left:24.786667pt;}
.x1d{left:27.026667pt;}
.x59{left:29.266667pt;}
.x1f{left:30.706667pt;}
.x53{left:32.800000pt;}
.x34{left:33.906667pt;}
.x1c{left:36.346667pt;}
.x2e{left:37.906667pt;}
.x58{left:39.186667pt;}
.x56{left:40.946667pt;}
.x31{left:41.906667pt;}
.x20{left:43.706667pt;}
.x21{left:45.786667pt;}
.x3a{left:47.186667pt;}
.x3b{left:48.186667pt;}
.x76{left:49.105333pt;}
.x19{left:51.186667pt;}
.x39{left:52.786667pt;}
.x1b{left:53.920000pt;}
.x79{left:55.026667pt;}
.x2c{left:56.160000pt;}
.x1e{left:57.600000pt;}
.x77{left:61.280000pt;}
.x30{left:62.240000pt;}
.x32{left:68.320000pt;}
.x33{left:72.320000pt;}
.x51{left:80.306667pt;}
.x3d{left:104.041333pt;}
.x1{left:113.472000pt;}
.x75{left:122.921333pt;}
.xb{left:126.112000pt;}
.x63{left:128.361333pt;}
.x29{left:132.361333pt;}
.xf{left:136.506667pt;}
.x3{left:137.466667pt;}
.x36{left:141.800000pt;}
.x25{left:142.920000pt;}
.x5{left:151.226667pt;}
.x12{left:153.480000pt;}
.x4{left:161.466667pt;}
.x3f{left:163.866667pt;}
.x7e{left:164.840000pt;}
.x6d{left:170.120000pt;}
.x5a{left:177.306667pt;}
.x50{left:179.066667pt;}
.x73{left:181.466667pt;}
.x6c{left:189.466667pt;}
.x7d{left:199.706667pt;}
.x8{left:227.226667pt;}
.xa{left:233.306667pt;}
.x3e{left:236.360000pt;}
.xe{left:243.706667pt;}
.x9{left:249.026667pt;}
.x24{left:256.546667pt;}
.x10{left:257.666667pt;}
.xd{left:259.426667pt;}
.x7{left:263.746667pt;}
.x7a{left:274.146667pt;}
.x14{left:275.426667pt;}
.x35{left:278.306667pt;}
.x64{left:283.266667pt;}
.x3c{left:286.146667pt;}
.x5b{left:288.706667pt;}
.x62{left:296.546667pt;}
.x7f{left:304.866667pt;}
.x52{left:321.346667pt;}
.x65{left:322.466667pt;}
.x60{left:329.026667pt;}
.x6e{left:330.786667pt;}
.x2f{left:331.906667pt;}
.x5e{left:333.346667pt;}
.x2b{left:336.066667pt;}
.x5c{left:342.146667pt;}
.x26{left:344.866667pt;}
.x66{left:366.146667pt;}
.x42{left:369.666667pt;}
.x37{left:371.266667pt;}
.x74{left:390.786667pt;}
.x11{left:396.866667pt;}
.x16{left:405.666667pt;}
.x43{left:407.426667pt;}
.x6b{left:415.106667pt;}
.x61{left:420.573333pt;}
.x54{left:425.386667pt;}
.x57{left:434.826667pt;}
.x80{left:437.386667pt;}
.x71{left:444.106667pt;}
.x45{left:448.586667pt;}
.x67{left:449.706667pt;}
.x7b{left:453.706667pt;}
.x5f{left:468.106667pt;}
.x5d{left:476.906667pt;}
.x47{left:481.226667pt;}
.x18{left:489.706667pt;}
.x78{left:491.626667pt;}
.x2d{left:492.586667pt;}
.x22{left:496.266667pt;}
.x28{left:501.386667pt;}
.x38{left:503.626667pt;}
.x55{left:510.506667pt;}
.x6f{left:519.786667pt;}
.x48{left:528.746667pt;}
.x68{left:531.946667pt;}
.x72{left:538.666667pt;}
.x81{left:558.666667pt;}
.x69{left:568.266667pt;}
.x49{left:572.586667pt;}
.x6{left:602.693333pt;}
.x4a{left:618.373333pt;}
.x7c{left:633.413333pt;}
.x40{left:647.333333pt;}
.xc{left:664.453333pt;}
.x2{left:672.453333pt;}
}




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