
    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_32f42f1145615faf05e738d3.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.682617;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_7801f9b6037890e30c94e230.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.172852;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_d475f92070d9e7ce52833809.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.172852;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_a5c690e3817986156069a32a.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.202148;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_f16f99897dc88a5916dcb41f.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.435059;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_a813fe4f0e1bfa72a023929c.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.142090;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_96c6c23a23f1860a8ca101aa.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_5e3b5bc3797751c502c9efc8.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_5a3a4637a5aeaf1626db3804.woff2')format("woff");}.ff9{font-family:ff9;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;}
.m12{transform:matrix(0.151460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151460,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.151504,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151504,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151504,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.179440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179440,0.000000,0.000000,0.250000,0,0);}
.m15{transform:matrix(0.183757,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183757,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183757,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.183945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183945,0.000000,0.000000,0.250000,0,0);}
.m11{transform:matrix(0.190579,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190579,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190579,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.190635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190635,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.227482,0.000000,-0.075820,0.238225,0,0);-ms-transform:matrix(0.227482,0.000000,-0.075820,0.238225,0,0);-webkit-transform:matrix(0.227482,0.000000,-0.075820,0.238225,0,0);}
.m17{transform:matrix(0.232435,0.000000,-0.077470,0.237694,0,0);-ms-transform:matrix(0.232435,0.000000,-0.077470,0.237694,0,0);-webkit-transform:matrix(0.232435,0.000000,-0.077470,0.237694,0,0);}
.m9{transform:matrix(0.232628,0.000000,-0.077535,0.237673,0,0);-ms-transform:matrix(0.232628,0.000000,-0.077535,0.237673,0,0);-webkit-transform:matrix(0.232628,0.000000,-0.077535,0.237673,0,0);}
.m6{transform:matrix(0.232649,0.000000,-0.077542,0.237670,0,0);-ms-transform:matrix(0.232649,0.000000,-0.077542,0.237670,0,0);-webkit-transform:matrix(0.232649,0.000000,-0.077542,0.237670,0,0);}
.mc{transform:matrix(0.238317,0.000000,-0.079431,0.237046,0,0);-ms-transform:matrix(0.238317,0.000000,-0.079431,0.237046,0,0);-webkit-transform:matrix(0.238317,0.000000,-0.079431,0.237046,0,0);}
.m2{transform:matrix(0.238725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238725,0.000000,0.000000,0.250000,0,0);}
.m14{transform:matrix(0.240193,0.000000,-0.080056,0.236835,0,0);-ms-transform:matrix(0.240193,0.000000,-0.080056,0.236835,0,0);-webkit-transform:matrix(0.240193,0.000000,-0.080056,0.236835,0,0);}
.m10{transform:matrix(0.240257,0.000000,-0.080077,0.236828,0,0);-ms-transform:matrix(0.240257,0.000000,-0.080077,0.236828,0,0);-webkit-transform:matrix(0.240257,0.000000,-0.080077,0.236828,0,0);}
.ma{transform:matrix(0.241194,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241194,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241194,0.000000,0.000000,0.250000,0,0);}
.m16{transform:matrix(0.244469,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244469,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244469,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.244694,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244694,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244694,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.244718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244718,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);}
.mb{transform:matrix(0.251341,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251341,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251341,0.000000,0.000000,0.250000,0,0);}
.m13{transform:matrix(0.253544,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253544,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253544,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.253619,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253619,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253619,0.000000,0.000000,0.250000,0,0);}
.m7{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:-90.632417px;}
.v5{vertical-align:-50.966744px;}
.va{vertical-align:-47.798384px;}
.v1{vertical-align:-44.609938px;}
.v3{vertical-align:-40.525480px;}
.v8{vertical-align:-5.112646px;}
.v4{vertical-align:-2.880000px;}
.v9{vertical-align:-1.021465px;}
.v0{vertical-align:0.000000px;}
.v7{vertical-align:16.883043px;}
.v6{vertical-align:20.880000px;}
.ls1b{letter-spacing:-1.950802px;}
.ls27{letter-spacing:-0.574760px;}
.lsc{letter-spacing:-0.463800px;}
.lsf{letter-spacing:-0.357000px;}
.ls19{letter-spacing:-0.352851px;}
.ls10{letter-spacing:-0.303000px;}
.ls17{letter-spacing:-0.240600px;}
.ls11{letter-spacing:-0.115800px;}
.ls16{letter-spacing:-0.107400px;}
.ls3c{letter-spacing:-0.078600px;}
.ls1e{letter-spacing:-0.078000px;}
.ls13{letter-spacing:-0.063820px;}
.ls1d{letter-spacing:-0.058320px;}
.ls12{letter-spacing:-0.043920px;}
.lse{letter-spacing:-0.020160px;}
.lsb{letter-spacing:0.000000px;}
.ls41{letter-spacing:0.060600px;}
.ls2b{letter-spacing:0.096171px;}
.ls14{letter-spacing:0.115407px;}
.ls18{letter-spacing:0.157200px;}
.ls7{letter-spacing:0.174000px;}
.ls3a{letter-spacing:0.175200px;}
.lsd{letter-spacing:0.256200px;}
.ls3b{letter-spacing:0.306000px;}
.ls4{letter-spacing:0.617760px;}
.ls8{letter-spacing:0.684720px;}
.ls2{letter-spacing:1.258560px;}
.ls0{letter-spacing:1.296000px;}
.ls1{letter-spacing:2.016000px;}
.ls25{letter-spacing:5.706720px;}
.ls38{letter-spacing:15.605718px;}
.ls15{letter-spacing:15.901730px;}
.ls1c{letter-spacing:21.546720px;}
.ls3f{letter-spacing:31.626720px;}
.ls40{letter-spacing:35.226720px;}
.ls3{letter-spacing:38.106720px;}
.ls1a{letter-spacing:38.898610px;}
.ls3d{letter-spacing:42.570720px;}
.ls6{letter-spacing:43.096614px;}
.ls2a{letter-spacing:60.136927px;}
.ls23{letter-spacing:60.426720px;}
.ls33{letter-spacing:60.862305px;}
.ls3e{letter-spacing:62.010720px;}
.ls22{letter-spacing:63.306720px;}
.ls24{letter-spacing:66.906720px;}
.ls2d{letter-spacing:74.104962px;}
.ls5{letter-spacing:84.467704px;}
.ls2c{letter-spacing:85.057750px;}
.ls36{letter-spacing:107.257936px;}
.ls37{letter-spacing:107.365616px;}
.ls34{letter-spacing:113.691212px;}
.ls9{letter-spacing:146.159402px;}
.ls29{letter-spacing:178.707790px;}
.ls28{letter-spacing:195.477854px;}
.ls26{letter-spacing:195.631279px;}
.lsa{letter-spacing:211.062035px;}
.ls20{letter-spacing:213.257260px;}
.ls1f{letter-spacing:287.989708px;}
.ls39{letter-spacing:395.623228px;}
.ls21{letter-spacing:465.491438px;}
.ls32{letter-spacing:466.309532px;}
.ls30{letter-spacing:469.448410px;}
.ls35{letter-spacing:475.140951px;}
.ls31{letter-spacing:481.099498px;}
.ls2f{letter-spacing:482.908343px;}
.ls2e{letter-spacing:487.962468px;}
.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;}
}
.ws17{word-spacing:-161.203553px;}
.ws1{word-spacing:-41.040000px;}
.ws0{word-spacing:-41.002560px;}
.wsf{word-spacing:-32.808240px;}
.ws26{word-spacing:-19.998981px;}
.ws4{word-spacing:-15.226440px;}
.ws3{word-spacing:-14.970240px;}
.ws2{word-spacing:-14.506440px;}
.ws31{word-spacing:-13.811760px;}
.ws30{word-spacing:-13.680960px;}
.ws5{word-spacing:-13.505760px;}
.ws7{word-spacing:-13.461840px;}
.ws15{word-spacing:-13.447440px;}
.ws16{word-spacing:-13.427760px;}
.ws32{word-spacing:-13.427160px;}
.wse{word-spacing:-13.398360px;}
.ws6{word-spacing:-13.389960px;}
.ws20{word-spacing:-13.269623px;}
.ws11{word-spacing:-8.944080px;}
.ws10{word-spacing:-8.786880px;}
.ws2b{word-spacing:-0.036467px;}
.ws14{word-spacing:0.000000px;}
.ws25{word-spacing:15.393537px;}
.ws2c{word-spacing:15.393907px;}
.ws1d{word-spacing:25.398844px;}
.ws27{word-spacing:25.823848px;}
.wsd{word-spacing:34.362602px;}
.ws1b{word-spacing:35.167794px;}
.ws2f{word-spacing:35.550912px;}
.ws1c{word-spacing:35.772500px;}
.wsb{word-spacing:36.096789px;}
.ws1a{word-spacing:57.168712px;}
.ws1f{word-spacing:57.864571px;}
.ws2d{word-spacing:59.872202px;}
.ws22{word-spacing:61.549352px;}
.ws13{word-spacing:70.087510px;}
.ws12{word-spacing:110.081083px;}
.wsc{word-spacing:113.428701px;}
.ws24{word-spacing:127.704359px;}
.ws29{word-spacing:127.816825px;}
.ws2e{word-spacing:159.009617px;}
.ws19{word-spacing:159.086505px;}
.ws8{word-spacing:161.855929px;}
.ws18{word-spacing:225.878200px;}
.wsa{word-spacing:226.634872px;}
.ws2a{word-spacing:275.765433px;}
.ws21{word-spacing:353.468291px;}
.ws9{word-spacing:475.104080px;}
.ws1e{word-spacing:503.919936px;}
.ws23{word-spacing:1485.871042px;}
.ws28{word-spacing:1556.901575px;}
._4{margin-left:-1451.240400px;}
._2{margin-left:-1329.557760px;}
._3{margin-left:-1009.684800px;}
._5{margin-left:-582.617760px;}
._3c{margin-left:-9.090720px;}
._6{margin-left:-3.312000px;}
._f{margin-left:-2.267280px;}
._1{margin-left:-1.258560px;}
._0{width:1.394400px;}
._10{width:2.409360px;}
._d{width:3.466080px;}
._e{width:4.880400px;}
._a{width:6.780960px;}
._9{width:8.143200px;}
._b{width:9.327120px;}
._c{width:11.187840px;}
._34{width:13.038109px;}
._3d{width:14.627520px;}
._3b{width:15.730560px;}
._3a{width:16.732800px;}
._38{width:17.748720px;}
._39{width:18.884160px;}
._35{width:48.791521px;}
._8{width:50.185680px;}
._7{width:51.877920px;}
._2c{width:56.433491px;}
._12{width:59.668892px;}
._18{width:63.217279px;}
._1e{width:71.057149px;}
._2b{width:79.280735px;}
._26{width:100.499609px;}
._29{width:103.380453px;}
._30{width:107.275246px;}
._1f{width:122.723695px;}
._13{width:132.504763px;}
._21{width:146.774158px;}
._17{width:157.783045px;}
._1d{width:159.734317px;}
._24{width:160.888529px;}
._2e{width:162.515375px;}
._20{width:175.718610px;}
._22{width:178.235519px;}
._2a{width:188.066123px;}
._15{width:202.638240px;}
._2f{width:208.948340px;}
._25{width:243.411363px;}
._27{width:249.766448px;}
._23{width:317.109395px;}
._37{width:319.327873px;}
._31{width:358.908185px;}
._32{width:366.602721px;}
._28{width:391.715049px;}
._1a{width:430.635930px;}
._19{width:432.636300px;}
._1b{width:441.009586px;}
._14{width:442.860077px;}
._11{width:464.890680px;}
._2d{width:480.480240px;}
._33{width:490.901586px;}
._1c{width:518.893003px;}
._36{width:537.272575px;}
._16{width:1144.383360px;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(33,33,33);}
.fs26{font-size:2.880000px;}
.fs13{font-size:26.825167px;}
.fs1a{font-size:36.466122px;}
.fs1f{font-size:36.466997px;}
.fs23{font-size:36.467798px;}
.fs14{font-size:36.916925px;}
.fs11{font-size:37.074386px;}
.fs6{font-size:37.159525px;}
.fse{font-size:37.567485px;}
.fsc{font-size:37.639719px;}
.fs9{font-size:38.880000px;}
.fs4{font-size:48.240000px;}
.fs3{font-size:59.760000px;}
.fs24{font-size:63.033532px;}
.fs1b{font-size:63.088267px;}
.fs20{font-size:63.089781px;}
.fs15{font-size:63.868179px;}
.fs7{font-size:64.229163px;}
.fs12{font-size:64.268824px;}
.fsf{font-size:65.038353px;}
.fsb{font-size:65.197684px;}
.fs1{font-size:66.240000px;}
.fs25{font-size:66.296989px;}
.fs21{font-size:66.596659px;}
.fs1c{font-size:66.597081px;}
.fs16{font-size:67.358491px;}
.fs8{font-size:67.403748px;}
.fs10{font-size:68.411651px;}
.fsd{font-size:68.579916px;}
.fs22{font-size:82.459781px;}
.fs18{font-size:82.647994px;}
.fs1d{font-size:82.649978px;}
.fs5{font-size:84.023892px;}
.fs0{font-size:84.240000px;}
.fsa{font-size:85.359067px;}
.fs2{font-size:95.760000px;}
.fs17{font-size:95.804929px;}
.fs19{font-size:103.973458px;}
.fs1e{font-size:103.975953px;}
.y0{bottom:0.000000px;}
.y61{bottom:3.453773px;}
.y66{bottom:3.595882px;}
.yaa{bottom:3.606827px;}
.yab{bottom:3.606830px;}
.y2d{bottom:3.675214px;}
.y71{bottom:4.251849px;}
.y86{bottom:4.484233px;}
.y9b{bottom:4.484405px;}
.y83{bottom:6.347321px;}
.y95{bottom:6.347534px;}
.yea{bottom:7.020000px;}
.y35{bottom:7.567958px;}
.y69{bottom:7.737554px;}
.y77{bottom:8.376015px;}
.y37{bottom:8.749530px;}
.ya4{bottom:10.663584px;}
.ya7{bottom:11.855392px;}
.y5a{bottom:11.960390px;}
.y85{bottom:14.400468px;}
.y9a{bottom:14.400878px;}
.y80{bottom:14.621185px;}
.y90{bottom:14.621602px;}
.y92{bottom:14.621615px;}
.ya2{bottom:14.771949px;}
.y27{bottom:15.052131px;}
.yac{bottom:15.900646px;}
.ya9{bottom:15.900649px;}
.y5e{bottom:16.181154px;}
.y60{bottom:16.181160px;}
.y5c{bottom:16.181171px;}
.y2c{bottom:16.202214px;}
.y7e{bottom:16.294956px;}
.y8e{bottom:16.295403px;}
.y79{bottom:16.815606px;}
.y38{bottom:17.275872px;}
.y7d{bottom:17.525978px;}
.y8d{bottom:17.526447px;}
.y81{bottom:18.663722px;}
.y97{bottom:18.664237px;}
.y91{bottom:18.664239px;}
.y99{bottom:18.664241px;}
.y94{bottom:18.664251px;}
.y67{bottom:20.290723px;}
.y6a{bottom:20.290766px;}
.y76{bottom:20.587579px;}
.y39{bottom:21.491216px;}
.y2b{bottom:22.371448px;}
.ya6{bottom:23.805270px;}
.ya3{bottom:23.805275px;}
.y6f{bottom:24.552407px;}
.y7f{bottom:24.599432px;}
.y8f{bottom:24.600083px;}
.y2a{bottom:26.333584px;}
.y5d{bottom:26.415035px;}
.y5b{bottom:26.415063px;}
.y5f{bottom:26.415067px;}
.y29{bottom:26.493134px;}
.y74{bottom:26.982377px;}
.y84{bottom:27.442476px;}
.y98{bottom:27.443199px;}
.ya8{bottom:27.850237px;}
.ya5{bottom:27.850239px;}
.ye9{bottom:28.080000px;}
.y82{bottom:28.673499px;}
.y96{bottom:28.674247px;}
.y93{bottom:28.674249px;}
.y68{bottom:30.436805px;}
.y78{bottom:31.713304px;}
.y36{bottom:31.772512px;}
.y28{bottom:33.523932px;}
.ye6{bottom:35.460000px;}
.y7a{bottom:38.459231px;}
.y70{bottom:40.089851px;}
.y72{bottom:44.212953px;}
.ye8{bottom:49.494000px;}
.y75{bottom:54.283962px;}
.y6e{bottom:61.189493px;}
.y6{bottom:61.416000px;}
.y73{bottom:63.587543px;}
.ye7{bottom:70.554000px;}
.yc2{bottom:96.876000px;}
.y3c{bottom:110.016000px;}
.ye5{bottom:111.456000px;}
.ye4{bottom:113.256000px;}
.yc1{bottom:117.936000px;}
.y56{bottom:130.356000px;}
.y3b{bottom:131.076000px;}
.ye3{bottom:134.316000px;}
.yc0{bottom:138.996000px;}
.y33{bottom:148.176000px;}
.y34{bottom:148.215000px;}
.y55{bottom:151.410000px;}
.ye2{bottom:155.370000px;}
.ybf{bottom:160.050000px;}
.y54{bottom:168.510000px;}
.y3a{bottom:172.110000px;}
.ye1{bottom:176.430000px;}
.ybe{bottom:181.110000px;}
.ye0{bottom:197.490000px;}
.y32{bottom:202.170000px;}
.ydf{bottom:218.550000px;}
.y31{bottom:223.050000px;}
.ybd{bottom:223.230000px;}
.yde{bottom:239.610000px;}
.y30{bottom:244.290000px;}
.ydd{bottom:260.670000px;}
.ybc{bottom:265.350000px;}
.y2f{bottom:266.070000px;}
.ydc{bottom:281.775000px;}
.y26{bottom:284.115000px;}
.ybb{bottom:286.455000px;}
.y2e{bottom:302.115000px;}
.ydb{bottom:302.835000px;}
.yba{bottom:307.515000px;}
.yda{bottom:323.895000px;}
.yb9{bottom:328.575000px;}
.y25{bottom:335.055000px;}
.yd9{bottom:344.955000px;}
.yb8{bottom:349.635000px;}
.y24{bottom:356.115000px;}
.yd8{bottom:366.015000px;}
.yb7{bottom:370.695000px;}
.y23{bottom:377.175000px;}
.yd7{bottom:387.075000px;}
.yb6{bottom:391.755000px;}
.y22{bottom:398.055000px;}
.yd6{bottom:408.135000px;}
.yb5{bottom:412.815000px;}
.y21{bottom:419.115000px;}
.yd5{bottom:429.195000px;}
.yb4{bottom:433.875000px;}
.y20{bottom:440.175000px;}
.yd4{bottom:450.255000px;}
.yb3{bottom:454.935000px;}
.y1f{bottom:461.235000px;}
.yd3{bottom:471.315000px;}
.yb2{bottom:475.995000px;}
.y1e{bottom:482.295000px;}
.y53{bottom:488.055000px;}
.yd2{bottom:492.375000px;}
.yb1{bottom:497.055000px;}
.y1d{bottom:503.355000px;}
.y52{bottom:509.115000px;}
.yd1{bottom:513.435000px;}
.yb0{bottom:518.115000px;}
.y1c{bottom:524.415000px;}
.y51{bottom:530.175000px;}
.yd0{bottom:534.495000px;}
.yaf{bottom:539.175000px;}
.y1b{bottom:545.475000px;}
.y50{bottom:551.235000px;}
.ycf{bottom:555.555000px;}
.yae{bottom:560.235000px;}
.y1a{bottom:566.565000px;}
.y4f{bottom:568.185000px;}
.yce{bottom:576.645000px;}
.yad{bottom:581.325000px;}
.y19{bottom:587.625000px;}
.ycd{bottom:597.705000px;}
.ya1{bottom:598.439959px;}
.y18{bottom:608.685000px;}
.ya0{bottom:616.425000px;}
.ycc{bottom:618.765000px;}
.y17{bottom:629.745000px;}
.ycb{bottom:639.825000px;}
.y9f{bottom:648.465000px;}
.y16{bottom:650.805000px;}
.yca{bottom:660.885000px;}
.y9e{bottom:669.525000px;}
.y15{bottom:671.865000px;}
.yc9{bottom:681.945000px;}
.y9d{bottom:690.585000px;}
.y14{bottom:692.925000px;}
.yc8{bottom:703.005000px;}
.y9c{bottom:711.645000px;}
.yc7{bottom:724.065000px;}
.y8c{bottom:728.939919px;}
.y13{bottom:737.565000px;}
.yc6{bottom:745.125000px;}
.y8b{bottom:749.985000px;}
.yc5{bottom:766.005000px;}
.y12{bottom:767.445000px;}
.y8a{bottom:780.585000px;}
.yc4{bottom:787.065000px;}
.y11{bottom:788.505000px;}
.y89{bottom:801.645000px;}
.yc3{bottom:808.125000px;}
.y10{bottom:809.565000px;}
.y88{bottom:822.705000px;}
.y4e{bottom:829.185000px;}
.yf{bottom:830.625000px;}
.y87{bottom:843.765000px;}
.y4d{bottom:850.290000px;}
.ye{bottom:851.730000px;}
.y7c{bottom:860.865000px;}
.y4c{bottom:871.350000px;}
.yd{bottom:872.790000px;}
.y7b{bottom:881.970000px;}
.y4b{bottom:892.410000px;}
.yc{bottom:896.010000px;}
.y6d{bottom:908.340000px;}
.y4a{bottom:913.470000px;}
.yb{bottom:917.070000px;}
.y49{bottom:934.530000px;}
.ya{bottom:939.030000px;}
.y48{bottom:955.590000px;}
.y6c{bottom:957.930000px;}
.y9{bottom:961.350000px;}
.y47{bottom:976.650000px;}
.y8{bottom:986.550000px;}
.y6b{bottom:988.710000px;}
.y46{bottom:997.710000px;}
.y63{bottom:1004.550000px;}
.y65{bottom:1005.914919px;}
.y45{bottom:1018.770000px;}
.y7{bottom:1020.210000px;}
.y64{bottom:1028.490000px;}
.y44{bottom:1039.830000px;}
.y62{bottom:1058.370000px;}
.y5{bottom:1060.350000px;}
.y43{bottom:1060.890000px;}
.y57{bottom:1069.350000px;}
.y59{bottom:1075.214919px;}
.y42{bottom:1081.950000px;}
.y4{bottom:1092.570000px;}
.y58{bottom:1093.290000px;}
.y41{bottom:1103.010000px;}
.y40{bottom:1124.070000px;}
.y3{bottom:1124.610000px;}
.y3f{bottom:1145.160000px;}
.y2{bottom:1156.860000px;}
.y3e{bottom:1173.060000px;}
.y1{bottom:1191.420000px;}
.y3d{bottom:1193.220000px;}
.h48{height:2.864531px;}
.h24{height:26.327435px;}
.h2a{height:34.195023px;}
.h3a{height:35.772557px;}
.h42{height:35.773342px;}
.h30{height:35.789504px;}
.h38{height:35.790363px;}
.h40{height:35.791149px;}
.h27{height:36.213917px;}
.h25{height:36.231943px;}
.h1f{height:36.386483px;}
.hd{height:36.451897px;}
.hb{height:36.470042px;}
.h14{height:36.922947px;}
.h19{height:41.925631px;}
.h3e{height:43.501633px;}
.h9{height:44.326738px;}
.h2d{height:44.999986px;}
.h35{height:45.001147px;}
.h1e{height:45.750679px;}
.h11{height:47.323985px;}
.h2{height:56.146289px;}
.h45{height:58.386040px;}
.h34{height:58.436739px;}
.h3d{height:58.438142px;}
.h2b{height:59.159149px;}
.h7{height:59.439023px;}
.h10{height:59.493516px;}
.h22{height:59.530253px;}
.h18{height:59.551172px;}
.h1d{height:60.243045px;}
.h17{height:60.390628px;}
.h5{height:61.189805px;}
.h44{height:61.408881px;}
.h46{height:61.423863px;}
.h3c{height:61.686456px;}
.h33{height:61.686847px;}
.h43{height:61.833186px;}
.h41{height:61.863964px;}
.h32{height:61.886879px;}
.h3b{height:61.888364px;}
.h31{height:61.917684px;}
.h39{height:61.919170px;}
.h8{height:62.211094px;}
.h29{height:62.392118px;}
.hf{height:62.434038px;}
.h28{height:62.651940px;}
.h26{height:62.683125px;}
.he{height:63.006049px;}
.hc{height:63.037411px;}
.h21{height:63.044955px;}
.h20{height:63.076336px;}
.h1c{height:63.367628px;}
.h16{height:63.523487px;}
.h1b{height:63.799830px;}
.h15{height:63.956127px;}
.h13{height:63.987961px;}
.h3{height:65.884219px;}
.h6{height:67.824844px;}
.h23{height:73.497618px;}
.h3f{height:76.379982px;}
.h2e{height:76.554319px;}
.h36{height:76.556156px;}
.ha{height:77.828771px;}
.h12{height:79.065503px;}
.h1a{height:80.714630px;}
.h47{height:84.960000px;}
.h2c{height:88.741187px;}
.h2f{height:96.307446px;}
.h37{height:96.309757px;}
.h4{height:98.051133px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w6{width:54.673956px;}
.w4{width:105.600757px;}
.wa{width:153.676295px;}
.w5{width:165.747036px;}
.w3{width:185.922420px;}
.wb{width:210.810000px;}
.w7{width:301.344093px;}
.w8{width:362.990975px;}
.w9{width:388.422306px;}
.wc{width:580.965000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xb{left:1.829020px;}
.x25{left:3.094204px;}
.x24{left:4.177062px;}
.x4b{left:7.740000px;}
.xc{left:9.937796px;}
.x12{left:12.083809px;}
.x3f{left:13.821503px;}
.x26{left:15.779637px;}
.x2e{left:17.241443px;}
.xa{left:23.564060px;}
.x1f{left:25.075625px;}
.x38{left:26.945438px;}
.x13{left:29.912677px;}
.x45{left:33.761833px;}
.x1e{left:36.582073px;}
.x44{left:40.562686px;}
.x11{left:43.090017px;}
.x1b{left:44.649349px;}
.x7{left:46.488226px;}
.x46{left:52.541381px;}
.x1{left:53.999987px;}
.x10{left:55.392147px;}
.xf{left:57.202367px;}
.x3e{left:58.610453px;}
.x2a{left:60.841126px;}
.x5{left:62.005455px;}
.x1c{left:63.629255px;}
.x41{left:66.129465px;}
.x22{left:67.679987px;}
.x23{left:71.039995px;}
.x6{left:72.430266px;}
.x3d{left:74.383989px;}
.x28{left:76.476631px;}
.x9{left:79.838469px;}
.x36{left:80.964249px;}
.x42{left:82.317389px;}
.x35{left:88.164093px;}
.x37{left:91.875969px;}
.x2f{left:95.805388px;}
.x3c{left:98.634564px;}
.x8{left:101.268300px;}
.x40{left:102.345435px;}
.x2b{left:103.606420px;}
.x2{left:108.035987px;}
.x34{left:112.229323px;}
.x20{left:116.563350px;}
.x1d{left:118.658622px;}
.x19{left:120.815987px;}
.x3b{left:122.725249px;}
.x1a{left:124.139990px;}
.x18{left:125.315987px;}
.x4{left:130.199017px;}
.x33{left:136.679733px;}
.x48{left:138.995987px;}
.x32{left:145.739990px;}
.x3a{left:157.655408px;}
.x27{left:169.439990px;}
.x16{left:186.869987px;}
.x49{left:190.110000px;}
.x3{left:197.714980px;}
.x2c{left:211.031793px;}
.x30{left:221.822735px;}
.x17{left:243.029987px;}
.xe{left:256.439980px;}
.x4a{left:264.810000px;}
.x2d{left:266.096355px;}
.x29{left:273.357175px;}
.x21{left:289.874987px;}
.x14{left:362.054987px;}
.x47{left:363.854987px;}
.xd{left:383.654987px;}
.x31{left:470.804987px;}
.x39{left:508.784987px;}
.x43{left:534.164987px;}
.x15{left:580.424987px;}
@media print{
.v2{vertical-align:-80.562148pt;}
.v5{vertical-align:-45.303773pt;}
.va{vertical-align:-42.487453pt;}
.v1{vertical-align:-39.653278pt;}
.v3{vertical-align:-36.022649pt;}
.v8{vertical-align:-4.544575pt;}
.v4{vertical-align:-2.560000pt;}
.v9{vertical-align:-0.907969pt;}
.v0{vertical-align:0.000000pt;}
.v7{vertical-align:15.007150pt;}
.v6{vertical-align:18.560000pt;}
.ls1b{letter-spacing:-1.734046pt;}
.ls27{letter-spacing:-0.510898pt;}
.lsc{letter-spacing:-0.412267pt;}
.lsf{letter-spacing:-0.317333pt;}
.ls19{letter-spacing:-0.313645pt;}
.ls10{letter-spacing:-0.269333pt;}
.ls17{letter-spacing:-0.213867pt;}
.ls11{letter-spacing:-0.102933pt;}
.ls16{letter-spacing:-0.095467pt;}
.ls3c{letter-spacing:-0.069867pt;}
.ls1e{letter-spacing:-0.069333pt;}
.ls13{letter-spacing:-0.056729pt;}
.ls1d{letter-spacing:-0.051840pt;}
.ls12{letter-spacing:-0.039040pt;}
.lse{letter-spacing:-0.017920pt;}
.lsb{letter-spacing:0.000000pt;}
.ls41{letter-spacing:0.053867pt;}
.ls2b{letter-spacing:0.085485pt;}
.ls14{letter-spacing:0.102584pt;}
.ls18{letter-spacing:0.139733pt;}
.ls7{letter-spacing:0.154667pt;}
.ls3a{letter-spacing:0.155733pt;}
.lsd{letter-spacing:0.227733pt;}
.ls3b{letter-spacing:0.272000pt;}
.ls4{letter-spacing:0.549120pt;}
.ls8{letter-spacing:0.608640pt;}
.ls2{letter-spacing:1.118720pt;}
.ls0{letter-spacing:1.152000pt;}
.ls1{letter-spacing:1.792000pt;}
.ls25{letter-spacing:5.072640pt;}
.ls38{letter-spacing:13.871750pt;}
.ls15{letter-spacing:14.134871pt;}
.ls1c{letter-spacing:19.152640pt;}
.ls3f{letter-spacing:28.112640pt;}
.ls40{letter-spacing:31.312640pt;}
.ls3{letter-spacing:33.872640pt;}
.ls1a{letter-spacing:34.576542pt;}
.ls3d{letter-spacing:37.840640pt;}
.ls6{letter-spacing:38.308101pt;}
.ls2a{letter-spacing:53.455047pt;}
.ls23{letter-spacing:53.712640pt;}
.ls33{letter-spacing:54.099827pt;}
.ls3e{letter-spacing:55.120640pt;}
.ls22{letter-spacing:56.272640pt;}
.ls24{letter-spacing:59.472640pt;}
.ls2d{letter-spacing:65.871077pt;}
.ls5{letter-spacing:75.082404pt;}
.ls2c{letter-spacing:75.606889pt;}
.ls36{letter-spacing:95.340388pt;}
.ls37{letter-spacing:95.436103pt;}
.ls34{letter-spacing:101.058855pt;}
.ls9{letter-spacing:129.919468pt;}
.ls29{letter-spacing:158.851369pt;}
.ls28{letter-spacing:173.758093pt;}
.ls26{letter-spacing:173.894470pt;}
.lsa{letter-spacing:187.610698pt;}
.ls20{letter-spacing:189.562009pt;}
.ls1f{letter-spacing:255.990852pt;}
.ls39{letter-spacing:351.665091pt;}
.ls21{letter-spacing:413.770167pt;}
.ls32{letter-spacing:414.497362pt;}
.ls30{letter-spacing:417.287475pt;}
.ls35{letter-spacing:422.347512pt;}
.ls31{letter-spacing:427.643998pt;}
.ls2f{letter-spacing:429.251860pt;}
.ls2e{letter-spacing:433.744416pt;}
.ws17{word-spacing:-143.292047pt;}
.ws1{word-spacing:-36.480000pt;}
.ws0{word-spacing:-36.446720pt;}
.wsf{word-spacing:-29.162880pt;}
.ws26{word-spacing:-17.776872pt;}
.ws4{word-spacing:-13.534613pt;}
.ws3{word-spacing:-13.306880pt;}
.ws2{word-spacing:-12.894613pt;}
.ws31{word-spacing:-12.277120pt;}
.ws30{word-spacing:-12.160853pt;}
.ws5{word-spacing:-12.005120pt;}
.ws7{word-spacing:-11.966080pt;}
.ws15{word-spacing:-11.953280pt;}
.ws16{word-spacing:-11.935787pt;}
.ws32{word-spacing:-11.935253pt;}
.wse{word-spacing:-11.909653pt;}
.ws6{word-spacing:-11.902187pt;}
.ws20{word-spacing:-11.795220pt;}
.ws11{word-spacing:-7.950293pt;}
.ws10{word-spacing:-7.810560pt;}
.ws2b{word-spacing:-0.032415pt;}
.ws14{word-spacing:0.000000pt;}
.ws25{word-spacing:13.683144pt;}
.ws2c{word-spacing:13.683472pt;}
.ws1d{word-spacing:22.576751pt;}
.ws27{word-spacing:22.954532pt;}
.wsd{word-spacing:30.544535pt;}
.ws1b{word-spacing:31.260262pt;}
.ws2f{word-spacing:31.600811pt;}
.ws1c{word-spacing:31.797778pt;}
.wsb{word-spacing:32.086035pt;}
.ws1a{word-spacing:50.816633pt;}
.ws1f{word-spacing:51.435174pt;}
.ws2d{word-spacing:53.219735pt;}
.ws22{word-spacing:54.710535pt;}
.ws13{word-spacing:62.300009pt;}
.ws12{word-spacing:97.849852pt;}
.wsc{word-spacing:100.825512pt;}
.ws24{word-spacing:113.514985pt;}
.ws29{word-spacing:113.614955pt;}
.ws2e{word-spacing:141.341882pt;}
.ws19{word-spacing:141.410226pt;}
.ws8{word-spacing:143.871937pt;}
.ws18{word-spacing:200.780623pt;}
.wsa{word-spacing:201.453219pt;}
.ws2a{word-spacing:245.124829pt;}
.ws21{word-spacing:314.194037pt;}
.ws9{word-spacing:422.314737pt;}
.ws1e{word-spacing:447.928832pt;}
.ws23{word-spacing:1320.774259pt;}
.ws28{word-spacing:1383.912511pt;}
._4{margin-left:-1289.991467pt;}
._2{margin-left:-1181.829120pt;}
._3{margin-left:-897.497600pt;}
._5{margin-left:-517.882453pt;}
._3c{margin-left:-8.080640pt;}
._6{margin-left:-2.944000pt;}
._f{margin-left:-2.015360pt;}
._1{margin-left:-1.118720pt;}
._0{width:1.239467pt;}
._10{width:2.141653pt;}
._d{width:3.080960pt;}
._e{width:4.338133pt;}
._a{width:6.027520pt;}
._9{width:7.238400pt;}
._b{width:8.290773pt;}
._c{width:9.944747pt;}
._34{width:11.589430pt;}
._3d{width:13.002240pt;}
._3b{width:13.982720pt;}
._3a{width:14.873600pt;}
._38{width:15.776640pt;}
._39{width:16.785920pt;}
._35{width:43.370241pt;}
._8{width:44.609493pt;}
._7{width:46.113707pt;}
._2c{width:50.163103pt;}
._12{width:53.039015pt;}
._18{width:56.193137pt;}
._1e{width:63.161910pt;}
._2b{width:70.471764pt;}
._26{width:89.332986pt;}
._29{width:91.893736pt;}
._30{width:95.355774pt;}
._1f{width:109.087729pt;}
._13{width:117.782011pt;}
._21{width:130.465918pt;}
._17{width:140.251595pt;}
._1d{width:141.986059pt;}
._24{width:143.012026pt;}
._2e{width:144.458111pt;}
._20{width:156.194320pt;}
._22{width:158.431572pt;}
._2a{width:167.169887pt;}
._15{width:180.122880pt;}
._2f{width:185.731858pt;}
._25{width:216.365656pt;}
._27{width:222.014621pt;}
._23{width:281.875018pt;}
._37{width:283.846998pt;}
._31{width:319.029497pt;}
._32{width:325.869085pt;}
._28{width:348.191154pt;}
._1a{width:382.787493pt;}
._19{width:384.565600pt;}
._1b{width:392.008521pt;}
._14{width:393.653402pt;}
._11{width:413.236160pt;}
._2d{width:427.093547pt;}
._33{width:436.356965pt;}
._1c{width:461.238225pt;}
._36{width:477.575622pt;}
._16{width:1017.229653pt;}
.fs26{font-size:2.560000pt;}
.fs13{font-size:23.844593pt;}
.fs1a{font-size:32.414330pt;}
.fs1f{font-size:32.415108pt;}
.fs23{font-size:32.415820pt;}
.fs14{font-size:32.815044pt;}
.fs11{font-size:32.955010pt;}
.fs6{font-size:33.030689pt;}
.fse{font-size:33.393320pt;}
.fsc{font-size:33.457528pt;}
.fs9{font-size:34.560000pt;}
.fs4{font-size:42.880000pt;}
.fs3{font-size:53.120000pt;}
.fs24{font-size:56.029806pt;}
.fs1b{font-size:56.078459pt;}
.fs20{font-size:56.079805pt;}
.fs15{font-size:56.771715pt;}
.fs7{font-size:57.092589pt;}
.fs12{font-size:57.127843pt;}
.fsf{font-size:57.811869pt;}
.fsb{font-size:57.953497pt;}
.fs1{font-size:58.880000pt;}
.fs25{font-size:58.930657pt;}
.fs21{font-size:59.197030pt;}
.fs1c{font-size:59.197405pt;}
.fs16{font-size:59.874214pt;}
.fs8{font-size:59.914443pt;}
.fs10{font-size:60.810357pt;}
.fsd{font-size:60.959926pt;}
.fs22{font-size:73.297583pt;}
.fs18{font-size:73.464884pt;}
.fs1d{font-size:73.466647pt;}
.fs5{font-size:74.687904pt;}
.fs0{font-size:74.880000pt;}
.fsa{font-size:75.874727pt;}
.fs2{font-size:85.120000pt;}
.fs17{font-size:85.159937pt;}
.fs19{font-size:92.420851pt;}
.fs1e{font-size:92.423069pt;}
.y0{bottom:0.000000pt;}
.y61{bottom:3.070020pt;}
.y66{bottom:3.196340pt;}
.yaa{bottom:3.206068pt;}
.yab{bottom:3.206071pt;}
.y2d{bottom:3.266857pt;}
.y71{bottom:3.779421pt;}
.y86{bottom:3.985985pt;}
.y9b{bottom:3.986138pt;}
.y83{bottom:5.642063pt;}
.y95{bottom:5.642252pt;}
.yea{bottom:6.240000pt;}
.y35{bottom:6.727074pt;}
.y69{bottom:6.877826pt;}
.y77{bottom:7.445347pt;}
.y37{bottom:7.777360pt;}
.ya4{bottom:9.478741pt;}
.ya7{bottom:10.538126pt;}
.y5a{bottom:10.631457pt;}
.y85{bottom:12.800416pt;}
.y9a{bottom:12.800781pt;}
.y80{bottom:12.996609pt;}
.y90{bottom:12.996980pt;}
.y92{bottom:12.996991pt;}
.ya2{bottom:13.130621pt;}
.y27{bottom:13.379672pt;}
.yac{bottom:14.133908pt;}
.ya9{bottom:14.133910pt;}
.y5e{bottom:14.383248pt;}
.y60{bottom:14.383253pt;}
.y5c{bottom:14.383263pt;}
.y2c{bottom:14.401968pt;}
.y7e{bottom:14.484405pt;}
.y8e{bottom:14.484802pt;}
.y79{bottom:14.947205pt;}
.y38{bottom:15.356330pt;}
.y7d{bottom:15.578647pt;}
.y8d{bottom:15.579064pt;}
.y81{bottom:16.589975pt;}
.y97{bottom:16.590433pt;}
.y91{bottom:16.590435pt;}
.y99{bottom:16.590437pt;}
.y94{bottom:16.590445pt;}
.y67{bottom:18.036198pt;}
.y6a{bottom:18.036236pt;}
.y76{bottom:18.300070pt;}
.y39{bottom:19.103303pt;}
.y2b{bottom:19.885731pt;}
.ya6{bottom:21.160240pt;}
.ya3{bottom:21.160244pt;}
.y6f{bottom:21.824362pt;}
.y7f{bottom:21.866161pt;}
.y8f{bottom:21.866740pt;}
.y2a{bottom:23.407631pt;}
.y5d{bottom:23.480032pt;}
.y5b{bottom:23.480056pt;}
.y5f{bottom:23.480060pt;}
.y29{bottom:23.549452pt;}
.y74{bottom:23.984335pt;}
.y84{bottom:24.393312pt;}
.y98{bottom:24.393955pt;}
.ya8{bottom:24.755766pt;}
.ya5{bottom:24.755768pt;}
.ye9{bottom:24.960000pt;}
.y82{bottom:25.487555pt;}
.y96{bottom:25.488220pt;}
.y93{bottom:25.488222pt;}
.y68{bottom:27.054938pt;}
.y78{bottom:28.189604pt;}
.y36{bottom:28.242233pt;}
.y28{bottom:29.799051pt;}
.ye6{bottom:31.520000pt;}
.y7a{bottom:34.185983pt;}
.y70{bottom:35.635424pt;}
.y72{bottom:39.300403pt;}
.ye8{bottom:43.994667pt;}
.y75{bottom:48.252411pt;}
.y6e{bottom:54.390661pt;}
.y6{bottom:54.592000pt;}
.y73{bottom:56.522260pt;}
.ye7{bottom:62.714667pt;}
.yc2{bottom:86.112000pt;}
.y3c{bottom:97.792000pt;}
.ye5{bottom:99.072000pt;}
.ye4{bottom:100.672000pt;}
.yc1{bottom:104.832000pt;}
.y56{bottom:115.872000pt;}
.y3b{bottom:116.512000pt;}
.ye3{bottom:119.392000pt;}
.yc0{bottom:123.552000pt;}
.y33{bottom:131.712000pt;}
.y34{bottom:131.746667pt;}
.y55{bottom:134.586667pt;}
.ye2{bottom:138.106667pt;}
.ybf{bottom:142.266667pt;}
.y54{bottom:149.786667pt;}
.y3a{bottom:152.986667pt;}
.ye1{bottom:156.826667pt;}
.ybe{bottom:160.986667pt;}
.ye0{bottom:175.546667pt;}
.y32{bottom:179.706667pt;}
.ydf{bottom:194.266667pt;}
.y31{bottom:198.266667pt;}
.ybd{bottom:198.426667pt;}
.yde{bottom:212.986667pt;}
.y30{bottom:217.146667pt;}
.ydd{bottom:231.706667pt;}
.ybc{bottom:235.866667pt;}
.y2f{bottom:236.506667pt;}
.ydc{bottom:250.466667pt;}
.y26{bottom:252.546667pt;}
.ybb{bottom:254.626667pt;}
.y2e{bottom:268.546667pt;}
.ydb{bottom:269.186667pt;}
.yba{bottom:273.346667pt;}
.yda{bottom:287.906667pt;}
.yb9{bottom:292.066667pt;}
.y25{bottom:297.826667pt;}
.yd9{bottom:306.626667pt;}
.yb8{bottom:310.786667pt;}
.y24{bottom:316.546667pt;}
.yd8{bottom:325.346667pt;}
.yb7{bottom:329.506667pt;}
.y23{bottom:335.266667pt;}
.yd7{bottom:344.066667pt;}
.yb6{bottom:348.226667pt;}
.y22{bottom:353.826667pt;}
.yd6{bottom:362.786667pt;}
.yb5{bottom:366.946667pt;}
.y21{bottom:372.546667pt;}
.yd5{bottom:381.506667pt;}
.yb4{bottom:385.666667pt;}
.y20{bottom:391.266667pt;}
.yd4{bottom:400.226667pt;}
.yb3{bottom:404.386667pt;}
.y1f{bottom:409.986667pt;}
.yd3{bottom:418.946667pt;}
.yb2{bottom:423.106667pt;}
.y1e{bottom:428.706667pt;}
.y53{bottom:433.826667pt;}
.yd2{bottom:437.666667pt;}
.yb1{bottom:441.826667pt;}
.y1d{bottom:447.426667pt;}
.y52{bottom:452.546667pt;}
.yd1{bottom:456.386667pt;}
.yb0{bottom:460.546667pt;}
.y1c{bottom:466.146667pt;}
.y51{bottom:471.266667pt;}
.yd0{bottom:475.106667pt;}
.yaf{bottom:479.266667pt;}
.y1b{bottom:484.866667pt;}
.y50{bottom:489.986667pt;}
.ycf{bottom:493.826667pt;}
.yae{bottom:497.986667pt;}
.y1a{bottom:503.613333pt;}
.y4f{bottom:505.053333pt;}
.yce{bottom:512.573333pt;}
.yad{bottom:516.733333pt;}
.y19{bottom:522.333333pt;}
.ycd{bottom:531.293333pt;}
.ya1{bottom:531.946630pt;}
.y18{bottom:541.053333pt;}
.ya0{bottom:547.933333pt;}
.ycc{bottom:550.013333pt;}
.y17{bottom:559.773333pt;}
.ycb{bottom:568.733333pt;}
.y9f{bottom:576.413333pt;}
.y16{bottom:578.493333pt;}
.yca{bottom:587.453333pt;}
.y9e{bottom:595.133333pt;}
.y15{bottom:597.213333pt;}
.yc9{bottom:606.173333pt;}
.y9d{bottom:613.853333pt;}
.y14{bottom:615.933333pt;}
.yc8{bottom:624.893333pt;}
.y9c{bottom:632.573333pt;}
.yc7{bottom:643.613333pt;}
.y8c{bottom:647.946594pt;}
.y13{bottom:655.613333pt;}
.yc6{bottom:662.333333pt;}
.y8b{bottom:666.653333pt;}
.yc5{bottom:680.893333pt;}
.y12{bottom:682.173333pt;}
.y8a{bottom:693.853333pt;}
.yc4{bottom:699.613333pt;}
.y11{bottom:700.893333pt;}
.y89{bottom:712.573333pt;}
.yc3{bottom:718.333333pt;}
.y10{bottom:719.613333pt;}
.y88{bottom:731.293333pt;}
.y4e{bottom:737.053333pt;}
.yf{bottom:738.333333pt;}
.y87{bottom:750.013333pt;}
.y4d{bottom:755.813333pt;}
.ye{bottom:757.093333pt;}
.y7c{bottom:765.213333pt;}
.y4c{bottom:774.533333pt;}
.yd{bottom:775.813333pt;}
.y7b{bottom:783.973333pt;}
.y4b{bottom:793.253333pt;}
.yc{bottom:796.453333pt;}
.y6d{bottom:807.413333pt;}
.y4a{bottom:811.973333pt;}
.yb{bottom:815.173333pt;}
.y49{bottom:830.693333pt;}
.ya{bottom:834.693333pt;}
.y48{bottom:849.413333pt;}
.y6c{bottom:851.493333pt;}
.y9{bottom:854.533333pt;}
.y47{bottom:868.133333pt;}
.y8{bottom:876.933333pt;}
.y6b{bottom:878.853333pt;}
.y46{bottom:886.853333pt;}
.y63{bottom:892.933333pt;}
.y65{bottom:894.146594pt;}
.y45{bottom:905.573333pt;}
.y7{bottom:906.853333pt;}
.y64{bottom:914.213333pt;}
.y44{bottom:924.293333pt;}
.y62{bottom:940.773333pt;}
.y5{bottom:942.533333pt;}
.y43{bottom:943.013333pt;}
.y57{bottom:950.533333pt;}
.y59{bottom:955.746594pt;}
.y42{bottom:961.733333pt;}
.y4{bottom:971.173333pt;}
.y58{bottom:971.813333pt;}
.y41{bottom:980.453333pt;}
.y40{bottom:999.173333pt;}
.y3{bottom:999.653333pt;}
.y3f{bottom:1017.920000pt;}
.y2{bottom:1028.320000pt;}
.y3e{bottom:1042.720000pt;}
.y1{bottom:1059.040000pt;}
.y3d{bottom:1060.640000pt;}
.h48{height:2.546250pt;}
.h24{height:23.402164pt;}
.h2a{height:30.395576pt;}
.h3a{height:31.797829pt;}
.h42{height:31.798527pt;}
.h30{height:31.812893pt;}
.h38{height:31.813656pt;}
.h40{height:31.814355pt;}
.h27{height:32.190149pt;}
.h25{height:32.206172pt;}
.h1f{height:32.343540pt;}
.hd{height:32.401686pt;}
.hb{height:32.417815pt;}
.h14{height:32.820398pt;}
.h19{height:37.267228pt;}
.h3e{height:38.668118pt;}
.h9{height:39.401545pt;}
.h2d{height:39.999987pt;}
.h35{height:40.001020pt;}
.h1e{height:40.667270pt;}
.h11{height:42.065765pt;}
.h2{height:49.907812pt;}
.h45{height:51.898702pt;}
.h34{height:51.943768pt;}
.h3d{height:51.945015pt;}
.h2b{height:52.585910pt;}
.h7{height:52.834688pt;}
.h10{height:52.883126pt;}
.h22{height:52.915781pt;}
.h18{height:52.934375pt;}
.h1d{height:53.549373pt;}
.h17{height:53.680558pt;}
.h5{height:54.390938pt;}
.h44{height:54.585672pt;}
.h46{height:54.598989pt;}
.h3c{height:54.832405pt;}
.h33{height:54.832753pt;}
.h43{height:54.962832pt;}
.h41{height:54.990191pt;}
.h32{height:55.010559pt;}
.h3b{height:55.011879pt;}
.h31{height:55.037941pt;}
.h39{height:55.039262pt;}
.h8{height:55.298750pt;}
.h29{height:55.459660pt;}
.hf{height:55.496923pt;}
.h28{height:55.690613pt;}
.h26{height:55.718334pt;}
.he{height:56.005377pt;}
.hc{height:56.033254pt;}
.h21{height:56.039960pt;}
.h20{height:56.067854pt;}
.h1c{height:56.326780pt;}
.h16{height:56.465322pt;}
.h1b{height:56.710960pt;}
.h15{height:56.849890pt;}
.h13{height:56.878188pt;}
.h3{height:58.563750pt;}
.h6{height:60.288750pt;}
.h23{height:65.331216pt;}
.h3f{height:67.893318pt;}
.h2e{height:68.048284pt;}
.h36{height:68.049917pt;}
.ha{height:69.181130pt;}
.h12{height:70.280447pt;}
.h1a{height:71.746338pt;}
.h47{height:75.520000pt;}
.h2c{height:78.881055pt;}
.h2f{height:85.606619pt;}
.h37{height:85.608673pt;}
.h4{height:87.156562pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w6{width:48.599072pt;}
.w4{width:93.867340pt;}
.wa{width:136.601152pt;}
.w5{width:147.330698pt;}
.w3{width:165.264373pt;}
.wb{width:187.386667pt;}
.w7{width:267.861416pt;}
.w8{width:322.658645pt;}
.w9{width:345.264272pt;}
.wc{width:516.413333pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xb{left:1.625796pt;}
.x25{left:2.750404pt;}
.x24{left:3.712944pt;}
.x4b{left:6.880000pt;}
.xc{left:8.833597pt;}
.x12{left:10.741164pt;}
.x3f{left:12.285781pt;}
.x26{left:14.026344pt;}
.x2e{left:15.325727pt;}
.xa{left:20.945831pt;}
.x1f{left:22.289444pt;}
.x38{left:23.951500pt;}
.x13{left:26.589046pt;}
.x45{left:30.010518pt;}
.x1e{left:32.517398pt;}
.x44{left:36.055721pt;}
.x11{left:38.302237pt;}
.x1b{left:39.688311pt;}
.x7{left:41.322867pt;}
.x46{left:46.703450pt;}
.x1{left:47.999988pt;}
.x10{left:49.237464pt;}
.xf{left:50.846548pt;}
.x3e{left:52.098181pt;}
.x2a{left:54.081001pt;}
.x5{left:55.115960pt;}
.x1c{left:56.559338pt;}
.x41{left:58.781747pt;}
.x22{left:60.159988pt;}
.x23{left:63.146662pt;}
.x6{left:64.382459pt;}
.x3d{left:66.119101pt;}
.x28{left:67.979228pt;}
.x9{left:70.967528pt;}
.x36{left:71.968221pt;}
.x42{left:73.171013pt;}
.x35{left:78.368082pt;}
.x37{left:81.667528pt;}
.x2f{left:85.160344pt;}
.x3c{left:87.675168pt;}
.x8{left:90.016267pt;}
.x40{left:90.973720pt;}
.x2b{left:92.094596pt;}
.x2{left:96.031988pt;}
.x34{left:99.759398pt;}
.x20{left:103.611867pt;}
.x1d{left:105.474331pt;}
.x19{left:107.391988pt;}
.x3b{left:109.089111pt;}
.x1a{left:110.346658pt;}
.x18{left:111.391988pt;}
.x4{left:115.732460pt;}
.x33{left:121.493096pt;}
.x48{left:123.551988pt;}
.x32{left:129.546658pt;}
.x3a{left:140.138140pt;}
.x27{left:150.613324pt;}
.x16{left:166.106655pt;}
.x49{left:168.986667pt;}
.x3{left:175.746649pt;}
.x2c{left:187.583816pt;}
.x30{left:197.175764pt;}
.x17{left:216.026655pt;}
.xe{left:227.946649pt;}
.x4a{left:235.386667pt;}
.x2d{left:236.530093pt;}
.x29{left:242.984156pt;}
.x21{left:257.666655pt;}
.x14{left:321.826655pt;}
.x47{left:323.426655pt;}
.xd{left:341.026655pt;}
.x31{left:418.493322pt;}
.x39{left:452.253322pt;}
.x43{left:474.813322pt;}
.x15{left:515.933322pt;}
}




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