
    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_c2234cbc2bff0f625f0f3514.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.117676;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_62ed2ddbf103bfed32682244.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.117676;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_d252457309d2a9ea2822c828.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.123047;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_10be91fc58d7626cbfd0ea3d.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.191406;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_e25ae745b1dee242df1a2b52.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.129395;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_cfa822683a1ce779c488ccfb.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.123047;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_5ad189b37a58e274b8a07206.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;}
@font-face{font-family:ff8;src:url('chunks/assets/font_1aa77abab00b1552b46ed6b6.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.129395;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_7088b8f8345e5e7a6ecb2566.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.129395;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:ffa;src:url('chunks/assets/font_52d6e61701cb1e1cbc552c7a.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.129395;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:ffb;src:url('chunks/assets/font_336ef019de21a50ef51823d1.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.150391;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;}
.ls16{letter-spacing:-2.700000px;}
.ls17{letter-spacing:-1.260000px;}
.lsc{letter-spacing:-0.540000px;}
.ls6{letter-spacing:-0.360000px;}
.ls3{letter-spacing:0.000000px;}
.ls5{letter-spacing:0.018000px;}
.ls13{letter-spacing:0.106800px;}
.ls4{letter-spacing:0.144000px;}
.ls0{letter-spacing:0.180000px;}
.ls15{letter-spacing:0.259800px;}
.ls8{letter-spacing:0.259920px;}
.lsa{letter-spacing:0.298800px;}
.ls2{letter-spacing:0.360000px;}
.ls10{letter-spacing:0.720000px;}
.ls1{letter-spacing:1.440000px;}
.ls19{letter-spacing:3.060000px;}
.lsf{letter-spacing:3.780000px;}
.lse{letter-spacing:5.220000px;}
.lsd{letter-spacing:5.400000px;}
.ls14{letter-spacing:5.940000px;}
.ls11{letter-spacing:13.140000px;}
.ls18{letter-spacing:13.680000px;}
.ls12{letter-spacing:13.860000px;}
.lsb{letter-spacing:22.500000px;}
.ls9{letter-spacing:41.706720px;}
.ls7{letter-spacing:61.866720px;}
.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;}
}
.ws0{word-spacing:-18.000000px;}
.ws5{word-spacing:-15.238800px;}
.ws6{word-spacing:-15.199800px;}
.ws4{word-spacing:-14.940000px;}
.ws2{word-spacing:-14.580000px;}
.ws1{word-spacing:-13.500000px;}
.ws3{word-spacing:0.000000px;}
._17{margin-left:-4.348080px;}
._b{margin-left:-3.240000px;}
._8{margin-left:-2.106000px;}
._0{margin-left:-1.080000px;}
._1{width:1.152000px;}
._7{width:2.214000px;}
._6{width:3.294000px;}
._9{width:5.076000px;}
._5{width:6.264000px;}
._a{width:7.344000px;}
._3{width:8.658000px;}
._2{width:9.900000px;}
._c{width:11.055600px;}
._d{width:12.234240px;}
._e{width:13.343040px;}
._4{width:15.444000px;}
._16{width:16.776000px;}
._13{width:18.406080px;}
._12{width:19.541520px;}
._15{width:20.562480px;}
._14{width:21.600000px;}
._11{width:23.425920px;}
._f{width:24.544800px;}
._10{width:25.670160px;}
._18{width:29.923200px;}
._19{width:850.680000px;}
.fc2{color:rgb(0,32,96);}
.fc1{color:rgb(128,128,128);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:36.000000px;}
.fs5{font-size:38.880000px;}
.fs3{font-size:48.240000px;}
.fs2{font-size:54.000000px;}
.fs0{font-size:59.760000px;}
.fs1{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.yf{bottom:57.780000px;}
.ye{bottom:78.480000px;}
.yd{bottom:99.180000px;}
.yc{bottom:119.880000px;}
.yb{bottom:140.616000px;}
.ya{bottom:161.310000px;}
.y9{bottom:182.010000px;}
.y8{bottom:200.910000px;}
.y7{bottom:212.070000px;}
.y6{bottom:227.550000px;}
.y5{bottom:243.030000px;}
.y4{bottom:259.590000px;}
.yb4{bottom:279.390000px;}
.y3d{bottom:279.570000px;}
.y68{bottom:281.190000px;}
.y149{bottom:284.610000px;}
.y97{bottom:287.130000px;}
.yfe{bottom:289.650000px;}
.y15d{bottom:289.830000px;}
.ye3{bottom:290.010000px;}
.yb3{bottom:294.870000px;}
.y67{bottom:296.670000px;}
.y3c{bottom:296.850000px;}
.y174{bottom:299.910000px;}
.y144{bottom:300.450000px;}
.y148{bottom:301.890000px;}
.y117{bottom:302.610000px;}
.y96{bottom:304.410000px;}
.yfd{bottom:306.570000px;}
.y15c{bottom:307.110000px;}
.ye2{bottom:307.290000px;}
.yb2{bottom:310.350000px;}
.y66{bottom:312.150000px;}
.y3b{bottom:313.770000px;}
.y173{bottom:315.570000px;}
.y143{bottom:317.730000px;}
.y147{bottom:319.170000px;}
.y116{bottom:319.890000px;}
.y95{bottom:321.330000px;}
.yfc{bottom:322.050000px;}
.y15b{bottom:324.210000px;}
.ye1{bottom:324.570000px;}
.yb1{bottom:325.830000px;}
.y65{bottom:327.810000px;}
.y3a{bottom:329.610000px;}
.y172{bottom:333.390000px;}
.y39{bottom:334.830000px;}
.y142{bottom:335.010000px;}
.y146{bottom:336.450000px;}
.y94{bottom:336.810000px;}
.y115{bottom:337.170000px;}
.yfb{bottom:337.710000px;}
.yb0{bottom:341.490000px;}
.ye0{bottom:341.850000px;}
.y64{bottom:343.290000px;}
.y38{bottom:347.610000px;}
.y171{bottom:348.870000px;}
.y93{bottom:352.290000px;}
.yfa{bottom:353.190000px;}
.y114{bottom:354.450000px;}
.yaf{bottom:356.970000px;}
.y63{bottom:358.770000px;}
.ydf{bottom:358.950000px;}
.y145{bottom:362.550000px;}
.y170{bottom:364.350000px;}
.y92{bottom:367.770000px;}
.y141{bottom:369.570000px;}
.yf9{bottom:371.550000px;}
.yae{bottom:372.450000px;}
.y62{bottom:375.330000px;}
.yde{bottom:376.230000px;}
.yad{bottom:376.950000px;}
.y16f{bottom:379.830000px;}
.y91{bottom:384.375000px;}
.y140{bottom:386.715000px;}
.yc4{bottom:387.975000px;}
.yf8{bottom:388.875000px;}
.yac{bottom:389.055000px;}
.yc3{bottom:392.475000px;}
.ydd{bottom:393.555000px;}
.y15a{bottom:394.095000px;}
.y61{bottom:395.355000px;}
.y16e{bottom:395.535000px;}
.y37{bottom:401.475000px;}
.y13f{bottom:403.995000px;}
.y90{bottom:404.355000px;}
.yc2{bottom:404.535000px;}
.yf7{bottom:406.155000px;}
.ydc{bottom:410.835000px;}
.y16d{bottom:411.015000px;}
.y159{bottom:411.375000px;}
.y60{bottom:412.635000px;}
.y36{bottom:416.955000px;}
.y13e{bottom:421.275000px;}
.y8f{bottom:421.635000px;}
.yf6{bottom:423.435000px;}
.y16c{bottom:426.495000px;}
.ydb{bottom:428.115000px;}
.y158{bottom:428.655000px;}
.y5f{bottom:429.915000px;}
.yab{bottom:430.995000px;}
.y35{bottom:434.775000px;}
.y13d{bottom:438.555000px;}
.y8e{bottom:438.915000px;}
.yc1{bottom:439.815000px;}
.yf5{bottom:440.715000px;}
.y16b{bottom:441.975000px;}
.yda{bottom:445.395000px;}
.y157{bottom:445.755000px;}
.yaa{bottom:446.475000px;}
.y34{bottom:452.595000px;}
.y13c{bottom:455.835000px;}
.y8d{bottom:456.195000px;}
.yc0{bottom:457.095000px;}
.y16a{bottom:457.635000px;}
.yf4{bottom:457.815000px;}
.y5e{bottom:458.715000px;}
.ya9{bottom:461.955000px;}
.yd9{bottom:462.495000px;}
.y156{bottom:463.035000px;}
.y33{bottom:470.595000px;}
.y13b{bottom:472.935000px;}
.y169{bottom:473.115000px;}
.y8c{bottom:473.475000px;}
.ybf{bottom:474.375000px;}
.yf3{bottom:475.095000px;}
.ya8{bottom:477.615000px;}
.yd8{bottom:479.775000px;}
.y155{bottom:480.315000px;}
.y32{bottom:488.415000px;}
.y168{bottom:488.595000px;}
.y5d{bottom:488.775000px;}
.y8b{bottom:490.755000px;}
.ybe{bottom:491.655000px;}
.yf2{bottom:492.375000px;}
.ya7{bottom:495.975000px;}
.yd7{bottom:497.055000px;}
.y154{bottom:497.595000px;}
.y13a{bottom:499.215000px;}
.y167{bottom:504.075000px;}
.y31{bottom:506.235000px;}
.y8a{bottom:507.855000px;}
.y5c{bottom:508.755000px;}
.ybd{bottom:508.935000px;}
.y113{bottom:509.295000px;}
.yf1{bottom:509.655000px;}
.yd6{bottom:514.335000px;}
.y153{bottom:514.875000px;}
.ya6{bottom:515.775000px;}
.y166{bottom:519.735000px;}
.y30{bottom:524.055000px;}
.y112{bottom:524.775000px;}
.y89{bottom:525.135000px;}
.y139{bottom:525.495000px;}
.y5b{bottom:526.035000px;}
.ybc{bottom:526.215000px;}
.yf0{bottom:526.935000px;}
.yd5{bottom:531.615000px;}
.y152{bottom:532.155000px;}
.y165{bottom:535.215000px;}
.ya5{bottom:535.575000px;}
.y111{bottom:540.435000px;}
.y2f{bottom:541.875000px;}
.y88{bottom:542.415000px;}
.y138{bottom:542.775000px;}
.y5a{bottom:543.315000px;}
.yef{bottom:544.215000px;}
.yd4{bottom:548.715000px;}
.y151{bottom:549.255000px;}
.y164{bottom:550.695000px;}
.ya3{bottom:555.375000px;}
.y110{bottom:555.915000px;}
.y2e{bottom:559.695000px;}
.y137{bottom:560.055000px;}
.y59{bottom:560.415000px;}
.ya4{bottom:560.595000px;}
.yee{bottom:561.315000px;}
.y163{bottom:566.175000px;}
.y150{bottom:566.535000px;}
.yd3{bottom:568.515000px;}
.y10f{bottom:571.395000px;}
.ya2{bottom:575.355000px;}
.y87{bottom:576.975000px;}
.y136{bottom:577.335000px;}
.y2d{bottom:577.695000px;}
.ybb{bottom:577.875000px;}
.yed{bottom:578.595000px;}
.y162{bottom:581.835000px;}
.y14f{bottom:583.815000px;}
.y10e{bottom:586.875000px;}
.yd2{bottom:589.755000px;}
.y86{bottom:594.075000px;}
.y135{bottom:594.435000px;}
.y58{bottom:594.975000px;}
.ya1{bottom:595.155000px;}
.y2c{bottom:595.515000px;}
.yec{bottom:595.875000px;}
.y161{bottom:597.315000px;}
.y14e{bottom:601.095000px;}
.y10d{bottom:602.715000px;}
.yd1{bottom:609.735000px;}
.y85{bottom:611.175000px;}
.y134{bottom:611.715000px;}
.y57{bottom:612.255000px;}
.ya0{bottom:612.435000px;}
.y160{bottom:612.795000px;}
.yeb{bottom:613.155000px;}
.y2b{bottom:613.335000px;}
.y14d{bottom:618.375000px;}
.y10c{bottom:619.995000px;}
.y84{bottom:626.655000px;}
.yd0{bottom:627.015000px;}
.y15f{bottom:628.275000px;}
.y133{bottom:628.995000px;}
.y56{bottom:629.535000px;}
.y9f{bottom:629.715000px;}
.yea{bottom:630.435000px;}
.y2a{bottom:631.155000px;}
.y14c{bottom:635.325000px;}
.y10b{bottom:637.305000px;}
.y83{bottom:642.165000px;}
.ycf{bottom:644.145000px;}
.y15e{bottom:644.865000px;}
.y132{bottom:646.305000px;}
.y55{bottom:646.845000px;}
.ye9{bottom:647.745000px;}
.y29{bottom:649.005000px;}
.y14b{bottom:650.805000px;}
.y10a{bottom:654.585000px;}
.y82{bottom:657.645000px;}
.yce{bottom:661.425000px;}
.y131{bottom:663.585000px;}
.y54{bottom:663.945000px;}
.y9e{bottom:664.125000px;}
.ye8{bottom:664.845000px;}
.y14a{bottom:666.285000px;}
.y28{bottom:667.005000px;}
.yba{bottom:669.345000px;}
.y109{bottom:671.865000px;}
.y81{bottom:673.305000px;}
.ycd{bottom:678.705000px;}
.y130{bottom:680.865000px;}
.y53{bottom:681.225000px;}
.y9d{bottom:681.405000px;}
.ye7{bottom:682.125000px;}
.y27{bottom:684.825000px;}
.y80{bottom:688.785000px;}
.y108{bottom:689.145000px;}
.ycc{bottom:695.985000px;}
.y12f{bottom:697.965000px;}
.y52{bottom:698.505000px;}
.y9c{bottom:698.685000px;}
.ye6{bottom:699.405000px;}
.y7f{bottom:704.265000px;}
.y26{bottom:704.445000px;}
.y107{bottom:706.245000px;}
.ycb{bottom:713.265000px;}
.y12e{bottom:715.245000px;}
.y51{bottom:715.785000px;}
.y9b{bottom:715.965000px;}
.ye5{bottom:716.685000px;}
.y7e{bottom:720.105000px;}
.y106{bottom:723.525000px;}
.y25{bottom:724.065000px;}
.yb9{bottom:724.785000px;}
.yca{bottom:730.545000px;}
.y12d{bottom:732.525000px;}
.y50{bottom:733.065000px;}
.ye4{bottom:733.965000px;}
.y7d{bottom:737.385000px;}
.y24{bottom:739.545000px;}
.y105{bottom:740.445000px;}
.yc9{bottom:747.645000px;}
.y12c{bottom:749.805000px;}
.y4f{bottom:750.345000px;}
.yb8{bottom:751.065000px;}
.y23{bottom:755.205000px;}
.y7c{bottom:755.385000px;}
.y104{bottom:755.925000px;}
.yc8{bottom:764.925000px;}
.y12b{bottom:767.085000px;}
.y4e{bottom:767.445000px;}
.y9a{bottom:767.625000px;}
.yb7{bottom:768.345000px;}
.y22{bottom:770.685000px;}
.y103{bottom:771.585000px;}
.y7b{bottom:775.005000px;}
.yc7{bottom:782.205000px;}
.y12a{bottom:784.185000px;}
.y4d{bottom:784.725000px;}
.yb6{bottom:785.625000px;}
.y21{bottom:786.165000px;}
.y102{bottom:787.065000px;}
.y7a{bottom:790.485000px;}
.y99{bottom:793.905000px;}
.yc6{bottom:799.485000px;}
.y129{bottom:801.465000px;}
.y20{bottom:801.645000px;}
.y4c{bottom:802.005000px;}
.y101{bottom:802.545000px;}
.yb5{bottom:802.905000px;}
.y79{bottom:805.965000px;}
.y1f{bottom:817.305000px;}
.yc5{bottom:817.485000px;}
.y100{bottom:818.025000px;}
.y128{bottom:818.385000px;}
.y4b{bottom:819.285000px;}
.y98{bottom:820.185000px;}
.y78{bottom:821.625000px;}
.y1e{bottom:832.785000px;}
.y127{bottom:834.045000px;}
.yff{bottom:834.585000px;}
.y4a{bottom:836.565000px;}
.y77{bottom:837.465000px;}
.y1d{bottom:848.265000px;}
.y126{bottom:849.525000px;}
.y49{bottom:853.665000px;}
.y76{bottom:854.565000px;}
.y1c{bottom:863.745000px;}
.y125{bottom:865.005000px;}
.y48{bottom:870.945000px;}
.y75{bottom:871.845000px;}
.y1b{bottom:879.405000px;}
.y124{bottom:880.485000px;}
.y47{bottom:888.270000px;}
.y74{bottom:889.170000px;}
.y1a{bottom:894.930000px;}
.y123{bottom:896.190000px;}
.y46{bottom:905.550000px;}
.y73{bottom:906.450000px;}
.y19{bottom:910.410000px;}
.y122{bottom:911.670000px;}
.y45{bottom:922.830000px;}
.y72{bottom:923.730000px;}
.y18{bottom:925.890000px;}
.y121{bottom:927.150000px;}
.y44{bottom:940.110000px;}
.y71{bottom:941.010000px;}
.y17{bottom:941.550000px;}
.y120{bottom:946.770000px;}
.y43{bottom:957.210000px;}
.y70{bottom:958.110000px;}
.y16{bottom:961.170000px;}
.y11f{bottom:966.750000px;}
.y42{bottom:974.490000px;}
.y6f{bottom:975.390000px;}
.y11e{bottom:984.030000px;}
.y15{bottom:984.930000px;}
.y41{bottom:991.770000px;}
.y6e{bottom:992.670000px;}
.y11d{bottom:1001.310000px;}
.y13{bottom:1008.690000px;}
.y40{bottom:1009.050000px;}
.y6d{bottom:1009.950000px;}
.y14{bottom:1014.630000px;}
.y11c{bottom:1018.230000px;}
.y3f{bottom:1026.330000px;}
.y6c{bottom:1027.230000px;}
.y12{bottom:1032.630000px;}
.y11b{bottom:1033.710000px;}
.y6b{bottom:1044.510000px;}
.y3e{bottom:1046.130000px;}
.y11a{bottom:1049.370000px;}
.y11{bottom:1055.130000px;}
.y6a{bottom:1061.610000px;}
.y119{bottom:1064.850000px;}
.y10{bottom:1076.190000px;}
.y69{bottom:1078.890000px;}
.y118{bottom:1080.330000px;}
.y3{bottom:1157.760000px;}
.y2{bottom:1177.740000px;}
.y1{bottom:1195.020000px;}
.h10{height:32.273438px;}
.hc{height:34.855313px;}
.h6{height:44.282812px;}
.hb{height:47.961914px;}
.h5{height:48.410156px;}
.ha{height:48.647461px;}
.h14{height:49.543945px;}
.h9{height:49.570312px;}
.he{height:53.077852px;}
.hd{height:53.573906px;}
.h2{height:53.836523px;}
.h11{height:54.828633px;}
.h7{height:54.857813px;}
.h13{height:56.083359px;}
.hf{height:63.949219px;}
.h4{height:64.546875px;}
.h3{height:64.863281px;}
.h12{height:66.058594px;}
.h8{height:66.093750px;}
.h1{height:1263.000000px;}
.h0{height:1263.060000px;}
.w3{width:892.979973px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x5{left:170.129987px;}
.x10{left:174.989987px;}
.xd{left:182.189987px;}
.x12{left:191.369987px;}
.x9{left:208.649987px;}
.x6{left:212.249987px;}
.x11{left:224.129987px;}
.x2{left:304.994987px;}
.xa{left:308.054987px;}
.x7{left:329.834987px;}
.xe{left:401.474987px;}
.xf{left:428.324987px;}
.x8{left:446.504987px;}
.x3{left:454.064987px;}
.x1{left:467.564987px;}
.x4{left:524.804987px;}
.x15{left:574.844973px;}
.xb{left:578.804973px;}
.xc{left:584.969987px;}
.x13{left:714.569973px;}
.x14{left:719.429987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls16{letter-spacing:-2.400000pt;}
.ls17{letter-spacing:-1.120000pt;}
.lsc{letter-spacing:-0.480000pt;}
.ls6{letter-spacing:-0.320000pt;}
.ls3{letter-spacing:0.000000pt;}
.ls5{letter-spacing:0.016000pt;}
.ls13{letter-spacing:0.094933pt;}
.ls4{letter-spacing:0.128000pt;}
.ls0{letter-spacing:0.160000pt;}
.ls15{letter-spacing:0.230933pt;}
.ls8{letter-spacing:0.231040pt;}
.lsa{letter-spacing:0.265600pt;}
.ls2{letter-spacing:0.320000pt;}
.ls10{letter-spacing:0.640000pt;}
.ls1{letter-spacing:1.280000pt;}
.ls19{letter-spacing:2.720000pt;}
.lsf{letter-spacing:3.360000pt;}
.lse{letter-spacing:4.640000pt;}
.lsd{letter-spacing:4.800000pt;}
.ls14{letter-spacing:5.280000pt;}
.ls11{letter-spacing:11.680000pt;}
.ls18{letter-spacing:12.160000pt;}
.ls12{letter-spacing:12.320000pt;}
.lsb{letter-spacing:20.000000pt;}
.ls9{letter-spacing:37.072640pt;}
.ls7{letter-spacing:54.992640pt;}
.ws0{word-spacing:-16.000000pt;}
.ws5{word-spacing:-13.545600pt;}
.ws6{word-spacing:-13.510933pt;}
.ws4{word-spacing:-13.280000pt;}
.ws2{word-spacing:-12.960000pt;}
.ws1{word-spacing:-12.000000pt;}
.ws3{word-spacing:0.000000pt;}
._17{margin-left:-3.864960pt;}
._b{margin-left:-2.880000pt;}
._8{margin-left:-1.872000pt;}
._0{margin-left:-0.960000pt;}
._1{width:1.024000pt;}
._7{width:1.968000pt;}
._6{width:2.928000pt;}
._9{width:4.512000pt;}
._5{width:5.568000pt;}
._a{width:6.528000pt;}
._3{width:7.696000pt;}
._2{width:8.800000pt;}
._c{width:9.827200pt;}
._d{width:10.874880pt;}
._e{width:11.860480pt;}
._4{width:13.728000pt;}
._16{width:14.912000pt;}
._13{width:16.360960pt;}
._12{width:17.370240pt;}
._15{width:18.277760pt;}
._14{width:19.200000pt;}
._11{width:20.823040pt;}
._f{width:21.817600pt;}
._10{width:22.817920pt;}
._18{width:26.598400pt;}
._19{width:756.160000pt;}
.fs4{font-size:32.000000pt;}
.fs5{font-size:34.560000pt;}
.fs3{font-size:42.880000pt;}
.fs2{font-size:48.000000pt;}
.fs0{font-size:53.120000pt;}
.fs1{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.yf{bottom:51.360000pt;}
.ye{bottom:69.760000pt;}
.yd{bottom:88.160000pt;}
.yc{bottom:106.560000pt;}
.yb{bottom:124.992000pt;}
.ya{bottom:143.386667pt;}
.y9{bottom:161.786667pt;}
.y8{bottom:178.586667pt;}
.y7{bottom:188.506667pt;}
.y6{bottom:202.266667pt;}
.y5{bottom:216.026667pt;}
.y4{bottom:230.746667pt;}
.yb4{bottom:248.346667pt;}
.y3d{bottom:248.506667pt;}
.y68{bottom:249.946667pt;}
.y149{bottom:252.986667pt;}
.y97{bottom:255.226667pt;}
.yfe{bottom:257.466667pt;}
.y15d{bottom:257.626667pt;}
.ye3{bottom:257.786667pt;}
.yb3{bottom:262.106667pt;}
.y67{bottom:263.706667pt;}
.y3c{bottom:263.866667pt;}
.y174{bottom:266.586667pt;}
.y144{bottom:267.066667pt;}
.y148{bottom:268.346667pt;}
.y117{bottom:268.986667pt;}
.y96{bottom:270.586667pt;}
.yfd{bottom:272.506667pt;}
.y15c{bottom:272.986667pt;}
.ye2{bottom:273.146667pt;}
.yb2{bottom:275.866667pt;}
.y66{bottom:277.466667pt;}
.y3b{bottom:278.906667pt;}
.y173{bottom:280.506667pt;}
.y143{bottom:282.426667pt;}
.y147{bottom:283.706667pt;}
.y116{bottom:284.346667pt;}
.y95{bottom:285.626667pt;}
.yfc{bottom:286.266667pt;}
.y15b{bottom:288.186667pt;}
.ye1{bottom:288.506667pt;}
.yb1{bottom:289.626667pt;}
.y65{bottom:291.386667pt;}
.y3a{bottom:292.986667pt;}
.y172{bottom:296.346667pt;}
.y39{bottom:297.626667pt;}
.y142{bottom:297.786667pt;}
.y146{bottom:299.066667pt;}
.y94{bottom:299.386667pt;}
.y115{bottom:299.706667pt;}
.yfb{bottom:300.186667pt;}
.yb0{bottom:303.546667pt;}
.ye0{bottom:303.866667pt;}
.y64{bottom:305.146667pt;}
.y38{bottom:308.986667pt;}
.y171{bottom:310.106667pt;}
.y93{bottom:313.146667pt;}
.yfa{bottom:313.946667pt;}
.y114{bottom:315.066667pt;}
.yaf{bottom:317.306667pt;}
.y63{bottom:318.906667pt;}
.ydf{bottom:319.066667pt;}
.y145{bottom:322.266667pt;}
.y170{bottom:323.866667pt;}
.y92{bottom:326.906667pt;}
.y141{bottom:328.506667pt;}
.yf9{bottom:330.266667pt;}
.yae{bottom:331.066667pt;}
.y62{bottom:333.626667pt;}
.yde{bottom:334.426667pt;}
.yad{bottom:335.066667pt;}
.y16f{bottom:337.626667pt;}
.y91{bottom:341.666667pt;}
.y140{bottom:343.746667pt;}
.yc4{bottom:344.866667pt;}
.yf8{bottom:345.666667pt;}
.yac{bottom:345.826667pt;}
.yc3{bottom:348.866667pt;}
.ydd{bottom:349.826667pt;}
.y15a{bottom:350.306667pt;}
.y61{bottom:351.426667pt;}
.y16e{bottom:351.586667pt;}
.y37{bottom:356.866667pt;}
.y13f{bottom:359.106667pt;}
.y90{bottom:359.426667pt;}
.yc2{bottom:359.586667pt;}
.yf7{bottom:361.026667pt;}
.ydc{bottom:365.186667pt;}
.y16d{bottom:365.346667pt;}
.y159{bottom:365.666667pt;}
.y60{bottom:366.786667pt;}
.y36{bottom:370.626667pt;}
.y13e{bottom:374.466667pt;}
.y8f{bottom:374.786667pt;}
.yf6{bottom:376.386667pt;}
.y16c{bottom:379.106667pt;}
.ydb{bottom:380.546667pt;}
.y158{bottom:381.026667pt;}
.y5f{bottom:382.146667pt;}
.yab{bottom:383.106667pt;}
.y35{bottom:386.466667pt;}
.y13d{bottom:389.826667pt;}
.y8e{bottom:390.146667pt;}
.yc1{bottom:390.946667pt;}
.yf5{bottom:391.746667pt;}
.y16b{bottom:392.866667pt;}
.yda{bottom:395.906667pt;}
.y157{bottom:396.226667pt;}
.yaa{bottom:396.866667pt;}
.y34{bottom:402.306667pt;}
.y13c{bottom:405.186667pt;}
.y8d{bottom:405.506667pt;}
.yc0{bottom:406.306667pt;}
.y16a{bottom:406.786667pt;}
.yf4{bottom:406.946667pt;}
.y5e{bottom:407.746667pt;}
.ya9{bottom:410.626667pt;}
.yd9{bottom:411.106667pt;}
.y156{bottom:411.586667pt;}
.y33{bottom:418.306667pt;}
.y13b{bottom:420.386667pt;}
.y169{bottom:420.546667pt;}
.y8c{bottom:420.866667pt;}
.ybf{bottom:421.666667pt;}
.yf3{bottom:422.306667pt;}
.ya8{bottom:424.546667pt;}
.yd8{bottom:426.466667pt;}
.y155{bottom:426.946667pt;}
.y32{bottom:434.146667pt;}
.y168{bottom:434.306667pt;}
.y5d{bottom:434.466667pt;}
.y8b{bottom:436.226667pt;}
.ybe{bottom:437.026667pt;}
.yf2{bottom:437.666667pt;}
.ya7{bottom:440.866667pt;}
.yd7{bottom:441.826667pt;}
.y154{bottom:442.306667pt;}
.y13a{bottom:443.746667pt;}
.y167{bottom:448.066667pt;}
.y31{bottom:449.986667pt;}
.y8a{bottom:451.426667pt;}
.y5c{bottom:452.226667pt;}
.ybd{bottom:452.386667pt;}
.y113{bottom:452.706667pt;}
.yf1{bottom:453.026667pt;}
.yd6{bottom:457.186667pt;}
.y153{bottom:457.666667pt;}
.ya6{bottom:458.466667pt;}
.y166{bottom:461.986667pt;}
.y30{bottom:465.826667pt;}
.y112{bottom:466.466667pt;}
.y89{bottom:466.786667pt;}
.y139{bottom:467.106667pt;}
.y5b{bottom:467.586667pt;}
.ybc{bottom:467.746667pt;}
.yf0{bottom:468.386667pt;}
.yd5{bottom:472.546667pt;}
.y152{bottom:473.026667pt;}
.y165{bottom:475.746667pt;}
.ya5{bottom:476.066667pt;}
.y111{bottom:480.386667pt;}
.y2f{bottom:481.666667pt;}
.y88{bottom:482.146667pt;}
.y138{bottom:482.466667pt;}
.y5a{bottom:482.946667pt;}
.yef{bottom:483.746667pt;}
.yd4{bottom:487.746667pt;}
.y151{bottom:488.226667pt;}
.y164{bottom:489.506667pt;}
.ya3{bottom:493.666667pt;}
.y110{bottom:494.146667pt;}
.y2e{bottom:497.506667pt;}
.y137{bottom:497.826667pt;}
.y59{bottom:498.146667pt;}
.ya4{bottom:498.306667pt;}
.yee{bottom:498.946667pt;}
.y163{bottom:503.266667pt;}
.y150{bottom:503.586667pt;}
.yd3{bottom:505.346667pt;}
.y10f{bottom:507.906667pt;}
.ya2{bottom:511.426667pt;}
.y87{bottom:512.866667pt;}
.y136{bottom:513.186667pt;}
.y2d{bottom:513.506667pt;}
.ybb{bottom:513.666667pt;}
.yed{bottom:514.306667pt;}
.y162{bottom:517.186667pt;}
.y14f{bottom:518.946667pt;}
.y10e{bottom:521.666667pt;}
.yd2{bottom:524.226667pt;}
.y86{bottom:528.066667pt;}
.y135{bottom:528.386667pt;}
.y58{bottom:528.866667pt;}
.ya1{bottom:529.026667pt;}
.y2c{bottom:529.346667pt;}
.yec{bottom:529.666667pt;}
.y161{bottom:530.946667pt;}
.y14e{bottom:534.306667pt;}
.y10d{bottom:535.746667pt;}
.yd1{bottom:541.986667pt;}
.y85{bottom:543.266667pt;}
.y134{bottom:543.746667pt;}
.y57{bottom:544.226667pt;}
.ya0{bottom:544.386667pt;}
.y160{bottom:544.706667pt;}
.yeb{bottom:545.026667pt;}
.y2b{bottom:545.186667pt;}
.y14d{bottom:549.666667pt;}
.y10c{bottom:551.106667pt;}
.y84{bottom:557.026667pt;}
.yd0{bottom:557.346667pt;}
.y15f{bottom:558.466667pt;}
.y133{bottom:559.106667pt;}
.y56{bottom:559.586667pt;}
.y9f{bottom:559.746667pt;}
.yea{bottom:560.386667pt;}
.y2a{bottom:561.026667pt;}
.y14c{bottom:564.733333pt;}
.y10b{bottom:566.493333pt;}
.y83{bottom:570.813333pt;}
.ycf{bottom:572.573333pt;}
.y15e{bottom:573.213333pt;}
.y132{bottom:574.493333pt;}
.y55{bottom:574.973333pt;}
.ye9{bottom:575.773333pt;}
.y29{bottom:576.893333pt;}
.y14b{bottom:578.493333pt;}
.y10a{bottom:581.853333pt;}
.y82{bottom:584.573333pt;}
.yce{bottom:587.933333pt;}
.y131{bottom:589.853333pt;}
.y54{bottom:590.173333pt;}
.y9e{bottom:590.333333pt;}
.ye8{bottom:590.973333pt;}
.y14a{bottom:592.253333pt;}
.y28{bottom:592.893333pt;}
.yba{bottom:594.973333pt;}
.y109{bottom:597.213333pt;}
.y81{bottom:598.493333pt;}
.ycd{bottom:603.293333pt;}
.y130{bottom:605.213333pt;}
.y53{bottom:605.533333pt;}
.y9d{bottom:605.693333pt;}
.ye7{bottom:606.333333pt;}
.y27{bottom:608.733333pt;}
.y80{bottom:612.253333pt;}
.y108{bottom:612.573333pt;}
.ycc{bottom:618.653333pt;}
.y12f{bottom:620.413333pt;}
.y52{bottom:620.893333pt;}
.y9c{bottom:621.053333pt;}
.ye6{bottom:621.693333pt;}
.y7f{bottom:626.013333pt;}
.y26{bottom:626.173333pt;}
.y107{bottom:627.773333pt;}
.ycb{bottom:634.013333pt;}
.y12e{bottom:635.773333pt;}
.y51{bottom:636.253333pt;}
.y9b{bottom:636.413333pt;}
.ye5{bottom:637.053333pt;}
.y7e{bottom:640.093333pt;}
.y106{bottom:643.133333pt;}
.y25{bottom:643.613333pt;}
.yb9{bottom:644.253333pt;}
.yca{bottom:649.373333pt;}
.y12d{bottom:651.133333pt;}
.y50{bottom:651.613333pt;}
.ye4{bottom:652.413333pt;}
.y7d{bottom:655.453333pt;}
.y24{bottom:657.373333pt;}
.y105{bottom:658.173333pt;}
.yc9{bottom:664.573333pt;}
.y12c{bottom:666.493333pt;}
.y4f{bottom:666.973333pt;}
.yb8{bottom:667.613333pt;}
.y23{bottom:671.293333pt;}
.y7c{bottom:671.453333pt;}
.y104{bottom:671.933333pt;}
.yc8{bottom:679.933333pt;}
.y12b{bottom:681.853333pt;}
.y4e{bottom:682.173333pt;}
.y9a{bottom:682.333333pt;}
.yb7{bottom:682.973333pt;}
.y22{bottom:685.053333pt;}
.y103{bottom:685.853333pt;}
.y7b{bottom:688.893333pt;}
.yc7{bottom:695.293333pt;}
.y12a{bottom:697.053333pt;}
.y4d{bottom:697.533333pt;}
.yb6{bottom:698.333333pt;}
.y21{bottom:698.813333pt;}
.y102{bottom:699.613333pt;}
.y7a{bottom:702.653333pt;}
.y99{bottom:705.693333pt;}
.yc6{bottom:710.653333pt;}
.y129{bottom:712.413333pt;}
.y20{bottom:712.573333pt;}
.y4c{bottom:712.893333pt;}
.y101{bottom:713.373333pt;}
.yb5{bottom:713.693333pt;}
.y79{bottom:716.413333pt;}
.y1f{bottom:726.493333pt;}
.yc5{bottom:726.653333pt;}
.y100{bottom:727.133333pt;}
.y128{bottom:727.453333pt;}
.y4b{bottom:728.253333pt;}
.y98{bottom:729.053333pt;}
.y78{bottom:730.333333pt;}
.y1e{bottom:740.253333pt;}
.y127{bottom:741.373333pt;}
.yff{bottom:741.853333pt;}
.y4a{bottom:743.613333pt;}
.y77{bottom:744.413333pt;}
.y1d{bottom:754.013333pt;}
.y126{bottom:755.133333pt;}
.y49{bottom:758.813333pt;}
.y76{bottom:759.613333pt;}
.y1c{bottom:767.773333pt;}
.y125{bottom:768.893333pt;}
.y48{bottom:774.173333pt;}
.y75{bottom:774.973333pt;}
.y1b{bottom:781.693333pt;}
.y124{bottom:782.653333pt;}
.y47{bottom:789.573333pt;}
.y74{bottom:790.373333pt;}
.y1a{bottom:795.493333pt;}
.y123{bottom:796.613333pt;}
.y46{bottom:804.933333pt;}
.y73{bottom:805.733333pt;}
.y19{bottom:809.253333pt;}
.y122{bottom:810.373333pt;}
.y45{bottom:820.293333pt;}
.y72{bottom:821.093333pt;}
.y18{bottom:823.013333pt;}
.y121{bottom:824.133333pt;}
.y44{bottom:835.653333pt;}
.y71{bottom:836.453333pt;}
.y17{bottom:836.933333pt;}
.y120{bottom:841.573333pt;}
.y43{bottom:850.853333pt;}
.y70{bottom:851.653333pt;}
.y16{bottom:854.373333pt;}
.y11f{bottom:859.333333pt;}
.y42{bottom:866.213333pt;}
.y6f{bottom:867.013333pt;}
.y11e{bottom:874.693333pt;}
.y15{bottom:875.493333pt;}
.y41{bottom:881.573333pt;}
.y6e{bottom:882.373333pt;}
.y11d{bottom:890.053333pt;}
.y13{bottom:896.613333pt;}
.y40{bottom:896.933333pt;}
.y6d{bottom:897.733333pt;}
.y14{bottom:901.893333pt;}
.y11c{bottom:905.093333pt;}
.y3f{bottom:912.293333pt;}
.y6c{bottom:913.093333pt;}
.y12{bottom:917.893333pt;}
.y11b{bottom:918.853333pt;}
.y6b{bottom:928.453333pt;}
.y3e{bottom:929.893333pt;}
.y11a{bottom:932.773333pt;}
.y11{bottom:937.893333pt;}
.y6a{bottom:943.653333pt;}
.y119{bottom:946.533333pt;}
.y10{bottom:956.613333pt;}
.y69{bottom:959.013333pt;}
.y118{bottom:960.293333pt;}
.y3{bottom:1029.120000pt;}
.y2{bottom:1046.880000pt;}
.y1{bottom:1062.240000pt;}
.h10{height:28.687500pt;}
.hc{height:30.982500pt;}
.h6{height:39.362500pt;}
.hb{height:42.632812pt;}
.h5{height:43.031250pt;}
.ha{height:43.242188pt;}
.h14{height:44.039062pt;}
.h9{height:44.062500pt;}
.he{height:47.180312pt;}
.hd{height:47.621250pt;}
.h2{height:47.854688pt;}
.h11{height:48.736562pt;}
.h7{height:48.762500pt;}
.h13{height:49.851875pt;}
.hf{height:56.843750pt;}
.h4{height:57.375000pt;}
.h3{height:57.656250pt;}
.h12{height:58.718750pt;}
.h8{height:58.750000pt;}
.h1{height:1122.666667pt;}
.h0{height:1122.720000pt;}
.w3{width:793.759976pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x5{left:151.226655pt;}
.x10{left:155.546655pt;}
.xd{left:161.946655pt;}
.x12{left:170.106655pt;}
.x9{left:185.466655pt;}
.x6{left:188.666655pt;}
.x11{left:199.226655pt;}
.x2{left:271.106655pt;}
.xa{left:273.826655pt;}
.x7{left:293.186655pt;}
.xe{left:356.866655pt;}
.xf{left:380.733322pt;}
.x8{left:396.893322pt;}
.x3{left:403.613322pt;}
.x1{left:415.613322pt;}
.x4{left:466.493322pt;}
.x15{left:510.973310pt;}
.xb{left:514.493310pt;}
.xc{left:519.973322pt;}
.x13{left:635.173310pt;}
.x14{left:639.493322pt;}
}




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