
    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_6a0c049c9b9bcafab0534a7c.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_40d8f3ed947d02d1eb5efbe0.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.616000;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_242fc102ce0bc290f35c452e.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.044000;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_b8ab7380d144e996e3e588a9.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.899000;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_288562d5f6cc08dbd450d115.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_9ba31db82f7c3e088e74ee2d.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.922000;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_6f2e6d6f1796bd4dff36e5e8.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.922000;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_1c881e201e4942e62d7388ef.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_1b5856047a99cd328eb5ef6e.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_5d8ad2d8cb9215d4c6480b25.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_152e7619ac7a27ba44baafa4.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.414000;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_956c436978668a00c790c4ce.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.922000;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_b973e083e14a07c509488f1a.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.920000;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_0f3fd3f0ec73578a5471bfc1.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_3d3564562f305b528d70ec8c.woff2')format("woff");}.fff{font-family:fff;line-height:0.705000;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:ff10;src:url('chunks/assets/font_4301332fb2f722c17c073af6.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.429000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url('chunks/assets/font_21784c177eed542891aab77f.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.106000;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:ff12;src:url('chunks/assets/font_1670ff1fe0dfbed2f184bd31.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.234000;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:ff13;src:url('chunks/assets/font_63d024dd5a27387d807657b9.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.923000;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:ff14;src:url('chunks/assets/font_fe085288f928d81d989eed8b.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.688000;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:ff15;src:url('chunks/assets/font_63751dfeeb48e7d8a6188770.woff2')format("woff");}.ff15{font-family:ff15;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:ff16;src:url('chunks/assets/font_b3c988ed68cc41aa7b431b2c.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.234000;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:ff17;src:url('chunks/assets/font_3c3efa3ed825c4d9b2fb8106.woff2')format("woff");}.ff17{font-family:ff17;line-height:0.414000;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:ff18;src:url('chunks/assets/font_ce6b6afb7f4be088a673537f.woff2')format("woff");}.ff18{font-family:ff18;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:ff19;src:url('chunks/assets/font_a8b5f5b1bc327d65ff29a4cd.woff2')format("woff");}.ff19{font-family:ff19;line-height:0.877000;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:ff1a;src:url('chunks/assets/font_e3e355faaa9f6b54f32cbaa9.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:0.665000;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;}
.m2{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,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);}
.v3{vertical-align:-16.878000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:12.870000px;}
.v2{vertical-align:21.690000px;}
.v1{vertical-align:22.854000px;}
.ls6{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.000367px;}
.lsf{letter-spacing:0.000557px;}
.ls13{letter-spacing:0.382364px;}
.lsd{letter-spacing:2.984915px;}
.ls11{letter-spacing:2.987468px;}
.ls2{letter-spacing:2.989409px;}
.ls10{letter-spacing:15.400994px;}
.lse{letter-spacing:16.615405px;}
.ls3{letter-spacing:18.403409px;}
.ls12{letter-spacing:19.471405px;}
.ls5{letter-spacing:19.921559px;}
.ls4{letter-spacing:19.925468px;}
.ls15{letter-spacing:21.869468px;}
.ls14{letter-spacing:22.458532px;}
.ls1{letter-spacing:23.916479px;}
.ls7{letter-spacing:29.682538px;}
.ls9{letter-spacing:29.785409px;}
.lsa{letter-spacing:30.619409px;}
.ls8{letter-spacing:30.763409px;}
.lsb{letter-spacing:368.636915px;}
.lsc{letter-spacing:393.788915px;}
.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;}
}
.ws7d{word-spacing:-36.071827px;}
.ws2f{word-spacing:-16.605662px;}
.ws2{word-spacing:-15.359443px;}
.ws17{word-spacing:-14.111859px;}
.wsa{word-spacing:-13.202127px;}
.ws70{word-spacing:-10.878555px;}
.ws71{word-spacing:-10.813100px;}
.ws7b{word-spacing:-6.145880px;}
.ws4e{word-spacing:-2.824416px;}
.ws16{word-spacing:-2.778377px;}
.ws56{word-spacing:-2.663021px;}
.ws31{word-spacing:-1.781313px;}
.ws6b{word-spacing:-1.542210px;}
.ws21{word-spacing:-1.183557px;}
.ws11{word-spacing:-0.961194px;}
.ws5e{word-spacing:-0.780077px;}
.ws52{word-spacing:-0.618682px;}
.ws1d{word-spacing:-0.526025px;}
.ws1f{word-spacing:-0.167372px;}
.ws6f{word-spacing:-0.065455px;}
.ws26{word-spacing:-0.059776px;}
.ws45{word-spacing:-0.053798px;}
.ws76{word-spacing:-0.026899px;}
.ws30{word-spacing:0.000000px;}
.ws5d{word-spacing:0.080698px;}
.ws25{word-spacing:0.370609px;}
.ws2b{word-spacing:0.729262px;}
.ws4d{word-spacing:0.780077px;}
.ws43{word-spacing:0.789038px;}
.ws36{word-spacing:1.028140px;}
.ws24{word-spacing:1.147692px;}
.ws34{word-spacing:1.207467px;}
.ws74{word-spacing:1.264262px;}
.ws2a{word-spacing:1.566121px;}
.ws12{word-spacing:1.764580px;}
.ws14{word-spacing:2.099324px;}
.ws1b{word-spacing:2.104101px;}
.ws6d{word-spacing:2.283428px;}
.ws1e{word-spacing:2.761633px;}
.ws15{word-spacing:2.816633px;}
.ws75{word-spacing:2.932013px;}
.ws68{word-spacing:3.000735px;}
.ws50{word-spacing:3.039610px;}
.ws54{word-spacing:3.063439px;}
.ws5c{word-spacing:3.067684px;}
.ws4f{word-spacing:3.087913px;}
.ws5f{word-spacing:3.088840px;}
.ws0{word-spacing:3.093408px;}
.ws2e{word-spacing:3.299613px;}
.ws20{word-spacing:3.359389px;}
.ws7c{word-spacing:3.523795px;}
.ws73{word-spacing:3.846586px;}
.ws78{word-spacing:4.115578px;}
.ws58{word-spacing:4.169376px;}
.ws5a{word-spacing:4.223174px;}
.ws57{word-spacing:4.384570px;}
.ws1a{word-spacing:4.805970px;}
.ws67{word-spacing:4.913554px;}
.ws13{word-spacing:4.920740px;}
.ws2c{word-spacing:4.973330px;}
.ws2d{word-spacing:5.152657px;}
.ws5b{word-spacing:5.514336px;}
.ws7a{word-spacing:5.530132px;}
.ws77{word-spacing:5.532935px;}
.ws79{word-spacing:5.568134px;}
.ws5{word-spacing:5.624884px;}
.wsb{word-spacing:5.684660px;}
.ws38{word-spacing:6.109066px;}
.ws40{word-spacing:6.228618px;}
.ws44{word-spacing:6.467720px;}
.ws29{word-spacing:6.647047px;}
.ws18{word-spacing:6.881384px;}
.ws32{word-spacing:7.185027px;}
.ws4c{word-spacing:7.397280px;}
.ws33{word-spacing:7.483905px;}
.ws3b{word-spacing:7.543681px;}
.ws41{word-spacing:7.603456px;}
.ws6c{word-spacing:7.663232px;}
.ws47{word-spacing:7.782783px;}
.ws69{word-spacing:8.081661px;}
.ws53{word-spacing:8.365651px;}
.ws72{word-spacing:8.688442px;}
.ws55{word-spacing:8.796038px;}
.ws59{word-spacing:8.957434px;}
.ws6a{word-spacing:9.038071px;}
.ws35{word-spacing:9.157622px;}
.ws27{word-spacing:9.277173px;}
.ws3e{word-spacing:9.635827px;}
.ws61{word-spacing:10.114032px;}
.ws3f{word-spacing:10.173807px;}
.ws6e{word-spacing:10.800009px;}
.ws42{word-spacing:11.010666px;}
.ws3a{word-spacing:11.130217px;}
.ws39{word-spacing:11.189992px;}
.ws8{word-spacing:11.329943px;}
.wse{word-spacing:11.652733px;}
.ws3c{word-spacing:11.727973px;}
.ws28{word-spacing:11.907300px;}
.ws37{word-spacing:12.146402px;}
.wsc{word-spacing:12.190717px;}
.ws3d{word-spacing:12.684382px;}
.wsf{word-spacing:12.836298px;}
.ws6{word-spacing:13.858468px;}
.wsd{word-spacing:14.127460px;}
.ws7{word-spacing:14.235057px;}
.ws9{word-spacing:14.450250px;}
.ws65{word-spacing:14.656977px;}
.ws51{word-spacing:15.843629px;}
.ws46{word-spacing:16.689348px;}
.ws10{word-spacing:18.345254px;}
.ws63{word-spacing:18.363064px;}
.ws1{word-spacing:18.371242px;}
.ws60{word-spacing:19.636416px;}
.ws3{word-spacing:19.690214px;}
.ws1c{word-spacing:20.204153px;}
.ws66{word-spacing:21.453284px;}
.ws64{word-spacing:24.280849px;}
.ws48{word-spacing:24.314234px;}
.ws19{word-spacing:25.344918px;}
.ws62{word-spacing:25.954566px;}
.ws49{word-spacing:27.030057px;}
.ws4a{word-spacing:27.030526px;}
.ws4b{word-spacing:28.524916px;}
.ws4{word-spacing:31.504255px;}
.ws23{word-spacing:128.632632px;}
.ws22{word-spacing:257.174405px;}
._7{margin-left:-28.220050px;}
._9{margin-left:-22.057196px;}
._a{margin-left:-19.767986px;}
._8{margin-left:-7.776794px;}
._2{margin-left:-4.626662px;}
._3{margin-left:-3.093494px;}
._0{margin-left:-1.667750px;}
._1{width:1.433153px;}
._6{width:2.582316px;}
._c{width:9.989658px;}
._11{width:15.840534px;}
._1d{width:16.937230px;}
._d{width:18.572114px;}
._19{width:21.842150px;}
._4{width:23.006563px;}
._b{width:24.585869px;}
._12{width:26.205654px;}
._14{width:27.634302px;}
._13{width:30.778468px;}
._f{width:32.160734px;}
._1a{width:34.366656px;}
._16{width:35.375222px;}
._e{width:36.397374px;}
._1c{width:39.445930px;}
._5{width:42.027388px;}
._10{width:43.755739px;}
._15{width:47.162948px;}
._1b{width:60.672234px;}
._17{width:66.637861px;}
._18{width:97.727406px;}
._1e{width:337.418073px;}
._1f{width:363.206988px;}
._20{width:388.276687px;}
.fc2{color:transparent;}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(0,0,255);}
.fs3{font-size:35.865600px;}
.fs5{font-size:41.842800px;}
.fs4{font-size:47.820600px;}
.fs0{font-size:53.798400px;}
.fs2{font-size:59.775600px;}
.fs6{font-size:65.454600px;}
.fs1{font-size:86.077200px;}
.y0{bottom:0.000000px;}
.y84{bottom:8.470500px;}
.y81{bottom:35.469000px;}
.y7b{bottom:64.194000px;}
.y83{bottom:81.285000px;}
.y7c{bottom:113.842500px;}
.y3c{bottom:132.439500px;}
.y3b{bottom:135.657000px;}
.y7d{bottom:163.416000px;}
.y3a{bottom:180.489000px;}
.y34{bottom:184.747500px;}
.y39{bottom:198.421500px;}
.y33{bottom:203.163000px;}
.y7e{bottom:212.989500px;}
.y8b{bottom:213.289500px;}
.y32{bottom:213.649500px;}
.y38{bottom:216.354000px;}
.y8a{bottom:231.289500px;}
.y31{bottom:232.065000px;}
.y37{bottom:234.726000px;}
.y89{bottom:249.289500px;}
.y36{bottom:252.660000px;}
.y7f{bottom:262.563000px;}
.y88{bottom:267.213000px;}
.y35{bottom:270.592500px;}
.y87{bottom:285.213000px;}
.y30{bottom:288.525000px;}
.y86{bottom:303.213000px;}
.y2f{bottom:306.457500px;}
.y80{bottom:312.211500px;}
.y2e{bottom:324.390000px;}
.y82{bottom:340.936500px;}
.y2d{bottom:342.322500px;}
.y2c{bottom:360.256500px;}
.y85{bottom:367.935000px;}
.y2b{bottom:378.189000px;}
.y2a{bottom:425.344500px;}
.y29{bottom:487.138500px;}
.y57{bottom:498.403500px;}
.y28{bottom:501.334500px;}
.y27{bottom:515.532000px;}
.y56{bottom:516.336000px;}
.y26{bottom:529.728000px;}
.y55{bottom:534.268500px;}
.y25{bottom:543.925500px;}
.y54{bottom:552.201000px;}
.y24{bottom:558.121500px;}
.y79{bottom:570.133500px;}
.y53{bottom:570.135000px;}
.y23{bottom:572.319000px;}
.y22{bottom:586.515000px;}
.y78{bottom:588.067500px;}
.y21{bottom:600.712500px;}
.y77{bottom:606.000000px;}
.y20{bottom:614.910000px;}
.y76{bottom:623.932500px;}
.y52{bottom:624.021000px;}
.y1f{bottom:629.106000px;}
.y75{bottom:641.865000px;}
.y1e{bottom:643.303500px;}
.y1d{bottom:657.499500px;}
.y74{bottom:659.797500px;}
.y1c{bottom:671.697000px;}
.y73{bottom:677.730000px;}
.y72{bottom:695.664000px;}
.y91{bottom:697.989000px;}
.y1b{bottom:699.478500px;}
.y71{bottom:713.596500px;}
.y90{bottom:713.680500px;}
.y1a{bottom:719.109000px;}
.y8f{bottom:729.372000px;}
.y70{bottom:731.529000px;}
.y19{bottom:733.306500px;}
.y8e{bottom:745.063500px;}
.y6f{bottom:749.461500px;}
.y18{bottom:752.937000px;}
.y8d{bottom:760.753500px;}
.y17{bottom:767.134500px;}
.y6e{bottom:767.394000px;}
.y51{bottom:774.244500px;}
.y8c{bottom:776.445000px;}
.y16{bottom:788.259000px;}
.y50{bottom:792.177000px;}
.y7a{bottom:802.224000px;}
.y6d{bottom:802.335000px;}
.y15{bottom:802.456500px;}
.y4f{bottom:810.111000px;}
.y14{bottom:816.652500px;}
.y6c{bottom:823.257000px;}
.y4e{bottom:828.043500px;}
.y13{bottom:830.850000px;}
.y6b{bottom:838.947000px;}
.y12{bottom:845.046000px;}
.y4d{bottom:845.976000px;}
.y6a{bottom:854.638500px;}
.y4c{bottom:863.908500px;}
.y69{bottom:870.330000px;}
.y11{bottom:874.486500px;}
.y4b{bottom:881.841000px;}
.y68{bottom:886.021500px;}
.y4a{bottom:899.773500px;}
.y67{bottom:901.711500px;}
.y10{bottom:905.569500px;}
.y66{bottom:917.403000px;}
.y49{bottom:917.707500px;}
.yf{bottom:921.261000px;}
.y65{bottom:933.094500px;}
.y48{bottom:935.640000px;}
.ye{bottom:936.951000px;}
.y64{bottom:948.786000px;}
.yd{bottom:952.642500px;}
.y47{bottom:953.572500px;}
.y63{bottom:964.477500px;}
.yc{bottom:968.334000px;}
.y46{bottom:971.505000px;}
.y62{bottom:980.167500px;}
.y45{bottom:989.437500px;}
.yb{bottom:991.945500px;}
.y61{bottom:995.859000px;}
.y44{bottom:1007.371500px;}
.y60{bottom:1011.550500px;}
.ya{bottom:1020.637500px;}
.y43{bottom:1025.304000px;}
.y5f{bottom:1027.242000px;}
.y9{bottom:1036.329000px;}
.y5e{bottom:1042.932000px;}
.y42{bottom:1043.236500px;}
.y8{bottom:1052.020500px;}
.y5d{bottom:1058.623500px;}
.y7{bottom:1067.712000px;}
.y5c{bottom:1074.315000px;}
.y41{bottom:1080.115500px;}
.y6{bottom:1083.402000px;}
.y5b{bottom:1090.006500px;}
.y40{bottom:1098.048000px;}
.y5a{bottom:1105.698000px;}
.y5{bottom:1107.013500px;}
.y3f{bottom:1115.980500px;}
.y59{bottom:1121.388000px;}
.y3e{bottom:1133.913000px;}
.y58{bottom:1137.079500px;}
.y4{bottom:1142.880000px;}
.y3d{bottom:1151.845500px;}
.y3{bottom:1169.778000px;}
.y2{bottom:1192.941000px;}
.y1{bottom:1208.632500px;}
.hc{height:25.249382px;}
.h9{height:33.187496px;}
.ha{height:34.191729px;}
.h8{height:35.865450px;}
.h6{height:38.519654px;}
.h2{height:40.348800px;}
.he{height:41.484266px;}
.h3{height:41.586163px;}
.h5{height:42.799330px;}
.hb{height:44.831700px;}
.h7{height:48.103382px;}
.h10{height:49.090950px;}
.h11{height:49.156405px;}
.hd{height:57.701700px;}
.h4{height:61.631275px;}
.hf{height:382.500000px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w2{width:679.500000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x18{left:18.688500px;}
.x14{left:26.154000px;}
.x13{left:34.336500px;}
.x12{left:42.517500px;}
.x19{left:46.872000px;}
.x15{left:67.252500px;}
.x17{left:68.991000px;}
.x3{left:81.000000px;}
.xa{left:82.992000px;}
.xb{left:93.702000px;}
.x9{left:95.944500px;}
.x1a{left:110.088000px;}
.x11{left:122.322000px;}
.x4{left:135.000000px;}
.x7{left:147.702000px;}
.x5{left:160.032000px;}
.x8{left:163.192500px;}
.x6{left:172.360500px;}
.x16{left:184.324500px;}
.xe{left:199.389000px;}
.x2{left:203.851500px;}
.x1{left:311.886000px;}
.x1b{left:450.814500px;}
.xc{left:475.521000px;}
.x1c{left:485.923500px;}
.xd{left:490.464000px;}
.x1d{left:494.014500px;}
.x10{left:496.089000px;}
.x1e{left:511.732500px;}
.x1f{left:562.830000px;}
.xf{left:835.669500px;}
@media print{
.v3{vertical-align:-15.002667pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:11.440000pt;}
.v2{vertical-align:19.280000pt;}
.v1{vertical-align:20.314667pt;}
.ls6{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.000326pt;}
.lsf{letter-spacing:0.000495pt;}
.ls13{letter-spacing:0.339879pt;}
.lsd{letter-spacing:2.653258pt;}
.ls11{letter-spacing:2.655527pt;}
.ls2{letter-spacing:2.657253pt;}
.ls10{letter-spacing:13.689772pt;}
.lse{letter-spacing:14.769249pt;}
.ls3{letter-spacing:16.358586pt;}
.ls12{letter-spacing:17.307916pt;}
.ls5{letter-spacing:17.708052pt;}
.ls4{letter-spacing:17.711527pt;}
.ls15{letter-spacing:19.439527pt;}
.ls14{letter-spacing:19.963139pt;}
.ls1{letter-spacing:21.259093pt;}
.ls7{letter-spacing:26.384479pt;}
.ls9{letter-spacing:26.475919pt;}
.lsa{letter-spacing:27.217253pt;}
.ls8{letter-spacing:27.345253pt;}
.lsb{letter-spacing:327.677258pt;}
.lsc{letter-spacing:350.034591pt;}
.ws7d{word-spacing:-32.063846pt;}
.ws2f{word-spacing:-14.760588pt;}
.ws2{word-spacing:-13.652838pt;}
.ws17{word-spacing:-12.543875pt;}
.wsa{word-spacing:-11.735224pt;}
.ws70{word-spacing:-9.669826pt;}
.ws71{word-spacing:-9.611644pt;}
.ws7b{word-spacing:-5.463004pt;}
.ws4e{word-spacing:-2.510592pt;}
.ws16{word-spacing:-2.469668pt;}
.ws56{word-spacing:-2.367130pt;}
.ws31{word-spacing:-1.583389pt;}
.ws6b{word-spacing:-1.370854pt;}
.ws21{word-spacing:-1.052051pt;}
.ws11{word-spacing:-0.854395pt;}
.ws5e{word-spacing:-0.693402pt;}
.ws52{word-spacing:-0.549939pt;}
.ws1d{word-spacing:-0.467578pt;}
.ws1f{word-spacing:-0.148775pt;}
.ws6f{word-spacing:-0.058182pt;}
.ws26{word-spacing:-0.053134pt;}
.ws45{word-spacing:-0.047821pt;}
.ws76{word-spacing:-0.023910pt;}
.ws30{word-spacing:0.000000pt;}
.ws5d{word-spacing:0.071731pt;}
.ws25{word-spacing:0.329430pt;}
.ws2b{word-spacing:0.648233pt;}
.ws4d{word-spacing:0.693402pt;}
.ws43{word-spacing:0.701367pt;}
.ws36{word-spacing:0.913903pt;}
.ws24{word-spacing:1.020170pt;}
.ws34{word-spacing:1.073304pt;}
.ws74{word-spacing:1.123789pt;}
.ws2a{word-spacing:1.392107pt;}
.ws12{word-spacing:1.568516pt;}
.ws14{word-spacing:1.866066pt;}
.ws1b{word-spacing:1.870312pt;}
.ws6d{word-spacing:2.029714pt;}
.ws1e{word-spacing:2.454785pt;}
.ws15{word-spacing:2.503674pt;}
.ws75{word-spacing:2.606234pt;}
.ws68{word-spacing:2.667320pt;}
.ws50{word-spacing:2.701875pt;}
.ws54{word-spacing:2.723057pt;}
.ws5c{word-spacing:2.726830pt;}
.ws4f{word-spacing:2.744812pt;}
.ws5f{word-spacing:2.745636pt;}
.ws0{word-spacing:2.749696pt;}
.ws2e{word-spacing:2.932989pt;}
.ws20{word-spacing:2.986123pt;}
.ws7c{word-spacing:3.132262pt;}
.ws73{word-spacing:3.419187pt;}
.ws78{word-spacing:3.658291pt;}
.ws58{word-spacing:3.706112pt;}
.ws5a{word-spacing:3.753933pt;}
.ws57{word-spacing:3.897395pt;}
.ws1a{word-spacing:4.271974pt;}
.ws67{word-spacing:4.367604pt;}
.ws13{word-spacing:4.373991pt;}
.ws2c{word-spacing:4.420738pt;}
.ws2d{word-spacing:4.580139pt;}
.ws5b{word-spacing:4.901632pt;}
.ws7a{word-spacing:4.915673pt;}
.ws77{word-spacing:4.918164pt;}
.ws79{word-spacing:4.949453pt;}
.ws5{word-spacing:4.999897pt;}
.wsb{word-spacing:5.053031pt;}
.ws38{word-spacing:5.430281pt;}
.ws40{word-spacing:5.536549pt;}
.ws44{word-spacing:5.749084pt;}
.ws29{word-spacing:5.908486pt;}
.ws18{word-spacing:6.116786pt;}
.ws32{word-spacing:6.386691pt;}
.ws4c{word-spacing:6.575360pt;}
.ws33{word-spacing:6.652360pt;}
.ws3b{word-spacing:6.705494pt;}
.ws41{word-spacing:6.758628pt;}
.ws6c{word-spacing:6.811762pt;}
.ws47{word-spacing:6.918029pt;}
.ws69{word-spacing:7.183699pt;}
.ws53{word-spacing:7.436134pt;}
.ws72{word-spacing:7.723059pt;}
.ws55{word-spacing:7.818701pt;}
.ws59{word-spacing:7.962163pt;}
.ws6a{word-spacing:8.033841pt;}
.ws35{word-spacing:8.140108pt;}
.ws27{word-spacing:8.246376pt;}
.ws3e{word-spacing:8.565179pt;}
.ws61{word-spacing:8.990250pt;}
.ws3f{word-spacing:9.043384pt;}
.ws6e{word-spacing:9.600008pt;}
.ws42{word-spacing:9.787258pt;}
.ws3a{word-spacing:9.893526pt;}
.ws39{word-spacing:9.946660pt;}
.ws8{word-spacing:10.071060pt;}
.wse{word-spacing:10.357985pt;}
.ws3c{word-spacing:10.424865pt;}
.ws28{word-spacing:10.584266pt;}
.ws37{word-spacing:10.796802pt;}
.wsc{word-spacing:10.836193pt;}
.ws3d{word-spacing:11.275007pt;}
.wsf{word-spacing:11.410043pt;}
.ws6{word-spacing:12.318638pt;}
.wsd{word-spacing:12.557742pt;}
.ws7{word-spacing:12.653384pt;}
.ws9{word-spacing:12.844667pt;}
.ws65{word-spacing:13.028424pt;}
.ws51{word-spacing:14.083226pt;}
.ws46{word-spacing:14.834976pt;}
.ws10{word-spacing:16.306893pt;}
.ws63{word-spacing:16.322724pt;}
.ws1{word-spacing:16.329993pt;}
.ws60{word-spacing:17.454592pt;}
.ws3{word-spacing:17.502413pt;}
.ws1c{word-spacing:17.959247pt;}
.ws66{word-spacing:19.069586pt;}
.ws64{word-spacing:21.582977pt;}
.ws48{word-spacing:21.612653pt;}
.ws19{word-spacing:22.528816pt;}
.ws62{word-spacing:23.070725pt;}
.ws49{word-spacing:24.026717pt;}
.ws4a{word-spacing:24.027135pt;}
.ws4b{word-spacing:25.355481pt;}
.ws4{word-spacing:28.003782pt;}
.ws23{word-spacing:114.340117pt;}
.ws22{word-spacing:228.599471pt;}
._7{margin-left:-25.084489pt;}
._9{margin-left:-19.606397pt;}
._a{margin-left:-17.571543pt;}
._8{margin-left:-6.912706pt;}
._2{margin-left:-4.112589pt;}
._3{margin-left:-2.749773pt;}
._0{margin-left:-1.482445pt;}
._1{width:1.273914pt;}
._6{width:2.295392pt;}
._c{width:8.879696pt;}
._11{width:14.080475pt;}
._1d{width:15.055315pt;}
._d{width:16.508546pt;}
._19{width:19.415245pt;}
._4{width:20.450278pt;}
._b{width:21.854106pt;}
._12{width:23.293915pt;}
._14{width:24.563824pt;}
._13{width:27.358638pt;}
._f{width:28.587319pt;}
._1a{width:30.548139pt;}
._16{width:31.444642pt;}
._e{width:32.353221pt;}
._1c{width:35.063049pt;}
._5{width:37.357678pt;}
._10{width:38.893990pt;}
._15{width:41.922621pt;}
._1b{width:53.930875pt;}
._17{width:59.233654pt;}
._18{width:86.868805pt;}
._1e{width:299.927176pt;}
._1f{width:322.850656pt;}
._20{width:345.134833pt;}
.fs3{font-size:31.880533pt;}
.fs5{font-size:37.193600pt;}
.fs4{font-size:42.507200pt;}
.fs0{font-size:47.820800pt;}
.fs2{font-size:53.133867pt;}
.fs6{font-size:58.181867pt;}
.fs1{font-size:76.513067pt;}
.y0{bottom:0.000000pt;}
.y84{bottom:7.529333pt;}
.y81{bottom:31.528000pt;}
.y7b{bottom:57.061333pt;}
.y83{bottom:72.253333pt;}
.y7c{bottom:101.193333pt;}
.y3c{bottom:117.724000pt;}
.y3b{bottom:120.584000pt;}
.y7d{bottom:145.258667pt;}
.y3a{bottom:160.434667pt;}
.y34{bottom:164.220000pt;}
.y39{bottom:176.374667pt;}
.y33{bottom:180.589333pt;}
.y7e{bottom:189.324000pt;}
.y8b{bottom:189.590667pt;}
.y32{bottom:189.910667pt;}
.y38{bottom:192.314667pt;}
.y8a{bottom:205.590667pt;}
.y31{bottom:206.280000pt;}
.y37{bottom:208.645333pt;}
.y89{bottom:221.590667pt;}
.y36{bottom:224.586667pt;}
.y7f{bottom:233.389333pt;}
.y88{bottom:237.522667pt;}
.y35{bottom:240.526667pt;}
.y87{bottom:253.522667pt;}
.y30{bottom:256.466667pt;}
.y86{bottom:269.522667pt;}
.y2f{bottom:272.406667pt;}
.y80{bottom:277.521333pt;}
.y2e{bottom:288.346667pt;}
.y82{bottom:303.054667pt;}
.y2d{bottom:304.286667pt;}
.y2c{bottom:320.228000pt;}
.y85{bottom:327.053333pt;}
.y2b{bottom:336.168000pt;}
.y2a{bottom:378.084000pt;}
.y29{bottom:433.012000pt;}
.y57{bottom:443.025333pt;}
.y28{bottom:445.630667pt;}
.y27{bottom:458.250667pt;}
.y56{bottom:458.965333pt;}
.y26{bottom:470.869333pt;}
.y55{bottom:474.905333pt;}
.y25{bottom:483.489333pt;}
.y54{bottom:490.845333pt;}
.y24{bottom:496.108000pt;}
.y79{bottom:506.785333pt;}
.y53{bottom:506.786667pt;}
.y23{bottom:508.728000pt;}
.y22{bottom:521.346667pt;}
.y78{bottom:522.726667pt;}
.y21{bottom:533.966667pt;}
.y77{bottom:538.666667pt;}
.y20{bottom:546.586667pt;}
.y76{bottom:554.606667pt;}
.y52{bottom:554.685333pt;}
.y1f{bottom:559.205333pt;}
.y75{bottom:570.546667pt;}
.y1e{bottom:571.825333pt;}
.y1d{bottom:584.444000pt;}
.y74{bottom:586.486667pt;}
.y1c{bottom:597.064000pt;}
.y73{bottom:602.426667pt;}
.y72{bottom:618.368000pt;}
.y91{bottom:620.434667pt;}
.y1b{bottom:621.758667pt;}
.y71{bottom:634.308000pt;}
.y90{bottom:634.382667pt;}
.y1a{bottom:639.208000pt;}
.y8f{bottom:648.330667pt;}
.y70{bottom:650.248000pt;}
.y19{bottom:651.828000pt;}
.y8e{bottom:662.278667pt;}
.y6f{bottom:666.188000pt;}
.y18{bottom:669.277333pt;}
.y8d{bottom:676.225333pt;}
.y17{bottom:681.897333pt;}
.y6e{bottom:682.128000pt;}
.y51{bottom:688.217333pt;}
.y8c{bottom:690.173333pt;}
.y16{bottom:700.674667pt;}
.y50{bottom:704.157333pt;}
.y7a{bottom:713.088000pt;}
.y6d{bottom:713.186667pt;}
.y15{bottom:713.294667pt;}
.y4f{bottom:720.098667pt;}
.y14{bottom:725.913333pt;}
.y6c{bottom:731.784000pt;}
.y4e{bottom:736.038667pt;}
.y13{bottom:738.533333pt;}
.y6b{bottom:745.730667pt;}
.y12{bottom:751.152000pt;}
.y4d{bottom:751.978667pt;}
.y6a{bottom:759.678667pt;}
.y4c{bottom:767.918667pt;}
.y69{bottom:773.626667pt;}
.y11{bottom:777.321333pt;}
.y4b{bottom:783.858667pt;}
.y68{bottom:787.574667pt;}
.y4a{bottom:799.798667pt;}
.y67{bottom:801.521333pt;}
.y10{bottom:804.950667pt;}
.y66{bottom:815.469333pt;}
.y49{bottom:815.740000pt;}
.yf{bottom:818.898667pt;}
.y65{bottom:829.417333pt;}
.y48{bottom:831.680000pt;}
.ye{bottom:832.845333pt;}
.y64{bottom:843.365333pt;}
.yd{bottom:846.793333pt;}
.y47{bottom:847.620000pt;}
.y63{bottom:857.313333pt;}
.yc{bottom:860.741333pt;}
.y46{bottom:863.560000pt;}
.y62{bottom:871.260000pt;}
.y45{bottom:879.500000pt;}
.yb{bottom:881.729333pt;}
.y61{bottom:885.208000pt;}
.y44{bottom:895.441333pt;}
.y60{bottom:899.156000pt;}
.ya{bottom:907.233333pt;}
.y43{bottom:911.381333pt;}
.y5f{bottom:913.104000pt;}
.y9{bottom:921.181333pt;}
.y5e{bottom:927.050667pt;}
.y42{bottom:927.321333pt;}
.y8{bottom:935.129333pt;}
.y5d{bottom:940.998667pt;}
.y7{bottom:949.077333pt;}
.y5c{bottom:954.946667pt;}
.y41{bottom:960.102667pt;}
.y6{bottom:963.024000pt;}
.y5b{bottom:968.894667pt;}
.y40{bottom:976.042667pt;}
.y5a{bottom:982.842667pt;}
.y5{bottom:984.012000pt;}
.y3f{bottom:991.982667pt;}
.y59{bottom:996.789333pt;}
.y3e{bottom:1007.922667pt;}
.y58{bottom:1010.737333pt;}
.y4{bottom:1015.893333pt;}
.y3d{bottom:1023.862667pt;}
.y3{bottom:1039.802667pt;}
.y2{bottom:1060.392000pt;}
.y1{bottom:1074.340000pt;}
.hc{height:22.443895pt;}
.h9{height:29.499997pt;}
.ha{height:30.392648pt;}
.h8{height:31.880400pt;}
.h6{height:34.239693pt;}
.h2{height:35.865600pt;}
.he{height:36.874903pt;}
.h3{height:36.965478pt;}
.h5{height:38.043849pt;}
.hb{height:39.850400pt;}
.h7{height:42.758562pt;}
.h10{height:43.636400pt;}
.h11{height:43.694582pt;}
.hd{height:51.290400pt;}
.h4{height:54.783356pt;}
.hf{height:340.000000pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w2{width:604.000000pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x18{left:16.612000pt;}
.x14{left:23.248000pt;}
.x13{left:30.521333pt;}
.x12{left:37.793333pt;}
.x19{left:41.664000pt;}
.x15{left:59.780000pt;}
.x17{left:61.325333pt;}
.x3{left:72.000000pt;}
.xa{left:73.770667pt;}
.xb{left:83.290667pt;}
.x9{left:85.284000pt;}
.x1a{left:97.856000pt;}
.x11{left:108.730667pt;}
.x4{left:120.000000pt;}
.x7{left:131.290667pt;}
.x5{left:142.250667pt;}
.x8{left:145.060000pt;}
.x6{left:153.209333pt;}
.x16{left:163.844000pt;}
.xe{left:177.234667pt;}
.x2{left:181.201333pt;}
.x1{left:277.232000pt;}
.x1b{left:400.724000pt;}
.xc{left:422.685333pt;}
.x1c{left:431.932000pt;}
.xd{left:435.968000pt;}
.x1d{left:439.124000pt;}
.x10{left:440.968000pt;}
.x1e{left:454.873333pt;}
.x1f{left:500.293333pt;}
.xf{left:742.817333pt;}
}




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