
    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_b0de7efbc65914cd5186adc0.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.093262;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_bead09c219e10b6dbe9f788a.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.104004;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_8bb1b3b3d4e93a55130de392.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.893066;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_803575e62d02f9d5b74a11ab.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.919922;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_bff60c1d1f31053553428136.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.095703;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_3538f2fdbac27ba1dd992a36.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.666504;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);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:28.200000px;}
.ls3{letter-spacing:0.000000px;}
.ls8{letter-spacing:0.168000px;}
.ls5{letter-spacing:0.600000px;}
.ls9{letter-spacing:6.000000px;}
.ls6{letter-spacing:7.128000px;}
.ls2{letter-spacing:11.760000px;}
.ls0{letter-spacing:11.952000px;}
.ls1{letter-spacing:12.000000px;}
.ls4{letter-spacing:25.128000px;}
.lsa{letter-spacing:72.600000px;}
.ls7{letter-spacing:82.440000px;}
.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;}
}
.ws2{word-spacing:-28.560000px;}
.ws3{word-spacing:-21.000000px;}
.ws6{word-spacing:-18.000000px;}
.ws8{word-spacing:-15.000000px;}
.ws7{word-spacing:-10.500000px;}
.ws5{word-spacing:-5.040000px;}
.ws1{word-spacing:-4.939200px;}
.ws0{word-spacing:-4.771200px;}
.ws4{word-spacing:0.000000px;}
._27{margin-left:-1772.220000px;}
._29{margin-left:-860.772000px;}
._12{margin-left:-25.200000px;}
._2e{margin-left:-14.568000px;}
._13{margin-left:-13.200000px;}
._0{margin-left:-11.064000px;}
._8{margin-left:-9.408000px;}
._4{margin-left:-7.980000px;}
._1f{margin-left:-6.732000px;}
._1{margin-left:-5.580000px;}
._5{margin-left:-4.500000px;}
._18{margin-left:-3.468000px;}
._7{margin-left:-2.376000px;}
._3{margin-left:-1.176000px;}
._2{width:1.452000px;}
._b{width:2.736000px;}
._f{width:3.960000px;}
._10{width:4.968000px;}
._c{width:6.048000px;}
._11{width:7.560000px;}
._e{width:8.568000px;}
._16{width:9.657600px;}
._14{width:11.006400px;}
._6{width:12.969600px;}
._9{width:14.904000px;}
._a{width:16.200000px;}
._1d{width:18.170400px;}
._19{width:19.929600px;}
._1b{width:21.182400px;}
._17{width:22.312800px;}
._15{width:24.240000px;}
._21{width:25.944000px;}
._1a{width:27.854400px;}
._26{width:28.996800px;}
._30{width:30.228000px;}
._20{width:31.884000px;}
._24{width:33.408000px;}
._22{width:35.856000px;}
._1c{width:37.740000px;}
._1e{width:38.815200px;}
._33{width:42.636000px;}
._2f{width:48.194400px;}
._2b{width:50.040000px;}
._2c{width:51.120000px;}
._35{width:52.497600px;}
._23{width:62.736000px;}
._2d{width:74.160000px;}
._25{width:79.591200px;}
._31{width:97.164000px;}
._32{width:98.280000px;}
._34{width:102.216000px;}
._d{width:198.000000px;}
._2a{width:823.752000px;}
._28{width:1736.928000px;}
.fc1{color:rgb(0,0,128);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:42.000000px;}
.fs6{font-size:60.000000px;}
.fs1{font-size:67.200000px;}
.fs4{font-size:72.000000px;}
.fs0{font-size:84.000000px;}
.fs2{font-size:108.000000px;}
.fs3{font-size:120.000000px;}
.y0{bottom:0.000000px;}
.ya{bottom:88.800000px;}
.y91{bottom:130.050000px;}
.y112{bottom:132.900000px;}
.y143{bottom:134.400000px;}
.y55{bottom:136.200000px;}
.yef{bottom:139.800000px;}
.y12c{bottom:142.200000px;}
.ye5{bottom:145.350000px;}
.y6c{bottom:145.500000px;}
.yae{bottom:146.250000px;}
.ycf{bottom:154.650000px;}
.y16d{bottom:156.000000px;}
.y90{bottom:156.600000px;}
.yaf{bottom:156.750000px;}
.y51{bottom:157.800000px;}
.y111{bottom:163.950000px;}
.y85{bottom:165.300000px;}
.y142{bottom:165.450000px;}
.y54{bottom:167.250000px;}
.yee{bottom:170.850000px;}
.y12b{bottom:173.250000px;}
.ye4{bottom:176.400000px;}
.y6b{bottom:176.550000px;}
.yad{bottom:177.300000px;}
.yce{bottom:185.700000px;}
.y16c{bottom:187.050000px;}
.ya4{bottom:187.800000px;}
.y50{bottom:188.850000px;}
.yc1{bottom:191.700000px;}
.y110{bottom:195.000000px;}
.y84{bottom:196.350000px;}
.y53{bottom:198.300000px;}
.y12a{bottom:204.300000px;}
.y141{bottom:207.000000px;}
.ye3{bottom:207.450000px;}
.y6a{bottom:207.600000px;}
.yac{bottom:208.350000px;}
.y18{bottom:210.900000px;}
.ycd{bottom:216.750000px;}
.y16b{bottom:218.100000px;}
.ya3{bottom:218.850000px;}
.y4f{bottom:219.900000px;}
.y8f{bottom:221.700000px;}
.yc0{bottom:222.750000px;}
.y181{bottom:224.700000px;}
.y10f{bottom:226.050000px;}
.y83{bottom:227.400000px;}
.y52{bottom:229.350000px;}
.y140{bottom:238.050000px;}
.y69{bottom:238.650000px;}
.yab{bottom:239.400000px;}
.y19e{bottom:241.050000px;}
.y192{bottom:244.200000px;}
.y9{bottom:247.200000px;}
.ycc{bottom:247.800000px;}
.y5b{bottom:248.400000px;}
.y16a{bottom:249.150000px;}
.ya2{bottom:249.900000px;}
.y4e{bottom:250.950000px;}
.y129{bottom:252.300000px;}
.y8e{bottom:252.750000px;}
.ybf{bottom:253.800000px;}
.y180{bottom:255.750000px;}
.y10e{bottom:257.100000px;}
.y11{bottom:257.550000px;}
.y82{bottom:258.450000px;}
.y56{bottom:260.400000px;}
.y13f{bottom:269.100000px;}
.y68{bottom:269.700000px;}
.yaa{bottom:270.450000px;}
.y19d{bottom:272.100000px;}
.y191{bottom:275.250000px;}
.ycb{bottom:278.850000px;}
.y5a{bottom:279.450000px;}
.y169{bottom:280.200000px;}
.ya1{bottom:280.950000px;}
.y4d{bottom:282.000000px;}
.y17{bottom:283.350000px;}
.y8d{bottom:283.800000px;}
.ybe{bottom:284.850000px;}
.y17f{bottom:286.800000px;}
.y10d{bottom:288.150000px;}
.y81{bottom:289.500000px;}
.y35{bottom:291.450000px;}
.y128{bottom:300.150000px;}
.y67{bottom:300.750000px;}
.ya9{bottom:301.500000px;}
.y190{bottom:306.300000px;}
.yca{bottom:309.900000px;}
.y59{bottom:310.500000px;}
.y168{bottom:311.250000px;}
.ya0{bottom:312.000000px;}
.y4c{bottom:313.050000px;}
.y8c{bottom:314.850000px;}
.y17e{bottom:317.850000px;}
.y10c{bottom:319.200000px;}
.y8{bottom:319.650000px;}
.y80{bottom:320.550000px;}
.y157{bottom:321.600000px;}
.y31{bottom:322.500000px;}
.ybd{bottom:328.500000px;}
.y10{bottom:330.000000px;}
.y127{bottom:331.200000px;}
.ya8{bottom:332.550000px;}
.yc9{bottom:340.950000px;}
.y58{bottom:341.550000px;}
.y167{bottom:342.300000px;}
.y66{bottom:343.050000px;}
.y8b{bottom:345.900000px;}
.y7f{bottom:351.600000px;}
.y156{bottom:352.650000px;}
.y30{bottom:353.550000px;}
.y7{bottom:355.800000px;}
.y19c{bottom:356.700000px;}
.y4b{bottom:356.850000px;}
.ybc{bottom:359.550000px;}
.y126{bottom:362.250000px;}
.ya7{bottom:363.600000px;}
.yf{bottom:366.150000px;}
.y10b{bottom:367.200000px;}
.y18f{bottom:368.400000px;}
.yc8{bottom:372.000000px;}
.y57{bottom:372.600000px;}
.y166{bottom:373.350000px;}
.y65{bottom:374.100000px;}
.y8a{bottom:376.950000px;}
.y155{bottom:383.700000px;}
.yfc{bottom:384.150000px;}
.y2f{bottom:384.600000px;}
.y19b{bottom:387.750000px;}
.y4a{bottom:387.900000px;}
.ybb{bottom:390.600000px;}
.y125{bottom:393.300000px;}
.y7e{bottom:393.900000px;}
.ya6{bottom:394.650000px;}
.y10a{bottom:398.250000px;}
.y18e{bottom:399.450000px;}
.yc7{bottom:403.050000px;}
.y165{bottom:404.400000px;}
.y64{bottom:405.150000px;}
.y89{bottom:408.000000px;}
.ydb{bottom:411.900000px;}
.y154{bottom:414.750000px;}
.yfb{bottom:415.200000px;}
.y2e{bottom:415.650000px;}
.y19a{bottom:418.800000px;}
.y49{bottom:418.950000px;}
.y17d{bottom:422.250000px;}
.y13e{bottom:424.350000px;}
.y7d{bottom:424.950000px;}
.ya5{bottom:425.700000px;}
.y16{bottom:428.250000px;}
.y109{bottom:429.300000px;}
.y18d{bottom:430.500000px;}
.yba{bottom:434.100000px;}
.y164{bottom:435.450000px;}
.y63{bottom:436.200000px;}
.y88{bottom:439.050000px;}
.y124{bottom:441.300000px;}
.yda{bottom:442.950000px;}
.y153{bottom:445.800000px;}
.yfa{bottom:446.250000px;}
.y2d{bottom:446.700000px;}
.y48{bottom:450.000000px;}
.y17c{bottom:453.300000px;}
.y13d{bottom:455.400000px;}
.y7c{bottom:456.000000px;}
.y108{bottom:460.350000px;}
.y6{bottom:464.550000px;}
.yb9{bottom:465.150000px;}
.y163{bottom:466.500000px;}
.y62{bottom:467.250000px;}
.y87{bottom:470.100000px;}
.y123{bottom:472.350000px;}
.ye{bottom:474.900000px;}
.y152{bottom:476.850000px;}
.yf9{bottom:477.300000px;}
.y2c{bottom:477.750000px;}
.y18c{bottom:479.550000px;}
.y17b{bottom:484.350000px;}
.y13c{bottom:486.450000px;}
.y7b{bottom:487.050000px;}
.y107{bottom:491.400000px;}
.yb8{bottom:496.200000px;}
.y162{bottom:497.550000px;}
.y61{bottom:498.300000px;}
.y86{bottom:501.150000px;}
.y15{bottom:502.650000px;}
.y122{bottom:503.400000px;}
.yd9{bottom:505.050000px;}
.y47{bottom:506.700000px;}
.y151{bottom:507.900000px;}
.yf8{bottom:508.350000px;}
.y34{bottom:508.800000px;}
.y18b{bottom:510.600000px;}
.y13b{bottom:517.500000px;}
.y7a{bottom:518.100000px;}
.y106{bottom:522.450000px;}
.y17a{bottom:526.650000px;}
.yb7{bottom:527.250000px;}
.y161{bottom:528.600000px;}
.y60{bottom:529.350000px;}
.y121{bottom:534.450000px;}
.yd8{bottom:536.100000px;}
.y46{bottom:537.750000px;}
.y5{bottom:538.950000px;}
.yf7{bottom:539.400000px;}
.y2b{bottom:539.850000px;}
.y18a{bottom:541.650000px;}
.yd{bottom:546.900000px;}
.y13a{bottom:548.550000px;}
.y79{bottom:549.150000px;}
.y14{bottom:552.150000px;}
.y179{bottom:557.700000px;}
.yb6{bottom:558.300000px;}
.y160{bottom:559.650000px;}
.y5f{bottom:560.400000px;}
.y105{bottom:564.000000px;}
.y199{bottom:565.500000px;}
.yd7{bottom:567.150000px;}
.y45{bottom:568.800000px;}
.ye2{bottom:570.000000px;}
.y2a{bottom:570.900000px;}
.y139{bottom:579.600000px;}
.y78{bottom:580.200000px;}
.yf6{bottom:580.950000px;}
.y120{bottom:582.300000px;}
.y4{bottom:588.300000px;}
.y178{bottom:588.750000px;}
.yb5{bottom:589.350000px;}
.y15f{bottom:590.700000px;}
.y5e{bottom:591.450000px;}
.yc{bottom:593.550000px;}
.y104{bottom:595.050000px;}
.yd6{bottom:598.200000px;}
.y13{bottom:598.650000px;}
.y44{bottom:599.850000px;}
.y150{bottom:601.050000px;}
.y29{bottom:601.950000px;}
.y189{bottom:603.750000px;}
.y138{bottom:610.650000px;}
.y77{bottom:611.250000px;}
.yf5{bottom:612.000000px;}
.yb4{bottom:620.400000px;}
.y15e{bottom:621.750000px;}
.y5d{bottom:622.500000px;}
.y103{bottom:626.100000px;}
.yd5{bottom:629.250000px;}
.y11f{bottom:630.300000px;}
.y43{bottom:630.900000px;}
.yed{bottom:631.200000px;}
.y14f{bottom:632.100000px;}
.y28{bottom:633.000000px;}
.y188{bottom:634.800000px;}
.y3{bottom:634.950000px;}
.yb{bottom:640.050000px;}
.y137{bottom:641.700000px;}
.yf4{bottom:643.050000px;}
.y198{bottom:650.100000px;}
.y177{bottom:650.850000px;}
.yb3{bottom:651.450000px;}
.y76{bottom:652.800000px;}
.y5c{bottom:653.550000px;}
.y102{bottom:657.150000px;}
.y11e{bottom:661.350000px;}
.y42{bottom:661.950000px;}
.y14e{bottom:663.150000px;}
.y27{bottom:664.050000px;}
.yd4{bottom:670.800000px;}
.yf3{bottom:674.100000px;}
.yec{bottom:680.250000px;}
.y197{bottom:681.150000px;}
.y176{bottom:681.900000px;}
.yb2{bottom:682.500000px;}
.y75{bottom:683.850000px;}
.y9f{bottom:684.600000px;}
.y136{bottom:689.700000px;}
.y11d{bottom:692.400000px;}
.y41{bottom:693.000000px;}
.y14d{bottom:694.200000px;}
.ye1{bottom:694.650000px;}
.y33{bottom:695.100000px;}
.y101{bottom:698.700000px;}
.yd3{bottom:701.850000px;}
.yf2{bottom:705.150000px;}
.y187{bottom:708.150000px;}
.yeb{bottom:711.300000px;}
.y196{bottom:712.200000px;}
.yb1{bottom:713.550000px;}
.y74{bottom:714.900000px;}
.y9e{bottom:715.650000px;}
.y135{bottom:720.750000px;}
.y11c{bottom:723.450000px;}
.y40{bottom:724.050000px;}
.ye0{bottom:725.700000px;}
.y26{bottom:726.150000px;}
.y100{bottom:729.750000px;}
.yf1{bottom:736.200000px;}
.y186{bottom:739.200000px;}
.yea{bottom:742.350000px;}
.y195{bottom:743.250000px;}
.yb0{bottom:744.600000px;}
.y73{bottom:745.950000px;}
.y9d{bottom:746.700000px;}
.y134{bottom:751.800000px;}
.y11b{bottom:754.500000px;}
.y3f{bottom:755.100000px;}
.y175{bottom:755.250000px;}
.y14c{bottom:756.300000px;}
.ydf{bottom:756.750000px;}
.y25{bottom:757.200000px;}
.yff{bottom:760.800000px;}
.yd2{bottom:763.950000px;}
.yf0{bottom:767.250000px;}
.yc6{bottom:775.650000px;}
.y72{bottom:777.000000px;}
.y9c{bottom:777.750000px;}
.y133{bottom:782.850000px;}
.y11a{bottom:785.550000px;}
.y174{bottom:786.300000px;}
.y14b{bottom:787.350000px;}
.y24{bottom:788.250000px;}
.yfe{bottom:791.850000px;}
.yd1{bottom:795.000000px;}
.yde{bottom:798.300000px;}
.y185{bottom:801.300000px;}
.yc5{bottom:806.700000px;}
.y71{bottom:808.050000px;}
.y9b{bottom:808.800000px;}
.y3e{bottom:811.800000px;}
.y132{bottom:813.900000px;}
.y119{bottom:816.600000px;}
.y14a{bottom:818.400000px;}
.y23{bottom:819.300000px;}
.yfd{bottom:822.900000px;}
.yd0{bottom:826.050000px;}
.y194{bottom:827.850000px;}
.ydd{bottom:829.350000px;}
.y184{bottom:832.350000px;}
.y1a3{bottom:836.400000px;}
.yc4{bottom:837.750000px;}
.y70{bottom:839.100000px;}
.y9a{bottom:839.850000px;}
.y3d{bottom:842.850000px;}
.y131{bottom:844.950000px;}
.y118{bottom:847.650000px;}
.y173{bottom:848.400000px;}
.y149{bottom:849.450000px;}
.y22{bottom:850.350000px;}
.y193{bottom:858.900000px;}
.ydc{bottom:860.400000px;}
.y1a2{bottom:867.450000px;}
.yc3{bottom:868.800000px;}
.y6f{bottom:870.150000px;}
.y99{bottom:870.900000px;}
.y3c{bottom:873.900000px;}
.y117{bottom:878.700000px;}
.y172{bottom:879.450000px;}
.y148{bottom:880.500000px;}
.y21{bottom:881.400000px;}
.y130{bottom:892.800000px;}
.y183{bottom:894.450000px;}
.y1a1{bottom:898.500000px;}
.yc2{bottom:899.850000px;}
.y6e{bottom:901.200000px;}
.y98{bottom:901.950000px;}
.y3b{bottom:904.950000px;}
.y116{bottom:909.750000px;}
.y171{bottom:910.500000px;}
.y20{bottom:912.450000px;}
.y182{bottom:925.500000px;}
.y6d{bottom:932.250000px;}
.y97{bottom:933.000000px;}
.y3a{bottom:936.000000px;}
.y12f{bottom:940.800000px;}
.y1f{bottom:943.500000px;}
.y115{bottom:957.600000px;}
.y15d{bottom:963.300000px;}
.y96{bottom:964.050000px;}
.y12e{bottom:971.850000px;}
.y170{bottom:972.600000px;}
.y147{bottom:974.100000px;}
.y1e{bottom:974.550000px;}
.y1a0{bottom:983.100000px;}
.ye9{bottom:987.600000px;}
.y114{bottom:988.650000px;}
.y39{bottom:992.700000px;}
.y15c{bottom:994.350000px;}
.y95{bottom:995.100000px;}
.y16f{bottom:1003.650000px;}
.y146{bottom:1005.150000px;}
.y1d{bottom:1005.600000px;}
.y19f{bottom:1014.150000px;}
.ye8{bottom:1018.650000px;}
.y113{bottom:1019.700000px;}
.y38{bottom:1023.750000px;}
.y15b{bottom:1025.400000px;}
.y94{bottom:1026.150000px;}
.y145{bottom:1036.200000px;}
.y1c{bottom:1036.650000px;}
.ye7{bottom:1049.700000px;}
.y12d{bottom:1050.750000px;}
.y37{bottom:1054.800000px;}
.y15a{bottom:1056.450000px;}
.y93{bottom:1057.200000px;}
.y16e{bottom:1065.750000px;}
.y144{bottom:1067.250000px;}
.y1b{bottom:1067.700000px;}
.ye6{bottom:1080.750000px;}
.y12{bottom:1085.550000px;}
.y36{bottom:1085.850000px;}
.y159{bottom:1087.500000px;}
.y92{bottom:1088.250000px;}
.y1a{bottom:1098.750000px;}
.y158{bottom:1118.550000px;}
.y2{bottom:1121.700000px;}
.y32{bottom:1129.800000px;}
.y1{bottom:1158.000000px;}
.y19{bottom:1160.850000px;}
.h7{height:50.695312px;}
.hd{height:52.646484px;}
.he{height:52.792969px;}
.h9{height:63.175781px;}
.ha{height:63.351562px;}
.hb{height:63.949219px;}
.hc{height:65.052539px;}
.h8{height:73.142578px;}
.h3{height:73.705078px;}
.h4{height:74.607422px;}
.h6{height:81.269531px;}
.h5{height:95.923828px;}
.h2{height:1262.700000px;}
.h0{height:1262.792126px;}
.h1{height:1263.000000px;}
.w2{width:892.800000px;}
.w0{width:892.913386px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x9{left:85.200000px;}
.x11{left:112.200000px;}
.xf{left:127.800000px;}
.xd{left:139.200000px;}
.x3{left:143.550000px;}
.x10{left:150.450000px;}
.xe{left:193.200000px;}
.xb{left:234.000000px;}
.x2{left:255.300000px;}
.x7{left:279.900000px;}
.x6{left:289.500000px;}
.xa{left:304.800000px;}
.x1{left:326.100000px;}
.x5{left:332.250000px;}
.x8{left:355.350000px;}
.xc{left:383.700000px;}
.x4{left:464.250000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:25.066667pt;}
.ls3{letter-spacing:0.000000pt;}
.ls8{letter-spacing:0.149333pt;}
.ls5{letter-spacing:0.533333pt;}
.ls9{letter-spacing:5.333333pt;}
.ls6{letter-spacing:6.336000pt;}
.ls2{letter-spacing:10.453333pt;}
.ls0{letter-spacing:10.624000pt;}
.ls1{letter-spacing:10.666667pt;}
.ls4{letter-spacing:22.336000pt;}
.lsa{letter-spacing:64.533333pt;}
.ls7{letter-spacing:73.280000pt;}
.ws2{word-spacing:-25.386667pt;}
.ws3{word-spacing:-18.666667pt;}
.ws6{word-spacing:-16.000000pt;}
.ws8{word-spacing:-13.333333pt;}
.ws7{word-spacing:-9.333333pt;}
.ws5{word-spacing:-4.480000pt;}
.ws1{word-spacing:-4.390400pt;}
.ws0{word-spacing:-4.241067pt;}
.ws4{word-spacing:0.000000pt;}
._27{margin-left:-1575.306667pt;}
._29{margin-left:-765.130667pt;}
._12{margin-left:-22.400000pt;}
._2e{margin-left:-12.949333pt;}
._13{margin-left:-11.733333pt;}
._0{margin-left:-9.834667pt;}
._8{margin-left:-8.362667pt;}
._4{margin-left:-7.093333pt;}
._1f{margin-left:-5.984000pt;}
._1{margin-left:-4.960000pt;}
._5{margin-left:-4.000000pt;}
._18{margin-left:-3.082667pt;}
._7{margin-left:-2.112000pt;}
._3{margin-left:-1.045333pt;}
._2{width:1.290667pt;}
._b{width:2.432000pt;}
._f{width:3.520000pt;}
._10{width:4.416000pt;}
._c{width:5.376000pt;}
._11{width:6.720000pt;}
._e{width:7.616000pt;}
._16{width:8.584533pt;}
._14{width:9.783467pt;}
._6{width:11.528533pt;}
._9{width:13.248000pt;}
._a{width:14.400000pt;}
._1d{width:16.151467pt;}
._19{width:17.715200pt;}
._1b{width:18.828800pt;}
._17{width:19.833600pt;}
._15{width:21.546667pt;}
._21{width:23.061333pt;}
._1a{width:24.759467pt;}
._26{width:25.774933pt;}
._30{width:26.869333pt;}
._20{width:28.341333pt;}
._24{width:29.696000pt;}
._22{width:31.872000pt;}
._1c{width:33.546667pt;}
._1e{width:34.502400pt;}
._33{width:37.898667pt;}
._2f{width:42.839467pt;}
._2b{width:44.480000pt;}
._2c{width:45.440000pt;}
._35{width:46.664533pt;}
._23{width:55.765333pt;}
._2d{width:65.920000pt;}
._25{width:70.747733pt;}
._31{width:86.368000pt;}
._32{width:87.360000pt;}
._34{width:90.858667pt;}
._d{width:176.000000pt;}
._2a{width:732.224000pt;}
._28{width:1543.936000pt;}
.fs5{font-size:37.333333pt;}
.fs6{font-size:53.333333pt;}
.fs1{font-size:59.733333pt;}
.fs4{font-size:64.000000pt;}
.fs0{font-size:74.666667pt;}
.fs2{font-size:96.000000pt;}
.fs3{font-size:106.666667pt;}
.y0{bottom:0.000000pt;}
.ya{bottom:78.933333pt;}
.y91{bottom:115.600000pt;}
.y112{bottom:118.133333pt;}
.y143{bottom:119.466667pt;}
.y55{bottom:121.066667pt;}
.yef{bottom:124.266667pt;}
.y12c{bottom:126.400000pt;}
.ye5{bottom:129.200000pt;}
.y6c{bottom:129.333333pt;}
.yae{bottom:130.000000pt;}
.ycf{bottom:137.466667pt;}
.y16d{bottom:138.666667pt;}
.y90{bottom:139.200000pt;}
.yaf{bottom:139.333333pt;}
.y51{bottom:140.266667pt;}
.y111{bottom:145.733333pt;}
.y85{bottom:146.933333pt;}
.y142{bottom:147.066667pt;}
.y54{bottom:148.666667pt;}
.yee{bottom:151.866667pt;}
.y12b{bottom:154.000000pt;}
.ye4{bottom:156.800000pt;}
.y6b{bottom:156.933333pt;}
.yad{bottom:157.600000pt;}
.yce{bottom:165.066667pt;}
.y16c{bottom:166.266667pt;}
.ya4{bottom:166.933333pt;}
.y50{bottom:167.866667pt;}
.yc1{bottom:170.400000pt;}
.y110{bottom:173.333333pt;}
.y84{bottom:174.533333pt;}
.y53{bottom:176.266667pt;}
.y12a{bottom:181.600000pt;}
.y141{bottom:184.000000pt;}
.ye3{bottom:184.400000pt;}
.y6a{bottom:184.533333pt;}
.yac{bottom:185.200000pt;}
.y18{bottom:187.466667pt;}
.ycd{bottom:192.666667pt;}
.y16b{bottom:193.866667pt;}
.ya3{bottom:194.533333pt;}
.y4f{bottom:195.466667pt;}
.y8f{bottom:197.066667pt;}
.yc0{bottom:198.000000pt;}
.y181{bottom:199.733333pt;}
.y10f{bottom:200.933333pt;}
.y83{bottom:202.133333pt;}
.y52{bottom:203.866667pt;}
.y140{bottom:211.600000pt;}
.y69{bottom:212.133333pt;}
.yab{bottom:212.800000pt;}
.y19e{bottom:214.266667pt;}
.y192{bottom:217.066667pt;}
.y9{bottom:219.733333pt;}
.ycc{bottom:220.266667pt;}
.y5b{bottom:220.800000pt;}
.y16a{bottom:221.466667pt;}
.ya2{bottom:222.133333pt;}
.y4e{bottom:223.066667pt;}
.y129{bottom:224.266667pt;}
.y8e{bottom:224.666667pt;}
.ybf{bottom:225.600000pt;}
.y180{bottom:227.333333pt;}
.y10e{bottom:228.533333pt;}
.y11{bottom:228.933333pt;}
.y82{bottom:229.733333pt;}
.y56{bottom:231.466667pt;}
.y13f{bottom:239.200000pt;}
.y68{bottom:239.733333pt;}
.yaa{bottom:240.400000pt;}
.y19d{bottom:241.866667pt;}
.y191{bottom:244.666667pt;}
.ycb{bottom:247.866667pt;}
.y5a{bottom:248.400000pt;}
.y169{bottom:249.066667pt;}
.ya1{bottom:249.733333pt;}
.y4d{bottom:250.666667pt;}
.y17{bottom:251.866667pt;}
.y8d{bottom:252.266667pt;}
.ybe{bottom:253.200000pt;}
.y17f{bottom:254.933333pt;}
.y10d{bottom:256.133333pt;}
.y81{bottom:257.333333pt;}
.y35{bottom:259.066667pt;}
.y128{bottom:266.800000pt;}
.y67{bottom:267.333333pt;}
.ya9{bottom:268.000000pt;}
.y190{bottom:272.266667pt;}
.yca{bottom:275.466667pt;}
.y59{bottom:276.000000pt;}
.y168{bottom:276.666667pt;}
.ya0{bottom:277.333333pt;}
.y4c{bottom:278.266667pt;}
.y8c{bottom:279.866667pt;}
.y17e{bottom:282.533333pt;}
.y10c{bottom:283.733333pt;}
.y8{bottom:284.133333pt;}
.y80{bottom:284.933333pt;}
.y157{bottom:285.866667pt;}
.y31{bottom:286.666667pt;}
.ybd{bottom:292.000000pt;}
.y10{bottom:293.333333pt;}
.y127{bottom:294.400000pt;}
.ya8{bottom:295.600000pt;}
.yc9{bottom:303.066667pt;}
.y58{bottom:303.600000pt;}
.y167{bottom:304.266667pt;}
.y66{bottom:304.933333pt;}
.y8b{bottom:307.466667pt;}
.y7f{bottom:312.533333pt;}
.y156{bottom:313.466667pt;}
.y30{bottom:314.266667pt;}
.y7{bottom:316.266667pt;}
.y19c{bottom:317.066667pt;}
.y4b{bottom:317.200000pt;}
.ybc{bottom:319.600000pt;}
.y126{bottom:322.000000pt;}
.ya7{bottom:323.200000pt;}
.yf{bottom:325.466667pt;}
.y10b{bottom:326.400000pt;}
.y18f{bottom:327.466667pt;}
.yc8{bottom:330.666667pt;}
.y57{bottom:331.200000pt;}
.y166{bottom:331.866667pt;}
.y65{bottom:332.533333pt;}
.y8a{bottom:335.066667pt;}
.y155{bottom:341.066667pt;}
.yfc{bottom:341.466667pt;}
.y2f{bottom:341.866667pt;}
.y19b{bottom:344.666667pt;}
.y4a{bottom:344.800000pt;}
.ybb{bottom:347.200000pt;}
.y125{bottom:349.600000pt;}
.y7e{bottom:350.133333pt;}
.ya6{bottom:350.800000pt;}
.y10a{bottom:354.000000pt;}
.y18e{bottom:355.066667pt;}
.yc7{bottom:358.266667pt;}
.y165{bottom:359.466667pt;}
.y64{bottom:360.133333pt;}
.y89{bottom:362.666667pt;}
.ydb{bottom:366.133333pt;}
.y154{bottom:368.666667pt;}
.yfb{bottom:369.066667pt;}
.y2e{bottom:369.466667pt;}
.y19a{bottom:372.266667pt;}
.y49{bottom:372.400000pt;}
.y17d{bottom:375.333333pt;}
.y13e{bottom:377.200000pt;}
.y7d{bottom:377.733333pt;}
.ya5{bottom:378.400000pt;}
.y16{bottom:380.666667pt;}
.y109{bottom:381.600000pt;}
.y18d{bottom:382.666667pt;}
.yba{bottom:385.866667pt;}
.y164{bottom:387.066667pt;}
.y63{bottom:387.733333pt;}
.y88{bottom:390.266667pt;}
.y124{bottom:392.266667pt;}
.yda{bottom:393.733333pt;}
.y153{bottom:396.266667pt;}
.yfa{bottom:396.666667pt;}
.y2d{bottom:397.066667pt;}
.y48{bottom:400.000000pt;}
.y17c{bottom:402.933333pt;}
.y13d{bottom:404.800000pt;}
.y7c{bottom:405.333333pt;}
.y108{bottom:409.200000pt;}
.y6{bottom:412.933333pt;}
.yb9{bottom:413.466667pt;}
.y163{bottom:414.666667pt;}
.y62{bottom:415.333333pt;}
.y87{bottom:417.866667pt;}
.y123{bottom:419.866667pt;}
.ye{bottom:422.133333pt;}
.y152{bottom:423.866667pt;}
.yf9{bottom:424.266667pt;}
.y2c{bottom:424.666667pt;}
.y18c{bottom:426.266667pt;}
.y17b{bottom:430.533333pt;}
.y13c{bottom:432.400000pt;}
.y7b{bottom:432.933333pt;}
.y107{bottom:436.800000pt;}
.yb8{bottom:441.066667pt;}
.y162{bottom:442.266667pt;}
.y61{bottom:442.933333pt;}
.y86{bottom:445.466667pt;}
.y15{bottom:446.800000pt;}
.y122{bottom:447.466667pt;}
.yd9{bottom:448.933333pt;}
.y47{bottom:450.400000pt;}
.y151{bottom:451.466667pt;}
.yf8{bottom:451.866667pt;}
.y34{bottom:452.266667pt;}
.y18b{bottom:453.866667pt;}
.y13b{bottom:460.000000pt;}
.y7a{bottom:460.533333pt;}
.y106{bottom:464.400000pt;}
.y17a{bottom:468.133333pt;}
.yb7{bottom:468.666667pt;}
.y161{bottom:469.866667pt;}
.y60{bottom:470.533333pt;}
.y121{bottom:475.066667pt;}
.yd8{bottom:476.533333pt;}
.y46{bottom:478.000000pt;}
.y5{bottom:479.066667pt;}
.yf7{bottom:479.466667pt;}
.y2b{bottom:479.866667pt;}
.y18a{bottom:481.466667pt;}
.yd{bottom:486.133333pt;}
.y13a{bottom:487.600000pt;}
.y79{bottom:488.133333pt;}
.y14{bottom:490.800000pt;}
.y179{bottom:495.733333pt;}
.yb6{bottom:496.266667pt;}
.y160{bottom:497.466667pt;}
.y5f{bottom:498.133333pt;}
.y105{bottom:501.333333pt;}
.y199{bottom:502.666667pt;}
.yd7{bottom:504.133333pt;}
.y45{bottom:505.600000pt;}
.ye2{bottom:506.666667pt;}
.y2a{bottom:507.466667pt;}
.y139{bottom:515.200000pt;}
.y78{bottom:515.733333pt;}
.yf6{bottom:516.400000pt;}
.y120{bottom:517.600000pt;}
.y4{bottom:522.933333pt;}
.y178{bottom:523.333333pt;}
.yb5{bottom:523.866667pt;}
.y15f{bottom:525.066667pt;}
.y5e{bottom:525.733333pt;}
.yc{bottom:527.600000pt;}
.y104{bottom:528.933333pt;}
.yd6{bottom:531.733333pt;}
.y13{bottom:532.133333pt;}
.y44{bottom:533.200000pt;}
.y150{bottom:534.266667pt;}
.y29{bottom:535.066667pt;}
.y189{bottom:536.666667pt;}
.y138{bottom:542.800000pt;}
.y77{bottom:543.333333pt;}
.yf5{bottom:544.000000pt;}
.yb4{bottom:551.466667pt;}
.y15e{bottom:552.666667pt;}
.y5d{bottom:553.333333pt;}
.y103{bottom:556.533333pt;}
.yd5{bottom:559.333333pt;}
.y11f{bottom:560.266667pt;}
.y43{bottom:560.800000pt;}
.yed{bottom:561.066667pt;}
.y14f{bottom:561.866667pt;}
.y28{bottom:562.666667pt;}
.y188{bottom:564.266667pt;}
.y3{bottom:564.400000pt;}
.yb{bottom:568.933333pt;}
.y137{bottom:570.400000pt;}
.yf4{bottom:571.600000pt;}
.y198{bottom:577.866667pt;}
.y177{bottom:578.533333pt;}
.yb3{bottom:579.066667pt;}
.y76{bottom:580.266667pt;}
.y5c{bottom:580.933333pt;}
.y102{bottom:584.133333pt;}
.y11e{bottom:587.866667pt;}
.y42{bottom:588.400000pt;}
.y14e{bottom:589.466667pt;}
.y27{bottom:590.266667pt;}
.yd4{bottom:596.266667pt;}
.yf3{bottom:599.200000pt;}
.yec{bottom:604.666667pt;}
.y197{bottom:605.466667pt;}
.y176{bottom:606.133333pt;}
.yb2{bottom:606.666667pt;}
.y75{bottom:607.866667pt;}
.y9f{bottom:608.533333pt;}
.y136{bottom:613.066667pt;}
.y11d{bottom:615.466667pt;}
.y41{bottom:616.000000pt;}
.y14d{bottom:617.066667pt;}
.ye1{bottom:617.466667pt;}
.y33{bottom:617.866667pt;}
.y101{bottom:621.066667pt;}
.yd3{bottom:623.866667pt;}
.yf2{bottom:626.800000pt;}
.y187{bottom:629.466667pt;}
.yeb{bottom:632.266667pt;}
.y196{bottom:633.066667pt;}
.yb1{bottom:634.266667pt;}
.y74{bottom:635.466667pt;}
.y9e{bottom:636.133333pt;}
.y135{bottom:640.666667pt;}
.y11c{bottom:643.066667pt;}
.y40{bottom:643.600000pt;}
.ye0{bottom:645.066667pt;}
.y26{bottom:645.466667pt;}
.y100{bottom:648.666667pt;}
.yf1{bottom:654.400000pt;}
.y186{bottom:657.066667pt;}
.yea{bottom:659.866667pt;}
.y195{bottom:660.666667pt;}
.yb0{bottom:661.866667pt;}
.y73{bottom:663.066667pt;}
.y9d{bottom:663.733333pt;}
.y134{bottom:668.266667pt;}
.y11b{bottom:670.666667pt;}
.y3f{bottom:671.200000pt;}
.y175{bottom:671.333333pt;}
.y14c{bottom:672.266667pt;}
.ydf{bottom:672.666667pt;}
.y25{bottom:673.066667pt;}
.yff{bottom:676.266667pt;}
.yd2{bottom:679.066667pt;}
.yf0{bottom:682.000000pt;}
.yc6{bottom:689.466667pt;}
.y72{bottom:690.666667pt;}
.y9c{bottom:691.333333pt;}
.y133{bottom:695.866667pt;}
.y11a{bottom:698.266667pt;}
.y174{bottom:698.933333pt;}
.y14b{bottom:699.866667pt;}
.y24{bottom:700.666667pt;}
.yfe{bottom:703.866667pt;}
.yd1{bottom:706.666667pt;}
.yde{bottom:709.600000pt;}
.y185{bottom:712.266667pt;}
.yc5{bottom:717.066667pt;}
.y71{bottom:718.266667pt;}
.y9b{bottom:718.933333pt;}
.y3e{bottom:721.600000pt;}
.y132{bottom:723.466667pt;}
.y119{bottom:725.866667pt;}
.y14a{bottom:727.466667pt;}
.y23{bottom:728.266667pt;}
.yfd{bottom:731.466667pt;}
.yd0{bottom:734.266667pt;}
.y194{bottom:735.866667pt;}
.ydd{bottom:737.200000pt;}
.y184{bottom:739.866667pt;}
.y1a3{bottom:743.466667pt;}
.yc4{bottom:744.666667pt;}
.y70{bottom:745.866667pt;}
.y9a{bottom:746.533333pt;}
.y3d{bottom:749.200000pt;}
.y131{bottom:751.066667pt;}
.y118{bottom:753.466667pt;}
.y173{bottom:754.133333pt;}
.y149{bottom:755.066667pt;}
.y22{bottom:755.866667pt;}
.y193{bottom:763.466667pt;}
.ydc{bottom:764.800000pt;}
.y1a2{bottom:771.066667pt;}
.yc3{bottom:772.266667pt;}
.y6f{bottom:773.466667pt;}
.y99{bottom:774.133333pt;}
.y3c{bottom:776.800000pt;}
.y117{bottom:781.066667pt;}
.y172{bottom:781.733333pt;}
.y148{bottom:782.666667pt;}
.y21{bottom:783.466667pt;}
.y130{bottom:793.600000pt;}
.y183{bottom:795.066667pt;}
.y1a1{bottom:798.666667pt;}
.yc2{bottom:799.866667pt;}
.y6e{bottom:801.066667pt;}
.y98{bottom:801.733333pt;}
.y3b{bottom:804.400000pt;}
.y116{bottom:808.666667pt;}
.y171{bottom:809.333333pt;}
.y20{bottom:811.066667pt;}
.y182{bottom:822.666667pt;}
.y6d{bottom:828.666667pt;}
.y97{bottom:829.333333pt;}
.y3a{bottom:832.000000pt;}
.y12f{bottom:836.266667pt;}
.y1f{bottom:838.666667pt;}
.y115{bottom:851.200000pt;}
.y15d{bottom:856.266667pt;}
.y96{bottom:856.933333pt;}
.y12e{bottom:863.866667pt;}
.y170{bottom:864.533333pt;}
.y147{bottom:865.866667pt;}
.y1e{bottom:866.266667pt;}
.y1a0{bottom:873.866667pt;}
.ye9{bottom:877.866667pt;}
.y114{bottom:878.800000pt;}
.y39{bottom:882.400000pt;}
.y15c{bottom:883.866667pt;}
.y95{bottom:884.533333pt;}
.y16f{bottom:892.133333pt;}
.y146{bottom:893.466667pt;}
.y1d{bottom:893.866667pt;}
.y19f{bottom:901.466667pt;}
.ye8{bottom:905.466667pt;}
.y113{bottom:906.400000pt;}
.y38{bottom:910.000000pt;}
.y15b{bottom:911.466667pt;}
.y94{bottom:912.133333pt;}
.y145{bottom:921.066667pt;}
.y1c{bottom:921.466667pt;}
.ye7{bottom:933.066667pt;}
.y12d{bottom:934.000000pt;}
.y37{bottom:937.600000pt;}
.y15a{bottom:939.066667pt;}
.y93{bottom:939.733333pt;}
.y16e{bottom:947.333333pt;}
.y144{bottom:948.666667pt;}
.y1b{bottom:949.066667pt;}
.ye6{bottom:960.666667pt;}
.y12{bottom:964.933333pt;}
.y36{bottom:965.200000pt;}
.y159{bottom:966.666667pt;}
.y92{bottom:967.333333pt;}
.y1a{bottom:976.666667pt;}
.y158{bottom:994.266667pt;}
.y2{bottom:997.066667pt;}
.y32{bottom:1004.266667pt;}
.y1{bottom:1029.333333pt;}
.y19{bottom:1031.866667pt;}
.h7{height:45.062500pt;}
.hd{height:46.796875pt;}
.he{height:46.927083pt;}
.h9{height:56.156250pt;}
.ha{height:56.312500pt;}
.hb{height:56.843750pt;}
.hc{height:57.824479pt;}
.h8{height:65.015625pt;}
.h3{height:65.515625pt;}
.h4{height:66.317708pt;}
.h6{height:72.239583pt;}
.h5{height:85.265625pt;}
.h2{height:1122.400000pt;}
.h0{height:1122.481890pt;}
.h1{height:1122.666667pt;}
.w2{width:793.600000pt;}
.w0{width:793.700787pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x9{left:75.733333pt;}
.x11{left:99.733333pt;}
.xf{left:113.600000pt;}
.xd{left:123.733333pt;}
.x3{left:127.600000pt;}
.x10{left:133.733333pt;}
.xe{left:171.733333pt;}
.xb{left:208.000000pt;}
.x2{left:226.933333pt;}
.x7{left:248.800000pt;}
.x6{left:257.333333pt;}
.xa{left:270.933333pt;}
.x1{left:289.866667pt;}
.x5{left:295.333333pt;}
.x8{left:315.866667pt;}
.xc{left:341.066667pt;}
.x4{left:412.666667pt;}
}




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