
    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_01df903f416b2c9992695655.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_215eb883b78ae10333909144.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.172852;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_86a1079303f6ea77d3d07faf.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_3ec326fe21f6dcc1cfcd411c.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_3d4d395de0a43bd09492d647.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.112305;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_610d0657a8962e6d07f2678f.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.112305;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_ad0189eb4040ba5ca3aaa5cd.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.921387;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_7a6992d3b20177b4a8c0601e.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.435059;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_3ad8ff6df6d4baa5bc7cd50f.woff2')format("woff");}.ff9{font-family:ff9;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;}
.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:-27.000000px;}
.v6{vertical-align:-6.120000px;}
.v3{vertical-align:-2.880000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:16.200000px;}
.v1{vertical-align:24.120000px;}
.v5{vertical-align:27.000000px;}
.ls18{letter-spacing:-1.440000px;}
.lse{letter-spacing:-0.576000px;}
.lsc{letter-spacing:-0.360000px;}
.ls10{letter-spacing:-0.288000px;}
.lsa{letter-spacing:-0.216000px;}
.ls6{letter-spacing:-0.144000px;}
.ls11{letter-spacing:-0.108000px;}
.lsb{letter-spacing:-0.072000px;}
.ls3{letter-spacing:0.000000px;}
.ls15{letter-spacing:0.009360px;}
.ls13{letter-spacing:0.018720px;}
.ls8{letter-spacing:0.072000px;}
.ls0{letter-spacing:0.078600px;}
.ls4{letter-spacing:0.090000px;}
.ls1a{letter-spacing:0.120000px;}
.ls5{letter-spacing:0.144000px;}
.ls1{letter-spacing:0.180000px;}
.ls17{letter-spacing:0.432000px;}
.lsd{letter-spacing:0.540000px;}
.ls14{letter-spacing:0.710640px;}
.ls9{letter-spacing:1.584000px;}
.ls16{letter-spacing:3.960000px;}
.lsf{letter-spacing:11.664000px;}
.ls7{letter-spacing:47.925360px;}
.ls19{letter-spacing:74.664000px;}
.ls12{letter-spacing:85.104000px;}
.ls2{letter-spacing:848.988000px;}
.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;}
}
.wsf{word-spacing:-18.432000px;}
.ws5{word-spacing:-18.144000px;}
.ws6{word-spacing:-18.072000px;}
.ws2{word-spacing:-18.000000px;}
.ws8{word-spacing:-17.928000px;}
.ws4{word-spacing:-17.856000px;}
.ws7{word-spacing:-17.784000px;}
.wsd{word-spacing:-17.712000px;}
.ws9{word-spacing:-17.640000px;}
.wsa{word-spacing:-15.012000px;}
.ws0{word-spacing:-14.967480px;}
.wse{word-spacing:-14.904000px;}
.wsc{word-spacing:-14.868000px;}
.ws3{word-spacing:-11.970000px;}
.ws1{word-spacing:0.000000px;}
.wsb{word-spacing:5.184000px;}
._17{margin-left:-4.464000px;}
._0{margin-left:-2.832840px;}
._9{margin-left:-1.054080px;}
._1{width:1.059120px;}
._2{width:2.587200px;}
._7{width:3.605520px;}
._c{width:4.752000px;}
._4{width:6.126840px;}
._5{width:7.307640px;}
._6{width:9.030600px;}
._10{width:10.131480px;}
._8{width:11.199600px;}
._11{width:12.409200px;}
._12{width:13.420800px;}
._14{width:14.544000px;}
._16{width:16.200000px;}
._f{width:19.460880px;}
._13{width:21.312000px;}
._15{width:22.536000px;}
._19{width:24.048000px;}
._b{width:25.992000px;}
._a{width:27.144000px;}
._18{width:28.440000px;}
._e{width:30.312000px;}
._22{width:31.680000px;}
._23{width:32.976000px;}
._1e{width:35.136000px;}
._1c{width:36.432000px;}
._1d{width:37.656000px;}
._2d{width:40.078080px;}
._2c{width:41.112000px;}
._1a{width:43.632000px;}
._2b{width:44.712000px;}
._d{width:47.736000px;}
._1b{width:49.032000px;}
._2a{width:50.040000px;}
._2f{width:51.264000px;}
._28{width:53.928000px;}
._2e{width:65.376000px;}
._34{width:77.472000px;}
._29{width:83.376000px;}
._30{width:84.888000px;}
._26{width:87.600000px;}
._27{width:88.752000px;}
._1f{width:89.928000px;}
._25{width:94.104000px;}
._3{width:142.630200px;}
._33{width:177.768000px;}
._21{width:246.672000px;}
._20{width:258.624000px;}
._24{width:265.104000px;}
._32{width:273.672000px;}
._31{width:656.712000px;}
.fc1{color:rgb(0,112,192);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:36.000000px;}
.fs6{font-size:42.120000px;}
.fs4{font-size:47.880000px;}
.fs0{font-size:54.000000px;}
.fs1{font-size:65.880000px;}
.fs3{font-size:72.000000px;}
.fs2{font-size:132.120000px;}
.y0{bottom:0.000000px;}
.y124{bottom:4.860000px;}
.y127{bottom:5.040000px;}
.y123{bottom:5.760000px;}
.y126{bottom:5.940000px;}
.ya0{bottom:6.030000px;}
.ya2{bottom:6.210000px;}
.y120{bottom:8.280000px;}
.y121{bottom:16.500000px;}
.y11f{bottom:29.010000px;}
.y88{bottom:37.050000px;}
.y89{bottom:38.610000px;}
.y8c{bottom:53.190000px;}
.y2{bottom:56.070000px;}
.y8d{bottom:64.860000px;}
.y8b{bottom:67.230000px;}
.y87{bottom:69.420000px;}
.y1{bottom:71.550000px;}
.y86{bottom:83.460000px;}
.y8e{bottom:99.840000px;}
.yd2{bottom:110.340000px;}
.yc6{bottom:111.330000px;}
.y119{bottom:112.230000px;}
.y160{bottom:112.950000px;}
.y85{bottom:115.350000px;}
.ydc{bottom:115.380000px;}
.yba{bottom:119.250000px;}
.y114{bottom:119.520000px;}
.y8a{bottom:120.480000px;}
.yfa{bottom:121.320000px;}
.y178{bottom:125.730000px;}
.y11b{bottom:126.360000px;}
.yac{bottom:129.600000px;}
.yd1{bottom:131.040000px;}
.y7a{bottom:132.660000px;}
.y15f{bottom:133.650000px;}
.y4c{bottom:133.830000px;}
.y106{bottom:143.010000px;}
.y63{bottom:146.430000px;}
.yee{bottom:148.590000px;}
.yd0{bottom:149.580000px;}
.y8f{bottom:150.540000px;}
.yab{bottom:151.020000px;}
.yc5{bottom:152.730000px;}
.y118{bottom:153.630000px;}
.yb9{bottom:153.810000px;}
.y15e{bottom:154.350000px;}
.ydb{bottom:156.780000px;}
.y11a{bottom:158.490000px;}
.y65{bottom:160.650000px;}
.y113{bottom:160.920000px;}
.yf9{bottom:162.720000px;}
.y177{bottom:167.130000px;}
.yaa{bottom:173.250000px;}
.y79{bottom:174.060000px;}
.y84{bottom:174.180000px;}
.yc4{bottom:174.780000px;}
.yb8{bottom:174.960000px;}
.y15d{bottom:175.050000px;}
.y4b{bottom:175.230000px;}
.y117{bottom:175.680000px;}
.y34{bottom:177.030000px;}
.y105{bottom:184.410000px;}
.y68{bottom:187.650000px;}
.y62{bottom:187.830000px;}
.yb7{bottom:189.000000px;}
.y6a{bottom:189.090000px;}
.yed{bottom:189.990000px;}
.ya9{bottom:194.670000px;}
.y144{bottom:195.030000px;}
.y15c{bottom:195.750000px;}
.yda{bottom:198.180000px;}
.y112{bottom:202.320000px;}
.yf8{bottom:204.120000px;}
.y83{bottom:204.810000px;}
.y176{bottom:208.530000px;}
.yc3{bottom:209.340000px;}
.y116{bottom:210.150000px;}
.y64{bottom:211.050000px;}
.y78{bottom:215.280000px;}
.y15b{bottom:216.450000px;}
.y4a{bottom:216.630000px;}
.ya8{bottom:217.440000px;}
.y33{bottom:218.430000px;}
.y81{bottom:218.700000px;}
.y82{bottom:221.820000px;}
.y111{bottom:224.370000px;}
.y104{bottom:225.840000px;}
.yc2{bottom:227.460000px;}
.y115{bottom:228.360000px;}
.y61{bottom:229.260000px;}
.y1a{bottom:229.620000px;}
.yec{bottom:231.420000px;}
.y143{bottom:236.460000px;}
.y15a{bottom:237.180000px;}
.ya7{bottom:238.710000px;}
.yd9{bottom:239.610000px;}
.yf7{bottom:245.550000px;}
.y175{bottom:249.960000px;}
.y17a{bottom:250.950000px;}
.ya6{bottom:252.030000px;}
.y90{bottom:253.140000px;}
.y77{bottom:256.890000px;}
.y159{bottom:257.880000px;}
.y49{bottom:258.060000px;}
.y110{bottom:258.870000px;}
.y32{bottom:259.860000px;}
.yd8{bottom:260.760000px;}
.y103{bottom:267.240000px;}
.y60{bottom:270.660000px;}
.y179{bottom:271.830000px;}
.yeb{bottom:272.820000px;}
.ya5{bottom:274.800000px;}
.y10f{bottom:277.050000px;}
.y142{bottom:277.860000px;}
.y158{bottom:278.580000px;}
.y80{bottom:278.940000px;}
.y91{bottom:286.170000px;}
.yf6{bottom:286.950000px;}
.y174{bottom:291.360000px;}
.yd7{bottom:292.350000px;}
.y7f{bottom:292.980000px;}
.ya4{bottom:297.570000px;}
.y76{bottom:298.290000px;}
.y157{bottom:299.280000px;}
.y48{bottom:299.460000px;}
.y31{bottom:301.260000px;}
.y102{bottom:308.640000px;}
.y5f{bottom:312.060000px;}
.yd6{bottom:313.500000px;}
.yea{bottom:314.220000px;}
.y141{bottom:319.260000px;}
.y156{bottom:319.980000px;}
.ya3{bottom:320.340000px;}
.y7e{bottom:321.060000px;}
.yd5{bottom:327.990000px;}
.yf5{bottom:328.350000px;}
.y19{bottom:332.580000px;}
.y173{bottom:332.760000px;}
.y7d{bottom:335.100000px;}
.y75{bottom:339.690000px;}
.y155{bottom:340.680000px;}
.y47{bottom:340.860000px;}
.y30{bottom:342.660000px;}
.ya1{bottom:343.110000px;}
.y101{bottom:350.040000px;}
.y5e{bottom:353.460000px;}
.ye9{bottom:355.620000px;}
.y140{bottom:360.660000px;}
.y92{bottom:361.290000px;}
.y154{bottom:361.380000px;}
.y9f{bottom:366.600000px;}
.yf4{bottom:369.750000px;}
.y172{bottom:374.160000px;}
.y74{bottom:381.090000px;}
.y153{bottom:382.080000px;}
.y46{bottom:382.260000px;}
.y2f{bottom:384.060000px;}
.y100{bottom:391.440000px;}
.y7c{bottom:391.650000px;}
.y5d{bottom:394.860000px;}
.ye8{bottom:397.020000px;}
.y13f{bottom:402.060000px;}
.y152{bottom:402.780000px;}
.y9e{bottom:409.260000px;}
.yf3{bottom:411.150000px;}
.y171{bottom:415.560000px;}
.y18{bottom:420.510000px;}
.y73{bottom:422.490000px;}
.y151{bottom:423.480000px;}
.y45{bottom:423.660000px;}
.y2e{bottom:425.460000px;}
.yff{bottom:432.840000px;}
.y5c{bottom:436.260000px;}
.ye7{bottom:438.420000px;}
.y13e{bottom:443.460000px;}
.y150{bottom:444.180000px;}
.y9d{bottom:450.660000px;}
.yf2{bottom:452.550000px;}
.y170{bottom:456.960000px;}
.y72{bottom:463.890000px;}
.y14f{bottom:464.880000px;}
.y44{bottom:465.060000px;}
.y2d{bottom:466.860000px;}
.yfe{bottom:474.240000px;}
.ydd{bottom:477.480000px;}
.y5b{bottom:477.660000px;}
.ye6{bottom:479.820000px;}
.y13d{bottom:484.860000px;}
.y14e{bottom:485.580000px;}
.ycf{bottom:485.850000px;}
.y9c{bottom:492.060000px;}
.yf1{bottom:493.770000px;}
.y16f{bottom:498.360000px;}
.y71{bottom:505.290000px;}
.y14d{bottom:506.280000px;}
.y43{bottom:506.460000px;}
.y2c{bottom:508.260000px;}
.yfd{bottom:515.460000px;}
.y69{bottom:518.880000px;}
.y5a{bottom:519.060000px;}
.ye5{bottom:521.220000px;}
.yce{bottom:525.990000px;}
.y13c{bottom:526.260000px;}
.y14c{bottom:526.980000px;}
.yf0{bottom:529.680000px;}
.y9b{bottom:533.460000px;}
.yb6{bottom:536.970000px;}
.y16e{bottom:539.760000px;}
.y70{bottom:546.690000px;}
.y14b{bottom:547.680000px;}
.y42{bottom:547.860000px;}
.y2b{bottom:549.660000px;}
.yfc{bottom:551.280000px;}
.y59{bottom:560.460000px;}
.ye4{bottom:562.620000px;}
.ycd{bottom:567.390000px;}
.y14a{bottom:568.380000px;}
.yfb{bottom:569.730000px;}
.y9a{bottom:574.860000px;}
.y13b{bottom:576.480000px;}
.yb5{bottom:578.370000px;}
.y16d{bottom:581.160000px;}
.y6f{bottom:588.090000px;}
.y41{bottom:589.260000px;}
.y149{bottom:590.430000px;}
.y2a{bottom:591.060000px;}
.y67{bottom:601.680000px;}
.y58{bottom:601.860000px;}
.y17{bottom:602.670000px;}
.ye3{bottom:604.020000px;}
.yc1{bottom:605.100000px;}
.ycc{bottom:608.790000px;}
.y13a{bottom:615.720000px;}
.y99{bottom:616.260000px;}
.y10e{bottom:617.430000px;}
.y148{bottom:618.780000px;}
.yb4{bottom:619.770000px;}
.y16c{bottom:622.560000px;}
.ye2{bottom:625.170000px;}
.y139{bottom:629.040000px;}
.y6e{bottom:629.490000px;}
.y40{bottom:630.660000px;}
.y29{bottom:632.460000px;}
.y16{bottom:640.830000px;}
.yc0{bottom:641.010000px;}
.y57{bottom:643.260000px;}
.ycb{bottom:650.220000px;}
.y138{bottom:651.570000px;}
.y10d{bottom:653.460000px;}
.ye1{bottom:656.790000px;}
.y98{bottom:657.690000px;}
.yb3{bottom:661.200000px;}
.y16b{bottom:663.990000px;}
.y6d{bottom:670.920000px;}
.y3f{bottom:672.090000px;}
.y137{bottom:674.070000px;}
.y10c{bottom:676.230000px;}
.y147{bottom:678.390000px;}
.ye0{bottom:678.930000px;}
.y15{bottom:679.020000px;}
.y28{bottom:682.080000px;}
.ybf{bottom:682.440000px;}
.y56{bottom:684.690000px;}
.yca{bottom:691.620000px;}
.ydf{bottom:696.120000px;}
.y136{bottom:696.570000px;}
.y10b{bottom:699.000000px;}
.y97{bottom:699.090000px;}
.yb2{bottom:702.600000px;}
.y27{bottom:703.320000px;}
.y16a{bottom:705.390000px;}
.yc9{bottom:712.770000px;}
.y3e{bottom:713.490000px;}
.y14{bottom:717.180000px;}
.y135{bottom:719.070000px;}
.y146{bottom:719.790000px;}
.y10a{bottom:721.770000px;}
.y26{bottom:721.860000px;}
.ybe{bottom:723.840000px;}
.yd4{bottom:725.910000px;}
.y55{bottom:726.090000px;}
.y6c{bottom:727.260000px;}
.y13{bottom:740.310000px;}
.y96{bottom:740.490000px;}
.y134{bottom:741.570000px;}
.y7b{bottom:743.850000px;}
.yb1{bottom:744.000000px;}
.yc8{bottom:744.450000px;}
.y109{bottom:745.350000px;}
.y169{bottom:746.790000px;}
.y145{bottom:749.310000px;}
.y3d{bottom:754.800000px;}
.yb0{bottom:761.280000px;}
.yc7{bottom:762.540000px;}
.y6b{bottom:762.900000px;}
.y12{bottom:763.440000px;}
.y25{bottom:763.800000px;}
.y133{bottom:764.070000px;}
.ybd{bottom:765.240000px;}
.yd3{bottom:767.310000px;}
.y54{bottom:767.490000px;}
.y95{bottom:781.800000px;}
.yaf{bottom:784.050000px;}
.y132{bottom:786.570000px;}
.y11{bottom:786.660000px;}
.ybc{bottom:787.200000px;}
.y24{bottom:787.560000px;}
.y108{bottom:788.010000px;}
.y168{bottom:788.100000px;}
.y3c{bottom:796.200000px;}
.yae{bottom:807.540000px;}
.ybb{bottom:808.620000px;}
.y53{bottom:808.800000px;}
.y131{bottom:809.070000px;}
.y10{bottom:809.790000px;}
.y107{bottom:809.970000px;}
.y23{bottom:811.410000px;}
.y94{bottom:823.020000px;}
.y167{bottom:829.500000px;}
.y130{bottom:831.570000px;}
.yf{bottom:832.920000px;}
.y3b{bottom:837.600000px;}
.y22{bottom:841.920000px;}
.y52{bottom:850.200000px;}
.yef{bottom:851.460000px;}
.y12f{bottom:854.070000px;}
.ye{bottom:856.140000px;}
.y21{bottom:859.020000px;}
.y166{bottom:870.900000px;}
.y93{bottom:873.420000px;}
.y12e{bottom:876.570000px;}
.y3a{bottom:879.000000px;}
.yd{bottom:879.270000px;}
.y20{bottom:882.780000px;}
.y51{bottom:891.600000px;}
.y12d{bottom:899.070000px;}
.yc{bottom:902.490000px;}
.y165{bottom:912.300000px;}
.y1f{bottom:913.380000px;}
.y12c{bottom:921.570000px;}
.yb{bottom:925.620000px;}
.y39{bottom:929.220000px;}
.y50{bottom:933.000000px;}
.yde{bottom:934.260000px;}
.y1e{bottom:938.400000px;}
.y12b{bottom:944.070000px;}
.ya{bottom:948.750000px;}
.y164{bottom:953.700000px;}
.y1d{bottom:961.170000px;}
.y12a{bottom:966.570000px;}
.y9{bottom:971.970000px;}
.y66{bottom:974.220000px;}
.y4f{bottom:974.400000px;}
.y38{bottom:988.800000px;}
.y129{bottom:989.070000px;}
.y8{bottom:995.100000px;}
.y128{bottom:1011.570000px;}
.yad{bottom:1015.620000px;}
.y4e{bottom:1015.800000px;}
.y37{bottom:1030.200000px;}
.y7{bottom:1033.260000px;}
.y125{bottom:1034.070000px;}
.y163{bottom:1036.500000px;}
.y1c{bottom:1049.910000px;}
.y4d{bottom:1057.200000px;}
.y11e{bottom:1057.290000px;}
.y6{bottom:1071.450000px;}
.y162{bottom:1077.930000px;}
.y122{bottom:1080.540000px;}
.y5{bottom:1094.580000px;}
.y36{bottom:1098.630000px;}
.y4{bottom:1117.800000px;}
.y161{bottom:1119.330000px;}
.y11d{bottom:1122.930000px;}
.y1b{bottom:1125.900000px;}
.y35{bottom:1140.030000px;}
.y3{bottom:1140.930000px;}
.y11c{bottom:1144.080000px;}
.h14{height:22.500000px;}
.h15{height:22.530000px;}
.h10{height:22.770000px;}
.h12{height:22.800000px;}
.h6{height:42.923672px;}
.he{height:43.929844px;}
.h13{height:45.750000px;}
.h11{height:49.937344px;}
.h9{height:50.800781px;}
.h2{height:56.320312px;}
.h5{height:63.583594px;}
.h7{height:64.546875px;}
.h3{height:65.526152px;}
.ha{height:68.582109px;}
.hb{height:68.710781px;}
.hf{height:69.923672px;}
.h8{height:70.664062px;}
.hc{height:74.953125px;}
.h4{height:129.668555px;}
.hd{height:412.740000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w7{width:52.200000px;}
.w11{width:60.210000px;}
.wf{width:60.330000px;}
.wa{width:61.200000px;}
.w12{width:68.850000px;}
.w8{width:70.560000px;}
.w6{width:73.290000px;}
.w10{width:73.710000px;}
.wb{width:78.210000px;}
.wc{width:82.530000px;}
.w9{width:100.290000px;}
.w5{width:107.100000px;}
.w4{width:131.790000px;}
.w3{width:238.890000px;}
.we{width:263.100000px;}
.wd{width:336.450000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x22{left:8.100000px;}
.x53{left:9.810000px;}
.x2b{left:13.230000px;}
.x2e{left:15.030000px;}
.x54{left:16.470000px;}
.x45{left:18.810000px;}
.x4b{left:20.160000px;}
.x40{left:21.600000px;}
.x44{left:23.310000px;}
.x52{left:25.470000px;}
.x4a{left:28.710000px;}
.x24{left:31.500000px;}
.x21{left:71.580000px;}
.x4f{left:95.340000px;}
.x2{left:127.649987px;}
.x4d{left:128.700000px;}
.x3d{left:142.679987px;}
.x27{left:153.569987px;}
.x4{left:154.649987px;}
.x18{left:156.359987px;}
.x37{left:168.149987px;}
.x6{left:173.369987px;}
.x55{left:175.619987px;}
.x25{left:187.049987px;}
.x26{left:191.459987px;}
.x19{left:192.779987px;}
.x3c{left:197.399987px;}
.x3b{left:199.109987px;}
.x31{left:202.619987px;}
.x4c{left:210.180000px;}
.x39{left:223.769987px;}
.x34{left:239.069987px;}
.x3e{left:263.549987px;}
.x15{left:275.189987px;}
.x28{left:290.279987px;}
.x1c{left:295.619987px;}
.x48{left:298.559987px;}
.x3f{left:300.540000px;}
.x1f{left:308.819987px;}
.x16{left:319.259987px;}
.x29{left:322.410000px;}
.x20{left:327.090000px;}
.x1a{left:332.009987px;}
.x17{left:373.169987px;}
.xe{left:386.639987px;}
.xd{left:389.339987px;}
.x2a{left:395.700000px;}
.x41{left:400.830000px;}
.x7{left:411.119987px;}
.x8{left:415.979987px;}
.x9{left:419.579987px;}
.xf{left:431.759987px;}
.x32{left:446.549987px;}
.x2c{left:447.900000px;}
.x30{left:451.859987px;}
.x42{left:453.030000px;}
.x23{left:458.880000px;}
.x1d{left:485.729987px;}
.x2d{left:500.100000px;}
.x43{left:514.230000px;}
.xa{left:523.559987px;}
.x14{left:528.479987px;}
.xb{left:539.309987px;}
.x4e{left:546.630000px;}
.x12{left:594.959987px;}
.x1b{left:596.009987px;}
.x50{left:606.960000px;}
.x11{left:618.899987px;}
.x10{left:620.039987px;}
.xc{left:660.029987px;}
.x3{left:673.829987px;}
.x46{left:677.879987px;}
.x2f{left:680.399987px;}
.x3a{left:703.799987px;}
.x13{left:712.619987px;}
.x49{left:714.689987px;}
.x38{left:716.579987px;}
.x47{left:728.999987px;}
.x35{left:730.079987px;}
.x51{left:740.880000px;}
.x33{left:745.829987px;}
.x1e{left:750.599987px;}
.x1{left:758.069987px;}
.x5{left:765.539987px;}
.x36{left:767.699987px;}
@media print{
.v2{vertical-align:-24.000000pt;}
.v6{vertical-align:-5.440000pt;}
.v3{vertical-align:-2.560000pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:14.400000pt;}
.v1{vertical-align:21.440000pt;}
.v5{vertical-align:24.000000pt;}
.ls18{letter-spacing:-1.280000pt;}
.lse{letter-spacing:-0.512000pt;}
.lsc{letter-spacing:-0.320000pt;}
.ls10{letter-spacing:-0.256000pt;}
.lsa{letter-spacing:-0.192000pt;}
.ls6{letter-spacing:-0.128000pt;}
.ls11{letter-spacing:-0.096000pt;}
.lsb{letter-spacing:-0.064000pt;}
.ls3{letter-spacing:0.000000pt;}
.ls15{letter-spacing:0.008320pt;}
.ls13{letter-spacing:0.016640pt;}
.ls8{letter-spacing:0.064000pt;}
.ls0{letter-spacing:0.069867pt;}
.ls4{letter-spacing:0.080000pt;}
.ls1a{letter-spacing:0.106667pt;}
.ls5{letter-spacing:0.128000pt;}
.ls1{letter-spacing:0.160000pt;}
.ls17{letter-spacing:0.384000pt;}
.lsd{letter-spacing:0.480000pt;}
.ls14{letter-spacing:0.631680pt;}
.ls9{letter-spacing:1.408000pt;}
.ls16{letter-spacing:3.520000pt;}
.lsf{letter-spacing:10.368000pt;}
.ls7{letter-spacing:42.600320pt;}
.ls19{letter-spacing:66.368000pt;}
.ls12{letter-spacing:75.648000pt;}
.ls2{letter-spacing:754.656000pt;}
.wsf{word-spacing:-16.384000pt;}
.ws5{word-spacing:-16.128000pt;}
.ws6{word-spacing:-16.064000pt;}
.ws2{word-spacing:-16.000000pt;}
.ws8{word-spacing:-15.936000pt;}
.ws4{word-spacing:-15.872000pt;}
.ws7{word-spacing:-15.808000pt;}
.wsd{word-spacing:-15.744000pt;}
.ws9{word-spacing:-15.680000pt;}
.wsa{word-spacing:-13.344000pt;}
.ws0{word-spacing:-13.304427pt;}
.wse{word-spacing:-13.248000pt;}
.wsc{word-spacing:-13.216000pt;}
.ws3{word-spacing:-10.640000pt;}
.ws1{word-spacing:0.000000pt;}
.wsb{word-spacing:4.608000pt;}
._17{margin-left:-3.968000pt;}
._0{margin-left:-2.518080pt;}
._9{margin-left:-0.936960pt;}
._1{width:0.941440pt;}
._2{width:2.299733pt;}
._7{width:3.204907pt;}
._c{width:4.224000pt;}
._4{width:5.446080pt;}
._5{width:6.495680pt;}
._6{width:8.027200pt;}
._10{width:9.005760pt;}
._8{width:9.955200pt;}
._11{width:11.030400pt;}
._12{width:11.929600pt;}
._14{width:12.928000pt;}
._16{width:14.400000pt;}
._f{width:17.298560pt;}
._13{width:18.944000pt;}
._15{width:20.032000pt;}
._19{width:21.376000pt;}
._b{width:23.104000pt;}
._a{width:24.128000pt;}
._18{width:25.280000pt;}
._e{width:26.944000pt;}
._22{width:28.160000pt;}
._23{width:29.312000pt;}
._1e{width:31.232000pt;}
._1c{width:32.384000pt;}
._1d{width:33.472000pt;}
._2d{width:35.624960pt;}
._2c{width:36.544000pt;}
._1a{width:38.784000pt;}
._2b{width:39.744000pt;}
._d{width:42.432000pt;}
._1b{width:43.584000pt;}
._2a{width:44.480000pt;}
._2f{width:45.568000pt;}
._28{width:47.936000pt;}
._2e{width:58.112000pt;}
._34{width:68.864000pt;}
._29{width:74.112000pt;}
._30{width:75.456000pt;}
._26{width:77.866667pt;}
._27{width:78.890667pt;}
._1f{width:79.936000pt;}
._25{width:83.648000pt;}
._3{width:126.782400pt;}
._33{width:158.016000pt;}
._21{width:219.264000pt;}
._20{width:229.888000pt;}
._24{width:235.648000pt;}
._32{width:243.264000pt;}
._31{width:583.744000pt;}
.fs5{font-size:32.000000pt;}
.fs6{font-size:37.440000pt;}
.fs4{font-size:42.560000pt;}
.fs0{font-size:48.000000pt;}
.fs1{font-size:58.560000pt;}
.fs3{font-size:64.000000pt;}
.fs2{font-size:117.440000pt;}
.y0{bottom:0.000000pt;}
.y124{bottom:4.320000pt;}
.y127{bottom:4.480000pt;}
.y123{bottom:5.120000pt;}
.y126{bottom:5.280000pt;}
.ya0{bottom:5.360000pt;}
.ya2{bottom:5.520000pt;}
.y120{bottom:7.360000pt;}
.y121{bottom:14.666667pt;}
.y11f{bottom:25.786667pt;}
.y88{bottom:32.933333pt;}
.y89{bottom:34.320000pt;}
.y8c{bottom:47.280000pt;}
.y2{bottom:49.840000pt;}
.y8d{bottom:57.653333pt;}
.y8b{bottom:59.760000pt;}
.y87{bottom:61.706667pt;}
.y1{bottom:63.600000pt;}
.y86{bottom:74.186667pt;}
.y8e{bottom:88.746667pt;}
.yd2{bottom:98.080000pt;}
.yc6{bottom:98.960000pt;}
.y119{bottom:99.760000pt;}
.y160{bottom:100.400000pt;}
.y85{bottom:102.533333pt;}
.ydc{bottom:102.560000pt;}
.yba{bottom:106.000000pt;}
.y114{bottom:106.240000pt;}
.y8a{bottom:107.093333pt;}
.yfa{bottom:107.840000pt;}
.y178{bottom:111.760000pt;}
.y11b{bottom:112.320000pt;}
.yac{bottom:115.200000pt;}
.yd1{bottom:116.480000pt;}
.y7a{bottom:117.920000pt;}
.y15f{bottom:118.800000pt;}
.y4c{bottom:118.960000pt;}
.y106{bottom:127.120000pt;}
.y63{bottom:130.160000pt;}
.yee{bottom:132.080000pt;}
.yd0{bottom:132.960000pt;}
.y8f{bottom:133.813333pt;}
.yab{bottom:134.240000pt;}
.yc5{bottom:135.760000pt;}
.y118{bottom:136.560000pt;}
.yb9{bottom:136.720000pt;}
.y15e{bottom:137.200000pt;}
.ydb{bottom:139.360000pt;}
.y11a{bottom:140.880000pt;}
.y65{bottom:142.800000pt;}
.y113{bottom:143.040000pt;}
.yf9{bottom:144.640000pt;}
.y177{bottom:148.560000pt;}
.yaa{bottom:154.000000pt;}
.y79{bottom:154.720000pt;}
.y84{bottom:154.826667pt;}
.yc4{bottom:155.360000pt;}
.yb8{bottom:155.520000pt;}
.y15d{bottom:155.600000pt;}
.y4b{bottom:155.760000pt;}
.y117{bottom:156.160000pt;}
.y34{bottom:157.360000pt;}
.y105{bottom:163.920000pt;}
.y68{bottom:166.800000pt;}
.y62{bottom:166.960000pt;}
.yb7{bottom:168.000000pt;}
.y6a{bottom:168.080000pt;}
.yed{bottom:168.880000pt;}
.ya9{bottom:173.040000pt;}
.y144{bottom:173.360000pt;}
.y15c{bottom:174.000000pt;}
.yda{bottom:176.160000pt;}
.y112{bottom:179.840000pt;}
.yf8{bottom:181.440000pt;}
.y83{bottom:182.053333pt;}
.y176{bottom:185.360000pt;}
.yc3{bottom:186.080000pt;}
.y116{bottom:186.800000pt;}
.y64{bottom:187.600000pt;}
.y78{bottom:191.360000pt;}
.y15b{bottom:192.400000pt;}
.y4a{bottom:192.560000pt;}
.ya8{bottom:193.280000pt;}
.y33{bottom:194.160000pt;}
.y81{bottom:194.400000pt;}
.y82{bottom:197.173333pt;}
.y111{bottom:199.440000pt;}
.y104{bottom:200.746667pt;}
.yc2{bottom:202.186667pt;}
.y115{bottom:202.986667pt;}
.y61{bottom:203.786667pt;}
.y1a{bottom:204.106667pt;}
.yec{bottom:205.706667pt;}
.y143{bottom:210.186667pt;}
.y15a{bottom:210.826667pt;}
.ya7{bottom:212.186667pt;}
.yd9{bottom:212.986667pt;}
.yf7{bottom:218.266667pt;}
.y175{bottom:222.186667pt;}
.y17a{bottom:223.066667pt;}
.ya6{bottom:224.026667pt;}
.y90{bottom:225.013333pt;}
.y77{bottom:228.346667pt;}
.y159{bottom:229.226667pt;}
.y49{bottom:229.386667pt;}
.y110{bottom:230.106667pt;}
.y32{bottom:230.986667pt;}
.yd8{bottom:231.786667pt;}
.y103{bottom:237.546667pt;}
.y60{bottom:240.586667pt;}
.y179{bottom:241.626667pt;}
.yeb{bottom:242.506667pt;}
.ya5{bottom:244.266667pt;}
.y10f{bottom:246.266667pt;}
.y142{bottom:246.986667pt;}
.y158{bottom:247.626667pt;}
.y80{bottom:247.946667pt;}
.y91{bottom:254.373333pt;}
.yf6{bottom:255.066667pt;}
.y174{bottom:258.986667pt;}
.yd7{bottom:259.866667pt;}
.y7f{bottom:260.426667pt;}
.ya4{bottom:264.506667pt;}
.y76{bottom:265.146667pt;}
.y157{bottom:266.026667pt;}
.y48{bottom:266.186667pt;}
.y31{bottom:267.786667pt;}
.y102{bottom:274.346667pt;}
.y5f{bottom:277.386667pt;}
.yd6{bottom:278.666667pt;}
.yea{bottom:279.306667pt;}
.y141{bottom:283.786667pt;}
.y156{bottom:284.426667pt;}
.ya3{bottom:284.746667pt;}
.y7e{bottom:285.386667pt;}
.yd5{bottom:291.546667pt;}
.yf5{bottom:291.866667pt;}
.y19{bottom:295.626667pt;}
.y173{bottom:295.786667pt;}
.y7d{bottom:297.866667pt;}
.y75{bottom:301.946667pt;}
.y155{bottom:302.826667pt;}
.y47{bottom:302.986667pt;}
.y30{bottom:304.586667pt;}
.ya1{bottom:304.986667pt;}
.y101{bottom:311.146667pt;}
.y5e{bottom:314.186667pt;}
.ye9{bottom:316.106667pt;}
.y140{bottom:320.586667pt;}
.y92{bottom:321.146667pt;}
.y154{bottom:321.226667pt;}
.y9f{bottom:325.866667pt;}
.yf4{bottom:328.666667pt;}
.y172{bottom:332.586667pt;}
.y74{bottom:338.746667pt;}
.y153{bottom:339.626667pt;}
.y46{bottom:339.786667pt;}
.y2f{bottom:341.386667pt;}
.y100{bottom:347.946667pt;}
.y7c{bottom:348.133333pt;}
.y5d{bottom:350.986667pt;}
.ye8{bottom:352.906667pt;}
.y13f{bottom:357.386667pt;}
.y152{bottom:358.026667pt;}
.y9e{bottom:363.786667pt;}
.yf3{bottom:365.466667pt;}
.y171{bottom:369.386667pt;}
.y18{bottom:373.786667pt;}
.y73{bottom:375.546667pt;}
.y151{bottom:376.426667pt;}
.y45{bottom:376.586667pt;}
.y2e{bottom:378.186667pt;}
.yff{bottom:384.746667pt;}
.y5c{bottom:387.786667pt;}
.ye7{bottom:389.706667pt;}
.y13e{bottom:394.186667pt;}
.y150{bottom:394.826667pt;}
.y9d{bottom:400.586667pt;}
.yf2{bottom:402.266667pt;}
.y170{bottom:406.186667pt;}
.y72{bottom:412.346667pt;}
.y14f{bottom:413.226667pt;}
.y44{bottom:413.386667pt;}
.y2d{bottom:414.986667pt;}
.yfe{bottom:421.546667pt;}
.ydd{bottom:424.426667pt;}
.y5b{bottom:424.586667pt;}
.ye6{bottom:426.506667pt;}
.y13d{bottom:430.986667pt;}
.y14e{bottom:431.626667pt;}
.ycf{bottom:431.866667pt;}
.y9c{bottom:437.386667pt;}
.yf1{bottom:438.906667pt;}
.y16f{bottom:442.986667pt;}
.y71{bottom:449.146667pt;}
.y14d{bottom:450.026667pt;}
.y43{bottom:450.186667pt;}
.y2c{bottom:451.786667pt;}
.yfd{bottom:458.186667pt;}
.y69{bottom:461.226667pt;}
.y5a{bottom:461.386667pt;}
.ye5{bottom:463.306667pt;}
.yce{bottom:467.546667pt;}
.y13c{bottom:467.786667pt;}
.y14c{bottom:468.426667pt;}
.yf0{bottom:470.826667pt;}
.y9b{bottom:474.186667pt;}
.yb6{bottom:477.306667pt;}
.y16e{bottom:479.786667pt;}
.y70{bottom:485.946667pt;}
.y14b{bottom:486.826667pt;}
.y42{bottom:486.986667pt;}
.y2b{bottom:488.586667pt;}
.yfc{bottom:490.026667pt;}
.y59{bottom:498.186667pt;}
.ye4{bottom:500.106667pt;}
.ycd{bottom:504.346667pt;}
.y14a{bottom:505.226667pt;}
.yfb{bottom:506.426667pt;}
.y9a{bottom:510.986667pt;}
.y13b{bottom:512.426667pt;}
.yb5{bottom:514.106667pt;}
.y16d{bottom:516.586667pt;}
.y6f{bottom:522.746667pt;}
.y41{bottom:523.786667pt;}
.y149{bottom:524.826667pt;}
.y2a{bottom:525.386667pt;}
.y67{bottom:534.826667pt;}
.y58{bottom:534.986667pt;}
.y17{bottom:535.706667pt;}
.ye3{bottom:536.906667pt;}
.yc1{bottom:537.866667pt;}
.ycc{bottom:541.146667pt;}
.y13a{bottom:547.306667pt;}
.y99{bottom:547.786667pt;}
.y10e{bottom:548.826667pt;}
.y148{bottom:550.026667pt;}
.yb4{bottom:550.906667pt;}
.y16c{bottom:553.386667pt;}
.ye2{bottom:555.706667pt;}
.y139{bottom:559.146667pt;}
.y6e{bottom:559.546667pt;}
.y40{bottom:560.586667pt;}
.y29{bottom:562.186667pt;}
.y16{bottom:569.626667pt;}
.yc0{bottom:569.786667pt;}
.y57{bottom:571.786667pt;}
.ycb{bottom:577.973333pt;}
.y138{bottom:579.173333pt;}
.y10d{bottom:580.853333pt;}
.ye1{bottom:583.813333pt;}
.y98{bottom:584.613333pt;}
.yb3{bottom:587.733333pt;}
.y16b{bottom:590.213333pt;}
.y6d{bottom:596.373333pt;}
.y3f{bottom:597.413333pt;}
.y137{bottom:599.173333pt;}
.y10c{bottom:601.093333pt;}
.y147{bottom:603.013333pt;}
.ye0{bottom:603.493333pt;}
.y15{bottom:603.573333pt;}
.y28{bottom:606.293333pt;}
.ybf{bottom:606.613333pt;}
.y56{bottom:608.613333pt;}
.yca{bottom:614.773333pt;}
.ydf{bottom:618.773333pt;}
.y136{bottom:619.173333pt;}
.y10b{bottom:621.333333pt;}
.y97{bottom:621.413333pt;}
.yb2{bottom:624.533333pt;}
.y27{bottom:625.173333pt;}
.y16a{bottom:627.013333pt;}
.yc9{bottom:633.573333pt;}
.y3e{bottom:634.213333pt;}
.y14{bottom:637.493333pt;}
.y135{bottom:639.173333pt;}
.y146{bottom:639.813333pt;}
.y10a{bottom:641.573333pt;}
.y26{bottom:641.653333pt;}
.ybe{bottom:643.413333pt;}
.yd4{bottom:645.253333pt;}
.y55{bottom:645.413333pt;}
.y6c{bottom:646.453333pt;}
.y13{bottom:658.053333pt;}
.y96{bottom:658.213333pt;}
.y134{bottom:659.173333pt;}
.y7b{bottom:661.200000pt;}
.yb1{bottom:661.333333pt;}
.yc8{bottom:661.733333pt;}
.y109{bottom:662.533333pt;}
.y169{bottom:663.813333pt;}
.y145{bottom:666.053333pt;}
.y3d{bottom:670.933333pt;}
.yb0{bottom:676.693333pt;}
.yc7{bottom:677.813333pt;}
.y6b{bottom:678.133333pt;}
.y12{bottom:678.613333pt;}
.y25{bottom:678.933333pt;}
.y133{bottom:679.173333pt;}
.ybd{bottom:680.213333pt;}
.yd3{bottom:682.053333pt;}
.y54{bottom:682.213333pt;}
.y95{bottom:694.933333pt;}
.yaf{bottom:696.933333pt;}
.y132{bottom:699.173333pt;}
.y11{bottom:699.253333pt;}
.ybc{bottom:699.733333pt;}
.y24{bottom:700.053333pt;}
.y108{bottom:700.453333pt;}
.y168{bottom:700.533333pt;}
.y3c{bottom:707.733333pt;}
.yae{bottom:717.813333pt;}
.ybb{bottom:718.773333pt;}
.y53{bottom:718.933333pt;}
.y131{bottom:719.173333pt;}
.y10{bottom:719.813333pt;}
.y107{bottom:719.973333pt;}
.y23{bottom:721.253333pt;}
.y94{bottom:731.573333pt;}
.y167{bottom:737.333333pt;}
.y130{bottom:739.173333pt;}
.yf{bottom:740.373333pt;}
.y3b{bottom:744.533333pt;}
.y22{bottom:748.373333pt;}
.y52{bottom:755.733333pt;}
.yef{bottom:756.853333pt;}
.y12f{bottom:759.173333pt;}
.ye{bottom:761.013333pt;}
.y21{bottom:763.573333pt;}
.y166{bottom:774.133333pt;}
.y93{bottom:776.373333pt;}
.y12e{bottom:779.173333pt;}
.y3a{bottom:781.333333pt;}
.yd{bottom:781.573333pt;}
.y20{bottom:784.693333pt;}
.y51{bottom:792.533333pt;}
.y12d{bottom:799.173333pt;}
.yc{bottom:802.213333pt;}
.y165{bottom:810.933333pt;}
.y1f{bottom:811.893333pt;}
.y12c{bottom:819.173333pt;}
.yb{bottom:822.773333pt;}
.y39{bottom:825.973333pt;}
.y50{bottom:829.333333pt;}
.yde{bottom:830.453333pt;}
.y1e{bottom:834.133333pt;}
.y12b{bottom:839.173333pt;}
.ya{bottom:843.333333pt;}
.y164{bottom:847.733333pt;}
.y1d{bottom:854.373333pt;}
.y12a{bottom:859.173333pt;}
.y9{bottom:863.973333pt;}
.y66{bottom:865.973333pt;}
.y4f{bottom:866.133333pt;}
.y38{bottom:878.933333pt;}
.y129{bottom:879.173333pt;}
.y8{bottom:884.533333pt;}
.y128{bottom:899.173333pt;}
.yad{bottom:902.773333pt;}
.y4e{bottom:902.933333pt;}
.y37{bottom:915.733333pt;}
.y7{bottom:918.453333pt;}
.y125{bottom:919.173333pt;}
.y163{bottom:921.333333pt;}
.y1c{bottom:933.253333pt;}
.y4d{bottom:939.733333pt;}
.y11e{bottom:939.813333pt;}
.y6{bottom:952.400000pt;}
.y162{bottom:958.160000pt;}
.y122{bottom:960.480000pt;}
.y5{bottom:972.960000pt;}
.y36{bottom:976.560000pt;}
.y4{bottom:993.600000pt;}
.y161{bottom:994.960000pt;}
.y11d{bottom:998.160000pt;}
.y1b{bottom:1000.800000pt;}
.y35{bottom:1013.360000pt;}
.y3{bottom:1014.160000pt;}
.y11c{bottom:1016.960000pt;}
.h14{height:20.000000pt;}
.h15{height:20.026667pt;}
.h10{height:20.240000pt;}
.h12{height:20.266667pt;}
.h6{height:38.154375pt;}
.he{height:39.048750pt;}
.h13{height:40.666667pt;}
.h11{height:44.388750pt;}
.h9{height:45.156250pt;}
.h2{height:50.062500pt;}
.h5{height:56.518750pt;}
.h7{height:57.375000pt;}
.h3{height:58.245469pt;}
.ha{height:60.961875pt;}
.hb{height:61.076250pt;}
.hf{height:62.154375pt;}
.h8{height:62.812500pt;}
.hc{height:66.625000pt;}
.h4{height:115.260937pt;}
.hd{height:366.880000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w7{width:46.400000pt;}
.w11{width:53.520000pt;}
.wf{width:53.626667pt;}
.wa{width:54.400000pt;}
.w12{width:61.200000pt;}
.w8{width:62.720000pt;}
.w6{width:65.146667pt;}
.w10{width:65.520000pt;}
.wb{width:69.520000pt;}
.wc{width:73.360000pt;}
.w9{width:89.146667pt;}
.w5{width:95.200000pt;}
.w4{width:117.146667pt;}
.w3{width:212.346667pt;}
.we{width:233.866667pt;}
.wd{width:299.066667pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x22{left:7.200000pt;}
.x53{left:8.720000pt;}
.x2b{left:11.760000pt;}
.x2e{left:13.360000pt;}
.x54{left:14.640000pt;}
.x45{left:16.720000pt;}
.x4b{left:17.920000pt;}
.x40{left:19.200000pt;}
.x44{left:20.720000pt;}
.x52{left:22.640000pt;}
.x4a{left:25.520000pt;}
.x24{left:28.000000pt;}
.x21{left:63.626667pt;}
.x4f{left:84.746667pt;}
.x2{left:113.466655pt;}
.x4d{left:114.400000pt;}
.x3d{left:126.826655pt;}
.x27{left:136.506655pt;}
.x4{left:137.466655pt;}
.x18{left:138.986655pt;}
.x37{left:149.466655pt;}
.x6{left:154.106655pt;}
.x55{left:156.106655pt;}
.x25{left:166.266655pt;}
.x26{left:170.186655pt;}
.x19{left:171.359988pt;}
.x3c{left:175.466655pt;}
.x3b{left:176.986655pt;}
.x31{left:180.106655pt;}
.x4c{left:186.826667pt;}
.x39{left:198.906655pt;}
.x34{left:212.506655pt;}
.x3e{left:234.266655pt;}
.x15{left:244.613322pt;}
.x28{left:258.026655pt;}
.x1c{left:262.773322pt;}
.x48{left:265.386655pt;}
.x3f{left:267.146667pt;}
.x1f{left:274.506655pt;}
.x16{left:283.786655pt;}
.x29{left:286.586667pt;}
.x20{left:290.746667pt;}
.x1a{left:295.119988pt;}
.x17{left:331.706655pt;}
.xe{left:343.679988pt;}
.xd{left:346.079988pt;}
.x2a{left:351.733333pt;}
.x41{left:356.293333pt;}
.x7{left:365.439988pt;}
.x8{left:369.759988pt;}
.x9{left:372.959988pt;}
.xf{left:383.786655pt;}
.x32{left:396.933322pt;}
.x2c{left:398.133333pt;}
.x30{left:401.653322pt;}
.x42{left:402.693333pt;}
.x23{left:407.893333pt;}
.x1d{left:431.759988pt;}
.x2d{left:444.533333pt;}
.x43{left:457.093333pt;}
.xa{left:465.386655pt;}
.x14{left:469.759988pt;}
.xb{left:479.386655pt;}
.x4e{left:485.893333pt;}
.x12{left:528.853322pt;}
.x1b{left:529.786655pt;}
.x50{left:539.520000pt;}
.x11{left:550.133322pt;}
.x10{left:551.146655pt;}
.xc{left:586.693322pt;}
.x3{left:598.959988pt;}
.x46{left:602.559988pt;}
.x2f{left:604.799988pt;}
.x3a{left:625.599988pt;}
.x13{left:633.439988pt;}
.x49{left:635.279988pt;}
.x38{left:636.959988pt;}
.x47{left:647.999988pt;}
.x35{left:648.959988pt;}
.x51{left:658.560000pt;}
.x33{left:662.959988pt;}
.x1e{left:667.199988pt;}
.x1{left:673.839988pt;}
.x5{left:680.479988pt;}
.x36{left:682.399988pt;}
}




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