
    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_d2279e2d9934056889922cb9.woff')format("woff");}.ff1{font-family:ff1;line-height:1.043000;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_d52d86cd5f1e14226ea113eb.woff')format("woff");}.ff2{font-family:ff2;line-height:0.747000;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_e38cfec95b04533fcc21a24f.woff')format("woff");}.ff3{font-family:ff3;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_3bc461d45c6468a9856f3f86.woff')format("woff");}.ff4{font-family:ff4;line-height:1.100000;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_dd5fd84590fbcfd96aa23902.woff')format("woff");}.ff5{font-family:ff5;line-height:1.141000;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_9c890580ab32884594f6cc58.woff')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_4d6a171397d038d29c9f6d18.woff')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_a1ddb35615adb4e47691a38d.woff')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_4f6d34a75a0e893a2763230f.woff')format("woff");}.ff9{font-family:ff9;line-height:1.115000;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_5dd25a32e968731a2e3a5a1e.woff')format("woff");}.ffa{font-family:ffa;line-height:1.141000;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_5988765316d195dafcc9cebf.woff')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_25e577c9aa41c99d00859cea.woff')format("woff");}.ffc{font-family:ffc;line-height:1.043000;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_4e292b31fa9301a79f9e41c5.woff')format("woff");}.ffd{font-family:ffd;line-height:0.747000;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_0be28cfbce5ade2b480c7321.woff')format("woff");}.ffe{font-family:ffe;line-height:0.767000;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_867ab5f3173eb95c5aef7eb1.woff')format("woff");}.fff{font-family:fff;line-height:1.115000;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_0be28cfbce5ade2b480c7321.woff')format("woff");}.ff10{font-family:ff10;line-height:0.767000;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_20f1bc9943684469fc5923d8.woff')format("woff");}.ff11{font-family:ff11;line-height:1.043000;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_17764e44aba58eba9d73b15a.woff')format("woff");}.ff12{font-family:ff12;line-height:0.747000;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_d53a5973e9d35b4d3b037e80.woff')format("woff");}.ff13{font-family:ff13;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:ff14;src:url('chunks/assets/font_45df9648f07012be9a5cb9ac.woff')format("woff");}.ff14{font-family:ff14;line-height:1.100000;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_ff6714c86a63ca32d495f1f3.woff')format("woff");}.ff15{font-family:ff15;line-height:1.141000;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_ff894185d18faac2c9fb87bf.woff')format("woff");}.ff16{font-family:ff16;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:ff17;src:url('chunks/assets/font_bd722b7a315e155b26a8038d.woff')format("woff");}.ff17{font-family:ff17;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:ff18;src:url('chunks/assets/font_f41bb1120e08aa0e60296b3d.woff')format("woff");}.ff18{font-family:ff18;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:ff19;src:url('chunks/assets/font_2571c9e8f2f86d4e6555c23b.woff')format("woff");}.ff19{font-family:ff19;line-height:1.115000;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;}
.m5{transform:matrix(0.129545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.129545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.129545,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.227273,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227273,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227273,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.234375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234375,0.000000,0.000000,0.250000,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);}
.v0{vertical-align:0.000000px;}
.ls1b{letter-spacing:-76.892616px;}
.ls1a{letter-spacing:-11.637595px;}
.ls19{letter-spacing:-3.030792px;}
.ls13{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.153070px;}
.lsd{letter-spacing:0.459211px;}
.ls14{letter-spacing:0.765351px;}
.ls25{letter-spacing:0.807872px;}
.ls11{letter-spacing:0.829134px;}
.ls20{letter-spacing:0.969445px;}
.ls21{letter-spacing:0.994956px;}
.ls1{letter-spacing:1.020468px;}
.ls4{letter-spacing:1.071491px;}
.ls16{letter-spacing:1.148028px;}
.ls1e{letter-spacing:1.224562px;}
.ls22{letter-spacing:1.326608px;}
.ls12{letter-spacing:1.381890px;}
.ls3{letter-spacing:1.479679px;}
.ls8{letter-spacing:1.581725px;}
.lsc{letter-spacing:1.632749px;}
.ls1d{letter-spacing:1.683772px;}
.ls26{letter-spacing:1.734796px;}
.lsa{letter-spacing:1.785819px;}
.lsb{letter-spacing:1.836842px;}
.ls23{letter-spacing:1.887866px;}
.ls7{letter-spacing:1.938889px;}
.ls9{letter-spacing:1.964401px;}
.ls1f{letter-spacing:1.989913px;}
.ls2{letter-spacing:2.040936px;}
.ls1c{letter-spacing:2.045197px;}
.ls6{letter-spacing:2.449123px;}
.ls10{letter-spacing:3.061404px;}
.ls17{letter-spacing:3.571656px;}
.ls15{letter-spacing:3.741744px;}
.ls5{letter-spacing:4.234942px;}
.ls18{letter-spacing:4.490079px;}
.lse{letter-spacing:6.377925px;}
.lsf{letter-spacing:10.204740px;}
.ls24{letter-spacing:11.905560px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(255,255,255),0 0.015em rgb(255,255,255),0.015em 0 rgb(255,255,255),0 -0.015em  rgb(255,255,255);}
.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;}
.sc1{-webkit-text-stroke:0.015em rgb(255,255,255);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws17{word-spacing:-59.527800px;}
.ws27{word-spacing:-57.320797px;}
.ws1b{word-spacing:-36.000000px;}
.ws19{word-spacing:-29.019705px;}
.ws12{word-spacing:-28.573104px;}
.ws1a{word-spacing:-27.756852px;}
.ws10{word-spacing:-27.127644px;}
.ws7{word-spacing:-21.225734px;}
.ws8{word-spacing:-19.439915px;}
.ws3{word-spacing:-19.031728px;}
.ws2b{word-spacing:-18.980705px;}
.wsb{word-spacing:-18.955193px;}
.ws9{word-spacing:-18.929681px;}
.ws30{word-spacing:-18.878658px;}
.wsd{word-spacing:-18.827635px;}
.wsc{word-spacing:-18.776611px;}
.ws28{word-spacing:-18.674564px;}
.wse{word-spacing:-18.623541px;}
.wsa{word-spacing:-18.572518px;}
.ws5{word-spacing:-18.470471px;}
.ws2f{word-spacing:-18.317401px;}
.ws29{word-spacing:-18.215354px;}
.ws6{word-spacing:-18.062284px;}
.ws2{word-spacing:-18.011260px;}
.ws2d{word-spacing:-17.985748px;}
.ws2c{word-spacing:-17.960237px;}
.ws39{word-spacing:-17.798743px;}
.ws18{word-spacing:-17.507427px;}
.wsf{word-spacing:-17.450003px;}
.ws0{word-spacing:-17.143862px;}
.ws11{word-spacing:-17.011202px;}
.ws4{word-spacing:-16.990792px;}
.ws13{word-spacing:-16.582680px;}
.ws31{word-spacing:-14.966899px;}
.ws15{word-spacing:-13.818900px;}
.ws23{word-spacing:-10.204740px;}
.ws2e{word-spacing:-6.735089px;}
.ws14{word-spacing:-4.350190px;}
.ws22{word-spacing:-3.061404px;}
.ws36{word-spacing:-1.989913px;}
.ws21{word-spacing:-1.938889px;}
.ws37{word-spacing:-1.887866px;}
.ws1f{word-spacing:-1.836842px;}
.ws38{word-spacing:-1.734796px;}
.ws35{word-spacing:-1.683772px;}
.ws20{word-spacing:-0.765351px;}
.ws1d{word-spacing:-0.153070px;}
.ws1e{word-spacing:0.000000px;}
.ws24{word-spacing:3.030792px;}
.ws2a{word-spacing:6.321799px;}
.ws1{word-spacing:6.326902px;}
.ws25{word-spacing:11.637595px;}
.ws26{word-spacing:76.892616px;}
.ws33{word-spacing:206.942893px;}
.ws16{word-spacing:504.580093px;}
.ws32{word-spacing:2877.177493px;}
.ws34{word-spacing:6261.247200px;}
.ws1c{word-spacing:6261.283200px;}
._13{margin-left:-462.024000px;}
._14{margin-left:-298.548000px;}
._7{margin-left:-27.960823px;}
._2{margin-left:-26.532168px;}
._4{margin-left:-25.511700px;}
._16{margin-left:-21.259800px;}
._12{margin-left:-12.471010px;}
._f{margin-left:-11.429242px;}
._10{margin-left:-7.347370px;}
._9{margin-left:-5.918714px;}
._6{margin-left:-4.234942px;}
._8{margin-left:-3.163451px;}
._3{margin-left:-2.040936px;}
._1{margin-left:-1.020468px;}
._e{width:1.020468px;}
._b{width:2.245030px;}
._c{width:3.265498px;}
._5{width:4.898246px;}
._0{width:6.633042px;}
._11{width:8.572003px;}
._d{width:10.204680px;}
._a{width:12.755850px;}
._15{width:2304.508487px;}
.fc3{color:transparent;}
.fc1{color:rgb(63,106,48);}
.fc4{color:rgb(0,0,0);}
.fc2{color:rgb(255,255,255);}
.fc0{color:rgb(35,31,32);}
.fs10{font-size:36.000000px;}
.fs7{font-size:42.519600px;}
.fs1{font-size:46.771800px;}
.fs0{font-size:51.023400px;}
.fs4{font-size:55.275600px;}
.fsa{font-size:57.401400px;}
.fs9{font-size:59.527800px;}
.fs8{font-size:68.031600px;}
.fse{font-size:72.283200px;}
.fsd{font-size:75.769800px;}
.fsc{font-size:81.637800px;}
.fs6{font-size:85.039200px;}
.fsb{font-size:89.291400px;}
.fs2{font-size:102.047400px;}
.fs5{font-size:110.551200px;}
.fs3{font-size:127.558800px;}
.fsf{font-size:640.771800px;}
.y3d{bottom:-36.908250px;}
.yd5{bottom:-32.973000px;}
.y6a{bottom:-32.840550px;}
.y97{bottom:-30.870900px;}
.y0{bottom:0.000000px;}
.ycc{bottom:0.546000px;}
.y69{bottom:69.985770px;}
.y96{bottom:71.955420px;}
.y68{bottom:82.741470px;}
.y95{bottom:84.711120px;}
.ye{bottom:85.130812px;}
.ya5{bottom:89.066062px;}
.y67{bottom:95.497350px;}
.y94{bottom:97.467000px;}
.yd{bottom:107.453550px;}
.ya4{bottom:111.388800px;}
.y25{bottom:115.987214px;}
.ybc{bottom:119.922464px;}
.yc{bottom:129.776287px;}
.ya3{bottom:133.711537px;}
.y24{bottom:136.179724px;}
.ybb{bottom:140.114974px;}
.yb{bottom:152.099025px;}
.y26{bottom:155.464200px;}
.ya2{bottom:156.034275px;}
.y23{bottom:156.372235px;}
.ybd{bottom:159.399450px;}
.yba{bottom:160.307485px;}
.ya{bottom:174.421762px;}
.y22{bottom:176.564745px;}
.ya1{bottom:178.357012px;}
.yb9{bottom:180.499995px;}
.y9{bottom:196.744500px;}
.y21{bottom:196.757256px;}
.y27{bottom:199.131900px;}
.ya0{bottom:200.679750px;}
.yb8{bottom:200.692506px;}
.ybe{bottom:203.067150px;}
.y20{bottom:216.949766px;}
.y8{bottom:219.067237px;}
.yb7{bottom:220.885016px;}
.y9f{bottom:223.002487px;}
.y1f{bottom:237.142277px;}
.yb6{bottom:241.077527px;}
.y7{bottom:241.389975px;}
.y9e{bottom:245.325225px;}
.y34{bottom:260.572950px;}
.y6{bottom:263.712712px;}
.ycb{bottom:264.508200px;}
.y9d{bottom:267.647962px;}
.y5{bottom:286.035450px;}
.y9c{bottom:289.970700px;}
.y33{bottom:298.925670px;}
.yca{bottom:302.860920px;}
.y4{bottom:308.358187px;}
.y32{bottom:311.681550px;}
.y9b{bottom:312.293437px;}
.yc9{bottom:315.616800px;}
.y3{bottom:330.680925px;}
.y9a{bottom:334.616175px;}
.y2{bottom:353.003662px;}
.y99{bottom:356.938912px;}
.y1{bottom:375.326400px;}
.y98{bottom:379.261650px;}
.y65{bottom:380.636587px;}
.y92{bottom:382.606237px;}
.y64{bottom:402.959325px;}
.y91{bottom:404.928975px;}
.y29{bottom:413.020050px;}
.yc0{bottom:416.955300px;}
.y63{bottom:425.282062px;}
.y90{bottom:427.251712px;}
.y62{bottom:447.604800px;}
.y8f{bottom:449.574450px;}
.y61{bottom:469.927537px;}
.y8e{bottom:471.897187px;}
.y60{bottom:492.250275px;}
.y8d{bottom:494.219925px;}
.y5f{bottom:514.573012px;}
.y8c{bottom:516.542662px;}
.y5e{bottom:536.895750px;}
.y8b{bottom:538.865400px;}
.y5d{bottom:559.218487px;}
.y8a{bottom:561.188137px;}
.y1e{bottom:568.972959px;}
.yb5{bottom:572.908209px;}
.y5c{bottom:581.541225px;}
.y89{bottom:583.510875px;}
.y1d{bottom:591.295696px;}
.yb4{bottom:595.230946px;}
.y5b{bottom:603.863962px;}
.y88{bottom:605.833612px;}
.y1c{bottom:613.618434px;}
.yb3{bottom:617.553684px;}
.y5a{bottom:626.186700px;}
.y87{bottom:628.156350px;}
.y1b{bottom:635.941171px;}
.yb2{bottom:639.876421px;}
.y59{bottom:648.509437px;}
.y86{bottom:650.479087px;}
.y1a{bottom:658.263909px;}
.yb1{bottom:662.199159px;}
.y58{bottom:670.832175px;}
.y85{bottom:672.801825px;}
.y19{bottom:680.586646px;}
.yb0{bottom:684.521896px;}
.y57{bottom:693.154913px;}
.y84{bottom:695.124563px;}
.y18{bottom:702.909384px;}
.yaf{bottom:706.844634px;}
.y56{bottom:715.477650px;}
.y83{bottom:717.447300px;}
.y17{bottom:725.232121px;}
.yae{bottom:729.167371px;}
.y55{bottom:737.800388px;}
.y82{bottom:739.770038px;}
.y16{bottom:747.554859px;}
.yad{bottom:751.490109px;}
.y54{bottom:760.123125px;}
.y81{bottom:762.092775px;}
.y15{bottom:769.877596px;}
.yac{bottom:773.812846px;}
.y53{bottom:782.445862px;}
.y80{bottom:784.415512px;}
.y14{bottom:792.200334px;}
.yab{bottom:796.135584px;}
.y52{bottom:804.768600px;}
.y7f{bottom:806.738250px;}
.y13{bottom:814.523071px;}
.yaa{bottom:818.458321px;}
.y51{bottom:827.091337px;}
.y7e{bottom:829.060987px;}
.y12{bottom:836.845809px;}
.ya9{bottom:840.781059px;}
.y50{bottom:849.414075px;}
.y7d{bottom:851.383725px;}
.y11{bottom:859.168546px;}
.ya8{bottom:863.103796px;}
.y4f{bottom:871.736812px;}
.y7c{bottom:873.706462px;}
.y10{bottom:881.491284px;}
.ya7{bottom:885.426534px;}
.y4e{bottom:894.059550px;}
.y7b{bottom:896.029200px;}
.yf{bottom:903.814021px;}
.ya6{bottom:907.749271px;}
.y2c{bottom:967.177558px;}
.yc3{bottom:971.112808px;}
.y42{bottom:977.614915px;}
.y4b{bottom:978.671468px;}
.y6f{bottom:979.584565px;}
.y66{bottom:980.454150px;}
.y78{bottom:980.641118px;}
.y93{bottom:982.423800px;}
.y2b{bottom:985.252679px;}
.yc2{bottom:989.187929px;}
.y41{bottom:995.690036px;}
.y4a{bottom:996.746590px;}
.y6e{bottom:997.659686px;}
.y77{bottom:998.716240px;}
.y28{bottom:999.735000px;}
.y2a{bottom:1003.327800px;}
.ybf{bottom:1003.670250px;}
.yc1{bottom:1007.263050px;}
.y40{bottom:1013.765158px;}
.y49{bottom:1014.821711px;}
.y6d{bottom:1015.734808px;}
.y76{bottom:1016.791361px;}
.y30{bottom:1029.636900px;}
.y3f{bottom:1031.840279px;}
.y48{bottom:1032.896832px;}
.yc7{bottom:1033.572150px;}
.y6c{bottom:1033.809929px;}
.y75{bottom:1034.866482px;}
.y2f{bottom:1049.663700px;}
.y3e{bottom:1049.915400px;}
.y47{bottom:1050.971953px;}
.y6b{bottom:1051.885050px;}
.y74{bottom:1052.941603px;}
.yc6{bottom:1053.598950px;}
.y46{bottom:1089.830700px;}
.y2e{bottom:1091.403029px;}
.y73{bottom:1091.800350px;}
.yc5{bottom:1095.338279px;}
.y45{bottom:1109.857500px;}
.y72{bottom:1111.827150px;}
.y2d{bottom:1123.297050px;}
.yc4{bottom:1127.232300px;}
.y3c{bottom:1133.112300px;}
.y36{bottom:1133.879931px;}
.yd4{bottom:1136.501550px;}
.yce{bottom:1137.269181px;}
.y35{bottom:1150.890000px;}
.ycd{bottom:1154.279250px;}
.y4d{bottom:1154.573279px;}
.y44{bottom:1154.998529px;}
.y7a{bottom:1156.542929px;}
.y71{bottom:1156.968179px;}
.y38{bottom:1173.002700px;}
.yd0{bottom:1176.937950px;}
.y31{bottom:1178.192550px;}
.yc8{bottom:1182.127800px;}
.y4c{bottom:1186.467300px;}
.y43{bottom:1186.892550px;}
.y79{bottom:1188.436950px;}
.y70{bottom:1188.862200px;}
.y39{bottom:1196.202150px;}
.y3a{bottom:1196.759700px;}
.y3b{bottom:1197.090900px;}
.yd1{bottom:1200.137400px;}
.yd2{bottom:1200.694950px;}
.yd3{bottom:1201.026150px;}
.y37{bottom:1218.031650px;}
.ycf{bottom:1221.966900px;}
.h12{height:31.680000px;}
.h9{height:37.417248px;}
.h16{height:37.417968px;}
.h3{height:41.159184px;}
.h2{height:44.900592px;}
.h15{height:45.300656px;}
.h6{height:48.642528px;}
.hc{height:49.365204px;}
.hb{height:52.384464px;}
.ha{height:59.867808px;}
.h10{height:62.163552px;}
.hf{height:65.162028px;}
.he{height:70.208508px;}
.h8{height:74.834496px;}
.hd{height:76.790604px;}
.h4{height:89.801712px;}
.h7{height:97.285056px;}
.h5{height:112.251744px;}
.h11{height:563.879184px;}
.h1{height:1283.250000px;}
.h0{height:1283.532750px;}
.h13{height:1287.555450px;}
.h1a{height:1287.577500px;}
.h14{height:1287.750000px;}
.h19{height:1288.123500px;}
.h18{height:1289.250000px;}
.h17{height:1289.525100px;}
.w0{width:900.498000px;}
.w1{width:900.750000px;}
.w2{width:903.456450px;}
.w3{width:903.750000px;}
.w6{width:903.785550px;}
.w5{width:904.500000px;}
.w4{width:904.765500px;}
.x13{left:-880.122150px;}
.x6{left:-852.602627px;}
.x4{left:-824.960700px;}
.x21{left:-783.588450px;}
.x22{left:-769.769550px;}
.x24{left:-724.858050px;}
.x23{left:-693.234150px;}
.xd{left:-434.847270px;}
.x5{left:-429.529350px;}
.x8{left:-389.137800px;}
.x7{left:-373.873200px;}
.x9{left:-257.326800px;}
.x29{left:-204.895350px;}
.xb{left:-126.196050px;}
.x0{left:0.000000px;}
.x20{left:25.629300px;}
.x3b{left:26.942400px;}
.x27{left:53.623950px;}
.x2{left:61.570875px;}
.x1{left:67.948800px;}
.xa{left:80.241750px;}
.x2d{left:82.103850px;}
.x14{left:121.180500px;}
.x28{left:122.718450px;}
.xc{left:124.287450px;}
.x15{left:134.999400px;}
.x25{left:163.974000px;}
.x17{left:179.910900px;}
.x26{left:202.177200px;}
.x16{left:211.534800px;}
.x3{left:463.380150px;}
.x35{left:472.217280px;}
.x1d{left:476.218200px;}
.x2e{left:477.535200px;}
.x30{left:517.926750px;}
.x2f{left:533.191350px;}
.x31{left:649.737750px;}
.xe{left:688.438950px;}
.x1f{left:699.873600px;}
.xf{left:733.849350px;}
.x10{left:734.874000px;}
.x11{left:768.626250px;}
.x12{left:769.666650px;}
.x33{left:780.868500px;}
.x1b{left:958.392900px;}
.x2b{left:968.635425px;}
.x1a{left:973.275930px;}
.x2a{left:975.013350px;}
.x32{left:987.306300px;}
.x1c{left:1027.487400px;}
.x34{left:1031.352000px;}
.x18{left:1068.742950px;}
.x19{left:1106.946150px;}
.x1e{left:1369.127700px;}
.x2c{left:1370.444700px;}
.x36{left:1595.503500px;}
.x37{left:1640.913900px;}
.x38{left:1641.938550px;}
.x39{left:1675.690800px;}
.x3a{left:1676.731200px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls1b{letter-spacing:-68.348992pt;}
.ls1a{letter-spacing:-10.344529pt;}
.ls19{letter-spacing:-2.694037pt;}
.ls13{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.136062pt;}
.lsd{letter-spacing:0.408187pt;}
.ls14{letter-spacing:0.680312pt;}
.ls25{letter-spacing:0.718109pt;}
.ls11{letter-spacing:0.737008pt;}
.ls20{letter-spacing:0.861729pt;}
.ls21{letter-spacing:0.884406pt;}
.ls1{letter-spacing:0.907083pt;}
.ls4{letter-spacing:0.952437pt;}
.ls16{letter-spacing:1.020469pt;}
.ls1e{letter-spacing:1.088499pt;}
.ls22{letter-spacing:1.179207pt;}
.ls12{letter-spacing:1.228347pt;}
.ls3{letter-spacing:1.315270pt;}
.ls8{letter-spacing:1.405978pt;}
.lsc{letter-spacing:1.451332pt;}
.ls1d{letter-spacing:1.496686pt;}
.ls26{letter-spacing:1.542041pt;}
.lsa{letter-spacing:1.587395pt;}
.lsb{letter-spacing:1.632749pt;}
.ls23{letter-spacing:1.678103pt;}
.ls7{letter-spacing:1.723457pt;}
.ls9{letter-spacing:1.746134pt;}
.ls1f{letter-spacing:1.768811pt;}
.ls2{letter-spacing:1.814165pt;}
.ls1c{letter-spacing:1.817953pt;}
.ls6{letter-spacing:2.176998pt;}
.ls10{letter-spacing:2.721248pt;}
.ls17{letter-spacing:3.174805pt;}
.ls15{letter-spacing:3.325995pt;}
.ls5{letter-spacing:3.764393pt;}
.ls18{letter-spacing:3.991181pt;}
.lse{letter-spacing:5.669267pt;}
.lsf{letter-spacing:9.070880pt;}
.ls24{letter-spacing:10.582720pt;}
.ws17{word-spacing:-52.913600pt;}
.ws27{word-spacing:-50.951820pt;}
.ws1b{word-spacing:-32.000000pt;}
.ws19{word-spacing:-25.795293pt;}
.ws12{word-spacing:-25.398315pt;}
.ws1a{word-spacing:-24.672757pt;}
.ws10{word-spacing:-24.113461pt;}
.ws7{word-spacing:-18.867319pt;}
.ws8{word-spacing:-17.279925pt;}
.ws3{word-spacing:-16.917092pt;}
.ws2b{word-spacing:-16.871738pt;}
.wsb{word-spacing:-16.849061pt;}
.ws9{word-spacing:-16.826383pt;}
.ws30{word-spacing:-16.781029pt;}
.wsd{word-spacing:-16.735675pt;}
.wsc{word-spacing:-16.690321pt;}
.ws28{word-spacing:-16.599613pt;}
.wse{word-spacing:-16.554259pt;}
.wsa{word-spacing:-16.508905pt;}
.ws5{word-spacing:-16.418196pt;}
.ws2f{word-spacing:-16.282134pt;}
.ws29{word-spacing:-16.191426pt;}
.ws6{word-spacing:-16.055363pt;}
.ws2{word-spacing:-16.010009pt;}
.ws2d{word-spacing:-15.987332pt;}
.ws2c{word-spacing:-15.964655pt;}
.ws39{word-spacing:-15.821105pt;}
.ws18{word-spacing:-15.562157pt;}
.wsf{word-spacing:-15.511114pt;}
.ws0{word-spacing:-15.238989pt;}
.ws11{word-spacing:-15.121068pt;}
.ws4{word-spacing:-15.102926pt;}
.ws13{word-spacing:-14.740160pt;}
.ws31{word-spacing:-13.303910pt;}
.ws15{word-spacing:-12.283467pt;}
.ws23{word-spacing:-9.070880pt;}
.ws2e{word-spacing:-5.986746pt;}
.ws14{word-spacing:-3.866835pt;}
.ws22{word-spacing:-2.721248pt;}
.ws36{word-spacing:-1.768811pt;}
.ws21{word-spacing:-1.723457pt;}
.ws37{word-spacing:-1.678103pt;}
.ws1f{word-spacing:-1.632749pt;}
.ws38{word-spacing:-1.542041pt;}
.ws35{word-spacing:-1.496686pt;}
.ws20{word-spacing:-0.680312pt;}
.ws1d{word-spacing:-0.136062pt;}
.ws1e{word-spacing:0.000000pt;}
.ws24{word-spacing:2.694037pt;}
.ws2a{word-spacing:5.619377pt;}
.ws1{word-spacing:5.623913pt;}
.ws25{word-spacing:10.344529pt;}
.ws26{word-spacing:68.348992pt;}
.ws33{word-spacing:183.949238pt;}
.ws16{word-spacing:448.515638pt;}
.ws32{word-spacing:2557.491105pt;}
.ws34{word-spacing:5565.553067pt;}
.ws1c{word-spacing:5565.585067pt;}
._13{margin-left:-410.688000pt;}
._14{margin-left:-265.376000pt;}
._7{margin-left:-24.854065pt;}
._2{margin-left:-23.584149pt;}
._4{margin-left:-22.677067pt;}
._16{margin-left:-18.897600pt;}
._12{margin-left:-11.085342pt;}
._f{margin-left:-10.159326pt;}
._10{margin-left:-6.530995pt;}
._9{margin-left:-5.261079pt;}
._6{margin-left:-3.764393pt;}
._8{margin-left:-2.811956pt;}
._3{margin-left:-1.814165pt;}
._1{margin-left:-0.907083pt;}
._e{width:0.907083pt;}
._b{width:1.995582pt;}
._c{width:2.902665pt;}
._5{width:4.353997pt;}
._0{width:5.896037pt;}
._11{width:7.619558pt;}
._d{width:9.070827pt;}
._a{width:11.338533pt;}
._15{width:2048.451989pt;}
.fs10{font-size:32.000000pt;}
.fs7{font-size:37.795200pt;}
.fs1{font-size:41.574933pt;}
.fs0{font-size:45.354133pt;}
.fs4{font-size:49.133867pt;}
.fsa{font-size:51.023467pt;}
.fs9{font-size:52.913600pt;}
.fs8{font-size:60.472533pt;}
.fse{font-size:64.251733pt;}
.fsd{font-size:67.350933pt;}
.fsc{font-size:72.566933pt;}
.fs6{font-size:75.590400pt;}
.fsb{font-size:79.370133pt;}
.fs2{font-size:90.708800pt;}
.fs5{font-size:98.267733pt;}
.fs3{font-size:113.385600pt;}
.fsf{font-size:569.574933pt;}
.y3d{bottom:-32.807333pt;}
.yd5{bottom:-29.309333pt;}
.y6a{bottom:-29.191600pt;}
.y97{bottom:-27.440800pt;}
.y0{bottom:0.000000pt;}
.ycc{bottom:0.485333pt;}
.y69{bottom:62.209573pt;}
.y96{bottom:63.960373pt;}
.y68{bottom:73.547973pt;}
.y95{bottom:75.298773pt;}
.ye{bottom:75.671833pt;}
.ya5{bottom:79.169833pt;}
.y67{bottom:84.886533pt;}
.y94{bottom:86.637333pt;}
.yd{bottom:95.514267pt;}
.ya4{bottom:99.012267pt;}
.y25{bottom:103.099745pt;}
.ybc{bottom:106.597745pt;}
.yc{bottom:115.356700pt;}
.ya3{bottom:118.854700pt;}
.y24{bottom:121.048644pt;}
.ybb{bottom:124.546644pt;}
.yb{bottom:135.199133pt;}
.y26{bottom:138.190400pt;}
.ya2{bottom:138.697133pt;}
.y23{bottom:138.997542pt;}
.ybd{bottom:141.688400pt;}
.yba{bottom:142.495542pt;}
.ya{bottom:155.041567pt;}
.y22{bottom:156.946440pt;}
.ya1{bottom:158.539567pt;}
.yb9{bottom:160.444440pt;}
.y9{bottom:174.884000pt;}
.y21{bottom:174.895339pt;}
.y27{bottom:177.006133pt;}
.ya0{bottom:178.382000pt;}
.yb8{bottom:178.393339pt;}
.ybe{bottom:180.504133pt;}
.y20{bottom:192.844237pt;}
.y8{bottom:194.726433pt;}
.yb7{bottom:196.342237pt;}
.y9f{bottom:198.224433pt;}
.y1f{bottom:210.793135pt;}
.yb6{bottom:214.291135pt;}
.y7{bottom:214.568867pt;}
.y9e{bottom:218.066867pt;}
.y34{bottom:231.620400pt;}
.y6{bottom:234.411300pt;}
.ycb{bottom:235.118400pt;}
.y9d{bottom:237.909300pt;}
.y5{bottom:254.253733pt;}
.y9c{bottom:257.751733pt;}
.y33{bottom:265.711707pt;}
.yca{bottom:269.209707pt;}
.y4{bottom:274.096167pt;}
.y32{bottom:277.050267pt;}
.y9b{bottom:277.594167pt;}
.yc9{bottom:280.548267pt;}
.y3{bottom:293.938600pt;}
.y9a{bottom:297.436600pt;}
.y2{bottom:313.781033pt;}
.y99{bottom:317.279033pt;}
.y1{bottom:333.623467pt;}
.y98{bottom:337.121467pt;}
.y65{bottom:338.343633pt;}
.y92{bottom:340.094433pt;}
.y64{bottom:358.186067pt;}
.y91{bottom:359.936867pt;}
.y29{bottom:367.128933pt;}
.yc0{bottom:370.626933pt;}
.y63{bottom:378.028500pt;}
.y90{bottom:379.779300pt;}
.y62{bottom:397.870933pt;}
.y8f{bottom:399.621733pt;}
.y61{bottom:417.713367pt;}
.y8e{bottom:419.464167pt;}
.y60{bottom:437.555800pt;}
.y8d{bottom:439.306600pt;}
.y5f{bottom:457.398233pt;}
.y8c{bottom:459.149033pt;}
.y5e{bottom:477.240667pt;}
.y8b{bottom:478.991467pt;}
.y5d{bottom:497.083100pt;}
.y8a{bottom:498.833900pt;}
.y1e{bottom:505.753741pt;}
.yb5{bottom:509.251741pt;}
.y5c{bottom:516.925533pt;}
.y89{bottom:518.676333pt;}
.y1d{bottom:525.596175pt;}
.yb4{bottom:529.094175pt;}
.y5b{bottom:536.767967pt;}
.y88{bottom:538.518767pt;}
.y1c{bottom:545.438608pt;}
.yb3{bottom:548.936608pt;}
.y5a{bottom:556.610400pt;}
.y87{bottom:558.361200pt;}
.y1b{bottom:565.281041pt;}
.yb2{bottom:568.779041pt;}
.y59{bottom:576.452833pt;}
.y86{bottom:578.203633pt;}
.y1a{bottom:585.123475pt;}
.yb1{bottom:588.621475pt;}
.y58{bottom:596.295267pt;}
.y85{bottom:598.046067pt;}
.y19{bottom:604.965908pt;}
.yb0{bottom:608.463908pt;}
.y57{bottom:616.137700pt;}
.y84{bottom:617.888500pt;}
.y18{bottom:624.808341pt;}
.yaf{bottom:628.306341pt;}
.y56{bottom:635.980133pt;}
.y83{bottom:637.730933pt;}
.y17{bottom:644.650775pt;}
.yae{bottom:648.148775pt;}
.y55{bottom:655.822567pt;}
.y82{bottom:657.573367pt;}
.y16{bottom:664.493208pt;}
.yad{bottom:667.991208pt;}
.y54{bottom:675.665000pt;}
.y81{bottom:677.415800pt;}
.y15{bottom:684.335641pt;}
.yac{bottom:687.833641pt;}
.y53{bottom:695.507433pt;}
.y80{bottom:697.258233pt;}
.y14{bottom:704.178075pt;}
.yab{bottom:707.676075pt;}
.y52{bottom:715.349867pt;}
.y7f{bottom:717.100667pt;}
.y13{bottom:724.020508pt;}
.yaa{bottom:727.518508pt;}
.y51{bottom:735.192300pt;}
.y7e{bottom:736.943100pt;}
.y12{bottom:743.862941pt;}
.ya9{bottom:747.360941pt;}
.y50{bottom:755.034733pt;}
.y7d{bottom:756.785533pt;}
.y11{bottom:763.705375pt;}
.ya8{bottom:767.203375pt;}
.y4f{bottom:774.877167pt;}
.y7c{bottom:776.627967pt;}
.y10{bottom:783.547808pt;}
.ya7{bottom:787.045808pt;}
.y4e{bottom:794.719600pt;}
.y7b{bottom:796.470400pt;}
.yf{bottom:803.390241pt;}
.ya6{bottom:806.888241pt;}
.y2c{bottom:859.713385pt;}
.yc3{bottom:863.211385pt;}
.y42{bottom:868.991036pt;}
.y4b{bottom:869.930194pt;}
.y6f{bottom:870.741836pt;}
.y66{bottom:871.514800pt;}
.y78{bottom:871.680994pt;}
.y93{bottom:873.265600pt;}
.y2b{bottom:875.780159pt;}
.yc2{bottom:879.278159pt;}
.y41{bottom:885.057810pt;}
.y4a{bottom:885.996969pt;}
.y6e{bottom:886.808610pt;}
.y77{bottom:887.747769pt;}
.y28{bottom:888.653333pt;}
.y2a{bottom:891.846933pt;}
.ybf{bottom:892.151333pt;}
.yc1{bottom:895.344933pt;}
.y40{bottom:901.124585pt;}
.y49{bottom:902.063743pt;}
.y6d{bottom:902.875385pt;}
.y76{bottom:903.814543pt;}
.y30{bottom:915.232800pt;}
.y3f{bottom:917.191359pt;}
.y48{bottom:918.130517pt;}
.yc7{bottom:918.730800pt;}
.y6c{bottom:918.942159pt;}
.y75{bottom:919.881317pt;}
.y2f{bottom:933.034400pt;}
.y3e{bottom:933.258133pt;}
.y47{bottom:934.197292pt;}
.y6b{bottom:935.008933pt;}
.y74{bottom:935.948092pt;}
.yc6{bottom:936.532400pt;}
.y46{bottom:968.738400pt;}
.y2e{bottom:970.136026pt;}
.y73{bottom:970.489200pt;}
.yc5{bottom:973.634026pt;}
.y45{bottom:986.540000pt;}
.y72{bottom:988.290800pt;}
.y2d{bottom:998.486267pt;}
.yc4{bottom:1001.984267pt;}
.y3c{bottom:1007.210933pt;}
.y36{bottom:1007.893272pt;}
.yd4{bottom:1010.223600pt;}
.yce{bottom:1010.905939pt;}
.y35{bottom:1023.013333pt;}
.ycd{bottom:1026.026000pt;}
.y4d{bottom:1026.287359pt;}
.y44{bottom:1026.665359pt;}
.y7a{bottom:1028.038159pt;}
.y71{bottom:1028.416159pt;}
.y38{bottom:1042.669067pt;}
.yd0{bottom:1046.167067pt;}
.y31{bottom:1047.282267pt;}
.yc8{bottom:1050.780267pt;}
.y4c{bottom:1054.637600pt;}
.y43{bottom:1055.015600pt;}
.y79{bottom:1056.388400pt;}
.y70{bottom:1056.766400pt;}
.y39{bottom:1063.290800pt;}
.y3a{bottom:1063.786400pt;}
.y3b{bottom:1064.080800pt;}
.yd1{bottom:1066.788800pt;}
.yd2{bottom:1067.284400pt;}
.yd3{bottom:1067.578800pt;}
.y37{bottom:1082.694800pt;}
.ycf{bottom:1086.192800pt;}
.h12{height:28.160000pt;}
.h9{height:33.259776pt;}
.h16{height:33.260416pt;}
.h3{height:36.585941pt;}
.h2{height:39.911637pt;}
.h15{height:40.267250pt;}
.h6{height:43.237803pt;}
.hc{height:43.880181pt;}
.hb{height:46.563968pt;}
.ha{height:53.215829pt;}
.h10{height:55.256491pt;}
.hf{height:57.921803pt;}
.he{height:62.407563pt;}
.h8{height:66.519552pt;}
.hd{height:68.258315pt;}
.h4{height:79.823744pt;}
.h7{height:86.475605pt;}
.h5{height:99.779328pt;}
.h11{height:501.225941pt;}
.h1{height:1140.666667pt;}
.h0{height:1140.918000pt;}
.h13{height:1144.493733pt;}
.h1a{height:1144.513333pt;}
.h14{height:1144.666667pt;}
.h19{height:1144.998667pt;}
.h18{height:1146.000000pt;}
.h17{height:1146.244533pt;}
.w0{width:800.442667pt;}
.w1{width:800.666667pt;}
.w2{width:803.072400pt;}
.w3{width:803.333333pt;}
.w6{width:803.364933pt;}
.w5{width:804.000000pt;}
.w4{width:804.236000pt;}
.x13{left:-782.330800pt;}
.x6{left:-757.869002pt;}
.x4{left:-733.298400pt;}
.x21{left:-696.523067pt;}
.x22{left:-684.239600pt;}
.x24{left:-644.318267pt;}
.x23{left:-616.208133pt;}
.xd{left:-386.530907pt;}
.x5{left:-381.803867pt;}
.x8{left:-345.900267pt;}
.x7{left:-332.331733pt;}
.x9{left:-228.734933pt;}
.x29{left:-182.129200pt;}
.xb{left:-112.174267pt;}
.x0{left:0.000000pt;}
.x20{left:22.781600pt;}
.x3b{left:23.948800pt;}
.x27{left:47.665733pt;}
.x2{left:54.729667pt;}
.x1{left:60.398933pt;}
.xa{left:71.326000pt;}
.x2d{left:72.981200pt;}
.x14{left:107.716000pt;}
.x28{left:109.083067pt;}
.xc{left:110.477733pt;}
.x15{left:119.999467pt;}
.x25{left:145.754667pt;}
.x17{left:159.920800pt;}
.x26{left:179.713067pt;}
.x16{left:188.030933pt;}
.x3{left:411.893467pt;}
.x35{left:419.748693pt;}
.x1d{left:423.305067pt;}
.x2e{left:424.475733pt;}
.x30{left:460.379333pt;}
.x2f{left:473.947867pt;}
.x31{left:577.544667pt;}
.xe{left:611.945733pt;}
.x1f{left:622.109867pt;}
.xf{left:652.310533pt;}
.x10{left:653.221333pt;}
.x11{left:683.223333pt;}
.x12{left:684.148133pt;}
.x33{left:694.105333pt;}
.x1b{left:851.904800pt;}
.x2b{left:861.009267pt;}
.x1a{left:865.134160pt;}
.x2a{left:866.678533pt;}
.x32{left:877.605600pt;}
.x1c{left:913.322133pt;}
.x34{left:916.757333pt;}
.x18{left:949.993733pt;}
.x19{left:983.952133pt;}
.x1e{left:1217.002400pt;}
.x2c{left:1218.173067pt;}
.x36{left:1418.225333pt;}
.x37{left:1458.590133pt;}
.x38{left:1459.500933pt;}
.x39{left:1489.502933pt;}
.x3a{left:1490.427733pt;}
}




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