
    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_2e1b68dec7202e830be0addc.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.914062;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_a3559c1921c1d766b44fadae.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_0d229b855182771ff261268b.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.003906;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_9ab743f70f3104b0d8bda2e8.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.914062;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_438920eacdfe9b2dbde24fac.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.944824;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_ad7cea75108a024d4ec2458a.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_cf5b54b838ee9f69dcdff9c4.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.739746;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;}
.ls13{letter-spacing:-1.260000px;}
.ls11{letter-spacing:-0.540000px;}
.ls6{letter-spacing:-0.106800px;}
.ls3{letter-spacing:0.000000px;}
.ls8{letter-spacing:0.053280px;}
.ls7{letter-spacing:0.106800px;}
.ls2{letter-spacing:0.119520px;}
.ls1{letter-spacing:0.180000px;}
.ls4{letter-spacing:0.259920px;}
.ls0{letter-spacing:0.360000px;}
.lsd{letter-spacing:0.900000px;}
.lsb{letter-spacing:3.060000px;}
.lse{letter-spacing:4.500000px;}
.ls10{letter-spacing:5.220000px;}
.lsf{letter-spacing:6.660000px;}
.lsc{letter-spacing:7.380000px;}
.lsa{letter-spacing:10.380000px;}
.ls5{letter-spacing:15.300000px;}
.ls12{letter-spacing:21.546720px;}
.ls9{letter-spacing:46.002720px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3{word-spacing:-16.560000px;}
.ws1{word-spacing:-15.300000px;}
.ws7{word-spacing:-15.046800px;}
.ws6{word-spacing:-14.993280px;}
.ws0{word-spacing:-14.940000px;}
.ws5{word-spacing:-14.833200px;}
.ws8{word-spacing:-13.505760px;}
.ws2{word-spacing:-13.500000px;}
.ws4{word-spacing:0.000000px;}
._1e{margin-left:-8.197440px;}
._7{margin-left:-4.302720px;}
._d{margin-left:-2.537760px;}
._1{margin-left:-1.321920px;}
._0{width:1.322400px;}
._6{width:3.227040px;}
._2{width:4.245600px;}
._9{width:5.443680px;}
._f{width:6.634320px;}
._e{width:7.801200px;}
._b{width:9.550800px;}
._a{width:11.115360px;}
._c{width:12.473520px;}
._19{width:13.565520px;}
._8{width:15.979680px;}
._17{width:17.418480px;}
._16{width:18.996000px;}
._15{width:20.139120px;}
._10{width:22.111200px;}
._18{width:23.127120px;}
._11{width:24.374400px;}
._12{width:25.465440px;}
._1b{width:26.763840px;}
._1a{width:28.629360px;}
._14{width:29.760480px;}
._13{width:30.836160px;}
._1c{width:32.979840px;}
._1d{width:34.190400px;}
._5{width:85.656000px;}
._4{width:687.306000px;}
._3{width:748.236000px;}
.fc4{color:transparent;}
.fc3{color:rgb(5,99,193);}
.fc2{color:rgb(0,112,192);}
.fc1{color:rgb(255,0,0);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:54.000000px;}
.fs0{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs2{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.yb4{bottom:3.240000px;}
.y76{bottom:4.500000px;}
.y95{bottom:4.680000px;}
.y78{bottom:13.860000px;}
.yd3{bottom:17.280000px;}
.y79{bottom:23.220000px;}
.y93{bottom:23.265000px;}
.yb{bottom:36.720000px;}
.ya{bottom:55.260000px;}
.y9{bottom:70.776000px;}
.y178{bottom:115.236000px;}
.y195{bottom:117.576000px;}
.y120{bottom:118.116000px;}
.y14b{bottom:121.176000px;}
.y6b{bottom:126.396000px;}
.y90{bottom:126.936000px;}
.y3c{bottom:127.656000px;}
.yfc{bottom:128.736000px;}
.y177{bottom:132.516000px;}
.y194{bottom:134.676000px;}
.y14a{bottom:138.456000px;}
.ycc{bottom:139.896000px;}
.y6a{bottom:144.936000px;}
.y8f{bottom:145.656000px;}
.yfb{bottom:146.016000px;}
.y3b{bottom:146.376000px;}
.y11f{bottom:147.456000px;}
.y176{bottom:149.796000px;}
.y193{bottom:151.950000px;}
.y149{bottom:155.730000px;}
.ycb{bottom:157.170000px;}
.yfa{bottom:163.290000px;}
.y8e{bottom:164.190000px;}
.y1af{bottom:164.730000px;}
.y3a{bottom:164.910000px;}
.y175{bottom:166.890000px;}
.y192{bottom:169.230000px;}
.y148{bottom:173.010000px;}
.yca{bottom:174.450000px;}
.y69{bottom:175.530000px;}
.y11e{bottom:176.610000px;}
.yf9{bottom:180.390000px;}
.y8d{bottom:182.730000px;}
.y39{bottom:183.630000px;}
.y174{bottom:184.170000px;}
.y191{bottom:186.510000px;}
.y147{bottom:190.290000px;}
.yc9{bottom:191.730000px;}
.y11d{bottom:193.890000px;}
.y68{bottom:194.250000px;}
.yf8{bottom:197.670000px;}
.y173{bottom:201.450000px;}
.y38{bottom:202.170000px;}
.y190{bottom:203.790000px;}
.yc8{bottom:208.830000px;}
.y11c{bottom:211.170000px;}
.y67{bottom:212.790000px;}
.y8c{bottom:213.510000px;}
.y146{bottom:219.450000px;}
.y37{bottom:220.710000px;}
.y18f{bottom:220.890000px;}
.yc7{bottom:226.110000px;}
.yf7{bottom:227.010000px;}
.y172{bottom:230.610000px;}
.y66{bottom:231.510000px;}
.y145{bottom:236.730000px;}
.y18e{bottom:238.170000px;}
.y11b{bottom:240.510000px;}
.y8b{bottom:244.110000px;}
.yf6{bottom:244.290000px;}
.y171{bottom:247.890000px;}
.y65{bottom:250.050000px;}
.y36{bottom:251.310000px;}
.y144{bottom:254.010000px;}
.y18d{bottom:255.450000px;}
.yc6{bottom:261.750000px;}
.y170{bottom:265.170000px;}
.y64{bottom:268.590000px;}
.y11a{bottom:269.670000px;}
.y35{bottom:270.030000px;}
.y143{bottom:271.290000px;}
.y18c{bottom:272.730000px;}
.yf5{bottom:273.450000px;}
.y8a{bottom:274.710000px;}
.yc5{bottom:279.030000px;}
.yad{bottom:280.470000px;}
.y16f{bottom:282.450000px;}
.y119{bottom:286.950000px;}
.y142{bottom:288.390000px;}
.y34{bottom:288.570000px;}
.y18b{bottom:290.010000px;}
.yc4{bottom:296.130000px;}
.y63{bottom:299.190000px;}
.y16e{bottom:299.730000px;}
.yf4{bottom:302.610000px;}
.y89{bottom:305.310000px;}
.y141{bottom:305.670000px;}
.y33{bottom:307.290000px;}
.yac{bottom:311.070000px;}
.yc3{bottom:313.410000px;}
.y118{bottom:316.110000px;}
.y16d{bottom:317.010000px;}
.y62{bottom:317.910000px;}
.yf3{bottom:319.890000px;}
.y140{bottom:322.950000px;}
.y18a{bottom:324.390000px;}
.y32{bottom:325.830000px;}
.yab{bottom:329.790000px;}
.yc2{bottom:330.690000px;}
.y117{bottom:333.390000px;}
.y16c{bottom:334.290000px;}
.y88{bottom:335.910000px;}
.y61{bottom:336.495000px;}
.yf2{bottom:337.215000px;}
.y189{bottom:341.715000px;}
.y31{bottom:344.415000px;}
.y1ae{bottom:345.495000px;}
.yc1{bottom:348.015000px;}
.yaa{bottom:348.375000px;}
.y116{bottom:350.715000px;}
.y13f{bottom:352.155000px;}
.y87{bottom:354.495000px;}
.y60{bottom:355.215000px;}
.y188{bottom:358.995000px;}
.y1ad{bottom:362.775000px;}
.y16b{bottom:363.495000px;}
.y13e{bottom:369.435000px;}
.yf1{bottom:371.775000px;}
.y86{bottom:373.215000px;}
.y5f{bottom:373.755000px;}
.y30{bottom:375.195000px;}
.y187{bottom:376.275000px;}
.y16a{bottom:378.255000px;}
.yc0{bottom:378.615000px;}
.ya9{bottom:378.975000px;}
.y115{bottom:380.055000px;}
.y13d{bottom:386.715000px;}
.yf0{bottom:389.055000px;}
.y85{bottom:391.755000px;}
.y1ac{bottom:391.935000px;}
.y5e{bottom:392.475000px;}
.y186{bottom:393.555000px;}
.y2f{bottom:393.735000px;}
.y169{bottom:396.255000px;}
.ybf{bottom:397.155000px;}
.y114{bottom:397.335000px;}
.ya8{bottom:397.695000px;}
.y13c{bottom:403.995000px;}
.yef{bottom:406.335000px;}
.y1ab{bottom:409.215000px;}
.y84{bottom:410.295000px;}
.y185{bottom:410.835000px;}
.y5d{bottom:411.015000px;}
.y2e{bottom:412.275000px;}
.y168{bottom:414.255000px;}
.y113{bottom:414.435000px;}
.ybe{bottom:415.875000px;}
.ya7{bottom:416.235000px;}
.y13b{bottom:421.275000px;}
.y184{bottom:427.935000px;}
.y5c{bottom:429.555000px;}
.y2d{bottom:430.995000px;}
.y167{bottom:432.255000px;}
.ybd{bottom:434.415000px;}
.ya6{bottom:434.775000px;}
.yee{bottom:435.495000px;}
.y1aa{bottom:438.375000px;}
.y13a{bottom:438.555000px;}
.y83{bottom:441.075000px;}
.y112{bottom:443.775000px;}
.y5b{bottom:448.275000px;}
.y2c{bottom:449.535000px;}
.y166{bottom:450.255000px;}
.yed{bottom:452.775000px;}
.ybc{bottom:452.955000px;}
.ya5{bottom:453.495000px;}
.y139{bottom:455.835000px;}
.y183{bottom:457.275000px;}
.y82{bottom:459.615000px;}
.y1a9{bottom:467.715000px;}
.y2b{bottom:468.255000px;}
.yec{bottom:470.055000px;}
.ybb{bottom:471.675000px;}
.ya4{bottom:472.035000px;}
.y111{bottom:472.935000px;}
.y182{bottom:474.555000px;}
.y81{bottom:478.155000px;}
.y5a{bottom:478.875000px;}
.y1a8{bottom:484.995000px;}
.y165{bottom:486.255000px;}
.y2a{bottom:486.795000px;}
.yeb{bottom:487.335000px;}
.y181{bottom:491.655000px;}
.y80{bottom:496.875000px;}
.y59{bottom:497.415000px;}
.yba{bottom:502.275000px;}
.ya3{bottom:502.635000px;}
.y29{bottom:504.075000px;}
.y164{bottom:504.255000px;}
.yea{bottom:504.435000px;}
.y180{bottom:508.935000px;}
.y1a7{bottom:514.155000px;}
.y7f{bottom:515.415000px;}
.y58{bottom:516.135000px;}
.yb9{bottom:517.035000px;}
.y110{bottom:519.555000px;}
.y28{bottom:521.355000px;}
.ye9{bottom:521.715000px;}
.y163{bottom:522.255000px;}
.y17f{bottom:526.215000px;}
.y7e{bottom:534.135000px;}
.y57{bottom:534.675000px;}
.yb8{bottom:535.035000px;}
.y10f{bottom:536.655000px;}
.ya2{bottom:539.895000px;}
.y27{bottom:542.595000px;}
.y1a6{bottom:543.495000px;}
.ye8{bottom:550.875000px;}
.yb7{bottom:553.035000px;}
.y56{bottom:553.215000px;}
.y138{bottom:553.935000px;}
.y162{bottom:555.375000px;}
.ya1{bottom:558.615000px;}
.y1a5{bottom:560.775000px;}
.y26{bottom:561.135000px;}
.y7d{bottom:564.735000px;}
.y10e{bottom:565.995000px;}
.ye7{bottom:568.155000px;}
.yb6{bottom:571.035000px;}
.y137{bottom:571.215000px;}
.y55{bottom:571.935000px;}
.y161{bottom:572.655000px;}
.ya0{bottom:577.155000px;}
.y7c{bottom:579.495000px;}
.y25{bottom:579.855000px;}
.y10d{bottom:583.275000px;}
.ye6{bottom:585.435000px;}
.y136{bottom:588.495000px;}
.yb5{bottom:589.035000px;}
.y160{bottom:589.935000px;}
.y54{bottom:590.475000px;}
.y24{bottom:598.395000px;}
.y10c{bottom:600.555000px;}
.ye5{bottom:602.715000px;}
.y135{bottom:605.805000px;}
.yb3{bottom:607.065000px;}
.y17e{bottom:607.245000px;}
.y9f{bottom:607.785000px;}
.y53{bottom:609.225000px;}
.y23{bottom:616.965000px;}
.y7b{bottom:617.505000px;}
.y15f{bottom:619.305000px;}
.ye4{bottom:620.025000px;}
.y134{bottom:623.085000px;}
.y17d{bottom:624.525000px;}
.y9e{bottom:626.505000px;}
.y52{bottom:627.765000px;}
.y10b{bottom:629.745000px;}
.y22{bottom:635.685000px;}
.y1a4{bottom:636.405000px;}
.y15e{bottom:636.585000px;}
.ye3{bottom:637.305000px;}
.y133{bottom:640.185000px;}
.yb2{bottom:641.625000px;}
.y9d{bottom:645.045000px;}
.y51{bottom:646.485000px;}
.y10a{bottom:647.025000px;}
.y15d{bottom:653.685000px;}
.y21{bottom:654.225000px;}
.ye2{bottom:654.585000px;}
.y7a{bottom:655.485000px;}
.y132{bottom:657.465000px;}
.yb1{bottom:660.345000px;}
.y109{bottom:664.305000px;}
.y50{bottom:665.025000px;}
.y15c{bottom:670.965000px;}
.ye1{bottom:671.685000px;}
.y131{bottom:672.225000px;}
.y20{bottom:672.945000px;}
.y9c{bottom:675.645000px;}
.yb0{bottom:678.885000px;}
.y1a3{bottom:683.025000px;}
.y4f{bottom:683.565000px;}
.y15b{bottom:688.245000px;}
.y130{bottom:690.225000px;}
.y1f{bottom:691.485000px;}
.y77{bottom:693.465000px;}
.y9b{bottom:694.185000px;}
.yaf{bottom:697.425000px;}
.y1a2{bottom:700.305000px;}
.ye0{bottom:701.025000px;}
.y4e{bottom:702.285000px;}
.y15a{bottom:705.525000px;}
.y12f{bottom:708.225000px;}
.y1e{bottom:710.025000px;}
.y108{bottom:710.745000px;}
.y9a{bottom:712.905000px;}
.ydf{bottom:715.785000px;}
.y4d{bottom:719.565000px;}
.y159{bottom:722.805000px;}
.y12e{bottom:726.225000px;}
.yae{bottom:728.025000px;}
.y1d{bottom:728.745000px;}
.y1a1{bottom:729.465000px;}
.y75{bottom:731.445000px;}
.yde{bottom:733.785000px;}
.y12d{bottom:744.225000px;}
.y107{bottom:745.305000px;}
.y1a0{bottom:746.745000px;}
.y1c{bottom:747.285000px;}
.y4c{bottom:750.165000px;}
.ydd{bottom:751.785000px;}
.y158{bottom:751.965000px;}
.y99{bottom:762.045000px;}
.y12c{bottom:762.225000px;}
.y1b{bottom:766.005000px;}
.y74{bottom:767.265000px;}
.y4b{bottom:768.705000px;}
.y157{bottom:769.245000px;}
.ydc{bottom:769.785000px;}
.y106{bottom:774.465000px;}
.y19f{bottom:775.905000px;}
.y98{bottom:776.805000px;}
.y12b{bottom:780.225000px;}
.y1a{bottom:784.545000px;}
.y73{bottom:785.985000px;}
.y156{bottom:786.525000px;}
.y4a{bottom:787.245000px;}
.ydb{bottom:787.785000px;}
.y105{bottom:791.745000px;}
.y19e{bottom:793.185000px;}
.y97{bottom:796.245000px;}
.y12a{bottom:798.225000px;}
.y19{bottom:803.085000px;}
.y155{bottom:803.805000px;}
.y72{bottom:804.525000px;}
.yda{bottom:805.785000px;}
.y49{bottom:805.965000px;}
.y104{bottom:809.025000px;}
.y19d{bottom:810.465000px;}
.y96{bottom:815.685000px;}
.y154{bottom:821.085000px;}
.y18{bottom:821.805000px;}
.y71{bottom:823.245000px;}
.yd9{bottom:823.785000px;}
.y48{bottom:824.505000px;}
.y103{bottom:826.305000px;}
.y19c{bottom:827.745000px;}
.y129{bottom:831.525000px;}
.y94{bottom:834.945000px;}
.y153{bottom:838.185000px;}
.y17{bottom:840.345000px;}
.yd8{bottom:841.785000px;}
.y47{bottom:843.225000px;}
.y102{bottom:843.585000px;}
.y19b{bottom:845.025000px;}
.y128{bottom:848.805000px;}
.y17c{bottom:850.245000px;}
.y70{bottom:853.845000px;}
.y92{bottom:854.385000px;}
.y152{bottom:855.465000px;}
.y16{bottom:858.705000px;}
.yd7{bottom:859.785000px;}
.y46{bottom:861.765000px;}
.y19a{bottom:862.305000px;}
.y127{bottom:865.905000px;}
.y17b{bottom:867.525000px;}
.y6f{bottom:872.430000px;}
.y101{bottom:872.790000px;}
.y15{bottom:876.570000px;}
.yd6{bottom:877.830000px;}
.y45{bottom:879.090000px;}
.y199{bottom:879.630000px;}
.y126{bottom:883.230000px;}
.y151{bottom:884.670000px;}
.y17a{bottom:884.850000px;}
.y100{bottom:890.070000px;}
.y6e{bottom:891.150000px;}
.y91{bottom:892.410000px;}
.y14{bottom:895.470000px;}
.yd5{bottom:895.830000px;}
.y198{bottom:896.730000px;}
.y125{bottom:900.510000px;}
.y150{bottom:901.950000px;}
.y44{bottom:909.690000px;}
.yd4{bottom:913.830000px;}
.y197{bottom:914.010000px;}
.y13{bottom:914.550000px;}
.yff{bottom:919.230000px;}
.y43{bottom:928.230000px;}
.y124{bottom:929.670000px;}
.y196{bottom:931.290000px;}
.yd2{bottom:931.830000px;}
.y12{bottom:933.450000px;}
.y14f{bottom:936.510000px;}
.y42{bottom:946.950000px;}
.yfe{bottom:948.570000px;}
.yd1{bottom:949.830000px;}
.y11{bottom:952.350000px;}
.y14e{bottom:953.790000px;}
.y123{bottom:964.230000px;}
.y41{bottom:965.490000px;}
.y179{bottom:965.670000px;}
.yfd{bottom:965.850000px;}
.y14d{bottom:971.070000px;}
.y10{bottom:971.430000px;}
.y6d{bottom:977.550000px;}
.yd0{bottom:982.950000px;}
.y40{bottom:984.210000px;}
.y14c{bottom:988.350000px;}
.yf{bottom:990.330000px;}
.y122{bottom:993.570000px;}
.y6c{bottom:996.090000px;}
.ycf{bottom:1000.230000px;}
.ye{bottom:1009.410000px;}
.y3f{bottom:1014.810000px;}
.yce{bottom:1017.510000px;}
.y121{bottom:1022.730000px;}
.yd{bottom:1028.670000px;}
.y3e{bottom:1033.350000px;}
.ycd{bottom:1034.790000px;}
.yc{bottom:1049.370000px;}
.y3d{bottom:1052.070000px;}
.y8{bottom:1070.610000px;}
.y7{bottom:1089.150000px;}
.y6{bottom:1104.990000px;}
.y5{bottom:1122.990000px;}
.y4{bottom:1139.760000px;}
.y3{bottom:1180.620000px;}
.y2{bottom:1199.160000px;}
.y1{bottom:1216.440000px;}
.hf{height:17.280000px;}
.h10{height:17.316000px;}
.h9{height:18.540000px;}
.hd{height:18.720000px;}
.ha{height:37.260000px;}
.hb{height:37.296000px;}
.h6{height:37.705078px;}
.h2{height:41.726953px;}
.h5{height:42.164648px;}
.hc{height:43.302656px;}
.h12{height:43.506914px;}
.h3{height:46.251562px;}
.h8{height:46.736719px;}
.he{height:49.255313px;}
.h4{height:50.800781px;}
.h11{height:59.439023px;}
.h7{height:65.884219px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w7{width:50.580000px;}
.we{width:56.520000px;}
.wd{width:73.800000px;}
.wa{width:74.916000px;}
.wb{width:83.700000px;}
.w11{width:83.736000px;}
.w6{width:134.280000px;}
.w3{width:154.260000px;}
.w9{width:170.820000px;}
.wc{width:184.170000px;}
.w5{width:195.735000px;}
.w4{width:206.130000px;}
.wf{width:325.515000px;}
.w10{width:364.395000px;}
.w8{width:641.265000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x19{left:7.740000px;}
.x22{left:16.230000px;}
.x1c{left:17.280000px;}
.x18{left:19.980000px;}
.x30{left:22.140000px;}
.x12{left:23.580000px;}
.x24{left:24.660000px;}
.x25{left:26.130000px;}
.x32{left:28.260000px;}
.x27{left:29.910000px;}
.x2e{left:32.580000px;}
.x26{left:34.380000px;}
.x31{left:36.720000px;}
.x28{left:37.980000px;}
.x16{left:48.810000px;}
.x14{left:60.345000px;}
.x20{left:63.360000px;}
.x29{left:69.480000px;}
.x11{left:100.296000px;}
.x1{left:108.035987px;}
.x3a{left:119.385000px;}
.x2{left:123.155987px;}
.x34{left:135.035987px;}
.x1b{left:151.590000px;}
.x4{left:157.169987px;}
.x35{left:162.029987px;}
.x7{left:175.349987px;}
.x39{left:222.150000px;}
.x33{left:225.749987px;}
.x36{left:241.590000px;}
.x13{left:255.270000px;}
.xe{left:257.249987px;}
.x38{left:271.289987px;}
.x1f{left:281.235000px;}
.xc{left:283.574987px;}
.x2c{left:288.615000px;}
.x2a{left:303.554987px;}
.x1d{left:308.234987px;}
.x1a{left:310.034987px;}
.xb{left:317.054987px;}
.x8{left:333.974987px;}
.x1e{left:340.454987px;}
.x2b{left:346.394987px;}
.x3c{left:362.414987px;}
.xd{left:373.574987px;}
.xa{left:384.914987px;}
.xf{left:386.534987px;}
.x6{left:396.434987px;}
.x10{left:398.954987px;}
.x5{left:412.274987px;}
.x9{left:446.474987px;}
.x21{left:452.775000px;}
.x15{left:462.135000px;}
.x2d{left:473.505000px;}
.x3{left:518.504987px;}
.x23{left:528.405000px;}
.x2f{left:548.025000px;}
.x37{left:567.825000px;}
.x3b{left:587.265000px;}
.x17{left:658.590000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls13{letter-spacing:-1.120000pt;}
.ls11{letter-spacing:-0.480000pt;}
.ls6{letter-spacing:-0.094933pt;}
.ls3{letter-spacing:0.000000pt;}
.ls8{letter-spacing:0.047360pt;}
.ls7{letter-spacing:0.094933pt;}
.ls2{letter-spacing:0.106240pt;}
.ls1{letter-spacing:0.160000pt;}
.ls4{letter-spacing:0.231040pt;}
.ls0{letter-spacing:0.320000pt;}
.lsd{letter-spacing:0.800000pt;}
.lsb{letter-spacing:2.720000pt;}
.lse{letter-spacing:4.000000pt;}
.ls10{letter-spacing:4.640000pt;}
.lsf{letter-spacing:5.920000pt;}
.lsc{letter-spacing:6.560000pt;}
.lsa{letter-spacing:9.226667pt;}
.ls5{letter-spacing:13.600000pt;}
.ls12{letter-spacing:19.152640pt;}
.ls9{letter-spacing:40.891307pt;}
.ws3{word-spacing:-14.720000pt;}
.ws1{word-spacing:-13.600000pt;}
.ws7{word-spacing:-13.374933pt;}
.ws6{word-spacing:-13.327360pt;}
.ws0{word-spacing:-13.280000pt;}
.ws5{word-spacing:-13.185067pt;}
.ws8{word-spacing:-12.005120pt;}
.ws2{word-spacing:-12.000000pt;}
.ws4{word-spacing:0.000000pt;}
._1e{margin-left:-7.286613pt;}
._7{margin-left:-3.824640pt;}
._d{margin-left:-2.255787pt;}
._1{margin-left:-1.175040pt;}
._0{width:1.175467pt;}
._6{width:2.868480pt;}
._2{width:3.773867pt;}
._9{width:4.838827pt;}
._f{width:5.897173pt;}
._e{width:6.934400pt;}
._b{width:8.489600pt;}
._a{width:9.880320pt;}
._c{width:11.087573pt;}
._19{width:12.058240pt;}
._8{width:14.204160pt;}
._17{width:15.483093pt;}
._16{width:16.885333pt;}
._15{width:17.901440pt;}
._10{width:19.654400pt;}
._18{width:20.557440pt;}
._11{width:21.666133pt;}
._12{width:22.635947pt;}
._1b{width:23.790080pt;}
._1a{width:25.448320pt;}
._14{width:26.453760pt;}
._13{width:27.409920pt;}
._1c{width:29.315413pt;}
._1d{width:30.391467pt;}
._5{width:76.138667pt;}
._4{width:610.938667pt;}
._3{width:665.098667pt;}
.fs3{font-size:48.000000pt;}
.fs0{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs2{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.yb4{bottom:2.880000pt;}
.y76{bottom:4.000000pt;}
.y95{bottom:4.160000pt;}
.y78{bottom:12.320000pt;}
.yd3{bottom:15.360000pt;}
.y79{bottom:20.640000pt;}
.y93{bottom:20.680000pt;}
.yb{bottom:32.640000pt;}
.ya{bottom:49.120000pt;}
.y9{bottom:62.912000pt;}
.y178{bottom:102.432000pt;}
.y195{bottom:104.512000pt;}
.y120{bottom:104.992000pt;}
.y14b{bottom:107.712000pt;}
.y6b{bottom:112.352000pt;}
.y90{bottom:112.832000pt;}
.y3c{bottom:113.472000pt;}
.yfc{bottom:114.432000pt;}
.y177{bottom:117.792000pt;}
.y194{bottom:119.712000pt;}
.y14a{bottom:123.072000pt;}
.ycc{bottom:124.352000pt;}
.y6a{bottom:128.832000pt;}
.y8f{bottom:129.472000pt;}
.yfb{bottom:129.792000pt;}
.y3b{bottom:130.112000pt;}
.y11f{bottom:131.072000pt;}
.y176{bottom:133.152000pt;}
.y193{bottom:135.066667pt;}
.y149{bottom:138.426667pt;}
.ycb{bottom:139.706667pt;}
.yfa{bottom:145.146667pt;}
.y8e{bottom:145.946667pt;}
.y1af{bottom:146.426667pt;}
.y3a{bottom:146.586667pt;}
.y175{bottom:148.346667pt;}
.y192{bottom:150.426667pt;}
.y148{bottom:153.786667pt;}
.yca{bottom:155.066667pt;}
.y69{bottom:156.026667pt;}
.y11e{bottom:156.986667pt;}
.yf9{bottom:160.346667pt;}
.y8d{bottom:162.426667pt;}
.y39{bottom:163.226667pt;}
.y174{bottom:163.706667pt;}
.y191{bottom:165.786667pt;}
.y147{bottom:169.146667pt;}
.yc9{bottom:170.426667pt;}
.y11d{bottom:172.346667pt;}
.y68{bottom:172.666667pt;}
.yf8{bottom:175.706667pt;}
.y173{bottom:179.066667pt;}
.y38{bottom:179.706667pt;}
.y190{bottom:181.146667pt;}
.yc8{bottom:185.626667pt;}
.y11c{bottom:187.706667pt;}
.y67{bottom:189.146667pt;}
.y8c{bottom:189.786667pt;}
.y146{bottom:195.066667pt;}
.y37{bottom:196.186667pt;}
.y18f{bottom:196.346667pt;}
.yc7{bottom:200.986667pt;}
.yf7{bottom:201.786667pt;}
.y172{bottom:204.986667pt;}
.y66{bottom:205.786667pt;}
.y145{bottom:210.426667pt;}
.y18e{bottom:211.706667pt;}
.y11b{bottom:213.786667pt;}
.y8b{bottom:216.986667pt;}
.yf6{bottom:217.146667pt;}
.y171{bottom:220.346667pt;}
.y65{bottom:222.266667pt;}
.y36{bottom:223.386667pt;}
.y144{bottom:225.786667pt;}
.y18d{bottom:227.066667pt;}
.yc6{bottom:232.666667pt;}
.y170{bottom:235.706667pt;}
.y64{bottom:238.746667pt;}
.y11a{bottom:239.706667pt;}
.y35{bottom:240.026667pt;}
.y143{bottom:241.146667pt;}
.y18c{bottom:242.426667pt;}
.yf5{bottom:243.066667pt;}
.y8a{bottom:244.186667pt;}
.yc5{bottom:248.026667pt;}
.yad{bottom:249.306667pt;}
.y16f{bottom:251.066667pt;}
.y119{bottom:255.066667pt;}
.y142{bottom:256.346667pt;}
.y34{bottom:256.506667pt;}
.y18b{bottom:257.786667pt;}
.yc4{bottom:263.226667pt;}
.y63{bottom:265.946667pt;}
.y16e{bottom:266.426667pt;}
.yf4{bottom:268.986667pt;}
.y89{bottom:271.386667pt;}
.y141{bottom:271.706667pt;}
.y33{bottom:273.146667pt;}
.yac{bottom:276.506667pt;}
.yc3{bottom:278.586667pt;}
.y118{bottom:280.986667pt;}
.y16d{bottom:281.786667pt;}
.y62{bottom:282.586667pt;}
.yf3{bottom:284.346667pt;}
.y140{bottom:287.066667pt;}
.y18a{bottom:288.346667pt;}
.y32{bottom:289.626667pt;}
.yab{bottom:293.146667pt;}
.yc2{bottom:293.946667pt;}
.y117{bottom:296.346667pt;}
.y16c{bottom:297.146667pt;}
.y88{bottom:298.586667pt;}
.y61{bottom:299.106667pt;}
.yf2{bottom:299.746667pt;}
.y189{bottom:303.746667pt;}
.y31{bottom:306.146667pt;}
.y1ae{bottom:307.106667pt;}
.yc1{bottom:309.346667pt;}
.yaa{bottom:309.666667pt;}
.y116{bottom:311.746667pt;}
.y13f{bottom:313.026667pt;}
.y87{bottom:315.106667pt;}
.y60{bottom:315.746667pt;}
.y188{bottom:319.106667pt;}
.y1ad{bottom:322.466667pt;}
.y16b{bottom:323.106667pt;}
.y13e{bottom:328.386667pt;}
.yf1{bottom:330.466667pt;}
.y86{bottom:331.746667pt;}
.y5f{bottom:332.226667pt;}
.y30{bottom:333.506667pt;}
.y187{bottom:334.466667pt;}
.y16a{bottom:336.226667pt;}
.yc0{bottom:336.546667pt;}
.ya9{bottom:336.866667pt;}
.y115{bottom:337.826667pt;}
.y13d{bottom:343.746667pt;}
.yf0{bottom:345.826667pt;}
.y85{bottom:348.226667pt;}
.y1ac{bottom:348.386667pt;}
.y5e{bottom:348.866667pt;}
.y186{bottom:349.826667pt;}
.y2f{bottom:349.986667pt;}
.y169{bottom:352.226667pt;}
.ybf{bottom:353.026667pt;}
.y114{bottom:353.186667pt;}
.ya8{bottom:353.506667pt;}
.y13c{bottom:359.106667pt;}
.yef{bottom:361.186667pt;}
.y1ab{bottom:363.746667pt;}
.y84{bottom:364.706667pt;}
.y185{bottom:365.186667pt;}
.y5d{bottom:365.346667pt;}
.y2e{bottom:366.466667pt;}
.y168{bottom:368.226667pt;}
.y113{bottom:368.386667pt;}
.ybe{bottom:369.666667pt;}
.ya7{bottom:369.986667pt;}
.y13b{bottom:374.466667pt;}
.y184{bottom:380.386667pt;}
.y5c{bottom:381.826667pt;}
.y2d{bottom:383.106667pt;}
.y167{bottom:384.226667pt;}
.ybd{bottom:386.146667pt;}
.ya6{bottom:386.466667pt;}
.yee{bottom:387.106667pt;}
.y1aa{bottom:389.666667pt;}
.y13a{bottom:389.826667pt;}
.y83{bottom:392.066667pt;}
.y112{bottom:394.466667pt;}
.y5b{bottom:398.466667pt;}
.y2c{bottom:399.586667pt;}
.y166{bottom:400.226667pt;}
.yed{bottom:402.466667pt;}
.ybc{bottom:402.626667pt;}
.ya5{bottom:403.106667pt;}
.y139{bottom:405.186667pt;}
.y183{bottom:406.466667pt;}
.y82{bottom:408.546667pt;}
.y1a9{bottom:415.746667pt;}
.y2b{bottom:416.226667pt;}
.yec{bottom:417.826667pt;}
.ybb{bottom:419.266667pt;}
.ya4{bottom:419.586667pt;}
.y111{bottom:420.386667pt;}
.y182{bottom:421.826667pt;}
.y81{bottom:425.026667pt;}
.y5a{bottom:425.666667pt;}
.y1a8{bottom:431.106667pt;}
.y165{bottom:432.226667pt;}
.y2a{bottom:432.706667pt;}
.yeb{bottom:433.186667pt;}
.y181{bottom:437.026667pt;}
.y80{bottom:441.666667pt;}
.y59{bottom:442.146667pt;}
.yba{bottom:446.466667pt;}
.ya3{bottom:446.786667pt;}
.y29{bottom:448.066667pt;}
.y164{bottom:448.226667pt;}
.yea{bottom:448.386667pt;}
.y180{bottom:452.386667pt;}
.y1a7{bottom:457.026667pt;}
.y7f{bottom:458.146667pt;}
.y58{bottom:458.786667pt;}
.yb9{bottom:459.586667pt;}
.y110{bottom:461.826667pt;}
.y28{bottom:463.426667pt;}
.ye9{bottom:463.746667pt;}
.y163{bottom:464.226667pt;}
.y17f{bottom:467.746667pt;}
.y7e{bottom:474.786667pt;}
.y57{bottom:475.266667pt;}
.yb8{bottom:475.586667pt;}
.y10f{bottom:477.026667pt;}
.ya2{bottom:479.906667pt;}
.y27{bottom:482.306667pt;}
.y1a6{bottom:483.106667pt;}
.ye8{bottom:489.666667pt;}
.yb7{bottom:491.586667pt;}
.y56{bottom:491.746667pt;}
.y138{bottom:492.386667pt;}
.y162{bottom:493.666667pt;}
.ya1{bottom:496.546667pt;}
.y1a5{bottom:498.466667pt;}
.y26{bottom:498.786667pt;}
.y7d{bottom:501.986667pt;}
.y10e{bottom:503.106667pt;}
.ye7{bottom:505.026667pt;}
.yb6{bottom:507.586667pt;}
.y137{bottom:507.746667pt;}
.y55{bottom:508.386667pt;}
.y161{bottom:509.026667pt;}
.ya0{bottom:513.026667pt;}
.y7c{bottom:515.106667pt;}
.y25{bottom:515.426667pt;}
.y10d{bottom:518.466667pt;}
.ye6{bottom:520.386667pt;}
.y136{bottom:523.106667pt;}
.yb5{bottom:523.586667pt;}
.y160{bottom:524.386667pt;}
.y54{bottom:524.866667pt;}
.y24{bottom:531.906667pt;}
.y10c{bottom:533.826667pt;}
.ye5{bottom:535.746667pt;}
.y135{bottom:538.493333pt;}
.yb3{bottom:539.613333pt;}
.y17e{bottom:539.773333pt;}
.y9f{bottom:540.253333pt;}
.y53{bottom:541.533333pt;}
.y23{bottom:548.413333pt;}
.y7b{bottom:548.893333pt;}
.y15f{bottom:550.493333pt;}
.ye4{bottom:551.133333pt;}
.y134{bottom:553.853333pt;}
.y17d{bottom:555.133333pt;}
.y9e{bottom:556.893333pt;}
.y52{bottom:558.013333pt;}
.y10b{bottom:559.773333pt;}
.y22{bottom:565.053333pt;}
.y1a4{bottom:565.693333pt;}
.y15e{bottom:565.853333pt;}
.ye3{bottom:566.493333pt;}
.y133{bottom:569.053333pt;}
.yb2{bottom:570.333333pt;}
.y9d{bottom:573.373333pt;}
.y51{bottom:574.653333pt;}
.y10a{bottom:575.133333pt;}
.y15d{bottom:581.053333pt;}
.y21{bottom:581.533333pt;}
.ye2{bottom:581.853333pt;}
.y7a{bottom:582.653333pt;}
.y132{bottom:584.413333pt;}
.yb1{bottom:586.973333pt;}
.y109{bottom:590.493333pt;}
.y50{bottom:591.133333pt;}
.y15c{bottom:596.413333pt;}
.ye1{bottom:597.053333pt;}
.y131{bottom:597.533333pt;}
.y20{bottom:598.173333pt;}
.y9c{bottom:600.573333pt;}
.yb0{bottom:603.453333pt;}
.y1a3{bottom:607.133333pt;}
.y4f{bottom:607.613333pt;}
.y15b{bottom:611.773333pt;}
.y130{bottom:613.533333pt;}
.y1f{bottom:614.653333pt;}
.y77{bottom:616.413333pt;}
.y9b{bottom:617.053333pt;}
.yaf{bottom:619.933333pt;}
.y1a2{bottom:622.493333pt;}
.ye0{bottom:623.133333pt;}
.y4e{bottom:624.253333pt;}
.y15a{bottom:627.133333pt;}
.y12f{bottom:629.533333pt;}
.y1e{bottom:631.133333pt;}
.y108{bottom:631.773333pt;}
.y9a{bottom:633.693333pt;}
.ydf{bottom:636.253333pt;}
.y4d{bottom:639.613333pt;}
.y159{bottom:642.493333pt;}
.y12e{bottom:645.533333pt;}
.yae{bottom:647.133333pt;}
.y1d{bottom:647.773333pt;}
.y1a1{bottom:648.413333pt;}
.y75{bottom:650.173333pt;}
.yde{bottom:652.253333pt;}
.y12d{bottom:661.533333pt;}
.y107{bottom:662.493333pt;}
.y1a0{bottom:663.773333pt;}
.y1c{bottom:664.253333pt;}
.y4c{bottom:666.813333pt;}
.ydd{bottom:668.253333pt;}
.y158{bottom:668.413333pt;}
.y99{bottom:677.373333pt;}
.y12c{bottom:677.533333pt;}
.y1b{bottom:680.893333pt;}
.y74{bottom:682.013333pt;}
.y4b{bottom:683.293333pt;}
.y157{bottom:683.773333pt;}
.ydc{bottom:684.253333pt;}
.y106{bottom:688.413333pt;}
.y19f{bottom:689.693333pt;}
.y98{bottom:690.493333pt;}
.y12b{bottom:693.533333pt;}
.y1a{bottom:697.373333pt;}
.y73{bottom:698.653333pt;}
.y156{bottom:699.133333pt;}
.y4a{bottom:699.773333pt;}
.ydb{bottom:700.253333pt;}
.y105{bottom:703.773333pt;}
.y19e{bottom:705.053333pt;}
.y97{bottom:707.773333pt;}
.y12a{bottom:709.533333pt;}
.y19{bottom:713.853333pt;}
.y155{bottom:714.493333pt;}
.y72{bottom:715.133333pt;}
.yda{bottom:716.253333pt;}
.y49{bottom:716.413333pt;}
.y104{bottom:719.133333pt;}
.y19d{bottom:720.413333pt;}
.y96{bottom:725.053333pt;}
.y154{bottom:729.853333pt;}
.y18{bottom:730.493333pt;}
.y71{bottom:731.773333pt;}
.yd9{bottom:732.253333pt;}
.y48{bottom:732.893333pt;}
.y103{bottom:734.493333pt;}
.y19c{bottom:735.773333pt;}
.y129{bottom:739.133333pt;}
.y94{bottom:742.173333pt;}
.y153{bottom:745.053333pt;}
.y17{bottom:746.973333pt;}
.yd8{bottom:748.253333pt;}
.y47{bottom:749.533333pt;}
.y102{bottom:749.853333pt;}
.y19b{bottom:751.133333pt;}
.y128{bottom:754.493333pt;}
.y17c{bottom:755.773333pt;}
.y70{bottom:758.973333pt;}
.y92{bottom:759.453333pt;}
.y152{bottom:760.413333pt;}
.y16{bottom:763.293333pt;}
.yd7{bottom:764.253333pt;}
.y46{bottom:766.013333pt;}
.y19a{bottom:766.493333pt;}
.y127{bottom:769.693333pt;}
.y17b{bottom:771.133333pt;}
.y6f{bottom:775.493333pt;}
.y101{bottom:775.813333pt;}
.y15{bottom:779.173333pt;}
.yd6{bottom:780.293333pt;}
.y45{bottom:781.413333pt;}
.y199{bottom:781.893333pt;}
.y126{bottom:785.093333pt;}
.y151{bottom:786.373333pt;}
.y17a{bottom:786.533333pt;}
.y100{bottom:791.173333pt;}
.y6e{bottom:792.133333pt;}
.y91{bottom:793.253333pt;}
.y14{bottom:795.973333pt;}
.yd5{bottom:796.293333pt;}
.y198{bottom:797.093333pt;}
.y125{bottom:800.453333pt;}
.y150{bottom:801.733333pt;}
.y44{bottom:808.613333pt;}
.yd4{bottom:812.293333pt;}
.y197{bottom:812.453333pt;}
.y13{bottom:812.933333pt;}
.yff{bottom:817.093333pt;}
.y43{bottom:825.093333pt;}
.y124{bottom:826.373333pt;}
.y196{bottom:827.813333pt;}
.yd2{bottom:828.293333pt;}
.y12{bottom:829.733333pt;}
.y14f{bottom:832.453333pt;}
.y42{bottom:841.733333pt;}
.yfe{bottom:843.173333pt;}
.yd1{bottom:844.293333pt;}
.y11{bottom:846.533333pt;}
.y14e{bottom:847.813333pt;}
.y123{bottom:857.093333pt;}
.y41{bottom:858.213333pt;}
.y179{bottom:858.373333pt;}
.yfd{bottom:858.533333pt;}
.y14d{bottom:863.173333pt;}
.y10{bottom:863.493333pt;}
.y6d{bottom:868.933333pt;}
.yd0{bottom:873.733333pt;}
.y40{bottom:874.853333pt;}
.y14c{bottom:878.533333pt;}
.yf{bottom:880.293333pt;}
.y122{bottom:883.173333pt;}
.y6c{bottom:885.413333pt;}
.ycf{bottom:889.093333pt;}
.ye{bottom:897.253333pt;}
.y3f{bottom:902.053333pt;}
.yce{bottom:904.453333pt;}
.y121{bottom:909.093333pt;}
.yd{bottom:914.373333pt;}
.y3e{bottom:918.533333pt;}
.ycd{bottom:919.813333pt;}
.yc{bottom:932.773333pt;}
.y3d{bottom:935.173333pt;}
.y8{bottom:951.653333pt;}
.y7{bottom:968.133333pt;}
.y6{bottom:982.213333pt;}
.y5{bottom:998.213333pt;}
.y4{bottom:1013.120000pt;}
.y3{bottom:1049.440000pt;}
.y2{bottom:1065.920000pt;}
.y1{bottom:1081.280000pt;}
.hf{height:15.360000pt;}
.h10{height:15.392000pt;}
.h9{height:16.480000pt;}
.hd{height:16.640000pt;}
.ha{height:33.120000pt;}
.hb{height:33.152000pt;}
.h6{height:33.515625pt;}
.h2{height:37.090625pt;}
.h5{height:37.479688pt;}
.hc{height:38.491250pt;}
.h12{height:38.672812pt;}
.h3{height:41.112500pt;}
.h8{height:41.543750pt;}
.he{height:43.782500pt;}
.h4{height:45.156250pt;}
.h11{height:52.834688pt;}
.h7{height:58.563750pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w7{width:44.960000pt;}
.we{width:50.240000pt;}
.wd{width:65.600000pt;}
.wa{width:66.592000pt;}
.wb{width:74.400000pt;}
.w11{width:74.432000pt;}
.w6{width:119.360000pt;}
.w3{width:137.120000pt;}
.w9{width:151.840000pt;}
.wc{width:163.706667pt;}
.w5{width:173.986667pt;}
.w4{width:183.226667pt;}
.wf{width:289.346667pt;}
.w10{width:323.906667pt;}
.w8{width:570.013333pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x19{left:6.880000pt;}
.x22{left:14.426667pt;}
.x1c{left:15.360000pt;}
.x18{left:17.760000pt;}
.x30{left:19.680000pt;}
.x12{left:20.960000pt;}
.x24{left:21.920000pt;}
.x25{left:23.226667pt;}
.x32{left:25.120000pt;}
.x27{left:26.586667pt;}
.x2e{left:28.960000pt;}
.x26{left:30.560000pt;}
.x31{left:32.640000pt;}
.x28{left:33.760000pt;}
.x16{left:43.386667pt;}
.x14{left:53.640000pt;}
.x20{left:56.320000pt;}
.x29{left:61.760000pt;}
.x11{left:89.152000pt;}
.x1{left:96.031988pt;}
.x3a{left:106.120000pt;}
.x2{left:109.471988pt;}
.x34{left:120.031988pt;}
.x1b{left:134.746667pt;}
.x4{left:139.706655pt;}
.x35{left:144.026655pt;}
.x7{left:155.866655pt;}
.x39{left:197.466667pt;}
.x33{left:200.666655pt;}
.x36{left:214.746667pt;}
.x13{left:226.906667pt;}
.xe{left:228.666655pt;}
.x38{left:241.146655pt;}
.x1f{left:249.986667pt;}
.xc{left:252.066655pt;}
.x2c{left:256.546667pt;}
.x2a{left:269.826655pt;}
.x1d{left:273.986655pt;}
.x1a{left:275.586655pt;}
.xb{left:281.826655pt;}
.x8{left:296.866655pt;}
.x1e{left:302.626655pt;}
.x2b{left:307.906655pt;}
.x3c{left:322.146655pt;}
.xd{left:332.066655pt;}
.xa{left:342.146655pt;}
.xf{left:343.586655pt;}
.x6{left:352.386655pt;}
.x10{left:354.626655pt;}
.x5{left:366.466655pt;}
.x9{left:396.866655pt;}
.x21{left:402.466667pt;}
.x15{left:410.786667pt;}
.x2d{left:420.893333pt;}
.x3{left:460.893322pt;}
.x23{left:469.693333pt;}
.x2f{left:487.133333pt;}
.x37{left:504.733333pt;}
.x3b{left:522.013333pt;}
.x17{left:585.413333pt;}
}




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