
    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_27f4bc48985b299d5eb47582.woff')format("woff");}.ff1{font-family:ff1;line-height:1.065430;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_602203a351bbc713dff4973c.woff')format("woff");}.ff2{font-family:ff2;line-height:1.284668;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_97690c2030055429b5bc0f1d.woff')format("woff");}.ff3{font-family:ff3;line-height:0.912109;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_1fa6d0e73af042e730221d0d.woff')format("woff");}.ff4{font-family:ff4;line-height:1.065430;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_0cc591df3a4577e4c94b339c.woff')format("woff");}.ff5{font-family:ff5;line-height:1.064941;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_e291b6d89a55713d0e32e28b.woff')format("woff");}.ff6{font-family:ff6;line-height:1.064941;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_63860f36f219b3e121350415.woff')format("woff");}.ff7{font-family:ff7;line-height:0.912598;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_9591f0618c6bd88c8f9b0bfa.woff')format("woff");}.ff8{font-family:ff8;line-height:0.910156;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_832d6308eb4e024013576d1b.woff')format("woff");}.ff9{font-family:ff9;line-height:1.284668;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_cc9cb0e0c0d2410e11e96e5c.woff')format("woff");}.ffa{font-family:ffa;line-height:1.284180;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_69ce78c2fe24a95cdd9cfb71.woff')format("woff");}.ffb{font-family:ffb;line-height:1.061035;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_f624ac599508b74268f67431.woff')format("woff");}.ffc{font-family:ffc;line-height:1.402354;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_36547609fdc6fc292c71e852.woff')format("woff");}.ffd{font-family:ffd;line-height:1.061035;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;}
.m17{transform:matrix(0.220876,0.000000,-0.073618,0.238915,0,0);-ms-transform:matrix(0.220876,0.000000,-0.073618,0.238915,0,0);-webkit-transform:matrix(0.220876,0.000000,-0.073618,0.238915,0,0);}
.m16{transform:matrix(0.221534,0.000000,-0.073837,0.238847,0,0);-ms-transform:matrix(0.221534,0.000000,-0.073837,0.238847,0,0);-webkit-transform:matrix(0.221534,0.000000,-0.073837,0.238847,0,0);}
.md{transform:matrix(0.225618,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225618,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225618,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.226172,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226172,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226172,0.000000,0.000000,0.250000,0,0);}
.m13{transform:matrix(0.234022,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234022,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234022,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.234345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234345,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.240763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240763,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.245251,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245251,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245251,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);}
.ma{transform:matrix(0.250323,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250323,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250323,0.000000,0.000000,0.250000,0,0);}
.m12{transform:matrix(0.257497,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257497,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257497,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.261548,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261548,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261548,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.261548,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261548,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261548,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.263068,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263068,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263068,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.263315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263315,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.263806,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263806,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263806,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.264022,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264022,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264022,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.271754,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271754,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271754,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.272743,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272743,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272743,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.272792,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272792,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272792,0.000000,0.000000,0.250000,0,0);}
.m14{transform:matrix(0.296945,0.000002,0.000000,0.250000,0,0);-ms-transform:matrix(0.296945,0.000002,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296945,0.000002,0.000000,0.250000,0,0);}
.m11{transform:matrix(0.298420,0.000002,0.000000,0.250000,0,0);-ms-transform:matrix(0.298420,0.000002,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298420,0.000002,0.000000,0.250000,0,0);}
.m15{transform:matrix(0.315536,0.000001,-0.105168,0.226803,0,0);-ms-transform:matrix(0.315536,0.000001,-0.105168,0.226803,0,0);-webkit-transform:matrix(0.315536,0.000001,-0.105168,0.226803,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-42.771496px;}
.v3{vertical-align:-33.465664px;}
.v1{vertical-align:-30.262082px;}
.v4{vertical-align:-2.880000px;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:18.000000px;}
.ls13{letter-spacing:-2.163831px;}
.ls12{letter-spacing:-1.759599px;}
.ls11{letter-spacing:-1.742947px;}
.lsb{letter-spacing:-1.682673px;}
.ls10{letter-spacing:-1.072583px;}
.lsd{letter-spacing:-0.929694px;}
.lsa{letter-spacing:-0.792974px;}
.ls8{letter-spacing:-0.661723px;}
.lsc{letter-spacing:-0.506917px;}
.lse{letter-spacing:-0.506036px;}
.ls1d{letter-spacing:-0.392803px;}
.ls7{letter-spacing:-0.288000px;}
.ls20{letter-spacing:-0.216000px;}
.ls6{letter-spacing:-0.144000px;}
.ls1f{letter-spacing:-0.080400px;}
.ls1e{letter-spacing:-0.072000px;}
.ls5{letter-spacing:-0.036000px;}
.ls14{letter-spacing:-0.000001px;}
.ls4{letter-spacing:0.000000px;}
.ls15{letter-spacing:0.072000px;}
.ls1a{letter-spacing:0.128517px;}
.ls19{letter-spacing:0.144000px;}
.ls0{letter-spacing:0.180000px;}
.ls21{letter-spacing:0.279600px;}
.ls18{letter-spacing:0.288000px;}
.ls1b{letter-spacing:0.360000px;}
.lsf{letter-spacing:0.521425px;}
.ls9{letter-spacing:0.680119px;}
.ls1c{letter-spacing:3.240000px;}
.ls3{letter-spacing:6.480000px;}
.ls23{letter-spacing:9.720000px;}
.ls2{letter-spacing:10.800000px;}
.ls17{letter-spacing:26.280000px;}
.ls1{letter-spacing:27.360000px;}
.ls22{letter-spacing:95.664000px;}
.ls16{letter-spacing:810.120000px;}
.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;}
}
.ws1a{word-spacing:-82.970986px;}
.ws1b{word-spacing:-76.946662px;}
.ws5{word-spacing:-67.555932px;}
.ws13{word-spacing:-45.551071px;}
.ws8{word-spacing:-41.957455px;}
.ws19{word-spacing:-40.863284px;}
.ws6{word-spacing:-39.933726px;}
.wsd{word-spacing:-37.088207px;}
.wsa{word-spacing:-17.592182px;}
.ws0{word-spacing:-16.650000px;}
.ws1f{word-spacing:-15.912000px;}
.ws2{word-spacing:-15.840000px;}
.ws3{word-spacing:-15.696000px;}
.ws24{word-spacing:-15.624000px;}
.ws1{word-spacing:-11.844000px;}
.ws1e{word-spacing:-10.533600px;}
.ws4{word-spacing:0.000000px;}
.ws10{word-spacing:0.989612px;}
.ws11{word-spacing:1.659976px;}
.ws16{word-spacing:1.685166px;}
.ws17{word-spacing:2.089399px;}
.wse{word-spacing:23.701645px;}
.wsb{word-spacing:23.742908px;}
.ws9{word-spacing:73.691859px;}
.ws22{word-spacing:89.644606px;}
.ws7{word-spacing:90.714973px;}
.ws1d{word-spacing:109.080982px;}
.ws23{word-spacing:121.180598px;}
.wsf{word-spacing:146.090898px;}
.wsc{word-spacing:147.140905px;}
.ws1c{word-spacing:203.542203px;}
.ws12{word-spacing:211.355009px;}
.ws21{word-spacing:319.140473px;}
.ws20{word-spacing:347.586237px;}
.ws15{word-spacing:377.023648px;}
.ws14{word-spacing:678.431055px;}
.ws18{word-spacing:753.654769px;}
._27{margin-left:-719.859532px;}
._2f{margin-left:-335.732782px;}
._42{margin-left:-328.335193px;}
._29{margin-left:-320.677894px;}
._24{margin-left:-300.951286px;}
._25{margin-left:-296.085427px;}
._2d{margin-left:-294.100984px;}
._2a{margin-left:-290.623051px;}
._1d{margin-left:-271.112045px;}
._2b{margin-left:-262.302020px;}
._43{margin-left:-256.825561px;}
._18{margin-left:-248.507998px;}
._20{margin-left:-246.396954px;}
._19{margin-left:-244.950842px;}
._26{margin-left:-239.675158px;}
._2e{margin-left:-237.272538px;}
._28{margin-left:-224.152061px;}
._2c{margin-left:-216.273059px;}
._21{margin-left:-208.972482px;}
._1c{margin-left:-206.079226px;}
._34{margin-left:-193.149446px;}
._3e{margin-left:-191.619751px;}
._22{margin-left:-172.194602px;}
._23{margin-left:-170.718379px;}
._3b{margin-left:-166.939097px;}
._41{margin-left:-164.152219px;}
._39{margin-left:-163.001215px;}
._3a{margin-left:-159.167977px;}
._40{margin-left:-157.714363px;}
._37{margin-left:-152.714797px;}
._3f{margin-left:-150.614783px;}
._38{margin-left:-145.489982px;}
._33{margin-left:-112.883626px;}
._1a{margin-left:-107.146470px;}
._31{margin-left:-4.968000px;}
._32{margin-left:-3.960000px;}
._b{margin-left:-2.952000px;}
._1{margin-left:-1.036920px;}
._0{width:1.172280px;}
._14{width:2.220840px;}
._12{width:3.251160px;}
._16{width:4.349400px;}
._13{width:5.544000px;}
._9{width:6.552000px;}
._10{width:7.992000px;}
._11{width:9.411720px;}
._8{width:10.440000px;}
._a{width:11.736000px;}
._17{width:13.320000px;}
._5{width:14.400000px;}
._46{width:16.992000px;}
._f{width:18.072000px;}
._e{width:19.368000px;}
._d{width:20.664000px;}
._7{width:21.936000px;}
._6{width:22.944000px;}
._36{width:24.576000px;}
._1e{width:26.280000px;}
._2{width:27.360000px;}
._4{width:29.016000px;}
._48{width:32.544000px;}
._30{width:33.768000px;}
._35{width:35.424000px;}
._3{width:36.504000px;}
._45{width:45.000000px;}
._47{width:49.492920px;}
._c{width:51.048000px;}
._44{width:63.144000px;}
._15{width:70.200000px;}
._1b{width:76.680000px;}
._1f{width:196.560000px;}
._3c{width:756.120003px;}
._3d{width:918.120000px;}
.fc1{color:rgb(56,86,35);}
.fc3{color:rgb(0,0,0);}
.fc2{color:rgb(237,125,49);}
.fc0{color:rgb(255,255,255);}
.fs8{font-size:39.427770px;}
.fse{font-size:43.429986px;}
.fs11{font-size:43.546929px;}
.fs9{font-size:43.724519px;}
.fs3{font-size:47.880000px;}
.fs4{font-size:54.000000px;}
.fs10{font-size:55.315318px;}
.fs13{font-size:55.590123px;}
.fs1{font-size:65.880000px;}
.fs6{font-size:67.555932px;}
.fsc{font-size:67.603383px;}
.fsb{font-size:67.721077px;}
.fs14{font-size:71.142273px;}
.fs16{font-size:71.142310px;}
.fs0{font-size:72.000000px;}
.fsf{font-size:74.432211px;}
.fs12{font-size:74.632634px;}
.fsa{font-size:75.018665px;}
.fs7{font-size:76.425237px;}
.fsd{font-size:82.970986px;}
.fs5{font-size:83.880000px;}
.fs2{font-size:96.120000px;}
.fs18{font-size:101.301260px;}
.fs15{font-size:101.329928px;}
.fs19{font-size:101.329932px;}
.fs17{font-size:101.329958px;}
.y0{bottom:0.000000px;}
.ya{bottom:1.350000px;}
.ye{bottom:2.250000px;}
.yb0{bottom:2.285060px;}
.yb8{bottom:2.296411px;}
.y10{bottom:2.520000px;}
.y64{bottom:2.825351px;}
.y74{bottom:3.427423px;}
.y81{bottom:3.427443px;}
.y70{bottom:3.437036px;}
.y6a{bottom:3.443020px;}
.y4{bottom:3.600000px;}
.y6d{bottom:4.177607px;}
.yc1{bottom:4.230937px;}
.yb6{bottom:4.374060px;}
.yb4{bottom:4.374087px;}
.y6{bottom:4.590000px;}
.y5f{bottom:4.962049px;}
.y82{bottom:4.962095px;}
.y12{bottom:5.220000px;}
.yc8{bottom:6.346178px;}
.yc3{bottom:6.346216px;}
.y5e{bottom:7.006482px;}
.y8{bottom:7.380000px;}
.yb5{bottom:9.070763px;}
.y63{bottom:11.229769px;}
.y6c{bottom:11.743127px;}
.y95{bottom:11.743129px;}
.y62{bottom:11.743131px;}
.y76{bottom:15.839360px;}
.yd{bottom:16.290000px;}
.y71{bottom:27.297668px;}
.y6b{bottom:27.345192px;}
.yc{bottom:30.420000px;}
.y7{bottom:43.020000px;}
.y5{bottom:45.720000px;}
.y3{bottom:46.620000px;}
.y2{bottom:51.030000px;}
.yab{bottom:97.020000px;}
.y3e{bottom:100.890000px;}
.y6e{bottom:103.950000px;}
.y6f{bottom:104.010000px;}
.ydb{bottom:115.110000px;}
.yaa{bottom:121.230000px;}
.y3d{bottom:125.190000px;}
.yda{bottom:139.320000px;}
.ya9{bottom:145.530000px;}
.y3c{bottom:149.400000px;}
.y68{bottom:154.620000px;}
.y69{bottom:154.635000px;}
.yd9{bottom:163.620000px;}
.ya8{bottom:165.870000px;}
.y3b{bottom:173.700000px;}
.yd8{bottom:187.830000px;}
.y3a{bottom:197.910000px;}
.y67{bottom:205.200000px;}
.yd7{bottom:212.130000px;}
.y39{bottom:222.210000px;}
.y66{bottom:229.530000px;}
.yd6{bottom:236.460000px;}
.y38{bottom:246.540000px;}
.y65{bottom:249.870000px;}
.y97{bottom:252.300000px;}
.yd5{bottom:260.670000px;}
.y37{bottom:270.750000px;}
.y94{bottom:276.584980px;}
.y96{bottom:276.600000px;}
.yd4{bottom:284.970000px;}
.y36{bottom:295.050000px;}
.y93{bottom:306.210000px;}
.yd3{bottom:309.270000px;}
.y35{bottom:319.350000px;}
.y92{bottom:326.640000px;}
.yd2{bottom:333.480000px;}
.y34{bottom:343.560000px;}
.yd1{bottom:357.780000px;}
.y33{bottom:367.860000px;}
.y60{bottom:378.480000px;}
.y61{bottom:378.509959px;}
.yd0{bottom:382.080000px;}
.y32{bottom:392.160000px;}
.ycf{bottom:406.290000px;}
.y5d{bottom:408.884959px;}
.y5c{bottom:408.900000px;}
.ya7{bottom:411.510000px;}
.y31{bottom:414.030000px;}
.yce{bottom:430.590000px;}
.ya6{bottom:435.720000px;}
.y5b{bottom:438.510000px;}
.y30{bottom:438.600000px;}
.ycd{bottom:454.890000px;}
.ya5{bottom:460.020000px;}
.y5a{bottom:462.810000px;}
.y2f{bottom:465.600000px;}
.ycc{bottom:479.100000px;}
.ya4{bottom:484.320000px;}
.y59{bottom:487.110000px;}
.y2e{bottom:489.900000px;}
.ycb{bottom:503.400000px;}
.ya3{bottom:508.530000px;}
.y58{bottom:511.320000px;}
.y2d{bottom:514.200000px;}
.yca{bottom:527.700000px;}
.ya2{bottom:532.830000px;}
.y57{bottom:535.620000px;}
.y2c{bottom:538.410000px;}
.y91{bottom:551.910000px;}
.ya1{bottom:557.130000px;}
.y56{bottom:559.920000px;}
.y2b{bottom:562.710000px;}
.y90{bottom:576.210000px;}
.ya0{bottom:581.340000px;}
.y55{bottom:584.130000px;}
.y2a{bottom:587.010000px;}
.y8f{bottom:600.420000px;}
.y9f{bottom:605.640000px;}
.y54{bottom:608.430000px;}
.y29{bottom:611.220000px;}
.y8e{bottom:624.720000px;}
.yc9{bottom:624.734959px;}
.y9e{bottom:629.940000px;}
.y53{bottom:632.730000px;}
.y28{bottom:635.520000px;}
.y8d{bottom:649.050000px;}
.y9d{bottom:654.180000px;}
.yc7{bottom:654.434959px;}
.yc6{bottom:654.450000px;}
.y52{bottom:656.970000px;}
.y27{bottom:657.420000px;}
.y8c{bottom:673.260000px;}
.y9c{bottom:678.480000px;}
.y51{bottom:681.270000px;}
.y26{bottom:681.990000px;}
.yc5{bottom:684.060000px;}
.y8b{bottom:697.560000px;}
.y9b{bottom:702.780000px;}
.y50{bottom:705.570000px;}
.yc2{bottom:708.359919px;}
.yc4{bottom:708.360000px;}
.y25{bottom:709.080000px;}
.y8a{bottom:721.860000px;}
.y9a{bottom:723.120000px;}
.y4f{bottom:729.780000px;}
.y24{bottom:733.290000px;}
.yc0{bottom:738.059919px;}
.ybf{bottom:738.060000px;}
.y89{bottom:746.070000px;}
.y4e{bottom:754.080000px;}
.y23{bottom:757.590000px;}
.ybe{bottom:762.270000px;}
.y88{bottom:770.370000px;}
.y4d{bottom:778.290000px;}
.y22{bottom:781.890000px;}
.ybd{bottom:786.570000px;}
.y86{bottom:794.670000px;}
.y87{bottom:794.684919px;}
.y4c{bottom:802.590000px;}
.y21{bottom:806.100000px;}
.ybc{bottom:810.870000px;}
.y85{bottom:824.234919px;}
.y84{bottom:824.280000px;}
.y4b{bottom:826.890000px;}
.y20{bottom:830.400000px;}
.ybb{bottom:835.080000px;}
.y4a{bottom:851.100000px;}
.y83{bottom:853.980000px;}
.y1f{bottom:854.610000px;}
.yba{bottom:859.380000px;}
.y49{bottom:875.400000px;}
.y80{bottom:878.159919px;}
.y7f{bottom:878.190000px;}
.y1e{bottom:878.910000px;}
.yb9{bottom:883.590000px;}
.y48{bottom:899.700000px;}
.y1d{bottom:900.150000px;}
.yb7{bottom:907.859919px;}
.y7e{bottom:907.890000px;}
.y1c{bottom:921.210000px;}
.y47{bottom:923.910000px;}
.y99{bottom:928.140000px;}
.y7d{bottom:932.190000px;}
.y1b{bottom:942.360000px;}
.y46{bottom:948.210000px;}
.y98{bottom:948.480000px;}
.y7c{bottom:956.400000px;}
.yb3{bottom:956.459919px;}
.yb2{bottom:956.490000px;}
.y1a{bottom:963.420000px;}
.ye1{bottom:972.150000px;}
.y45{bottom:972.510000px;}
.y7b{bottom:980.700000px;}
.y19{bottom:984.570000px;}
.yb1{bottom:991.320000px;}
.ye0{bottom:996.360000px;}
.y44{bottom:996.720000px;}
.y7a{bottom:1005.000000px;}
.y18{bottom:1005.630000px;}
.yae{bottom:1015.620000px;}
.yaf{bottom:1015.634919px;}
.ydf{bottom:1020.660000px;}
.y43{bottom:1021.020000px;}
.y17{bottom:1026.690000px;}
.y79{bottom:1029.210000px;}
.yad{bottom:1039.920000px;}
.yac{bottom:1039.935000px;}
.yde{bottom:1044.960000px;}
.y42{bottom:1045.320000px;}
.y16{bottom:1047.840000px;}
.y78{bottom:1053.510000px;}
.y15{bottom:1068.930000px;}
.ydd{bottom:1069.200000px;}
.y41{bottom:1069.560000px;}
.y75{bottom:1077.810000px;}
.y77{bottom:1077.840000px;}
.y14{bottom:1090.710000px;}
.ydc{bottom:1093.500000px;}
.y40{bottom:1093.860000px;}
.y73{bottom:1112.609919px;}
.y72{bottom:1112.670000px;}
.y13{bottom:1115.370000px;}
.y3f{bottom:1118.070000px;}
.y11{bottom:1150.740000px;}
.yf{bottom:1156.050000px;}
.yb{bottom:1173.600000px;}
.y9{bottom:1213.650000px;}
.y1{bottom:1245.780000px;}
.hc{height:13.950000px;}
.h27{height:14.999842px;}
.h2f{height:15.000398px;}
.h2d{height:15.074360px;}
.hd{height:18.090000px;}
.h4{height:18.900000px;}
.h6{height:19.980000px;}
.h12{height:22.499074px;}
.h24{height:22.499115px;}
.h1e{height:22.499182px;}
.h1a{height:22.499959px;}
.h34{height:22.499976px;}
.h26{height:22.499979px;}
.h10{height:22.500000px;}
.h31{height:22.500016px;}
.h7{height:22.770000px;}
.h15{height:23.175439px;}
.h8{height:24.210000px;}
.h20{height:27.675039px;}
.h29{height:27.749640px;}
.h28{height:38.407413px;}
.h2e{height:38.598220px;}
.h14{height:38.696200px;}
.hb{height:40.539023px;}
.ha{height:41.850000px;}
.h21{height:42.624156px;}
.h2a{height:42.717666px;}
.h16{height:42.913224px;}
.h1c{height:43.425174px;}
.h18{height:43.500775px;}
.he{height:45.720703px;}
.h30{height:49.396637px;}
.h33{height:49.396663px;}
.h17{height:53.077171px;}
.h25{height:54.072348px;}
.h23{height:58.703593px;}
.h22{height:60.679688px;}
.h2{height:60.960938px;}
.h5{height:64.657617px;}
.h1b{height:66.269466px;}
.h11{height:66.302453px;}
.h1d{height:66.316014px;}
.h19{height:66.431467px;}
.h36{height:70.337105px;}
.h32{height:70.357010px;}
.h37{height:70.357014px;}
.h35{height:70.357032px;}
.h3{height:70.664062px;}
.hf{height:71.019492px;}
.h2b{height:73.211407px;}
.h38{height:74.004654px;}
.h13{height:75.007191px;}
.h9{height:81.382852px;}
.h1f{height:81.390972px;}
.h2c{height:91.998016px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w1c{width:15.000124px;}
.w19{width:15.000144px;}
.w20{width:23.174909px;}
.w1e{width:23.250495px;}
.w1f{width:23.250510px;}
.w1d{width:23.250530px;}
.w15{width:30.749847px;}
.w13{width:30.825447px;}
.wb{width:30.825467px;}
.wd{width:35.323981px;}
.w1a{width:40.499777px;}
.w16{width:56.998505px;}
.w14{width:56.998526px;}
.w3{width:66.330000px;}
.we{width:80.246758px;}
.w10{width:80.322355px;}
.wc{width:85.498740px;}
.wa{width:85.503408px;}
.w1b{width:92.924954px;}
.w17{width:92.928167px;}
.wf{width:115.495453px;}
.w11{width:123.001807px;}
.w9{width:124.920000px;}
.w18{width:135.668813px;}
.w6{width:147.510000px;}
.w5{width:149.760000px;}
.w8{width:192.540000px;}
.w12{width:263.923516px;}
.w7{width:270.840000px;}
.w4{width:340.530000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x3f{left:2.435901px;}
.x21{left:4.030120px;}
.x26{left:5.607580px;}
.x5{left:10.800000px;}
.x34{left:15.397660px;}
.x3{left:16.650000px;}
.x1c{left:20.659479px;}
.x20{left:27.159383px;}
.x25{left:52.940836px;}
.x44{left:64.531495px;}
.x1a{left:69.002539px;}
.x4{left:77.850000px;}
.x2a{left:81.226574px;}
.x1{left:85.049987px;}
.x2d{left:95.894815px;}
.xa{left:97.649987px;}
.x29{left:106.677267px;}
.x49{left:108.269987px;}
.x17{left:110.879987px;}
.x14{left:127.649987px;}
.x15{left:157.979987px;}
.x7{left:164.010000px;}
.x8{left:171.210000px;}
.x4a{left:180.044980px;}
.x24{left:181.769980px;}
.x41{left:183.944980px;}
.x38{left:186.494980px;}
.x19{left:201.194980px;}
.x4b{left:203.249987px;}
.x4e{left:209.189987px;}
.x3a{left:220.619987px;}
.x42{left:224.399987px;}
.xb{left:242.939987px;}
.x16{left:246.359987px;}
.x2f{left:254.831423px;}
.xf{left:258.779987px;}
.x27{left:262.019987px;}
.x3d{left:263.369987px;}
.x12{left:265.169987px;}
.x1d{left:269.594980px;}
.x4f{left:274.919980px;}
.x13{left:278.039987px;}
.xd{left:283.889987px;}
.x1b{left:286.679987px;}
.x10{left:296.219987px;}
.x50{left:298.109987px;}
.xe{left:305.219987px;}
.x11{left:311.969987px;}
.x31{left:315.120000px;}
.xc{left:327.269987px;}
.x46{left:330.644980px;}
.x28{left:332.294980px;}
.x18{left:333.839987px;}
.x4c{left:337.694980px;}
.x32{left:345.899987px;}
.x1e{left:355.079987px;}
.x4d{left:360.959987px;}
.x1f{left:365.069959px;}
.x3e{left:368.444959px;}
.x23{left:372.209987px;}
.x40{left:383.459987px;}
.x55{left:390.029987px;}
.x30{left:391.649987px;}
.x22{left:400.379987px;}
.x2{left:438.180000px;}
.x2c{left:444.195000px;}
.x2b{left:447.809987px;}
.x33{left:453.719959px;}
.x35{left:510.719987px;}
.x51{left:522.644959px;}
.x52{left:545.909987px;}
.x39{left:566.159987px;}
.x2e{left:567.239987px;}
.x43{left:574.094959px;}
.x53{left:593.744959px;}
.x54{left:617.039987px;}
.x3c{left:635.579987px;}
.x47{left:646.694959px;}
.x45{left:667.079987px;}
.x48{left:669.959987px;}
.x3b{left:673.829987px;}
.x6{left:676.080000px;}
.x9{left:708.210000px;}
.x36{left:768.195000px;}
.x37{left:799.019987px;}
@media print{
.v2{vertical-align:-38.019108pt;}
.v3{vertical-align:-29.747257pt;}
.v1{vertical-align:-26.899629pt;}
.v4{vertical-align:-2.560000pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:16.000000pt;}
.ls13{letter-spacing:-1.923405pt;}
.ls12{letter-spacing:-1.564088pt;}
.ls11{letter-spacing:-1.549286pt;}
.lsb{letter-spacing:-1.495709pt;}
.ls10{letter-spacing:-0.953407pt;}
.lsd{letter-spacing:-0.826395pt;}
.lsa{letter-spacing:-0.704866pt;}
.ls8{letter-spacing:-0.588198pt;}
.lsc{letter-spacing:-0.450593pt;}
.lse{letter-spacing:-0.449810pt;}
.ls1d{letter-spacing:-0.349159pt;}
.ls7{letter-spacing:-0.256000pt;}
.ls20{letter-spacing:-0.192000pt;}
.ls6{letter-spacing:-0.128000pt;}
.ls1f{letter-spacing:-0.071467pt;}
.ls1e{letter-spacing:-0.064000pt;}
.ls5{letter-spacing:-0.032000pt;}
.ls14{letter-spacing:-0.000001pt;}
.ls4{letter-spacing:0.000000pt;}
.ls15{letter-spacing:0.064000pt;}
.ls1a{letter-spacing:0.114237pt;}
.ls19{letter-spacing:0.128000pt;}
.ls0{letter-spacing:0.160000pt;}
.ls21{letter-spacing:0.248533pt;}
.ls18{letter-spacing:0.256000pt;}
.ls1b{letter-spacing:0.320000pt;}
.lsf{letter-spacing:0.463489pt;}
.ls9{letter-spacing:0.604550pt;}
.ls1c{letter-spacing:2.880000pt;}
.ls3{letter-spacing:5.760000pt;}
.ls23{letter-spacing:8.640000pt;}
.ls2{letter-spacing:9.600000pt;}
.ls17{letter-spacing:23.360000pt;}
.ls1{letter-spacing:24.320000pt;}
.ls22{letter-spacing:85.034667pt;}
.ls16{letter-spacing:720.106667pt;}
.ws1a{word-spacing:-73.751988pt;}
.ws1b{word-spacing:-68.397033pt;}
.ws5{word-spacing:-60.049717pt;}
.ws13{word-spacing:-40.489841pt;}
.ws8{word-spacing:-37.295516pt;}
.ws19{word-spacing:-36.322919pt;}
.ws6{word-spacing:-35.496645pt;}
.wsd{word-spacing:-32.967295pt;}
.wsa{word-spacing:-15.637495pt;}
.ws0{word-spacing:-14.800000pt;}
.ws1f{word-spacing:-14.144000pt;}
.ws2{word-spacing:-14.080000pt;}
.ws3{word-spacing:-13.952000pt;}
.ws24{word-spacing:-13.888000pt;}
.ws1{word-spacing:-10.528000pt;}
.ws1e{word-spacing:-9.363200pt;}
.ws4{word-spacing:0.000000pt;}
.ws10{word-spacing:0.879655pt;}
.ws11{word-spacing:1.475534pt;}
.ws16{word-spacing:1.497926pt;}
.ws17{word-spacing:1.857243pt;}
.wse{word-spacing:21.068129pt;}
.wsb{word-spacing:21.104807pt;}
.ws9{word-spacing:65.503875pt;}
.ws22{word-spacing:79.684094pt;}
.ws7{word-spacing:80.635531pt;}
.ws1d{word-spacing:96.960873pt;}
.ws23{word-spacing:107.716087pt;}
.wsf{word-spacing:129.858576pt;}
.wsc{word-spacing:130.791916pt;}
.ws1c{word-spacing:180.926402pt;}
.ws12{word-spacing:187.871119pt;}
.ws21{word-spacing:283.680421pt;}
.ws20{word-spacing:308.965544pt;}
.ws15{word-spacing:335.132132pt;}
.ws14{word-spacing:603.049827pt;}
.ws18{word-spacing:669.915351pt;}
._27{margin-left:-639.875139pt;}
._2f{margin-left:-298.429139pt;}
._42{margin-left:-291.853505pt;}
._29{margin-left:-285.047017pt;}
._24{margin-left:-267.512254pt;}
._25{margin-left:-263.187046pt;}
._2d{margin-left:-261.423097pt;}
._2a{margin-left:-258.331601pt;}
._1d{margin-left:-240.988484pt;}
._2b{margin-left:-233.157351pt;}
._43{margin-left:-228.289387pt;}
._18{margin-left:-220.895999pt;}
._20{margin-left:-219.019514pt;}
._19{margin-left:-217.734082pt;}
._26{margin-left:-213.044585pt;}
._2e{margin-left:-210.908922pt;}
._28{margin-left:-199.246276pt;}
._2c{margin-left:-192.242720pt;}
._21{margin-left:-185.753317pt;}
._1c{margin-left:-183.181534pt;}
._34{margin-left:-171.688397pt;}
._3e{margin-left:-170.328668pt;}
._22{margin-left:-153.061868pt;}
._23{margin-left:-151.749670pt;}
._3b{margin-left:-148.390308pt;}
._41{margin-left:-145.913084pt;}
._39{margin-left:-144.889968pt;}
._3a{margin-left:-141.482646pt;}
._40{margin-left:-140.190545pt;}
._37{margin-left:-135.746486pt;}
._3f{margin-left:-133.879807pt;}
._38{margin-left:-129.324428pt;}
._33{margin-left:-100.341000pt;}
._1a{margin-left:-95.241306pt;}
._31{margin-left:-4.416000pt;}
._32{margin-left:-3.520000pt;}
._b{margin-left:-2.624000pt;}
._1{margin-left:-0.921707pt;}
._0{width:1.042027pt;}
._14{width:1.974080pt;}
._12{width:2.889920pt;}
._16{width:3.866133pt;}
._13{width:4.928000pt;}
._9{width:5.824000pt;}
._10{width:7.104000pt;}
._11{width:8.365973pt;}
._8{width:9.280000pt;}
._a{width:10.432000pt;}
._17{width:11.840000pt;}
._5{width:12.800000pt;}
._46{width:15.104000pt;}
._f{width:16.064000pt;}
._e{width:17.216000pt;}
._d{width:18.368000pt;}
._7{width:19.498667pt;}
._6{width:20.394667pt;}
._36{width:21.845333pt;}
._1e{width:23.360000pt;}
._2{width:24.320000pt;}
._4{width:25.792000pt;}
._48{width:28.928000pt;}
._30{width:30.016000pt;}
._35{width:31.488000pt;}
._3{width:32.448000pt;}
._45{width:40.000000pt;}
._47{width:43.993707pt;}
._c{width:45.376000pt;}
._44{width:56.128000pt;}
._15{width:62.400000pt;}
._1b{width:68.160000pt;}
._1f{width:174.720000pt;}
._3c{width:672.106669pt;}
._3d{width:816.106667pt;}
.fs8{font-size:35.046907pt;}
.fse{font-size:38.604432pt;}
.fs11{font-size:38.708381pt;}
.fs9{font-size:38.866239pt;}
.fs3{font-size:42.560000pt;}
.fs4{font-size:48.000000pt;}
.fs10{font-size:49.169172pt;}
.fs13{font-size:49.413442pt;}
.fs1{font-size:58.560000pt;}
.fs6{font-size:60.049717pt;}
.fsc{font-size:60.091896pt;}
.fsb{font-size:60.196513pt;}
.fs14{font-size:63.237576pt;}
.fs16{font-size:63.237609pt;}
.fs0{font-size:64.000000pt;}
.fsf{font-size:66.161966pt;}
.fs12{font-size:66.340119pt;}
.fsa{font-size:66.683258pt;}
.fs7{font-size:67.933544pt;}
.fsd{font-size:73.751988pt;}
.fs5{font-size:74.560000pt;}
.fs2{font-size:85.440000pt;}
.fs18{font-size:90.045564pt;}
.fs15{font-size:90.071047pt;}
.fs19{font-size:90.071051pt;}
.fs17{font-size:90.071074pt;}
.y0{bottom:0.000000pt;}
.ya{bottom:1.200000pt;}
.ye{bottom:2.000000pt;}
.yb0{bottom:2.031164pt;}
.yb8{bottom:2.041255pt;}
.y10{bottom:2.240000pt;}
.y64{bottom:2.511423pt;}
.y74{bottom:3.046598pt;}
.y81{bottom:3.046616pt;}
.y70{bottom:3.055143pt;}
.y6a{bottom:3.060462pt;}
.y4{bottom:3.200000pt;}
.y6d{bottom:3.713428pt;}
.yc1{bottom:3.760833pt;}
.yb6{bottom:3.888053pt;}
.yb4{bottom:3.888077pt;}
.y6{bottom:4.080000pt;}
.y5f{bottom:4.410710pt;}
.y82{bottom:4.410751pt;}
.y12{bottom:4.640000pt;}
.yc8{bottom:5.641047pt;}
.yc3{bottom:5.641081pt;}
.y5e{bottom:6.227984pt;}
.y8{bottom:6.560000pt;}
.yb5{bottom:8.062900pt;}
.y63{bottom:9.982017pt;}
.y6c{bottom:10.438335pt;}
.y95{bottom:10.438337pt;}
.y62{bottom:10.438339pt;}
.y76{bottom:14.079431pt;}
.yd{bottom:14.480000pt;}
.y71{bottom:24.264594pt;}
.y6b{bottom:24.306837pt;}
.yc{bottom:27.040000pt;}
.y7{bottom:38.240000pt;}
.y5{bottom:40.640000pt;}
.y3{bottom:41.440000pt;}
.y2{bottom:45.360000pt;}
.yab{bottom:86.240000pt;}
.y3e{bottom:89.680000pt;}
.y6e{bottom:92.400000pt;}
.y6f{bottom:92.453333pt;}
.ydb{bottom:102.320000pt;}
.yaa{bottom:107.760000pt;}
.y3d{bottom:111.280000pt;}
.yda{bottom:123.840000pt;}
.ya9{bottom:129.360000pt;}
.y3c{bottom:132.800000pt;}
.y68{bottom:137.440000pt;}
.y69{bottom:137.453333pt;}
.yd9{bottom:145.440000pt;}
.ya8{bottom:147.440000pt;}
.y3b{bottom:154.400000pt;}
.yd8{bottom:166.960000pt;}
.y3a{bottom:175.920000pt;}
.y67{bottom:182.400000pt;}
.yd7{bottom:188.560000pt;}
.y39{bottom:197.520000pt;}
.y66{bottom:204.026667pt;}
.yd6{bottom:210.186667pt;}
.y38{bottom:219.146667pt;}
.y65{bottom:222.106667pt;}
.y97{bottom:224.266667pt;}
.yd5{bottom:231.706667pt;}
.y37{bottom:240.666667pt;}
.y94{bottom:245.853315pt;}
.y96{bottom:245.866667pt;}
.yd4{bottom:253.306667pt;}
.y36{bottom:262.266667pt;}
.y93{bottom:272.186667pt;}
.yd3{bottom:274.906667pt;}
.y35{bottom:283.866667pt;}
.y92{bottom:290.346667pt;}
.yd2{bottom:296.426667pt;}
.y34{bottom:305.386667pt;}
.yd1{bottom:318.026667pt;}
.y33{bottom:326.986667pt;}
.y60{bottom:336.426667pt;}
.y61{bottom:336.453297pt;}
.yd0{bottom:339.626667pt;}
.y32{bottom:348.586667pt;}
.ycf{bottom:361.146667pt;}
.y5d{bottom:363.453297pt;}
.y5c{bottom:363.466667pt;}
.ya7{bottom:365.786667pt;}
.y31{bottom:368.026667pt;}
.yce{bottom:382.746667pt;}
.ya6{bottom:387.306667pt;}
.y5b{bottom:389.786667pt;}
.y30{bottom:389.866667pt;}
.ycd{bottom:404.346667pt;}
.ya5{bottom:408.906667pt;}
.y5a{bottom:411.386667pt;}
.y2f{bottom:413.866667pt;}
.ycc{bottom:425.866667pt;}
.ya4{bottom:430.506667pt;}
.y59{bottom:432.986667pt;}
.y2e{bottom:435.466667pt;}
.ycb{bottom:447.466667pt;}
.ya3{bottom:452.026667pt;}
.y58{bottom:454.506667pt;}
.y2d{bottom:457.066667pt;}
.yca{bottom:469.066667pt;}
.ya2{bottom:473.626667pt;}
.y57{bottom:476.106667pt;}
.y2c{bottom:478.586667pt;}
.y91{bottom:490.586667pt;}
.ya1{bottom:495.226667pt;}
.y56{bottom:497.706667pt;}
.y2b{bottom:500.186667pt;}
.y90{bottom:512.186667pt;}
.ya0{bottom:516.746667pt;}
.y55{bottom:519.226667pt;}
.y2a{bottom:521.786667pt;}
.y8f{bottom:533.706667pt;}
.y9f{bottom:538.346667pt;}
.y54{bottom:540.826667pt;}
.y29{bottom:543.306667pt;}
.y8e{bottom:555.306667pt;}
.yc9{bottom:555.319964pt;}
.y9e{bottom:559.946667pt;}
.y53{bottom:562.426667pt;}
.y28{bottom:564.906667pt;}
.y8d{bottom:576.933333pt;}
.y9d{bottom:581.493333pt;}
.yc7{bottom:581.719964pt;}
.yc6{bottom:581.733333pt;}
.y52{bottom:583.973333pt;}
.y27{bottom:584.373333pt;}
.y8c{bottom:598.453333pt;}
.y9c{bottom:603.093333pt;}
.y51{bottom:605.573333pt;}
.y26{bottom:606.213333pt;}
.yc5{bottom:608.053333pt;}
.y8b{bottom:620.053333pt;}
.y9b{bottom:624.693333pt;}
.y50{bottom:627.173333pt;}
.yc2{bottom:629.653261pt;}
.yc4{bottom:629.653333pt;}
.y25{bottom:630.293333pt;}
.y8a{bottom:641.653333pt;}
.y9a{bottom:642.773333pt;}
.y4f{bottom:648.693333pt;}
.y24{bottom:651.813333pt;}
.yc0{bottom:656.053261pt;}
.ybf{bottom:656.053333pt;}
.y89{bottom:663.173333pt;}
.y4e{bottom:670.293333pt;}
.y23{bottom:673.413333pt;}
.ybe{bottom:677.573333pt;}
.y88{bottom:684.773333pt;}
.y4d{bottom:691.813333pt;}
.y22{bottom:695.013333pt;}
.ybd{bottom:699.173333pt;}
.y86{bottom:706.373333pt;}
.y87{bottom:706.386594pt;}
.y4c{bottom:713.413333pt;}
.y21{bottom:716.533333pt;}
.ybc{bottom:720.773333pt;}
.y85{bottom:732.653261pt;}
.y84{bottom:732.693333pt;}
.y4b{bottom:735.013333pt;}
.y20{bottom:738.133333pt;}
.ybb{bottom:742.293333pt;}
.y4a{bottom:756.533333pt;}
.y83{bottom:759.093333pt;}
.y1f{bottom:759.653333pt;}
.yba{bottom:763.893333pt;}
.y49{bottom:778.133333pt;}
.y80{bottom:780.586594pt;}
.y7f{bottom:780.613333pt;}
.y1e{bottom:781.253333pt;}
.yb9{bottom:785.413333pt;}
.y48{bottom:799.733333pt;}
.y1d{bottom:800.133333pt;}
.yb7{bottom:806.986594pt;}
.y7e{bottom:807.013333pt;}
.y1c{bottom:818.853333pt;}
.y47{bottom:821.253333pt;}
.y99{bottom:825.013333pt;}
.y7d{bottom:828.613333pt;}
.y1b{bottom:837.653333pt;}
.y46{bottom:842.853333pt;}
.y98{bottom:843.093333pt;}
.y7c{bottom:850.133333pt;}
.yb3{bottom:850.186594pt;}
.yb2{bottom:850.213333pt;}
.y1a{bottom:856.373333pt;}
.ye1{bottom:864.133333pt;}
.y45{bottom:864.453333pt;}
.y7b{bottom:871.733333pt;}
.y19{bottom:875.173333pt;}
.yb1{bottom:881.173333pt;}
.ye0{bottom:885.653333pt;}
.y44{bottom:885.973333pt;}
.y7a{bottom:893.333333pt;}
.y18{bottom:893.893333pt;}
.yae{bottom:902.773333pt;}
.yaf{bottom:902.786594pt;}
.ydf{bottom:907.253333pt;}
.y43{bottom:907.573333pt;}
.y17{bottom:912.613333pt;}
.y79{bottom:914.853333pt;}
.yad{bottom:924.373333pt;}
.yac{bottom:924.386667pt;}
.yde{bottom:928.853333pt;}
.y42{bottom:929.173333pt;}
.y16{bottom:931.413333pt;}
.y78{bottom:936.453333pt;}
.y15{bottom:950.160000pt;}
.ydd{bottom:950.400000pt;}
.y41{bottom:950.720000pt;}
.y75{bottom:958.053333pt;}
.y77{bottom:958.080000pt;}
.y14{bottom:969.520000pt;}
.ydc{bottom:972.000000pt;}
.y40{bottom:972.320000pt;}
.y73{bottom:988.986594pt;}
.y72{bottom:989.040000pt;}
.y13{bottom:991.440000pt;}
.y3f{bottom:993.840000pt;}
.y11{bottom:1022.880000pt;}
.yf{bottom:1027.600000pt;}
.yb{bottom:1043.200000pt;}
.y9{bottom:1078.800000pt;}
.y1{bottom:1107.360000pt;}
.hc{height:12.400000pt;}
.h27{height:13.333193pt;}
.h2f{height:13.333687pt;}
.h2d{height:13.399431pt;}
.hd{height:16.080000pt;}
.h4{height:16.800000pt;}
.h6{height:17.760000pt;}
.h12{height:19.999177pt;}
.h24{height:19.999213pt;}
.h1e{height:19.999273pt;}
.h1a{height:19.999964pt;}
.h34{height:19.999978pt;}
.h26{height:19.999982pt;}
.h10{height:20.000000pt;}
.h31{height:20.000015pt;}
.h7{height:20.240000pt;}
.h15{height:20.600390pt;}
.h8{height:21.520000pt;}
.h20{height:24.600034pt;}
.h29{height:24.666347pt;}
.h28{height:34.139923pt;}
.h2e{height:34.309529pt;}
.h14{height:34.396623pt;}
.hb{height:36.034687pt;}
.ha{height:37.200000pt;}
.h21{height:37.888138pt;}
.h2a{height:37.971259pt;}
.h16{height:38.145088pt;}
.h1c{height:38.600154pt;}
.h18{height:38.667355pt;}
.he{height:40.640625pt;}
.h30{height:43.908122pt;}
.h33{height:43.908145pt;}
.h17{height:47.179707pt;}
.h25{height:48.064309pt;}
.h23{height:52.180972pt;}
.h22{height:53.937500pt;}
.h2{height:54.187500pt;}
.h5{height:57.473437pt;}
.h1b{height:58.906192pt;}
.h11{height:58.935514pt;}
.h1d{height:58.947568pt;}
.h19{height:59.050193pt;}
.h36{height:62.521871pt;}
.h32{height:62.539565pt;}
.h37{height:62.539568pt;}
.h35{height:62.539584pt;}
.h3{height:62.812500pt;}
.hf{height:63.128437pt;}
.h2b{height:65.076806pt;}
.h38{height:65.781915pt;}
.h13{height:66.673058pt;}
.h9{height:72.340312pt;}
.h1f{height:72.347531pt;}
.h2c{height:81.776014pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w1c{width:13.333443pt;}
.w19{width:13.333461pt;}
.w20{width:20.599919pt;}
.w1e{width:20.667106pt;}
.w1f{width:20.667120pt;}
.w1d{width:20.667138pt;}
.w15{width:27.333197pt;}
.w13{width:27.400397pt;}
.wb{width:27.400415pt;}
.wd{width:31.399094pt;}
.w1a{width:35.999802pt;}
.w16{width:50.665338pt;}
.w14{width:50.665356pt;}
.w3{width:58.960000pt;}
.we{width:71.330451pt;}
.w10{width:71.397649pt;}
.wc{width:75.998880pt;}
.wa{width:76.003029pt;}
.w1b{width:82.599959pt;}
.w17{width:82.602815pt;}
.wf{width:102.662625pt;}
.w11{width:109.334939pt;}
.w9{width:111.040000pt;}
.w18{width:120.594501pt;}
.w6{width:131.120000pt;}
.w5{width:133.120000pt;}
.w8{width:171.146667pt;}
.w12{width:234.598681pt;}
.w7{width:240.746667pt;}
.w4{width:302.693333pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x3f{left:2.165245pt;}
.x21{left:3.582329pt;}
.x26{left:4.984516pt;}
.x5{left:9.600000pt;}
.x34{left:13.686809pt;}
.x3{left:14.800000pt;}
.x1c{left:18.363981pt;}
.x20{left:24.141674pt;}
.x25{left:47.058521pt;}
.x44{left:57.361329pt;}
.x1a{left:61.335590pt;}
.x4{left:69.200000pt;}
.x2a{left:72.201399pt;}
.x1{left:75.599988pt;}
.x2d{left:85.239835pt;}
.xa{left:86.799988pt;}
.x29{left:94.824237pt;}
.x49{left:96.239988pt;}
.x17{left:98.559988pt;}
.x14{left:113.466655pt;}
.x15{left:140.426655pt;}
.x7{left:145.786667pt;}
.x8{left:152.186667pt;}
.x4a{left:160.039982pt;}
.x24{left:161.573315pt;}
.x41{left:163.506649pt;}
.x38{left:165.773315pt;}
.x19{left:178.839982pt;}
.x4b{left:180.666655pt;}
.x4e{left:185.946655pt;}
.x3a{left:196.106655pt;}
.x42{left:199.466655pt;}
.xb{left:215.946655pt;}
.x16{left:218.986655pt;}
.x2f{left:226.516820pt;}
.xf{left:230.026655pt;}
.x27{left:232.906655pt;}
.x3d{left:234.106655pt;}
.x12{left:235.706655pt;}
.x1d{left:239.639982pt;}
.x4f{left:244.373315pt;}
.x13{left:247.146655pt;}
.xd{left:252.346655pt;}
.x1b{left:254.826655pt;}
.x10{left:263.306655pt;}
.x50{left:264.986655pt;}
.xe{left:271.306655pt;}
.x11{left:277.306655pt;}
.x31{left:280.106667pt;}
.xc{left:290.906655pt;}
.x46{left:293.906649pt;}
.x28{left:295.373315pt;}
.x18{left:296.746655pt;}
.x4c{left:300.173315pt;}
.x32{left:307.466655pt;}
.x1e{left:315.626655pt;}
.x4d{left:320.853322pt;}
.x1f{left:324.506630pt;}
.x3e{left:327.506630pt;}
.x23{left:330.853322pt;}
.x40{left:340.853322pt;}
.x55{left:346.693322pt;}
.x30{left:348.133322pt;}
.x22{left:355.893322pt;}
.x2{left:389.493333pt;}
.x2c{left:394.840000pt;}
.x2b{left:398.053322pt;}
.x33{left:403.306630pt;}
.x35{left:453.973322pt;}
.x51{left:464.573297pt;}
.x52{left:485.253322pt;}
.x39{left:503.253322pt;}
.x2e{left:504.213322pt;}
.x43{left:510.306630pt;}
.x53{left:527.773297pt;}
.x54{left:548.479988pt;}
.x3c{left:564.959988pt;}
.x47{left:574.839964pt;}
.x45{left:592.959988pt;}
.x48{left:595.519988pt;}
.x3b{left:598.959988pt;}
.x6{left:600.960000pt;}
.x9{left:629.520000pt;}
.x36{left:682.840000pt;}
.x37{left:710.239988pt;}
}




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