
    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_7b14e96d83ac7c81c213ef0a.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_c68082e1f8073bc067bc0dd1.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.854000;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_23da8a6f738aa895a358a336.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.895000;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_be9c53f51f95a211f651afa1.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.773000;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_4b973e7508cb759c73277b81.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.900000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_c93180268f42bd32c2571f7c.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.429000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.ls6{letter-spacing:0.000000px;}
.ls1{letter-spacing:2.964877px;}
.ls0{letter-spacing:2.988017px;}
.ls7{letter-spacing:14.042100px;}
.ls2{letter-spacing:23.154562px;}
.ls3{letter-spacing:27.600538px;}
.ls4{letter-spacing:35.863409px;}
.ls5{letter-spacing:35.869409px;}
.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;}
}
.ws7f{word-spacing:-14.943900px;}
.ws2{word-spacing:-14.920027px;}
.ws2f{word-spacing:-0.956410px;}
.ws72{word-spacing:-0.915025px;}
.ws73{word-spacing:-0.896634px;}
.ws1a{word-spacing:-0.537980px;}
.ws22{word-spacing:-0.119551px;}
.ws1d{word-spacing:-0.059776px;}
.ws5f{word-spacing:0.000000px;}
.ws0{word-spacing:0.008900px;}
.ws71{word-spacing:0.179327px;}
.ws4{word-spacing:0.239102px;}
.ws11{word-spacing:0.418429px;}
.ws41{word-spacing:0.717307px;}
.ws92{word-spacing:1.075961px;}
.ws9{word-spacing:1.554166px;}
.ws77{word-spacing:1.912819px;}
.ws80{word-spacing:1.956059px;}
.ws81{word-spacing:1.972595px;}
.ws20{word-spacing:2.092146px;}
.ws50{word-spacing:2.151922px;}
.ws99{word-spacing:2.689902px;}
.ws29{word-spacing:2.809453px;}
.wsd{word-spacing:3.048556px;}
.ws21{word-spacing:3.227882px;}
.wsa2{word-spacing:3.390059px;}
.wsa3{word-spacing:3.407209px;}
.ws18{word-spacing:3.586536px;}
.ws15{word-spacing:3.945190px;}
.ws13{word-spacing:4.004965px;}
.ws51{word-spacing:4.293025px;}
.ws53{word-spacing:4.303843px;}
.ws58{word-spacing:4.542946px;}
.ws25{word-spacing:4.602721px;}
.wsa1{word-spacing:4.722272px;}
.ws68{word-spacing:4.841824px;}
.ws6{word-spacing:4.901599px;}
.ws45{word-spacing:5.200477px;}
.wsa4{word-spacing:5.260253px;}
.ws90{word-spacing:5.348975px;}
.ws91{word-spacing:5.379804px;}
.ws40{word-spacing:5.559131px;}
.ws42{word-spacing:5.618906px;}
.ws3c{word-spacing:5.738458px;}
.ws1{word-spacing:5.951572px;}
.ws8b{word-spacing:5.972106px;}
.ws6f{word-spacing:5.973950px;}
.ws8f{word-spacing:5.974175px;}
.ws63{word-spacing:5.975141px;}
.ws8e{word-spacing:5.976059px;}
.wsa{word-spacing:5.977560px;}
.ws46{word-spacing:5.978683px;}
.ws8c{word-spacing:5.980175px;}
.ws94{word-spacing:6.037336px;}
.ws76{word-spacing:6.097111px;}
.ws55{word-spacing:6.276438px;}
.wsa7{word-spacing:6.336214px;}
.ws59{word-spacing:6.694867px;}
.ws8{word-spacing:6.933970px;}
.ws5e{word-spacing:7.173072px;}
.ws2b{word-spacing:7.292623px;}
.ws2d{word-spacing:7.591501px;}
.ws7e{word-spacing:7.890379px;}
.ws23{word-spacing:8.009930px;}
.ws1b{word-spacing:8.189257px;}
.ws3b{word-spacing:8.249033px;}
.ws3a{word-spacing:8.428360px;}
.ws85{word-spacing:8.966340px;}
.ws84{word-spacing:9.026116px;}
.ws88{word-spacing:9.265218px;}
.ws87{word-spacing:9.266975px;}
.ws12{word-spacing:9.384769px;}
.wsb4{word-spacing:9.444545px;}
.ws75{word-spacing:9.504320px;}
.ws16{word-spacing:9.623872px;}
.ws5b{word-spacing:9.803198px;}
.ws93{word-spacing:10.102076px;}
.ws2a{word-spacing:10.221628px;}
.ws3d{word-spacing:10.341179px;}
.ws3{word-spacing:10.400954px;}
.ws33{word-spacing:10.520506px;}
.ws86{word-spacing:10.580281px;}
.wsb6{word-spacing:10.647276px;}
.wsb7{word-spacing:10.699832px;}
.ws97{word-spacing:10.759608px;}
.ws7{word-spacing:10.819384px;}
.ws70{word-spacing:10.836059px;}
.wsb5{word-spacing:10.988975px;}
.ws36{word-spacing:10.998710px;}
.ws65{word-spacing:11.118262px;}
.ws66{word-spacing:11.178037px;}
.ws9b{word-spacing:11.297588px;}
.ws9d{word-spacing:12.074671px;}
.ws9c{word-spacing:12.098106px;}
.ws4a{word-spacing:12.134447px;}
.ws5d{word-spacing:12.253998px;}
.wsc{word-spacing:12.313774px;}
.ws17{word-spacing:12.433325px;}
.ws9f{word-spacing:12.493100px;}
.ws30{word-spacing:12.672427px;}
.ws5{word-spacing:12.791978px;}
.wsb8{word-spacing:12.911530px;}
.wsaf{word-spacing:12.971305px;}
.ws26{word-spacing:13.090856px;}
.ws31{word-spacing:13.389734px;}
.ws98{word-spacing:13.449510px;}
.wsae{word-spacing:13.748388px;}
.wsad{word-spacing:13.752059px;}
.ws9e{word-spacing:14.226593px;}
.ws39{word-spacing:14.343950px;}
.ws38{word-spacing:14.346144px;}
.ws27{word-spacing:14.405920px;}
.ws28{word-spacing:14.465695px;}
.wsf{word-spacing:14.585246px;}
.ws35{word-spacing:14.943900px;}
.ws61{word-spacing:15.780758px;}
.wse{word-spacing:16.019861px;}
.ws10{word-spacing:16.079636px;}
.ws89{word-spacing:16.455104px;}
.wsb2{word-spacing:16.737168px;}
.ws34{word-spacing:16.856719px;}
.ws5c{word-spacing:17.095822px;}
.wsb{word-spacing:17.574026px;}
.ws4f{word-spacing:17.693578px;}
.ws1f{word-spacing:18.112007px;}
.ws24{word-spacing:18.171782px;}
.ws19{word-spacing:18.425984px;}
.ws62{word-spacing:18.649987px;}
.wsa6{word-spacing:18.674975px;}
.ws14{word-spacing:18.857984px;}
.ws52{word-spacing:19.177664px;}
.ws60{word-spacing:19.307519px;}
.ws1e{word-spacing:19.367294px;}
.ws5a{word-spacing:19.486846px;}
.ws3e{word-spacing:19.606397px;}
.ws69{word-spacing:19.756064px;}
.ws9a{word-spacing:19.965050px;}
.ws6d{word-spacing:20.441970px;}
.ws6e{word-spacing:20.443255px;}
.ws43{word-spacing:20.532704px;}
.ws57{word-spacing:20.622582px;}
.wsa5{word-spacing:20.742133px;}
.ws8d{word-spacing:20.860784px;}
.ws49{word-spacing:20.863904px;}
.ws64{word-spacing:20.867984px;}
.ws37{word-spacing:20.921460px;}
.ws56{word-spacing:20.923225px;}
.ws47{word-spacing:20.925025px;}
.ws95{word-spacing:20.945984px;}
.ws8a{word-spacing:21.399665px;}
.ws83{word-spacing:21.578992px;}
.ws2c{word-spacing:22.193984px;}
.ws2e{word-spacing:22.452704px;}
.ws54{word-spacing:22.714728px;}
.ws1c{word-spacing:23.100704px;}
.wsb1{word-spacing:23.372260px;}
.ws6a{word-spacing:24.627547px;}
.ws67{word-spacing:26.094704px;}
.ws6b{word-spacing:26.120106px;}
.ws6c{word-spacing:26.121937px;}
.wsa0{word-spacing:27.376784px;}
.wsb9{word-spacing:27.797504px;}
.wsb0{word-spacing:27.844784px;}
.ws32{word-spacing:28.297424px;}
.ws4c{word-spacing:29.947576px;}
.wsb3{word-spacing:31.631504px;}
.ws3f{word-spacing:34.505984px;}
.ws44{word-spacing:35.805584px;}
.ws82{word-spacing:36.486464px;}
.ws7b{word-spacing:36.808763px;}
.ws7d{word-spacing:36.821770px;}
.ws74{word-spacing:36.881545px;}
.wsaa{word-spacing:37.120648px;}
.wsac{word-spacing:37.136134px;}
.ws96{word-spacing:38.973691px;}
.ws4e{word-spacing:39.930101px;}
.wsa9{word-spacing:49.793075px;}
.ws4b{word-spacing:50.271280px;}
.ws79{word-spacing:51.167914px;}
.ws78{word-spacing:51.176106px;}
.wsa8{word-spacing:51.182106px;}
.ws7c{word-spacing:51.700784px;}
.wsab{word-spacing:52.014704px;}
.ws4d{word-spacing:54.803744px;}
.ws48{word-spacing:93.130385px;}
.ws7a{word-spacing:114.769152px;}
._13{margin-left:-7.301494px;}
._10{margin-left:-5.977560px;}
._3{margin-left:-4.782048px;}
._1{margin-left:-2.725774px;}
._2{margin-left:-1.494390px;}
._0{width:3.012698px;}
._9{width:16.737168px;}
._8{width:18.530436px;}
._f{width:21.100787px;}
._17{width:24.687323px;}
._a{width:26.600142px;}
._7{width:28.652977px;}
._4{width:29.887800px;}
._c{width:31.394791px;}
._b{width:33.317931px;}
._6{width:35.142328px;}
._d{width:36.765691px;}
._11{width:39.571447px;}
._5{width:44.302529px;}
._14{width:45.843403px;}
._12{width:49.547646px;}
._18{width:52.074960px;}
._15{width:53.977367px;}
._16{width:63.881726px;}
._e{width:83.267411px;}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:41.842800px;}
.fs1{font-size:47.820600px;}
.fs0{font-size:59.775600px;}
.y0{bottom:0.000000px;}
.y6c{bottom:52.686000px;}
.ybc{bottom:52.687500px;}
.y37{bottom:113.332500px;}
.y36{bottom:131.080500px;}
.y6b{bottom:131.265000px;}
.y35{bottom:149.013000px;}
.y6a{bottom:149.197500px;}
.y9d{bottom:149.199000px;}
.y34{bottom:166.947000px;}
.y69{bottom:167.130000px;}
.y9c{bottom:167.131500px;}
.y33{bottom:184.695000px;}
.y9b{bottom:185.064000px;}
.y68{bottom:189.999000px;}
.y32{bottom:202.627500px;}
.y9a{bottom:204.526500px;}
.y67{bottom:218.793000px;}
.y31{bottom:220.560000px;}
.y99{bottom:223.989000px;}
.y66{bottom:236.725500px;}
.y30{bottom:238.492500px;}
.y98{bottom:243.451500px;}
.y65{bottom:254.658000px;}
.y2f{bottom:256.425000px;}
.y97{bottom:261.384000px;}
.y64{bottom:272.590500px;}
.y2e{bottom:274.359000px;}
.y96{bottom:279.316500px;}
.y63{bottom:290.524500px;}
.y2d{bottom:292.291500px;}
.y95{bottom:299.544000px;}
.y62{bottom:308.457000px;}
.y2c{bottom:310.224000px;}
.y94{bottom:317.476500px;}
.y61{bottom:326.389500px;}
.y2b{bottom:328.156500px;}
.y93{bottom:335.409000px;}
.y60{bottom:344.322000px;}
.y2a{bottom:346.089000px;}
.y92{bottom:353.341500px;}
.y5f{bottom:362.254500px;}
.y29{bottom:364.021500px;}
.y91{bottom:372.804000px;}
.y5e{bottom:380.188500px;}
.y28{bottom:381.955500px;}
.y90{bottom:390.736500px;}
.y5d{bottom:398.121000px;}
.y27{bottom:399.888000px;}
.y8f{bottom:408.669000px;}
.y5c{bottom:416.053500px;}
.y26{bottom:417.820500px;}
.ybb{bottom:418.189500px;}
.y8e{bottom:426.601500px;}
.y5b{bottom:433.986000px;}
.y25{bottom:435.753000px;}
.yba{bottom:436.122000px;}
.y8d{bottom:444.535500px;}
.y5a{bottom:451.918500px;}
.y24{bottom:453.685500px;}
.yb9{bottom:454.054500px;}
.y8c{bottom:463.998000px;}
.y59{bottom:469.851000px;}
.y23{bottom:471.619500px;}
.yb8{bottom:471.987000px;}
.y8b{bottom:481.930500px;}
.y58{bottom:487.785000px;}
.y22{bottom:489.552000px;}
.yb7{bottom:489.921000px;}
.y8a{bottom:499.863000px;}
.y21{bottom:507.300000px;}
.yb6{bottom:507.853500px;}
.y57{bottom:508.807500px;}
.y89{bottom:517.795500px;}
.y20{bottom:525.232500px;}
.yb5{bottom:525.786000px;}
.y56{bottom:526.740000px;}
.y88{bottom:535.728000px;}
.y1f{bottom:543.165000px;}
.yb4{bottom:543.718500px;}
.y55{bottom:544.672500px;}
.y87{bottom:555.190500px;}
.y1e{bottom:561.097500px;}
.yb3{bottom:561.651000px;}
.y54{bottom:562.605000px;}
.y86{bottom:573.123000px;}
.y1d{bottom:578.845500px;}
.yb2{bottom:579.583500px;}
.y53{bottom:580.537500px;}
.y85{bottom:593.350500px;}
.y1c{bottom:596.779500px;}
.yb1{bottom:597.517500px;}
.y52{bottom:598.471500px;}
.y84{bottom:611.283000px;}
.y1b{bottom:614.712000px;}
.yb0{bottom:615.450000px;}
.y51{bottom:616.404000px;}
.y83{bottom:629.215500px;}
.yaf{bottom:633.382500px;}
.y1a{bottom:637.260000px;}
.y50{bottom:637.426500px;}
.y82{bottom:647.149500px;}
.yae{bottom:651.315000px;}
.y4f{bottom:655.359000px;}
.y19{bottom:664.725000px;}
.y81{bottom:665.082000px;}
.yad{bottom:669.247500px;}
.y4e{bottom:673.291500px;}
.y18{bottom:682.659000px;}
.y80{bottom:684.544500px;}
.yac{bottom:687.181500px;}
.y4d{bottom:691.225500px;}
.y17{bottom:700.591500px;}
.y7f{bottom:702.477000px;}
.yab{bottom:705.114000px;}
.y4c{bottom:709.158000px;}
.y16{bottom:718.524000px;}
.y7e{bottom:720.409500px;}
.yaa{bottom:723.046500px;}
.y4b{bottom:727.090500px;}
.y15{bottom:736.456500px;}
.y7d{bottom:739.872000px;}
.ya9{bottom:740.979000px;}
.y4a{bottom:745.023000px;}
.y14{bottom:754.389000px;}
.y7c{bottom:757.804500px;}
.ya8{bottom:758.911500px;}
.y49{bottom:762.955500px;}
.y13{bottom:772.321500px;}
.y7b{bottom:775.737000px;}
.ya7{bottom:776.844000px;}
.y48{bottom:785.823000px;}
.y12{bottom:790.255500px;}
.ya6{bottom:794.778000px;}
.y7a{bottom:795.199500px;}
.y11{bottom:808.188000px;}
.ya5{bottom:812.710500px;}
.y79{bottom:813.132000px;}
.y47{bottom:814.618500px;}
.y10{bottom:826.120500px;}
.ya4{bottom:830.643000px;}
.y46{bottom:832.551000px;}
.y78{bottom:833.359500px;}
.yf{bottom:844.053000px;}
.ya3{bottom:848.575500px;}
.y45{bottom:850.483500px;}
.y77{bottom:851.292000px;}
.ye{bottom:861.985500px;}
.ya2{bottom:866.508000px;}
.y44{bottom:868.416000px;}
.y76{bottom:869.224500px;}
.yd{bottom:879.918000px;}
.ya1{bottom:884.440500px;}
.y43{bottom:886.348500px;}
.y75{bottom:897.219000px;}
.yc{bottom:897.852000px;}
.ya0{bottom:902.374500px;}
.y42{bottom:904.282500px;}
.yb{bottom:915.784500px;}
.y9f{bottom:920.307000px;}
.y41{bottom:927.241500px;}
.ya{bottom:933.624000px;}
.y74{bottom:938.239500px;}
.y9{bottom:951.558000px;}
.y40{bottom:956.035500px;}
.y73{bottom:956.172000px;}
.y8{bottom:969.490500px;}
.y3f{bottom:973.968000px;}
.y72{bottom:974.104500px;}
.y7{bottom:987.423000px;}
.y3e{bottom:991.900500px;}
.y9e{bottom:992.037000px;}
.y71{bottom:992.038500px;}
.y6{bottom:1005.355500px;}
.y3d{bottom:1009.833000px;}
.y70{bottom:1009.971000px;}
.y5{bottom:1023.288000px;}
.y3c{bottom:1027.767000px;}
.y6f{bottom:1027.903500px;}
.y4{bottom:1041.220500px;}
.y3b{bottom:1045.699500px;}
.y6e{bottom:1045.836000px;}
.y3{bottom:1059.154500px;}
.y3a{bottom:1063.632000px;}
.y6d{bottom:1063.768500px;}
.y39{bottom:1081.564500px;}
.y2{bottom:1081.701000px;}
.y38{bottom:1099.633500px;}
.y1{bottom:1099.635000px;}
.h3{height:39.930101px;}
.h2{height:41.006062px;}
.h1{height:41.125613px;}
.h4{height:41.484266px;}
.h0{height:1188.000000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x4{left:73.446000px;}
.x3{left:88.390500px;}
.xd{left:103.479000px;}
.x2{left:194.440500px;}
.x1{left:220.891500px;}
.xc{left:455.265000px;}
.x6{left:467.967000px;}
.xa{left:475.438500px;}
.x5{left:482.910000px;}
.xb{left:498.000000px;}
.x7{left:504.325500px;}
.x8{left:515.533500px;}
.x9{left:530.622000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls6{letter-spacing:0.000000pt;}
.ls1{letter-spacing:2.635446pt;}
.ls0{letter-spacing:2.656015pt;}
.ls7{letter-spacing:12.481867pt;}
.ls2{letter-spacing:20.581833pt;}
.ls3{letter-spacing:24.533812pt;}
.ls4{letter-spacing:31.878586pt;}
.ls5{letter-spacing:31.883919pt;}
.ws7f{word-spacing:-13.283467pt;}
.ws2{word-spacing:-13.262246pt;}
.ws2f{word-spacing:-0.850142pt;}
.ws72{word-spacing:-0.813356pt;}
.ws73{word-spacing:-0.797008pt;}
.ws1a{word-spacing:-0.478205pt;}
.ws22{word-spacing:-0.106268pt;}
.ws1d{word-spacing:-0.053134pt;}
.ws5f{word-spacing:0.000000pt;}
.ws0{word-spacing:0.007911pt;}
.ws71{word-spacing:0.159402pt;}
.ws4{word-spacing:0.212535pt;}
.ws11{word-spacing:0.371937pt;}
.ws41{word-spacing:0.637606pt;}
.ws92{word-spacing:0.956410pt;}
.ws9{word-spacing:1.381481pt;}
.ws77{word-spacing:1.700284pt;}
.ws80{word-spacing:1.738719pt;}
.ws81{word-spacing:1.753418pt;}
.ws20{word-spacing:1.859685pt;}
.ws50{word-spacing:1.912819pt;}
.ws99{word-spacing:2.391024pt;}
.ws29{word-spacing:2.497292pt;}
.wsd{word-spacing:2.709827pt;}
.ws21{word-spacing:2.869229pt;}
.wsa2{word-spacing:3.013386pt;}
.wsa3{word-spacing:3.028630pt;}
.ws18{word-spacing:3.188032pt;}
.ws15{word-spacing:3.506835pt;}
.ws13{word-spacing:3.559969pt;}
.ws51{word-spacing:3.816022pt;}
.ws53{word-spacing:3.825638pt;}
.ws58{word-spacing:4.038174pt;}
.ws25{word-spacing:4.091308pt;}
.wsa1{word-spacing:4.197575pt;}
.ws68{word-spacing:4.303843pt;}
.ws6{word-spacing:4.356977pt;}
.ws45{word-spacing:4.622646pt;}
.wsa4{word-spacing:4.675780pt;}
.ws90{word-spacing:4.754644pt;}
.ws91{word-spacing:4.782048pt;}
.ws40{word-spacing:4.941450pt;}
.ws42{word-spacing:4.994583pt;}
.ws3c{word-spacing:5.100851pt;}
.ws1{word-spacing:5.290286pt;}
.ws8b{word-spacing:5.308539pt;}
.ws6f{word-spacing:5.310178pt;}
.ws8f{word-spacing:5.310378pt;}
.ws63{word-spacing:5.311236pt;}
.ws8e{word-spacing:5.312052pt;}
.wsa{word-spacing:5.313387pt;}
.ws46{word-spacing:5.314385pt;}
.ws8c{word-spacing:5.315711pt;}
.ws94{word-spacing:5.366521pt;}
.ws76{word-spacing:5.419654pt;}
.ws55{word-spacing:5.579056pt;}
.wsa7{word-spacing:5.632190pt;}
.ws59{word-spacing:5.950993pt;}
.ws8{word-spacing:6.163529pt;}
.ws5e{word-spacing:6.376064pt;}
.ws2b{word-spacing:6.482332pt;}
.ws2d{word-spacing:6.748001pt;}
.ws7e{word-spacing:7.013670pt;}
.ws23{word-spacing:7.119938pt;}
.ws1b{word-spacing:7.279340pt;}
.ws3b{word-spacing:7.332474pt;}
.ws3a{word-spacing:7.491875pt;}
.ws85{word-spacing:7.970080pt;}
.ws84{word-spacing:8.023214pt;}
.ws88{word-spacing:8.235749pt;}
.ws87{word-spacing:8.237311pt;}
.ws12{word-spacing:8.342017pt;}
.wsb4{word-spacing:8.395151pt;}
.ws75{word-spacing:8.448285pt;}
.ws16{word-spacing:8.554553pt;}
.ws5b{word-spacing:8.713954pt;}
.ws93{word-spacing:8.979623pt;}
.ws2a{word-spacing:9.085891pt;}
.ws3d{word-spacing:9.192159pt;}
.ws3{word-spacing:9.245293pt;}
.ws33{word-spacing:9.351561pt;}
.ws86{word-spacing:9.404694pt;}
.wsb6{word-spacing:9.464245pt;}
.wsb7{word-spacing:9.510962pt;}
.ws97{word-spacing:9.564096pt;}
.ws7{word-spacing:9.617230pt;}
.ws70{word-spacing:9.632052pt;}
.wsb5{word-spacing:9.767978pt;}
.ws36{word-spacing:9.776631pt;}
.ws65{word-spacing:9.882899pt;}
.ws66{word-spacing:9.936033pt;}
.ws9b{word-spacing:10.042301pt;}
.ws9d{word-spacing:10.733041pt;}
.ws9c{word-spacing:10.753872pt;}
.ws4a{word-spacing:10.786175pt;}
.ws5d{word-spacing:10.892443pt;}
.wsc{word-spacing:10.945577pt;}
.ws17{word-spacing:11.051844pt;}
.ws9f{word-spacing:11.104978pt;}
.ws30{word-spacing:11.264380pt;}
.ws5{word-spacing:11.370647pt;}
.wsb8{word-spacing:11.476915pt;}
.wsaf{word-spacing:11.530049pt;}
.ws26{word-spacing:11.636317pt;}
.ws31{word-spacing:11.901986pt;}
.ws98{word-spacing:11.955120pt;}
.wsae{word-spacing:12.220789pt;}
.wsad{word-spacing:12.224052pt;}
.ws9e{word-spacing:12.645860pt;}
.ws39{word-spacing:12.750178pt;}
.ws38{word-spacing:12.752128pt;}
.ws27{word-spacing:12.805262pt;}
.ws28{word-spacing:12.858396pt;}
.wsf{word-spacing:12.964663pt;}
.ws35{word-spacing:13.283467pt;}
.ws61{word-spacing:14.027341pt;}
.wse{word-spacing:14.239876pt;}
.ws10{word-spacing:14.293010pt;}
.ws89{word-spacing:14.626759pt;}
.wsb2{word-spacing:14.877483pt;}
.ws34{word-spacing:14.983750pt;}
.ws5c{word-spacing:15.196286pt;}
.wsb{word-spacing:15.621357pt;}
.ws4f{word-spacing:15.727625pt;}
.ws1f{word-spacing:16.099562pt;}
.ws24{word-spacing:16.152695pt;}
.ws19{word-spacing:16.378653pt;}
.ws62{word-spacing:16.577766pt;}
.wsa6{word-spacing:16.599978pt;}
.ws14{word-spacing:16.762653pt;}
.ws52{word-spacing:17.046813pt;}
.ws60{word-spacing:17.162239pt;}
.ws1e{word-spacing:17.215373pt;}
.ws5a{word-spacing:17.321641pt;}
.ws3e{word-spacing:17.427908pt;}
.ws69{word-spacing:17.560946pt;}
.ws9a{word-spacing:17.746711pt;}
.ws6d{word-spacing:18.170640pt;}
.ws6e{word-spacing:18.171782pt;}
.ws43{word-spacing:18.251293pt;}
.ws57{word-spacing:18.331184pt;}
.wsa5{word-spacing:18.437452pt;}
.ws8d{word-spacing:18.542919pt;}
.ws49{word-spacing:18.545693pt;}
.ws64{word-spacing:18.549319pt;}
.ws37{word-spacing:18.596853pt;}
.ws56{word-spacing:18.598422pt;}
.ws47{word-spacing:18.600022pt;}
.ws95{word-spacing:18.618653pt;}
.ws8a{word-spacing:19.021924pt;}
.ws83{word-spacing:19.181326pt;}
.ws2c{word-spacing:19.727986pt;}
.ws2e{word-spacing:19.957959pt;}
.ws54{word-spacing:20.190869pt;}
.ws1c{word-spacing:20.533959pt;}
.wsb1{word-spacing:20.775342pt;}
.ws6a{word-spacing:21.891153pt;}
.ws67{word-spacing:23.195293pt;}
.ws6b{word-spacing:23.217872pt;}
.ws6c{word-spacing:23.219500pt;}
.wsa0{word-spacing:24.334919pt;}
.wsb9{word-spacing:24.708893pt;}
.wsb0{word-spacing:24.750919pt;}
.ws32{word-spacing:25.153266pt;}
.ws4c{word-spacing:26.620067pt;}
.wsb3{word-spacing:28.116893pt;}
.ws3f{word-spacing:30.671986pt;}
.ws44{word-spacing:31.827186pt;}
.ws82{word-spacing:32.432413pt;}
.ws7b{word-spacing:32.718900pt;}
.ws7d{word-spacing:32.730462pt;}
.ws74{word-spacing:32.783596pt;}
.wsaa{word-spacing:32.996131pt;}
.wsac{word-spacing:33.009897pt;}
.ws96{word-spacing:34.643281pt;}
.ws4e{word-spacing:35.493423pt;}
.wsa9{word-spacing:44.260511pt;}
.ws4b{word-spacing:44.685582pt;}
.ws79{word-spacing:45.482590pt;}
.ws78{word-spacing:45.489872pt;}
.wsa8{word-spacing:45.495205pt;}
.ws7c{word-spacing:45.956253pt;}
.wsab{word-spacing:46.235293pt;}
.ws4d{word-spacing:48.714439pt;}
.ws48{word-spacing:82.782564pt;}
.ws7a{word-spacing:102.017024pt;}
._13{margin-left:-6.490217pt;}
._10{margin-left:-5.313387pt;}
._3{margin-left:-4.250709pt;}
._1{margin-left:-2.422910pt;}
._2{margin-left:-1.328347pt;}
._0{width:2.677954pt;}
._9{width:14.877483pt;}
._8{width:16.471499pt;}
._f{width:18.756255pt;}
._17{width:21.944287pt;}
._a{width:23.644571pt;}
._7{width:25.469313pt;}
._4{width:26.566933pt;}
._c{width:27.906481pt;}
._b{width:29.615939pt;}
._6{width:31.237625pt;}
._d{width:32.680614pt;}
._11{width:35.174620pt;}
._5{width:39.380026pt;}
._14{width:40.749691pt;}
._12{width:44.042352pt;}
._18{width:46.288853pt;}
._15{width:47.979882pt;}
._16{width:56.783757pt;}
._e{width:74.015476pt;}
.fs2{font-size:37.193600pt;}
.fs1{font-size:42.507200pt;}
.fs0{font-size:53.133867pt;}
.y0{bottom:0.000000pt;}
.y6c{bottom:46.832000pt;}
.ybc{bottom:46.833333pt;}
.y37{bottom:100.740000pt;}
.y36{bottom:116.516000pt;}
.y6b{bottom:116.680000pt;}
.y35{bottom:132.456000pt;}
.y6a{bottom:132.620000pt;}
.y9d{bottom:132.621333pt;}
.y34{bottom:148.397333pt;}
.y69{bottom:148.560000pt;}
.y9c{bottom:148.561333pt;}
.y33{bottom:164.173333pt;}
.y9b{bottom:164.501333pt;}
.y68{bottom:168.888000pt;}
.y32{bottom:180.113333pt;}
.y9a{bottom:181.801333pt;}
.y67{bottom:194.482667pt;}
.y31{bottom:196.053333pt;}
.y99{bottom:199.101333pt;}
.y66{bottom:210.422667pt;}
.y30{bottom:211.993333pt;}
.y98{bottom:216.401333pt;}
.y65{bottom:226.362667pt;}
.y2f{bottom:227.933333pt;}
.y97{bottom:232.341333pt;}
.y64{bottom:242.302667pt;}
.y2e{bottom:243.874667pt;}
.y96{bottom:248.281333pt;}
.y63{bottom:258.244000pt;}
.y2d{bottom:259.814667pt;}
.y95{bottom:266.261333pt;}
.y62{bottom:274.184000pt;}
.y2c{bottom:275.754667pt;}
.y94{bottom:282.201333pt;}
.y61{bottom:290.124000pt;}
.y2b{bottom:291.694667pt;}
.y93{bottom:298.141333pt;}
.y60{bottom:306.064000pt;}
.y2a{bottom:307.634667pt;}
.y92{bottom:314.081333pt;}
.y5f{bottom:322.004000pt;}
.y29{bottom:323.574667pt;}
.y91{bottom:331.381333pt;}
.y5e{bottom:337.945333pt;}
.y28{bottom:339.516000pt;}
.y90{bottom:347.321333pt;}
.y5d{bottom:353.885333pt;}
.y27{bottom:355.456000pt;}
.y8f{bottom:363.261333pt;}
.y5c{bottom:369.825333pt;}
.y26{bottom:371.396000pt;}
.ybb{bottom:371.724000pt;}
.y8e{bottom:379.201333pt;}
.y5b{bottom:385.765333pt;}
.y25{bottom:387.336000pt;}
.yba{bottom:387.664000pt;}
.y8d{bottom:395.142667pt;}
.y5a{bottom:401.705333pt;}
.y24{bottom:403.276000pt;}
.yb9{bottom:403.604000pt;}
.y8c{bottom:412.442667pt;}
.y59{bottom:417.645333pt;}
.y23{bottom:419.217333pt;}
.yb8{bottom:419.544000pt;}
.y8b{bottom:428.382667pt;}
.y58{bottom:433.586667pt;}
.y22{bottom:435.157333pt;}
.yb7{bottom:435.485333pt;}
.y8a{bottom:444.322667pt;}
.y21{bottom:450.933333pt;}
.yb6{bottom:451.425333pt;}
.y57{bottom:452.273333pt;}
.y89{bottom:460.262667pt;}
.y20{bottom:466.873333pt;}
.yb5{bottom:467.365333pt;}
.y56{bottom:468.213333pt;}
.y88{bottom:476.202667pt;}
.y1f{bottom:482.813333pt;}
.yb4{bottom:483.305333pt;}
.y55{bottom:484.153333pt;}
.y87{bottom:493.502667pt;}
.y1e{bottom:498.753333pt;}
.yb3{bottom:499.245333pt;}
.y54{bottom:500.093333pt;}
.y86{bottom:509.442667pt;}
.y1d{bottom:514.529333pt;}
.yb2{bottom:515.185333pt;}
.y53{bottom:516.033333pt;}
.y85{bottom:527.422667pt;}
.y1c{bottom:530.470667pt;}
.yb1{bottom:531.126667pt;}
.y52{bottom:531.974667pt;}
.y84{bottom:543.362667pt;}
.y1b{bottom:546.410667pt;}
.yb0{bottom:547.066667pt;}
.y51{bottom:547.914667pt;}
.y83{bottom:559.302667pt;}
.yaf{bottom:563.006667pt;}
.y1a{bottom:566.453333pt;}
.y50{bottom:566.601333pt;}
.y82{bottom:575.244000pt;}
.yae{bottom:578.946667pt;}
.y4f{bottom:582.541333pt;}
.y19{bottom:590.866667pt;}
.y81{bottom:591.184000pt;}
.yad{bottom:594.886667pt;}
.y4e{bottom:598.481333pt;}
.y18{bottom:606.808000pt;}
.y80{bottom:608.484000pt;}
.yac{bottom:610.828000pt;}
.y4d{bottom:614.422667pt;}
.y17{bottom:622.748000pt;}
.y7f{bottom:624.424000pt;}
.yab{bottom:626.768000pt;}
.y4c{bottom:630.362667pt;}
.y16{bottom:638.688000pt;}
.y7e{bottom:640.364000pt;}
.yaa{bottom:642.708000pt;}
.y4b{bottom:646.302667pt;}
.y15{bottom:654.628000pt;}
.y7d{bottom:657.664000pt;}
.ya9{bottom:658.648000pt;}
.y4a{bottom:662.242667pt;}
.y14{bottom:670.568000pt;}
.y7c{bottom:673.604000pt;}
.ya8{bottom:674.588000pt;}
.y49{bottom:678.182667pt;}
.y13{bottom:686.508000pt;}
.y7b{bottom:689.544000pt;}
.ya7{bottom:690.528000pt;}
.y48{bottom:698.509333pt;}
.y12{bottom:702.449333pt;}
.ya6{bottom:706.469333pt;}
.y7a{bottom:706.844000pt;}
.y11{bottom:718.389333pt;}
.ya5{bottom:722.409333pt;}
.y79{bottom:722.784000pt;}
.y47{bottom:724.105333pt;}
.y10{bottom:734.329333pt;}
.ya4{bottom:738.349333pt;}
.y46{bottom:740.045333pt;}
.y78{bottom:740.764000pt;}
.yf{bottom:750.269333pt;}
.ya3{bottom:754.289333pt;}
.y45{bottom:755.985333pt;}
.y77{bottom:756.704000pt;}
.ye{bottom:766.209333pt;}
.ya2{bottom:770.229333pt;}
.y44{bottom:771.925333pt;}
.y76{bottom:772.644000pt;}
.yd{bottom:782.149333pt;}
.ya1{bottom:786.169333pt;}
.y43{bottom:787.865333pt;}
.y75{bottom:797.528000pt;}
.yc{bottom:798.090667pt;}
.ya0{bottom:802.110667pt;}
.y42{bottom:803.806667pt;}
.yb{bottom:814.030667pt;}
.y9f{bottom:818.050667pt;}
.y41{bottom:824.214667pt;}
.ya{bottom:829.888000pt;}
.y74{bottom:833.990667pt;}
.y9{bottom:845.829333pt;}
.y40{bottom:849.809333pt;}
.y73{bottom:849.930667pt;}
.y8{bottom:861.769333pt;}
.y3f{bottom:865.749333pt;}
.y72{bottom:865.870667pt;}
.y7{bottom:877.709333pt;}
.y3e{bottom:881.689333pt;}
.y9e{bottom:881.810667pt;}
.y71{bottom:881.812000pt;}
.y6{bottom:893.649333pt;}
.y3d{bottom:897.629333pt;}
.y70{bottom:897.752000pt;}
.y5{bottom:909.589333pt;}
.y3c{bottom:913.570667pt;}
.y6f{bottom:913.692000pt;}
.y4{bottom:925.529333pt;}
.y3b{bottom:929.510667pt;}
.y6e{bottom:929.632000pt;}
.y3{bottom:941.470667pt;}
.y3a{bottom:945.450667pt;}
.y6d{bottom:945.572000pt;}
.y39{bottom:961.390667pt;}
.y2{bottom:961.512000pt;}
.y38{bottom:977.452000pt;}
.y1{bottom:977.453333pt;}
.h3{height:35.493423pt;}
.h2{height:36.449833pt;}
.h1{height:36.556100pt;}
.h4{height:36.874903pt;}
.h0{height:1056.000000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x4{left:65.285333pt;}
.x3{left:78.569333pt;}
.xd{left:91.981333pt;}
.x2{left:172.836000pt;}
.x1{left:196.348000pt;}
.xc{left:404.680000pt;}
.x6{left:415.970667pt;}
.xa{left:422.612000pt;}
.x5{left:429.253333pt;}
.xb{left:442.666667pt;}
.x7{left:448.289333pt;}
.x8{left:458.252000pt;}
.x9{left:471.664000pt;}
}




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