
    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_7183b6cf24e81a119b4c31ea.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.905000;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_23a09c4c53c8b09c3c14a8ec.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_34cc71616d0d89e9f1b589c7.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.001000;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_3babba6ca65a160bd781c890.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.704000;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_fd7415b6e7000e32744590a8.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.910000;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_d78830e0b104ade874f3fff0.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.918000;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);}
.v0{vertical-align:0.000000px;}
.ls0{letter-spacing:0.000000px;}
.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;}
}
.ws31{word-spacing:-35.119596px;}
.ws7b{word-spacing:-19.573910px;}
.ws10{word-spacing:-19.367325px;}
.ws8e{word-spacing:-19.267000px;}
.ws42{word-spacing:-18.980076px;}
.ws86{word-spacing:-18.908344px;}
.ws84{word-spacing:-18.836613px;}
.ws8d{word-spacing:-18.764882px;}
.ws50{word-spacing:-18.477957px;}
.ws4a{word-spacing:-18.191032px;}
.ws43{word-spacing:-17.904108px;}
.wsa3{word-spacing:-17.760645px;}
.ws62{word-spacing:-17.688914px;}
.ws64{word-spacing:-17.617183px;}
.ws80{word-spacing:-17.545452px;}
.ws6d{word-spacing:-17.043333px;}
.ws2d{word-spacing:-16.899871px;}
.ws3f{word-spacing:-16.684677px;}
.ws4e{word-spacing:-16.612946px;}
.ws59{word-spacing:-16.541215px;}
.ws1{word-spacing:-16.139475px;}
.ws1c{word-spacing:-16.039096px;}
.ws13{word-spacing:-15.895634px;}
.ws8c{word-spacing:-15.680440px;}
.ws23{word-spacing:-15.608709px;}
.ws24{word-spacing:-15.536978px;}
.ws9b{word-spacing:-15.465247px;}
.ws83{word-spacing:-15.321784px;}
.wsb3{word-spacing:-15.250053px;}
.ws37{word-spacing:-14.891397px;}
.ws20{word-spacing:-14.747935px;}
.ws85{word-spacing:-14.604472px;}
.ws41{word-spacing:-14.532741px;}
.ws1d{word-spacing:-14.461010px;}
.ws3d{word-spacing:-14.389279px;}
.ws7e{word-spacing:-14.317548px;}
.ws19{word-spacing:-14.245816px;}
.wsa2{word-spacing:-14.174085px;}
.ws5c{word-spacing:-14.102354px;}
.ws2{word-spacing:-14.082230px;}
.ws61{word-spacing:-14.030623px;}
.wsb4{word-spacing:-13.987584px;}
.ws6e{word-spacing:-13.887160px;}
.ws68{word-spacing:-13.815429px;}
.ws58{word-spacing:-13.600236px;}
.ws3a{word-spacing:-13.528504px;}
.ws7d{word-spacing:-13.456773px;}
.ws3e{word-spacing:-13.385042px;}
.ws2a{word-spacing:-13.313311px;}
.ws81{word-spacing:-13.241580px;}
.ws63{word-spacing:-13.169848px;}
.wsa6{word-spacing:-13.098117px;}
.ws34{word-spacing:-13.026386px;}
.ws48{word-spacing:-12.882924px;}
.ws66{word-spacing:-12.811192px;}
.ws9e{word-spacing:-12.739461px;}
.ws3{word-spacing:-12.704738px;}
.ws73{word-spacing:-12.667730px;}
.ws3c{word-spacing:-12.595999px;}
.ws4f{word-spacing:-12.524268px;}
.wse{word-spacing:-12.312010px;}
.ws95{word-spacing:-12.309074px;}
.ws45{word-spacing:-12.237343px;}
.ws65{word-spacing:-12.165612px;}
.wsa7{word-spacing:-12.050842px;}
.ws7c{word-spacing:-12.022149px;}
.ws7{word-spacing:-11.919283px;}
.ws17{word-spacing:-11.806956px;}
.ws18{word-spacing:-11.735224px;}
.ws47{word-spacing:-11.663493px;}
.ws49{word-spacing:-11.591762px;}
.ws12{word-spacing:-11.520031px;}
.ws4b{word-spacing:-11.448300px;}
.ws57{word-spacing:-11.376568px;}
.ws5a{word-spacing:-11.304837px;}
.ws36{word-spacing:-11.233106px;}
.ws2c{word-spacing:-11.161375px;}
.ws4d{word-spacing:-11.017912px;}
.ws1b{word-spacing:-10.946181px;}
.ws5d{word-spacing:-10.874450px;}
.wsa4{word-spacing:-10.759680px;}
.ws9a{word-spacing:-10.730988px;}
.ws22{word-spacing:-10.659256px;}
.ws21{word-spacing:-10.515794px;}
.ws75{word-spacing:-10.444063px;}
.ws2b{word-spacing:-10.300600px;}
.ws97{word-spacing:-10.228869px;}
.ws94{word-spacing:-10.157138px;}
.ws6c{word-spacing:-10.085407px;}
.wsf{word-spacing:-10.021099px;}
.ws40{word-spacing:-9.726751px;}
.wsb{word-spacing:-9.693826px;}
.wsab{word-spacing:-9.611981px;}
.ws52{word-spacing:-9.511557px;}
.ws99{word-spacing:-9.439826px;}
.ws5e{word-spacing:-9.368095px;}
.ws35{word-spacing:-9.296364px;}
.ws72{word-spacing:-9.152901px;}
.ws4{word-spacing:-9.104735px;}
.ws74{word-spacing:-9.009439px;}
.ws30{word-spacing:-8.937708px;}
.ws87{word-spacing:-8.865976px;}
.ws9{word-spacing:-8.842916px;}
.ws46{word-spacing:-8.794245px;}
.ws11{word-spacing:-8.722514px;}
.wsac{word-spacing:-8.607744px;}
.ws39{word-spacing:-8.507320px;}
.ws88{word-spacing:-8.435589px;}
.ws25{word-spacing:-8.292127px;}
.ws15{word-spacing:-8.220396px;}
.ws6f{word-spacing:-8.148664px;}
.ws54{word-spacing:-8.076933px;}
.ws6a{word-spacing:-8.005202px;}
.ws7f{word-spacing:-7.933471px;}
.ws1a{word-spacing:-7.790008px;}
.ws14{word-spacing:-7.646546px;}
.ws32{word-spacing:-7.574815px;}
.ws60{word-spacing:-7.503084px;}
.wsad{word-spacing:-7.460045px;}
.ws1e{word-spacing:-7.359621px;}
.ws82{word-spacing:-7.287890px;}
.ws7a{word-spacing:-7.144428px;}
.ws67{word-spacing:-7.000965px;}
.ws90{word-spacing:-6.929234px;}
.ws92{word-spacing:-6.857503px;}
.ws51{word-spacing:-6.785772px;}
.ws5b{word-spacing:-6.714040px;}
.ws70{word-spacing:-6.427116px;}
.ws76{word-spacing:-6.355384px;}
.wsa1{word-spacing:-6.283653px;}
.ws28{word-spacing:-6.211922px;}
.wsd{word-spacing:-6.159278px;}
.ws98{word-spacing:-6.068460px;}
.ws5f{word-spacing:-5.924997px;}
.ws3b{word-spacing:-5.853266px;}
.ws77{word-spacing:-5.781535px;}
.ws27{word-spacing:-5.709804px;}
.ws8f{word-spacing:-5.638072px;}
.ws2f{word-spacing:-5.566341px;}
.ws93{word-spacing:-5.422879px;}
.ws26{word-spacing:-5.207685px;}
.wsb5{word-spacing:-5.064223px;}
.ws2e{word-spacing:-4.992492px;}
.ws8b{word-spacing:-4.920760px;}
.ws4c{word-spacing:-4.777298px;}
.ws96{word-spacing:-4.705567px;}
.wsa8{word-spacing:-4.562104px;}
.ws89{word-spacing:-4.490373px;}
.ws33{word-spacing:-4.418642px;}
.wsa0{word-spacing:-4.346911px;}
.wsa9{word-spacing:-4.232141px;}
.wsaf{word-spacing:-4.088678px;}
.ws1f{word-spacing:-4.059986px;}
.ws53{word-spacing:-3.988255px;}
.wsa5{word-spacing:-3.916524px;}
.wsa{word-spacing:-3.802912px;}
.ws78{word-spacing:-3.557868px;}
.ws38{word-spacing:-3.486136px;}
.wsb0{word-spacing:-3.414405px;}
.wsb1{word-spacing:-3.156173px;}
.ws44{word-spacing:-3.055749px;}
.ws9c{word-spacing:-2.984018px;}
.ws5{word-spacing:-2.952002px;}
.ws29{word-spacing:-2.840556px;}
.ws9f{word-spacing:-2.768824px;}
.ws55{word-spacing:-2.697093px;}
.ws69{word-spacing:-2.410168px;}
.ws6{word-spacing:-2.166547px;}
.ws91{word-spacing:-2.123244px;}
.ws56{word-spacing:-2.051512px;}
.ws8{word-spacing:-1.642910px;}
.ws8a{word-spacing:-1.621125px;}
.wsc{word-spacing:-1.315637px;}
.ws71{word-spacing:-0.832082px;}
.ws6b{word-spacing:-0.760351px;}
.ws79{word-spacing:-0.401695px;}
.ws16{word-spacing:0.000000px;}
.wsaa{word-spacing:17.315912px;}
.wsb2{word-spacing:21.045934px;}
.wsae{word-spacing:24.775956px;}
.ws0{word-spacing:37.316475px;}
.ws9d{word-spacing:58.101975px;}
._1{margin-left:-9.794025px;}
._4{margin-left:-8.091257px;}
._15{margin-left:-6.465613px;}
._9{margin-left:-5.300666px;}
._7{margin-left:-4.256861px;}
._2{margin-left:-3.223350px;}
._6{margin-left:-1.424819px;}
._12{width:1.110044px;}
._5{width:2.199514px;}
._3{width:3.223350px;}
._a{width:4.974550px;}
._1f{width:17.663920px;}
._1e{width:18.841141px;}
._13{width:20.361856px;}
._1c{width:21.791926px;}
._19{width:22.939625px;}
._1d{width:24.426263px;}
._16{width:25.622270px;}
._1a{width:27.429169px;}
._f{width:28.571511px;}
._c{width:30.209032px;}
._b{width:32.269118px;}
._8{width:33.448457px;}
._d{width:34.693250px;}
._1b{width:36.573107px;}
._28{width:39.132831px;}
._17{width:40.679830px;}
._21{width:41.737753px;}
._14{width:42.789557px;}
._20{width:45.493943px;}
._26{width:46.980179px;}
._23{width:48.518141px;}
._0{width:50.333850px;}
._11{width:51.646200px;}
._29{width:52.937626px;}
._27{width:54.587443px;}
._e{width:56.290956px;}
._18{width:57.671885px;}
._24{width:59.161066px;}
._22{width:60.931414px;}
._25{width:64.721153px;}
._10{width:116.203950px;}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:65.454600px;}
.fs4{font-size:71.731200px;}
.fs1{font-size:86.077200px;}
.fs3{font-size:103.292400px;}
.fs0{font-size:123.975000px;}
.y0{bottom:0.000000px;}
.y1a{bottom:63.168000px;}
.y48{bottom:112.387500px;}
.y75{bottom:113.581500px;}
.y19{bottom:119.274000px;}
.y39{bottom:126.430500px;}
.y55{bottom:131.340000px;}
.y47{bottom:139.278000px;}
.y74{bottom:140.473500px;}
.ya1{bottom:145.384500px;}
.y18{bottom:146.164500px;}
.y85{bottom:153.321000px;}
.y38{bottom:153.322500px;}
.y54{bottom:158.230500px;}
.y46{bottom:166.168500px;}
.y73{bottom:167.364000px;}
.ya0{bottom:172.275000px;}
.y17{bottom:173.056500px;}
.y37{bottom:180.213000px;}
.y53{bottom:185.122500px;}
.y45{bottom:193.059000px;}
.y72{bottom:194.254500px;}
.y9f{bottom:199.165500px;}
.y16{bottom:199.947000px;}
.y36{bottom:207.103500px;}
.y52{bottom:212.013000px;}
.y8f{bottom:219.951000px;}
.y71{bottom:221.145000px;}
.y9e{bottom:226.057500px;}
.y15{bottom:226.837500px;}
.y35{bottom:233.994000px;}
.y51{bottom:238.903500px;}
.y8e{bottom:246.841500px;}
.y70{bottom:248.035500px;}
.y9d{bottom:252.948000px;}
.y34{bottom:260.884500px;}
.y50{bottom:265.794000px;}
.y8d{bottom:273.732000px;}
.y6f{bottom:274.927500px;}
.y84{bottom:274.929000px;}
.y9c{bottom:279.838500px;}
.y14{bottom:285.531000px;}
.y33{bottom:287.776500px;}
.y83{bottom:301.819500px;}
.y4f{bottom:306.729000px;}
.y32{bottom:314.667000px;}
.y6e{bottom:315.862500px;}
.y9b{bottom:320.773500px;}
.y82{bottom:328.711500px;}
.y8c{bottom:332.425500px;}
.y4e{bottom:333.619500px;}
.yb6{bottom:337.965000px;}
.y44{bottom:341.557500px;}
.y6d{bottom:342.753000px;}
.y9a{bottom:347.664000px;}
.y81{bottom:355.602000px;}
.y4d{bottom:360.511500px;}
.yb5{bottom:364.855500px;}
.y13{bottom:367.398000px;}
.y43{bottom:368.448000px;}
.y6c{bottom:369.643500px;}
.y31{bottom:373.360500px;}
.y99{bottom:374.554500px;}
.y80{bottom:382.492500px;}
.y4c{bottom:387.402000px;}
.y12{bottom:392.620500px;}
.y6b{bottom:396.534000px;}
.y98{bottom:401.446500px;}
.yb4{bottom:405.790500px;}
.y7f{bottom:409.383000px;}
.y4b{bottom:414.292500px;}
.y11{bottom:417.841500px;}
.y6a{bottom:423.424500px;}
.ya3{bottom:423.426000px;}
.y42{bottom:427.141500px;}
.y97{bottom:428.337000px;}
.yb3{bottom:432.681000px;}
.y7e{bottom:436.273500px;}
.y4a{bottom:441.183000px;}
.y10{bottom:443.064000px;}
.y69{bottom:450.316500px;}
.y30{bottom:455.227500px;}
.y8b{bottom:468.075000px;}
.yf{bottom:468.285000px;}
.yb2{bottom:473.616000px;}
.y7d{bottom:477.208500px;}
.y2f{bottom:482.118000px;}
.y68{bottom:491.251500px;}
.ye{bottom:493.507500px;}
.y8a{bottom:494.965500px;}
.y96{bottom:496.162500px;}
.yb1{bottom:500.506500px;}
.y7c{bottom:504.100500px;}
.y2e{bottom:509.010000px;}
.y67{bottom:518.142000px;}
.yd{bottom:518.728500px;}
.y95{bottom:523.053000px;}
.y7b{bottom:530.991000px;}
.y2d{bottom:535.900500px;}
.yb0{bottom:541.441500px;}
.yc{bottom:543.951000px;}
.y66{bottom:545.032500px;}
.y94{bottom:549.943500px;}
.y7a{bottom:557.881500px;}
.y2c{bottom:562.791000px;}
.yaf{bottom:568.332000px;}
.yb{bottom:569.172000px;}
.y65{bottom:571.923000px;}
.y93{bottom:576.835500px;}
.y79{bottom:584.772000px;}
.y2b{bottom:589.681500px;}
.ya{bottom:594.394500px;}
.y64{bottom:598.815000px;}
.y92{bottom:603.726000px;}
.yae{bottom:609.267000px;}
.y78{bottom:611.662500px;}
.y2a{bottom:616.572000px;}
.y9{bottom:619.615500px;}
.y63{bottom:625.705500px;}
.y41{bottom:630.616500px;}
.yad{bottom:636.157500px;}
.y89{bottom:643.464000px;}
.y8{bottom:644.838000px;}
.y62{bottom:652.596000px;}
.y29{bottom:657.507000px;}
.y7{bottom:670.059000px;}
.y88{bottom:670.354500px;}
.y77{bottom:670.356000px;}
.yac{bottom:677.092500px;}
.y28{bottom:684.399000px;}
.y61{bottom:693.531000px;}
.y91{bottom:698.442000px;}
.yab{bottom:703.983000px;}
.y27{bottom:711.289500px;}
.y6{bottom:717.849000px;}
.y60{bottom:720.421500px;}
.y90{bottom:725.332500px;}
.y26{bottom:738.180000px;}
.yaa{bottom:744.918000px;}
.y5f{bottom:747.312000px;}
.y76{bottom:752.224500px;}
.y25{bottom:765.070500px;}
.y5e{bottom:774.204000px;}
.y40{bottom:779.115000px;}
.ya9{bottom:785.853000px;}
.y49{bottom:791.961000px;}
.y24{bottom:791.962500px;}
.y5{bottom:793.695000px;}
.y5d{bottom:801.094500px;}
.y3f{bottom:806.005500px;}
.ya8{bottom:812.743500px;}
.y23{bottom:818.853000px;}
.y4{bottom:827.076000px;}
.y5c{bottom:827.985000px;}
.y3e{bottom:832.896000px;}
.y87{bottom:845.743500px;}
.ya7{bottom:853.678500px;}
.y5b{bottom:854.875500px;}
.y22{bottom:859.788000px;}
.y3{bottom:860.458500px;}
.ya2{bottom:868.920000px;}
.y21{bottom:886.678500px;}
.ya6{bottom:894.613500px;}
.y5a{bottom:895.810500px;}
.y20{bottom:913.569000px;}
.ya5{bottom:921.504000px;}
.y59{bottom:922.701000px;}
.y3d{bottom:927.613500px;}
.y2{bottom:934.222500px;}
.y1f{bottom:940.459500px;}
.y58{bottom:949.593000px;}
.y3c{bottom:954.504000px;}
.ya4{bottom:962.439000px;}
.y1e{bottom:967.351500px;}
.y57{bottom:976.483500px;}
.y1{bottom:980.586000px;}
.y3b{bottom:981.394500px;}
.y1d{bottom:994.242000px;}
.y56{bottom:1003.374000px;}
.y3a{bottom:1008.285000px;}
.y86{bottom:1021.132500px;}
.y1c{bottom:1035.177000px;}
.y1b{bottom:1062.067500px;}
.h3{height:45.687311px;}
.h4{height:46.145493px;}
.h6{height:53.798400px;}
.h2{height:64.557900px;}
.h5{height:77.469300px;}
.h1{height:87.030450px;}
.h0{height:1188.000000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x9{left:108.000000px;}
.x8{left:151.897500px;}
.x7{left:176.443500px;}
.x1{left:181.438500px;}
.x5{left:248.818500px;}
.x4{left:269.838000px;}
.x2{left:306.327000px;}
.x3{left:340.974000px;}
.x6{left:423.000000px;}
.xb{left:450.220500px;}
.xa{left:454.609500px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ws31{word-spacing:-31.217418pt;}
.ws7b{word-spacing:-17.399031pt;}
.ws10{word-spacing:-17.215400pt;}
.ws8e{word-spacing:-17.126223pt;}
.ws42{word-spacing:-16.871178pt;}
.ws86{word-spacing:-16.807417pt;}
.ws84{word-spacing:-16.743656pt;}
.ws8d{word-spacing:-16.679895pt;}
.ws50{word-spacing:-16.424851pt;}
.ws4a{word-spacing:-16.169807pt;}
.ws43{word-spacing:-15.914762pt;}
.wsa3{word-spacing:-15.787240pt;}
.ws62{word-spacing:-15.723479pt;}
.ws64{word-spacing:-15.659718pt;}
.ws80{word-spacing:-15.595957pt;}
.ws6d{word-spacing:-15.149629pt;}
.ws2d{word-spacing:-15.022107pt;}
.ws3f{word-spacing:-14.830824pt;}
.ws4e{word-spacing:-14.767063pt;}
.ws59{word-spacing:-14.703302pt;}
.ws1{word-spacing:-14.346200pt;}
.ws1c{word-spacing:-14.256975pt;}
.ws13{word-spacing:-14.129452pt;}
.ws8c{word-spacing:-13.938169pt;}
.ws23{word-spacing:-13.874408pt;}
.ws24{word-spacing:-13.810647pt;}
.ws9b{word-spacing:-13.746886pt;}
.ws83{word-spacing:-13.619364pt;}
.wsb3{word-spacing:-13.555603pt;}
.ws37{word-spacing:-13.236797pt;}
.ws20{word-spacing:-13.109275pt;}
.ws85{word-spacing:-12.981753pt;}
.ws41{word-spacing:-12.917992pt;}
.ws1d{word-spacing:-12.854231pt;}
.ws3d{word-spacing:-12.790470pt;}
.ws7e{word-spacing:-12.726709pt;}
.ws19{word-spacing:-12.662948pt;}
.wsa2{word-spacing:-12.599187pt;}
.ws5c{word-spacing:-12.535426pt;}
.ws2{word-spacing:-12.517538pt;}
.ws61{word-spacing:-12.471665pt;}
.wsb4{word-spacing:-12.433408pt;}
.ws6e{word-spacing:-12.344143pt;}
.ws68{word-spacing:-12.280381pt;}
.ws58{word-spacing:-12.089098pt;}
.ws3a{word-spacing:-12.025337pt;}
.ws7d{word-spacing:-11.961576pt;}
.ws3e{word-spacing:-11.897815pt;}
.ws2a{word-spacing:-11.834054pt;}
.ws81{word-spacing:-11.770293pt;}
.ws63{word-spacing:-11.706532pt;}
.wsa6{word-spacing:-11.642771pt;}
.ws34{word-spacing:-11.579010pt;}
.ws48{word-spacing:-11.451488pt;}
.ws66{word-spacing:-11.387727pt;}
.ws9e{word-spacing:-11.323965pt;}
.ws3{word-spacing:-11.293100pt;}
.ws73{word-spacing:-11.260204pt;}
.ws3c{word-spacing:-11.196443pt;}
.ws4f{word-spacing:-11.132682pt;}
.wse{word-spacing:-10.944009pt;}
.ws95{word-spacing:-10.941399pt;}
.ws45{word-spacing:-10.877638pt;}
.ws65{word-spacing:-10.813877pt;}
.wsa7{word-spacing:-10.711859pt;}
.ws7c{word-spacing:-10.686355pt;}
.ws7{word-spacing:-10.594918pt;}
.ws17{word-spacing:-10.495072pt;}
.ws18{word-spacing:-10.431311pt;}
.ws47{word-spacing:-10.367549pt;}
.ws49{word-spacing:-10.303788pt;}
.ws12{word-spacing:-10.240027pt;}
.ws4b{word-spacing:-10.176266pt;}
.ws57{word-spacing:-10.112505pt;}
.ws5a{word-spacing:-10.048744pt;}
.ws36{word-spacing:-9.984983pt;}
.ws2c{word-spacing:-9.921222pt;}
.ws4d{word-spacing:-9.793700pt;}
.ws1b{word-spacing:-9.729939pt;}
.ws5d{word-spacing:-9.666178pt;}
.wsa4{word-spacing:-9.564160pt;}
.ws9a{word-spacing:-9.538656pt;}
.ws22{word-spacing:-9.474895pt;}
.ws21{word-spacing:-9.347372pt;}
.ws75{word-spacing:-9.283611pt;}
.ws2b{word-spacing:-9.156089pt;}
.ws97{word-spacing:-9.092328pt;}
.ws94{word-spacing:-9.028567pt;}
.ws6c{word-spacing:-8.964806pt;}
.wsf{word-spacing:-8.907644pt;}
.ws40{word-spacing:-8.646001pt;}
.wsb{word-spacing:-8.616734pt;}
.wsab{word-spacing:-8.543983pt;}
.ws52{word-spacing:-8.454717pt;}
.ws99{word-spacing:-8.390956pt;}
.ws5e{word-spacing:-8.327195pt;}
.ws35{word-spacing:-8.263434pt;}
.ws72{word-spacing:-8.135912pt;}
.ws4{word-spacing:-8.093098pt;}
.ws74{word-spacing:-8.008390pt;}
.ws30{word-spacing:-7.944629pt;}
.ws87{word-spacing:-7.880868pt;}
.ws9{word-spacing:-7.860370pt;}
.ws46{word-spacing:-7.817107pt;}
.ws11{word-spacing:-7.753346pt;}
.wsac{word-spacing:-7.651328pt;}
.ws39{word-spacing:-7.562063pt;}
.ws88{word-spacing:-7.498301pt;}
.ws25{word-spacing:-7.370779pt;}
.ws15{word-spacing:-7.307018pt;}
.ws6f{word-spacing:-7.243257pt;}
.ws54{word-spacing:-7.179496pt;}
.ws6a{word-spacing:-7.115735pt;}
.ws7f{word-spacing:-7.051974pt;}
.ws1a{word-spacing:-6.924452pt;}
.ws14{word-spacing:-6.796930pt;}
.ws32{word-spacing:-6.733169pt;}
.ws60{word-spacing:-6.669408pt;}
.wsad{word-spacing:-6.631151pt;}
.ws1e{word-spacing:-6.541885pt;}
.ws82{word-spacing:-6.478124pt;}
.ws7a{word-spacing:-6.350602pt;}
.ws67{word-spacing:-6.223080pt;}
.ws90{word-spacing:-6.159319pt;}
.ws92{word-spacing:-6.095558pt;}
.ws51{word-spacing:-6.031797pt;}
.ws5b{word-spacing:-5.968036pt;}
.ws70{word-spacing:-5.712992pt;}
.ws76{word-spacing:-5.649231pt;}
.wsa1{word-spacing:-5.585469pt;}
.ws28{word-spacing:-5.521708pt;}
.wsd{word-spacing:-5.474914pt;}
.ws98{word-spacing:-5.394186pt;}
.ws5f{word-spacing:-5.266664pt;}
.ws3b{word-spacing:-5.202903pt;}
.ws77{word-spacing:-5.139142pt;}
.ws27{word-spacing:-5.075381pt;}
.ws8f{word-spacing:-5.011620pt;}
.ws2f{word-spacing:-4.947859pt;}
.ws93{word-spacing:-4.820337pt;}
.ws26{word-spacing:-4.629053pt;}
.wsb5{word-spacing:-4.501531pt;}
.ws2e{word-spacing:-4.437770pt;}
.ws8b{word-spacing:-4.374009pt;}
.ws4c{word-spacing:-4.246487pt;}
.ws96{word-spacing:-4.182726pt;}
.wsa8{word-spacing:-4.055204pt;}
.ws89{word-spacing:-3.991443pt;}
.ws33{word-spacing:-3.927682pt;}
.wsa0{word-spacing:-3.863921pt;}
.wsa9{word-spacing:-3.761903pt;}
.wsaf{word-spacing:-3.634381pt;}
.ws1f{word-spacing:-3.608876pt;}
.ws53{word-spacing:-3.545115pt;}
.wsa5{word-spacing:-3.481354pt;}
.wsa{word-spacing:-3.380366pt;}
.ws78{word-spacing:-3.162549pt;}
.ws38{word-spacing:-3.098788pt;}
.wsb0{word-spacing:-3.035027pt;}
.wsb1{word-spacing:-2.805487pt;}
.ws44{word-spacing:-2.716221pt;}
.ws9c{word-spacing:-2.652460pt;}
.ws5{word-spacing:-2.624002pt;}
.ws29{word-spacing:-2.524938pt;}
.ws9f{word-spacing:-2.461177pt;}
.ws55{word-spacing:-2.397416pt;}
.ws69{word-spacing:-2.142372pt;}
.ws6{word-spacing:-1.925820pt;}
.ws91{word-spacing:-1.887328pt;}
.ws56{word-spacing:-1.823567pt;}
.ws8{word-spacing:-1.460365pt;}
.ws8a{word-spacing:-1.441000pt;}
.wsc{word-spacing:-1.169456pt;}
.ws71{word-spacing:-0.739628pt;}
.ws6b{word-spacing:-0.675867pt;}
.ws79{word-spacing:-0.357062pt;}
.ws16{word-spacing:0.000000pt;}
.wsaa{word-spacing:15.391921pt;}
.wsb2{word-spacing:18.707497pt;}
.wsae{word-spacing:22.023072pt;}
.ws0{word-spacing:33.170200pt;}
.ws9d{word-spacing:51.646200pt;}
._1{margin-left:-8.705800pt;}
._4{margin-left:-7.192228pt;}
._15{margin-left:-5.747212pt;}
._9{margin-left:-4.711703pt;}
._7{margin-left:-3.783877pt;}
._2{margin-left:-2.865200pt;}
._6{margin-left:-1.266506pt;}
._12{width:0.986706pt;}
._5{width:1.955123pt;}
._3{width:2.865200pt;}
._a{width:4.421822pt;}
._1f{width:15.701262pt;}
._1e{width:16.747681pt;}
._13{width:18.099427pt;}
._1c{width:19.370601pt;}
._19{width:20.390778pt;}
._1d{width:21.712234pt;}
._16{width:22.775351pt;}
._1a{width:24.381483pt;}
._f{width:25.396899pt;}
._c{width:26.852473pt;}
._b{width:28.683660pt;}
._8{width:29.731962pt;}
._d{width:30.838445pt;}
._1b{width:32.509428pt;}
._28{width:34.784739pt;}
._17{width:36.159849pt;}
._21{width:37.100225pt;}
._14{width:38.035162pt;}
._20{width:40.439061pt;}
._26{width:41.760159pt;}
._23{width:43.127237pt;}
._0{width:44.741200pt;}
._11{width:45.907733pt;}
._29{width:47.055667pt;}
._27{width:48.522172pt;}
._e{width:50.036405pt;}
._18{width:51.263898pt;}
._24{width:52.587614pt;}
._22{width:54.161257pt;}
._25{width:57.529914pt;}
._10{width:103.292400pt;}
.fs2{font-size:58.181867pt;}
.fs4{font-size:63.761067pt;}
.fs1{font-size:76.513067pt;}
.fs3{font-size:91.815467pt;}
.fs0{font-size:110.200000pt;}
.y0{bottom:0.000000pt;}
.y1a{bottom:56.149333pt;}
.y48{bottom:99.900000pt;}
.y75{bottom:100.961333pt;}
.y19{bottom:106.021333pt;}
.y39{bottom:112.382667pt;}
.y55{bottom:116.746667pt;}
.y47{bottom:123.802667pt;}
.y74{bottom:124.865333pt;}
.ya1{bottom:129.230667pt;}
.y18{bottom:129.924000pt;}
.y85{bottom:136.285333pt;}
.y38{bottom:136.286667pt;}
.y54{bottom:140.649333pt;}
.y46{bottom:147.705333pt;}
.y73{bottom:148.768000pt;}
.ya0{bottom:153.133333pt;}
.y17{bottom:153.828000pt;}
.y37{bottom:160.189333pt;}
.y53{bottom:164.553333pt;}
.y45{bottom:171.608000pt;}
.y72{bottom:172.670667pt;}
.y9f{bottom:177.036000pt;}
.y16{bottom:177.730667pt;}
.y36{bottom:184.092000pt;}
.y52{bottom:188.456000pt;}
.y8f{bottom:195.512000pt;}
.y71{bottom:196.573333pt;}
.y9e{bottom:200.940000pt;}
.y15{bottom:201.633333pt;}
.y35{bottom:207.994667pt;}
.y51{bottom:212.358667pt;}
.y8e{bottom:219.414667pt;}
.y70{bottom:220.476000pt;}
.y9d{bottom:224.842667pt;}
.y34{bottom:231.897333pt;}
.y50{bottom:236.261333pt;}
.y8d{bottom:243.317333pt;}
.y6f{bottom:244.380000pt;}
.y84{bottom:244.381333pt;}
.y9c{bottom:248.745333pt;}
.y14{bottom:253.805333pt;}
.y33{bottom:255.801333pt;}
.y83{bottom:268.284000pt;}
.y4f{bottom:272.648000pt;}
.y32{bottom:279.704000pt;}
.y6e{bottom:280.766667pt;}
.y9b{bottom:285.132000pt;}
.y82{bottom:292.188000pt;}
.y8c{bottom:295.489333pt;}
.y4e{bottom:296.550667pt;}
.yb6{bottom:300.413333pt;}
.y44{bottom:303.606667pt;}
.y6d{bottom:304.669333pt;}
.y9a{bottom:309.034667pt;}
.y81{bottom:316.090667pt;}
.y4d{bottom:320.454667pt;}
.yb5{bottom:324.316000pt;}
.y13{bottom:326.576000pt;}
.y43{bottom:327.509333pt;}
.y6c{bottom:328.572000pt;}
.y31{bottom:331.876000pt;}
.y99{bottom:332.937333pt;}
.y80{bottom:339.993333pt;}
.y4c{bottom:344.357333pt;}
.y12{bottom:348.996000pt;}
.y6b{bottom:352.474667pt;}
.y98{bottom:356.841333pt;}
.yb4{bottom:360.702667pt;}
.y7f{bottom:363.896000pt;}
.y4b{bottom:368.260000pt;}
.y11{bottom:371.414667pt;}
.y6a{bottom:376.377333pt;}
.ya3{bottom:376.378667pt;}
.y42{bottom:379.681333pt;}
.y97{bottom:380.744000pt;}
.yb3{bottom:384.605333pt;}
.y7e{bottom:387.798667pt;}
.y4a{bottom:392.162667pt;}
.y10{bottom:393.834667pt;}
.y69{bottom:400.281333pt;}
.y30{bottom:404.646667pt;}
.y8b{bottom:416.066667pt;}
.yf{bottom:416.253333pt;}
.yb2{bottom:420.992000pt;}
.y7d{bottom:424.185333pt;}
.y2f{bottom:428.549333pt;}
.y68{bottom:436.668000pt;}
.ye{bottom:438.673333pt;}
.y8a{bottom:439.969333pt;}
.y96{bottom:441.033333pt;}
.yb1{bottom:444.894667pt;}
.y7c{bottom:448.089333pt;}
.y2e{bottom:452.453333pt;}
.y67{bottom:460.570667pt;}
.yd{bottom:461.092000pt;}
.y95{bottom:464.936000pt;}
.y7b{bottom:471.992000pt;}
.y2d{bottom:476.356000pt;}
.yb0{bottom:481.281333pt;}
.yc{bottom:483.512000pt;}
.y66{bottom:484.473333pt;}
.y94{bottom:488.838667pt;}
.y7a{bottom:495.894667pt;}
.y2c{bottom:500.258667pt;}
.yaf{bottom:505.184000pt;}
.yb{bottom:505.930667pt;}
.y65{bottom:508.376000pt;}
.y93{bottom:512.742667pt;}
.y79{bottom:519.797333pt;}
.y2b{bottom:524.161333pt;}
.ya{bottom:528.350667pt;}
.y64{bottom:532.280000pt;}
.y92{bottom:536.645333pt;}
.yae{bottom:541.570667pt;}
.y78{bottom:543.700000pt;}
.y2a{bottom:548.064000pt;}
.y9{bottom:550.769333pt;}
.y63{bottom:556.182667pt;}
.y41{bottom:560.548000pt;}
.yad{bottom:565.473333pt;}
.y89{bottom:571.968000pt;}
.y8{bottom:573.189333pt;}
.y62{bottom:580.085333pt;}
.y29{bottom:584.450667pt;}
.y7{bottom:595.608000pt;}
.y88{bottom:595.870667pt;}
.y77{bottom:595.872000pt;}
.yac{bottom:601.860000pt;}
.y28{bottom:608.354667pt;}
.y61{bottom:616.472000pt;}
.y91{bottom:620.837333pt;}
.yab{bottom:625.762667pt;}
.y27{bottom:632.257333pt;}
.y6{bottom:638.088000pt;}
.y60{bottom:640.374667pt;}
.y90{bottom:644.740000pt;}
.y26{bottom:656.160000pt;}
.yaa{bottom:662.149333pt;}
.y5f{bottom:664.277333pt;}
.y76{bottom:668.644000pt;}
.y25{bottom:680.062667pt;}
.y5e{bottom:688.181333pt;}
.y40{bottom:692.546667pt;}
.ya9{bottom:698.536000pt;}
.y49{bottom:703.965333pt;}
.y24{bottom:703.966667pt;}
.y5{bottom:705.506667pt;}
.y5d{bottom:712.084000pt;}
.y3f{bottom:716.449333pt;}
.ya8{bottom:722.438667pt;}
.y23{bottom:727.869333pt;}
.y4{bottom:735.178667pt;}
.y5c{bottom:735.986667pt;}
.y3e{bottom:740.352000pt;}
.y87{bottom:751.772000pt;}
.ya7{bottom:758.825333pt;}
.y5b{bottom:759.889333pt;}
.y22{bottom:764.256000pt;}
.y3{bottom:764.852000pt;}
.ya2{bottom:772.373333pt;}
.y21{bottom:788.158667pt;}
.ya6{bottom:795.212000pt;}
.y5a{bottom:796.276000pt;}
.y20{bottom:812.061333pt;}
.ya5{bottom:819.114667pt;}
.y59{bottom:820.178667pt;}
.y3d{bottom:824.545333pt;}
.y2{bottom:830.420000pt;}
.y1f{bottom:835.964000pt;}
.y58{bottom:844.082667pt;}
.y3c{bottom:848.448000pt;}
.ya4{bottom:855.501333pt;}
.y1e{bottom:859.868000pt;}
.y57{bottom:867.985333pt;}
.y1{bottom:871.632000pt;}
.y3b{bottom:872.350667pt;}
.y1d{bottom:883.770667pt;}
.y56{bottom:891.888000pt;}
.y3a{bottom:896.253333pt;}
.y86{bottom:907.673333pt;}
.y1c{bottom:920.157333pt;}
.y1b{bottom:944.060000pt;}
.h3{height:40.610943pt;}
.h4{height:41.018216pt;}
.h6{height:47.820800pt;}
.h2{height:57.384800pt;}
.h5{height:68.861600pt;}
.h1{height:77.360400pt;}
.h0{height:1056.000000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x9{left:96.000000pt;}
.x8{left:135.020000pt;}
.x7{left:156.838667pt;}
.x1{left:161.278667pt;}
.x5{left:221.172000pt;}
.x4{left:239.856000pt;}
.x2{left:272.290667pt;}
.x3{left:303.088000pt;}
.x6{left:376.000000pt;}
.xb{left:400.196000pt;}
.xa{left:404.097333pt;}
}




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