
    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_2581a6cde119bc9e83c26153.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.911000;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_6a992740eadba079a0812d27.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.919000;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_4952f8c1cbfc3ed463dd41ed.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_36c609195fc5538cf5292d17.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_2ad2c7b211a65878e8d3da36.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_0bd458bb70aed4a1ceceb335.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_45775b90370f0636a2dc73ac.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_ee6b1c3729e1d0dc6271927d.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.666000;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:ff9;src:url('chunks/assets/font_4042ebf587f70fd22638602e.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.999000;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:ffa;src:url('chunks/assets/font_62e6ffbb588eff3dc26322d7.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.712000;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:ffb;src:url('chunks/assets/font_b14c9477fabd0124177a21b7.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.964000;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:ffc;src:url('chunks/assets/font_dc788816a4a13fde666155d1.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.635000;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:ffd;src:url('chunks/assets/font_4d50a3601faf750492696bc3.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.046000;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);}
.v5{vertical-align:-26.028000px;}
.v2{vertical-align:-21.690000px;}
.v4{vertical-align:-10.758000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:12.684000px;}
.v1{vertical-align:26.034000px;}
.ls7{letter-spacing:0.000000px;}
.ls15{letter-spacing:0.000219px;}
.ls2{letter-spacing:0.001114px;}
.ls6{letter-spacing:0.001150px;}
.ls28{letter-spacing:0.001200px;}
.ls17{letter-spacing:0.003056px;}
.ls26{letter-spacing:0.004573px;}
.lsa{letter-spacing:2.984915px;}
.lsc{letter-spacing:2.987971px;}
.lsb{letter-spacing:2.990915px;}
.ls3{letter-spacing:6.433473px;}
.ls13{letter-spacing:15.115473px;}
.ls1e{letter-spacing:15.196404px;}
.ls1f{letter-spacing:15.205473px;}
.ls1{letter-spacing:15.271473px;}
.ls0{letter-spacing:15.274404px;}
.ls24{letter-spacing:15.937473px;}
.ls23{letter-spacing:15.940404px;}
.ls22{letter-spacing:15.943473px;}
.lsf{letter-spacing:16.444404px;}
.ls10{letter-spacing:16.447473px;}
.ls4{letter-spacing:18.337473px;}
.ls1d{letter-spacing:18.859473px;}
.ls12{letter-spacing:20.659473px;}
.ls1a{letter-spacing:21.328404px;}
.ls1b{letter-spacing:21.331473px;}
.ls14{letter-spacing:23.008404px;}
.ls21{letter-spacing:23.025715px;}
.ls20{letter-spacing:23.050404px;}
.ls25{letter-spacing:23.410404px;}
.ls27{letter-spacing:24.629907px;}
.ls8{letter-spacing:24.704915px;}
.ls18{letter-spacing:26.864915px;}
.ls5{letter-spacing:26.932404px;}
.lsd{letter-spacing:29.192915px;}
.lse{letter-spacing:30.746915px;}
.ls19{letter-spacing:31.424915px;}
.ls1c{letter-spacing:31.925907px;}
.ls16{letter-spacing:34.346915px;}
.ls11{letter-spacing:36.431907px;}
.ls9{letter-spacing:37.562746px;}
.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;}
}
.wsd{word-spacing:-45.664082px;}
.wse{word-spacing:-19.510886px;}
.ws4d{word-spacing:-4.382429px;}
.ws70{word-spacing:-3.572077px;}
.ws28{word-spacing:-2.940979px;}
.ws1d{word-spacing:-2.797517px;}
.ws7f{word-spacing:-2.295398px;}
.ws10{word-spacing:-2.223667px;}
.ws20{word-spacing:-2.008474px;}
.ws57{word-spacing:-1.936742px;}
.ws89{word-spacing:-1.649818px;}
.ws88{word-spacing:-1.578086px;}
.ws11{word-spacing:-1.190189px;}
.ws6d{word-spacing:-1.075968px;}
.ws63{word-spacing:-1.004237px;}
.ws64{word-spacing:-0.932506px;}
.ws7c{word-spacing:-0.860774px;}
.wsf{word-spacing:-0.789043px;}
.ws6a{word-spacing:-0.656077px;}
.ws33{word-spacing:-0.358656px;}
.ws2{word-spacing:-0.071731px;}
.ws17{word-spacing:-0.059776px;}
.ws35{word-spacing:-0.047821px;}
.ws15{word-spacing:-0.041843px;}
.ws18{word-spacing:0.000000px;}
.ws55{word-spacing:0.071731px;}
.ws78{word-spacing:0.143462px;}
.ws27{word-spacing:0.286925px;}
.ws60{word-spacing:0.358656px;}
.ws50{word-spacing:0.430387px;}
.ws4f{word-spacing:0.502118px;}
.ws85{word-spacing:0.573850px;}
.ws8b{word-spacing:0.645581px;}
.ws2c{word-spacing:0.717312px;}
.ws3b{word-spacing:0.789043px;}
.wsa{word-spacing:0.932506px;}
.wsb{word-spacing:1.004237px;}
.ws4c{word-spacing:1.149923px;}
.ws5e{word-spacing:1.219430px;}
.ws13{word-spacing:1.291162px;}
.ws25{word-spacing:1.362893px;}
.ws8{word-spacing:1.506355px;}
.ws45{word-spacing:1.578086px;}
.ws21{word-spacing:1.936742px;}
.ws2f{word-spacing:2.008474px;}
.ws8a{word-spacing:2.080205px;}
.ws53{word-spacing:2.151936px;}
.ws1c{word-spacing:2.223667px;}
.ws7b{word-spacing:2.510592px;}
.ws74{word-spacing:2.582323px;}
.ws1b{word-spacing:2.654054px;}
.ws7d{word-spacing:2.725786px;}
.ws41{word-spacing:2.797517px;}
.ws71{word-spacing:2.940979px;}
.ws67{word-spacing:3.227904px;}
.ws4e{word-spacing:3.514829px;}
.wsc{word-spacing:3.586560px;}
.ws82{word-spacing:3.866269px;}
.ws14{word-spacing:3.873485px;}
.ws87{word-spacing:3.881979px;}
.ws86{word-spacing:3.921830px;}
.ws3f{word-spacing:3.945216px;}
.ws5b{word-spacing:4.232141px;}
.ws1e{word-spacing:4.375603px;}
.ws3d{word-spacing:4.447334px;}
.ws6c{word-spacing:4.519066px;}
.ws62{word-spacing:4.590797px;}
.ws49{word-spacing:4.662528px;}
.ws65{word-spacing:4.805990px;}
.ws61{word-spacing:4.877722px;}
.ws3c{word-spacing:4.949453px;}
.ws36{word-spacing:5.021184px;}
.ws5d{word-spacing:5.236378px;}
.ws32{word-spacing:5.523302px;}
.ws77{word-spacing:5.738496px;}
.ws34{word-spacing:5.881958px;}
.ws31{word-spacing:5.953690px;}
.ws75{word-spacing:6.025421px;}
.ws81{word-spacing:6.312346px;}
.ws43{word-spacing:6.384077px;}
.ws42{word-spacing:6.455808px;}
.ws37{word-spacing:6.671002px;}
.ws22{word-spacing:6.742733px;}
.ws6f{word-spacing:6.886195px;}
.ws23{word-spacing:7.173120px;}
.ws7a{word-spacing:7.244851px;}
.ws12{word-spacing:7.388314px;}
.ws39{word-spacing:7.603507px;}
.ws69{word-spacing:7.746970px;}
.ws0{word-spacing:7.990856px;}
.ws52{word-spacing:8.105626px;}
.ws68{word-spacing:8.177357px;}
.ws40{word-spacing:8.249088px;}
.ws38{word-spacing:8.320819px;}
.ws1f{word-spacing:8.392550px;}
.ws48{word-spacing:8.536013px;}
.ws9{word-spacing:8.607744px;}
.ws5f{word-spacing:8.894669px;}
.ws79{word-spacing:8.966400px;}
.ws56{word-spacing:9.038131px;}
.ws30{word-spacing:9.109862px;}
.ws6b{word-spacing:9.253325px;}
.ws59{word-spacing:9.325056px;}
.ws58{word-spacing:9.396787px;}
.ws3e{word-spacing:9.540250px;}
.ws2e{word-spacing:9.683712px;}
.ws2b{word-spacing:9.827174px;}
.ws44{word-spacing:9.898906px;}
.ws24{word-spacing:9.970637px;}
.ws6{word-spacing:10.114099px;}
.ws54{word-spacing:10.185830px;}
.ws5a{word-spacing:10.472755px;}
.ws76{word-spacing:10.687949px;}
.ws4a{word-spacing:10.831411px;}
.ws2a{word-spacing:11.046605px;}
.ws29{word-spacing:11.476992px;}
.ws72{word-spacing:11.692186px;}
.ws51{word-spacing:11.835648px;}
.ws4b{word-spacing:12.194304px;}
.ws2d{word-spacing:12.552960px;}
.ws83{word-spacing:12.696422px;}
.ws73{word-spacing:12.983347px;}
.ws5c{word-spacing:13.198541px;}
.ws1a{word-spacing:13.342003px;}
.ws47{word-spacing:14.059315px;}
.ws26{word-spacing:15.063552px;}
.ws66{word-spacing:15.135283px;}
.ws8d{word-spacing:18.793574px;}
.ws80{word-spacing:19.367424px;}
.ws16{word-spacing:19.845499px;}
.ws5{word-spacing:21.730927px;}
.ws3a{word-spacing:22.810522px;}
.ws46{word-spacing:23.981812px;}
.ws1{word-spacing:24.532070px;}
.ws4{word-spacing:25.034189px;}
.ws7{word-spacing:25.321114px;}
.ws84{word-spacing:25.894963px;}
.ws3{word-spacing:26.325350px;}
.ws7e{word-spacing:26.827469px;}
.ws6e{word-spacing:32.543981px;}
.ws19{word-spacing:80.625869px;}
.ws8c{word-spacing:184.133990px;}
._1d{margin-left:-37.156762px;}
._2a{margin-left:-9.755443px;}
._29{margin-left:-7.603507px;}
._10{margin-left:-6.455808px;}
._2{margin-left:-5.451571px;}
._4{margin-left:-3.514829px;}
._0{margin-left:-2.223667px;}
._6{margin-left:-1.147699px;}
._12{width:1.004237px;}
._1{width:2.080205px;}
._18{width:3.318687px;}
._2c{width:4.488186px;}
._b{width:6.636075px;}
._2b{width:13.493990px;}
._25{width:17.521415px;}
._f{width:19.654349px;}
._24{width:20.945510px;}
._9{width:21.949747px;}
._1f{width:23.025715px;}
._1b{width:24.507214px;}
._3{width:25.751501px;}
._c{width:26.899200px;}
._d{width:27.901841px;}
._5{width:29.061842px;}
._17{width:30.438885px;}
._a{width:31.561728px;}
._13{width:32.924621px;}
._16{width:34.717901px;}
._19{width:35.795665px;}
._26{width:37.443686px;}
._22{width:38.591386px;}
._1c{width:39.671675px;}
._11{width:41.101978px;}
._2d{width:42.936109px;}
._e{width:44.186419px;}
._8{width:45.262387px;}
._23{width:47.055667px;}
._1a{width:48.059904px;}
._14{width:49.924915px;}
._1e{width:52.284434px;}
._20{width:55.809649px;}
._15{width:57.098035px;}
._28{width:58.747853px;}
._27{width:65.418854px;}
._21{width:70.296576px;}
._7{width:95.259034px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:41.842800px;}
.fs1{font-size:47.820600px;}
.fs4{font-size:59.775600px;}
.fs2{font-size:65.454600px;}
.fs0{font-size:71.731200px;}
.y0{bottom:0.000000px;}
.y14{bottom:40.647000px;}
.y32{bottom:85.479000px;}
.y13{bottom:100.653000px;}
.yb1{bottom:102.327000px;}
.y31{bottom:116.862000px;}
.y5f{bottom:122.647500px;}
.y93{bottom:138.474000px;}
.yb0{bottom:140.217000px;}
.y4e{bottom:148.243500px;}
.y30{bottom:152.455500px;}
.y5e{bottom:154.030500px;}
.yaf{bottom:165.091500px;}
.y6b{bottom:179.626500px;}
.y2f{bottom:183.838500px;}
.y5d{bottom:185.412000px;}
.yae{bottom:196.473000px;}
.y4d{bottom:202.437000px;}
.y92{bottom:206.046000px;}
.y6a{bottom:211.008000px;}
.y2e{bottom:215.220000px;}
.y5c{bottom:216.795000px;}
.yad{bottom:234.363000px;}
.y91{bottom:237.429000px;}
.y69{bottom:242.391000px;}
.y2d{bottom:246.603000px;}
.y5b{bottom:248.176500px;}
.yac{bottom:259.237500px;}
.y68{bottom:275.323500px;}
.y7b{bottom:275.508000px;}
.y4c{bottom:277.396500px;}
.y2c{bottom:277.984500px;}
.y5a{bottom:279.559500px;}
.y76{bottom:281.892000px;}
.y90{bottom:290.422500px;}
.yab{bottom:297.127500px;}
.y67{bottom:306.706500px;}
.y7a{bottom:306.889500px;}
.y4b{bottom:308.779500px;}
.y2b{bottom:309.367500px;}
.y59{bottom:310.942500px;}
.y75{bottom:313.275000px;}
.yaa{bottom:328.510500px;}
.y66{bottom:338.088000px;}
.y79{bottom:338.272500px;}
.y4a{bottom:340.161000px;}
.y2a{bottom:340.750500px;}
.y58{bottom:342.324000px;}
.y74{bottom:344.656500px;}
.y8f{bottom:357.994500px;}
.ya9{bottom:359.893500px;}
.y65{bottom:369.471000px;}
.y49{bottom:371.544000px;}
.y29{bottom:372.132000px;}
.y48{bottom:374.715000px;}
.y73{bottom:376.039500px;}
.y57{bottom:379.492500px;}
.y8e{bottom:389.377500px;}
.ya8{bottom:391.275000px;}
.y64{bottom:400.852500px;}
.y47{bottom:402.925500px;}
.y28{bottom:403.515000px;}
.y72{bottom:407.422500px;}
.y56{bottom:410.875500px;}
.y8d{bottom:420.760500px;}
.ya7{bottom:422.658000px;}
.y63{bottom:432.235500px;}
.y46{bottom:434.308500px;}
.y27{bottom:434.896500px;}
.y55{bottom:442.257000px;}
.y8c{bottom:452.142000px;}
.ya6{bottom:454.039500px;}
.y62{bottom:463.618500px;}
.y26{bottom:466.279500px;}
.y45{bottom:467.241000px;}
.y71{bottom:480.895500px;}
.y8b{bottom:483.525000px;}
.ya5{bottom:485.422500px;}
.y25{bottom:497.661000px;}
.y44{bottom:498.624000px;}
.y12{bottom:505.777500px;}
.y54{bottom:511.065000px;}
.y70{bottom:512.278500px;}
.y8a{bottom:514.906500px;}
.ya4{bottom:516.804000px;}
.y61{bottom:517.810500px;}
.y24{bottom:529.044000px;}
.y43{bottom:530.005500px;}
.y11{bottom:537.160500px;}
.y53{bottom:542.448000px;}
.y6f{bottom:543.660000px;}
.y89{bottom:546.289500px;}
.ya3{bottom:548.187000px;}
.y23{bottom:560.425500px;}
.y42{bottom:561.388500px;}
.y10{bottom:568.543500px;}
.y52{bottom:573.829500px;}
.y6e{bottom:575.043000px;}
.y88{bottom:577.671000px;}
.ya2{bottom:579.568500px;}
.y41{bottom:592.770000px;}
.y22{bottom:596.020500px;}
.yf{bottom:599.925000px;}
.ya1{bottom:604.443000px;}
.y51{bottom:605.212500px;}
.y6d{bottom:606.424500px;}
.y87{bottom:609.054000px;}
.y40{bottom:624.153000px;}
.y21{bottom:627.402000px;}
.ye{bottom:631.308000px;}
.y50{bottom:636.594000px;}
.y6c{bottom:637.807500px;}
.y86{bottom:640.435500px;}
.ya0{bottom:642.333000px;}
.y3f{bottom:655.536000px;}
.y20{bottom:658.785000px;}
.yd{bottom:662.689500px;}
.y9f{bottom:667.209000px;}
.y4f{bottom:667.977000px;}
.y85{bottom:671.818500px;}
.y3e{bottom:686.917500px;}
.y1f{bottom:690.166500px;}
.yc{bottom:694.072500px;}
.y9e{bottom:698.590500px;}
.y84{bottom:703.200000px;}
.y78{bottom:706.909500px;}
.y3d{bottom:718.300500px;}
.y1e{bottom:721.549500px;}
.yb{bottom:725.454000px;}
.y9d{bottom:729.973500px;}
.y77{bottom:738.292500px;}
.y3c{bottom:749.682000px;}
.y1d{bottom:752.931000px;}
.y83{bottom:756.195000px;}
.ya{bottom:756.837000px;}
.y9c{bottom:761.355000px;}
.y3b{bottom:781.065000px;}
.y1c{bottom:784.314000px;}
.y9{bottom:788.218500px;}
.y9b{bottom:799.245000px;}
.y60{bottom:812.446500px;}
.y3a{bottom:813.997500px;}
.y8{bottom:819.601500px;}
.y1b{bottom:819.907500px;}
.y82{bottom:823.767000px;}
.y9a{bottom:830.628000px;}
.y39{bottom:845.380500px;}
.y7{bottom:850.983000px;}
.y1a{bottom:851.290500px;}
.y81{bottom:855.150000px;}
.y99{bottom:862.009500px;}
.y38{bottom:876.762000px;}
.y19{bottom:882.673500px;}
.y80{bottom:886.531500px;}
.y98{bottom:886.884000px;}
.y6{bottom:890.584500px;}
.y37{bottom:908.145000px;}
.y18{bottom:914.055000px;}
.y7f{bottom:917.914500px;}
.y97{bottom:924.774000px;}
.y5{bottom:935.043000px;}
.y36{bottom:939.526500px;}
.y17{bottom:945.438000px;}
.y7e{bottom:949.296000px;}
.y96{bottom:956.157000px;}
.y4{bottom:966.426000px;}
.y35{bottom:970.909500px;}
.y16{bottom:976.819500px;}
.y7d{bottom:980.679000px;}
.y95{bottom:981.031500px;}
.y3{bottom:997.807500px;}
.y34{bottom:1002.291000px;}
.y15{bottom:1008.202500px;}
.y7c{bottom:1012.062000px;}
.y94{bottom:1018.921500px;}
.y2{bottom:1029.190500px;}
.y33{bottom:1033.674000px;}
.yb3{bottom:1040.181000px;}
.y1{bottom:1065.055500px;}
.yb2{bottom:1071.564000px;}
.h6{height:31.382100px;}
.hb{height:35.865450px;}
.h5{height:49.090950px;}
.h7{height:50.211840px;}
.h1{height:50.642227px;}
.h2{height:51.287808px;}
.h4{height:53.798400px;}
.ha{height:55.304755px;}
.h8{height:61.893450px;}
.h3{height:61.899450px;}
.h9{height:66.482400px;}
.h0{height:1188.000000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x1{left:108.000000px;}
.x9{left:114.351000px;}
.xa{left:121.449000px;}
.x4{left:130.416000px;}
.x2{left:162.000000px;}
.x6{left:178.821000px;}
.x5{left:339.592500px;}
.xb{left:440.130000px;}
.x3{left:444.519000px;}
.x8{left:591.360000px;}
.x7{left:758.023500px;}
@media print{
.v5{vertical-align:-23.136000pt;}
.v2{vertical-align:-19.280000pt;}
.v4{vertical-align:-9.562667pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:11.274667pt;}
.v1{vertical-align:23.141333pt;}
.ls7{letter-spacing:0.000000pt;}
.ls15{letter-spacing:0.000195pt;}
.ls2{letter-spacing:0.000990pt;}
.ls6{letter-spacing:0.001022pt;}
.ls28{letter-spacing:0.001067pt;}
.ls17{letter-spacing:0.002717pt;}
.ls26{letter-spacing:0.004065pt;}
.lsa{letter-spacing:2.653258pt;}
.lsc{letter-spacing:2.655975pt;}
.lsb{letter-spacing:2.658591pt;}
.ls3{letter-spacing:5.718642pt;}
.ls13{letter-spacing:13.435976pt;}
.ls1e{letter-spacing:13.507915pt;}
.ls1f{letter-spacing:13.515976pt;}
.ls1{letter-spacing:13.574642pt;}
.ls0{letter-spacing:13.577248pt;}
.ls24{letter-spacing:14.166642pt;}
.ls23{letter-spacing:14.169248pt;}
.ls22{letter-spacing:14.171976pt;}
.lsf{letter-spacing:14.617248pt;}
.ls10{letter-spacing:14.619976pt;}
.ls4{letter-spacing:16.299976pt;}
.ls1d{letter-spacing:16.763976pt;}
.ls12{letter-spacing:18.363976pt;}
.ls1a{letter-spacing:18.958582pt;}
.ls1b{letter-spacing:18.961309pt;}
.ls14{letter-spacing:20.451915pt;}
.ls21{letter-spacing:20.467302pt;}
.ls20{letter-spacing:20.489248pt;}
.ls25{letter-spacing:20.809248pt;}
.ls27{letter-spacing:21.893251pt;}
.ls8{letter-spacing:21.959925pt;}
.ls18{letter-spacing:23.879925pt;}
.ls5{letter-spacing:23.939915pt;}
.lsd{letter-spacing:25.949258pt;}
.lse{letter-spacing:27.330591pt;}
.ls19{letter-spacing:27.933258pt;}
.ls1c{letter-spacing:28.378584pt;}
.ls16{letter-spacing:30.530591pt;}
.ls11{letter-spacing:32.383918pt;}
.ls9{letter-spacing:33.389107pt;}
.wsd{word-spacing:-40.590295pt;}
.wse{word-spacing:-17.343010pt;}
.ws4d{word-spacing:-3.895492pt;}
.ws70{word-spacing:-3.175180pt;}
.ws28{word-spacing:-2.614204pt;}
.ws1d{word-spacing:-2.486682pt;}
.ws7f{word-spacing:-2.040354pt;}
.ws10{word-spacing:-1.976593pt;}
.ws20{word-spacing:-1.785310pt;}
.ws57{word-spacing:-1.721549pt;}
.ws89{word-spacing:-1.466505pt;}
.ws88{word-spacing:-1.402743pt;}
.ws11{word-spacing:-1.057946pt;}
.ws6d{word-spacing:-0.956416pt;}
.ws63{word-spacing:-0.892655pt;}
.ws64{word-spacing:-0.828894pt;}
.ws7c{word-spacing:-0.765133pt;}
.wsf{word-spacing:-0.701372pt;}
.ws6a{word-spacing:-0.583180pt;}
.ws33{word-spacing:-0.318805pt;}
.ws2{word-spacing:-0.063761pt;}
.ws17{word-spacing:-0.053134pt;}
.ws35{word-spacing:-0.042507pt;}
.ws15{word-spacing:-0.037194pt;}
.ws18{word-spacing:0.000000pt;}
.ws55{word-spacing:0.063761pt;}
.ws78{word-spacing:0.127522pt;}
.ws27{word-spacing:0.255044pt;}
.ws60{word-spacing:0.318805pt;}
.ws50{word-spacing:0.382566pt;}
.ws4f{word-spacing:0.446327pt;}
.ws85{word-spacing:0.510089pt;}
.ws8b{word-spacing:0.573850pt;}
.ws2c{word-spacing:0.637611pt;}
.ws3b{word-spacing:0.701372pt;}
.wsa{word-spacing:0.828894pt;}
.wsb{word-spacing:0.892655pt;}
.ws4c{word-spacing:1.022153pt;}
.ws5e{word-spacing:1.083938pt;}
.ws13{word-spacing:1.147699pt;}
.ws25{word-spacing:1.211460pt;}
.ws8{word-spacing:1.338982pt;}
.ws45{word-spacing:1.402743pt;}
.ws21{word-spacing:1.721549pt;}
.ws2f{word-spacing:1.785310pt;}
.ws8a{word-spacing:1.849071pt;}
.ws53{word-spacing:1.912832pt;}
.ws1c{word-spacing:1.976593pt;}
.ws7b{word-spacing:2.231637pt;}
.ws74{word-spacing:2.295398pt;}
.ws1b{word-spacing:2.359159pt;}
.ws7d{word-spacing:2.422921pt;}
.ws41{word-spacing:2.486682pt;}
.ws71{word-spacing:2.614204pt;}
.ws67{word-spacing:2.869248pt;}
.ws4e{word-spacing:3.124292pt;}
.wsc{word-spacing:3.188053pt;}
.ws82{word-spacing:3.436684pt;}
.ws14{word-spacing:3.443098pt;}
.ws87{word-spacing:3.450648pt;}
.ws86{word-spacing:3.486071pt;}
.ws3f{word-spacing:3.506859pt;}
.ws5b{word-spacing:3.761903pt;}
.ws1e{word-spacing:3.889425pt;}
.ws3d{word-spacing:3.953186pt;}
.ws6c{word-spacing:4.016947pt;}
.ws62{word-spacing:4.080708pt;}
.ws49{word-spacing:4.144469pt;}
.ws65{word-spacing:4.271991pt;}
.ws61{word-spacing:4.335753pt;}
.ws3c{word-spacing:4.399514pt;}
.ws36{word-spacing:4.463275pt;}
.ws5d{word-spacing:4.654558pt;}
.ws32{word-spacing:4.909602pt;}
.ws77{word-spacing:5.100885pt;}
.ws34{word-spacing:5.228407pt;}
.ws31{word-spacing:5.292169pt;}
.ws75{word-spacing:5.355930pt;}
.ws81{word-spacing:5.610974pt;}
.ws43{word-spacing:5.674735pt;}
.ws42{word-spacing:5.738496pt;}
.ws37{word-spacing:5.929779pt;}
.ws22{word-spacing:5.993540pt;}
.ws6f{word-spacing:6.121062pt;}
.ws23{word-spacing:6.376107pt;}
.ws7a{word-spacing:6.439868pt;}
.ws12{word-spacing:6.567390pt;}
.ws39{word-spacing:6.758673pt;}
.ws69{word-spacing:6.886195pt;}
.ws0{word-spacing:7.102983pt;}
.ws52{word-spacing:7.205001pt;}
.ws68{word-spacing:7.268762pt;}
.ws40{word-spacing:7.332523pt;}
.ws38{word-spacing:7.396284pt;}
.ws1f{word-spacing:7.460045pt;}
.ws48{word-spacing:7.587567pt;}
.ws9{word-spacing:7.651328pt;}
.ws5f{word-spacing:7.906372pt;}
.ws79{word-spacing:7.970133pt;}
.ws56{word-spacing:8.033894pt;}
.ws30{word-spacing:8.097655pt;}
.ws6b{word-spacing:8.225178pt;}
.ws59{word-spacing:8.288939pt;}
.ws58{word-spacing:8.352700pt;}
.ws3e{word-spacing:8.480222pt;}
.ws2e{word-spacing:8.607744pt;}
.ws2b{word-spacing:8.735266pt;}
.ws44{word-spacing:8.799027pt;}
.ws24{word-spacing:8.862788pt;}
.ws6{word-spacing:8.990310pt;}
.ws54{word-spacing:9.054071pt;}
.ws5a{word-spacing:9.309116pt;}
.ws76{word-spacing:9.500399pt;}
.ws4a{word-spacing:9.627921pt;}
.ws2a{word-spacing:9.819204pt;}
.ws29{word-spacing:10.201771pt;}
.ws72{word-spacing:10.393054pt;}
.ws51{word-spacing:10.520576pt;}
.ws4b{word-spacing:10.839381pt;}
.ws2d{word-spacing:11.158187pt;}
.ws83{word-spacing:11.285709pt;}
.ws73{word-spacing:11.540753pt;}
.ws5c{word-spacing:11.732036pt;}
.ws1a{word-spacing:11.859558pt;}
.ws47{word-spacing:12.497169pt;}
.ws26{word-spacing:13.389824pt;}
.ws66{word-spacing:13.453585pt;}
.ws8d{word-spacing:16.705399pt;}
.ws80{word-spacing:17.215488pt;}
.ws16{word-spacing:17.640444pt;}
.ws5{word-spacing:19.316380pt;}
.ws3a{word-spacing:20.276019pt;}
.ws46{word-spacing:21.317166pt;}
.ws1{word-spacing:21.806285pt;}
.ws4{word-spacing:22.252612pt;}
.ws7{word-spacing:22.507657pt;}
.ws84{word-spacing:23.017745pt;}
.ws3{word-spacing:23.400311pt;}
.ws7e{word-spacing:23.846639pt;}
.ws6e{word-spacing:28.927983pt;}
.ws19{word-spacing:71.667439pt;}
.ws8c{word-spacing:163.674658pt;}
._1d{margin-left:-33.028233pt;}
._2a{margin-left:-8.671505pt;}
._29{margin-left:-6.758673pt;}
._10{margin-left:-5.738496pt;}
._2{margin-left:-4.845841pt;}
._4{margin-left:-3.124292pt;}
._0{margin-left:-1.976593pt;}
._6{margin-left:-1.020177pt;}
._12{width:0.892655pt;}
._1{width:1.849071pt;}
._18{width:2.949944pt;}
._2c{width:3.989498pt;}
._b{width:5.898733pt;}
._2b{width:11.994658pt;}
._25{width:15.574591pt;}
._f{width:17.470532pt;}
._24{width:18.618231pt;}
._9{width:19.510886pt;}
._1f{width:20.467302pt;}
._1b{width:21.784190pt;}
._3{width:22.890223pt;}
._c{width:23.910400pt;}
._d{width:24.801637pt;}
._5{width:25.832749pt;}
._17{width:27.056787pt;}
._a{width:28.054869pt;}
._13{width:29.266330pt;}
._16{width:30.860356pt;}
._19{width:31.818369pt;}
._26{width:33.283277pt;}
._22{width:34.303454pt;}
._1c{width:35.263711pt;}
._11{width:36.535091pt;}
._2d{width:38.165430pt;}
._e{width:39.276817pt;}
._8{width:40.233233pt;}
._23{width:41.827260pt;}
._1a{width:42.719915pt;}
._14{width:44.377702pt;}
._1e{width:46.475052pt;}
._20{width:49.608577pt;}
._15{width:50.753809pt;}
._28{width:52.220314pt;}
._27{width:58.150093pt;}
._21{width:62.485845pt;}
._7{width:84.674697pt;}
.fs3{font-size:37.193600pt;}
.fs1{font-size:42.507200pt;}
.fs4{font-size:53.133867pt;}
.fs2{font-size:58.181867pt;}
.fs0{font-size:63.761067pt;}
.y0{bottom:0.000000pt;}
.y14{bottom:36.130667pt;}
.y32{bottom:75.981333pt;}
.y13{bottom:89.469333pt;}
.yb1{bottom:90.957333pt;}
.y31{bottom:103.877333pt;}
.y5f{bottom:109.020000pt;}
.y93{bottom:123.088000pt;}
.yb0{bottom:124.637333pt;}
.y4e{bottom:131.772000pt;}
.y30{bottom:135.516000pt;}
.y5e{bottom:136.916000pt;}
.yaf{bottom:146.748000pt;}
.y6b{bottom:159.668000pt;}
.y2f{bottom:163.412000pt;}
.y5d{bottom:164.810667pt;}
.yae{bottom:174.642667pt;}
.y4d{bottom:179.944000pt;}
.y92{bottom:183.152000pt;}
.y6a{bottom:187.562667pt;}
.y2e{bottom:191.306667pt;}
.y5c{bottom:192.706667pt;}
.yad{bottom:208.322667pt;}
.y91{bottom:211.048000pt;}
.y69{bottom:215.458667pt;}
.y2d{bottom:219.202667pt;}
.y5b{bottom:220.601333pt;}
.yac{bottom:230.433333pt;}
.y68{bottom:244.732000pt;}
.y7b{bottom:244.896000pt;}
.y4c{bottom:246.574667pt;}
.y2c{bottom:247.097333pt;}
.y5a{bottom:248.497333pt;}
.y76{bottom:250.570667pt;}
.y90{bottom:258.153333pt;}
.yab{bottom:264.113333pt;}
.y67{bottom:272.628000pt;}
.y7a{bottom:272.790667pt;}
.y4b{bottom:274.470667pt;}
.y2b{bottom:274.993333pt;}
.y59{bottom:276.393333pt;}
.y75{bottom:278.466667pt;}
.yaa{bottom:292.009333pt;}
.y66{bottom:300.522667pt;}
.y79{bottom:300.686667pt;}
.y4a{bottom:302.365333pt;}
.y2a{bottom:302.889333pt;}
.y58{bottom:304.288000pt;}
.y74{bottom:306.361333pt;}
.y8f{bottom:318.217333pt;}
.ya9{bottom:319.905333pt;}
.y65{bottom:328.418667pt;}
.y49{bottom:330.261333pt;}
.y29{bottom:330.784000pt;}
.y48{bottom:333.080000pt;}
.y73{bottom:334.257333pt;}
.y57{bottom:337.326667pt;}
.y8e{bottom:346.113333pt;}
.ya8{bottom:347.800000pt;}
.y64{bottom:356.313333pt;}
.y47{bottom:358.156000pt;}
.y28{bottom:358.680000pt;}
.y72{bottom:362.153333pt;}
.y56{bottom:365.222667pt;}
.y8d{bottom:374.009333pt;}
.ya7{bottom:375.696000pt;}
.y63{bottom:384.209333pt;}
.y46{bottom:386.052000pt;}
.y27{bottom:386.574667pt;}
.y55{bottom:393.117333pt;}
.y8c{bottom:401.904000pt;}
.ya6{bottom:403.590667pt;}
.y62{bottom:412.105333pt;}
.y26{bottom:414.470667pt;}
.y45{bottom:415.325333pt;}
.y71{bottom:427.462667pt;}
.y8b{bottom:429.800000pt;}
.ya5{bottom:431.486667pt;}
.y25{bottom:442.365333pt;}
.y44{bottom:443.221333pt;}
.y12{bottom:449.580000pt;}
.y54{bottom:454.280000pt;}
.y70{bottom:455.358667pt;}
.y8a{bottom:457.694667pt;}
.ya4{bottom:459.381333pt;}
.y61{bottom:460.276000pt;}
.y24{bottom:470.261333pt;}
.y43{bottom:471.116000pt;}
.y11{bottom:477.476000pt;}
.y53{bottom:482.176000pt;}
.y6f{bottom:483.253333pt;}
.y89{bottom:485.590667pt;}
.ya3{bottom:487.277333pt;}
.y23{bottom:498.156000pt;}
.y42{bottom:499.012000pt;}
.y10{bottom:505.372000pt;}
.y52{bottom:510.070667pt;}
.y6e{bottom:511.149333pt;}
.y88{bottom:513.485333pt;}
.ya2{bottom:515.172000pt;}
.y41{bottom:526.906667pt;}
.y22{bottom:529.796000pt;}
.yf{bottom:533.266667pt;}
.ya1{bottom:537.282667pt;}
.y51{bottom:537.966667pt;}
.y6d{bottom:539.044000pt;}
.y87{bottom:541.381333pt;}
.y40{bottom:554.802667pt;}
.y21{bottom:557.690667pt;}
.ye{bottom:561.162667pt;}
.y50{bottom:565.861333pt;}
.y6c{bottom:566.940000pt;}
.y86{bottom:569.276000pt;}
.ya0{bottom:570.962667pt;}
.y3f{bottom:582.698667pt;}
.y20{bottom:585.586667pt;}
.yd{bottom:589.057333pt;}
.y9f{bottom:593.074667pt;}
.y4f{bottom:593.757333pt;}
.y85{bottom:597.172000pt;}
.y3e{bottom:610.593333pt;}
.y1f{bottom:613.481333pt;}
.yc{bottom:616.953333pt;}
.y9e{bottom:620.969333pt;}
.y84{bottom:625.066667pt;}
.y78{bottom:628.364000pt;}
.y3d{bottom:638.489333pt;}
.y1e{bottom:641.377333pt;}
.yb{bottom:644.848000pt;}
.y9d{bottom:648.865333pt;}
.y77{bottom:656.260000pt;}
.y3c{bottom:666.384000pt;}
.y1d{bottom:669.272000pt;}
.y83{bottom:672.173333pt;}
.ya{bottom:672.744000pt;}
.y9c{bottom:676.760000pt;}
.y3b{bottom:694.280000pt;}
.y1c{bottom:697.168000pt;}
.y9{bottom:700.638667pt;}
.y9b{bottom:710.440000pt;}
.y60{bottom:722.174667pt;}
.y3a{bottom:723.553333pt;}
.y8{bottom:728.534667pt;}
.y1b{bottom:728.806667pt;}
.y82{bottom:732.237333pt;}
.y9a{bottom:738.336000pt;}
.y39{bottom:751.449333pt;}
.y7{bottom:756.429333pt;}
.y1a{bottom:756.702667pt;}
.y81{bottom:760.133333pt;}
.y99{bottom:766.230667pt;}
.y38{bottom:779.344000pt;}
.y19{bottom:784.598667pt;}
.y80{bottom:788.028000pt;}
.y98{bottom:788.341333pt;}
.y6{bottom:791.630667pt;}
.y37{bottom:807.240000pt;}
.y18{bottom:812.493333pt;}
.y7f{bottom:815.924000pt;}
.y97{bottom:822.021333pt;}
.y5{bottom:831.149333pt;}
.y36{bottom:835.134667pt;}
.y17{bottom:840.389333pt;}
.y7e{bottom:843.818667pt;}
.y96{bottom:849.917333pt;}
.y4{bottom:859.045333pt;}
.y35{bottom:863.030667pt;}
.y16{bottom:868.284000pt;}
.y7d{bottom:871.714667pt;}
.y95{bottom:872.028000pt;}
.y3{bottom:886.940000pt;}
.y34{bottom:890.925333pt;}
.y15{bottom:896.180000pt;}
.y7c{bottom:899.610667pt;}
.y94{bottom:905.708000pt;}
.y2{bottom:914.836000pt;}
.y33{bottom:918.821333pt;}
.yb3{bottom:924.605333pt;}
.y1{bottom:946.716000pt;}
.yb2{bottom:952.501333pt;}
.h6{height:27.895200pt;}
.hb{height:31.880400pt;}
.h5{height:43.636400pt;}
.h7{height:44.632747pt;}
.h1{height:45.015313pt;}
.h2{height:45.589163pt;}
.h4{height:47.820800pt;}
.ha{height:49.159782pt;}
.h8{height:55.016400pt;}
.h3{height:55.021733pt;}
.h9{height:59.095467pt;}
.h0{height:1056.000000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x1{left:96.000000pt;}
.x9{left:101.645333pt;}
.xa{left:107.954667pt;}
.x4{left:115.925333pt;}
.x2{left:144.000000pt;}
.x6{left:158.952000pt;}
.x5{left:301.860000pt;}
.xb{left:391.226667pt;}
.x3{left:395.128000pt;}
.x8{left:525.653333pt;}
.x7{left:673.798667pt;}
}




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