
    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_40c9cea012c730f8de2eab64.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_0b06d653049b8f501be49d78.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.311035;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_2c72af35fe3a32b33ab32318.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_1a3b7c37617f0db5b178a6f4.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_5480c76f495474d9159de61a.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_ccf31e38ac31396115f7662d.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_ccf31e38ac31396115f7662d.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_ccf31e38ac31396115f7662d.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_ccf31e38ac31396115f7662d.woff2')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_ccf31e38ac31396115f7662d.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_ccf31e38ac31396115f7662d.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_ccf31e38ac31396115f7662d.woff2')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_fcd96853f71d62370d147bbf.woff2')format("woff");}.ffd{font-family:ffd;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:ffe;src:url('chunks/assets/font_217ef770931642e16c27f9f6.woff2')format("woff");}.ffe{font-family:ffe;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:fff;src:url('chunks/assets/font_f6d13684de58e086fb418292.woff2')format("woff");}.fff{font-family:fff;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:ff10;src:url('chunks/assets/font_8acac274e6dde6a140608710.woff2')format("woff");}.ff10{font-family:ff10;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;}
.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);}
.v6{vertical-align:-77.760480px;}
.v2{vertical-align:-33.119760px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:26.999929px;}
.v1{vertical-align:33.119760px;}
.v3{vertical-align:69.120240px;}
.v5{vertical-align:82.799580px;}
.ls37{letter-spacing:-0.126853px;}
.ls36{letter-spacing:-0.120240px;}
.ls32{letter-spacing:-0.096192px;}
.ls3f{letter-spacing:-0.060721px;}
.ls33{letter-spacing:-0.054108px;}
.ls31{letter-spacing:-0.047495px;}
.ls35{letter-spacing:-0.042084px;}
.ls3e{letter-spacing:-0.036072px;}
.ls38{letter-spacing:-0.012024px;}
.ls1e{letter-spacing:-0.007920px;}
.ls7{letter-spacing:0.000000px;}
.lsc{letter-spacing:0.007920px;}
.ls22{letter-spacing:0.012024px;}
.lsa{letter-spacing:0.014400px;}
.lsb{letter-spacing:0.019152px;}
.lse{letter-spacing:0.022320px;}
.ls9{letter-spacing:0.028800px;}
.ls8{letter-spacing:0.036000px;}
.ls26{letter-spacing:0.036072px;}
.ls0{letter-spacing:0.043200px;}
.ls1{letter-spacing:0.050400px;}
.ls2a{letter-spacing:0.054108px;}
.ls4{letter-spacing:0.056880px;}
.ls3{letter-spacing:0.064800px;}
.ls11{letter-spacing:0.070800px;}
.ls19{letter-spacing:0.070920px;}
.ls17{letter-spacing:0.071340px;}
.ls16{letter-spacing:0.071820px;}
.ls1b{letter-spacing:0.072000px;}
.lsd{letter-spacing:0.072720px;}
.ls20{letter-spacing:0.072745px;}
.ls29{letter-spacing:0.078156px;}
.ls6{letter-spacing:0.079200px;}
.ls2{letter-spacing:0.087120px;}
.ls1d{letter-spacing:0.089940px;}
.ls2e{letter-spacing:0.090180px;}
.ls13{letter-spacing:0.093600px;}
.ls2c{letter-spacing:0.096192px;}
.ls1c{letter-spacing:0.100800px;}
.ls27{letter-spacing:0.101603px;}
.ls2d{letter-spacing:0.114829px;}
.ls3b{letter-spacing:0.120240px;}
.ls3d{letter-spacing:0.132264px;}
.ls3c{letter-spacing:0.138276px;}
.ls34{letter-spacing:0.144288px;}
.ls1f{letter-spacing:0.150300px;}
.ls23{letter-spacing:0.150840px;}
.ls28{letter-spacing:0.155711px;}
.ls25{letter-spacing:0.162324px;}
.ls21{letter-spacing:0.168937px;}
.lsf{letter-spacing:0.179940px;}
.ls18{letter-spacing:0.180000px;}
.ls14{letter-spacing:0.180060px;}
.ls10{letter-spacing:0.180120px;}
.ls2b{letter-spacing:0.180961px;}
.ls1a{letter-spacing:0.181944px;}
.ls24{letter-spacing:155.880060px;}
.ls12{letter-spacing:198.000540px;}
.ls30{letter-spacing:532.530936px;}
.ls39{letter-spacing:707.760000px;}
.ls15{letter-spacing:1191.960600px;}
.ls5{letter-spacing:1209.960600px;}
.ls2f{letter-spacing:1420.647624px;}
.ls3a{letter-spacing:1618.919880px;}
.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;}
}
.ws16{word-spacing:-18.093600px;}
.ws19{word-spacing:-18.072720px;}
.ws0{word-spacing:-18.064800px;}
.wsb{word-spacing:-18.056880px;}
.ws12{word-spacing:-18.050400px;}
.ws1{word-spacing:-18.043200px;}
.ws1c{word-spacing:-18.036000px;}
.ws17{word-spacing:-18.014400px;}
.wsc{word-spacing:-18.007920px;}
.ws13{word-spacing:-18.000000px;}
.ws28{word-spacing:-15.198937px;}
.ws27{word-spacing:-15.042024px;}
.ws1b{word-spacing:-12.151944px;}
.ws8{word-spacing:-11.989152px;}
.ws25{word-spacing:-0.395280px;}
.ws24{word-spacing:-0.388800px;}
.ws15{word-spacing:-0.360000px;}
.ws1a{word-spacing:-0.346320px;}
.wse{word-spacing:-0.330480px;}
.wsf{word-spacing:-0.281520px;}
.ws21{word-spacing:-0.259200px;}
.ws20{word-spacing:-0.237600px;}
.ws18{word-spacing:-0.158400px;}
.ws14{word-spacing:-0.144000px;}
.ws1e{word-spacing:-0.108000px;}
.ws1d{word-spacing:-0.100800px;}
.ws23{word-spacing:-0.093600px;}
.ws1f{word-spacing:-0.087120px;}
.ws10{word-spacing:-0.079200px;}
.ws2b{word-spacing:-0.078156px;}
.wsd{word-spacing:-0.072720px;}
.ws9{word-spacing:-0.064800px;}
.ws29{word-spacing:-0.060721px;}
.ws6{word-spacing:-0.056880px;}
.ws5{word-spacing:-0.050400px;}
.ws46{word-spacing:-0.047495px;}
.ws3{word-spacing:-0.043200px;}
.ws4{word-spacing:-0.036000px;}
.ws41{word-spacing:-0.030060px;}
.ws7{word-spacing:-0.028800px;}
.ws36{word-spacing:-0.024048px;}
.ws11{word-spacing:-0.022320px;}
.wsa{word-spacing:-0.014400px;}
.ws42{word-spacing:-0.012024px;}
.ws22{word-spacing:-0.007920px;}
.ws35{word-spacing:-0.006613px;}
.ws2{word-spacing:0.000000px;}
.ws26{word-spacing:0.007920px;}
.ws32{word-spacing:0.012024px;}
.ws43{word-spacing:0.018637px;}
.ws44{word-spacing:0.126853px;}
.ws2a{word-spacing:0.138276px;}
.ws45{word-spacing:0.150300px;}
.ws2f{word-spacing:49.599000px;}
.ws2c{word-spacing:49.605012px;}
.ws31{word-spacing:49.611024px;}
.ws2e{word-spacing:49.730663px;}
.ws30{word-spacing:49.893588px;}
.ws49{word-spacing:49.995792px;}
.ws3f{word-spacing:82.051200px;}
.ws47{word-spacing:96.414444px;}
.ws48{word-spacing:115.484508px;}
.ws33{word-spacing:132.155784px;}
.ws3a{word-spacing:146.864880px;}
.ws3e{word-spacing:153.668880px;}
.ws37{word-spacing:153.691200px;}
.ws3d{word-spacing:154.426320px;}
.ws2d{word-spacing:165.539819px;}
.ws3b{word-spacing:170.258400px;}
.ws38{word-spacing:202.600800px;}
.ws34{word-spacing:207.990551px;}
.ws39{word-spacing:278.625600px;}
.ws40{word-spacing:309.924000px;}
.ws3c{word-spacing:309.952800px;}
._31{margin-left:-2144.939291px;}
._1d{margin-left:-158.407936px;}
._1b{margin-left:-82.442616px;}
._1c{margin-left:-74.308926px;}
._c{margin-left:-47.155318px;}
._3{margin-left:-9.720720px;}
._0{margin-left:-1.228680px;}
._13{width:1.082160px;}
._2{width:40.785480px;}
._22{width:45.358020px;}
._19{width:49.978440px;}
._25{width:61.919340px;}
._10{width:69.119311px;}
._3b{width:74.517637px;}
._39{width:77.705129px;}
._d{width:82.276514px;}
._35{width:96.030128px;}
._7{width:98.320307px;}
._b{width:99.360756px;}
._14{width:117.308857px;}
._e{width:133.259784px;}
._29{width:134.476356px;}
._3c{width:142.863060px;}
._1a{width:148.410204px;}
._30{width:150.333276px;}
._28{width:153.714540px;}
._11{width:156.130753px;}
._f{width:158.402568px;}
._1e{width:159.840000px;}
._9{width:163.460472px;}
._2a{width:169.557480px;}
._12{width:171.365712px;}
._18{width:176.756856px;}
._4{width:177.840000px;}
._2b{width:186.333276px;}
._a{width:188.645640px;}
._33{width:190.083611px;}
._27{width:193.679760px;}
._40{width:195.479586px;}
._1{width:198.000000px;}
._8{width:201.962220px;}
._20{width:205.946100px;}
._38{width:208.443282px;}
._37{width:214.563642px;}
._17{width:220.774403px;}
._2f{width:222.449580px;}
._16{width:234.740582px;}
._2d{width:241.915920px;}
._3f{width:254.884308px;}
._2e{width:258.449580px;}
._3e{width:261.004608px;}
._3a{width:303.479166px;}
._34{width:304.923875px;}
._36{width:322.563222px;}
._26{width:328.091064px;}
._15{width:345.708600px;}
._23{width:364.305180px;}
._3d{width:369.004188px;}
._24{width:370.065180px;}
._32{width:372.946637px;}
._2c{width:378.683460px;}
._21{width:460.183380px;}
._5{width:515.147622px;}
._1f{width:518.651460px;}
._6{width:539.412955px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:38.880000px;}
.fs1{font-size:47.880000px;}
.fs2{font-size:60.120000px;}
.fs0{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.y15{bottom:57.360450px;}
.y3a{bottom:144.929175px;}
.y4a{bottom:144.929625px;}
.y31{bottom:144.929805px;}
.y9c{bottom:144.930000px;}
.y5f{bottom:144.930090px;}
.y83{bottom:144.930135px;}
.y6e{bottom:144.930180px;}
.y78{bottom:144.930225px;}
.y59{bottom:144.930330px;}
.yce{bottom:165.630105px;}
.ye1{bottom:165.630270px;}
.y39{bottom:186.329220px;}
.y98{bottom:186.329310px;}
.yef{bottom:186.329505px;}
.y49{bottom:186.329685px;}
.y30{bottom:186.329865px;}
.y9b{bottom:186.330045px;}
.ya2{bottom:186.330090px;}
.y5e{bottom:186.330135px;}
.y82{bottom:186.330180px;}
.y6d{bottom:186.330225px;}
.y77{bottom:186.330270px;}
.y58{bottom:186.330390px;}
.ycd{bottom:207.030165px;}
.yb9{bottom:207.030210px;}
.ye0{bottom:207.030330px;}
.y38{bottom:227.729280px;}
.y97{bottom:227.729370px;}
.yee{bottom:227.729550px;}
.y48{bottom:227.729730px;}
.y2f{bottom:227.729925px;}
.y8b{bottom:227.730015px;}
.y9a{bottom:227.730105px;}
.ya1{bottom:227.730150px;}
.y5d{bottom:227.730195px;}
.y81{bottom:227.730240px;}
.y6c{bottom:227.730285px;}
.y57{bottom:227.730330px;}
.ycc{bottom:248.430225px;}
.yb8{bottom:248.430270px;}
.ydf{bottom:248.430375px;}
.y37{bottom:269.129340px;}
.y96{bottom:269.129430px;}
.yed{bottom:269.129610px;}
.y47{bottom:269.129790px;}
.y2e{bottom:269.129970px;}
.y8a{bottom:269.130060px;}
.y99{bottom:269.130150px;}
.ya0{bottom:269.130210px;}
.y5c{bottom:269.130255px;}
.y80{bottom:269.130300px;}
.y6b{bottom:269.130345px;}
.y56{bottom:269.130390px;}
.ycb{bottom:289.830270px;}
.yb7{bottom:289.830315px;}
.yde{bottom:298.110450px;}
.y36{bottom:310.529385px;}
.y95{bottom:310.529475px;}
.yec{bottom:310.529670px;}
.y46{bottom:310.529850px;}
.y2d{bottom:310.530030px;}
.y89{bottom:310.530120px;}
.y7c{bottom:310.530210px;}
.y9f{bottom:310.530255px;}
.y5b{bottom:310.530300px;}
.y7f{bottom:310.530345px;}
.y55{bottom:310.530390px;}
.y76{bottom:310.530435px;}
.ydd{bottom:331.229550px;}
.yca{bottom:331.230330px;}
.yb6{bottom:331.230375px;}
.y35{bottom:351.929445px;}
.y94{bottom:351.929535px;}
.yeb{bottom:351.929715px;}
.y45{bottom:351.929895px;}
.y54{bottom:351.930045px;}
.y2c{bottom:351.930090px;}
.y88{bottom:351.930180px;}
.y7b{bottom:351.930270px;}
.y75{bottom:351.930315px;}
.y5a{bottom:351.930360px;}
.y14{bottom:351.930405px;}
.ydc{bottom:372.629610px;}
.yc9{bottom:372.630390px;}
.yb5{bottom:380.910435px;}
.y34{bottom:393.329505px;}
.y93{bottom:393.329595px;}
.y7e{bottom:393.329775px;}
.y44{bottom:393.329955px;}
.y53{bottom:393.330090px;}
.y2b{bottom:393.330135px;}
.y87{bottom:393.330225px;}
.y7a{bottom:393.330315px;}
.y74{bottom:393.330375px;}
.y13{bottom:393.330420px;}
.ydb{bottom:414.029670px;}
.yb4{bottom:414.030255px;}
.yc8{bottom:422.310420px;}
.y33{bottom:434.729550px;}
.y92{bottom:434.729640px;}
.y7d{bottom:434.729835px;}
.y43{bottom:434.730015px;}
.y52{bottom:434.730150px;}
.y2a{bottom:434.730195px;}
.y86{bottom:434.730285px;}
.y79{bottom:434.730375px;}
.y73{bottom:434.730420px;}
.y12{bottom:434.730465px;}
.yda{bottom:455.429715px;}
.yb3{bottom:455.430315px;}
.y32{bottom:476.129610px;}
.y91{bottom:476.129700px;}
.y26{bottom:476.129880px;}
.y42{bottom:476.130060px;}
.y51{bottom:476.130210px;}
.y29{bottom:476.130255px;}
.y72{bottom:476.130300px;}
.y85{bottom:476.130345px;}
.y11{bottom:476.130525px;}
.yd9{bottom:496.829775px;}
.yb2{bottom:496.830375px;}
.y10{bottom:517.529670px;}
.y90{bottom:517.529760px;}
.y25{bottom:517.529940px;}
.y41{bottom:517.530120px;}
.y50{bottom:517.530255px;}
.y28{bottom:517.530300px;}
.y71{bottom:517.530345px;}
.y84{bottom:517.530390px;}
.y9d{bottom:517.530585px;}
.yf5{bottom:522.120570px;}
.yf4{bottom:530.850450px;}
.yd8{bottom:538.229835px;}
.yb1{bottom:546.510450px;}
.yf{bottom:558.929715px;}
.y8f{bottom:558.929805px;}
.y24{bottom:558.930000px;}
.y40{bottom:558.930180px;}
.y4f{bottom:558.930315px;}
.y27{bottom:558.930360px;}
.y70{bottom:558.930405px;}
.y9e{bottom:558.930450px;}
.yf3{bottom:572.610450px;}
.yd7{bottom:579.629880px;}
.yb0{bottom:579.630435px;}
.yc7{bottom:579.630480px;}
.ye{bottom:600.329775px;}
.y8e{bottom:600.329865px;}
.y23{bottom:600.330045px;}
.y3f{bottom:600.330225px;}
.y4e{bottom:600.330375px;}
.y6a{bottom:600.330420px;}
.y6f{bottom:600.330465px;}
.yd6{bottom:620.939850px;}
.ye9{bottom:620.940255px;}
.yaf{bottom:620.940405px;}
.yc6{bottom:629.220435px;}
.yd{bottom:641.639745px;}
.y8d{bottom:641.639835px;}
.y22{bottom:641.640015px;}
.y3e{bottom:641.640195px;}
.y4d{bottom:641.640330px;}
.y69{bottom:641.640375px;}
.yd5{bottom:662.339910px;}
.ye8{bottom:662.340315px;}
.yc5{bottom:662.340360px;}
.yae{bottom:670.620435px;}
.yf1{bottom:672.870435px;}
.yc{bottom:683.039790px;}
.y8c{bottom:683.039880px;}
.y21{bottom:683.040075px;}
.y3d{bottom:683.040255px;}
.y4c{bottom:683.040390px;}
.yf0{bottom:701.670405px;}
.yd4{bottom:703.739955px;}
.ye7{bottom:703.740375px;}
.yad{bottom:703.740510px;}
.yf2{bottom:705.090450px;}
.yc4{bottom:712.020450px;}
.y12b{bottom:717.690540px;}
.yb{bottom:724.439850px;}
.y68{bottom:724.439940px;}
.y20{bottom:724.440120px;}
.y3c{bottom:724.440315px;}
.y12a{bottom:738.390420px;}
.yd3{bottom:745.140015px;}
.yc3{bottom:745.140285px;}
.yac{bottom:745.140570px;}
.ye6{bottom:753.420405px;}
.y129{bottom:760.620570px;}
.y119{bottom:764.130483px;}
.ya{bottom:765.839910px;}
.y67{bottom:765.840000px;}
.y1f{bottom:765.840180px;}
.y3b{bottom:765.840360px;}
.y128{bottom:781.320465px;}
.y118{bottom:781.410474px;}
.yd2{bottom:786.540075px;}
.ye5{bottom:786.540255px;}
.yc2{bottom:786.540345px;}
.yab{bottom:794.820465px;}
.y117{bottom:798.690465px;}
.y127{bottom:802.020450px;}
.y9{bottom:807.239955px;}
.y66{bottom:807.240045px;}
.y1e{bottom:807.240240px;}
.y4b{bottom:807.240420px;}
.y116{bottom:815.880405px;}
.y126{bottom:823.530855px;}
.yaa{bottom:827.940120px;}
.ye4{bottom:827.940315px;}
.yc1{bottom:827.940405px;}
.y115{bottom:833.160465px;}
.y14b{bottom:835.140495px;}
.y125{bottom:844.230750px;}
.y8{bottom:848.640015px;}
.y65{bottom:848.640105px;}
.y1d{bottom:848.640285px;}
.ya3{bottom:848.640465px;}
.y114{bottom:851.880570px;}
.y14a{bottom:852.330420px;}
.y124{bottom:865.650780px;}
.y113{bottom:869.160474px;}
.ya9{bottom:869.340180px;}
.ye3{bottom:869.340360px;}
.y149{bottom:871.140495px;}
.yc0{bottom:877.620390px;}
.y123{bottom:886.350675px;}
.y112{bottom:886.440465px;}
.y148{bottom:888.330420px;}
.y7{bottom:890.040075px;}
.y64{bottom:890.040165px;}
.y1c{bottom:890.040345px;}
.y111{bottom:903.630390px;}
.y147{bottom:905.610450px;}
.y122{bottom:907.050570px;}
.ya8{bottom:910.740240px;}
.ybf{bottom:910.740510px;}
.ye2{bottom:919.020450px;}
.y110{bottom:920.910435px;}
.y146{bottom:923.610390px;}
.y121{bottom:927.750465px;}
.yea{bottom:931.350315px;}
.y6{bottom:931.440120px;}
.y63{bottom:931.440210px;}
.y1b{bottom:931.440405px;}
.y10f{bottom:938.190510px;}
.y145{bottom:940.890450px;}
.y120{bottom:948.450435px;}
.ya7{bottom:952.140285px;}
.ybe{bottom:952.140570px;}
.y10e{bottom:955.380435px;}
.y144{bottom:958.080390px;}
.y11f{bottom:969.870570px;}
.y10d{bottom:972.659604px;}
.y108{bottom:972.659745px;}
.y10a{bottom:972.659985px;}
.y105{bottom:972.660069px;}
.y102{bottom:972.660210px;}
.y109{bottom:972.660294px;}
.yff{bottom:972.660435px;}
.yfd{bottom:972.660483px;}
.y5{bottom:972.840180px;}
.y62{bottom:972.840270px;}
.y1a{bottom:972.840450px;}
.y143{bottom:975.360450px;}
.y10c{bottom:989.939595px;}
.y107{bottom:989.939820px;}
.y104{bottom:989.940060px;}
.y101{bottom:989.940285px;}
.yfc{bottom:989.940474px;}
.yfe{bottom:989.940510px;}
.y11e{bottom:990.570465px;}
.y142{bottom:992.640375px;}
.ya6{bottom:993.540345px;}
.ybd{bottom:1001.820465px;}
.y10b{bottom:1007.129520px;}
.y106{bottom:1007.129745px;}
.y103{bottom:1007.129970px;}
.y100{bottom:1007.130210px;}
.yfb{bottom:1007.130435px;}
.y141{bottom:1010.640495px;}
.y11d{bottom:1011.990510px;}
.y4{bottom:1014.240240px;}
.y61{bottom:1014.240330px;}
.y19{bottom:1014.240510px;}
.yfa{bottom:1025.130405px;}
.y140{bottom:1027.830420px;}
.y11c{bottom:1032.690405px;}
.ybc{bottom:1034.940315px;}
.ya5{bottom:1034.940405px;}
.yf9{bottom:1042.410465px;}
.yd1{bottom:1043.220435px;}
.y13f{bottom:1045.829433px;}
.y13c{bottom:1045.829520px;}
.y139{bottom:1045.829745px;}
.y136{bottom:1046.549928px;}
.y132{bottom:1046.550105px;}
.y12e{bottom:1046.550399px;}
.y11b{bottom:1054.110720px;}
.y3{bottom:1055.640285px;}
.y60{bottom:1055.640375px;}
.y18{bottom:1055.640570px;}
.yf8{bottom:1060.320345px;}
.y13e{bottom:1063.109424px;}
.y13b{bottom:1063.109580px;}
.y138{bottom:1063.109805px;}
.y135{bottom:1063.829919px;}
.y131{bottom:1063.830165px;}
.y12d{bottom:1063.830390px;}
.y11a{bottom:1074.810615px;}
.ybb{bottom:1076.340360px;}
.yd0{bottom:1076.340450px;}
.yf7{bottom:1077.600405px;}
.y13d{bottom:1080.389415px;}
.y13a{bottom:1080.389655px;}
.y137{bottom:1080.389880px;}
.y134{bottom:1081.019880px;}
.y130{bottom:1081.020105px;}
.y12c{bottom:1081.020330px;}
.ya4{bottom:1084.620390px;}
.y2{bottom:1097.040345px;}
.y17{bottom:1097.040615px;}
.y133{bottom:1098.299925px;}
.y12f{bottom:1098.300150px;}
.ycf{bottom:1117.740510px;}
.yf6{bottom:1117.740585px;}
.yba{bottom:1126.020450px;}
.y16{bottom:1138.260495px;}
.y1{bottom:1138.440405px;}
.h1b{height:46.991602px;}
.h1d{height:59.004492px;}
.h1f{height:65.158523px;}
.h21{height:65.158594px;}
.h20{height:65.161474px;}
.h1c{height:70.628906px;}
.h1{height:70.664062px;}
.h3{height:70.664242px;}
.h18{height:70.664423px;}
.h12{height:70.664783px;}
.h11{height:70.664963px;}
.hb{height:70.665683px;}
.h10{height:70.666462px;}
.hf{height:70.666642px;}
.h2{height:70.667722px;}
.h19{height:70.668743px;}
.h4{height:72.562500px;}
.h5{height:80.111362px;}
.h9{height:80.111722px;}
.ha{height:80.112082px;}
.h1a{height:80.112262px;}
.h14{height:80.112622px;}
.hc{height:80.112802px;}
.h8{height:80.113162px;}
.h7{height:80.113582px;}
.h16{height:80.114122px;}
.h6{height:80.114302px;}
.h15{height:80.114422px;}
.hd{height:80.114782px;}
.h13{height:80.114842px;}
.he{height:80.116222px;}
.h17{height:80.117302px;}
.h22{height:128.124456px;}
.h1e{height:128.124732px;}
.h23{height:153.463642px;}
.h0{height:1263.000000px;}
.w0{width:892.500000px;}
.x0{left:0.000000px;}
.x1{left:135.000000px;}
.xb{left:142.379880px;}
.xa{left:149.939895px;}
.x5{left:151.200165px;}
.x12{left:156.329955px;}
.x3{left:167.310240px;}
.x19{left:174.330000px;}
.xd{left:188.999865px;}
.x17{left:243.000000px;}
.x1d{left:256.949340px;}
.x1a{left:264.060540px;}
.x1c{left:267.840000px;}
.x2c{left:287.279850px;}
.x2f{left:291.239865px;}
.x6{left:296.010135px;}
.x30{left:302.399640px;}
.x1f{left:315.180060px;}
.x31{left:318.599055px;}
.x1e{left:327.689625px;}
.x10{left:331.470150px;}
.xf{left:334.170045px;}
.xe{left:340.470285px;}
.x20{left:343.890420px;}
.x9{left:351.450165px;}
.x2a{left:356.940030px;}
.x7{left:360.630060px;}
.x8{left:366.840090px;}
.x11{left:396.000270px;}
.x13{left:406.440030px;}
.x4{left:410.220150px;}
.xc{left:412.920045px;}
.x2b{left:416.520120px;}
.x2e{left:424.440030px;}
.x18{left:425.970390px;}
.x22{left:436.410645px;}
.x2{left:446.490150px;}
.x21{left:452.160525px;}
.x32{left:453.598485px;}
.x24{left:499.410435px;}
.x23{left:511.920000px;}
.x25{left:528.120780px;}
.x33{left:561.597975px;}
.x2d{left:578.699895px;}
.x16{left:584.910000px;}
.x1b{left:621.810750px;}
.x26{left:633.060225px;}
.x34{left:668.067555px;}
.x28{left:680.490420px;}
.x14{left:688.410000px;}
.x27{left:692.999970px;}
.x29{left:709.200765px;}
.x15{left:729.090000px;}
@media print{
.v6{vertical-align:-69.120427pt;}
.v2{vertical-align:-29.439787pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:23.999937pt;}
.v1{vertical-align:29.439787pt;}
.v3{vertical-align:61.440213pt;}
.v5{vertical-align:73.599627pt;}
.ls37{letter-spacing:-0.112758pt;}
.ls36{letter-spacing:-0.106880pt;}
.ls32{letter-spacing:-0.085504pt;}
.ls3f{letter-spacing:-0.053974pt;}
.ls33{letter-spacing:-0.048096pt;}
.ls31{letter-spacing:-0.042218pt;}
.ls35{letter-spacing:-0.037408pt;}
.ls3e{letter-spacing:-0.032064pt;}
.ls38{letter-spacing:-0.010688pt;}
.ls1e{letter-spacing:-0.007040pt;}
.ls7{letter-spacing:0.000000pt;}
.lsc{letter-spacing:0.007040pt;}
.ls22{letter-spacing:0.010688pt;}
.lsa{letter-spacing:0.012800pt;}
.lsb{letter-spacing:0.017024pt;}
.lse{letter-spacing:0.019840pt;}
.ls9{letter-spacing:0.025600pt;}
.ls8{letter-spacing:0.032000pt;}
.ls26{letter-spacing:0.032064pt;}
.ls0{letter-spacing:0.038400pt;}
.ls1{letter-spacing:0.044800pt;}
.ls2a{letter-spacing:0.048096pt;}
.ls4{letter-spacing:0.050560pt;}
.ls3{letter-spacing:0.057600pt;}
.ls11{letter-spacing:0.062933pt;}
.ls19{letter-spacing:0.063040pt;}
.ls17{letter-spacing:0.063413pt;}
.ls16{letter-spacing:0.063840pt;}
.ls1b{letter-spacing:0.064000pt;}
.lsd{letter-spacing:0.064640pt;}
.ls20{letter-spacing:0.064662pt;}
.ls29{letter-spacing:0.069472pt;}
.ls6{letter-spacing:0.070400pt;}
.ls2{letter-spacing:0.077440pt;}
.ls1d{letter-spacing:0.079947pt;}
.ls2e{letter-spacing:0.080160pt;}
.ls13{letter-spacing:0.083200pt;}
.ls2c{letter-spacing:0.085504pt;}
.ls1c{letter-spacing:0.089600pt;}
.ls27{letter-spacing:0.090314pt;}
.ls2d{letter-spacing:0.102070pt;}
.ls3b{letter-spacing:0.106880pt;}
.ls3d{letter-spacing:0.117568pt;}
.ls3c{letter-spacing:0.122912pt;}
.ls34{letter-spacing:0.128256pt;}
.ls1f{letter-spacing:0.133600pt;}
.ls23{letter-spacing:0.134080pt;}
.ls28{letter-spacing:0.138410pt;}
.ls25{letter-spacing:0.144288pt;}
.ls21{letter-spacing:0.150166pt;}
.lsf{letter-spacing:0.159947pt;}
.ls18{letter-spacing:0.160000pt;}
.ls14{letter-spacing:0.160053pt;}
.ls10{letter-spacing:0.160107pt;}
.ls2b{letter-spacing:0.160854pt;}
.ls1a{letter-spacing:0.161728pt;}
.ls24{letter-spacing:138.560053pt;}
.ls12{letter-spacing:176.000480pt;}
.ls30{letter-spacing:473.360832pt;}
.ls39{letter-spacing:629.120000pt;}
.ls15{letter-spacing:1059.520533pt;}
.ls5{letter-spacing:1075.520533pt;}
.ls2f{letter-spacing:1262.797888pt;}
.ls3a{letter-spacing:1439.039893pt;}
.ws16{word-spacing:-16.083200pt;}
.ws19{word-spacing:-16.064640pt;}
.ws0{word-spacing:-16.057600pt;}
.wsb{word-spacing:-16.050560pt;}
.ws12{word-spacing:-16.044800pt;}
.ws1{word-spacing:-16.038400pt;}
.ws1c{word-spacing:-16.032000pt;}
.ws17{word-spacing:-16.012800pt;}
.wsc{word-spacing:-16.007040pt;}
.ws13{word-spacing:-16.000000pt;}
.ws28{word-spacing:-13.510166pt;}
.ws27{word-spacing:-13.370688pt;}
.ws1b{word-spacing:-10.801728pt;}
.ws8{word-spacing:-10.657024pt;}
.ws25{word-spacing:-0.351360pt;}
.ws24{word-spacing:-0.345600pt;}
.ws15{word-spacing:-0.320000pt;}
.ws1a{word-spacing:-0.307840pt;}
.wse{word-spacing:-0.293760pt;}
.wsf{word-spacing:-0.250240pt;}
.ws21{word-spacing:-0.230400pt;}
.ws20{word-spacing:-0.211200pt;}
.ws18{word-spacing:-0.140800pt;}
.ws14{word-spacing:-0.128000pt;}
.ws1e{word-spacing:-0.096000pt;}
.ws1d{word-spacing:-0.089600pt;}
.ws23{word-spacing:-0.083200pt;}
.ws1f{word-spacing:-0.077440pt;}
.ws10{word-spacing:-0.070400pt;}
.ws2b{word-spacing:-0.069472pt;}
.wsd{word-spacing:-0.064640pt;}
.ws9{word-spacing:-0.057600pt;}
.ws29{word-spacing:-0.053974pt;}
.ws6{word-spacing:-0.050560pt;}
.ws5{word-spacing:-0.044800pt;}
.ws46{word-spacing:-0.042218pt;}
.ws3{word-spacing:-0.038400pt;}
.ws4{word-spacing:-0.032000pt;}
.ws41{word-spacing:-0.026720pt;}
.ws7{word-spacing:-0.025600pt;}
.ws36{word-spacing:-0.021376pt;}
.ws11{word-spacing:-0.019840pt;}
.wsa{word-spacing:-0.012800pt;}
.ws42{word-spacing:-0.010688pt;}
.ws22{word-spacing:-0.007040pt;}
.ws35{word-spacing:-0.005878pt;}
.ws2{word-spacing:0.000000pt;}
.ws26{word-spacing:0.007040pt;}
.ws32{word-spacing:0.010688pt;}
.ws43{word-spacing:0.016566pt;}
.ws44{word-spacing:0.112758pt;}
.ws2a{word-spacing:0.122912pt;}
.ws45{word-spacing:0.133600pt;}
.ws2f{word-spacing:44.088000pt;}
.ws2c{word-spacing:44.093344pt;}
.ws31{word-spacing:44.098688pt;}
.ws2e{word-spacing:44.205034pt;}
.ws30{word-spacing:44.349856pt;}
.ws49{word-spacing:44.440704pt;}
.ws3f{word-spacing:72.934400pt;}
.ws47{word-spacing:85.701728pt;}
.ws48{word-spacing:102.652896pt;}
.ws33{word-spacing:117.471808pt;}
.ws3a{word-spacing:130.546560pt;}
.ws3e{word-spacing:136.594560pt;}
.ws37{word-spacing:136.614400pt;}
.ws3d{word-spacing:137.267840pt;}
.ws2d{word-spacing:147.146506pt;}
.ws3b{word-spacing:151.340800pt;}
.ws38{word-spacing:180.089600pt;}
.ws34{word-spacing:184.880490pt;}
.ws39{word-spacing:247.667200pt;}
.ws40{word-spacing:275.488000pt;}
.ws3c{word-spacing:275.513600pt;}
._31{margin-left:-1906.612703pt;}
._1d{margin-left:-140.807054pt;}
._1b{margin-left:-73.282325pt;}
._1c{margin-left:-66.052379pt;}
._c{margin-left:-41.915838pt;}
._3{margin-left:-8.640640pt;}
._0{margin-left:-1.092160pt;}
._13{width:0.961920pt;}
._2{width:36.253760pt;}
._22{width:40.318240pt;}
._19{width:44.425280pt;}
._25{width:55.039413pt;}
._10{width:61.439388pt;}
._3b{width:66.237900pt;}
._39{width:69.071226pt;}
._d{width:73.134679pt;}
._35{width:85.360114pt;}
._7{width:87.395828pt;}
._b{width:88.320672pt;}
._14{width:104.274540pt;}
._e{width:118.453141pt;}
._29{width:119.534539pt;}
._3c{width:126.989387pt;}
._1a{width:131.920181pt;}
._30{width:133.629579pt;}
._28{width:136.635147pt;}
._11{width:138.782892pt;}
._f{width:140.802283pt;}
._1e{width:142.080000pt;}
._9{width:145.298197pt;}
._2a{width:150.717760pt;}
._12{width:152.325077pt;}
._18{width:157.117205pt;}
._4{width:158.080000pt;}
._2b{width:165.629579pt;}
._a{width:167.685013pt;}
._33{width:168.963210pt;}
._27{width:172.159787pt;}
._40{width:173.759632pt;}
._1{width:176.000000pt;}
._8{width:179.521973pt;}
._20{width:183.063200pt;}
._38{width:185.282917pt;}
._37{width:190.723237pt;}
._17{width:196.243914pt;}
._2f{width:197.732960pt;}
._16{width:208.658295pt;}
._2d{width:215.036373pt;}
._3f{width:226.563829pt;}
._2e{width:229.732960pt;}
._3e{width:232.004096pt;}
._3a{width:269.759259pt;}
._34{width:271.043444pt;}
._36{width:286.722864pt;}
._26{width:291.636501pt;}
._15{width:307.296533pt;}
._23{width:323.826827pt;}
._3d{width:328.003723pt;}
._24{width:328.946827pt;}
._32{width:331.508122pt;}
._2c{width:336.607520pt;}
._21{width:409.051893pt;}
._5{width:457.908997pt;}
._1f{width:461.023520pt;}
._6{width:479.478182pt;}
.fs3{font-size:34.560000pt;}
.fs1{font-size:42.560000pt;}
.fs2{font-size:53.440000pt;}
.fs0{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y15{bottom:50.987067pt;}
.y3a{bottom:128.825933pt;}
.y4a{bottom:128.826333pt;}
.y31{bottom:128.826493pt;}
.y9c{bottom:128.826667pt;}
.y5f{bottom:128.826747pt;}
.y83{bottom:128.826787pt;}
.y6e{bottom:128.826827pt;}
.y78{bottom:128.826867pt;}
.y59{bottom:128.826960pt;}
.yce{bottom:147.226760pt;}
.ye1{bottom:147.226907pt;}
.y39{bottom:165.625973pt;}
.y98{bottom:165.626053pt;}
.yef{bottom:165.626227pt;}
.y49{bottom:165.626387pt;}
.y30{bottom:165.626547pt;}
.y9b{bottom:165.626707pt;}
.ya2{bottom:165.626747pt;}
.y5e{bottom:165.626787pt;}
.y82{bottom:165.626827pt;}
.y6d{bottom:165.626867pt;}
.y77{bottom:165.626907pt;}
.y58{bottom:165.627013pt;}
.ycd{bottom:184.026813pt;}
.yb9{bottom:184.026853pt;}
.ye0{bottom:184.026960pt;}
.y38{bottom:202.426027pt;}
.y97{bottom:202.426107pt;}
.yee{bottom:202.426267pt;}
.y48{bottom:202.426427pt;}
.y2f{bottom:202.426600pt;}
.y8b{bottom:202.426680pt;}
.y9a{bottom:202.426760pt;}
.ya1{bottom:202.426800pt;}
.y5d{bottom:202.426840pt;}
.y81{bottom:202.426880pt;}
.y6c{bottom:202.426920pt;}
.y57{bottom:202.426960pt;}
.ycc{bottom:220.826867pt;}
.yb8{bottom:220.826907pt;}
.ydf{bottom:220.827000pt;}
.y37{bottom:239.226080pt;}
.y96{bottom:239.226160pt;}
.yed{bottom:239.226320pt;}
.y47{bottom:239.226480pt;}
.y2e{bottom:239.226640pt;}
.y8a{bottom:239.226720pt;}
.y99{bottom:239.226800pt;}
.ya0{bottom:239.226853pt;}
.y5c{bottom:239.226893pt;}
.y80{bottom:239.226933pt;}
.y6b{bottom:239.226973pt;}
.y56{bottom:239.227013pt;}
.ycb{bottom:257.626907pt;}
.yb7{bottom:257.626947pt;}
.yde{bottom:264.987067pt;}
.y36{bottom:276.026120pt;}
.y95{bottom:276.026200pt;}
.yec{bottom:276.026373pt;}
.y46{bottom:276.026533pt;}
.y2d{bottom:276.026693pt;}
.y89{bottom:276.026773pt;}
.y7c{bottom:276.026853pt;}
.y9f{bottom:276.026893pt;}
.y5b{bottom:276.026933pt;}
.y7f{bottom:276.026973pt;}
.y55{bottom:276.027013pt;}
.y76{bottom:276.027053pt;}
.ydd{bottom:294.426267pt;}
.yca{bottom:294.426960pt;}
.yb6{bottom:294.427000pt;}
.y35{bottom:312.826173pt;}
.y94{bottom:312.826253pt;}
.yeb{bottom:312.826413pt;}
.y45{bottom:312.826573pt;}
.y54{bottom:312.826707pt;}
.y2c{bottom:312.826747pt;}
.y88{bottom:312.826827pt;}
.y7b{bottom:312.826907pt;}
.y75{bottom:312.826947pt;}
.y5a{bottom:312.826987pt;}
.y14{bottom:312.827027pt;}
.ydc{bottom:331.226320pt;}
.yc9{bottom:331.227013pt;}
.yb5{bottom:338.587053pt;}
.y34{bottom:349.626227pt;}
.y93{bottom:349.626307pt;}
.y7e{bottom:349.626467pt;}
.y44{bottom:349.626627pt;}
.y53{bottom:349.626747pt;}
.y2b{bottom:349.626787pt;}
.y87{bottom:349.626867pt;}
.y7a{bottom:349.626947pt;}
.y74{bottom:349.627000pt;}
.y13{bottom:349.627040pt;}
.ydb{bottom:368.026373pt;}
.yb4{bottom:368.026893pt;}
.yc8{bottom:375.387040pt;}
.y33{bottom:386.426267pt;}
.y92{bottom:386.426347pt;}
.y7d{bottom:386.426520pt;}
.y43{bottom:386.426680pt;}
.y52{bottom:386.426800pt;}
.y2a{bottom:386.426840pt;}
.y86{bottom:386.426920pt;}
.y79{bottom:386.427000pt;}
.y73{bottom:386.427040pt;}
.y12{bottom:386.427080pt;}
.yda{bottom:404.826413pt;}
.yb3{bottom:404.826947pt;}
.y32{bottom:423.226320pt;}
.y91{bottom:423.226400pt;}
.y26{bottom:423.226560pt;}
.y42{bottom:423.226720pt;}
.y51{bottom:423.226853pt;}
.y29{bottom:423.226893pt;}
.y72{bottom:423.226933pt;}
.y85{bottom:423.226973pt;}
.y11{bottom:423.227133pt;}
.yd9{bottom:441.626467pt;}
.yb2{bottom:441.627000pt;}
.y10{bottom:460.026373pt;}
.y90{bottom:460.026453pt;}
.y25{bottom:460.026613pt;}
.y41{bottom:460.026773pt;}
.y50{bottom:460.026893pt;}
.y28{bottom:460.026933pt;}
.y71{bottom:460.026973pt;}
.y84{bottom:460.027013pt;}
.y9d{bottom:460.027187pt;}
.yf5{bottom:464.107173pt;}
.yf4{bottom:471.867067pt;}
.yd8{bottom:478.426520pt;}
.yb1{bottom:485.787067pt;}
.yf{bottom:496.826413pt;}
.y8f{bottom:496.826493pt;}
.y24{bottom:496.826667pt;}
.y40{bottom:496.826827pt;}
.y4f{bottom:496.826947pt;}
.y27{bottom:496.826987pt;}
.y70{bottom:496.827027pt;}
.y9e{bottom:496.827067pt;}
.yf3{bottom:508.987067pt;}
.yd7{bottom:515.226560pt;}
.yb0{bottom:515.227053pt;}
.yc7{bottom:515.227093pt;}
.ye{bottom:533.626467pt;}
.y8e{bottom:533.626547pt;}
.y23{bottom:533.626707pt;}
.y3f{bottom:533.626867pt;}
.y4e{bottom:533.627000pt;}
.y6a{bottom:533.627040pt;}
.y6f{bottom:533.627080pt;}
.yd6{bottom:551.946533pt;}
.ye9{bottom:551.946893pt;}
.yaf{bottom:551.947027pt;}
.yc6{bottom:559.307053pt;}
.yd{bottom:570.346440pt;}
.y8d{bottom:570.346520pt;}
.y22{bottom:570.346680pt;}
.y3e{bottom:570.346840pt;}
.y4d{bottom:570.346960pt;}
.y69{bottom:570.347000pt;}
.yd5{bottom:588.746587pt;}
.ye8{bottom:588.746947pt;}
.yc5{bottom:588.746987pt;}
.yae{bottom:596.107053pt;}
.yf1{bottom:598.107053pt;}
.yc{bottom:607.146480pt;}
.y8c{bottom:607.146560pt;}
.y21{bottom:607.146733pt;}
.y3d{bottom:607.146893pt;}
.y4c{bottom:607.147013pt;}
.yf0{bottom:623.707027pt;}
.yd4{bottom:625.546627pt;}
.ye7{bottom:625.547000pt;}
.yad{bottom:625.547120pt;}
.yf2{bottom:626.747067pt;}
.yc4{bottom:632.907067pt;}
.y12b{bottom:637.947147pt;}
.yb{bottom:643.946533pt;}
.y68{bottom:643.946613pt;}
.y20{bottom:643.946773pt;}
.y3c{bottom:643.946947pt;}
.y12a{bottom:656.347040pt;}
.yd3{bottom:662.346680pt;}
.yc3{bottom:662.346920pt;}
.yac{bottom:662.347173pt;}
.ye6{bottom:669.707027pt;}
.y129{bottom:676.107173pt;}
.y119{bottom:679.227096pt;}
.ya{bottom:680.746587pt;}
.y67{bottom:680.746667pt;}
.y1f{bottom:680.746827pt;}
.y3b{bottom:680.746987pt;}
.y128{bottom:694.507080pt;}
.y118{bottom:694.587088pt;}
.yd2{bottom:699.146733pt;}
.ye5{bottom:699.146893pt;}
.yc2{bottom:699.146973pt;}
.yab{bottom:706.507080pt;}
.y117{bottom:709.947080pt;}
.y127{bottom:712.907067pt;}
.y9{bottom:717.546627pt;}
.y66{bottom:717.546707pt;}
.y1e{bottom:717.546880pt;}
.y4b{bottom:717.547040pt;}
.y116{bottom:725.227027pt;}
.y126{bottom:732.027427pt;}
.yaa{bottom:735.946773pt;}
.ye4{bottom:735.946947pt;}
.yc1{bottom:735.947027pt;}
.y115{bottom:740.587080pt;}
.y14b{bottom:742.347107pt;}
.y125{bottom:750.427333pt;}
.y8{bottom:754.346680pt;}
.y65{bottom:754.346760pt;}
.y1d{bottom:754.346920pt;}
.ya3{bottom:754.347080pt;}
.y114{bottom:757.227173pt;}
.y14a{bottom:757.627040pt;}
.y124{bottom:769.467360pt;}
.y113{bottom:772.587088pt;}
.ya9{bottom:772.746827pt;}
.ye3{bottom:772.746987pt;}
.y149{bottom:774.347107pt;}
.yc0{bottom:780.107013pt;}
.y123{bottom:787.867267pt;}
.y112{bottom:787.947080pt;}
.y148{bottom:789.627040pt;}
.y7{bottom:791.146733pt;}
.y64{bottom:791.146813pt;}
.y1c{bottom:791.146973pt;}
.y111{bottom:803.227013pt;}
.y147{bottom:804.987067pt;}
.y122{bottom:806.267173pt;}
.ya8{bottom:809.546880pt;}
.ybf{bottom:809.547120pt;}
.ye2{bottom:816.907067pt;}
.y110{bottom:818.587053pt;}
.y146{bottom:820.987013pt;}
.y121{bottom:824.667080pt;}
.yea{bottom:827.866947pt;}
.y6{bottom:827.946773pt;}
.y63{bottom:827.946853pt;}
.y1b{bottom:827.947027pt;}
.y10f{bottom:833.947120pt;}
.y145{bottom:836.347067pt;}
.y120{bottom:843.067053pt;}
.ya7{bottom:846.346920pt;}
.ybe{bottom:846.347173pt;}
.y10e{bottom:849.227053pt;}
.y144{bottom:851.627013pt;}
.y11f{bottom:862.107173pt;}
.y10d{bottom:864.586315pt;}
.y108{bottom:864.586440pt;}
.y10a{bottom:864.586653pt;}
.y105{bottom:864.586728pt;}
.y102{bottom:864.586853pt;}
.y109{bottom:864.586928pt;}
.yff{bottom:864.587053pt;}
.yfd{bottom:864.587096pt;}
.y5{bottom:864.746827pt;}
.y62{bottom:864.746907pt;}
.y1a{bottom:864.747067pt;}
.y143{bottom:866.987067pt;}
.y10c{bottom:879.946307pt;}
.y107{bottom:879.946507pt;}
.y104{bottom:879.946720pt;}
.y101{bottom:879.946920pt;}
.yfc{bottom:879.947088pt;}
.yfe{bottom:879.947120pt;}
.y11e{bottom:880.507080pt;}
.y142{bottom:882.347000pt;}
.ya6{bottom:883.146973pt;}
.ybd{bottom:890.507080pt;}
.y10b{bottom:895.226240pt;}
.y106{bottom:895.226440pt;}
.y103{bottom:895.226640pt;}
.y100{bottom:895.226853pt;}
.yfb{bottom:895.227053pt;}
.y141{bottom:898.347107pt;}
.y11d{bottom:899.547120pt;}
.y4{bottom:901.546880pt;}
.y61{bottom:901.546960pt;}
.y19{bottom:901.547120pt;}
.yfa{bottom:911.227027pt;}
.y140{bottom:913.627040pt;}
.y11c{bottom:917.947027pt;}
.ybc{bottom:919.946947pt;}
.ya5{bottom:919.947027pt;}
.yf9{bottom:926.587080pt;}
.yd1{bottom:927.307053pt;}
.y13f{bottom:929.626163pt;}
.y13c{bottom:929.626240pt;}
.y139{bottom:929.626440pt;}
.y136{bottom:930.266602pt;}
.y132{bottom:930.266760pt;}
.y12e{bottom:930.267021pt;}
.y11b{bottom:936.987307pt;}
.y3{bottom:938.346920pt;}
.y60{bottom:938.347000pt;}
.y18{bottom:938.347173pt;}
.yf8{bottom:942.506973pt;}
.y13e{bottom:944.986155pt;}
.y13b{bottom:944.986293pt;}
.y138{bottom:944.986493pt;}
.y135{bottom:945.626594pt;}
.y131{bottom:945.626813pt;}
.y12d{bottom:945.627013pt;}
.y11a{bottom:955.387213pt;}
.ybb{bottom:956.746987pt;}
.yd0{bottom:956.747067pt;}
.yf7{bottom:957.867027pt;}
.y13d{bottom:960.346147pt;}
.y13a{bottom:960.346360pt;}
.y137{bottom:960.346560pt;}
.y134{bottom:960.906560pt;}
.y130{bottom:960.906760pt;}
.y12c{bottom:960.906960pt;}
.ya4{bottom:964.107013pt;}
.y2{bottom:975.146973pt;}
.y17{bottom:975.147213pt;}
.y133{bottom:976.266600pt;}
.y12f{bottom:976.266800pt;}
.ycf{bottom:993.547120pt;}
.yf6{bottom:993.547187pt;}
.yba{bottom:1000.907067pt;}
.y16{bottom:1011.787107pt;}
.y1{bottom:1011.947027pt;}
.h1b{height:41.770312pt;}
.h1d{height:52.448437pt;}
.h1f{height:57.918687pt;}
.h21{height:57.918750pt;}
.h20{height:57.921310pt;}
.h1c{height:62.781250pt;}
.h1{height:62.812500pt;}
.h3{height:62.812660pt;}
.h18{height:62.812820pt;}
.h12{height:62.813140pt;}
.h11{height:62.813300pt;}
.hb{height:62.813940pt;}
.h10{height:62.814633pt;}
.hf{height:62.814793pt;}
.h2{height:62.815753pt;}
.h19{height:62.816660pt;}
.h4{height:64.500000pt;}
.h5{height:71.210099pt;}
.h9{height:71.210419pt;}
.ha{height:71.210739pt;}
.h1a{height:71.210899pt;}
.h14{height:71.211219pt;}
.hc{height:71.211379pt;}
.h8{height:71.211699pt;}
.h7{height:71.212073pt;}
.h16{height:71.212552pt;}
.h6{height:71.212712pt;}
.h15{height:71.212819pt;}
.hd{height:71.213139pt;}
.h13{height:71.213192pt;}
.he{height:71.214419pt;}
.h17{height:71.215379pt;}
.h22{height:113.888405pt;}
.h1e{height:113.888651pt;}
.h23{height:136.412127pt;}
.h0{height:1122.666667pt;}
.w0{width:793.333333pt;}
.x0{left:0.000000pt;}
.x1{left:120.000000pt;}
.xb{left:126.559893pt;}
.xa{left:133.279907pt;}
.x5{left:134.400147pt;}
.x12{left:138.959960pt;}
.x3{left:148.720213pt;}
.x19{left:154.960000pt;}
.xd{left:167.999880pt;}
.x17{left:216.000000pt;}
.x1d{left:228.399413pt;}
.x1a{left:234.720480pt;}
.x1c{left:238.080000pt;}
.x2c{left:255.359867pt;}
.x2f{left:258.879880pt;}
.x6{left:263.120120pt;}
.x30{left:268.799680pt;}
.x1f{left:280.160053pt;}
.x31{left:283.199160pt;}
.x1e{left:291.279667pt;}
.x10{left:294.640133pt;}
.xf{left:297.040040pt;}
.xe{left:302.640253pt;}
.x20{left:305.680373pt;}
.x9{left:312.400147pt;}
.x2a{left:317.280027pt;}
.x7{left:320.560053pt;}
.x8{left:326.080080pt;}
.x11{left:352.000240pt;}
.x13{left:361.280027pt;}
.x4{left:364.640133pt;}
.xc{left:367.040040pt;}
.x2b{left:370.240107pt;}
.x2e{left:377.280027pt;}
.x18{left:378.640347pt;}
.x22{left:387.920573pt;}
.x2{left:396.880133pt;}
.x21{left:401.920467pt;}
.x32{left:403.198653pt;}
.x24{left:443.920387pt;}
.x23{left:455.040000pt;}
.x25{left:469.440693pt;}
.x33{left:499.198200pt;}
.x2d{left:514.399907pt;}
.x16{left:519.920000pt;}
.x1b{left:552.720667pt;}
.x26{left:562.720200pt;}
.x34{left:593.837827pt;}
.x28{left:604.880373pt;}
.x14{left:611.920000pt;}
.x27{left:615.999973pt;}
.x29{left:630.400680pt;}
.x15{left:648.080000pt;}
}




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