
    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_8206a2778dbf165ea8c953b6.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.025000;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_2811b2d9e26ddb816507638a.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.006000;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_87c08d01bfc7d721ad46e299.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.930000;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_9553d0c4c1303c0a166e7259.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.184000;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_abbc42dcdf76b3217ff28507.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.739000;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_577371dd7213bd89232fe005.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.006000;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_03cce5626203fc360e3346e5.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.025000;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_a427b40de35a0b93783863c0.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.126000;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_dedad7ddcb44373d642bc47b.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.998000;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_d4296979a7d8d0920d7f5de9.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.025000;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_b7df85843415deae6c695b57.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.735000;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_fe64656fe1094fbbe03f20db.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.770000;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_ad4caaa17017cba4e91a629c.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.740000;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:ffe;src:url('chunks/assets/font_b5598c98c643e57fa5cbbeec.woff2')format("woff");}.ffe{font-family:ffe;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:fff;src:url('chunks/assets/font_6d3d5d14fc774810db54d879.woff2')format("woff");}.fff{font-family:fff;line-height:1.005000;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;}
.v1{vertical-align:28.128000px;}
.ls25{letter-spacing:-8.820000px;}
.ls1a{letter-spacing:-6.741000px;}
.ls15{letter-spacing:-1.197000px;}
.ls16{letter-spacing:-1.134000px;}
.lsc{letter-spacing:-1.008000px;}
.ls14{letter-spacing:-0.945000px;}
.ls2a{letter-spacing:-0.882000px;}
.ls29{letter-spacing:-0.819000px;}
.ls5{letter-spacing:-0.741000px;}
.ls17{letter-spacing:-0.693000px;}
.ls1d{letter-spacing:-0.630000px;}
.ls20{letter-spacing:-0.567000px;}
.ls1b{letter-spacing:-0.504000px;}
.ls6{letter-spacing:-0.456000px;}
.ls18{letter-spacing:-0.441000px;}
.lsb{letter-spacing:-0.378000px;}
.ls12{letter-spacing:-0.315000px;}
.ls27{letter-spacing:-0.252000px;}
.lsd{letter-spacing:-0.189000px;}
.ls26{letter-spacing:-0.126000px;}
.ls21{letter-spacing:-0.063000px;}
.ls4{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.057000px;}
.ls11{letter-spacing:0.063000px;}
.ls23{letter-spacing:0.094500px;}
.ls2{letter-spacing:0.114000px;}
.ls1e{letter-spacing:0.126000px;}
.ls10{letter-spacing:0.189000px;}
.lsa{letter-spacing:0.252000px;}
.ls19{letter-spacing:0.283500px;}
.ls3{letter-spacing:0.313500px;}
.ls8{letter-spacing:0.315000px;}
.ls13{letter-spacing:0.378000px;}
.ls0{letter-spacing:0.399000px;}
.ls1c{letter-spacing:0.409500px;}
.ls1f{letter-spacing:0.504000px;}
.ls24{letter-spacing:0.567000px;}
.ls28{letter-spacing:0.819000px;}
.ls9{letter-spacing:0.945000px;}
.lse{letter-spacing:0.960000px;}
.ls7{letter-spacing:1.440000px;}
.lsf{letter-spacing:1.920000px;}
.ls22{letter-spacing:1.953000px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1{word-spacing:-18.720000px;}
.wse{word-spacing:-18.396000px;}
.ws80{word-spacing:-17.955000px;}
.ws85{word-spacing:-17.829000px;}
.ws8c{word-spacing:-17.766000px;}
.ws63{word-spacing:-17.640000px;}
.ws81{word-spacing:-17.514000px;}
.wsf{word-spacing:-17.451000px;}
.ws10{word-spacing:-17.262000px;}
.ws87{word-spacing:-17.199000px;}
.ws7f{word-spacing:-17.160000px;}
.ws59{word-spacing:-17.136000px;}
.ws8a{word-spacing:-16.947000px;}
.ws8b{word-spacing:-16.569000px;}
.ws47{word-spacing:-16.506000px;}
.ws2{word-spacing:-14.820000px;}
.ws0{word-spacing:-12.480000px;}
.ws1c{word-spacing:-3.906000px;}
.ws12{word-spacing:-3.528000px;}
.ws1b{word-spacing:-3.465000px;}
.ws5a{word-spacing:-3.339000px;}
.ws3a{word-spacing:-3.150000px;}
.ws38{word-spacing:-3.087000px;}
.ws6a{word-spacing:-3.024000px;}
.ws79{word-spacing:-2.961000px;}
.ws5c{word-spacing:-2.772000px;}
.ws8f{word-spacing:-2.709000px;}
.ws8e{word-spacing:-2.646000px;}
.ws2f{word-spacing:-2.583000px;}
.ws5f{word-spacing:-2.520000px;}
.ws74{word-spacing:-2.457000px;}
.ws76{word-spacing:-2.394000px;}
.ws22{word-spacing:-2.331000px;}
.ws41{word-spacing:-2.268000px;}
.ws8{word-spacing:-2.223000px;}
.ws61{word-spacing:-2.205000px;}
.ws42{word-spacing:-2.079000px;}
.ws64{word-spacing:-2.016000px;}
.ws82{word-spacing:-1.953000px;}
.ws39{word-spacing:-1.827000px;}
.ws78{word-spacing:-1.764000px;}
.ws17{word-spacing:-1.701000px;}
.ws15{word-spacing:-1.638000px;}
.ws70{word-spacing:-1.512000px;}
.wsc{word-spacing:-1.482000px;}
.ws54{word-spacing:-1.449000px;}
.ws11{word-spacing:-1.440000px;}
.ws21{word-spacing:-1.386000px;}
.ws7a{word-spacing:-1.323000px;}
.ws60{word-spacing:-1.260000px;}
.ws36{word-spacing:-1.197000px;}
.ws51{word-spacing:-1.071000px;}
.ws3f{word-spacing:-1.008000px;}
.ws32{word-spacing:-0.960000px;}
.ws16{word-spacing:-0.882000px;}
.ws43{word-spacing:-0.819000px;}
.ws1a{word-spacing:-0.756000px;}
.ws4b{word-spacing:-0.693000px;}
.ws20{word-spacing:-0.630000px;}
.ws18{word-spacing:-0.567000px;}
.ws27{word-spacing:-0.504000px;}
.ws5e{word-spacing:-0.441000px;}
.ws5{word-spacing:-0.399000px;}
.ws75{word-spacing:-0.378000px;}
.wsb{word-spacing:-0.342000px;}
.ws28{word-spacing:-0.315000px;}
.ws48{word-spacing:-0.252000px;}
.ws26{word-spacing:-0.189000px;}
.ws53{word-spacing:-0.126000px;}
.wsa{word-spacing:-0.114000px;}
.ws86{word-spacing:-0.063000px;}
.ws4{word-spacing:-0.057000px;}
.ws31{word-spacing:-0.053550px;}
.ws6f{word-spacing:-0.048000px;}
.ws3{word-spacing:0.000000px;}
.ws6d{word-spacing:0.063000px;}
.ws3b{word-spacing:0.126000px;}
.ws68{word-spacing:0.189000px;}
.ws4c{word-spacing:0.252000px;}
.ws5b{word-spacing:0.315000px;}
.ws7d{word-spacing:0.378000px;}
.ws13{word-spacing:0.441000px;}
.ws6c{word-spacing:0.504000px;}
.ws1d{word-spacing:0.567000px;}
.ws65{word-spacing:0.630000px;}
.ws1f{word-spacing:0.693000px;}
.ws7{word-spacing:0.741000px;}
.ws33{word-spacing:0.756000px;}
.ws57{word-spacing:0.819000px;}
.ws2b{word-spacing:0.882000px;}
.ws44{word-spacing:0.945000px;}
.ws29{word-spacing:1.008000px;}
.ws2d{word-spacing:1.071000px;}
.ws40{word-spacing:1.134000px;}
.ws58{word-spacing:1.197000px;}
.ws35{word-spacing:1.260000px;}
.ws24{word-spacing:1.323000px;}
.ws4a{word-spacing:1.386000px;}
.ws2e{word-spacing:1.449000px;}
.ws56{word-spacing:1.512000px;}
.ws14{word-spacing:1.575000px;}
.ws30{word-spacing:1.764000px;}
.ws4d{word-spacing:1.827000px;}
.ws66{word-spacing:1.890000px;}
.ws69{word-spacing:1.953000px;}
.ws1e{word-spacing:2.016000px;}
.ws2c{word-spacing:2.079000px;}
.ws49{word-spacing:2.142000px;}
.ws83{word-spacing:2.205000px;}
.ws7c{word-spacing:2.268000px;}
.ws3d{word-spacing:2.331000px;}
.ws2a{word-spacing:2.394000px;}
.ws3e{word-spacing:2.646000px;}
.ws67{word-spacing:2.709000px;}
.ws34{word-spacing:2.835000px;}
.ws52{word-spacing:2.898000px;}
.ws8d{word-spacing:2.961000px;}
.ws73{word-spacing:3.024000px;}
.ws72{word-spacing:3.087000px;}
.ws23{word-spacing:3.150000px;}
.ws4f{word-spacing:3.339000px;}
.ws50{word-spacing:3.402000px;}
.ws37{word-spacing:3.465000px;}
.ws3c{word-spacing:3.528000px;}
.ws6{word-spacing:3.534000px;}
.ws9{word-spacing:3.591000px;}
.ws71{word-spacing:3.654000px;}
.ws55{word-spacing:3.717000px;}
.ws77{word-spacing:3.843000px;}
.ws25{word-spacing:3.906000px;}
.ws4e{word-spacing:3.969000px;}
.ws7e{word-spacing:4.032000px;}
.ws5d{word-spacing:4.095000px;}
.ws19{word-spacing:4.158000px;}
.ws45{word-spacing:4.221000px;}
.ws6b{word-spacing:6.741000px;}
.ws89{word-spacing:8.820000px;}
.ws88{word-spacing:9.450000px;}
.ws46{word-spacing:940.848000px;}
.ws7b{word-spacing:940.944000px;}
.ws84{word-spacing:940.992000px;}
.ws6e{word-spacing:941.088000px;}
.wsd{word-spacing:941.376000px;}
.ws62{word-spacing:943.632000px;}
._7{margin-left:-18.720000px;}
._c{margin-left:-17.153400px;}
._e{margin-left:-10.363500px;}
._d{margin-left:-9.332700px;}
._9{margin-left:-7.692300px;}
._8{margin-left:-6.463800px;}
._a{margin-left:-5.010300px;}
._5{margin-left:-3.726900px;}
._0{margin-left:-2.404800px;}
._1{margin-left:-1.207200px;}
._4{width:1.715700px;}
._2{width:2.770200px;}
._3{width:3.944400px;}
._f{width:6.123600px;}
._11{width:8.190000px;}
._b{width:15.833400px;}
._6{width:17.280000px;}
._10{width:85.656900px;}
.fc1{color:rgb(100,99,99);}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:48.000000px;}
.fs7{font-size:53.550000px;}
.fs1{font-size:54.000000px;}
.fs4{font-size:57.000000px;}
.fs5{font-size:63.000000px;}
.fs6{font-size:66.000000px;}
.fs3{font-size:72.000000px;}
.fs2{font-size:120.000000px;}
.y0{bottom:0.000000px;}
.y2c{bottom:56.468250px;}
.y3{bottom:56.473650px;}
.y2b{bottom:70.868250px;}
.y2{bottom:70.873650px;}
.y5{bottom:78.236250px;}
.y53{bottom:85.268250px;}
.y1{bottom:85.273650px;}
.ya0{bottom:144.299100px;}
.ye9{bottom:145.108650px;}
.y7c{bottom:145.151400px;}
.y9c{bottom:145.151550px;}
.y52{bottom:145.151700px;}
.y9f{bottom:158.699100px;}
.y7b{bottom:167.201400px;}
.y9b{bottom:167.201550px;}
.y51{bottom:167.201700px;}
.ye8{bottom:167.662650px;}
.y9e{bottom:180.323100px;}
.y7a{bottom:189.251400px;}
.y9a{bottom:189.251550px;}
.y50{bottom:189.251700px;}
.ye7{bottom:190.216650px;}
.y9d{bottom:194.723100px;}
.y29{bottom:200.305200px;}
.y79{bottom:211.301400px;}
.y99{bottom:211.301550px;}
.y4f{bottom:211.301700px;}
.ye6{bottom:212.770650px;}
.y28{bottom:217.405200px;}
.y78{bottom:233.351400px;}
.y98{bottom:233.351550px;}
.y4e{bottom:233.351700px;}
.ye5{bottom:235.324650px;}
.y27{bottom:238.751700px;}
.y77{bottom:255.401400px;}
.y97{bottom:255.401550px;}
.y4d{bottom:255.401700px;}
.y26{bottom:255.851700px;}
.ye4{bottom:257.878650px;}
.y25{bottom:272.951700px;}
.y76{bottom:277.451400px;}
.y96{bottom:277.451550px;}
.y4c{bottom:277.451700px;}
.ye3{bottom:280.432650px;}
.y24{bottom:290.051700px;}
.y75{bottom:299.501400px;}
.y95{bottom:299.501550px;}
.y4b{bottom:299.501700px;}
.ye2{bottom:302.986650px;}
.y23{bottom:307.151700px;}
.y74{bottom:321.551400px;}
.yad{bottom:321.551550px;}
.y4a{bottom:321.551700px;}
.y22{bottom:324.251700px;}
.ye1{bottom:325.540650px;}
.y21{bottom:341.351700px;}
.y73{bottom:343.601400px;}
.yac{bottom:343.601550px;}
.y49{bottom:343.601700px;}
.ye0{bottom:348.094650px;}
.y20{bottom:358.451700px;}
.y72{bottom:365.651400px;}
.yab{bottom:365.651550px;}
.y48{bottom:365.651700px;}
.ydf{bottom:370.648650px;}
.y1f{bottom:375.551700px;}
.y71{bottom:387.701400px;}
.y94{bottom:387.701550px;}
.y47{bottom:387.701700px;}
.y1e{bottom:392.651700px;}
.yde{bottom:393.202650px;}
.y70{bottom:409.751400px;}
.y93{bottom:409.751550px;}
.y1d{bottom:409.751700px;}
.ydd{bottom:415.756650px;}
.y6f{bottom:431.801400px;}
.y92{bottom:431.801550px;}
.y1c{bottom:431.801700px;}
.ydc{bottom:438.310650px;}
.ybd{bottom:453.851400px;}
.y91{bottom:453.851550px;}
.y46{bottom:453.851700px;}
.ydb{bottom:460.864650px;}
.y6e{bottom:475.901400px;}
.y90{bottom:475.901550px;}
.y45{bottom:475.901700px;}
.yda{bottom:483.418650px;}
.y8f{bottom:497.951550px;}
.y44{bottom:497.951700px;}
.yd9{bottom:505.898250px;}
.y1b{bottom:513.955200px;}
.y6d{bottom:520.001400px;}
.yaa{bottom:520.001550px;}
.y43{bottom:520.001700px;}
.yd8{bottom:528.452250px;}
.y1a{bottom:531.055200px;}
.y6c{bottom:542.051400px;}
.y8e{bottom:542.051550px;}
.y42{bottom:542.051700px;}
.yd7{bottom:551.006250px;}
.y19{bottom:552.401700px;}
.y6b{bottom:564.101400px;}
.y8d{bottom:564.101550px;}
.y41{bottom:564.101700px;}
.y18{bottom:569.501700px;}
.yd6{bottom:573.560250px;}
.y6a{bottom:586.151400px;}
.y8c{bottom:586.151550px;}
.y40{bottom:586.151700px;}
.y17{bottom:586.601700px;}
.yb9{bottom:587.390400px;}
.yd5{bottom:596.114250px;}
.yb8{bottom:601.790400px;}
.y16{bottom:603.701700px;}
.y69{bottom:608.201400px;}
.y8b{bottom:608.201550px;}
.y3f{bottom:608.201700px;}
.yb7{bottom:616.190400px;}
.yd4{bottom:618.668250px;}
.y15{bottom:620.801700px;}
.ya9{bottom:630.200700px;}
.y68{bottom:630.251400px;}
.y8a{bottom:630.251550px;}
.y3e{bottom:630.251700px;}
.yb6{bottom:630.590400px;}
.y14{bottom:637.901700px;}
.yd3{bottom:641.222250px;}
.ya8{bottom:644.600700px;}
.yb5{bottom:644.990400px;}
.y67{bottom:652.301400px;}
.y89{bottom:652.301550px;}
.y3d{bottom:652.301700px;}
.y13{bottom:655.001700px;}
.ya7{bottom:659.000700px;}
.yb4{bottom:659.390400px;}
.yd2{bottom:663.776250px;}
.y12{bottom:672.101700px;}
.ya6{bottom:673.400700px;}
.y66{bottom:674.351400px;}
.y88{bottom:674.351550px;}
.y3c{bottom:674.351700px;}
.yb3{bottom:681.014400px;}
.yd1{bottom:686.330250px;}
.y11{bottom:689.201700px;}
.ya5{bottom:695.024700px;}
.yb2{bottom:695.414400px;}
.y65{bottom:696.401400px;}
.ybc{bottom:696.401550px;}
.y3b{bottom:696.401700px;}
.y10{bottom:706.301700px;}
.yd0{bottom:708.884250px;}
.ya4{bottom:709.424700px;}
.yb1{bottom:709.814400px;}
.y64{bottom:718.451400px;}
.y87{bottom:718.451550px;}
.y3a{bottom:718.451700px;}
.yf{bottom:723.401700px;}
.ya3{bottom:723.824700px;}
.yb0{bottom:724.214400px;}
.ycf{bottom:731.438250px;}
.ya2{bottom:738.224700px;}
.yaf{bottom:738.614400px;}
.y63{bottom:740.501400px;}
.y86{bottom:740.501550px;}
.ye{bottom:740.501700px;}
.ya1{bottom:752.624700px;}
.yae{bottom:753.014400px;}
.yce{bottom:753.992250px;}
.y62{bottom:762.551400px;}
.y85{bottom:762.551550px;}
.yd{bottom:762.551700px;}
.ycd{bottom:776.546250px;}
.y61{bottom:784.601400px;}
.y84{bottom:784.601550px;}
.y39{bottom:784.601700px;}
.ycc{bottom:799.100250px;}
.y60{bottom:806.651400px;}
.y83{bottom:806.651550px;}
.y38{bottom:806.651700px;}
.ycb{bottom:821.654250px;}
.y5f{bottom:828.701400px;}
.y82{bottom:828.701550px;}
.yc{bottom:828.701700px;}
.yca{bottom:844.208250px;}
.y5e{bottom:850.751400px;}
.y81{bottom:850.751550px;}
.y37{bottom:850.751700px;}
.yc9{bottom:866.762250px;}
.y5d{bottom:872.801400px;}
.ybb{bottom:872.801550px;}
.y36{bottom:872.801700px;}
.yb{bottom:889.001700px;}
.yc8{bottom:889.316250px;}
.y5c{bottom:894.851400px;}
.y7e{bottom:894.851550px;}
.y35{bottom:894.851700px;}
.yc7{bottom:911.870250px;}
.y80{bottom:916.901550px;}
.y34{bottom:916.901700px;}
.ya{bottom:925.001700px;}
.yc6{bottom:934.424250px;}
.y5b{bottom:938.951550px;}
.y33{bottom:938.951700px;}
.yc5{bottom:956.978250px;}
.y7f{bottom:961.001550px;}
.y9{bottom:961.001700px;}
.yc4{bottom:979.532250px;}
.y5a{bottom:983.051550px;}
.y32{bottom:983.051700px;}
.yc3{bottom:1002.086250px;}
.y59{bottom:1005.101550px;}
.y31{bottom:1005.101700px;}
.y8{bottom:1021.301700px;}
.yc2{bottom:1024.640250px;}
.y58{bottom:1027.151550px;}
.y30{bottom:1027.151700px;}
.yc1{bottom:1047.194250px;}
.y57{bottom:1049.201550px;}
.y2f{bottom:1049.201700px;}
.y7{bottom:1057.301700px;}
.yc0{bottom:1069.739700px;}
.y56{bottom:1071.251550px;}
.y2e{bottom:1071.251700px;}
.ybf{bottom:1092.293700px;}
.y55{bottom:1093.301550px;}
.y6{bottom:1093.301700px;}
.ybe{bottom:1114.847700px;}
.yba{bottom:1115.351550px;}
.y7d{bottom:1115.351700px;}
.y54{bottom:1137.401550px;}
.y2d{bottom:1137.401700px;}
.y4{bottom:1176.120000px;}
.y2a{bottom:1186.227300px;}
.hf{height:36.768000px;}
.h2{height:37.584000px;}
.h3{height:42.282000px;}
.h8{height:43.662000px;}
.h5{height:45.312000px;}
.he{height:45.927000px;}
.hd{height:49.329000px;}
.hc{height:51.678000px;}
.h6{height:52.488000px;}
.h7{height:53.808000px;}
.hb{height:55.377000px;}
.h9{height:56.376000px;}
.ha{height:65.712000px;}
.h4{height:91.920000px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x6{left:83.951700px;}
.x4{left:85.039350px;}
.xd{left:106.552350px;}
.xf{left:107.738400px;}
.xb{left:126.376200px;}
.x7{left:127.559100px;}
.x10{left:147.407250px;}
.xa{left:149.103450px;}
.x11{left:150.242250px;}
.xc{left:168.194250px;}
.x2{left:319.970250px;}
.x1{left:343.442250px;}
.x3{left:360.038250px;}
.x8{left:362.495100px;}
.x9{left:402.563100px;}
.x5{left:745.710600px;}
.xe{left:747.714600px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:25.002667pt;}
.ls25{letter-spacing:-7.840000pt;}
.ls1a{letter-spacing:-5.992000pt;}
.ls15{letter-spacing:-1.064000pt;}
.ls16{letter-spacing:-1.008000pt;}
.lsc{letter-spacing:-0.896000pt;}
.ls14{letter-spacing:-0.840000pt;}
.ls2a{letter-spacing:-0.784000pt;}
.ls29{letter-spacing:-0.728000pt;}
.ls5{letter-spacing:-0.658667pt;}
.ls17{letter-spacing:-0.616000pt;}
.ls1d{letter-spacing:-0.560000pt;}
.ls20{letter-spacing:-0.504000pt;}
.ls1b{letter-spacing:-0.448000pt;}
.ls6{letter-spacing:-0.405333pt;}
.ls18{letter-spacing:-0.392000pt;}
.lsb{letter-spacing:-0.336000pt;}
.ls12{letter-spacing:-0.280000pt;}
.ls27{letter-spacing:-0.224000pt;}
.lsd{letter-spacing:-0.168000pt;}
.ls26{letter-spacing:-0.112000pt;}
.ls21{letter-spacing:-0.056000pt;}
.ls4{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.050667pt;}
.ls11{letter-spacing:0.056000pt;}
.ls23{letter-spacing:0.084000pt;}
.ls2{letter-spacing:0.101333pt;}
.ls1e{letter-spacing:0.112000pt;}
.ls10{letter-spacing:0.168000pt;}
.lsa{letter-spacing:0.224000pt;}
.ls19{letter-spacing:0.252000pt;}
.ls3{letter-spacing:0.278667pt;}
.ls8{letter-spacing:0.280000pt;}
.ls13{letter-spacing:0.336000pt;}
.ls0{letter-spacing:0.354667pt;}
.ls1c{letter-spacing:0.364000pt;}
.ls1f{letter-spacing:0.448000pt;}
.ls24{letter-spacing:0.504000pt;}
.ls28{letter-spacing:0.728000pt;}
.ls9{letter-spacing:0.840000pt;}
.lse{letter-spacing:0.853333pt;}
.ls7{letter-spacing:1.280000pt;}
.lsf{letter-spacing:1.706667pt;}
.ls22{letter-spacing:1.736000pt;}
.ws1{word-spacing:-16.640000pt;}
.wse{word-spacing:-16.352000pt;}
.ws80{word-spacing:-15.960000pt;}
.ws85{word-spacing:-15.848000pt;}
.ws8c{word-spacing:-15.792000pt;}
.ws63{word-spacing:-15.680000pt;}
.ws81{word-spacing:-15.568000pt;}
.wsf{word-spacing:-15.512000pt;}
.ws10{word-spacing:-15.344000pt;}
.ws87{word-spacing:-15.288000pt;}
.ws7f{word-spacing:-15.253333pt;}
.ws59{word-spacing:-15.232000pt;}
.ws8a{word-spacing:-15.064000pt;}
.ws8b{word-spacing:-14.728000pt;}
.ws47{word-spacing:-14.672000pt;}
.ws2{word-spacing:-13.173333pt;}
.ws0{word-spacing:-11.093333pt;}
.ws1c{word-spacing:-3.472000pt;}
.ws12{word-spacing:-3.136000pt;}
.ws1b{word-spacing:-3.080000pt;}
.ws5a{word-spacing:-2.968000pt;}
.ws3a{word-spacing:-2.800000pt;}
.ws38{word-spacing:-2.744000pt;}
.ws6a{word-spacing:-2.688000pt;}
.ws79{word-spacing:-2.632000pt;}
.ws5c{word-spacing:-2.464000pt;}
.ws8f{word-spacing:-2.408000pt;}
.ws8e{word-spacing:-2.352000pt;}
.ws2f{word-spacing:-2.296000pt;}
.ws5f{word-spacing:-2.240000pt;}
.ws74{word-spacing:-2.184000pt;}
.ws76{word-spacing:-2.128000pt;}
.ws22{word-spacing:-2.072000pt;}
.ws41{word-spacing:-2.016000pt;}
.ws8{word-spacing:-1.976000pt;}
.ws61{word-spacing:-1.960000pt;}
.ws42{word-spacing:-1.848000pt;}
.ws64{word-spacing:-1.792000pt;}
.ws82{word-spacing:-1.736000pt;}
.ws39{word-spacing:-1.624000pt;}
.ws78{word-spacing:-1.568000pt;}
.ws17{word-spacing:-1.512000pt;}
.ws15{word-spacing:-1.456000pt;}
.ws70{word-spacing:-1.344000pt;}
.wsc{word-spacing:-1.317333pt;}
.ws54{word-spacing:-1.288000pt;}
.ws11{word-spacing:-1.280000pt;}
.ws21{word-spacing:-1.232000pt;}
.ws7a{word-spacing:-1.176000pt;}
.ws60{word-spacing:-1.120000pt;}
.ws36{word-spacing:-1.064000pt;}
.ws51{word-spacing:-0.952000pt;}
.ws3f{word-spacing:-0.896000pt;}
.ws32{word-spacing:-0.853333pt;}
.ws16{word-spacing:-0.784000pt;}
.ws43{word-spacing:-0.728000pt;}
.ws1a{word-spacing:-0.672000pt;}
.ws4b{word-spacing:-0.616000pt;}
.ws20{word-spacing:-0.560000pt;}
.ws18{word-spacing:-0.504000pt;}
.ws27{word-spacing:-0.448000pt;}
.ws5e{word-spacing:-0.392000pt;}
.ws5{word-spacing:-0.354667pt;}
.ws75{word-spacing:-0.336000pt;}
.wsb{word-spacing:-0.304000pt;}
.ws28{word-spacing:-0.280000pt;}
.ws48{word-spacing:-0.224000pt;}
.ws26{word-spacing:-0.168000pt;}
.ws53{word-spacing:-0.112000pt;}
.wsa{word-spacing:-0.101333pt;}
.ws86{word-spacing:-0.056000pt;}
.ws4{word-spacing:-0.050667pt;}
.ws31{word-spacing:-0.047600pt;}
.ws6f{word-spacing:-0.042667pt;}
.ws3{word-spacing:0.000000pt;}
.ws6d{word-spacing:0.056000pt;}
.ws3b{word-spacing:0.112000pt;}
.ws68{word-spacing:0.168000pt;}
.ws4c{word-spacing:0.224000pt;}
.ws5b{word-spacing:0.280000pt;}
.ws7d{word-spacing:0.336000pt;}
.ws13{word-spacing:0.392000pt;}
.ws6c{word-spacing:0.448000pt;}
.ws1d{word-spacing:0.504000pt;}
.ws65{word-spacing:0.560000pt;}
.ws1f{word-spacing:0.616000pt;}
.ws7{word-spacing:0.658667pt;}
.ws33{word-spacing:0.672000pt;}
.ws57{word-spacing:0.728000pt;}
.ws2b{word-spacing:0.784000pt;}
.ws44{word-spacing:0.840000pt;}
.ws29{word-spacing:0.896000pt;}
.ws2d{word-spacing:0.952000pt;}
.ws40{word-spacing:1.008000pt;}
.ws58{word-spacing:1.064000pt;}
.ws35{word-spacing:1.120000pt;}
.ws24{word-spacing:1.176000pt;}
.ws4a{word-spacing:1.232000pt;}
.ws2e{word-spacing:1.288000pt;}
.ws56{word-spacing:1.344000pt;}
.ws14{word-spacing:1.400000pt;}
.ws30{word-spacing:1.568000pt;}
.ws4d{word-spacing:1.624000pt;}
.ws66{word-spacing:1.680000pt;}
.ws69{word-spacing:1.736000pt;}
.ws1e{word-spacing:1.792000pt;}
.ws2c{word-spacing:1.848000pt;}
.ws49{word-spacing:1.904000pt;}
.ws83{word-spacing:1.960000pt;}
.ws7c{word-spacing:2.016000pt;}
.ws3d{word-spacing:2.072000pt;}
.ws2a{word-spacing:2.128000pt;}
.ws3e{word-spacing:2.352000pt;}
.ws67{word-spacing:2.408000pt;}
.ws34{word-spacing:2.520000pt;}
.ws52{word-spacing:2.576000pt;}
.ws8d{word-spacing:2.632000pt;}
.ws73{word-spacing:2.688000pt;}
.ws72{word-spacing:2.744000pt;}
.ws23{word-spacing:2.800000pt;}
.ws4f{word-spacing:2.968000pt;}
.ws50{word-spacing:3.024000pt;}
.ws37{word-spacing:3.080000pt;}
.ws3c{word-spacing:3.136000pt;}
.ws6{word-spacing:3.141333pt;}
.ws9{word-spacing:3.192000pt;}
.ws71{word-spacing:3.248000pt;}
.ws55{word-spacing:3.304000pt;}
.ws77{word-spacing:3.416000pt;}
.ws25{word-spacing:3.472000pt;}
.ws4e{word-spacing:3.528000pt;}
.ws7e{word-spacing:3.584000pt;}
.ws5d{word-spacing:3.640000pt;}
.ws19{word-spacing:3.696000pt;}
.ws45{word-spacing:3.752000pt;}
.ws6b{word-spacing:5.992000pt;}
.ws89{word-spacing:7.840000pt;}
.ws88{word-spacing:8.400000pt;}
.ws46{word-spacing:836.309333pt;}
.ws7b{word-spacing:836.394667pt;}
.ws84{word-spacing:836.437333pt;}
.ws6e{word-spacing:836.522667pt;}
.wsd{word-spacing:836.778667pt;}
.ws62{word-spacing:838.784000pt;}
._7{margin-left:-16.640000pt;}
._c{margin-left:-15.247467pt;}
._e{margin-left:-9.212000pt;}
._d{margin-left:-8.295733pt;}
._9{margin-left:-6.837600pt;}
._8{margin-left:-5.745600pt;}
._a{margin-left:-4.453600pt;}
._5{margin-left:-3.312800pt;}
._0{margin-left:-2.137600pt;}
._1{margin-left:-1.073067pt;}
._4{width:1.525067pt;}
._2{width:2.462400pt;}
._3{width:3.506133pt;}
._f{width:5.443200pt;}
._11{width:7.280000pt;}
._b{width:14.074133pt;}
._6{width:15.360000pt;}
._10{width:76.139467pt;}
.fs0{font-size:42.666667pt;}
.fs7{font-size:47.600000pt;}
.fs1{font-size:48.000000pt;}
.fs4{font-size:50.666667pt;}
.fs5{font-size:56.000000pt;}
.fs6{font-size:58.666667pt;}
.fs3{font-size:64.000000pt;}
.fs2{font-size:106.666667pt;}
.y0{bottom:0.000000pt;}
.y2c{bottom:50.194000pt;}
.y3{bottom:50.198800pt;}
.y2b{bottom:62.994000pt;}
.y2{bottom:62.998800pt;}
.y5{bottom:69.543333pt;}
.y53{bottom:75.794000pt;}
.y1{bottom:75.798800pt;}
.ya0{bottom:128.265867pt;}
.ye9{bottom:128.985467pt;}
.y7c{bottom:129.023467pt;}
.y9c{bottom:129.023600pt;}
.y52{bottom:129.023733pt;}
.y9f{bottom:141.065867pt;}
.y7b{bottom:148.623467pt;}
.y9b{bottom:148.623600pt;}
.y51{bottom:148.623733pt;}
.ye8{bottom:149.033467pt;}
.y9e{bottom:160.287200pt;}
.y7a{bottom:168.223467pt;}
.y9a{bottom:168.223600pt;}
.y50{bottom:168.223733pt;}
.ye7{bottom:169.081467pt;}
.y9d{bottom:173.087200pt;}
.y29{bottom:178.049067pt;}
.y79{bottom:187.823467pt;}
.y99{bottom:187.823600pt;}
.y4f{bottom:187.823733pt;}
.ye6{bottom:189.129467pt;}
.y28{bottom:193.249067pt;}
.y78{bottom:207.423467pt;}
.y98{bottom:207.423600pt;}
.y4e{bottom:207.423733pt;}
.ye5{bottom:209.177467pt;}
.y27{bottom:212.223733pt;}
.y77{bottom:227.023467pt;}
.y97{bottom:227.023600pt;}
.y4d{bottom:227.023733pt;}
.y26{bottom:227.423733pt;}
.ye4{bottom:229.225467pt;}
.y25{bottom:242.623733pt;}
.y76{bottom:246.623467pt;}
.y96{bottom:246.623600pt;}
.y4c{bottom:246.623733pt;}
.ye3{bottom:249.273467pt;}
.y24{bottom:257.823733pt;}
.y75{bottom:266.223467pt;}
.y95{bottom:266.223600pt;}
.y4b{bottom:266.223733pt;}
.ye2{bottom:269.321467pt;}
.y23{bottom:273.023733pt;}
.y74{bottom:285.823467pt;}
.yad{bottom:285.823600pt;}
.y4a{bottom:285.823733pt;}
.y22{bottom:288.223733pt;}
.ye1{bottom:289.369467pt;}
.y21{bottom:303.423733pt;}
.y73{bottom:305.423467pt;}
.yac{bottom:305.423600pt;}
.y49{bottom:305.423733pt;}
.ye0{bottom:309.417467pt;}
.y20{bottom:318.623733pt;}
.y72{bottom:325.023467pt;}
.yab{bottom:325.023600pt;}
.y48{bottom:325.023733pt;}
.ydf{bottom:329.465467pt;}
.y1f{bottom:333.823733pt;}
.y71{bottom:344.623467pt;}
.y94{bottom:344.623600pt;}
.y47{bottom:344.623733pt;}
.y1e{bottom:349.023733pt;}
.yde{bottom:349.513467pt;}
.y70{bottom:364.223467pt;}
.y93{bottom:364.223600pt;}
.y1d{bottom:364.223733pt;}
.ydd{bottom:369.561467pt;}
.y6f{bottom:383.823467pt;}
.y92{bottom:383.823600pt;}
.y1c{bottom:383.823733pt;}
.ydc{bottom:389.609467pt;}
.ybd{bottom:403.423467pt;}
.y91{bottom:403.423600pt;}
.y46{bottom:403.423733pt;}
.ydb{bottom:409.657467pt;}
.y6e{bottom:423.023467pt;}
.y90{bottom:423.023600pt;}
.y45{bottom:423.023733pt;}
.yda{bottom:429.705467pt;}
.y8f{bottom:442.623600pt;}
.y44{bottom:442.623733pt;}
.yd9{bottom:449.687333pt;}
.y1b{bottom:456.849067pt;}
.y6d{bottom:462.223467pt;}
.yaa{bottom:462.223600pt;}
.y43{bottom:462.223733pt;}
.yd8{bottom:469.735333pt;}
.y1a{bottom:472.049067pt;}
.y6c{bottom:481.823467pt;}
.y8e{bottom:481.823600pt;}
.y42{bottom:481.823733pt;}
.yd7{bottom:489.783333pt;}
.y19{bottom:491.023733pt;}
.y6b{bottom:501.423467pt;}
.y8d{bottom:501.423600pt;}
.y41{bottom:501.423733pt;}
.y18{bottom:506.223733pt;}
.yd6{bottom:509.831333pt;}
.y6a{bottom:521.023467pt;}
.y8c{bottom:521.023600pt;}
.y40{bottom:521.023733pt;}
.y17{bottom:521.423733pt;}
.yb9{bottom:522.124800pt;}
.yd5{bottom:529.879333pt;}
.yb8{bottom:534.924800pt;}
.y16{bottom:536.623733pt;}
.y69{bottom:540.623467pt;}
.y8b{bottom:540.623600pt;}
.y3f{bottom:540.623733pt;}
.yb7{bottom:547.724800pt;}
.yd4{bottom:549.927333pt;}
.y15{bottom:551.823733pt;}
.ya9{bottom:560.178400pt;}
.y68{bottom:560.223467pt;}
.y8a{bottom:560.223600pt;}
.y3e{bottom:560.223733pt;}
.yb6{bottom:560.524800pt;}
.y14{bottom:567.023733pt;}
.yd3{bottom:569.975333pt;}
.ya8{bottom:572.978400pt;}
.yb5{bottom:573.324800pt;}
.y67{bottom:579.823467pt;}
.y89{bottom:579.823600pt;}
.y3d{bottom:579.823733pt;}
.y13{bottom:582.223733pt;}
.ya7{bottom:585.778400pt;}
.yb4{bottom:586.124800pt;}
.yd2{bottom:590.023333pt;}
.y12{bottom:597.423733pt;}
.ya6{bottom:598.578400pt;}
.y66{bottom:599.423467pt;}
.y88{bottom:599.423600pt;}
.y3c{bottom:599.423733pt;}
.yb3{bottom:605.346133pt;}
.yd1{bottom:610.071333pt;}
.y11{bottom:612.623733pt;}
.ya5{bottom:617.799733pt;}
.yb2{bottom:618.146133pt;}
.y65{bottom:619.023467pt;}
.ybc{bottom:619.023600pt;}
.y3b{bottom:619.023733pt;}
.y10{bottom:627.823733pt;}
.yd0{bottom:630.119333pt;}
.ya4{bottom:630.599733pt;}
.yb1{bottom:630.946133pt;}
.y64{bottom:638.623467pt;}
.y87{bottom:638.623600pt;}
.y3a{bottom:638.623733pt;}
.yf{bottom:643.023733pt;}
.ya3{bottom:643.399733pt;}
.yb0{bottom:643.746133pt;}
.ycf{bottom:650.167333pt;}
.ya2{bottom:656.199733pt;}
.yaf{bottom:656.546133pt;}
.y63{bottom:658.223467pt;}
.y86{bottom:658.223600pt;}
.ye{bottom:658.223733pt;}
.ya1{bottom:668.999733pt;}
.yae{bottom:669.346133pt;}
.yce{bottom:670.215333pt;}
.y62{bottom:677.823467pt;}
.y85{bottom:677.823600pt;}
.yd{bottom:677.823733pt;}
.ycd{bottom:690.263333pt;}
.y61{bottom:697.423467pt;}
.y84{bottom:697.423600pt;}
.y39{bottom:697.423733pt;}
.ycc{bottom:710.311333pt;}
.y60{bottom:717.023467pt;}
.y83{bottom:717.023600pt;}
.y38{bottom:717.023733pt;}
.ycb{bottom:730.359333pt;}
.y5f{bottom:736.623467pt;}
.y82{bottom:736.623600pt;}
.yc{bottom:736.623733pt;}
.yca{bottom:750.407333pt;}
.y5e{bottom:756.223467pt;}
.y81{bottom:756.223600pt;}
.y37{bottom:756.223733pt;}
.yc9{bottom:770.455333pt;}
.y5d{bottom:775.823467pt;}
.ybb{bottom:775.823600pt;}
.y36{bottom:775.823733pt;}
.yb{bottom:790.223733pt;}
.yc8{bottom:790.503333pt;}
.y5c{bottom:795.423467pt;}
.y7e{bottom:795.423600pt;}
.y35{bottom:795.423733pt;}
.yc7{bottom:810.551333pt;}
.y80{bottom:815.023600pt;}
.y34{bottom:815.023733pt;}
.ya{bottom:822.223733pt;}
.yc6{bottom:830.599333pt;}
.y5b{bottom:834.623600pt;}
.y33{bottom:834.623733pt;}
.yc5{bottom:850.647333pt;}
.y7f{bottom:854.223600pt;}
.y9{bottom:854.223733pt;}
.yc4{bottom:870.695333pt;}
.y5a{bottom:873.823600pt;}
.y32{bottom:873.823733pt;}
.yc3{bottom:890.743333pt;}
.y59{bottom:893.423600pt;}
.y31{bottom:893.423733pt;}
.y8{bottom:907.823733pt;}
.yc2{bottom:910.791333pt;}
.y58{bottom:913.023600pt;}
.y30{bottom:913.023733pt;}
.yc1{bottom:930.839333pt;}
.y57{bottom:932.623600pt;}
.y2f{bottom:932.623733pt;}
.y7{bottom:939.823733pt;}
.yc0{bottom:950.879733pt;}
.y56{bottom:952.223600pt;}
.y2e{bottom:952.223733pt;}
.ybf{bottom:970.927733pt;}
.y55{bottom:971.823600pt;}
.y6{bottom:971.823733pt;}
.ybe{bottom:990.975733pt;}
.yba{bottom:991.423600pt;}
.y7d{bottom:991.423733pt;}
.y54{bottom:1011.023600pt;}
.y2d{bottom:1011.023733pt;}
.y4{bottom:1045.440000pt;}
.y2a{bottom:1054.424267pt;}
.hf{height:32.682667pt;}
.h2{height:33.408000pt;}
.h3{height:37.584000pt;}
.h8{height:38.810667pt;}
.h5{height:40.277333pt;}
.he{height:40.824000pt;}
.hd{height:43.848000pt;}
.hc{height:45.936000pt;}
.h6{height:46.656000pt;}
.h7{height:47.829333pt;}
.hb{height:49.224000pt;}
.h9{height:50.112000pt;}
.ha{height:58.410667pt;}
.h4{height:81.706667pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x6{left:74.623733pt;}
.x4{left:75.590533pt;}
.xd{left:94.713200pt;}
.xf{left:95.767467pt;}
.xb{left:112.334400pt;}
.x7{left:113.385867pt;}
.x10{left:131.028667pt;}
.xa{left:132.536400pt;}
.x11{left:133.548667pt;}
.xc{left:149.506000pt;}
.x2{left:284.418000pt;}
.x1{left:305.282000pt;}
.x3{left:320.034000pt;}
.x8{left:322.217867pt;}
.x9{left:357.833867pt;}
.x5{left:662.853867pt;}
.xe{left:664.635200pt;}
}




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