
    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_027b66100ce0c7b18d56e301.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.898000;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_1b006c07d8da4e46dfff8051.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.906000;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_f747c310420bab84472678a3.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.000000;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_00ba828aebbede3a1c63cbcf.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.890000;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_6df07b7013673b1245398f71.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.810000;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);}
.v4{vertical-align:-22.854000px;}
.v2{vertical-align:-21.690000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:21.696000px;}
.v1{vertical-align:26.034000px;}
.ls2{letter-spacing:0.000000px;}
.ls1{letter-spacing:2.988600px;}
.ls4{letter-spacing:2.989200px;}
.ls3{letter-spacing:18.264600px;}
.ls0{letter-spacing:20.921700px;}
.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;}
}
.ws91{word-spacing:-14.943900px;}
.ws87{word-spacing:-13.449600px;}
.ws39{word-spacing:-3.407209px;}
.ws37{word-spacing:-3.108331px;}
.ws36{word-spacing:-3.048556px;}
.ws48{word-spacing:-2.988780px;}
.ws2c{word-spacing:-2.929004px;}
.ws52{word-spacing:-2.809453px;}
.ws71{word-spacing:-2.689902px;}
.wsa8{word-spacing:-2.630126px;}
.ws8b{word-spacing:-2.510575px;}
.ws35{word-spacing:-2.391024px;}
.ws9d{word-spacing:-2.331248px;}
.ws42{word-spacing:-2.271473px;}
.ws34{word-spacing:-2.092146px;}
.ws9f{word-spacing:-1.912819px;}
.ws47{word-spacing:-1.673717px;}
.ws45{word-spacing:-1.554166px;}
.ws1a{word-spacing:-1.255288px;}
.ws9c{word-spacing:-1.195512px;}
.ws1b{word-spacing:-1.016185px;}
.wse{word-spacing:-0.753178px;}
.ws5e{word-spacing:-0.657532px;}
.wsa{word-spacing:-0.645581px;}
.ws59{word-spacing:-0.597756px;}
.ws58{word-spacing:-0.537980px;}
.ws78{word-spacing:-0.478205px;}
.ws3a{word-spacing:-0.418429px;}
.ws19{word-spacing:-0.239102px;}
.ws7c{word-spacing:-0.119551px;}
.ws14{word-spacing:-0.071731px;}
.ws3{word-spacing:-0.059776px;}
.ws2{word-spacing:0.000000px;}
.ws7b{word-spacing:0.179327px;}
.ws4c{word-spacing:0.239102px;}
.ws22{word-spacing:0.298878px;}
.wsc{word-spacing:0.322790px;}
.ws16{word-spacing:0.358654px;}
.ws28{word-spacing:0.537980px;}
.ws53{word-spacing:0.597756px;}
.ws15{word-spacing:0.657532px;}
.ws7e{word-spacing:0.717307px;}
.ws2b{word-spacing:0.777083px;}
.ws2f{word-spacing:0.836858px;}
.wsa3{word-spacing:0.896634px;}
.ws4f{word-spacing:1.016185px;}
.ws49{word-spacing:1.075961px;}
.ws57{word-spacing:1.135736px;}
.ws65{word-spacing:1.195512px;}
.ws12{word-spacing:1.237363px;}
.ws11{word-spacing:1.291162px;}
.ws73{word-spacing:1.315063px;}
.ws1c{word-spacing:1.374839px;}
.ws21{word-spacing:1.434614px;}
.ws7f{word-spacing:1.554166px;}
.ws63{word-spacing:1.613941px;}
.ws82{word-spacing:1.673717px;}
.ws2d{word-spacing:1.793268px;}
.ws60{word-spacing:1.972595px;}
.ws98{word-spacing:2.032370px;}
.ws1e{word-spacing:2.151922px;}
.ws7{word-spacing:2.151936px;}
.ws64{word-spacing:2.211697px;}
.ws31{word-spacing:2.510575px;}
.ws81{word-spacing:2.570351px;}
.wsa2{word-spacing:2.630126px;}
.ws1d{word-spacing:2.689902px;}
.ws13{word-spacing:2.743718px;}
.ws6f{word-spacing:2.809453px;}
.ws62{word-spacing:2.869229px;}
.ws61{word-spacing:2.929004px;}
.ws40{word-spacing:2.988780px;}
.ws77{word-spacing:3.048556px;}
.ws29{word-spacing:3.066509px;}
.ws5b{word-spacing:3.227882px;}
.ws2e{word-spacing:3.287658px;}
.ws97{word-spacing:3.466985px;}
.ws4a{word-spacing:3.526760px;}
.wsa9{word-spacing:3.646312px;}
.ws32{word-spacing:3.706087px;}
.ws25{word-spacing:3.825638px;}
.ws43{word-spacing:3.885414px;}
.ws5d{word-spacing:4.124516px;}
.ws18{word-spacing:4.244068px;}
.ws5c{word-spacing:4.303843px;}
.ws33{word-spacing:4.363619px;}
.ws9{word-spacing:4.411469px;}
.ws3f{word-spacing:4.423394px;}
.ws79{word-spacing:4.542946px;}
.ws30{word-spacing:4.662497px;}
.ws20{word-spacing:4.722272px;}
.ws76{word-spacing:4.841824px;}
.ws84{word-spacing:4.901599px;}
.ws6{word-spacing:5.057050px;}
.ws26{word-spacing:5.080926px;}
.ws55{word-spacing:5.200477px;}
.ws50{word-spacing:5.260253px;}
.ws68{word-spacing:5.320028px;}
.ws69{word-spacing:5.499355px;}
.wsd{word-spacing:5.541235px;}
.ws6b{word-spacing:5.559131px;}
.ws41{word-spacing:5.618906px;}
.ws92{word-spacing:5.738458px;}
.ws5a{word-spacing:5.977560px;}
.ws6e{word-spacing:6.037336px;}
.ws38{word-spacing:6.156887px;}
.ws72{word-spacing:6.455765px;}
.ws10{word-spacing:6.563405px;}
.wsa7{word-spacing:6.572108px;}
.ws3b{word-spacing:6.575316px;}
.ws3e{word-spacing:6.635092px;}
.wsb{word-spacing:6.671002px;}
.ws17{word-spacing:6.754643px;}
.ws54{word-spacing:6.814418px;}
.wsf{word-spacing:6.832397px;}
.ws5{word-spacing:6.886195px;}
.ws85{word-spacing:6.993745px;}
.ws4{word-spacing:7.047590px;}
.ws46{word-spacing:7.173072px;}
.ws70{word-spacing:7.232848px;}
.ws7d{word-spacing:7.412174px;}
.ws2a{word-spacing:7.531726px;}
.ws3d{word-spacing:7.591501px;}
.ws1f{word-spacing:7.651277px;}
.ws6c{word-spacing:7.950155px;}
.wsa6{word-spacing:8.009930px;}
.ws51{word-spacing:8.069706px;}
.ws8c{word-spacing:8.308808px;}
.ws56{word-spacing:8.368584px;}
.ws7a{word-spacing:8.488135px;}
.ws27{word-spacing:8.607686px;}
.ws83{word-spacing:8.667462px;}
.ws24{word-spacing:8.727238px;}
.ws23{word-spacing:8.966340px;}
.ws5f{word-spacing:9.085891px;}
.ws75{word-spacing:9.145667px;}
.ws8e{word-spacing:9.504320px;}
.ws74{word-spacing:9.564096px;}
.ws67{word-spacing:10.102076px;}
.ws3c{word-spacing:10.281403px;}
.wsa4{word-spacing:11.118262px;}
.wsa1{word-spacing:11.596466px;}
.ws44{word-spacing:11.835569px;}
.ws4e{word-spacing:12.074671px;}
.ws6d{word-spacing:12.134447px;}
.ws96{word-spacing:12.194222px;}
.ws8a{word-spacing:12.433325px;}
.ws9b{word-spacing:12.493100px;}
.ws9e{word-spacing:12.552876px;}
.ws4b{word-spacing:12.791978px;}
.wsa5{word-spacing:12.971305px;}
.ws66{word-spacing:14.525471px;}
.ws88{word-spacing:14.884124px;}
.wsa0{word-spacing:15.242778px;}
.ws4d{word-spacing:15.481880px;}
.ws8{word-spacing:15.578400px;}
.ws89{word-spacing:16.019861px;}
.ws80{word-spacing:16.298195px;}
.ws99{word-spacing:16.916495px;}
.ws8f{word-spacing:17.095822px;}
.ws1{word-spacing:17.861069px;}
.ws94{word-spacing:17.932680px;}
.wsaa{word-spacing:18.530436px;}
.ws9a{word-spacing:20.144377px;}
.ws8d{word-spacing:20.323704px;}
.ws93{word-spacing:20.622582px;}
.ws0{word-spacing:21.433223px;}
.ws95{word-spacing:23.970016px;}
.ws86{word-spacing:28.811839px;}
.ws6a{word-spacing:35.805584px;}
.ws90{word-spacing:124.990780px;}
._1{margin-left:-7.251134px;}
._12{margin-left:-6.097111px;}
._2{margin-left:-4.554894px;}
._3{margin-left:-3.496896px;}
._0{margin-left:-1.721544px;}
._7{width:11.656242px;}
._5{width:15.063451px;}
._11{width:16.498066px;}
._8{width:18.112007px;}
._10{width:20.144377px;}
._d{width:21.519216px;}
._13{width:22.818349px;}
._4{width:24.209118px;}
._e{width:26.307602px;}
._9{width:28.496801px;}
._c{width:31.432429px;}
._16{width:33.070258px;}
._f{width:38.495442px;}
._b{width:39.906112px;}
._6{width:42.739554px;}
._15{width:47.162948px;}
._14{width:58.586426px;}
._a{width:421.537531px;}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:35.865600px;}
.fs3{font-size:41.842800px;}
.fs2{font-size:47.820600px;}
.fs5{font-size:53.798400px;}
.fs4{font-size:59.775600px;}
.fs6{font-size:65.454600px;}
.fs1{font-size:71.731200px;}
.fs0{font-size:86.077200px;}
.y0{bottom:0.000000px;}
.y30{bottom:135.000000px;}
.yb7{bottom:140.713500px;}
.y2f{bottom:149.944500px;}
.y59{bottom:151.438500px;}
.yb6{bottom:157.024500px;}
.yc9{bottom:163.354500px;}
.y58{bottom:167.877000px;}
.y2e{bottom:175.555500px;}
.yb5{bottom:183.390000px;}
.y8e{bottom:184.315500px;}
.y57{bottom:184.447500px;}
.yfd{bottom:187.947000px;}
.y2d{bottom:191.994000px;}
.yb4{bottom:199.828500px;}
.y8d{bottom:200.754000px;}
.y56{bottom:200.886000px;}
.yfc{bottom:204.385500px;}
.y2c{bottom:208.432500px;}
.yc8{bottom:213.066000px;}
.yb3{bottom:216.265500px;}
.y8c{bottom:217.192500px;}
.y55{bottom:217.324500px;}
.yfb{bottom:220.822500px;}
.y2b{bottom:224.871000px;}
.yc7{bottom:229.503000px;}
.yb2{bottom:232.704000px;}
.y8b{bottom:233.629500px;}
.y54{bottom:233.763000px;}
.yfa{bottom:237.261000px;}
.y2a{bottom:241.309500px;}
.yc6{bottom:245.941500px;}
.yb1{bottom:249.142500px;}
.y8a{bottom:250.068000px;}
.y53{bottom:250.201500px;}
.yf9{bottom:253.699500px;}
.y29{bottom:257.748000px;}
.yc5{bottom:262.380000px;}
.yb0{bottom:265.581000px;}
.y89{bottom:266.506500px;}
.y52{bottom:266.640000px;}
.yf8{bottom:273.874500px;}
.y28{bottom:274.186500px;}
.yc4{bottom:278.818500px;}
.yaf{bottom:282.019500px;}
.y88{bottom:282.945000px;}
.y51{bottom:283.078500px;}
.yf7{bottom:290.313000px;}
.y27{bottom:290.625000px;}
.yc3{bottom:295.257000px;}
.yae{bottom:298.458000px;}
.y50{bottom:299.517000px;}
.y87{bottom:305.670000px;}
.yf6{bottom:306.751500px;}
.y26{bottom:307.062000px;}
.yc2{bottom:311.695500px;}
.yad{bottom:314.896500px;}
.y4f{bottom:315.955500px;}
.yf5{bottom:323.190000px;}
.y25{bottom:323.500500px;}
.yc1{bottom:328.134000px;}
.yac{bottom:332.226000px;}
.y4e{bottom:332.394000px;}
.y24{bottom:339.939000px;}
.y86{bottom:341.994000px;}
.yf4{bottom:343.363500px;}
.yc0{bottom:344.572500px;}
.yab{bottom:348.664500px;}
.y4d{bottom:348.831000px;}
.y23{bottom:356.377500px;}
.y85{bottom:358.432500px;}
.yf3{bottom:359.802000px;}
.ybf{bottom:361.011000px;}
.yaa{bottom:365.103000px;}
.y4c{bottom:370.152000px;}
.y22{bottom:372.816000px;}
.y84{bottom:374.871000px;}
.yf2{bottom:376.240500px;}
.ybe{bottom:377.449500px;}
.ya9{bottom:381.541500px;}
.y21{bottom:389.254500px;}
.y83{bottom:391.309500px;}
.yf1{bottom:392.679000px;}
.ybd{bottom:393.886500px;}
.ya8{bottom:397.978500px;}
.y4b{bottom:404.955000px;}
.y20{bottom:405.693000px;}
.y82{bottom:407.748000px;}
.yf0{bottom:409.117500px;}
.ybc{bottom:410.325000px;}
.ya7{bottom:414.417000px;}
.y4a{bottom:421.393500px;}
.y1f{bottom:422.131500px;}
.y81{bottom:424.186500px;}
.yef{bottom:425.556000px;}
.ybb{bottom:426.763500px;}
.ya6{bottom:430.855500px;}
.y49{bottom:437.832000px;}
.y1e{bottom:438.570000px;}
.y80{bottom:440.625000px;}
.yba{bottom:443.202000px;}
.yee{bottom:445.729500px;}
.ya5{bottom:447.294000px;}
.y48{bottom:454.270500px;}
.y1d{bottom:455.008500px;}
.y7f{bottom:457.063500px;}
.yed{bottom:462.168000px;}
.ya4{bottom:463.732500px;}
.y47{bottom:470.707500px;}
.y1c{bottom:471.445500px;}
.y7e{bottom:473.502000px;}
.yec{bottom:478.606500px;}
.ya3{bottom:480.171000px;}
.y46{bottom:487.146000px;}
.y1b{bottom:487.884000px;}
.y7d{bottom:489.940500px;}
.ya2{bottom:496.609500px;}
.yeb{bottom:498.781500px;}
.y45{bottom:503.584500px;}
.y1a{bottom:504.322500px;}
.y7c{bottom:506.377500px;}
.ya1{bottom:513.048000px;}
.yea{bottom:515.218500px;}
.y44{bottom:520.023000px;}
.y19{bottom:520.761000px;}
.y7b{bottom:522.816000px;}
.yb9{bottom:524.709000px;}
.ya0{bottom:529.486500px;}
.ye9{bottom:531.657000px;}
.y43{bottom:536.461500px;}
.y18{bottom:537.199500px;}
.y7a{bottom:539.254500px;}
.yb8{bottom:541.147500px;}
.y9f{bottom:545.925000px;}
.ye8{bottom:548.095500px;}
.y42{bottom:552.900000px;}
.y79{bottom:555.693000px;}
.y17{bottom:557.998500px;}
.ye7{bottom:568.270500px;}
.y41{bottom:569.338500px;}
.y9e{bottom:569.518500px;}
.y78{bottom:572.131500px;}
.ye6{bottom:584.709000px;}
.y40{bottom:585.777000px;}
.y77{bottom:589.171500px;}
.y16{bottom:599.425500px;}
.ye5{bottom:601.147500px;}
.y3f{bottom:602.347500px;}
.y9d{bottom:603.798000px;}
.y76{bottom:605.610000px;}
.y15{bottom:614.368500px;}
.ye4{bottom:617.586000px;}
.y3e{bottom:618.786000px;}
.y9c{bottom:620.235000px;}
.y75{bottom:622.048500px;}
.y14{bottom:629.313000px;}
.y3d{bottom:635.224500px;}
.y9b{bottom:636.673500px;}
.ye3{bottom:637.759500px;}
.y74{bottom:638.485500px;}
.y13{bottom:644.256000px;}
.y3c{bottom:651.663000px;}
.y9a{bottom:653.112000px;}
.ye2{bottom:654.198000px;}
.y73{bottom:654.924000px;}
.y12{bottom:659.200500px;}
.y3b{bottom:668.101500px;}
.y99{bottom:669.550500px;}
.ye1{bottom:670.636500px;}
.y72{bottom:671.362500px;}
.y11{bottom:674.145000px;}
.y3a{bottom:684.540000px;}
.y98{bottom:685.989000px;}
.y71{bottom:687.801000px;}
.y10{bottom:689.088000px;}
.ye0{bottom:690.810000px;}
.y39{bottom:700.978500px;}
.y97{bottom:702.427500px;}
.yf{bottom:704.032500px;}
.y70{bottom:704.239500px;}
.ydf{bottom:707.248500px;}
.y38{bottom:717.417000px;}
.y96{bottom:718.866000px;}
.ye{bottom:718.977000px;}
.y6f{bottom:720.678000px;}
.yde{bottom:723.687000px;}
.y37{bottom:733.854000px;}
.yd{bottom:733.920000px;}
.y95{bottom:735.304500px;}
.y6e{bottom:737.116500px;}
.ydd{bottom:740.125500px;}
.yc{bottom:748.864500px;}
.y36{bottom:750.292500px;}
.y94{bottom:751.743000px;}
.y6d{bottom:753.555000px;}
.ydc{bottom:760.300500px;}
.yb{bottom:763.809000px;}
.y35{bottom:766.864500px;}
.y93{bottom:768.181500px;}
.y6c{bottom:769.993500px;}
.ydb{bottom:776.739000px;}
.ya{bottom:778.752000px;}
.y34{bottom:783.303000px;}
.y92{bottom:784.618500px;}
.y6b{bottom:786.432000px;}
.yda{bottom:793.177500px;}
.y9{bottom:793.696500px;}
.y33{bottom:799.741500px;}
.y91{bottom:808.213500px;}
.y8{bottom:808.641000px;}
.y6a{bottom:809.155500px;}
.yd9{bottom:809.614500px;}
.y32{bottom:816.180000px;}
.y7{bottom:823.584000px;}
.yd8{bottom:826.053000px;}
.y31{bottom:832.617000px;}
.yd7{bottom:842.491500px;}
.y69{bottom:845.481000px;}
.y6{bottom:849.055500px;}
.y68{bottom:861.919500px;}
.yd6{bottom:862.666500px;}
.y67{bottom:878.358000px;}
.yd5{bottom:879.105000px;}
.y66{bottom:894.796500px;}
.yd4{bottom:899.278500px;}
.y65{bottom:911.233500px;}
.y90{bottom:911.235000px;}
.yd3{bottom:915.717000px;}
.y5{bottom:922.800000px;}
.y64{bottom:927.672000px;}
.yd2{bottom:932.155500px;}
.y63{bottom:944.110500px;}
.y4{bottom:944.661000px;}
.yd1{bottom:952.330500px;}
.y62{bottom:960.549000px;}
.y3{bottom:961.099500px;}
.yd0{bottom:968.769000px;}
.y61{bottom:976.987500px;}
.y2{bottom:981.052500px;}
.ycf{bottom:988.942500px;}
.y60{bottom:993.426000px;}
.yce{bottom:1005.381000px;}
.y5f{bottom:1009.864500px;}
.ycd{bottom:1021.819500px;}
.y1{bottom:1024.674000px;}
.y5e{bottom:1026.303000px;}
.ycc{bottom:1038.258000px;}
.y5d{bottom:1042.741500px;}
.ycb{bottom:1054.696500px;}
.y5c{bottom:1059.180000px;}
.yca{bottom:1071.135000px;}
.y5b{bottom:1075.617000px;}
.y8f{bottom:1075.618500px;}
.y5a{bottom:1092.055500px;}
.hb{height:24.675533px;}
.h3{height:28.787846px;}
.h6{height:37.013299px;}
.h8{height:41.125613px;}
.h5{height:41.364715px;}
.h4{height:44.831700px;}
.ha{height:45.294583px;}
.h7{height:49.637990px;}
.h9{height:50.483846px;}
.h2{height:58.934573px;}
.h1{height:59.565422px;}
.h0{height:1188.000000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x9{left:81.000000px;}
.x7{left:95.944500px;}
.x11{left:161.395500px;}
.xd{left:171.619500px;}
.x1{left:191.323500px;}
.xe{left:206.328000px;}
.x8{left:211.215000px;}
.x6{left:232.072500px;}
.x5{left:258.252000px;}
.x2{left:281.413500px;}
.x4{left:351.546000px;}
.x3{left:383.533500px;}
.xa{left:479.250000px;}
.xb{left:494.194500px;}
.x10{left:498.229500px;}
.xc{left:604.758000px;}
.xf{left:615.274500px;}
.x12{left:616.467000px;}
@media print{
.v4{vertical-align:-20.314667pt;}
.v2{vertical-align:-19.280000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:19.285333pt;}
.v1{vertical-align:23.141333pt;}
.ls2{letter-spacing:0.000000pt;}
.ls1{letter-spacing:2.656533pt;}
.ls4{letter-spacing:2.657067pt;}
.ls3{letter-spacing:16.235200pt;}
.ls0{letter-spacing:18.597067pt;}
.ws91{word-spacing:-13.283467pt;}
.ws87{word-spacing:-11.955200pt;}
.ws39{word-spacing:-3.028630pt;}
.ws37{word-spacing:-2.762961pt;}
.ws36{word-spacing:-2.709827pt;}
.ws48{word-spacing:-2.656693pt;}
.ws2c{word-spacing:-2.603559pt;}
.ws52{word-spacing:-2.497292pt;}
.ws71{word-spacing:-2.391024pt;}
.wsa8{word-spacing:-2.337890pt;}
.ws8b{word-spacing:-2.231622pt;}
.ws35{word-spacing:-2.125355pt;}
.ws9d{word-spacing:-2.072221pt;}
.ws42{word-spacing:-2.019087pt;}
.ws34{word-spacing:-1.859685pt;}
.ws9f{word-spacing:-1.700284pt;}
.ws47{word-spacing:-1.487748pt;}
.ws45{word-spacing:-1.381481pt;}
.ws1a{word-spacing:-1.115811pt;}
.ws9c{word-spacing:-1.062677pt;}
.ws1b{word-spacing:-0.903276pt;}
.wse{word-spacing:-0.669491pt;}
.ws5e{word-spacing:-0.584473pt;}
.wsa{word-spacing:-0.573850pt;}
.ws59{word-spacing:-0.531339pt;}
.ws58{word-spacing:-0.478205pt;}
.ws78{word-spacing:-0.425071pt;}
.ws3a{word-spacing:-0.371937pt;}
.ws19{word-spacing:-0.212535pt;}
.ws7c{word-spacing:-0.106268pt;}
.ws14{word-spacing:-0.063761pt;}
.ws3{word-spacing:-0.053134pt;}
.ws2{word-spacing:0.000000pt;}
.ws7b{word-spacing:0.159402pt;}
.ws4c{word-spacing:0.212535pt;}
.ws22{word-spacing:0.265669pt;}
.wsc{word-spacing:0.286925pt;}
.ws16{word-spacing:0.318803pt;}
.ws28{word-spacing:0.478205pt;}
.ws53{word-spacing:0.531339pt;}
.ws15{word-spacing:0.584473pt;}
.ws7e{word-spacing:0.637606pt;}
.ws2b{word-spacing:0.690740pt;}
.ws2f{word-spacing:0.743874pt;}
.wsa3{word-spacing:0.797008pt;}
.ws4f{word-spacing:0.903276pt;}
.ws49{word-spacing:0.956410pt;}
.ws57{word-spacing:1.009543pt;}
.ws65{word-spacing:1.062677pt;}
.ws12{word-spacing:1.099878pt;}
.ws11{word-spacing:1.147699pt;}
.ws73{word-spacing:1.168945pt;}
.ws1c{word-spacing:1.222079pt;}
.ws21{word-spacing:1.275213pt;}
.ws7f{word-spacing:1.381481pt;}
.ws63{word-spacing:1.434614pt;}
.ws82{word-spacing:1.487748pt;}
.ws2d{word-spacing:1.594016pt;}
.ws60{word-spacing:1.753418pt;}
.ws98{word-spacing:1.806551pt;}
.ws1e{word-spacing:1.912819pt;}
.ws7{word-spacing:1.912832pt;}
.ws64{word-spacing:1.965953pt;}
.ws31{word-spacing:2.231622pt;}
.ws81{word-spacing:2.284756pt;}
.wsa2{word-spacing:2.337890pt;}
.ws1d{word-spacing:2.391024pt;}
.ws13{word-spacing:2.438861pt;}
.ws6f{word-spacing:2.497292pt;}
.ws62{word-spacing:2.550426pt;}
.ws61{word-spacing:2.603559pt;}
.ws40{word-spacing:2.656693pt;}
.ws77{word-spacing:2.709827pt;}
.ws29{word-spacing:2.725786pt;}
.ws5b{word-spacing:2.869229pt;}
.ws2e{word-spacing:2.922363pt;}
.ws97{word-spacing:3.081764pt;}
.ws4a{word-spacing:3.134898pt;}
.wsa9{word-spacing:3.241166pt;}
.ws32{word-spacing:3.294300pt;}
.ws25{word-spacing:3.400567pt;}
.ws43{word-spacing:3.453701pt;}
.ws5d{word-spacing:3.666237pt;}
.ws18{word-spacing:3.772505pt;}
.ws5c{word-spacing:3.825638pt;}
.ws33{word-spacing:3.878772pt;}
.ws9{word-spacing:3.921306pt;}
.ws3f{word-spacing:3.931906pt;}
.ws79{word-spacing:4.038174pt;}
.ws30{word-spacing:4.144442pt;}
.ws20{word-spacing:4.197575pt;}
.ws76{word-spacing:4.303843pt;}
.ws84{word-spacing:4.356977pt;}
.ws6{word-spacing:4.495155pt;}
.ws26{word-spacing:4.516379pt;}
.ws55{word-spacing:4.622646pt;}
.ws50{word-spacing:4.675780pt;}
.ws68{word-spacing:4.728914pt;}
.ws69{word-spacing:4.888316pt;}
.wsd{word-spacing:4.925542pt;}
.ws6b{word-spacing:4.941450pt;}
.ws41{word-spacing:4.994583pt;}
.ws92{word-spacing:5.100851pt;}
.ws5a{word-spacing:5.313387pt;}
.ws6e{word-spacing:5.366521pt;}
.ws38{word-spacing:5.472788pt;}
.ws72{word-spacing:5.738458pt;}
.ws10{word-spacing:5.834138pt;}
.wsa7{word-spacing:5.841874pt;}
.ws3b{word-spacing:5.844725pt;}
.ws3e{word-spacing:5.897859pt;}
.wsb{word-spacing:5.929779pt;}
.ws17{word-spacing:6.004127pt;}
.ws54{word-spacing:6.057261pt;}
.wsf{word-spacing:6.073242pt;}
.ws5{word-spacing:6.121062pt;}
.ws85{word-spacing:6.216662pt;}
.ws4{word-spacing:6.264525pt;}
.ws46{word-spacing:6.376064pt;}
.ws70{word-spacing:6.429198pt;}
.ws7d{word-spacing:6.588599pt;}
.ws2a{word-spacing:6.694867pt;}
.ws3d{word-spacing:6.748001pt;}
.ws1f{word-spacing:6.801135pt;}
.ws6c{word-spacing:7.066804pt;}
.wsa6{word-spacing:7.119938pt;}
.ws51{word-spacing:7.173072pt;}
.ws8c{word-spacing:7.385607pt;}
.ws56{word-spacing:7.438741pt;}
.ws7a{word-spacing:7.545009pt;}
.ws27{word-spacing:7.651277pt;}
.ws83{word-spacing:7.704411pt;}
.ws24{word-spacing:7.757545pt;}
.ws23{word-spacing:7.970080pt;}
.ws5f{word-spacing:8.076348pt;}
.ws75{word-spacing:8.129482pt;}
.ws8e{word-spacing:8.448285pt;}
.ws74{word-spacing:8.501419pt;}
.ws67{word-spacing:8.979623pt;}
.ws3c{word-spacing:9.139025pt;}
.wsa4{word-spacing:9.882899pt;}
.wsa1{word-spacing:10.307970pt;}
.ws44{word-spacing:10.520506pt;}
.ws4e{word-spacing:10.733041pt;}
.ws6d{word-spacing:10.786175pt;}
.ws96{word-spacing:10.839309pt;}
.ws8a{word-spacing:11.051844pt;}
.ws9b{word-spacing:11.104978pt;}
.ws9e{word-spacing:11.158112pt;}
.ws4b{word-spacing:11.370647pt;}
.wsa5{word-spacing:11.530049pt;}
.ws66{word-spacing:12.911530pt;}
.ws88{word-spacing:13.230333pt;}
.wsa0{word-spacing:13.549136pt;}
.ws4d{word-spacing:13.761671pt;}
.ws8{word-spacing:13.847467pt;}
.ws89{word-spacing:14.239876pt;}
.ws80{word-spacing:14.487285pt;}
.ws99{word-spacing:15.036884pt;}
.ws8f{word-spacing:15.196286pt;}
.ws1{word-spacing:15.876506pt;}
.ws94{word-spacing:15.940160pt;}
.wsaa{word-spacing:16.471499pt;}
.ws9a{word-spacing:17.906113pt;}
.ws8d{word-spacing:18.065515pt;}
.ws93{word-spacing:18.331184pt;}
.ws0{word-spacing:19.051754pt;}
.ws95{word-spacing:21.306681pt;}
.ws86{word-spacing:25.610524pt;}
.ws6a{word-spacing:31.827186pt;}
.ws90{word-spacing:111.102915pt;}
._1{margin-left:-6.445453pt;}
._12{margin-left:-5.419654pt;}
._2{margin-left:-4.048795pt;}
._3{margin-left:-3.108352pt;}
._0{margin-left:-1.530261pt;}
._7{width:10.361104pt;}
._5{width:13.389734pt;}
._11{width:14.664947pt;}
._8{width:16.099562pt;}
._10{width:17.906113pt;}
._d{width:19.128192pt;}
._13{width:20.282977pt;}
._4{width:21.519216pt;}
._e{width:23.384535pt;}
._9{width:25.330490pt;}
._c{width:27.939937pt;}
._16{width:29.395785pt;}
._f{width:34.218171pt;}
._b{width:35.472099pt;}
._6{width:37.990715pt;}
._15{width:41.922621pt;}
._14{width:52.076823pt;}
._a{width:374.700028pt;}
.fs7{font-size:31.880533pt;}
.fs3{font-size:37.193600pt;}
.fs2{font-size:42.507200pt;}
.fs5{font-size:47.820800pt;}
.fs4{font-size:53.133867pt;}
.fs6{font-size:58.181867pt;}
.fs1{font-size:63.761067pt;}
.fs0{font-size:76.513067pt;}
.y0{bottom:0.000000pt;}
.y30{bottom:120.000000pt;}
.yb7{bottom:125.078667pt;}
.y2f{bottom:133.284000pt;}
.y59{bottom:134.612000pt;}
.yb6{bottom:139.577333pt;}
.yc9{bottom:145.204000pt;}
.y58{bottom:149.224000pt;}
.y2e{bottom:156.049333pt;}
.yb5{bottom:163.013333pt;}
.y8e{bottom:163.836000pt;}
.y57{bottom:163.953333pt;}
.yfd{bottom:167.064000pt;}
.y2d{bottom:170.661333pt;}
.yb4{bottom:177.625333pt;}
.y8d{bottom:178.448000pt;}
.y56{bottom:178.565333pt;}
.yfc{bottom:181.676000pt;}
.y2c{bottom:185.273333pt;}
.yc8{bottom:189.392000pt;}
.yb3{bottom:192.236000pt;}
.y8c{bottom:193.060000pt;}
.y55{bottom:193.177333pt;}
.yfb{bottom:196.286667pt;}
.y2b{bottom:199.885333pt;}
.yc7{bottom:204.002667pt;}
.yb2{bottom:206.848000pt;}
.y8b{bottom:207.670667pt;}
.y54{bottom:207.789333pt;}
.yfa{bottom:210.898667pt;}
.y2a{bottom:214.497333pt;}
.yc6{bottom:218.614667pt;}
.yb1{bottom:221.460000pt;}
.y8a{bottom:222.282667pt;}
.y53{bottom:222.401333pt;}
.yf9{bottom:225.510667pt;}
.y29{bottom:229.109333pt;}
.yc5{bottom:233.226667pt;}
.yb0{bottom:236.072000pt;}
.y89{bottom:236.894667pt;}
.y52{bottom:237.013333pt;}
.yf8{bottom:243.444000pt;}
.y28{bottom:243.721333pt;}
.yc4{bottom:247.838667pt;}
.yaf{bottom:250.684000pt;}
.y88{bottom:251.506667pt;}
.y51{bottom:251.625333pt;}
.yf7{bottom:258.056000pt;}
.y27{bottom:258.333333pt;}
.yc3{bottom:262.450667pt;}
.yae{bottom:265.296000pt;}
.y50{bottom:266.237333pt;}
.y87{bottom:271.706667pt;}
.yf6{bottom:272.668000pt;}
.y26{bottom:272.944000pt;}
.yc2{bottom:277.062667pt;}
.yad{bottom:279.908000pt;}
.y4f{bottom:280.849333pt;}
.yf5{bottom:287.280000pt;}
.y25{bottom:287.556000pt;}
.yc1{bottom:291.674667pt;}
.yac{bottom:295.312000pt;}
.y4e{bottom:295.461333pt;}
.y24{bottom:302.168000pt;}
.y86{bottom:303.994667pt;}
.yf4{bottom:305.212000pt;}
.yc0{bottom:306.286667pt;}
.yab{bottom:309.924000pt;}
.y4d{bottom:310.072000pt;}
.y23{bottom:316.780000pt;}
.y85{bottom:318.606667pt;}
.yf3{bottom:319.824000pt;}
.ybf{bottom:320.898667pt;}
.yaa{bottom:324.536000pt;}
.y4c{bottom:329.024000pt;}
.y22{bottom:331.392000pt;}
.y84{bottom:333.218667pt;}
.yf2{bottom:334.436000pt;}
.ybe{bottom:335.510667pt;}
.ya9{bottom:339.148000pt;}
.y21{bottom:346.004000pt;}
.y83{bottom:347.830667pt;}
.yf1{bottom:349.048000pt;}
.ybd{bottom:350.121333pt;}
.ya8{bottom:353.758667pt;}
.y4b{bottom:359.960000pt;}
.y20{bottom:360.616000pt;}
.y82{bottom:362.442667pt;}
.yf0{bottom:363.660000pt;}
.ybc{bottom:364.733333pt;}
.ya7{bottom:368.370667pt;}
.y4a{bottom:374.572000pt;}
.y1f{bottom:375.228000pt;}
.y81{bottom:377.054667pt;}
.yef{bottom:378.272000pt;}
.ybb{bottom:379.345333pt;}
.ya6{bottom:382.982667pt;}
.y49{bottom:389.184000pt;}
.y1e{bottom:389.840000pt;}
.y80{bottom:391.666667pt;}
.yba{bottom:393.957333pt;}
.yee{bottom:396.204000pt;}
.ya5{bottom:397.594667pt;}
.y48{bottom:403.796000pt;}
.y1d{bottom:404.452000pt;}
.y7f{bottom:406.278667pt;}
.yed{bottom:410.816000pt;}
.ya4{bottom:412.206667pt;}
.y47{bottom:418.406667pt;}
.y1c{bottom:419.062667pt;}
.y7e{bottom:420.890667pt;}
.yec{bottom:425.428000pt;}
.ya3{bottom:426.818667pt;}
.y46{bottom:433.018667pt;}
.y1b{bottom:433.674667pt;}
.y7d{bottom:435.502667pt;}
.ya2{bottom:441.430667pt;}
.yeb{bottom:443.361333pt;}
.y45{bottom:447.630667pt;}
.y1a{bottom:448.286667pt;}
.y7c{bottom:450.113333pt;}
.ya1{bottom:456.042667pt;}
.yea{bottom:457.972000pt;}
.y44{bottom:462.242667pt;}
.y19{bottom:462.898667pt;}
.y7b{bottom:464.725333pt;}
.yb9{bottom:466.408000pt;}
.ya0{bottom:470.654667pt;}
.ye9{bottom:472.584000pt;}
.y43{bottom:476.854667pt;}
.y18{bottom:477.510667pt;}
.y7a{bottom:479.337333pt;}
.yb8{bottom:481.020000pt;}
.y9f{bottom:485.266667pt;}
.ye8{bottom:487.196000pt;}
.y42{bottom:491.466667pt;}
.y79{bottom:493.949333pt;}
.y17{bottom:495.998667pt;}
.ye7{bottom:505.129333pt;}
.y41{bottom:506.078667pt;}
.y9e{bottom:506.238667pt;}
.y78{bottom:508.561333pt;}
.ye6{bottom:519.741333pt;}
.y40{bottom:520.690667pt;}
.y77{bottom:523.708000pt;}
.y16{bottom:532.822667pt;}
.ye5{bottom:534.353333pt;}
.y3f{bottom:535.420000pt;}
.y9d{bottom:536.709333pt;}
.y76{bottom:538.320000pt;}
.y15{bottom:546.105333pt;}
.ye4{bottom:548.965333pt;}
.y3e{bottom:550.032000pt;}
.y9c{bottom:551.320000pt;}
.y75{bottom:552.932000pt;}
.y14{bottom:559.389333pt;}
.y3d{bottom:564.644000pt;}
.y9b{bottom:565.932000pt;}
.ye3{bottom:566.897333pt;}
.y74{bottom:567.542667pt;}
.y13{bottom:572.672000pt;}
.y3c{bottom:579.256000pt;}
.y9a{bottom:580.544000pt;}
.ye2{bottom:581.509333pt;}
.y73{bottom:582.154667pt;}
.y12{bottom:585.956000pt;}
.y3b{bottom:593.868000pt;}
.y99{bottom:595.156000pt;}
.ye1{bottom:596.121333pt;}
.y72{bottom:596.766667pt;}
.y11{bottom:599.240000pt;}
.y3a{bottom:608.480000pt;}
.y98{bottom:609.768000pt;}
.y71{bottom:611.378667pt;}
.y10{bottom:612.522667pt;}
.ye0{bottom:614.053333pt;}
.y39{bottom:623.092000pt;}
.y97{bottom:624.380000pt;}
.yf{bottom:625.806667pt;}
.y70{bottom:625.990667pt;}
.ydf{bottom:628.665333pt;}
.y38{bottom:637.704000pt;}
.y96{bottom:638.992000pt;}
.ye{bottom:639.090667pt;}
.y6f{bottom:640.602667pt;}
.yde{bottom:643.277333pt;}
.y37{bottom:652.314667pt;}
.yd{bottom:652.373333pt;}
.y95{bottom:653.604000pt;}
.y6e{bottom:655.214667pt;}
.ydd{bottom:657.889333pt;}
.yc{bottom:665.657333pt;}
.y36{bottom:666.926667pt;}
.y94{bottom:668.216000pt;}
.y6d{bottom:669.826667pt;}
.ydc{bottom:675.822667pt;}
.yb{bottom:678.941333pt;}
.y35{bottom:681.657333pt;}
.y93{bottom:682.828000pt;}
.y6c{bottom:684.438667pt;}
.ydb{bottom:690.434667pt;}
.ya{bottom:692.224000pt;}
.y34{bottom:696.269333pt;}
.y92{bottom:697.438667pt;}
.y6b{bottom:699.050667pt;}
.yda{bottom:705.046667pt;}
.y9{bottom:705.508000pt;}
.y33{bottom:710.881333pt;}
.y91{bottom:718.412000pt;}
.y8{bottom:718.792000pt;}
.y6a{bottom:719.249333pt;}
.yd9{bottom:719.657333pt;}
.y32{bottom:725.493333pt;}
.y7{bottom:732.074667pt;}
.yd8{bottom:734.269333pt;}
.y31{bottom:740.104000pt;}
.yd7{bottom:748.881333pt;}
.y69{bottom:751.538667pt;}
.y6{bottom:754.716000pt;}
.y68{bottom:766.150667pt;}
.yd6{bottom:766.814667pt;}
.y67{bottom:780.762667pt;}
.yd5{bottom:781.426667pt;}
.y66{bottom:795.374667pt;}
.yd4{bottom:799.358667pt;}
.y65{bottom:809.985333pt;}
.y90{bottom:809.986667pt;}
.yd3{bottom:813.970667pt;}
.y5{bottom:820.266667pt;}
.y64{bottom:824.597333pt;}
.yd2{bottom:828.582667pt;}
.y63{bottom:839.209333pt;}
.y4{bottom:839.698667pt;}
.yd1{bottom:846.516000pt;}
.y62{bottom:853.821333pt;}
.y3{bottom:854.310667pt;}
.yd0{bottom:861.128000pt;}
.y61{bottom:868.433333pt;}
.y2{bottom:872.046667pt;}
.ycf{bottom:879.060000pt;}
.y60{bottom:883.045333pt;}
.yce{bottom:893.672000pt;}
.y5f{bottom:897.657333pt;}
.ycd{bottom:908.284000pt;}
.y1{bottom:910.821333pt;}
.y5e{bottom:912.269333pt;}
.ycc{bottom:922.896000pt;}
.y5d{bottom:926.881333pt;}
.ycb{bottom:937.508000pt;}
.y5c{bottom:941.493333pt;}
.yca{bottom:952.120000pt;}
.y5b{bottom:956.104000pt;}
.y8f{bottom:956.105333pt;}
.y5a{bottom:970.716000pt;}
.hb{height:21.933807pt;}
.h3{height:25.589197pt;}
.h6{height:32.900710pt;}
.h8{height:36.556100pt;}
.h5{height:36.768636pt;}
.h4{height:39.850400pt;}
.ha{height:40.261852pt;}
.h7{height:44.122658pt;}
.h9{height:44.874530pt;}
.h2{height:52.386287pt;}
.h1{height:52.947042pt;}
.h0{height:1056.000000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x9{left:72.000000pt;}
.x7{left:85.284000pt;}
.x11{left:143.462667pt;}
.xd{left:152.550667pt;}
.x1{left:170.065333pt;}
.xe{left:183.402667pt;}
.x8{left:187.746667pt;}
.x6{left:206.286667pt;}
.x5{left:229.557333pt;}
.x2{left:250.145333pt;}
.x4{left:312.485333pt;}
.x3{left:340.918667pt;}
.xa{left:426.000000pt;}
.xb{left:439.284000pt;}
.x10{left:442.870667pt;}
.xc{left:537.562667pt;}
.xf{left:546.910667pt;}
.x12{left:547.970667pt;}
}




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