
    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_5ca1069b9c7bcb0263e54599.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.087402;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_4abfa06c74db7d4b69176ad0.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.927246;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_dc0649dc708726b2b3109f3a.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.942383;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_bf157a595d6d9f67614ebed4.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_c7414e5a73c33e162ad0c88d.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.730957;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);}
.v5{vertical-align:-21.978000px;}
.v3{vertical-align:-17.982000px;}
.v0{vertical-align:0.000000px;}
.v6{vertical-align:17.982000px;}
.v1{vertical-align:20.976000px;}
.v4{vertical-align:21.978000px;}
.v2{vertical-align:25.974000px;}
.ls3{letter-spacing:0.000000px;}
.ls8{letter-spacing:0.000168px;}
.ls9{letter-spacing:0.003148px;}
.ls5{letter-spacing:0.006000px;}
.ls2{letter-spacing:0.006296px;}
.ls1{letter-spacing:0.009186px;}
.ls4{letter-spacing:0.009445px;}
.ls0{letter-spacing:0.016200px;}
.ls7{letter-spacing:0.425007px;}
.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;}
}
.ws1{word-spacing:-14.520000px;}
.ws0{word-spacing:-13.860000px;}
.ws6{word-spacing:-11.880000px;}
.ws5{word-spacing:-8.465160px;}
.ws3{word-spacing:-6.932336px;}
.ws2{word-spacing:-6.926040px;}
.ws4{word-spacing:0.000000px;}
.wsc{word-spacing:0.010200px;}
.ws7{word-spacing:7.052759px;}
.ws9{word-spacing:9.764759px;}
.wsb{word-spacing:14.990759px;}
.wsa{word-spacing:15.506759px;}
.ws8{word-spacing:15.962759px;}
._1{margin-left:-10.627200px;}
._0{margin-left:-9.428400px;}
._1a{margin-left:-8.007900px;}
._5{margin-left:-6.054900px;}
._4{margin-left:-4.063500px;}
._2{margin-left:-3.040200px;}
._3{margin-left:-1.278900px;}
._6{width:1.070400px;}
._7{width:2.308800px;}
._8{width:3.993000px;}
._9{width:5.121600px;}
._f{width:6.220200px;}
._10{width:7.616400px;}
._b{width:9.457800px;}
._12{width:10.540200px;}
._a{width:12.203400px;}
._d{width:13.233000px;}
._19{width:14.345904px;}
._11{width:15.647100px;}
._e{width:17.179800px;}
._14{width:18.511500px;}
._15{width:19.709400px;}
._16{width:21.628200px;}
._1b{width:22.648800px;}
._18{width:23.805216px;}
._c{width:25.502400px;}
._17{width:27.139200px;}
._1e{width:28.812000px;}
._1d{width:30.660000px;}
._13{width:35.138400px;}
._1c{width:46.118700px;}
.fc1{color:rgb(19,16,15);}
.fc0{color:rgb(35,31,32);}
.fs9{font-size:0.839520px;}
.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;}
.y74{bottom:123.633900px;}
.ybb{bottom:123.704400px;}
.y13e{bottom:123.765900px;}
.y29{bottom:124.575900px;}
.y4f{bottom:128.021400px;}
.y9c{bottom:128.199900px;}
.ye5{bottom:128.229900px;}
.y145{bottom:137.253900px;}
.y4e{bottom:139.353900px;}
.y73{bottom:139.460400px;}
.y9b{bottom:139.530900px;}
.y28{bottom:140.775900px;}
.yba{bottom:144.026400px;}
.y13d{bottom:144.089400px;}
.y158{bottom:148.386900px;}
.y11e{bottom:154.386900px;}
.y18e{bottom:154.844400px;}
.y9a{bottom:155.357400px;}
.y13c{bottom:155.420400px;}
.y27{bottom:156.975900px;}
.y144{bottom:157.949400px;}
.y4d{bottom:159.675900px;}
.y72{bottom:159.782400px;}
.yfb{bottom:159.852900px;}
.y157{bottom:167.136900px;}
.y146{bottom:169.773900px;}
.ye4{bottom:170.136900px;}
.y149{bottom:170.325900px;}
.y52{bottom:171.006900px;}
.yb9{bottom:171.185400px;}
.y13b{bottom:171.246900px;}
.y11d{bottom:173.136900px;}
.y18d{bottom:174.644400px;}
.y71{bottom:175.608900px;}
.y99{bottom:175.680900px;}
.y169{bottom:177.636900px;}
.y26{bottom:177.671400px;}
.y14f{bottom:179.136900px;}
.yfa{bottom:185.886900px;}
.y148{bottom:186.153900px;}
.y9f{bottom:187.011900px;}
.y51{bottom:187.206900px;}
.y70{bottom:187.313400px;}
.ye3{bottom:188.886900px;}
.y25{bottom:189.375900px;}
.yb8{bottom:191.507400px;}
.y13a{bottom:191.568900px;}
.y11c{bottom:193.386900px;}
.y18c{bottom:194.444400px;}
.y168{bottom:196.386900px;}
.y14e{bottom:197.886900px;}
.y9e{bottom:202.838400px;}
.y141{bottom:202.901400px;}
.y6f{bottom:203.141400px;}
.yf9{bottom:204.636900px;}
.y24{bottom:205.575900px;}
.y156{bottom:206.136900px;}
.y147{bottom:206.475900px;}
.ye2{bottom:207.636900px;}
.y50{bottom:207.902400px;}
.y11b{bottom:212.136900px;}
.y18b{bottom:215.744400px;}
.y14d{bottom:216.636900px;}
.yda{bottom:218.666400px;}
.y140{bottom:219.101400px;}
.y9d{bottom:223.161900px;}
.yf8{bottom:223.386900px;}
.y6e{bottom:223.463400px;}
.y155{bottom:224.886900px;}
.y23{bottom:226.271400px;}
.ye1{bottom:226.386900px;}
.y4c{bottom:229.986900px;}
.y11a{bottom:230.886900px;}
.ybf{bottom:234.492900px;}
.y77{bottom:234.794400px;}
.y14c{bottom:235.386900px;}
.y18a{bottom:235.544400px;}
.yd9{bottom:238.988400px;}
.y13f{bottom:239.796900px;}
.yf7{bottom:242.136900px;}
.y22{bottom:242.471400px;}
.y143{bottom:243.636900px;}
.ye0{bottom:245.136900px;}
.y98{bottom:245.886900px;}
.y4b{bottom:248.736900px;}
.y119{bottom:249.636900px;}
.ybe{bottom:250.319400px;}
.y76{bottom:250.994400px;}
.y14b{bottom:254.136900px;}
.y189{bottom:256.844400px;}
.yf6{bottom:260.886900px;}
.y142{bottom:262.386900px;}
.ydf{bottom:263.886900px;}
.y97{bottom:264.636900px;}
.ybd{bottom:266.145900px;}
.y4a{bottom:267.486900px;}
.y118{bottom:268.386900px;}
.y75{bottom:271.689900px;}
.y21{bottom:274.152900px;}
.y139{bottom:274.386900px;}
.y188{bottom:276.644400px;}
.yf5{bottom:281.136900px;}
.yde{bottom:282.636900px;}
.y96{bottom:283.386900px;}
.yd8{bottom:284.136900px;}
.y49{bottom:286.236900px;}
.ybc{bottom:286.469400px;}
.y117{bottom:287.136900px;}
.y20{bottom:292.902900px;}
.y138{bottom:293.136900px;}
.y187{bottom:297.944400px;}
.yf4{bottom:299.886900px;}
.ydd{bottom:301.386900px;}
.y95{bottom:302.136900px;}
.yd7{bottom:302.886900px;}
.y48{bottom:304.986900px;}
.y116{bottom:305.886900px;}
.y1f{bottom:311.652900px;}
.y137{bottom:311.886900px;}
.y186{bottom:317.744400px;}
.yf3{bottom:318.636900px;}
.ydc{bottom:320.136900px;}
.y94{bottom:320.886900px;}
.yd6{bottom:321.636900px;}
.yb7{bottom:323.136900px;}
.y115{bottom:324.636900px;}
.y1e{bottom:330.402900px;}
.y136{bottom:330.636900px;}
.y167{bottom:332.136900px;}
.y47{bottom:332.736900px;}
.y6d{bottom:333.636900px;}
.yf2{bottom:337.386900px;}
.y185{bottom:337.544400px;}
.ydb{bottom:338.886900px;}
.y93{bottom:339.636900px;}
.yd5{bottom:340.386900px;}
.yb6{bottom:341.886900px;}
.y114{bottom:343.386900px;}
.y1d{bottom:349.152900px;}
.y135{bottom:349.386900px;}
.y166{bottom:350.886900px;}
.y6c{bottom:352.386900px;}
.y154{bottom:356.136900px;}
.yf1{bottom:357.636900px;}
.y92{bottom:358.386900px;}
.y184{bottom:358.844400px;}
.yd4{bottom:359.136900px;}
.yb5{bottom:360.636900px;}
.y1a6{bottom:363.402900px;}
.y1c{bottom:367.902900px;}
.y134{bottom:368.136900px;}
.y6b{bottom:371.136900px;}
.y46{bottom:373.986900px;}
.y153{bottom:374.886900px;}
.yf0{bottom:376.386900px;}
.y91{bottom:377.136900px;}
.yd3{bottom:377.886900px;}
.y183{bottom:378.644400px;}
.yb4{bottom:379.386900px;}
.y1a5{bottom:382.152900px;}
.y1b{bottom:386.652900px;}
.y133{bottom:386.886900px;}
.y6a{bottom:389.886900px;}
.y152{bottom:393.636900px;}
.yef{bottom:395.136900px;}
.y90{bottom:395.886900px;}
.yd2{bottom:396.636900px;}
.yb3{bottom:398.136900px;}
.y182{bottom:398.444400px;}
.y1a4{bottom:402.402900px;}
.y1a{bottom:405.402900px;}
.y132{bottom:405.636900px;}
.y69{bottom:408.636900px;}
.y113{bottom:409.386900px;}
.y45{bottom:412.236900px;}
.y151{bottom:412.386900px;}
.y165{bottom:413.136900px;}
.yee{bottom:413.886900px;}
.y8f{bottom:414.636900px;}
.yd1{bottom:415.386900px;}
.yb2{bottom:416.886900px;}
.y181{bottom:419.744400px;}
.y1a3{bottom:421.152900px;}
.y19{bottom:424.152900px;}
.y131{bottom:424.386900px;}
.y68{bottom:427.386900px;}
.y112{bottom:428.136900px;}
.y44{bottom:430.386900px;}
.y150{bottom:431.136900px;}
.yed{bottom:432.636900px;}
.y8e{bottom:433.386900px;}
.yd0{bottom:434.136900px;}
.yb1{bottom:435.636900px;}
.y164{bottom:436.386900px;}
.y180{bottom:439.544400px;}
.y1a2{bottom:439.902900px;}
.y130{bottom:443.136900px;}
.y67{bottom:446.136900px;}
.y111{bottom:446.886900px;}
.y43{bottom:448.536900px;}
.y18{bottom:448.902900px;}
.yec{bottom:451.386900px;}
.y8d{bottom:452.136900px;}
.ycf{bottom:452.886900px;}
.yb0{bottom:454.386900px;}
.y163{bottom:455.136900px;}
.y1a1{bottom:458.652900px;}
.y17f{bottom:460.844400px;}
.y12f{bottom:461.886900px;}
.y66{bottom:464.886900px;}
.y110{bottom:465.636900px;}
.y42{bottom:466.686900px;}
.yeb{bottom:470.136900px;}
.yce{bottom:471.636900px;}
.yaf{bottom:473.136900px;}
.y162{bottom:473.886900px;}
.y1a0{bottom:477.402900px;}
.y8c{bottom:479.886900px;}
.y12e{bottom:480.636900px;}
.y17e{bottom:480.644400px;}
.y65{bottom:483.636900px;}
.y10f{bottom:484.386900px;}
.y41{bottom:484.836900px;}
.yea{bottom:488.886900px;}
.ycd{bottom:490.386900px;}
.yae{bottom:491.886900px;}
.y161{bottom:494.136900px;}
.y17{bottom:494.652900px;}
.y19f{bottom:496.152900px;}
.y12d{bottom:499.386900px;}
.y17d{bottom:500.444400px;}
.y64{bottom:502.386900px;}
.y40{bottom:502.986900px;}
.y10e{bottom:503.136900px;}
.ye9{bottom:507.636900px;}
.ycc{bottom:509.136900px;}
.yad{bottom:510.636900px;}
.y160{bottom:512.886900px;}
.y16{bottom:513.402900px;}
.y8b{bottom:513.636900px;}
.y19e{bottom:514.902900px;}
.y12c{bottom:518.136900px;}
.y3f{bottom:521.136900px;}
.y17c{bottom:521.744400px;}
.y10d{bottom:521.886900px;}
.ye8{bottom:526.386900px;}
.y14a{bottom:527.136900px;}
.ycb{bottom:527.886900px;}
.yac{bottom:529.386900px;}
.y8a{bottom:532.086900px;}
.y15f{bottom:533.136900px;}
.y19d{bottom:533.652900px;}
.y12b{bottom:538.386900px;}
.y3e{bottom:539.286900px;}
.y63{bottom:539.886900px;}
.y10c{bottom:540.636900px;}
.y15{bottom:541.152900px;}
.y17b{bottom:541.544400px;}
.ye7{bottom:545.136900px;}
.yca{bottom:546.636900px;}
.yab{bottom:548.136900px;}
.y89{bottom:550.536900px;}
.y15e{bottom:551.886900px;}
.y19c{bottom:552.402900px;}
.y12a{bottom:557.136900px;}
.y3d{bottom:557.436900px;}
.y10b{bottom:559.386900px;}
.y14{bottom:559.902900px;}
.y62{bottom:560.136900px;}
.y17a{bottom:561.344400px;}
.ye6{bottom:563.886900px;}
.yc9{bottom:565.386900px;}
.yaa{bottom:566.886900px;}
.y88{bottom:568.986900px;}
.y19b{bottom:571.152900px;}
.y15d{bottom:572.136900px;}
.y3c{bottom:575.586900px;}
.y129{bottom:575.886900px;}
.y10a{bottom:578.136900px;}
.y13{bottom:578.652900px;}
.y61{bottom:578.886900px;}
.y179{bottom:582.644400px;}
.yc8{bottom:584.136900px;}
.ya9{bottom:585.636900px;}
.y87{bottom:587.436900px;}
.y19a{bottom:589.902900px;}
.y15c{bottom:590.886900px;}
.y3b{bottom:593.736900px;}
.y128{bottom:594.636900px;}
.y109{bottom:596.886900px;}
.y12{bottom:597.402900px;}
.y60{bottom:597.636900px;}
.y178{bottom:602.444400px;}
.yc7{bottom:602.886900px;}
.ya8{bottom:604.386900px;}
.y86{bottom:605.886900px;}
.y199{bottom:608.652900px;}
.y15b{bottom:611.136900px;}
.y3a{bottom:611.886900px;}
.y127{bottom:613.386900px;}
.y108{bottom:615.636900px;}
.y11{bottom:616.152900px;}
.y5f{bottom:616.386900px;}
.yc6{bottom:621.636900px;}
.y177{bottom:622.244400px;}
.ya7{bottom:623.136900px;}
.y85{bottom:624.336900px;}
.y198{bottom:627.402900px;}
.y15a{bottom:629.886900px;}
.y39{bottom:630.036900px;}
.y126{bottom:632.136900px;}
.y107{bottom:634.386900px;}
.y10{bottom:634.902900px;}
.y5e{bottom:635.136900px;}
.yc5{bottom:640.386900px;}
.ya6{bottom:641.886900px;}
.y84{bottom:642.786900px;}
.y176{bottom:643.544400px;}
.y197{bottom:646.152900px;}
.y38{bottom:648.186900px;}
.y125{bottom:650.886900px;}
.yf{bottom:653.652900px;}
.y106{bottom:654.636900px;}
.yc4{bottom:659.136900px;}
.ya5{bottom:660.636900px;}
.y83{bottom:661.236900px;}
.y5d{bottom:662.886900px;}
.y175{bottom:663.344400px;}
.y196{bottom:664.902900px;}
.y37{bottom:666.336900px;}
.y124{bottom:669.636900px;}
.ye{bottom:672.402900px;}
.y105{bottom:673.386900px;}
.yc3{bottom:677.886900px;}
.ya4{bottom:679.386900px;}
.y82{bottom:679.686900px;}
.y159{bottom:682.386900px;}
.y195{bottom:683.652900px;}
.y36{bottom:684.486900px;}
.y174{bottom:684.644400px;}
.y123{bottom:688.386900px;}
.yd{bottom:691.152900px;}
.y104{bottom:692.136900px;}
.y5c{bottom:696.636900px;}
.y81{bottom:698.136900px;}
.y35{bottom:704.136900px;}
.y173{bottom:704.444400px;}
.y122{bottom:707.136900px;}
.y103{bottom:710.886900px;}
.y194{bottom:711.402900px;}
.y5b{bottom:715.386900px;}
.ya3{bottom:716.886900px;}
.y80{bottom:718.086900px;}
.y34{bottom:722.286900px;}
.y172{bottom:724.244400px;}
.y121{bottom:725.886900px;}
.y102{bottom:729.636900px;}
.y5a{bottom:734.136900px;}
.ya2{bottom:735.636900px;}
.y7f{bottom:736.536900px;}
.yc{bottom:739.902900px;}
.y33{bottom:740.436900px;}
.y193{bottom:743.652900px;}
.y171{bottom:744.044400px;}
.y120{bottom:744.636900px;}
.y101{bottom:748.386900px;}
.y59{bottom:752.886900px;}
.ya1{bottom:754.386900px;}
.y7e{bottom:754.986900px;}
.y32{bottom:758.586900px;}
.yb{bottom:762.402900px;}
.y170{bottom:765.344400px;}
.y100{bottom:768.636900px;}
.y58{bottom:771.636900px;}
.y11f{bottom:772.386900px;}
.ya0{bottom:773.136900px;}
.y7d{bottom:773.436900px;}
.y31{bottom:776.736900px;}
.y192{bottom:781.152900px;}
.y16f{bottom:785.144400px;}
.yff{bottom:787.386900px;}
.y191{bottom:788.294400px;}
.y57{bottom:790.386900px;}
.y7c{bottom:791.886900px;}
.y30{bottom:794.886900px;}
.y16e{bottom:806.444400px;}
.y190{bottom:807.044400px;}
.y6{bottom:807.333900px;}
.yfe{bottom:807.636900px;}
.yc2{bottom:809.136900px;}
.y7b{bottom:810.336900px;}
.y56{bottom:810.636900px;}
.y2f{bottom:813.036900px;}
.y18f{bottom:825.794400px;}
.y16d{bottom:826.244400px;}
.yfd{bottom:826.386900px;}
.yc1{bottom:827.886900px;}
.y7a{bottom:828.786900px;}
.y55{bottom:829.386900px;}
.ya{bottom:829.902900px;}
.y2e{bottom:831.186900px;}
.y5{bottom:839.138400px;}
.y16c{bottom:846.044400px;}
.yc0{bottom:846.636900px;}
.y54{bottom:848.136900px;}
.y9{bottom:848.652900px;}
.y79{bottom:848.736900px;}
.y2d{bottom:849.336900px;}
.y4{bottom:855.338400px;}
.yfc{bottom:865.386900px;}
.y16b{bottom:865.844400px;}
.y53{bottom:866.886900px;}
.y78{bottom:867.186900px;}
.y8{bottom:867.402900px;}
.y2c{bottom:867.486900px;}
.y3{bottom:871.538400px;}
.y2b{bottom:885.636900px;}
.y16a{bottom:885.644400px;}
.y7{bottom:886.152900px;}
.y2{bottom:887.738400px;}
.y2a{bottom:922.796400px;}
.h11{height:0.603405px;}
.hf{height:22.320246px;}
.h10{height:27.362285px;}
.hb{height:28.951594px;}
.h3{height:38.285156px;}
.hd{height:41.718750px;}
.h5{height:44.666016px;}
.he{height:45.619629px;}
.h9{height:46.792969px;}
.hc{height:46.933594px;}
.h4{height:47.572244px;}
.h8{height:47.791992px;}
.h2{height:54.755859px;}
.h6{height:56.481445px;}
.ha{height:57.363281px;}
.h7{height:58.902683px;}
.h0{height:1020.473400px;}
.h1{height:1020.750000px;}
.w1{width:714.000000px;}
.w0{width:714.330600px;}
.x0{left:0.000000px;}
.x7{left:91.416600px;}
.xd{left:102.605100px;}
.xc{left:108.425100px;}
.x9{left:113.322600px;}
.xe{left:117.200100px;}
.x8{left:125.831100px;}
.xb{left:133.937100px;}
.xa{left:142.440600px;}
.xf{left:311.253600px;}
.x10{left:322.938600px;}
.x6{left:443.360100px;}
.x2{left:493.080600px;}
.x4{left:496.964100px;}
.x3{left:510.035100px;}
.x5{left:528.605100px;}
.x1{left:596.750100px;}
@media print{
.v5{vertical-align:-19.536000pt;}
.v3{vertical-align:-15.984000pt;}
.v0{vertical-align:0.000000pt;}
.v6{vertical-align:15.984000pt;}
.v1{vertical-align:18.645333pt;}
.v4{vertical-align:19.536000pt;}
.v2{vertical-align:23.088000pt;}
.ls3{letter-spacing:0.000000pt;}
.ls8{letter-spacing:0.000149pt;}
.ls9{letter-spacing:0.002798pt;}
.ls5{letter-spacing:0.005333pt;}
.ls2{letter-spacing:0.005597pt;}
.ls1{letter-spacing:0.008165pt;}
.ls4{letter-spacing:0.008395pt;}
.ls0{letter-spacing:0.014400pt;}
.ls7{letter-spacing:0.377784pt;}
.ls6{letter-spacing:0.456139pt;}
.ws1{word-spacing:-12.906667pt;}
.ws0{word-spacing:-12.320000pt;}
.ws6{word-spacing:-10.560000pt;}
.ws5{word-spacing:-7.524587pt;}
.ws3{word-spacing:-6.162077pt;}
.ws2{word-spacing:-6.156480pt;}
.ws4{word-spacing:0.000000pt;}
.wsc{word-spacing:0.009067pt;}
.ws7{word-spacing:6.269119pt;}
.ws9{word-spacing:8.679786pt;}
.wsb{word-spacing:13.325119pt;}
.wsa{word-spacing:13.783786pt;}
.ws8{word-spacing:14.189119pt;}
._1{margin-left:-9.446400pt;}
._0{margin-left:-8.380800pt;}
._1a{margin-left:-7.118133pt;}
._5{margin-left:-5.382133pt;}
._4{margin-left:-3.612000pt;}
._2{margin-left:-2.702400pt;}
._3{margin-left:-1.136800pt;}
._6{width:0.951467pt;}
._7{width:2.052267pt;}
._8{width:3.549333pt;}
._9{width:4.552533pt;}
._f{width:5.529067pt;}
._10{width:6.770133pt;}
._b{width:8.406933pt;}
._12{width:9.369067pt;}
._a{width:10.847467pt;}
._d{width:11.762667pt;}
._19{width:12.751915pt;}
._11{width:13.908533pt;}
._e{width:15.270933pt;}
._14{width:16.454667pt;}
._15{width:17.519467pt;}
._16{width:19.225067pt;}
._1b{width:20.132267pt;}
._18{width:21.160192pt;}
._c{width:22.668800pt;}
._17{width:24.123733pt;}
._1e{width:25.610667pt;}
._1d{width:27.253333pt;}
._13{width:31.234133pt;}
._1c{width:40.994400pt;}
.fs9{font-size:0.746240pt;}
.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;}
.y74{bottom:109.896800pt;}
.ybb{bottom:109.959467pt;}
.y13e{bottom:110.014133pt;}
.y29{bottom:110.734133pt;}
.y4f{bottom:113.796800pt;}
.y9c{bottom:113.955467pt;}
.ye5{bottom:113.982133pt;}
.y145{bottom:122.003467pt;}
.y4e{bottom:123.870133pt;}
.y73{bottom:123.964800pt;}
.y9b{bottom:124.027467pt;}
.y28{bottom:125.134133pt;}
.yba{bottom:128.023467pt;}
.y13d{bottom:128.079467pt;}
.y158{bottom:131.899467pt;}
.y11e{bottom:137.232800pt;}
.y18e{bottom:137.639467pt;}
.y9a{bottom:138.095467pt;}
.y13c{bottom:138.151467pt;}
.y27{bottom:139.534133pt;}
.y144{bottom:140.399467pt;}
.y4d{bottom:141.934133pt;}
.y72{bottom:142.028800pt;}
.yfb{bottom:142.091467pt;}
.y157{bottom:148.566133pt;}
.y146{bottom:150.910133pt;}
.ye4{bottom:151.232800pt;}
.y149{bottom:151.400800pt;}
.y52{bottom:152.006133pt;}
.yb9{bottom:152.164800pt;}
.y13b{bottom:152.219467pt;}
.y11d{bottom:153.899467pt;}
.y18d{bottom:155.239467pt;}
.y71{bottom:156.096800pt;}
.y99{bottom:156.160800pt;}
.y169{bottom:157.899467pt;}
.y26{bottom:157.930133pt;}
.y14f{bottom:159.232800pt;}
.yfa{bottom:165.232800pt;}
.y148{bottom:165.470133pt;}
.y9f{bottom:166.232800pt;}
.y51{bottom:166.406133pt;}
.y70{bottom:166.500800pt;}
.ye3{bottom:167.899467pt;}
.y25{bottom:168.334133pt;}
.yb8{bottom:170.228800pt;}
.y13a{bottom:170.283467pt;}
.y11c{bottom:171.899467pt;}
.y18c{bottom:172.839467pt;}
.y168{bottom:174.566133pt;}
.y14e{bottom:175.899467pt;}
.y9e{bottom:180.300800pt;}
.y141{bottom:180.356800pt;}
.y6f{bottom:180.570133pt;}
.yf9{bottom:181.899467pt;}
.y24{bottom:182.734133pt;}
.y156{bottom:183.232800pt;}
.y147{bottom:183.534133pt;}
.ye2{bottom:184.566133pt;}
.y50{bottom:184.802133pt;}
.y11b{bottom:188.566133pt;}
.y18b{bottom:191.772800pt;}
.y14d{bottom:192.566133pt;}
.yda{bottom:194.370133pt;}
.y140{bottom:194.756800pt;}
.y9d{bottom:198.366133pt;}
.yf8{bottom:198.566133pt;}
.y6e{bottom:198.634133pt;}
.y155{bottom:199.899467pt;}
.y23{bottom:201.130133pt;}
.ye1{bottom:201.232800pt;}
.y4c{bottom:204.432800pt;}
.y11a{bottom:205.232800pt;}
.ybf{bottom:208.438133pt;}
.y77{bottom:208.706133pt;}
.y14c{bottom:209.232800pt;}
.y18a{bottom:209.372800pt;}
.yd9{bottom:212.434133pt;}
.y13f{bottom:213.152800pt;}
.yf7{bottom:215.232800pt;}
.y22{bottom:215.530133pt;}
.y143{bottom:216.566133pt;}
.ye0{bottom:217.899467pt;}
.y98{bottom:218.566133pt;}
.y4b{bottom:221.099467pt;}
.y119{bottom:221.899467pt;}
.ybe{bottom:222.506133pt;}
.y76{bottom:223.106133pt;}
.y14b{bottom:225.899467pt;}
.y189{bottom:228.306133pt;}
.yf6{bottom:231.899467pt;}
.y142{bottom:233.232800pt;}
.ydf{bottom:234.566133pt;}
.y97{bottom:235.232800pt;}
.ybd{bottom:236.574133pt;}
.y4a{bottom:237.766133pt;}
.y118{bottom:238.566133pt;}
.y75{bottom:241.502133pt;}
.y21{bottom:243.691467pt;}
.y139{bottom:243.899467pt;}
.y188{bottom:245.906133pt;}
.yf5{bottom:249.899467pt;}
.yde{bottom:251.232800pt;}
.y96{bottom:251.899467pt;}
.yd8{bottom:252.566133pt;}
.y49{bottom:254.432800pt;}
.ybc{bottom:254.639467pt;}
.y117{bottom:255.232800pt;}
.y20{bottom:260.358133pt;}
.y138{bottom:260.566133pt;}
.y187{bottom:264.839467pt;}
.yf4{bottom:266.566133pt;}
.ydd{bottom:267.899467pt;}
.y95{bottom:268.566133pt;}
.yd7{bottom:269.232800pt;}
.y48{bottom:271.099467pt;}
.y116{bottom:271.899467pt;}
.y1f{bottom:277.024800pt;}
.y137{bottom:277.232800pt;}
.y186{bottom:282.439467pt;}
.yf3{bottom:283.232800pt;}
.ydc{bottom:284.566133pt;}
.y94{bottom:285.232800pt;}
.yd6{bottom:285.899467pt;}
.yb7{bottom:287.232800pt;}
.y115{bottom:288.566133pt;}
.y1e{bottom:293.691467pt;}
.y136{bottom:293.899467pt;}
.y167{bottom:295.232800pt;}
.y47{bottom:295.766133pt;}
.y6d{bottom:296.566133pt;}
.yf2{bottom:299.899467pt;}
.y185{bottom:300.039467pt;}
.ydb{bottom:301.232800pt;}
.y93{bottom:301.899467pt;}
.yd5{bottom:302.566133pt;}
.yb6{bottom:303.899467pt;}
.y114{bottom:305.232800pt;}
.y1d{bottom:310.358133pt;}
.y135{bottom:310.566133pt;}
.y166{bottom:311.899467pt;}
.y6c{bottom:313.232800pt;}
.y154{bottom:316.566133pt;}
.yf1{bottom:317.899467pt;}
.y92{bottom:318.566133pt;}
.y184{bottom:318.972800pt;}
.yd4{bottom:319.232800pt;}
.yb5{bottom:320.566133pt;}
.y1a6{bottom:323.024800pt;}
.y1c{bottom:327.024800pt;}
.y134{bottom:327.232800pt;}
.y6b{bottom:329.899467pt;}
.y46{bottom:332.432800pt;}
.y153{bottom:333.232800pt;}
.yf0{bottom:334.566133pt;}
.y91{bottom:335.232800pt;}
.yd3{bottom:335.899467pt;}
.y183{bottom:336.572800pt;}
.yb4{bottom:337.232800pt;}
.y1a5{bottom:339.691467pt;}
.y1b{bottom:343.691467pt;}
.y133{bottom:343.899467pt;}
.y6a{bottom:346.566133pt;}
.y152{bottom:349.899467pt;}
.yef{bottom:351.232800pt;}
.y90{bottom:351.899467pt;}
.yd2{bottom:352.566133pt;}
.yb3{bottom:353.899467pt;}
.y182{bottom:354.172800pt;}
.y1a4{bottom:357.691467pt;}
.y1a{bottom:360.358133pt;}
.y132{bottom:360.566133pt;}
.y69{bottom:363.232800pt;}
.y113{bottom:363.899467pt;}
.y45{bottom:366.432800pt;}
.y151{bottom:366.566133pt;}
.y165{bottom:367.232800pt;}
.yee{bottom:367.899467pt;}
.y8f{bottom:368.566133pt;}
.yd1{bottom:369.232800pt;}
.yb2{bottom:370.566133pt;}
.y181{bottom:373.106133pt;}
.y1a3{bottom:374.358133pt;}
.y19{bottom:377.024800pt;}
.y131{bottom:377.232800pt;}
.y68{bottom:379.899467pt;}
.y112{bottom:380.566133pt;}
.y44{bottom:382.566133pt;}
.y150{bottom:383.232800pt;}
.yed{bottom:384.566133pt;}
.y8e{bottom:385.232800pt;}
.yd0{bottom:385.899467pt;}
.yb1{bottom:387.232800pt;}
.y164{bottom:387.899467pt;}
.y180{bottom:390.706133pt;}
.y1a2{bottom:391.024800pt;}
.y130{bottom:393.899467pt;}
.y67{bottom:396.566133pt;}
.y111{bottom:397.232800pt;}
.y43{bottom:398.699467pt;}
.y18{bottom:399.024800pt;}
.yec{bottom:401.232800pt;}
.y8d{bottom:401.899467pt;}
.ycf{bottom:402.566133pt;}
.yb0{bottom:403.899467pt;}
.y163{bottom:404.566133pt;}
.y1a1{bottom:407.691467pt;}
.y17f{bottom:409.639467pt;}
.y12f{bottom:410.566133pt;}
.y66{bottom:413.232800pt;}
.y110{bottom:413.899467pt;}
.y42{bottom:414.832800pt;}
.yeb{bottom:417.899467pt;}
.yce{bottom:419.232800pt;}
.yaf{bottom:420.566133pt;}
.y162{bottom:421.232800pt;}
.y1a0{bottom:424.358133pt;}
.y8c{bottom:426.566133pt;}
.y12e{bottom:427.232800pt;}
.y17e{bottom:427.239467pt;}
.y65{bottom:429.899467pt;}
.y10f{bottom:430.566133pt;}
.y41{bottom:430.966133pt;}
.yea{bottom:434.566133pt;}
.ycd{bottom:435.899467pt;}
.yae{bottom:437.232800pt;}
.y161{bottom:439.232800pt;}
.y17{bottom:439.691467pt;}
.y19f{bottom:441.024800pt;}
.y12d{bottom:443.899467pt;}
.y17d{bottom:444.839467pt;}
.y64{bottom:446.566133pt;}
.y40{bottom:447.099467pt;}
.y10e{bottom:447.232800pt;}
.ye9{bottom:451.232800pt;}
.ycc{bottom:452.566133pt;}
.yad{bottom:453.899467pt;}
.y160{bottom:455.899467pt;}
.y16{bottom:456.358133pt;}
.y8b{bottom:456.566133pt;}
.y19e{bottom:457.691467pt;}
.y12c{bottom:460.566133pt;}
.y3f{bottom:463.232800pt;}
.y17c{bottom:463.772800pt;}
.y10d{bottom:463.899467pt;}
.ye8{bottom:467.899467pt;}
.y14a{bottom:468.566133pt;}
.ycb{bottom:469.232800pt;}
.yac{bottom:470.566133pt;}
.y8a{bottom:472.966133pt;}
.y15f{bottom:473.899467pt;}
.y19d{bottom:474.358133pt;}
.y12b{bottom:478.566133pt;}
.y3e{bottom:479.366133pt;}
.y63{bottom:479.899467pt;}
.y10c{bottom:480.566133pt;}
.y15{bottom:481.024800pt;}
.y17b{bottom:481.372800pt;}
.ye7{bottom:484.566133pt;}
.yca{bottom:485.899467pt;}
.yab{bottom:487.232800pt;}
.y89{bottom:489.366133pt;}
.y15e{bottom:490.566133pt;}
.y19c{bottom:491.024800pt;}
.y12a{bottom:495.232800pt;}
.y3d{bottom:495.499467pt;}
.y10b{bottom:497.232800pt;}
.y14{bottom:497.691467pt;}
.y62{bottom:497.899467pt;}
.y17a{bottom:498.972800pt;}
.ye6{bottom:501.232800pt;}
.yc9{bottom:502.566133pt;}
.yaa{bottom:503.899467pt;}
.y88{bottom:505.766133pt;}
.y19b{bottom:507.691467pt;}
.y15d{bottom:508.566133pt;}
.y3c{bottom:511.632800pt;}
.y129{bottom:511.899467pt;}
.y10a{bottom:513.899467pt;}
.y13{bottom:514.358133pt;}
.y61{bottom:514.566133pt;}
.y179{bottom:517.906133pt;}
.yc8{bottom:519.232800pt;}
.ya9{bottom:520.566133pt;}
.y87{bottom:522.166133pt;}
.y19a{bottom:524.358133pt;}
.y15c{bottom:525.232800pt;}
.y3b{bottom:527.766133pt;}
.y128{bottom:528.566133pt;}
.y109{bottom:530.566133pt;}
.y12{bottom:531.024800pt;}
.y60{bottom:531.232800pt;}
.y178{bottom:535.506133pt;}
.yc7{bottom:535.899467pt;}
.ya8{bottom:537.232800pt;}
.y86{bottom:538.566133pt;}
.y199{bottom:541.024800pt;}
.y15b{bottom:543.232800pt;}
.y3a{bottom:543.899467pt;}
.y127{bottom:545.232800pt;}
.y108{bottom:547.232800pt;}
.y11{bottom:547.691467pt;}
.y5f{bottom:547.899467pt;}
.yc6{bottom:552.566133pt;}
.y177{bottom:553.106133pt;}
.ya7{bottom:553.899467pt;}
.y85{bottom:554.966133pt;}
.y198{bottom:557.691467pt;}
.y15a{bottom:559.899467pt;}
.y39{bottom:560.032800pt;}
.y126{bottom:561.899467pt;}
.y107{bottom:563.899467pt;}
.y10{bottom:564.358133pt;}
.y5e{bottom:564.566133pt;}
.yc5{bottom:569.232800pt;}
.ya6{bottom:570.566133pt;}
.y84{bottom:571.366133pt;}
.y176{bottom:572.039467pt;}
.y197{bottom:574.358133pt;}
.y38{bottom:576.166133pt;}
.y125{bottom:578.566133pt;}
.yf{bottom:581.024800pt;}
.y106{bottom:581.899467pt;}
.yc4{bottom:585.899467pt;}
.ya5{bottom:587.232800pt;}
.y83{bottom:587.766133pt;}
.y5d{bottom:589.232800pt;}
.y175{bottom:589.639467pt;}
.y196{bottom:591.024800pt;}
.y37{bottom:592.299467pt;}
.y124{bottom:595.232800pt;}
.ye{bottom:597.691467pt;}
.y105{bottom:598.566133pt;}
.yc3{bottom:602.566133pt;}
.ya4{bottom:603.899467pt;}
.y82{bottom:604.166133pt;}
.y159{bottom:606.566133pt;}
.y195{bottom:607.691467pt;}
.y36{bottom:608.432800pt;}
.y174{bottom:608.572800pt;}
.y123{bottom:611.899467pt;}
.yd{bottom:614.358133pt;}
.y104{bottom:615.232800pt;}
.y5c{bottom:619.232800pt;}
.y81{bottom:620.566133pt;}
.y35{bottom:625.899467pt;}
.y173{bottom:626.172800pt;}
.y122{bottom:628.566133pt;}
.y103{bottom:631.899467pt;}
.y194{bottom:632.358133pt;}
.y5b{bottom:635.899467pt;}
.ya3{bottom:637.232800pt;}
.y80{bottom:638.299467pt;}
.y34{bottom:642.032800pt;}
.y172{bottom:643.772800pt;}
.y121{bottom:645.232800pt;}
.y102{bottom:648.566133pt;}
.y5a{bottom:652.566133pt;}
.ya2{bottom:653.899467pt;}
.y7f{bottom:654.699467pt;}
.yc{bottom:657.691467pt;}
.y33{bottom:658.166133pt;}
.y193{bottom:661.024800pt;}
.y171{bottom:661.372800pt;}
.y120{bottom:661.899467pt;}
.y101{bottom:665.232800pt;}
.y59{bottom:669.232800pt;}
.ya1{bottom:670.566133pt;}
.y7e{bottom:671.099467pt;}
.y32{bottom:674.299467pt;}
.yb{bottom:677.691467pt;}
.y170{bottom:680.306133pt;}
.y100{bottom:683.232800pt;}
.y58{bottom:685.899467pt;}
.y11f{bottom:686.566133pt;}
.ya0{bottom:687.232800pt;}
.y7d{bottom:687.499467pt;}
.y31{bottom:690.432800pt;}
.y192{bottom:694.358133pt;}
.y16f{bottom:697.906133pt;}
.yff{bottom:699.899467pt;}
.y191{bottom:700.706133pt;}
.y57{bottom:702.566133pt;}
.y7c{bottom:703.899467pt;}
.y30{bottom:706.566133pt;}
.y16e{bottom:716.839467pt;}
.y190{bottom:717.372800pt;}
.y6{bottom:717.630133pt;}
.yfe{bottom:717.899467pt;}
.yc2{bottom:719.232800pt;}
.y7b{bottom:720.299467pt;}
.y56{bottom:720.566133pt;}
.y2f{bottom:722.699467pt;}
.y18f{bottom:734.039467pt;}
.y16d{bottom:734.439467pt;}
.yfd{bottom:734.566133pt;}
.yc1{bottom:735.899467pt;}
.y7a{bottom:736.699467pt;}
.y55{bottom:737.232800pt;}
.ya{bottom:737.691467pt;}
.y2e{bottom:738.832800pt;}
.y5{bottom:745.900800pt;}
.y16c{bottom:752.039467pt;}
.yc0{bottom:752.566133pt;}
.y54{bottom:753.899467pt;}
.y9{bottom:754.358133pt;}
.y79{bottom:754.432800pt;}
.y2d{bottom:754.966133pt;}
.y4{bottom:760.300800pt;}
.yfc{bottom:769.232800pt;}
.y16b{bottom:769.639467pt;}
.y53{bottom:770.566133pt;}
.y78{bottom:770.832800pt;}
.y8{bottom:771.024800pt;}
.y2c{bottom:771.099467pt;}
.y3{bottom:774.700800pt;}
.y2b{bottom:787.232800pt;}
.y16a{bottom:787.239467pt;}
.y7{bottom:787.691467pt;}
.y2{bottom:789.100800pt;}
.y2a{bottom:820.263467pt;}
.h11{height:0.536360pt;}
.hf{height:19.840219pt;}
.h10{height:24.322031pt;}
.hb{height:25.734750pt;}
.h3{height:34.031250pt;}
.hd{height:37.083333pt;}
.h5{height:39.703125pt;}
.he{height:40.550781pt;}
.h9{height:41.593750pt;}
.hc{height:41.718750pt;}
.h4{height:42.286439pt;}
.h8{height:42.481771pt;}
.h2{height:48.671875pt;}
.h6{height:50.205729pt;}
.ha{height:50.989583pt;}
.h7{height:52.357940pt;}
.h0{height:907.087467pt;}
.h1{height:907.333333pt;}
.w1{width:634.666667pt;}
.w0{width:634.960533pt;}
.x0{left:0.000000pt;}
.x7{left:81.259200pt;}
.xd{left:91.204533pt;}
.xc{left:96.377867pt;}
.x9{left:100.731200pt;}
.xe{left:104.177867pt;}
.x8{left:111.849867pt;}
.xb{left:119.055200pt;}
.xa{left:126.613867pt;}
.xf{left:276.669867pt;}
.x10{left:287.056533pt;}
.x6{left:394.097867pt;}
.x2{left:438.293867pt;}
.x4{left:441.745867pt;}
.x3{left:453.364533pt;}
.x5{left:469.871200pt;}
.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; }
  