
    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_801086a39e3d2e626c30516a.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.088379;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_73296415e4a265b6829acab2.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.043945;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_4a85859e4e59e05cee0f2900.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_51769174727d208c60b1e190.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.927734;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_3027bd753b349418a2a3ce71.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.842285;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);}
.v3{vertical-align:-17.982000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:20.976000px;}
.v4{vertical-align:21.978000px;}
.v2{vertical-align:25.974000px;}
.ls3{letter-spacing:0.000000px;}
.ls4{letter-spacing:0.006000px;}
.ls2{letter-spacing:0.006296px;}
.ls1{letter-spacing:0.009186px;}
.ls9{letter-spacing:0.010800px;}
.ls0{letter-spacing:0.016200px;}
.lsa{letter-spacing:0.324265px;}
.ls5{letter-spacing:0.384000px;}
.ls7{letter-spacing:0.387229px;}
.ls8{letter-spacing:0.465934px;}
.ls6{letter-spacing:0.513157px;}
.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;}
}
.ws8{word-spacing:-42.012000px;}
.ws2{word-spacing:-14.520000px;}
.ws0{word-spacing:-13.860000px;}
.ws5{word-spacing:-11.880000px;}
.ws7{word-spacing:-8.465160px;}
.ws4{word-spacing:-6.932336px;}
.ws3{word-spacing:-6.926040px;}
.ws1{word-spacing:-0.032400px;}
.ws6{word-spacing:0.000000px;}
._1f{margin-left:-11.444400px;}
._1e{margin-left:-10.423800px;}
._20{margin-left:-7.866300px;}
._3{margin-left:-6.607200px;}
._d{margin-left:-5.352000px;}
._1{margin-left:-4.063500px;}
._0{margin-left:-3.040200px;}
._2{margin-left:-1.820700px;}
._4{width:1.241400px;}
._8{width:2.904000px;}
._5{width:4.258200px;}
._6{width:5.520600px;}
._a{width:7.319400px;}
._b{width:8.619600px;}
._c{width:10.289400px;}
._9{width:11.451000px;}
._19{width:12.459900px;}
._7{width:13.469700px;}
._1c{width:14.918434px;}
._12{width:16.083300px;}
._11{width:17.424000px;}
._10{width:18.447000px;}
._e{width:19.707600px;}
._f{width:20.869200px;}
._14{width:22.182000px;}
._17{width:23.412600px;}
._16{width:24.446400px;}
._18{width:25.812000px;}
._1b{width:27.621000px;}
._1a{width:28.803300px;}
._13{width:30.741900px;}
._15{width:32.247900px;}
._1d{width:33.685800px;}
._21{width:34.725000px;}
._22{width:36.370200px;}
._24{width:46.372800px;}
._23{width:48.673200px;}
.fc1{color:rgb(19,16,15);}
.fc0{color:rgb(35,31,32);}
.fs6{font-size:31.482000px;}
.fs2{font-size:36.729000px;}
.fs8{font-size:38.478000px;}
.fs4{font-size:45.474000px;}
.fs7{font-size:48.000000px;}
.fs1{font-size:54.000000px;}
.fs0{font-size:63.000000px;}
.fs5{font-size:66.000000px;}
.fs3{font-size:78.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:89.291400px;}
.y27{bottom:126.975900px;}
.y74{bottom:133.653900px;}
.y19b{bottom:136.902900px;}
.yb5{bottom:138.149400px;}
.yd5{bottom:140.853900px;}
.y26{bottom:143.175900px;}
.y179{bottom:149.886900px;}
.y98{bottom:151.653900px;}
.y19a{bottom:155.652900px;}
.y73{bottom:156.149400px;}
.y12a{bottom:156.602400px;}
.yd4{bottom:157.053900px;}
.y4c{bottom:158.294400px;}
.y25{bottom:163.871400px;}
.y178{bottom:168.636900px;}
.y97{bottom:169.653900px;}
.yd3{bottom:173.253900px;}
.yc4{bottom:174.149400px;}
.y199{bottom:174.402900px;}
.y24{bottom:175.575900px;}
.y4b{bottom:177.644400px;}
.y129{bottom:178.536900px;}
.ye5{bottom:185.856900px;}
.y176{bottom:187.386900px;}
.y96{bottom:187.653900px;}
.y72{bottom:188.286900px;}
.y23{bottom:191.775900px;}
.yb3{bottom:192.149400px;}
.y198{bottom:193.152900px;}
.yd2{bottom:193.949400px;}
.y128{bottom:196.986900px;}
.y4a{bottom:196.994400px;}
.ye4{bottom:202.056900px;}
.y95{bottom:205.653900px;}
.y175{bottom:206.136900px;}
.y71{bottom:207.036900px;}
.yb4{bottom:210.149400px;}
.y197{bottom:211.902900px;}
.y150{bottom:212.136900px;}
.y22{bottom:212.471400px;}
.y127{bottom:215.436900px;}
.y49{bottom:216.344400px;}
.ye3{bottom:218.256900px;}
.y94{bottom:223.653900px;}
.y174{bottom:224.886900px;}
.y70{bottom:225.786900px;}
.yc5{bottom:228.149400px;}
.y21{bottom:228.671400px;}
.y196{bottom:230.652900px;}
.y14f{bottom:231.636900px;}
.y126{bottom:233.886900px;}
.ye2{bottom:234.456900px;}
.y48{bottom:235.694400px;}
.y173{bottom:236.886900px;}
.y93{bottom:241.653900px;}
.y134{bottom:243.636900px;}
.y6f{bottom:244.536900px;}
.y166{bottom:246.149400px;}
.y195{bottom:249.402900px;}
.ye1{bottom:250.656900px;}
.y14e{bottom:251.136900px;}
.y125{bottom:252.336900px;}
.yc3{bottom:252.636900px;}
.y47{bottom:255.044400px;}
.y172{bottom:255.636900px;}
.yb7{bottom:259.653900px;}
.y133{bottom:262.386900px;}
.y6e{bottom:263.286900px;}
.y92{bottom:264.149400px;}
.y20{bottom:265.902900px;}
.ye0{bottom:266.856900px;}
.y194{bottom:268.152900px;}
.y14d{bottom:270.636900px;}
.y124{bottom:270.786900px;}
.yc2{bottom:271.386900px;}
.y171{bottom:274.386900px;}
.y46{bottom:274.394400px;}
.y91{bottom:277.653900px;}
.y132{bottom:281.136900px;}
.y6d{bottom:282.036900px;}
.ydf{bottom:283.056900px;}
.y1f{bottom:284.652900px;}
.y193{bottom:286.902900px;}
.y123{bottom:289.236900px;}
.yc1{bottom:290.136900px;}
.yd1{bottom:291.636900px;}
.y170{bottom:293.136900px;}
.y45{bottom:293.744400px;}
.y90{bottom:295.653900px;}
.yde{bottom:299.256900px;}
.y131{bottom:299.886900px;}
.yb6{bottom:300.149400px;}
.y6c{bottom:300.786900px;}
.y1e{bottom:303.402900px;}
.y192{bottom:305.652900px;}
.y122{bottom:307.686900px;}
.yc0{bottom:308.886900px;}
.yd0{bottom:310.386900px;}
.y14c{bottom:311.136900px;}
.y16f{bottom:311.886900px;}
.y44{bottom:313.094400px;}
.y8f{bottom:313.653900px;}
.ydd{bottom:315.456900px;}
.yeb{bottom:318.149400px;}
.y130{bottom:318.636900px;}
.y6b{bottom:319.536900px;}
.y177{bottom:320.136900px;}
.y1d{bottom:322.152900px;}
.y191{bottom:325.902900px;}
.y121{bottom:326.136900px;}
.ybf{bottom:327.636900px;}
.yef{bottom:329.631900px;}
.y14b{bottom:330.636900px;}
.yfb{bottom:331.653900px;}
.ydc{bottom:331.656900px;}
.y43{bottom:332.444400px;}
.y8e{bottom:336.149400px;}
.yb2{bottom:337.386900px;}
.ycf{bottom:338.136900px;}
.y6a{bottom:338.286900px;}
.yf3{bottom:338.886900px;}
.y1c{bottom:340.902900px;}
.y190{bottom:344.652900px;}
.yee{bottom:345.831900px;}
.y120{bottom:346.086900px;}
.ybe{bottom:347.886900px;}
.y16e{bottom:349.386900px;}
.yfa{bottom:349.653900px;}
.y14a{bottom:350.136900px;}
.y42{bottom:351.794400px;}
.ydb{bottom:352.352400px;}
.y103{bottom:354.149400px;}
.yb1{bottom:356.136900px;}
.y69{bottom:357.036900px;}
.yf2{bottom:357.636900px;}
.y1b{bottom:359.652900px;}
.yed{bottom:362.031900px;}
.y18f{bottom:363.402900px;}
.y11f{bottom:364.536900px;}
.ybd{bottom:366.636900px;}
.yf9{bottom:367.653900px;}
.y16d{bottom:368.136900px;}
.y149{bottom:369.636900px;}
.y41{bottom:371.144400px;}
.y15f{bottom:372.149400px;}
.yb0{bottom:374.886900px;}
.y68{bottom:375.786900px;}
.yce{bottom:376.386900px;}
.y1a{bottom:378.402900px;}
.y18e{bottom:382.152900px;}
.yec{bottom:382.727400px;}
.y11e{bottom:382.986900px;}
.y8d{bottom:385.386900px;}
.y164{bottom:385.653900px;}
.y102{bottom:388.686900px;}
.y148{bottom:389.136900px;}
.yf8{bottom:390.149400px;}
.y40{bottom:390.494400px;}
.yaf{bottom:393.636900px;}
.y67{bottom:394.536900px;}
.ycd{bottom:395.136900px;}
.y16c{bottom:395.886900px;}
.y19{bottom:397.152900px;}
.y18d{bottom:400.902900px;}
.y11d{bottom:401.436900px;}
.yf7{bottom:403.653900px;}
.y8c{bottom:404.136900px;}
.y101{bottom:407.136900px;}
.y147{bottom:408.636900px;}
.y3f{bottom:409.844400px;}
.yae{bottom:412.386900px;}
.y66{bottom:413.286900px;}
.ycc{bottom:413.886900px;}
.y18{bottom:415.902900px;}
.y18c{bottom:419.652900px;}
.y11c{bottom:419.886900px;}
.y163{bottom:421.653900px;}
.y8b{bottom:422.886900px;}
.y100{bottom:425.586900px;}
.yf6{bottom:426.149400px;}
.y146{bottom:428.136900px;}
.y3e{bottom:429.194400px;}
.yad{bottom:431.136900px;}
.y65{bottom:432.036900px;}
.ycb{bottom:432.636900px;}
.y16b{bottom:434.136900px;}
.y17{bottom:434.652900px;}
.y11b{bottom:438.336900px;}
.y18b{bottom:438.402900px;}
.yf5{bottom:439.653900px;}
.y8a{bottom:441.636900px;}
.yff{bottom:444.036900px;}
.y145{bottom:447.636900px;}
.y3d{bottom:448.544400px;}
.yac{bottom:449.886900px;}
.y64{bottom:450.786900px;}
.yca{bottom:451.386900px;}
.y16a{bottom:452.886900px;}
.y16{bottom:453.402900px;}
.y11a{bottom:456.786900px;}
.y18a{bottom:457.152900px;}
.y162{bottom:457.653900px;}
.y89{bottom:460.386900px;}
.yf4{bottom:462.149400px;}
.yfe{bottom:462.486900px;}
.y144{bottom:467.136900px;}
.y167{bottom:468.636900px;}
.y63{bottom:469.536900px;}
.yab{bottom:470.136900px;}
.y169{bottom:471.636900px;}
.y161{bottom:475.653900px;}
.y189{bottom:475.902900px;}
.y119{bottom:476.736900px;}
.ybc{bottom:479.136900px;}
.y88{bottom:480.636900px;}
.yfd{bottom:480.936900px;}
.y15{bottom:481.152900px;}
.y3c{bottom:481.394400px;}
.y143{bottom:486.636900px;}
.y62{bottom:488.286900px;}
.yaa{bottom:488.886900px;}
.y168{bottom:490.386900px;}
.y188{bottom:494.652900px;}
.y118{bottom:495.186900px;}
.ybb{bottom:497.886900px;}
.y160{bottom:498.149400px;}
.y87{bottom:499.386900px;}
.y14{bottom:499.902900px;}
.y142{bottom:506.136900px;}
.y61{bottom:507.036900px;}
.ya9{bottom:507.636900px;}
.yfc{bottom:508.386900px;}
.yf1{bottom:509.136900px;}
.y187{bottom:513.402900px;}
.y117{bottom:513.636900px;}
.yba{bottom:516.636900px;}
.y86{bottom:518.136900px;}
.y13{bottom:518.652900px;}
.yea{bottom:525.636900px;}
.ya8{bottom:526.386900px;}
.y60{bottom:527.286900px;}
.yc9{bottom:527.886900px;}
.y116{bottom:532.086900px;}
.y186{bottom:533.652900px;}
.y3b{bottom:536.144400px;}
.y85{bottom:536.886900px;}
.y12{bottom:537.402900px;}
.y15e{bottom:544.386900px;}
.ya7{bottom:545.136900px;}
.y5f{bottom:546.036900px;}
.yc8{bottom:546.636900px;}
.y115{bottom:550.536900px;}
.y185{bottom:552.402900px;}
.y3a{bottom:554.894400px;}
.y84{bottom:555.636900px;}
.y11{bottom:556.152900px;}
.y15d{bottom:563.136900px;}
.ya6{bottom:563.886900px;}
.y141{bottom:564.636900px;}
.y5e{bottom:564.786900px;}
.yc7{bottom:565.386900px;}
.y114{bottom:568.986900px;}
.y184{bottom:571.152900px;}
.y39{bottom:573.644400px;}
.y83{bottom:574.386900px;}
.y10{bottom:574.902900px;}
.y15c{bottom:581.886900px;}
.ya5{bottom:582.636900px;}
.y5d{bottom:583.536900px;}
.yc6{bottom:584.136900px;}
.y113{bottom:587.436900px;}
.y183{bottom:589.902900px;}
.y82{bottom:593.136900px;}
.yf{bottom:593.652900px;}
.y15b{bottom:600.636900px;}
.ye9{bottom:601.386900px;}
.y5c{bottom:602.286900px;}
.ya4{bottom:602.886900px;}
.y140{bottom:603.636900px;}
.y165{bottom:604.386900px;}
.y38{bottom:604.394400px;}
.y112{bottom:607.386900px;}
.y182{bottom:608.652900px;}
.y81{bottom:611.886900px;}
.ye{bottom:612.402900px;}
.ye8{bottom:620.136900px;}
.y15a{bottom:620.886900px;}
.y5b{bottom:621.036900px;}
.ya3{bottom:621.636900px;}
.y13f{bottom:623.136900px;}
.y37{bottom:623.144400px;}
.y111{bottom:625.836900px;}
.y181{bottom:627.402900px;}
.y80{bottom:630.636900px;}
.yd{bottom:631.152900px;}
.ye7{bottom:638.886900px;}
.y159{bottom:639.636900px;}
.y5a{bottom:639.786900px;}
.ya2{bottom:640.386900px;}
.yf0{bottom:641.886900px;}
.y36{bottom:641.894400px;}
.y13e{bottom:642.636900px;}
.y110{bottom:644.286900px;}
.y180{bottom:646.152900px;}
.y7f{bottom:649.386900px;}
.yc{bottom:649.902900px;}
.ye6{bottom:657.636900px;}
.y158{bottom:658.386900px;}
.y59{bottom:658.536900px;}
.ya1{bottom:659.136900px;}
.yda{bottom:660.636900px;}
.y35{bottom:660.644400px;}
.y10f{bottom:662.736900px;}
.y17f{bottom:664.902900px;}
.yb9{bottom:668.136900px;}
.yb{bottom:668.652900px;}
.y13d{bottom:671.136900px;}
.y12f{bottom:676.386900px;}
.y7e{bottom:677.136900px;}
.y58{bottom:677.286900px;}
.ya0{bottom:677.886900px;}
.yd9{bottom:679.386900px;}
.y34{bottom:679.394400px;}
.y10e{bottom:682.686900px;}
.y17e{bottom:683.652900px;}
.y12e{bottom:695.136900px;}
.yb8{bottom:695.886900px;}
.y57{bottom:696.036900px;}
.y9f{bottom:696.636900px;}
.yd8{bottom:698.136900px;}
.y33{bottom:698.144400px;}
.y10d{bottom:701.136900px;}
.y17d{bottom:702.402900px;}
.y13c{bottom:710.136900px;}
.y12d{bottom:713.886900px;}
.y157{bottom:714.636900px;}
.y56{bottom:714.786900px;}
.y7d{bottom:715.386900px;}
.yd7{bottom:716.886900px;}
.y32{bottom:716.894400px;}
.y10c{bottom:719.586900px;}
.ya{bottom:724.902900px;}
.y13b{bottom:729.636900px;}
.y17c{bottom:730.152900px;}
.y12c{bottom:732.636900px;}
.y156{bottom:733.386900px;}
.y55{bottom:733.536900px;}
.y7c{bottom:734.136900px;}
.yd6{bottom:735.636900px;}
.y31{bottom:735.644400px;}
.y10b{bottom:738.036900px;}
.y9{bottom:747.402900px;}
.y13a{bottom:749.136900px;}
.y12b{bottom:751.386900px;}
.y155{bottom:752.136900px;}
.y54{bottom:752.286900px;}
.y7b{bottom:752.886900px;}
.y19d{bottom:752.894400px;}
.y9e{bottom:754.386900px;}
.y30{bottom:754.394400px;}
.y10a{bottom:756.486900px;}
.y17b{bottom:762.402900px;}
.y139{bottom:768.636900px;}
.y154{bottom:770.886900px;}
.y53{bottom:771.036900px;}
.y7a{bottom:771.636900px;}
.y19c{bottom:771.644400px;}
.y9d{bottom:773.136900px;}
.y2f{bottom:773.144400px;}
.y109{bottom:774.936900px;}
.y17a{bottom:781.152900px;}
.y138{bottom:788.136900px;}
.y153{bottom:789.636900px;}
.y52{bottom:789.786900px;}
.y79{bottom:790.386900px;}
.y9c{bottom:791.886900px;}
.y2e{bottom:791.894400px;}
.y108{bottom:793.386900px;}
.y137{bottom:807.636900px;}
.y152{bottom:808.386900px;}
.y51{bottom:808.536900px;}
.y78{bottom:809.136900px;}
.y9b{bottom:810.636900px;}
.y2d{bottom:810.644400px;}
.y107{bottom:811.836900px;}
.y136{bottom:827.136900px;}
.y50{bottom:827.286900px;}
.y77{bottom:827.886900px;}
.y9a{bottom:829.386900px;}
.y2c{bottom:829.394400px;}
.y8{bottom:829.902900px;}
.y106{bottom:830.286900px;}
.y4{bottom:836.598900px;}
.y151{bottom:845.886900px;}
.y4f{bottom:846.036900px;}
.y76{bottom:846.636900px;}
.y99{bottom:848.136900px;}
.y2b{bottom:848.144400px;}
.y7{bottom:848.652900px;}
.y105{bottom:848.736900px;}
.y135{bottom:866.136900px;}
.y4e{bottom:866.286900px;}
.y75{bottom:866.886900px;}
.y2a{bottom:866.894400px;}
.y104{bottom:867.186900px;}
.y6{bottom:867.402900px;}
.y3{bottom:871.538400px;}
.y4d{bottom:885.636900px;}
.y29{bottom:885.644400px;}
.y5{bottom:886.152900px;}
.y2{bottom:887.738400px;}
.y28{bottom:922.796400px;}
.h9{height:29.004328px;}
.hb{height:41.765625px;}
.h3{height:44.586914px;}
.hc{height:46.792969px;}
.ha{height:46.986328px;}
.h5{height:52.018066px;}
.h8{height:54.495117px;}
.h2{height:54.817383px;}
.h4{height:55.125000px;}
.hd{height:57.427734px;}
.h7{height:57.750000px;}
.h6{height:68.250000px;}
.h0{height:1020.473400px;}
.h1{height:1020.750000px;}
.w1{width:714.000000px;}
.w0{width:714.330600px;}
.x0{left:0.000000px;}
.x5{left:91.416600px;}
.x6{left:94.986600px;}
.xc{left:104.930100px;}
.x9{left:108.425100px;}
.x7{left:118.383600px;}
.xa{left:133.937100px;}
.x8{left:142.440600px;}
.xd{left:301.175100px;}
.xe{left:327.180600px;}
.x2{left:431.033100px;}
.x3{left:441.579600px;}
.x4{left:443.360100px;}
.xb{left:471.689100px;}
.x1{left:596.750100px;}
@media print{
.v3{vertical-align:-15.984000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:18.645333pt;}
.v4{vertical-align:19.536000pt;}
.v2{vertical-align:23.088000pt;}
.ls3{letter-spacing:0.000000pt;}
.ls4{letter-spacing:0.005333pt;}
.ls2{letter-spacing:0.005597pt;}
.ls1{letter-spacing:0.008165pt;}
.ls9{letter-spacing:0.009600pt;}
.ls0{letter-spacing:0.014400pt;}
.lsa{letter-spacing:0.288235pt;}
.ls5{letter-spacing:0.341333pt;}
.ls7{letter-spacing:0.344203pt;}
.ls8{letter-spacing:0.414163pt;}
.ls6{letter-spacing:0.456139pt;}
.ws8{word-spacing:-37.344000pt;}
.ws2{word-spacing:-12.906667pt;}
.ws0{word-spacing:-12.320000pt;}
.ws5{word-spacing:-10.560000pt;}
.ws7{word-spacing:-7.524587pt;}
.ws4{word-spacing:-6.162077pt;}
.ws3{word-spacing:-6.156480pt;}
.ws1{word-spacing:-0.028800pt;}
.ws6{word-spacing:0.000000pt;}
._1f{margin-left:-10.172800pt;}
._1e{margin-left:-9.265600pt;}
._20{margin-left:-6.992267pt;}
._3{margin-left:-5.873067pt;}
._d{margin-left:-4.757333pt;}
._1{margin-left:-3.612000pt;}
._0{margin-left:-2.702400pt;}
._2{margin-left:-1.618400pt;}
._4{width:1.103467pt;}
._8{width:2.581333pt;}
._5{width:3.785067pt;}
._6{width:4.907200pt;}
._a{width:6.506133pt;}
._b{width:7.661867pt;}
._c{width:9.146133pt;}
._9{width:10.178667pt;}
._19{width:11.075467pt;}
._7{width:11.973067pt;}
._1c{width:13.260830pt;}
._12{width:14.296267pt;}
._11{width:15.488000pt;}
._10{width:16.397333pt;}
._e{width:17.517867pt;}
._f{width:18.550400pt;}
._14{width:19.717333pt;}
._17{width:20.811200pt;}
._16{width:21.730133pt;}
._18{width:22.944000pt;}
._1b{width:24.552000pt;}
._1a{width:25.602933pt;}
._13{width:27.326133pt;}
._15{width:28.664800pt;}
._1d{width:29.942933pt;}
._21{width:30.866667pt;}
._22{width:32.329067pt;}
._24{width:41.220267pt;}
._23{width:43.265067pt;}
.fs6{font-size:27.984000pt;}
.fs2{font-size:32.648000pt;}
.fs8{font-size:34.202667pt;}
.fs4{font-size:40.421333pt;}
.fs7{font-size:42.666667pt;}
.fs1{font-size:48.000000pt;}
.fs0{font-size:56.000000pt;}
.fs5{font-size:58.666667pt;}
.fs3{font-size:69.333333pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:79.370133pt;}
.y27{bottom:112.867467pt;}
.y74{bottom:118.803467pt;}
.y19b{bottom:121.691467pt;}
.yb5{bottom:122.799467pt;}
.yd5{bottom:125.203467pt;}
.y26{bottom:127.267467pt;}
.y179{bottom:133.232800pt;}
.y98{bottom:134.803467pt;}
.y19a{bottom:138.358133pt;}
.y73{bottom:138.799467pt;}
.y12a{bottom:139.202133pt;}
.yd4{bottom:139.603467pt;}
.y4c{bottom:140.706133pt;}
.y25{bottom:145.663467pt;}
.y178{bottom:149.899467pt;}
.y97{bottom:150.803467pt;}
.yd3{bottom:154.003467pt;}
.yc4{bottom:154.799467pt;}
.y199{bottom:155.024800pt;}
.y24{bottom:156.067467pt;}
.y4b{bottom:157.906133pt;}
.y129{bottom:158.699467pt;}
.ye5{bottom:165.206133pt;}
.y176{bottom:166.566133pt;}
.y96{bottom:166.803467pt;}
.y72{bottom:167.366133pt;}
.y23{bottom:170.467467pt;}
.yb3{bottom:170.799467pt;}
.y198{bottom:171.691467pt;}
.yd2{bottom:172.399467pt;}
.y128{bottom:175.099467pt;}
.y4a{bottom:175.106133pt;}
.ye4{bottom:179.606133pt;}
.y95{bottom:182.803467pt;}
.y175{bottom:183.232800pt;}
.y71{bottom:184.032800pt;}
.yb4{bottom:186.799467pt;}
.y197{bottom:188.358133pt;}
.y150{bottom:188.566133pt;}
.y22{bottom:188.863467pt;}
.y127{bottom:191.499467pt;}
.y49{bottom:192.306133pt;}
.ye3{bottom:194.006133pt;}
.y94{bottom:198.803467pt;}
.y174{bottom:199.899467pt;}
.y70{bottom:200.699467pt;}
.yc5{bottom:202.799467pt;}
.y21{bottom:203.263467pt;}
.y196{bottom:205.024800pt;}
.y14f{bottom:205.899467pt;}
.y126{bottom:207.899467pt;}
.ye2{bottom:208.406133pt;}
.y48{bottom:209.506133pt;}
.y173{bottom:210.566133pt;}
.y93{bottom:214.803467pt;}
.y134{bottom:216.566133pt;}
.y6f{bottom:217.366133pt;}
.y166{bottom:218.799467pt;}
.y195{bottom:221.691467pt;}
.ye1{bottom:222.806133pt;}
.y14e{bottom:223.232800pt;}
.y125{bottom:224.299467pt;}
.yc3{bottom:224.566133pt;}
.y47{bottom:226.706133pt;}
.y172{bottom:227.232800pt;}
.yb7{bottom:230.803467pt;}
.y133{bottom:233.232800pt;}
.y6e{bottom:234.032800pt;}
.y92{bottom:234.799467pt;}
.y20{bottom:236.358133pt;}
.ye0{bottom:237.206133pt;}
.y194{bottom:238.358133pt;}
.y14d{bottom:240.566133pt;}
.y124{bottom:240.699467pt;}
.yc2{bottom:241.232800pt;}
.y171{bottom:243.899467pt;}
.y46{bottom:243.906133pt;}
.y91{bottom:246.803467pt;}
.y132{bottom:249.899467pt;}
.y6d{bottom:250.699467pt;}
.ydf{bottom:251.606133pt;}
.y1f{bottom:253.024800pt;}
.y193{bottom:255.024800pt;}
.y123{bottom:257.099467pt;}
.yc1{bottom:257.899467pt;}
.yd1{bottom:259.232800pt;}
.y170{bottom:260.566133pt;}
.y45{bottom:261.106133pt;}
.y90{bottom:262.803467pt;}
.yde{bottom:266.006133pt;}
.y131{bottom:266.566133pt;}
.yb6{bottom:266.799467pt;}
.y6c{bottom:267.366133pt;}
.y1e{bottom:269.691467pt;}
.y192{bottom:271.691467pt;}
.y122{bottom:273.499467pt;}
.yc0{bottom:274.566133pt;}
.yd0{bottom:275.899467pt;}
.y14c{bottom:276.566133pt;}
.y16f{bottom:277.232800pt;}
.y44{bottom:278.306133pt;}
.y8f{bottom:278.803467pt;}
.ydd{bottom:280.406133pt;}
.yeb{bottom:282.799467pt;}
.y130{bottom:283.232800pt;}
.y6b{bottom:284.032800pt;}
.y177{bottom:284.566133pt;}
.y1d{bottom:286.358133pt;}
.y191{bottom:289.691467pt;}
.y121{bottom:289.899467pt;}
.ybf{bottom:291.232800pt;}
.yef{bottom:293.006133pt;}
.y14b{bottom:293.899467pt;}
.yfb{bottom:294.803467pt;}
.ydc{bottom:294.806133pt;}
.y43{bottom:295.506133pt;}
.y8e{bottom:298.799467pt;}
.yb2{bottom:299.899467pt;}
.ycf{bottom:300.566133pt;}
.y6a{bottom:300.699467pt;}
.yf3{bottom:301.232800pt;}
.y1c{bottom:303.024800pt;}
.y190{bottom:306.358133pt;}
.yee{bottom:307.406133pt;}
.y120{bottom:307.632800pt;}
.ybe{bottom:309.232800pt;}
.y16e{bottom:310.566133pt;}
.yfa{bottom:310.803467pt;}
.y14a{bottom:311.232800pt;}
.y42{bottom:312.706133pt;}
.ydb{bottom:313.202133pt;}
.y103{bottom:314.799467pt;}
.yb1{bottom:316.566133pt;}
.y69{bottom:317.366133pt;}
.yf2{bottom:317.899467pt;}
.y1b{bottom:319.691467pt;}
.yed{bottom:321.806133pt;}
.y18f{bottom:323.024800pt;}
.y11f{bottom:324.032800pt;}
.ybd{bottom:325.899467pt;}
.yf9{bottom:326.803467pt;}
.y16d{bottom:327.232800pt;}
.y149{bottom:328.566133pt;}
.y41{bottom:329.906133pt;}
.y15f{bottom:330.799467pt;}
.yb0{bottom:333.232800pt;}
.y68{bottom:334.032800pt;}
.yce{bottom:334.566133pt;}
.y1a{bottom:336.358133pt;}
.y18e{bottom:339.691467pt;}
.yec{bottom:340.202133pt;}
.y11e{bottom:340.432800pt;}
.y8d{bottom:342.566133pt;}
.y164{bottom:342.803467pt;}
.y102{bottom:345.499467pt;}
.y148{bottom:345.899467pt;}
.yf8{bottom:346.799467pt;}
.y40{bottom:347.106133pt;}
.yaf{bottom:349.899467pt;}
.y67{bottom:350.699467pt;}
.ycd{bottom:351.232800pt;}
.y16c{bottom:351.899467pt;}
.y19{bottom:353.024800pt;}
.y18d{bottom:356.358133pt;}
.y11d{bottom:356.832800pt;}
.yf7{bottom:358.803467pt;}
.y8c{bottom:359.232800pt;}
.y101{bottom:361.899467pt;}
.y147{bottom:363.232800pt;}
.y3f{bottom:364.306133pt;}
.yae{bottom:366.566133pt;}
.y66{bottom:367.366133pt;}
.ycc{bottom:367.899467pt;}
.y18{bottom:369.691467pt;}
.y18c{bottom:373.024800pt;}
.y11c{bottom:373.232800pt;}
.y163{bottom:374.803467pt;}
.y8b{bottom:375.899467pt;}
.y100{bottom:378.299467pt;}
.yf6{bottom:378.799467pt;}
.y146{bottom:380.566133pt;}
.y3e{bottom:381.506133pt;}
.yad{bottom:383.232800pt;}
.y65{bottom:384.032800pt;}
.ycb{bottom:384.566133pt;}
.y16b{bottom:385.899467pt;}
.y17{bottom:386.358133pt;}
.y11b{bottom:389.632800pt;}
.y18b{bottom:389.691467pt;}
.yf5{bottom:390.803467pt;}
.y8a{bottom:392.566133pt;}
.yff{bottom:394.699467pt;}
.y145{bottom:397.899467pt;}
.y3d{bottom:398.706133pt;}
.yac{bottom:399.899467pt;}
.y64{bottom:400.699467pt;}
.yca{bottom:401.232800pt;}
.y16a{bottom:402.566133pt;}
.y16{bottom:403.024800pt;}
.y11a{bottom:406.032800pt;}
.y18a{bottom:406.358133pt;}
.y162{bottom:406.803467pt;}
.y89{bottom:409.232800pt;}
.yf4{bottom:410.799467pt;}
.yfe{bottom:411.099467pt;}
.y144{bottom:415.232800pt;}
.y167{bottom:416.566133pt;}
.y63{bottom:417.366133pt;}
.yab{bottom:417.899467pt;}
.y169{bottom:419.232800pt;}
.y161{bottom:422.803467pt;}
.y189{bottom:423.024800pt;}
.y119{bottom:423.766133pt;}
.ybc{bottom:425.899467pt;}
.y88{bottom:427.232800pt;}
.yfd{bottom:427.499467pt;}
.y15{bottom:427.691467pt;}
.y3c{bottom:427.906133pt;}
.y143{bottom:432.566133pt;}
.y62{bottom:434.032800pt;}
.yaa{bottom:434.566133pt;}
.y168{bottom:435.899467pt;}
.y188{bottom:439.691467pt;}
.y118{bottom:440.166133pt;}
.ybb{bottom:442.566133pt;}
.y160{bottom:442.799467pt;}
.y87{bottom:443.899467pt;}
.y14{bottom:444.358133pt;}
.y142{bottom:449.899467pt;}
.y61{bottom:450.699467pt;}
.ya9{bottom:451.232800pt;}
.yfc{bottom:451.899467pt;}
.yf1{bottom:452.566133pt;}
.y187{bottom:456.358133pt;}
.y117{bottom:456.566133pt;}
.yba{bottom:459.232800pt;}
.y86{bottom:460.566133pt;}
.y13{bottom:461.024800pt;}
.yea{bottom:467.232800pt;}
.ya8{bottom:467.899467pt;}
.y60{bottom:468.699467pt;}
.yc9{bottom:469.232800pt;}
.y116{bottom:472.966133pt;}
.y186{bottom:474.358133pt;}
.y3b{bottom:476.572800pt;}
.y85{bottom:477.232800pt;}
.y12{bottom:477.691467pt;}
.y15e{bottom:483.899467pt;}
.ya7{bottom:484.566133pt;}
.y5f{bottom:485.366133pt;}
.yc8{bottom:485.899467pt;}
.y115{bottom:489.366133pt;}
.y185{bottom:491.024800pt;}
.y3a{bottom:493.239467pt;}
.y84{bottom:493.899467pt;}
.y11{bottom:494.358133pt;}
.y15d{bottom:500.566133pt;}
.ya6{bottom:501.232800pt;}
.y141{bottom:501.899467pt;}
.y5e{bottom:502.032800pt;}
.yc7{bottom:502.566133pt;}
.y114{bottom:505.766133pt;}
.y184{bottom:507.691467pt;}
.y39{bottom:509.906133pt;}
.y83{bottom:510.566133pt;}
.y10{bottom:511.024800pt;}
.y15c{bottom:517.232800pt;}
.ya5{bottom:517.899467pt;}
.y5d{bottom:518.699467pt;}
.yc6{bottom:519.232800pt;}
.y113{bottom:522.166133pt;}
.y183{bottom:524.358133pt;}
.y82{bottom:527.232800pt;}
.yf{bottom:527.691467pt;}
.y15b{bottom:533.899467pt;}
.ye9{bottom:534.566133pt;}
.y5c{bottom:535.366133pt;}
.ya4{bottom:535.899467pt;}
.y140{bottom:536.566133pt;}
.y165{bottom:537.232800pt;}
.y38{bottom:537.239467pt;}
.y112{bottom:539.899467pt;}
.y182{bottom:541.024800pt;}
.y81{bottom:543.899467pt;}
.ye{bottom:544.358133pt;}
.ye8{bottom:551.232800pt;}
.y15a{bottom:551.899467pt;}
.y5b{bottom:552.032800pt;}
.ya3{bottom:552.566133pt;}
.y13f{bottom:553.899467pt;}
.y37{bottom:553.906133pt;}
.y111{bottom:556.299467pt;}
.y181{bottom:557.691467pt;}
.y80{bottom:560.566133pt;}
.yd{bottom:561.024800pt;}
.ye7{bottom:567.899467pt;}
.y159{bottom:568.566133pt;}
.y5a{bottom:568.699467pt;}
.ya2{bottom:569.232800pt;}
.yf0{bottom:570.566133pt;}
.y36{bottom:570.572800pt;}
.y13e{bottom:571.232800pt;}
.y110{bottom:572.699467pt;}
.y180{bottom:574.358133pt;}
.y7f{bottom:577.232800pt;}
.yc{bottom:577.691467pt;}
.ye6{bottom:584.566133pt;}
.y158{bottom:585.232800pt;}
.y59{bottom:585.366133pt;}
.ya1{bottom:585.899467pt;}
.yda{bottom:587.232800pt;}
.y35{bottom:587.239467pt;}
.y10f{bottom:589.099467pt;}
.y17f{bottom:591.024800pt;}
.yb9{bottom:593.899467pt;}
.yb{bottom:594.358133pt;}
.y13d{bottom:596.566133pt;}
.y12f{bottom:601.232800pt;}
.y7e{bottom:601.899467pt;}
.y58{bottom:602.032800pt;}
.ya0{bottom:602.566133pt;}
.yd9{bottom:603.899467pt;}
.y34{bottom:603.906133pt;}
.y10e{bottom:606.832800pt;}
.y17e{bottom:607.691467pt;}
.y12e{bottom:617.899467pt;}
.yb8{bottom:618.566133pt;}
.y57{bottom:618.699467pt;}
.y9f{bottom:619.232800pt;}
.yd8{bottom:620.566133pt;}
.y33{bottom:620.572800pt;}
.y10d{bottom:623.232800pt;}
.y17d{bottom:624.358133pt;}
.y13c{bottom:631.232800pt;}
.y12d{bottom:634.566133pt;}
.y157{bottom:635.232800pt;}
.y56{bottom:635.366133pt;}
.y7d{bottom:635.899467pt;}
.yd7{bottom:637.232800pt;}
.y32{bottom:637.239467pt;}
.y10c{bottom:639.632800pt;}
.ya{bottom:644.358133pt;}
.y13b{bottom:648.566133pt;}
.y17c{bottom:649.024800pt;}
.y12c{bottom:651.232800pt;}
.y156{bottom:651.899467pt;}
.y55{bottom:652.032800pt;}
.y7c{bottom:652.566133pt;}
.yd6{bottom:653.899467pt;}
.y31{bottom:653.906133pt;}
.y10b{bottom:656.032800pt;}
.y9{bottom:664.358133pt;}
.y13a{bottom:665.899467pt;}
.y12b{bottom:667.899467pt;}
.y155{bottom:668.566133pt;}
.y54{bottom:668.699467pt;}
.y7b{bottom:669.232800pt;}
.y19d{bottom:669.239467pt;}
.y9e{bottom:670.566133pt;}
.y30{bottom:670.572800pt;}
.y10a{bottom:672.432800pt;}
.y17b{bottom:677.691467pt;}
.y139{bottom:683.232800pt;}
.y154{bottom:685.232800pt;}
.y53{bottom:685.366133pt;}
.y7a{bottom:685.899467pt;}
.y19c{bottom:685.906133pt;}
.y9d{bottom:687.232800pt;}
.y2f{bottom:687.239467pt;}
.y109{bottom:688.832800pt;}
.y17a{bottom:694.358133pt;}
.y138{bottom:700.566133pt;}
.y153{bottom:701.899467pt;}
.y52{bottom:702.032800pt;}
.y79{bottom:702.566133pt;}
.y9c{bottom:703.899467pt;}
.y2e{bottom:703.906133pt;}
.y108{bottom:705.232800pt;}
.y137{bottom:717.899467pt;}
.y152{bottom:718.566133pt;}
.y51{bottom:718.699467pt;}
.y78{bottom:719.232800pt;}
.y9b{bottom:720.566133pt;}
.y2d{bottom:720.572800pt;}
.y107{bottom:721.632800pt;}
.y136{bottom:735.232800pt;}
.y50{bottom:735.366133pt;}
.y77{bottom:735.899467pt;}
.y9a{bottom:737.232800pt;}
.y2c{bottom:737.239467pt;}
.y8{bottom:737.691467pt;}
.y106{bottom:738.032800pt;}
.y4{bottom:743.643467pt;}
.y151{bottom:751.899467pt;}
.y4f{bottom:752.032800pt;}
.y76{bottom:752.566133pt;}
.y99{bottom:753.899467pt;}
.y2b{bottom:753.906133pt;}
.y7{bottom:754.358133pt;}
.y105{bottom:754.432800pt;}
.y135{bottom:769.899467pt;}
.y4e{bottom:770.032800pt;}
.y75{bottom:770.566133pt;}
.y2a{bottom:770.572800pt;}
.y104{bottom:770.832800pt;}
.y6{bottom:771.024800pt;}
.y3{bottom:774.700800pt;}
.y4d{bottom:787.232800pt;}
.y29{bottom:787.239467pt;}
.y5{bottom:787.691467pt;}
.y2{bottom:789.100800pt;}
.y28{bottom:820.263467pt;}
.h9{height:25.781625pt;}
.hb{height:37.125000pt;}
.h3{height:39.632812pt;}
.hc{height:41.593750pt;}
.ha{height:41.765625pt;}
.h5{height:46.238281pt;}
.h8{height:48.440104pt;}
.h2{height:48.726562pt;}
.h4{height:49.000000pt;}
.hd{height:51.046875pt;}
.h7{height:51.333333pt;}
.h6{height:60.666667pt;}
.h0{height:907.087467pt;}
.h1{height:907.333333pt;}
.w1{width:634.666667pt;}
.w0{width:634.960533pt;}
.x0{left:0.000000pt;}
.x5{left:81.259200pt;}
.x6{left:84.432533pt;}
.xc{left:93.271200pt;}
.x9{left:96.377867pt;}
.x7{left:105.229867pt;}
.xa{left:119.055200pt;}
.x8{left:126.613867pt;}
.xd{left:267.711200pt;}
.xe{left:290.827200pt;}
.x2{left:383.140533pt;}
.x3{left:392.515200pt;}
.x4{left:394.097867pt;}
.xb{left:419.279200pt;}
.x1{left:530.444533pt;}
}




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