
    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_0530d5e8a9d9a0fe36b50761.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_6ae8ba40b3f9afedb49ed90e.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_54dc7dd0751d424006483ec7.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.550000;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_dd310640b0d913c47869c389.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_44be67640953afba834f7a05.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_e90e2f89730cb1c0eabd2450.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_20e7cb47d992b2b04ec24ca3.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_69356458d11ac6d169722757.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.696000;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_046cc8e32e9cc7f35406a621.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.960000;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_5386c08ba3bd076ca3f55f99.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.013000;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_eff09b89081c1bd39308fe48.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.010000;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_160ff843182105fd7c8e7d91.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.666504;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_8b62860e23eaaa8f609e7b88.woff2')format("woff");}.ffd{font-family:ffd;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:ffe;src:url('chunks/assets/font_b34fcf6a46c5d3bffb9acb86.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.912000;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_17c843f9413fd9cb73ad4ab8.woff2')format("woff");}.fff{font-family:fff;line-height:0.940000;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_0630c47fdef563e32a13f29d.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.909000;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_261609ba22ab6eb6bf48afb2.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.797000;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_faed2cc080bb86b71004aa25.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.926000;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_17f0672ba5597baa3adbb2af.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.793945;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_d7ba9942b20440e0c8e40ad4.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.926000;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_3409f1891d64cb675ca43eeb.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.936000;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_ad4e822a51fcbb60618043db.woff2')format("woff");}.ff16{font-family:ff16;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;}
.m3{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);}
.m1{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);}
.v2{vertical-align:-8.964000px;}
.v1{vertical-align:-7.476000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:6.270000px;}
.ls0{letter-spacing:0.000000px;}
.ls14{letter-spacing:4.752000px;}
.ls3{letter-spacing:5.977584px;}
.ls13{letter-spacing:8.052000px;}
.ls12{letter-spacing:8.580000px;}
.ls11{letter-spacing:9.600000px;}
.lsf{letter-spacing:15.937613px;}
.lse{letter-spacing:15.940493px;}
.ls10{letter-spacing:23.380493px;}
.lsb{letter-spacing:23.380980px;}
.ls4{letter-spacing:23.386493px;}
.lsd{letter-spacing:23.386980px;}
.lsc{letter-spacing:29.984490px;}
.ls5{letter-spacing:32.564490px;}
.ls8{letter-spacing:33.140490px;}
.ls7{letter-spacing:33.494490px;}
.lsa{letter-spacing:33.500490px;}
.ls6{letter-spacing:33.566490px;}
.ls9{letter-spacing:33.572490px;}
.ls2{letter-spacing:33.644730px;}
.ls1{letter-spacing:35.864490px;}
.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;}
}
.ws19{word-spacing:-124.800000px;}
.ws4{word-spacing:-103.292640px;}
.wsa{word-spacing:-71.731020px;}
.ws2{word-spacing:-70.962044px;}
.ws0{word-spacing:-70.445580px;}
.ws18{word-spacing:-56.404499px;}
.ws15{word-spacing:-49.422673px;}
.ws14{word-spacing:-48.992287px;}
.ws17{word-spacing:-48.418438px;}
.wsf{word-spacing:-48.348810px;}
.ws9{word-spacing:-48.346821px;}
.ws5{word-spacing:-48.346707px;}
.ws12{word-spacing:-48.346422px;}
.wsd{word-spacing:-48.344276px;}
.ws13{word-spacing:-48.274976px;}
.ws11{word-spacing:-48.131514px;}
.ws16{word-spacing:-48.059783px;}
.wse{word-spacing:-47.916321px;}
.ws10{word-spacing:-45.405736px;}
.wsc{word-spacing:-45.334005px;}
.ws1{word-spacing:-43.658178px;}
.ws7{word-spacing:-23.169100px;}
.ws6{word-spacing:-18.948941px;}
.ws1b{word-spacing:-8.580000px;}
.ws1c{word-spacing:-8.052000px;}
.ws1a{word-spacing:-4.800000px;}
.ws1d{word-spacing:-4.752000px;}
.wsb{word-spacing:-0.021876px;}
.ws3{word-spacing:0.000000px;}
.ws8{word-spacing:27.616420px;}
._13{margin-left:-26.983174px;}
._e{margin-left:-24.277720px;}
._f{margin-left:-13.075131px;}
._12{margin-left:-11.573621px;}
._11{margin-left:-9.720000px;}
._d{margin-left:-8.056826px;}
._10{margin-left:-6.901510px;}
._2{margin-left:-5.432727px;}
._7{margin-left:-3.538490px;}
._1{margin-left:-1.832727px;}
._5{width:1.075964px;}
._0{width:2.788901px;}
._b{width:4.526227px;}
._c{width:5.777933px;}
._3{width:29.738579px;}
._9{width:31.131263px;}
._8{width:35.862963px;}
._a{width:43.073031px;}
._6{width:50.786943px;}
._4{width:653.966822px;}
.fc8{color:rgb(35,5,4);}
.fc7{color:rgb(30,0,0);}
.fc6{color:rgb(33,5,1);}
.fc3{color:transparent;}
.fc2{color:rgb(255,98,52);}
.fc5{color:rgb(35,31,32);}
.fc4{color:rgb(255,255,255);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(238,42,55);}
.fs7{font-size:21.876481px;}
.fs8{font-size:24.307200px;}
.fsa{font-size:29.168641px;}
.fs3{font-size:29.887920px;}
.fs9{font-size:31.599362px;}
.fs4{font-size:35.865480px;}
.fs6{font-size:43.752961px;}
.fs5{font-size:48.614400px;}
.fs1{font-size:65.454540px;}
.fs2{font-size:71.731020px;}
.fsb{font-size:83.686200px;}
.fs0{font-size:103.292640px;}
.fsc{font-size:360.000000px;}
.fs12{font-size:414.000000px;}
.fs11{font-size:432.000000px;}
.fsd{font-size:480.000000px;}
.fse{font-size:720.000000px;}
.fs10{font-size:732.000000px;}
.fsf{font-size:780.000000px;}
.y105{bottom:-70.115850px;}
.yff{bottom:-59.587350px;}
.y109{bottom:-53.771850px;}
.y103{bottom:-32.677350px;}
.yfd{bottom:-22.148850px;}
.y107{bottom:-16.333350px;}
.yd1{bottom:-2.271000px;}
.yd3{bottom:-1.500000px;}
.yf1{bottom:-1.198500px;}
.yef{bottom:-1.009500px;}
.yd9{bottom:-0.060000px;}
.y0{bottom:0.000000px;}
.ycd{bottom:0.447000px;}
.ycf{bottom:1.089000px;}
.yfb{bottom:1.135650px;}
.y10b{bottom:1.138650px;}
.yd5{bottom:1.654500px;}
.yc7{bottom:1.678500px;}
.ye7{bottom:1.738500px;}
.yd7{bottom:2.167500px;}
.yf7{bottom:2.950500px;}
.ybd{bottom:3.476250px;}
.yf3{bottom:5.640000px;}
.yed{bottom:6.145500px;}
.ye5{bottom:6.921000px;}
.ye9{bottom:7.836000px;}
.yf5{bottom:9.607500px;}
.ycb{bottom:11.461500px;}
.yf9{bottom:12.474000px;}
.ydd{bottom:12.766500px;}
.ydb{bottom:14.601000px;}
.ye3{bottom:16.282500px;}
.ydf{bottom:18.117000px;}
.yc5{bottom:18.958500px;}
.ye1{bottom:20.866500px;}
.yeb{bottom:21.366000px;}
.y101{bottom:21.630150px;}
.y10d{bottom:21.631650px;}
.yc9{bottom:22.918500px;}
.yc3{bottom:24.598500px;}
.y37{bottom:26.660208px;}
.y9f{bottom:30.543000px;}
.y7d{bottom:31.119000px;}
.y4d{bottom:34.657223px;}
.y33{bottom:36.532523px;}
.y43{bottom:39.032729px;}
.y4c{bottom:41.220168px;}
.y4b{bottom:47.783112px;}
.y32{bottom:49.658410px;}
.y42{bottom:50.205558px;}
.y89{bottom:50.344500px;}
.y7c{bottom:52.788000px;}
.y2d{bottom:52.813500px;}
.y10c{bottom:53.050500px;}
.y7b{bottom:54.655500px;}
.y9e{bottom:54.828000px;}
.y9a{bottom:56.695500px;}
.y4a{bottom:60.909000px;}
.y3f{bottom:60.909210px;}
.y41{bottom:63.331448px;}
.y2e{bottom:66.532500px;}
.y49{bottom:69.019332px;}
.y65{bottom:70.206000px;}
.y3e{bottom:70.623609px;}
.y88{bottom:72.013500px;}
.y87{bottom:73.881000px;}
.y1f{bottom:74.482500px;}
.y2c{bottom:76.350000px;}
.y40{bottom:76.457336px;}
.y31{bottom:77.293837px;}
.y48{bottom:77.769924px;}
.y9d{bottom:78.364500px;}
.y7a{bottom:78.939000px;}
.y99{bottom:80.979000px;}
.y3d{bottom:83.749496px;}
.y30{bottom:83.798545px;}
.y6e{bottom:87.159000px;}
.y47{bottom:87.395576px;}
.yae{bottom:89.293050px;}
.y64{bottom:93.742500px;}
.y1e{bottom:98.019000px;}
.y86{bottom:98.164500px;}
.y92{bottom:100.033500px;}
.y2b{bottom:100.633500px;}
.y79{bottom:102.475500px;}
.y98{bottom:104.515500px;}
.y6d{bottom:110.695500px;}
.yb9{bottom:113.671200px;}
.y63{bottom:118.026000px;}
.y8f{bottom:119.833500px;}
.y85{bottom:121.701000px;}
.y1d{bottom:122.302500px;}
.y2a{bottom:124.170000px;}
.y91{bottom:124.317000px;}
.y78{bottom:126.760500px;}
.y27{bottom:126.786000px;}
.y97{bottom:128.800500px;}
.y6c{bottom:134.979000px;}
.y36{bottom:138.717553px;}
.y38{bottom:141.122963px;}
.y62{bottom:141.562500px;}
.y1c{bottom:143.971500px;}
.y7{bottom:145.213500px;}
.y84{bottom:145.986000px;}
.y53{bottom:146.046000px;}
.y29{bottom:148.455000px;}
.y77{bottom:150.297000px;}
.y26{bottom:150.322500px;}
.y96{bottom:150.469500px;}
.y35{bottom:150.837371px;}
.yf{bottom:151.398000px;}
.y95{bottom:152.337000px;}
.y6b{bottom:158.515500px;}
.y46{bottom:159.353364px;}
.ya4{bottom:161.709000px;}
.y34{bottom:163.963258px;}
.y57{bottom:165.846000px;}
.y1b{bottom:167.508000px;}
.y45{bottom:169.067772px;}
.y83{bottom:169.522500px;}
.y3c{bottom:170.291604px;}
.y52{bottom:170.329500px;}
.y28{bottom:171.991500px;}
.y9c{bottom:172.137000px;}
.y76{bottom:174.580500px;}
.y25{bottom:174.606000px;}
.ye{bottom:174.934500px;}
.y94{bottom:176.620500px;}
.y6{bottom:178.090500px;}
.y10a{bottom:180.043500px;}
.y3b{bottom:181.317788px;}
.y5c{bottom:181.638000px;}
.y44{bottom:182.193659px;}
.y6a{bottom:182.800500px;}
.y72{bottom:185.245500px;}
.y61{bottom:187.515000px;}
.y56{bottom:189.384000px;}
.ya3{bottom:189.729000px;}
.y3a{bottom:191.526814px;}
.y1a{bottom:191.791500px;}
.yb1{bottom:192.221850px;}
.y8e{bottom:193.806000px;}
.y51{bottom:193.866000px;}
.y82{bottom:195.675000px;}
.y24{bottom:196.275000px;}
.yad{bottom:197.293050px;}
.y75{bottom:198.117000px;}
.y93{bottom:198.289500px;}
.yd{bottom:201.460500px;}
.y39{bottom:204.652701px;}
.y14{bottom:204.700500px;}
.y5b{bottom:205.174500px;}
.yb8{bottom:205.201200px;}
.y69{bottom:206.337000px;}
.y5{bottom:210.967500px;}
.y71{bottom:211.398000px;}
.y2f{bottom:212.566464px;}
.y60{bottom:213.667500px;}
.y19{bottom:215.329500px;}
.y8d{bottom:215.475000px;}
.y55{bottom:215.535000px;}
.ya2{bottom:215.881500px;}
.y8c{bottom:217.342500px;}
.y23{bottom:217.944000px;}
.y50{bottom:218.151000px;}
.y9b{bottom:219.958500px;}
.yc{bottom:221.784000px;}
.y81{bottom:221.826000px;}
.y74{bottom:222.402000px;}
.y13{bottom:230.853000px;}
.y5a{bottom:231.327000px;}
.y68{bottom:232.488000px;}
.y5f{bottom:237.204000px;}
.y70{bottom:237.550500px;}
.y18{bottom:239.613000px;}
.ya5{bottom:240.165000px;}
.y22{bottom:241.480500px;}
.y8b{bottom:241.627500px;}
.y4f{bottom:241.687500px;}
.ya1{bottom:242.032500px;}
.yb{bottom:242.107500px;}
.y90{bottom:243.495000px;}
.yc1{bottom:243.565650px;}
.y73{bottom:244.069500px;}
.y80{bottom:246.109500px;}
.y12{bottom:257.005500px;}
.y59{bottom:257.478000px;}
.y67{bottom:258.640500px;}
.y5e{bottom:261.487500px;}
.y17{bottom:263.149500px;}
.y6f{bottom:263.701500px;}
.ya{bottom:265.047000px;}
.y4{bottom:265.104000px;}
.y8a{bottom:265.164000px;}
.y16{bottom:265.738500px;}
.y21{bottom:265.764000px;}
.y54{bottom:265.971000px;}
.y100{bottom:266.052000px;}
.ya0{bottom:266.317500px;}
.y7f{bottom:267.778500px;}
.ya7{bottom:272.341500px;}
.y11{bottom:283.156500px;}
.y58{bottom:283.630500px;}
.y66{bottom:284.793000px;}
.y5d{bottom:285.025500px;}
.y3{bottom:285.427500px;}
.y15{bottom:287.407500px;}
.y20{bottom:287.433000px;}
.y4e{bottom:287.640000px;}
.y7e{bottom:289.447500px;}
.y9{bottom:289.854000px;}
.ya6{bottom:293.062500px;}
.yb7{bottom:296.731200px;}
.y106{bottom:304.015500px;}
.yac{bottom:305.293050px;}
.y2{bottom:305.751000px;}
.yb0{bottom:309.221850px;}
.y102{bottom:320.359500px;}
.y8{bottom:327.331500px;}
.y108{bottom:341.454000px;}
.yc0{bottom:357.613650px;}
.y104{bottom:357.798000px;}
.y1{bottom:368.595000px;}
.yb6{bottom:388.261200px;}
.yfa{bottom:393.046500px;}
.y10{bottom:395.185500px;}
.yfc{bottom:416.331000px;}
.yaf{bottom:426.221850px;}
.yfe{bottom:453.769500px;}
.ybf{bottom:471.661650px;}
.ybe{bottom:585.709650px;}
.yab{bottom:1047.703050px;}
.yaa{bottom:1142.203050px;}
.ya9{bottom:1236.703050px;}
.yc8{bottom:1269.330000px;}
.yea{bottom:1270.882500px;}
.ye0{bottom:1271.382000px;}
.yde{bottom:1274.131500px;}
.ye2{bottom:1275.966000px;}
.yda{bottom:1277.647500px;}
.ydc{bottom:1279.482000px;}
.yf8{bottom:1279.774500px;}
.yca{bottom:1280.787000px;}
.yf4{bottom:1282.641000px;}
.ye8{bottom:1284.412500px;}
.ye4{bottom:1285.327500px;}
.yec{bottom:1286.103000px;}
.yf2{bottom:1286.608500px;}
.yf6{bottom:1289.298000px;}
.yd6{bottom:1290.081000px;}
.ye6{bottom:1290.510000px;}
.yd4{bottom:1290.594000px;}
.yce{bottom:1291.159500px;}
.ycc{bottom:1291.801500px;}
.yd8{bottom:1292.308500px;}
.yee{bottom:1293.258000px;}
.yf0{bottom:1293.447000px;}
.yd2{bottom:1293.748500px;}
.yd0{bottom:1294.519500px;}
.ya8{bottom:1331.203050px;}
.yb3{bottom:1365.827700px;}
.yc6{bottom:1409.070000px;}
.yb5{bottom:1421.333550px;}
.ybc{bottom:1441.870500px;}
.ybb{bottom:1445.322000px;}
.yc4{bottom:1510.290000px;}
.yb2{bottom:1539.887700px;}
.yb4{bottom:1572.833550px;}
.yba{bottom:1596.846000px;}
.yc2{bottom:1623.150000px;}
.h39{height:0.162000px;}
.h2c{height:0.621000px;}
.h38{height:0.916500px;}
.h2d{height:1.113000px;}
.h41{height:1.261500px;}
.h42{height:1.282500px;}
.h46{height:1.336500px;}
.h47{height:1.362000px;}
.h30{height:1.506000px;}
.h3f{height:1.611000px;}
.h3b{height:1.713000px;}
.h31{height:1.720500px;}
.h28{height:1.722000px;}
.h45{height:1.749000px;}
.h2a{height:1.777500px;}
.h4b{height:1.861500px;}
.h3c{height:1.870500px;}
.h2f{height:1.918500px;}
.h3d{height:2.022000px;}
.h4a{height:2.023500px;}
.h43{height:2.233500px;}
.h35{height:2.302500px;}
.h48{height:2.514000px;}
.h4c{height:2.977500px;}
.h53{height:3.781500px;}
.h33{height:3.888000px;}
.h3e{height:7.701000px;}
.h23{height:11.734500px;}
.h3a{height:12.381000px;}
.h50{height:14.310000px;}
.h40{height:15.438000px;}
.hd{height:17.063655px;}
.h25{height:18.066000px;}
.h34{height:18.775500px;}
.he{height:18.959616px;}
.h2e{height:19.950000px;}
.h37{height:19.951500px;}
.h55{height:20.125500px;}
.h1c{height:20.203500px;}
.h49{height:21.180000px;}
.h10{height:23.334913px;}
.h9{height:24.019110px;}
.h44{height:24.885000px;}
.h32{height:24.903000px;}
.hf{height:25.279490px;}
.h36{height:25.492500px;}
.h22{height:28.080000px;}
.hc{height:35.002369px;}
.h12{height:37.658786px;}
.hb{height:38.405376px;}
.h29{height:39.162000px;}
.h6{height:40.120905px;}
.h5{height:40.126905px;}
.h52{height:41.220000px;}
.h4{height:46.322265px;}
.h7{height:46.328265px;}
.h3{height:49.090905px;}
.h13{height:51.287679px;}
.h11{height:51.359410px;}
.h4f{height:51.748500px;}
.h8{height:53.798265px;}
.h26{height:55.504500px;}
.h54{height:57.564000px;}
.h14{height:62.764650px;}
.h4d{height:75.033000px;}
.h56{height:75.034500px;}
.h2b{height:76.599000px;}
.h2{height:77.366187px;}
.h21{height:87.358500px;}
.h27{height:92.944500px;}
.h51{height:95.527500px;}
.h57{height:95.529000px;}
.h20{height:104.637000px;}
.h1e{height:110.277000px;}
.h24{height:110.635500px;}
.ha{height:246.110400px;}
.h17{height:263.160000px;}
.h4e{height:295.596000px;}
.h1d{height:315.792000px;}
.h18{height:349.440000px;}
.h1f{height:350.880000px;}
.h1{height:408.000000px;}
.h0{height:408.189000px;}
.h19{height:526.320000px;}
.h1b{height:542.923828px;}
.h1a{height:570.180000px;}
.h16{height:1785.750000px;}
.h15{height:1785.825000px;}
.w16{width:0.595500px;}
.w25{width:0.727500px;}
.w17{width:1.072500px;}
.w6{width:1.126500px;}
.w2e{width:1.179000px;}
.w34{width:1.270500px;}
.w24{width:1.324500px;}
.w33{width:1.345500px;}
.w1c{width:1.353000px;}
.w1d{width:1.431000px;}
.w38{width:1.521000px;}
.w39{width:1.735500px;}
.w32{width:1.812000px;}
.w19{width:1.822500px;}
.w35{width:1.851000px;}
.w2f{width:1.950000px;}
.w29{width:2.016000px;}
.w37{width:2.104500px;}
.w28{width:2.311500px;}
.w21{width:2.320500px;}
.w2b{width:2.419500px;}
.w31{width:2.523000px;}
.w14{width:2.668500px;}
.w2d{width:2.727000px;}
.w27{width:3.087000px;}
.w2a{width:8.839500px;}
.w23{width:11.656500px;}
.w1f{width:12.070500px;}
.w36{width:14.077500px;}
.w2c{width:18.292500px;}
.w18{width:20.449500px;}
.w22{width:21.150000px;}
.w26{width:22.401000px;}
.w30{width:22.957500px;}
.w20{width:30.795000px;}
.w1e{width:50.956500px;}
.w12{width:64.005000px;}
.w5{width:89.097000px;}
.w42{width:94.650000px;}
.wb{width:123.768000px;}
.w3f{width:182.358000px;}
.wd{width:192.862500px;}
.w44{width:215.092500px;}
.wa{width:252.196500px;}
.w13{width:270.667500px;}
.w41{width:301.807500px;}
.we{width:315.799500px;}
.w3e{width:320.829000px;}
.w43{width:351.145500px;}
.w15{width:368.760000px;}
.w3d{width:402.771000px;}
.w1a{width:422.587500px;}
.wf{width:431.028000px;}
.w2{width:437.529600px;}
.w3c{width:471.288000px;}
.w10{width:478.759500px;}
.w1b{width:503.022000px;}
.w11{width:523.641000px;}
.w8{width:530.395500px;}
.w3b{width:530.521500px;}
.w3a{width:540.469500px;}
.w0{width:544.252500px;}
.w1{width:544.500000px;}
.w7{width:677.997000px;}
.w45{width:766.924500px;}
.w9{width:835.914000px;}
.w40{width:1053.823500px;}
.w46{width:1078.242000px;}
.wc{width:1150.065000px;}
.w3{width:1262.835000px;}
.w4{width:1263.000000px;}
.x67{left:-727.634250px;}
.x2b{left:-721.264050px;}
.x65{left:-661.494750px;}
.x38{left:-622.271550px;}
.x40{left:-577.664550px;}
.x3a{left:-568.420050px;}
.x50{left:-566.246550px;}
.x4e{left:-561.808050px;}
.x3c{left:-559.220550px;}
.x56{left:-557.779050px;}
.x3e{left:-556.150050px;}
.x48{left:-554.702550px;}
.x5a{left:-552.520050px;}
.x54{left:-549.937050px;}
.x4a{left:-548.666550px;}
.x46{left:-547.487550px;}
.x4c{left:-544.622550px;}
.x52{left:-540.226050px;}
.x58{left:-534.547050px;}
.x44{left:-532.552050px;}
.x42{left:-529.865550px;}
.x2f{left:-340.880550px;}
.x63{left:-333.507750px;}
.x31{left:-232.790550px;}
.x61{left:-219.848250px;}
.x6b{left:-204.825750px;}
.x29{left:-167.123550px;}
.x33{left:-152.584050px;}
.x5f{left:-137.906250px;}
.x69{left:-99.360750px;}
.x34{left:-85.091550px;}
.x22{left:-82.427400px;}
.x5d{left:-69.389250px;}
.x24{left:-40.283400px;}
.x36{left:-26.120550px;}
.x26{left:-9.118050px;}
.x20{left:-5.897400px;}
.x2d{left:-4.559550px;}
.x0{left:0.000000px;}
.x10{left:10.938240px;}
.x1{left:20.460000px;}
.x6{left:33.649500px;}
.x2c{left:58.633500px;}
.x9{left:60.453000px;}
.x27{left:62.232000px;}
.xb{left:63.354000px;}
.x11{left:64.996638px;}
.x5b{left:68.706000px;}
.xa{left:78.385500px;}
.x35{left:80.194500px;}
.xc{left:81.286500px;}
.x8{left:83.902500px;}
.x2{left:85.039500px;}
.x7{left:98.274000px;}
.x3{left:102.972000px;}
.x19{left:119.434500px;}
.x5{left:120.904500px;}
.x12{left:124.183242px;}
.x1d{left:125.220750px;}
.x1c{left:126.719250px;}
.x5c{left:128.422500px;}
.x4{left:139.621500px;}
.x1b{left:151.210500px;}
.x68{left:158.394000px;}
.x25{left:164.986050px;}
.x1e{left:169.130100px;}
.x1f{left:175.027500px;}
.x5e{left:196.939500px;}
.x14{left:201.237781px;}
.x32{left:206.658000px;}
.x15{left:208.043085px;}
.x23{left:209.413500px;}
.x28{left:221.197500px;}
.x21{left:251.557500px;}
.x6a{left:263.859000px;}
.xd{left:271.726500px;}
.x16{left:277.318593px;}
.x60{left:278.881500px;}
.x30{left:286.864500px;}
.xe{left:290.485500px;}
.xf{left:308.418000px;}
.x1a{left:312.220500px;}
.x17{left:313.779394px;}
.x18{left:349.924413px;}
.x13{left:358.236385px;}
.x62{left:392.541000px;}
.x2e{left:394.954500px;}
.x41{left:583.939500px;}
.x43{left:586.626000px;}
.x57{left:588.621000px;}
.x51{left:594.300000px;}
.x4b{left:598.696500px;}
.x45{left:601.561500px;}
.x49{left:602.740500px;}
.x53{left:604.011000px;}
.x59{left:606.594000px;}
.x47{left:608.776500px;}
.x3d{left:610.224000px;}
.x55{left:611.853000px;}
.x3b{left:613.294500px;}
.x4d{left:615.882000px;}
.x4f{left:620.320500px;}
.x39{left:622.494000px;}
.x3f{left:631.738500px;}
.x37{left:676.345500px;}
.x64{left:720.528000px;}
.x2a{left:775.338000px;}
.x66{left:786.667500px;}
@media print{
.v2{vertical-align:-7.968000pt;}
.v1{vertical-align:-6.645333pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:5.573333pt;}
.ls0{letter-spacing:0.000000pt;}
.ls14{letter-spacing:4.224000pt;}
.ls3{letter-spacing:5.313408pt;}
.ls13{letter-spacing:7.157333pt;}
.ls12{letter-spacing:7.626667pt;}
.ls11{letter-spacing:8.533333pt;}
.lsf{letter-spacing:14.166767pt;}
.lse{letter-spacing:14.169327pt;}
.ls10{letter-spacing:20.782660pt;}
.lsb{letter-spacing:20.783093pt;}
.ls4{letter-spacing:20.787993pt;}
.lsd{letter-spacing:20.788427pt;}
.lsc{letter-spacing:26.652880pt;}
.ls5{letter-spacing:28.946213pt;}
.ls8{letter-spacing:29.458213pt;}
.ls7{letter-spacing:29.772880pt;}
.lsa{letter-spacing:29.778213pt;}
.ls6{letter-spacing:29.836880pt;}
.ls9{letter-spacing:29.842213pt;}
.ls2{letter-spacing:29.906427pt;}
.ls1{letter-spacing:31.879547pt;}
.ws19{word-spacing:-110.933333pt;}
.ws4{word-spacing:-91.815680pt;}
.wsa{word-spacing:-63.760907pt;}
.ws2{word-spacing:-63.077372pt;}
.ws0{word-spacing:-62.618294pt;}
.ws18{word-spacing:-50.137332pt;}
.ws15{word-spacing:-43.931265pt;}
.ws14{word-spacing:-43.548699pt;}
.ws17{word-spacing:-43.038612pt;}
.wsf{word-spacing:-42.976720pt;}
.ws9{word-spacing:-42.974952pt;}
.ws5{word-spacing:-42.974851pt;}
.ws12{word-spacing:-42.974598pt;}
.wsd{word-spacing:-42.972690pt;}
.ws13{word-spacing:-42.911090pt;}
.ws11{word-spacing:-42.783568pt;}
.ws16{word-spacing:-42.719807pt;}
.wse{word-spacing:-42.592286pt;}
.ws10{word-spacing:-40.360654pt;}
.wsc{word-spacing:-40.296893pt;}
.ws1{word-spacing:-38.807269pt;}
.ws7{word-spacing:-20.594756pt;}
.ws6{word-spacing:-16.843503pt;}
.ws1b{word-spacing:-7.626667pt;}
.ws1c{word-spacing:-7.157333pt;}
.ws1a{word-spacing:-4.266667pt;}
.ws1d{word-spacing:-4.224000pt;}
.wsb{word-spacing:-0.019446pt;}
.ws3{word-spacing:0.000000pt;}
.ws8{word-spacing:24.547929pt;}
._13{margin-left:-23.985044pt;}
._e{margin-left:-21.580196pt;}
._f{margin-left:-11.622339pt;}
._12{margin-left:-10.287663pt;}
._11{margin-left:-8.640000pt;}
._d{margin-left:-7.161623pt;}
._10{margin-left:-6.134675pt;}
._2{margin-left:-4.829091pt;}
._7{margin-left:-3.145325pt;}
._1{margin-left:-1.629091pt;}
._5{width:0.956413pt;}
._0{width:2.479023pt;}
._b{width:4.023313pt;}
._c{width:5.135941pt;}
._3{width:26.434292pt;}
._9{width:27.672233pt;}
._8{width:31.878189pt;}
._a{width:38.287139pt;}
._6{width:45.143949pt;}
._4{width:581.303842pt;}
.fs7{font-size:19.445761pt;}
.fs8{font-size:21.606400pt;}
.fsa{font-size:25.927681pt;}
.fs3{font-size:26.567040pt;}
.fs9{font-size:28.088322pt;}
.fs4{font-size:31.880427pt;}
.fs6{font-size:38.891521pt;}
.fs5{font-size:43.212800pt;}
.fs1{font-size:58.181813pt;}
.fs2{font-size:63.760907pt;}
.fsb{font-size:74.387733pt;}
.fs0{font-size:91.815680pt;}
.fsc{font-size:320.000000pt;}
.fs12{font-size:368.000000pt;}
.fs11{font-size:384.000000pt;}
.fsd{font-size:426.666667pt;}
.fse{font-size:640.000000pt;}
.fs10{font-size:650.666667pt;}
.fsf{font-size:693.333333pt;}
.y105{bottom:-62.325200pt;}
.yff{bottom:-52.966533pt;}
.y109{bottom:-47.797200pt;}
.y103{bottom:-29.046533pt;}
.yfd{bottom:-19.687867pt;}
.y107{bottom:-14.518533pt;}
.yd1{bottom:-2.018667pt;}
.yd3{bottom:-1.333333pt;}
.yf1{bottom:-1.065333pt;}
.yef{bottom:-0.897333pt;}
.yd9{bottom:-0.053333pt;}
.y0{bottom:0.000000pt;}
.ycd{bottom:0.397333pt;}
.ycf{bottom:0.968000pt;}
.yfb{bottom:1.009467pt;}
.y10b{bottom:1.012133pt;}
.yd5{bottom:1.470667pt;}
.yc7{bottom:1.492000pt;}
.ye7{bottom:1.545333pt;}
.yd7{bottom:1.926667pt;}
.yf7{bottom:2.622667pt;}
.ybd{bottom:3.090000pt;}
.yf3{bottom:5.013333pt;}
.yed{bottom:5.462667pt;}
.ye5{bottom:6.152000pt;}
.ye9{bottom:6.965333pt;}
.yf5{bottom:8.540000pt;}
.ycb{bottom:10.188000pt;}
.yf9{bottom:11.088000pt;}
.ydd{bottom:11.348000pt;}
.ydb{bottom:12.978667pt;}
.ye3{bottom:14.473333pt;}
.ydf{bottom:16.104000pt;}
.yc5{bottom:16.852000pt;}
.ye1{bottom:18.548000pt;}
.yeb{bottom:18.992000pt;}
.y101{bottom:19.226800pt;}
.y10d{bottom:19.228133pt;}
.yc9{bottom:20.372000pt;}
.yc3{bottom:21.865333pt;}
.y37{bottom:23.697962pt;}
.y9f{bottom:27.149333pt;}
.y7d{bottom:27.661333pt;}
.y4d{bottom:30.806421pt;}
.y33{bottom:32.473353pt;}
.y43{bottom:34.695759pt;}
.y4c{bottom:36.640149pt;}
.y4b{bottom:42.473877pt;}
.y32{bottom:44.140809pt;}
.y42{bottom:44.627163pt;}
.y89{bottom:44.750667pt;}
.y7c{bottom:46.922667pt;}
.y2d{bottom:46.945333pt;}
.y10c{bottom:47.156000pt;}
.y7b{bottom:48.582667pt;}
.y9e{bottom:48.736000pt;}
.y9a{bottom:50.396000pt;}
.y4a{bottom:54.141334pt;}
.y3f{bottom:54.141520pt;}
.y41{bottom:56.294621pt;}
.y2e{bottom:59.140000pt;}
.y49{bottom:61.350517pt;}
.y65{bottom:62.405333pt;}
.y3e{bottom:62.776541pt;}
.y88{bottom:64.012000pt;}
.y87{bottom:65.672000pt;}
.y1f{bottom:66.206667pt;}
.y2c{bottom:67.866667pt;}
.y40{bottom:67.962076pt;}
.y31{bottom:68.705633pt;}
.y48{bottom:69.128821pt;}
.y9d{bottom:69.657333pt;}
.y7a{bottom:70.168000pt;}
.y99{bottom:71.981333pt;}
.y3d{bottom:74.443996pt;}
.y30{bottom:74.487595pt;}
.y6e{bottom:77.474667pt;}
.y47{bottom:77.684956pt;}
.yae{bottom:79.371600pt;}
.y64{bottom:83.326667pt;}
.y1e{bottom:87.128000pt;}
.y86{bottom:87.257333pt;}
.y92{bottom:88.918667pt;}
.y2b{bottom:89.452000pt;}
.y79{bottom:91.089333pt;}
.y98{bottom:92.902667pt;}
.y6d{bottom:98.396000pt;}
.yb9{bottom:101.041067pt;}
.y63{bottom:104.912000pt;}
.y8f{bottom:106.518667pt;}
.y85{bottom:108.178667pt;}
.y1d{bottom:108.713333pt;}
.y2a{bottom:110.373333pt;}
.y91{bottom:110.504000pt;}
.y78{bottom:112.676000pt;}
.y27{bottom:112.698667pt;}
.y97{bottom:114.489333pt;}
.y6c{bottom:119.981333pt;}
.y36{bottom:123.304492pt;}
.y38{bottom:125.442634pt;}
.y62{bottom:125.833333pt;}
.y1c{bottom:127.974667pt;}
.y7{bottom:129.078667pt;}
.y84{bottom:129.765333pt;}
.y53{bottom:129.818667pt;}
.y29{bottom:131.960000pt;}
.y77{bottom:133.597333pt;}
.y26{bottom:133.620000pt;}
.y96{bottom:133.750667pt;}
.y35{bottom:134.077663pt;}
.yf{bottom:134.576000pt;}
.y95{bottom:135.410667pt;}
.y6b{bottom:140.902667pt;}
.y46{bottom:141.647435pt;}
.ya4{bottom:143.741333pt;}
.y34{bottom:145.745119pt;}
.y57{bottom:147.418667pt;}
.y1b{bottom:148.896000pt;}
.y45{bottom:150.282464pt;}
.y83{bottom:150.686667pt;}
.y3c{bottom:151.370315pt;}
.y52{bottom:151.404000pt;}
.y28{bottom:152.881333pt;}
.y9c{bottom:153.010667pt;}
.y76{bottom:155.182667pt;}
.y25{bottom:155.205333pt;}
.ye{bottom:155.497333pt;}
.y94{bottom:156.996000pt;}
.y6{bottom:158.302667pt;}
.y10a{bottom:160.038667pt;}
.y3b{bottom:161.171367pt;}
.y5c{bottom:161.456000pt;}
.y44{bottom:161.949919pt;}
.y6a{bottom:162.489333pt;}
.y72{bottom:164.662667pt;}
.y61{bottom:166.680000pt;}
.y56{bottom:168.341333pt;}
.ya3{bottom:168.648000pt;}
.y3a{bottom:170.246057pt;}
.y1a{bottom:170.481333pt;}
.yb1{bottom:170.863867pt;}
.y8e{bottom:172.272000pt;}
.y51{bottom:172.325333pt;}
.y82{bottom:173.933333pt;}
.y24{bottom:174.466667pt;}
.yad{bottom:175.371600pt;}
.y75{bottom:176.104000pt;}
.y93{bottom:176.257333pt;}
.yd{bottom:179.076000pt;}
.y39{bottom:181.913512pt;}
.y14{bottom:181.956000pt;}
.y5b{bottom:182.377333pt;}
.yb8{bottom:182.401067pt;}
.y69{bottom:183.410667pt;}
.y5{bottom:187.526667pt;}
.y71{bottom:187.909333pt;}
.y2f{bottom:188.947968pt;}
.y60{bottom:189.926667pt;}
.y19{bottom:191.404000pt;}
.y8d{bottom:191.533333pt;}
.y55{bottom:191.586667pt;}
.ya2{bottom:191.894667pt;}
.y8c{bottom:193.193333pt;}
.y23{bottom:193.728000pt;}
.y50{bottom:193.912000pt;}
.y9b{bottom:195.518667pt;}
.yc{bottom:197.141333pt;}
.y81{bottom:197.178667pt;}
.y74{bottom:197.690667pt;}
.y13{bottom:205.202667pt;}
.y5a{bottom:205.624000pt;}
.y68{bottom:206.656000pt;}
.y5f{bottom:210.848000pt;}
.y70{bottom:211.156000pt;}
.y18{bottom:212.989333pt;}
.ya5{bottom:213.480000pt;}
.y22{bottom:214.649333pt;}
.y8b{bottom:214.780000pt;}
.y4f{bottom:214.833333pt;}
.ya1{bottom:215.140000pt;}
.yb{bottom:215.206667pt;}
.y90{bottom:216.440000pt;}
.yc1{bottom:216.502800pt;}
.y73{bottom:216.950667pt;}
.y80{bottom:218.764000pt;}
.y12{bottom:228.449333pt;}
.y59{bottom:228.869333pt;}
.y67{bottom:229.902667pt;}
.y5e{bottom:232.433333pt;}
.y17{bottom:233.910667pt;}
.y6f{bottom:234.401333pt;}
.ya{bottom:235.597333pt;}
.y4{bottom:235.648000pt;}
.y8a{bottom:235.701333pt;}
.y16{bottom:236.212000pt;}
.y21{bottom:236.234667pt;}
.y54{bottom:236.418667pt;}
.y100{bottom:236.490667pt;}
.ya0{bottom:236.726667pt;}
.y7f{bottom:238.025333pt;}
.ya7{bottom:242.081333pt;}
.y11{bottom:251.694667pt;}
.y58{bottom:252.116000pt;}
.y66{bottom:253.149333pt;}
.y5d{bottom:253.356000pt;}
.y3{bottom:253.713333pt;}
.y15{bottom:255.473333pt;}
.y20{bottom:255.496000pt;}
.y4e{bottom:255.680000pt;}
.y7e{bottom:257.286667pt;}
.y9{bottom:257.648000pt;}
.ya6{bottom:260.500000pt;}
.yb7{bottom:263.761067pt;}
.y106{bottom:270.236000pt;}
.yac{bottom:271.371600pt;}
.y2{bottom:271.778667pt;}
.yb0{bottom:274.863867pt;}
.y102{bottom:284.764000pt;}
.y8{bottom:290.961333pt;}
.y108{bottom:303.514667pt;}
.yc0{bottom:317.878800pt;}
.y104{bottom:318.042667pt;}
.y1{bottom:327.640000pt;}
.yb6{bottom:345.121067pt;}
.yfa{bottom:349.374667pt;}
.y10{bottom:351.276000pt;}
.yfc{bottom:370.072000pt;}
.yaf{bottom:378.863867pt;}
.yfe{bottom:403.350667pt;}
.ybf{bottom:419.254800pt;}
.ybe{bottom:520.630800pt;}
.yab{bottom:931.291600pt;}
.yaa{bottom:1015.291600pt;}
.ya9{bottom:1099.291600pt;}
.yc8{bottom:1128.293333pt;}
.yea{bottom:1129.673333pt;}
.ye0{bottom:1130.117333pt;}
.yde{bottom:1132.561333pt;}
.ye2{bottom:1134.192000pt;}
.yda{bottom:1135.686667pt;}
.ydc{bottom:1137.317333pt;}
.yf8{bottom:1137.577333pt;}
.yca{bottom:1138.477333pt;}
.yf4{bottom:1140.125333pt;}
.ye8{bottom:1141.700000pt;}
.ye4{bottom:1142.513333pt;}
.yec{bottom:1143.202667pt;}
.yf2{bottom:1143.652000pt;}
.yf6{bottom:1146.042667pt;}
.yd6{bottom:1146.738667pt;}
.ye6{bottom:1147.120000pt;}
.yd4{bottom:1147.194667pt;}
.yce{bottom:1147.697333pt;}
.ycc{bottom:1148.268000pt;}
.yd8{bottom:1148.718667pt;}
.yee{bottom:1149.562667pt;}
.yf0{bottom:1149.730667pt;}
.yd2{bottom:1149.998667pt;}
.yd0{bottom:1150.684000pt;}
.ya8{bottom:1183.291600pt;}
.yb3{bottom:1214.069067pt;}
.yc6{bottom:1252.506667pt;}
.yb5{bottom:1263.407600pt;}
.ybc{bottom:1281.662667pt;}
.ybb{bottom:1284.730667pt;}
.yc4{bottom:1342.480000pt;}
.yb2{bottom:1368.789067pt;}
.yb4{bottom:1398.074267pt;}
.yba{bottom:1419.418667pt;}
.yc2{bottom:1442.800000pt;}
.h39{height:0.144000pt;}
.h2c{height:0.552000pt;}
.h38{height:0.814667pt;}
.h2d{height:0.989333pt;}
.h41{height:1.121333pt;}
.h42{height:1.140000pt;}
.h46{height:1.188000pt;}
.h47{height:1.210667pt;}
.h30{height:1.338667pt;}
.h3f{height:1.432000pt;}
.h3b{height:1.522667pt;}
.h31{height:1.529333pt;}
.h28{height:1.530667pt;}
.h45{height:1.554667pt;}
.h2a{height:1.580000pt;}
.h4b{height:1.654667pt;}
.h3c{height:1.662667pt;}
.h2f{height:1.705333pt;}
.h3d{height:1.797333pt;}
.h4a{height:1.798667pt;}
.h43{height:1.985333pt;}
.h35{height:2.046667pt;}
.h48{height:2.234667pt;}
.h4c{height:2.646667pt;}
.h53{height:3.361333pt;}
.h33{height:3.456000pt;}
.h3e{height:6.845333pt;}
.h23{height:10.430667pt;}
.h3a{height:11.005333pt;}
.h50{height:12.720000pt;}
.h40{height:13.722667pt;}
.hd{height:15.167693pt;}
.h25{height:16.058667pt;}
.h34{height:16.689333pt;}
.he{height:16.852992pt;}
.h2e{height:17.733333pt;}
.h37{height:17.734667pt;}
.h55{height:17.889333pt;}
.h1c{height:17.958667pt;}
.h49{height:18.826667pt;}
.h10{height:20.742145pt;}
.h9{height:21.350320pt;}
.h44{height:22.120000pt;}
.h32{height:22.136000pt;}
.hf{height:22.470658pt;}
.h36{height:22.660000pt;}
.h22{height:24.960000pt;}
.hc{height:31.113217pt;}
.h12{height:33.474476pt;}
.hb{height:34.138112pt;}
.h29{height:34.810667pt;}
.h6{height:35.663027pt;}
.h5{height:35.668360pt;}
.h52{height:36.640000pt;}
.h4{height:41.175347pt;}
.h7{height:41.180680pt;}
.h3{height:43.636360pt;}
.h13{height:45.589048pt;}
.h11{height:45.652809pt;}
.h4f{height:45.998667pt;}
.h8{height:47.820680pt;}
.h26{height:49.337333pt;}
.h54{height:51.168000pt;}
.h14{height:55.790800pt;}
.h4d{height:66.696000pt;}
.h56{height:66.697333pt;}
.h2b{height:68.088000pt;}
.h2{height:68.769944pt;}
.h21{height:77.652000pt;}
.h27{height:82.617333pt;}
.h51{height:84.913333pt;}
.h57{height:84.914667pt;}
.h20{height:93.010667pt;}
.h1e{height:98.024000pt;}
.h24{height:98.342667pt;}
.ha{height:218.764800pt;}
.h17{height:233.920000pt;}
.h4e{height:262.752000pt;}
.h1d{height:280.704000pt;}
.h18{height:310.613333pt;}
.h1f{height:311.893333pt;}
.h1{height:362.666667pt;}
.h0{height:362.834667pt;}
.h19{height:467.840000pt;}
.h1b{height:482.598958pt;}
.h1a{height:506.826667pt;}
.h16{height:1587.333333pt;}
.h15{height:1587.400000pt;}
.w16{width:0.529333pt;}
.w25{width:0.646667pt;}
.w17{width:0.953333pt;}
.w6{width:1.001333pt;}
.w2e{width:1.048000pt;}
.w34{width:1.129333pt;}
.w24{width:1.177333pt;}
.w33{width:1.196000pt;}
.w1c{width:1.202667pt;}
.w1d{width:1.272000pt;}
.w38{width:1.352000pt;}
.w39{width:1.542667pt;}
.w32{width:1.610667pt;}
.w19{width:1.620000pt;}
.w35{width:1.645333pt;}
.w2f{width:1.733333pt;}
.w29{width:1.792000pt;}
.w37{width:1.870667pt;}
.w28{width:2.054667pt;}
.w21{width:2.062667pt;}
.w2b{width:2.150667pt;}
.w31{width:2.242667pt;}
.w14{width:2.372000pt;}
.w2d{width:2.424000pt;}
.w27{width:2.744000pt;}
.w2a{width:7.857333pt;}
.w23{width:10.361333pt;}
.w1f{width:10.729333pt;}
.w36{width:12.513333pt;}
.w2c{width:16.260000pt;}
.w18{width:18.177333pt;}
.w22{width:18.800000pt;}
.w26{width:19.912000pt;}
.w30{width:20.406667pt;}
.w20{width:27.373333pt;}
.w1e{width:45.294667pt;}
.w12{width:56.893333pt;}
.w5{width:79.197333pt;}
.w42{width:84.133333pt;}
.wb{width:110.016000pt;}
.w3f{width:162.096000pt;}
.wd{width:171.433333pt;}
.w44{width:191.193333pt;}
.wa{width:224.174667pt;}
.w13{width:240.593333pt;}
.w41{width:268.273333pt;}
.we{width:280.710667pt;}
.w3e{width:285.181333pt;}
.w43{width:312.129333pt;}
.w15{width:327.786667pt;}
.w3d{width:358.018667pt;}
.w1a{width:375.633333pt;}
.wf{width:383.136000pt;}
.w2{width:388.915200pt;}
.w3c{width:418.922667pt;}
.w10{width:425.564000pt;}
.w1b{width:447.130667pt;}
.w11{width:465.458667pt;}
.w8{width:471.462667pt;}
.w3b{width:471.574667pt;}
.w3a{width:480.417333pt;}
.w0{width:483.780000pt;}
.w1{width:484.000000pt;}
.w7{width:602.664000pt;}
.w45{width:681.710667pt;}
.w9{width:743.034667pt;}
.w40{width:936.732000pt;}
.w46{width:958.437333pt;}
.wc{width:1022.280000pt;}
.w3{width:1122.520000pt;}
.w4{width:1122.666667pt;}
.x67{left:-646.786000pt;}
.x2b{left:-641.123600pt;}
.x65{left:-587.995333pt;}
.x38{left:-553.130267pt;}
.x40{left:-513.479600pt;}
.x3a{left:-505.262267pt;}
.x50{left:-503.330267pt;}
.x4e{left:-499.384933pt;}
.x3c{left:-497.084933pt;}
.x56{left:-495.803600pt;}
.x3e{left:-494.355600pt;}
.x48{left:-493.068933pt;}
.x5a{left:-491.128933pt;}
.x54{left:-488.832933pt;}
.x4a{left:-487.703600pt;}
.x46{left:-486.655600pt;}
.x4c{left:-484.108933pt;}
.x52{left:-480.200933pt;}
.x58{left:-475.152933pt;}
.x44{left:-473.379600pt;}
.x42{left:-470.991600pt;}
.x2f{left:-303.004933pt;}
.x63{left:-296.451333pt;}
.x31{left:-206.924933pt;}
.x61{left:-195.420667pt;}
.x6b{left:-182.067333pt;}
.x29{left:-148.554267pt;}
.x33{left:-135.630267pt;}
.x5f{left:-122.583333pt;}
.x69{left:-88.320667pt;}
.x34{left:-75.636933pt;}
.x22{left:-73.268800pt;}
.x5d{left:-61.679333pt;}
.x24{left:-35.807467pt;}
.x36{left:-23.218267pt;}
.x26{left:-8.104933pt;}
.x20{left:-5.242133pt;}
.x2d{left:-4.052933pt;}
.x0{left:0.000000pt;}
.x10{left:9.722880pt;}
.x1{left:18.186667pt;}
.x6{left:29.910667pt;}
.x2c{left:52.118667pt;}
.x9{left:53.736000pt;}
.x27{left:55.317333pt;}
.xb{left:56.314667pt;}
.x11{left:57.774789pt;}
.x5b{left:61.072000pt;}
.xa{left:69.676000pt;}
.x35{left:71.284000pt;}
.xc{left:72.254667pt;}
.x8{left:74.580000pt;}
.x2{left:75.590667pt;}
.x7{left:87.354667pt;}
.x3{left:91.530667pt;}
.x19{left:106.164000pt;}
.x5{left:107.470667pt;}
.x12{left:110.385104pt;}
.x1d{left:111.307333pt;}
.x1c{left:112.639333pt;}
.x5c{left:114.153333pt;}
.x4{left:124.108000pt;}
.x1b{left:134.409333pt;}
.x68{left:140.794667pt;}
.x25{left:146.654267pt;}
.x1e{left:150.337867pt;}
.x1f{left:155.580000pt;}
.x5e{left:175.057333pt;}
.x14{left:178.878027pt;}
.x32{left:183.696000pt;}
.x15{left:184.927186pt;}
.x23{left:186.145333pt;}
.x28{left:196.620000pt;}
.x21{left:223.606667pt;}
.x6a{left:234.541333pt;}
.xd{left:241.534667pt;}
.x16{left:246.505416pt;}
.x60{left:247.894667pt;}
.x30{left:254.990667pt;}
.xe{left:258.209333pt;}
.xf{left:274.149333pt;}
.x1a{left:277.529333pt;}
.x17{left:278.915017pt;}
.x18{left:311.043923pt;}
.x13{left:318.432342pt;}
.x62{left:348.925333pt;}
.x2e{left:351.070667pt;}
.x41{left:519.057333pt;}
.x43{left:521.445333pt;}
.x57{left:523.218667pt;}
.x51{left:528.266667pt;}
.x4b{left:532.174667pt;}
.x45{left:534.721333pt;}
.x49{left:535.769333pt;}
.x53{left:536.898667pt;}
.x59{left:539.194667pt;}
.x47{left:541.134667pt;}
.x3d{left:542.421333pt;}
.x55{left:543.869333pt;}
.x3b{left:545.150667pt;}
.x4d{left:547.450667pt;}
.x4f{left:551.396000pt;}
.x39{left:553.328000pt;}
.x3f{left:561.545333pt;}
.x37{left:601.196000pt;}
.x64{left:640.469333pt;}
.x2a{left:689.189333pt;}
.x66{left:699.260000pt;}
}




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