
    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_83d3a9a1ccd91042d69302be.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_5f8aa509789b3feec5da030f.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.035156;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_50a7cff37dfabfb5616965fc.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.003906;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_1dfa064c92180cf41d50a64f.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_0dc5ccfa70d6c3178e14e470.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.921387;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_78d17646779e405894d5c064.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.916992;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_0dfe05af56aafd35e76ab486.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_8e69c784632417c34f660383.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_acbf3273a7b4569937f7085d.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_9d2f7c3b346dfd235817b323.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_6f83710addaacf2c17f93ee9.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.747559;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_dac25665d3d376d4f6a33c3d.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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);}
.m6{transform:matrix(0.250889,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250889,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250889,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.252459,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252459,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252459,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.252523,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252523,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252523,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.252676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252676,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.252677,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252677,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252677,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.252700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252700,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.252881,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252881,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252881,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.253290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253290,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.253540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253540,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.253954,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253954,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253954,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.253966,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253966,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253966,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.255091,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255091,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255091,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.256221,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256221,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256221,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.258108,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258108,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258108,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.258929,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258929,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258929,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v7{vertical-align:-66.019298px;}
.v8{vertical-align:-61.591175px;}
.v1{vertical-align:-60.272295px;}
.v6{vertical-align:-23.957458px;}
.v3{vertical-align:-9.360000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:9.360000px;}
.v2{vertical-align:74.796376px;}
.v5{vertical-align:76.234029px;}
.ls1a{letter-spacing:-1.000664px;}
.ls1b{letter-spacing:-0.858558px;}
.ls4{letter-spacing:-0.378600px;}
.ls5{letter-spacing:-0.360000px;}
.lsa{letter-spacing:-0.341400px;}
.ls13{letter-spacing:-0.180000px;}
.ls3{letter-spacing:-0.028080px;}
.ls2{letter-spacing:-0.018720px;}
.ls0{letter-spacing:0.000000px;}
.ls8{letter-spacing:0.028080px;}
.ls9{letter-spacing:0.037440px;}
.lse{letter-spacing:0.071781px;}
.ls1e{letter-spacing:0.215343px;}
.ls6{letter-spacing:0.341400px;}
.ls1{letter-spacing:0.360000px;}
.ls7{letter-spacing:0.504000px;}
.ls18{letter-spacing:2.106720px;}
.lsc{letter-spacing:23.273331px;}
.ls17{letter-spacing:29.461659px;}
.ls1d{letter-spacing:48.763609px;}
.lsb{letter-spacing:50.746361px;}
.ls11{letter-spacing:100.296886px;}
.ls10{letter-spacing:125.326518px;}
.lsd{letter-spacing:189.240769px;}
.ls15{letter-spacing:355.383801px;}
.ls19{letter-spacing:501.317937px;}
.ls1c{letter-spacing:545.154724px;}
.lsf{letter-spacing:548.916875px;}
.ls16{letter-spacing:637.878988px;}
.ls14{letter-spacing:639.596104px;}
.ls12{letter-spacing:973.037659px;}
.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;}
}
.ws20{word-spacing:-355.480605px;}
.wsd{word-spacing:-50.840591px;}
.ws36{word-spacing:-32.808240px;}
.ws0{word-spacing:-24.300000px;}
.ws10{word-spacing:-23.367562px;}
.ws4{word-spacing:-21.420000px;}
.ws7{word-spacing:-21.401400px;}
.ws1{word-spacing:-21.060000px;}
.ws2{word-spacing:-21.041280px;}
.ws3{word-spacing:-21.031920px;}
.ws1f{word-spacing:-20.880000px;}
.ws9{word-spacing:-20.718600px;}
.ws6{word-spacing:-20.700000px;}
.ws5{word-spacing:-20.681400px;}
.ws1e{word-spacing:-13.500000px;}
.ws14{word-spacing:-0.166615px;}
.ws3e{word-spacing:-0.096804px;}
.ws1b{word-spacing:-0.085791px;}
.ws35{word-spacing:-0.053904px;}
.ws8{word-spacing:0.000000px;}
.ws26{word-spacing:0.903860px;}
.ws19{word-spacing:1.082819px;}
.wsf{word-spacing:23.086532px;}
.ws18{word-spacing:29.293674px;}
.wsc{word-spacing:29.588453px;}
.ws46{word-spacing:31.687032px;}
.ws17{word-spacing:32.538709px;}
.wsb{word-spacing:36.938451px;}
.wse{word-spacing:41.649988px;}
.ws13{word-spacing:42.390775px;}
.ws45{word-spacing:44.666789px;}
.wsa{word-spacing:50.413447px;}
.ws43{word-spacing:51.400000px;}
.ws1d{word-spacing:51.989253px;}
.ws23{word-spacing:52.274103px;}
.ws1a{word-spacing:60.646329px;}
.ws2d{word-spacing:60.791256px;}
.ws2a{word-spacing:74.732607px;}
.ws34{word-spacing:74.926214px;}
.ws1c{word-spacing:77.669700px;}
.ws11{word-spacing:87.721401px;}
.ws3c{word-spacing:94.674209px;}
.ws42{word-spacing:95.351836px;}
.ws12{word-spacing:96.388985px;}
.ws16{word-spacing:101.243571px;}
.ws15{word-spacing:102.729528px;}
.ws2e{word-spacing:112.846560px;}
.ws39{word-spacing:122.954953px;}
.ws31{word-spacing:123.402877px;}
.ws3a{word-spacing:124.005789px;}
.ws32{word-spacing:124.393005px;}
.ws3f{word-spacing:124.690656px;}
.ws40{word-spacing:125.651455px;}
.ws2c{word-spacing:136.395572px;}
.ws25{word-spacing:138.235962px;}
.ws21{word-spacing:145.183148px;}
.ws2b{word-spacing:146.066184px;}
.ws22{word-spacing:146.173881px;}
.ws3b{word-spacing:147.982669px;}
.ws41{word-spacing:148.374602px;}
.ws28{word-spacing:166.599503px;}
.ws3d{word-spacing:180.961024px;}
.ws27{word-spacing:181.688899px;}
.ws37{word-spacing:184.992334px;}
.ws29{word-spacing:185.776200px;}
.ws24{word-spacing:225.193453px;}
.ws47{word-spacing:227.316972px;}
.ws44{word-spacing:268.700120px;}
.ws33{word-spacing:337.006313px;}
.ws2f{word-spacing:369.424764px;}
.ws30{word-spacing:535.131930px;}
.ws38{word-spacing:550.426945px;}
._24{margin-left:-866.950735px;}
._26{margin-left:-795.265581px;}
._63{margin-left:-744.165117px;}
._31{margin-left:-425.800549px;}
._2b{margin-left:-413.170918px;}
._75{margin-left:-368.717273px;}
._2e{margin-left:-357.792931px;}
._39{margin-left:-356.533986px;}
._34{margin-left:-335.168629px;}
._3d{margin-left:-321.139190px;}
._62{margin-left:-288.500246px;}
._85{margin-left:-285.393561px;}
._8c{margin-left:-244.849820px;}
._67{margin-left:-227.572444px;}
._30{margin-left:-207.440098px;}
._33{margin-left:-165.250069px;}
._5d{margin-left:-121.411663px;}
._37{margin-left:-119.723866px;}
._5e{margin-left:-108.399828px;}
._7a{margin-left:-81.829325px;}
._7b{margin-left:-9.965906px;}
._f{margin-left:-5.496240px;}
._11{margin-left:-4.296240px;}
._10{margin-left:-2.864160px;}
._1{margin-left:-1.158720px;}
._0{width:1.140000px;}
._5{width:2.325600px;}
._4{width:3.714000px;}
._17{width:5.370720px;}
._6{width:7.076160px;}
._3{width:8.303760px;}
._7{width:10.074000px;}
._19{width:11.372400px;}
._15{width:12.551760px;}
._16{width:13.626240px;}
._18{width:14.722560px;}
._35{width:17.150640px;}
._1a{width:18.617040px;}
._8{width:19.818000px;}
._14{width:22.216800px;}
._1d{width:24.429600px;}
._1e{width:25.627680px;}
._1c{width:26.806680px;}
._9{width:28.220400px;}
._1f{width:29.300160px;}
._4f{width:31.352655px;}
._b{width:33.843840px;}
._a{width:34.959600px;}
._c{width:36.053280px;}
._d{width:37.367040px;}
._e{width:38.666160px;}
._1b{width:40.330320px;}
._28{width:42.309603px;}
._29{width:43.723064px;}
._12{width:44.963520px;}
._27{width:47.680755px;}
._2d{width:48.818205px;}
._61{width:54.305606px;}
._6e{width:55.766880px;}
._6d{width:56.862000px;}
._20{width:62.003828px;}
._2{width:63.180000px;}
._13{width:69.329520px;}
._3a{width:77.022739px;}
._21{width:81.038438px;}
._32{width:86.930257px;}
._4d{width:89.940004px;}
._51{width:94.561659px;}
._8b{width:97.394464px;}
._57{width:98.644805px;}
._54{width:101.730839px;}
._22{width:104.407662px;}
._2f{width:106.198046px;}
._48{width:107.439555px;}
._3c{width:110.328435px;}
._3e{width:117.810700px;}
._4b{width:123.338154px;}
._50{width:124.748572px;}
._60{width:127.742570px;}
._72{width:129.566175px;}
._36{width:138.173062px;}
._8a{width:140.638744px;}
._79{width:142.785745px;}
._70{width:151.304820px;}
._4a{width:154.517113px;}
._45{width:162.855968px;}
._41{width:165.942002px;}
._76{width:166.986718px;}
._3b{width:172.977120px;}
._88{width:178.022362px;}
._71{width:180.353807px;}
._38{width:181.875803px;}
._2a{width:184.221100px;}
._58{width:202.060841px;}
._49{width:204.427862px;}
._5c{width:206.459571px;}
._43{width:207.901236px;}
._69{width:209.236184px;}
._42{width:210.283437px;}
._47{width:214.181586px;}
._59{width:216.941653px;}
._3f{width:218.404579px;}
._6b{width:220.300286px;}
._7f{width:223.233788px;}
._81{width:224.294624px;}
._5f{width:225.713607px;}
._7d{width:229.392734px;}
._4e{width:233.975035px;}
._46{width:254.354168px;}
._89{width:255.755890px;}
._64{width:257.369010px;}
._5b{width:269.726421px;}
._73{width:274.938291px;}
._6f{width:277.664860px;}
._8d{width:293.416234px;}
._23{width:299.803219px;}
._86{width:301.233594px;}
._83{width:303.186509px;}
._4c{width:314.275267px;}
._56{width:324.033567px;}
._44{width:326.686473px;}
._53{width:331.450876px;}
._40{width:334.079866px;}
._78{width:337.167965px;}
._2c{width:347.051822px;}
._5a{width:360.976685px;}
._87{width:374.545349px;}
._84{width:377.656947px;}
._6a{width:378.890444px;}
._68{width:381.910626px;}
._66{width:396.819591px;}
._80{width:404.620153px;}
._7e{width:406.695449px;}
._52{width:493.169884px;}
._77{width:540.867417px;}
._74{width:543.610947px;}
._25{width:551.815224px;}
._7c{width:553.633232px;}
._82{width:555.312944px;}
._55{width:572.053244px;}
._6c{width:826.250567px;}
._65{width:827.986269px;}
.fc4{color:transparent;}
.fc3{color:rgb(31,78,121);}
.fc2{color:rgb(5,99,193);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fsd{font-size:49.629201px;}
.fs10{font-size:53.904137px;}
.fs1{font-size:54.000000px;}
.fsa{font-size:54.140947px;}
.fs6{font-size:54.805669px;}
.fs8{font-size:55.644260px;}
.fse{font-size:55.990416px;}
.fs12{font-size:59.760000px;}
.fs2{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs4{font-size:84.240000px;}
.fsc{font-size:85.790846px;}
.fs11{font-size:93.221827px;}
.fsb{font-size:93.590014px;}
.fs5{font-size:94.230742px;}
.fs7{font-size:94.833948px;}
.fs3{font-size:95.760000px;}
.fs9{font-size:96.188697px;}
.fsf{font-size:96.803895px;}
.y6{bottom:-6.480000px;}
.y0{bottom:0.000000px;}
.y7b{bottom:3.338014px;}
.y81{bottom:3.338071px;}
.y3{bottom:3.960000px;}
.y71{bottom:3.985739px;}
.y9f{bottom:4.283113px;}
.y69{bottom:4.348078px;}
.y64{bottom:4.468806px;}
.y8b{bottom:4.468838px;}
.y8f{bottom:4.468841px;}
.y8d{bottom:4.468845px;}
.ya{bottom:5.220000px;}
.y9{bottom:7.380000px;}
.y51{bottom:9.051517px;}
.y53{bottom:9.051525px;}
.y4d{bottom:9.051585px;}
.y70{bottom:9.546549px;}
.y72{bottom:9.546583px;}
.y60{bottom:9.853126px;}
.ya0{bottom:10.272503px;}
.y6a{bottom:10.414430px;}
.y6c{bottom:10.414451px;}
.y6b{bottom:10.414453px;}
.y65{bottom:10.703625px;}
.y8c{bottom:10.703633px;}
.y90{bottom:10.703650px;}
.y8e{bottom:10.703664px;}
.y4{bottom:16.020000px;}
.y79{bottom:16.151252px;}
.y7f{bottom:16.151326px;}
.y85{bottom:16.151328px;}
.y82{bottom:16.151330px;}
.yc{bottom:16.380000px;}
.y9e{bottom:20.787951px;}
.y7a{bottom:22.396522px;}
.y80{bottom:22.396570px;}
.y86{bottom:22.396594px;}
.y84{bottom:22.396602px;}
.y5d{bottom:22.403378px;}
.y2{bottom:24.660000px;}
.y5e{bottom:28.552220px;}
.y7c{bottom:37.794315px;}
.y83{bottom:37.794370px;}
.y5f{bottom:43.620294px;}
.yb{bottom:52.560000px;}
.y8{bottom:80.856000px;}
.y45{bottom:122.976000px;}
.yfb{bottom:126.576000px;}
.yda{bottom:130.896000px;}
.ycd{bottom:133.236000px;}
.y29{bottom:133.956000px;}
.ybc{bottom:138.276000px;}
.y78{bottom:139.590000px;}
.yb2{bottom:141.696000px;}
.yb8{bottom:146.736000px;}
.y44{bottom:150.870000px;}
.yfa{bottom:154.470000px;}
.yd9{bottom:158.790000px;}
.ycc{bottom:160.950000px;}
.y7d{bottom:162.030000px;}
.yb1{bottom:169.590000px;}
.y28{bottom:170.130000px;}
.yb7{bottom:174.450000px;}
.y43{bottom:178.590000px;}
.yf9{bottom:182.190000px;}
.yd8{bottom:186.510000px;}
.ycb{bottom:188.670000px;}
.yb0{bottom:197.310000px;}
.yb6{bottom:202.350000px;}
.y27{bottom:206.310000px;}
.y77{bottom:208.110000px;}
.yf8{bottom:209.910000px;}
.yd7{bottom:214.230000px;}
.yca{bottom:216.390000px;}
.yaf{bottom:225.030000px;}
.yb5{bottom:230.070000px;}
.y42{bottom:234.030000px;}
.y76{bottom:235.830000px;}
.yf7{bottom:237.630000px;}
.yd6{bottom:241.950000px;}
.y26{bottom:242.490000px;}
.yc9{bottom:244.290000px;}
.yae{bottom:252.750000px;}
.yb4{bottom:253.110000px;}
.y41{bottom:261.930000px;}
.y75{bottom:263.550000px;}
.yf6{bottom:265.530000px;}
.yd5{bottom:269.850000px;}
.yc8{bottom:272.010000px;}
.y25{bottom:278.850000px;}
.yad{bottom:280.650000px;}
.y74{bottom:291.270000px;}
.yf5{bottom:293.250000px;}
.yd4{bottom:297.570000px;}
.y40{bottom:298.110000px;}
.yc7{bottom:299.730000px;}
.yac{bottom:308.370000px;}
.y24{bottom:315.030000px;}
.y73{bottom:319.170000px;}
.yf4{bottom:320.970000px;}
.yd3{bottom:325.290000px;}
.yc6{bottom:327.630000px;}
.yaa{bottom:331.665000px;}
.y3f{bottom:334.290000px;}
.y6f{bottom:342.464959px;}
.yf3{bottom:348.915000px;}
.y23{bottom:351.255000px;}
.y6e{bottom:352.875000px;}
.yd2{bottom:353.235000px;}
.yab{bottom:354.135000px;}
.yc5{bottom:355.395000px;}
.y3e{bottom:370.515000px;}
.y68{bottom:376.139959px;}
.yd1{bottom:376.455000px;}
.yf2{bottom:376.635000px;}
.yc4{bottom:383.115000px;}
.y6d{bottom:386.535000px;}
.y22{bottom:387.435000px;}
.ya9{bottom:400.035000px;}
.yf1{bottom:404.355000px;}
.y3d{bottom:406.875000px;}
.yc3{bottom:410.835000px;}
.y67{bottom:416.595000px;}
.ya7{bottom:423.240000px;}
.y21{bottom:423.615000px;}
.yf0{bottom:432.075000px;}
.yc2{bottom:438.735000px;}
.y63{bottom:440.039959px;}
.y3c{bottom:443.055000px;}
.ya8{bottom:445.755000px;}
.y66{bottom:450.435000px;}
.y20{bottom:459.975000px;}
.yc1{bottom:466.455000px;}
.y3b{bottom:479.235000px;}
.y62{bottom:481.395000px;}
.yef{bottom:487.695000px;}
.ya6{bottom:491.835000px;}
.yc0{bottom:494.175000px;}
.y1f{bottom:496.155000px;}
.y5c{bottom:504.615000px;}
.y3a{bottom:515.415000px;}
.ya5{bottom:519.555000px;}
.ybf{bottom:522.075000px;}
.y1e{bottom:532.335000px;}
.y61{bottom:533.055000px;}
.yee{bottom:543.315000px;}
.ya4{bottom:547.275000px;}
.ybe{bottom:549.795000px;}
.y39{bottom:551.775000px;}
.y1d{bottom:568.515000px;}
.yed{bottom:571.035000px;}
.ybd{bottom:573.015000px;}
.ya3{bottom:575.175000px;}
.y5b{bottom:578.415000px;}
.yba{bottom:585.240000px;}
.y38{bottom:587.955000px;}
.ya2{bottom:598.439959px;}
.yec{bottom:598.755000px;}
.y1c{bottom:604.905000px;}
.y5a{bottom:606.345000px;}
.ya1{bottom:608.865000px;}
.ybb{bottom:613.725000px;}
.yb3{bottom:623.625000px;}
.y37{bottom:624.165000px;}
.yeb{bottom:626.505000px;}
.y59{bottom:634.065000px;}
.y9d{bottom:637.139959px;}
.y1b{bottom:641.085000px;}
.y9c{bottom:647.565000px;}
.yea{bottom:654.405000px;}
.yb9{bottom:654.585000px;}
.y36{bottom:660.345000px;}
.y58{bottom:661.785000px;}
.y1a{bottom:677.265000px;}
.y9b{bottom:680.325000px;}
.ye9{bottom:682.125000px;}
.y35{bottom:688.065000px;}
.y57{bottom:689.505000px;}
.y9a{bottom:708.045000px;}
.ye8{bottom:709.845000px;}
.y19{bottom:713.445000px;}
.y56{bottom:717.405000px;}
.y34{bottom:724.425000px;}
.y99{bottom:735.945000px;}
.ye7{bottom:737.745000px;}
.y55{bottom:745.125000px;}
.y18{bottom:749.805000px;}
.y33{bottom:760.605000px;}
.y98{bottom:763.665000px;}
.ye6{bottom:765.465000px;}
.y52{bottom:768.314919px;}
.y54{bottom:777.345000px;}
.y17{bottom:785.985000px;}
.yd0{bottom:789.585000px;}
.y97{bottom:791.385000px;}
.ye5{bottom:793.185000px;}
.y32{bottom:796.785000px;}
.y50{bottom:801.615000px;}
.y4f{bottom:810.645000px;}
.y95{bottom:814.590000px;}
.ycf{bottom:817.305000px;}
.ye4{bottom:820.905000px;}
.y16{bottom:822.165000px;}
.y31{bottom:832.965000px;}
.y4c{bottom:834.914919px;}
.y96{bottom:837.105000px;}
.y4e{bottom:843.945000px;}
.yce{bottom:845.025000px;}
.ye3{bottom:848.805000px;}
.y15{bottom:858.345000px;}
.y30{bottom:869.325000px;}
.y4b{bottom:872.970000px;}
.ye2{bottom:876.570000px;}
.y94{bottom:883.230000px;}
.y14{bottom:894.750000px;}
.y4a{bottom:900.690000px;}
.ye1{bottom:904.290000px;}
.y2f{bottom:905.550000px;}
.y93{bottom:910.950000px;}
.y49{bottom:928.410000px;}
.y13{bottom:930.930000px;}
.ye0{bottom:932.010000px;}
.y92{bottom:938.670000px;}
.y2e{bottom:941.730000px;}
.y48{bottom:956.310000px;}
.ydf{bottom:959.910000px;}
.y8a{bottom:961.814919px;}
.y12{bottom:967.110000px;}
.y91{bottom:972.330000px;}
.y2d{bottom:977.910000px;}
.y47{bottom:984.030000px;}
.yde{bottom:987.630000px;}
.y11{bottom:1003.290000px;}
.y89{bottom:1003.470000px;}
.y46{bottom:1011.750000px;}
.y2c{bottom:1014.270000px;}
.ydd{bottom:1015.350000px;}
.y88{bottom:1031.190000px;}
.y10{bottom:1039.470000px;}
.ydc{bottom:1043.250000px;}
.y2b{bottom:1050.450000px;}
.y7e{bottom:1054.364919px;}
.yf{bottom:1067.370000px;}
.ydb{bottom:1070.970000px;}
.y87{bottom:1076.910000px;}
.y2a{bottom:1086.630000px;}
.ye{bottom:1095.090000px;}
.yd{bottom:1122.810000px;}
.y7{bottom:1146.240000px;}
.y5{bottom:1161.540000px;}
.y1{bottom:1178.820000px;}
.h5{height:6.480000px;}
.h7{height:27.540000px;}
.h10{height:29.699745px;}
.he{height:29.699826px;}
.h20{height:29.699931px;}
.h19{height:32.399921px;}
.h16{height:33.299558px;}
.h2d{height:33.299599px;}
.h32{height:35.100402px;}
.h1e{height:37.592005px;}
.h30{height:38.635810px;}
.h29{height:38.876158px;}
.h2{height:41.400000px;}
.h22{height:48.684114px;}
.h33{height:52.903963px;}
.h1c{height:53.109942px;}
.h1a{height:53.136378px;}
.h4{height:53.709961px;}
.h12{height:53.788767px;}
.h2f{height:54.584629px;}
.h17{height:54.611799px;}
.h27{height:54.924192px;}
.h25{height:54.951531px;}
.hc{height:59.066719px;}
.hd{height:59.436914px;}
.h24{height:60.298897px;}
.h2b{height:60.298978px;}
.h1f{height:64.982910px;}
.h11{height:65.698878px;}
.h6{height:66.757500px;}
.h31{height:66.787269px;}
.h2a{height:67.214423px;}
.h8{height:70.664062px;}
.h3{height:72.562500px;}
.ha{height:82.676953px;}
.h23{height:84.157134px;}
.h21{height:84.199024px;}
.hb{height:84.898125px;}
.h35{height:86.585445px;}
.h34{height:91.446607px;}
.h1d{height:91.807782px;}
.h1b{height:91.853481px;}
.hf{height:92.482320px;}
.h14{height:93.028028px;}
.h13{height:93.074333px;}
.h18{height:94.356979px;}
.h2e{height:94.403946px;}
.h28{height:94.960461px;}
.h26{height:95.007729px;}
.h9{height:96.508125px;}
.h15{height:140.642993px;}
.h2c{height:171.241758px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w12{width:38.699036px;}
.w6{width:63.756000px;}
.w3{width:68.616000px;}
.w8{width:86.401793px;}
.wb{width:105.299772px;}
.wd{width:111.596532px;}
.w9{width:135.000798px;}
.w10{width:171.003007px;}
.we{width:218.704285px;}
.wa{width:222.295330px;}
.w15{width:235.792758px;}
.w7{width:245.922891px;}
.w14{width:287.999885px;}
.w11{width:294.300811px;}
.w13{width:317.712926px;}
.wf{width:332.090621px;}
.wc{width:609.302818px;}
.w2{width:760.830000px;}
.w5{width:765.690000px;}
.w4{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x20{left:4.676449px;}
.x2d{left:6.383408px;}
.x2{left:8.640000px;}
.x2c{left:12.961350px;}
.x22{left:14.032714px;}
.x26{left:15.358710px;}
.x3a{left:16.656895px;}
.x7{left:19.800000px;}
.x27{left:22.630334px;}
.x24{left:29.227301px;}
.x1{left:31.860000px;}
.x28{left:36.143995px;}
.x18{left:41.239727px;}
.x43{left:53.677900px;}
.x1a{left:54.870182px;}
.x4{left:59.970000px;}
.x1f{left:64.128383px;}
.x36{left:72.261832px;}
.x5{left:84.959987px;}
.x30{left:96.874625px;}
.x33{left:100.143108px;}
.x2b{left:101.195357px;}
.x34{left:107.289432px;}
.x2f{left:109.060578px;}
.x9{left:115.595987px;}
.x3d{left:117.321302px;}
.x1c{left:123.348736px;}
.x15{left:127.475987px;}
.x3e{left:129.722753px;}
.x32{left:136.740112px;}
.x3c{left:146.088098px;}
.x39{left:148.589990px;}
.x1e{left:157.225604px;}
.xa{left:173.189987px;}
.x3b{left:187.229987px;}
.x23{left:190.289987px;}
.x3f{left:191.461270px;}
.x2a{left:205.664980px;}
.x1d{left:219.989987px;}
.xb{left:225.389987px;}
.xe{left:236.369987px;}
.xf{left:254.549987px;}
.x37{left:255.989987px;}
.xd{left:266.609987px;}
.x11{left:283.754987px;}
.x13{left:295.274987px;}
.x2e{left:317.234987px;}
.x44{left:320.834987px;}
.x12{left:323.174987px;}
.x10{left:326.954987px;}
.x25{left:344.236147px;}
.x31{left:346.214987px;}
.x21{left:349.814987px;}
.x14{left:366.914987px;}
.x16{left:373.934987px;}
.x17{left:387.434987px;}
.x40{left:415.514987px;}
.x38{left:421.814987px;}
.xc{left:444.494987px;}
.x8{left:446.474987px;}
.x35{left:459.614987px;}
.x19{left:494.190000px;}
.x1b{left:580.604987px;}
.x45{left:693.329987px;}
.x29{left:736.889987px;}
.x42{left:779.009987px;}
.x46{left:787.109987px;}
.x3{left:792.690000px;}
.x6{left:797.550000px;}
.x41{left:808.169987px;}
@media print{
.v7{vertical-align:-58.683821pt;}
.v8{vertical-align:-54.747711pt;}
.v1{vertical-align:-53.575373pt;}
.v6{vertical-align:-21.295518pt;}
.v3{vertical-align:-8.320000pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:8.320000pt;}
.v2{vertical-align:66.485667pt;}
.v5{vertical-align:67.763582pt;}
.ls1a{letter-spacing:-0.889479pt;}
.ls1b{letter-spacing:-0.763163pt;}
.ls4{letter-spacing:-0.336533pt;}
.ls5{letter-spacing:-0.320000pt;}
.lsa{letter-spacing:-0.303467pt;}
.ls13{letter-spacing:-0.160000pt;}
.ls3{letter-spacing:-0.024960pt;}
.ls2{letter-spacing:-0.016640pt;}
.ls0{letter-spacing:0.000000pt;}
.ls8{letter-spacing:0.024960pt;}
.ls9{letter-spacing:0.033280pt;}
.lse{letter-spacing:0.063805pt;}
.ls1e{letter-spacing:0.191416pt;}
.ls6{letter-spacing:0.303467pt;}
.ls1{letter-spacing:0.320000pt;}
.ls7{letter-spacing:0.448000pt;}
.ls18{letter-spacing:1.872640pt;}
.lsc{letter-spacing:20.687405pt;}
.ls17{letter-spacing:26.188141pt;}
.ls1d{letter-spacing:43.345430pt;}
.lsb{letter-spacing:45.107876pt;}
.ls11{letter-spacing:89.152787pt;}
.ls10{letter-spacing:111.401349pt;}
.lsd{letter-spacing:168.214016pt;}
.ls15{letter-spacing:315.896712pt;}
.ls19{letter-spacing:445.615944pt;}
.ls1c{letter-spacing:484.581977pt;}
.lsf{letter-spacing:487.926111pt;}
.ls16{letter-spacing:567.003545pt;}
.ls14{letter-spacing:568.529870pt;}
.ls12{letter-spacing:864.922363pt;}
.ws20{word-spacing:-315.982760pt;}
.wsd{word-spacing:-45.191637pt;}
.ws36{word-spacing:-29.162880pt;}
.ws0{word-spacing:-21.600000pt;}
.ws10{word-spacing:-20.771166pt;}
.ws4{word-spacing:-19.040000pt;}
.ws7{word-spacing:-19.023467pt;}
.ws1{word-spacing:-18.720000pt;}
.ws2{word-spacing:-18.703360pt;}
.ws3{word-spacing:-18.695040pt;}
.ws1f{word-spacing:-18.560000pt;}
.ws9{word-spacing:-18.416533pt;}
.ws6{word-spacing:-18.400000pt;}
.ws5{word-spacing:-18.383467pt;}
.ws1e{word-spacing:-12.000000pt;}
.ws14{word-spacing:-0.148102pt;}
.ws3e{word-spacing:-0.086048pt;}
.ws1b{word-spacing:-0.076259pt;}
.ws35{word-spacing:-0.047915pt;}
.ws8{word-spacing:0.000000pt;}
.ws26{word-spacing:0.803431pt;}
.ws19{word-spacing:0.962506pt;}
.wsf{word-spacing:20.521362pt;}
.ws18{word-spacing:26.038822pt;}
.wsc{word-spacing:26.300847pt;}
.ws46{word-spacing:28.166251pt;}
.ws17{word-spacing:28.923297pt;}
.wsb{word-spacing:32.834178pt;}
.wse{word-spacing:37.022211pt;}
.ws13{word-spacing:37.680688pt;}
.ws45{word-spacing:39.703813pt;}
.wsa{word-spacing:44.811953pt;}
.ws43{word-spacing:45.688888pt;}
.ws1d{word-spacing:46.212669pt;}
.ws23{word-spacing:46.465869pt;}
.ws1a{word-spacing:53.907848pt;}
.ws2d{word-spacing:54.036672pt;}
.ws2a{word-spacing:66.428984pt;}
.ws34{word-spacing:66.601080pt;}
.ws1c{word-spacing:69.039733pt;}
.ws11{word-spacing:77.974579pt;}
.ws3c{word-spacing:84.154852pt;}
.ws42{word-spacing:84.757188pt;}
.ws12{word-spacing:85.679097pt;}
.ws16{word-spacing:89.994285pt;}
.ws15{word-spacing:91.315136pt;}
.ws2e{word-spacing:100.308053pt;}
.ws39{word-spacing:109.293292pt;}
.ws31{word-spacing:109.691446pt;}
.ws3a{word-spacing:110.227368pt;}
.ws32{word-spacing:110.571560pt;}
.ws3f{word-spacing:110.836139pt;}
.ws40{word-spacing:111.690182pt;}
.ws2c{word-spacing:121.240509pt;}
.ws25{word-spacing:122.876410pt;}
.ws21{word-spacing:129.051687pt;}
.ws2b{word-spacing:129.836608pt;}
.ws22{word-spacing:129.932339pt;}
.ws3b{word-spacing:131.540150pt;}
.ws41{word-spacing:131.888535pt;}
.ws28{word-spacing:148.088447pt;}
.ws3d{word-spacing:160.854244pt;}
.ws27{word-spacing:161.501244pt;}
.ws37{word-spacing:164.437630pt;}
.ws29{word-spacing:165.134400pt;}
.ws24{word-spacing:200.171958pt;}
.ws47{word-spacing:202.059531pt;}
.ws44{word-spacing:238.844551pt;}
.ws33{word-spacing:299.561167pt;}
.ws2f{word-spacing:328.377568pt;}
.ws30{word-spacing:475.672827pt;}
.ws38{word-spacing:489.268396pt;}
._24{margin-left:-770.622876pt;}
._26{margin-left:-706.902738pt;}
._63{margin-left:-661.480104pt;}
._31{margin-left:-378.489377pt;}
._2b{margin-left:-367.263038pt;}
._75{margin-left:-327.748687pt;}
._2e{margin-left:-318.038161pt;}
._39{margin-left:-316.919099pt;}
._34{margin-left:-297.927670pt;}
._3d{margin-left:-285.457058pt;}
._62{margin-left:-256.444663pt;}
._85{margin-left:-253.683165pt;}
._8c{margin-left:-217.644284pt;}
._67{margin-left:-202.286617pt;}
._30{margin-left:-184.391198pt;}
._33{margin-left:-146.888950pt;}
._5d{margin-left:-107.921478pt;}
._37{margin-left:-106.421214pt;}
._5e{margin-left:-96.355403pt;}
._7a{margin-left:-72.737178pt;}
._7b{margin-left:-8.858583pt;}
._f{margin-left:-4.885547pt;}
._11{margin-left:-3.818880pt;}
._10{margin-left:-2.545920pt;}
._1{margin-left:-1.029973pt;}
._0{width:1.013333pt;}
._5{width:2.067200pt;}
._4{width:3.301333pt;}
._17{width:4.773973pt;}
._6{width:6.289920pt;}
._3{width:7.381120pt;}
._7{width:8.954667pt;}
._19{width:10.108800pt;}
._15{width:11.157120pt;}
._16{width:12.112213pt;}
._18{width:13.086720pt;}
._35{width:15.245013pt;}
._1a{width:16.548480pt;}
._8{width:17.616000pt;}
._14{width:19.748267pt;}
._1d{width:21.715200pt;}
._1e{width:22.780160pt;}
._1c{width:23.828160pt;}
._9{width:25.084800pt;}
._1f{width:26.044587pt;}
._4f{width:27.869026pt;}
._b{width:30.083413pt;}
._a{width:31.075200pt;}
._c{width:32.047360pt;}
._d{width:33.215147pt;}
._e{width:34.369920pt;}
._1b{width:35.849173pt;}
._28{width:37.608536pt;}
._29{width:38.864946pt;}
._12{width:39.967573pt;}
._27{width:42.382894pt;}
._2d{width:43.393960pt;}
._61{width:48.271650pt;}
._6e{width:49.570560pt;}
._6d{width:50.544000pt;}
._20{width:55.114514pt;}
._2{width:56.160000pt;}
._13{width:61.626240pt;}
._3a{width:68.464657pt;}
._21{width:72.034167pt;}
._32{width:77.271340pt;}
._4d{width:79.946670pt;}
._51{width:84.054808pt;}
._8b{width:86.572857pt;}
._57{width:87.684271pt;}
._54{width:90.427412pt;}
._22{width:92.806811pt;}
._2f{width:94.398263pt;}
._48{width:95.501827pt;}
._3c{width:98.069720pt;}
._3e{width:104.720622pt;}
._4b{width:109.633915pt;}
._50{width:110.887620pt;}
._60{width:113.548951pt;}
._72{width:115.169933pt;}
._36{width:122.820499pt;}
._8a{width:125.012217pt;}
._79{width:126.920662pt;}
._70{width:134.493173pt;}
._4a{width:137.348545pt;}
._45{width:144.760860pt;}
._41{width:147.504002pt;}
._76{width:148.432639pt;}
._3b{width:153.757440pt;}
._88{width:158.242100pt;}
._71{width:160.314495pt;}
._38{width:161.667380pt;}
._2a{width:163.752089pt;}
._58{width:179.609636pt;}
._49{width:181.713655pt;}
._5c{width:183.519619pt;}
._43{width:184.801098pt;}
._69{width:185.987719pt;}
._42{width:186.918611pt;}
._47{width:190.383632pt;}
._59{width:192.837025pt;}
._3f{width:194.137404pt;}
._6b{width:195.822477pt;}
._7f{width:198.430034pt;}
._81{width:199.372999pt;}
._5f{width:200.634318pt;}
._7d{width:203.904652pt;}
._4e{width:207.977809pt;}
._46{width:226.092594pt;}
._89{width:227.338569pt;}
._64{width:228.772453pt;}
._5b{width:239.756818pt;}
._73{width:244.389592pt;}
._6f{width:246.813208pt;}
._8d{width:260.814430pt;}
._23{width:266.491751pt;}
._86{width:267.763194pt;}
._83{width:269.499120pt;}
._4c{width:279.355793pt;}
._56{width:288.029837pt;}
._44{width:290.387976pt;}
._53{width:294.623001pt;}
._40{width:296.959881pt;}
._78{width:299.704858pt;}
._2c{width:308.490509pt;}
._5a{width:320.868164pt;}
._87{width:332.929199pt;}
._84{width:335.695064pt;}
._6a{width:336.791506pt;}
._68{width:339.476112pt;}
._66{width:352.728525pt;}
._80{width:359.662359pt;}
._7e{width:361.507066pt;}
._52{width:438.373231pt;}
._77{width:480.771037pt;}
._74{width:483.209731pt;}
._25{width:490.502421pt;}
._7c{width:492.118428pt;}
._82{width:493.611506pt;}
._55{width:508.491772pt;}
._6c{width:734.444948pt;}
._65{width:735.987795pt;}
.fsd{font-size:44.114846pt;}
.fs10{font-size:47.914789pt;}
.fs1{font-size:48.000000pt;}
.fsa{font-size:48.125286pt;}
.fs6{font-size:48.716150pt;}
.fs8{font-size:49.461565pt;}
.fse{font-size:49.769259pt;}
.fs12{font-size:53.120000pt;}
.fs2{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs4{font-size:74.880000pt;}
.fsc{font-size:76.258530pt;}
.fs11{font-size:82.863846pt;}
.fsb{font-size:83.191124pt;}
.fs5{font-size:83.760659pt;}
.fs7{font-size:84.296842pt;}
.fs3{font-size:85.120000pt;}
.fs9{font-size:85.501064pt;}
.fsf{font-size:86.047906pt;}
.y6{bottom:-5.760000pt;}
.y0{bottom:0.000000pt;}
.y7b{bottom:2.967124pt;}
.y81{bottom:2.967174pt;}
.y3{bottom:3.520000pt;}
.y71{bottom:3.542879pt;}
.y9f{bottom:3.807211pt;}
.y69{bottom:3.864959pt;}
.y64{bottom:3.972272pt;}
.y8b{bottom:3.972300pt;}
.y8f{bottom:3.972303pt;}
.y8d{bottom:3.972306pt;}
.ya{bottom:4.640000pt;}
.y9{bottom:6.560000pt;}
.y51{bottom:8.045793pt;}
.y53{bottom:8.045800pt;}
.y4d{bottom:8.045854pt;}
.y70{bottom:8.485821pt;}
.y72{bottom:8.485852pt;}
.y60{bottom:8.758334pt;}
.ya0{bottom:9.131114pt;}
.y6a{bottom:9.257271pt;}
.y6c{bottom:9.257290pt;}
.y6b{bottom:9.257292pt;}
.y65{bottom:9.514334pt;}
.y8c{bottom:9.514341pt;}
.y90{bottom:9.514356pt;}
.y8e{bottom:9.514368pt;}
.y4{bottom:14.240000pt;}
.y79{bottom:14.356669pt;}
.y7f{bottom:14.356735pt;}
.y85{bottom:14.356736pt;}
.y82{bottom:14.356738pt;}
.yc{bottom:14.560000pt;}
.y9e{bottom:18.478178pt;}
.y7a{bottom:19.908019pt;}
.y80{bottom:19.908062pt;}
.y86{bottom:19.908084pt;}
.y84{bottom:19.908091pt;}
.y5d{bottom:19.914114pt;}
.y2{bottom:21.920000pt;}
.y5e{bottom:25.379751pt;}
.y7c{bottom:33.594947pt;}
.y83{bottom:33.594996pt;}
.y5f{bottom:38.773594pt;}
.yb{bottom:46.720000pt;}
.y8{bottom:71.872000pt;}
.y45{bottom:109.312000pt;}
.yfb{bottom:112.512000pt;}
.yda{bottom:116.352000pt;}
.ycd{bottom:118.432000pt;}
.y29{bottom:119.072000pt;}
.ybc{bottom:122.912000pt;}
.y78{bottom:124.080000pt;}
.yb2{bottom:125.952000pt;}
.yb8{bottom:130.432000pt;}
.y44{bottom:134.106667pt;}
.yfa{bottom:137.306667pt;}
.yd9{bottom:141.146667pt;}
.ycc{bottom:143.066667pt;}
.y7d{bottom:144.026667pt;}
.yb1{bottom:150.746667pt;}
.y28{bottom:151.226667pt;}
.yb7{bottom:155.066667pt;}
.y43{bottom:158.746667pt;}
.yf9{bottom:161.946667pt;}
.yd8{bottom:165.786667pt;}
.ycb{bottom:167.706667pt;}
.yb0{bottom:175.386667pt;}
.yb6{bottom:179.866667pt;}
.y27{bottom:183.386667pt;}
.y77{bottom:184.986667pt;}
.yf8{bottom:186.586667pt;}
.yd7{bottom:190.426667pt;}
.yca{bottom:192.346667pt;}
.yaf{bottom:200.026667pt;}
.yb5{bottom:204.506667pt;}
.y42{bottom:208.026667pt;}
.y76{bottom:209.626667pt;}
.yf7{bottom:211.226667pt;}
.yd6{bottom:215.066667pt;}
.y26{bottom:215.546667pt;}
.yc9{bottom:217.146667pt;}
.yae{bottom:224.666667pt;}
.yb4{bottom:224.986667pt;}
.y41{bottom:232.826667pt;}
.y75{bottom:234.266667pt;}
.yf6{bottom:236.026667pt;}
.yd5{bottom:239.866667pt;}
.yc8{bottom:241.786667pt;}
.y25{bottom:247.866667pt;}
.yad{bottom:249.466667pt;}
.y74{bottom:258.906667pt;}
.yf5{bottom:260.666667pt;}
.yd4{bottom:264.506667pt;}
.y40{bottom:264.986667pt;}
.yc7{bottom:266.426667pt;}
.yac{bottom:274.106667pt;}
.y24{bottom:280.026667pt;}
.y73{bottom:283.706667pt;}
.yf4{bottom:285.306667pt;}
.yd3{bottom:289.146667pt;}
.yc6{bottom:291.226667pt;}
.yaa{bottom:294.813333pt;}
.y3f{bottom:297.146667pt;}
.y6f{bottom:304.413297pt;}
.yf3{bottom:310.146667pt;}
.y23{bottom:312.226667pt;}
.y6e{bottom:313.666667pt;}
.yd2{bottom:313.986667pt;}
.yab{bottom:314.786667pt;}
.yc5{bottom:315.906667pt;}
.y3e{bottom:329.346667pt;}
.y68{bottom:334.346630pt;}
.yd1{bottom:334.626667pt;}
.yf2{bottom:334.786667pt;}
.yc4{bottom:340.546667pt;}
.y6d{bottom:343.586667pt;}
.y22{bottom:344.386667pt;}
.ya9{bottom:355.586667pt;}
.yf1{bottom:359.426667pt;}
.y3d{bottom:361.666667pt;}
.yc3{bottom:365.186667pt;}
.y67{bottom:370.306667pt;}
.ya7{bottom:376.213333pt;}
.y21{bottom:376.546667pt;}
.yf0{bottom:384.066667pt;}
.yc2{bottom:389.986667pt;}
.y63{bottom:391.146630pt;}
.y3c{bottom:393.826667pt;}
.ya8{bottom:396.226667pt;}
.y66{bottom:400.386667pt;}
.y20{bottom:408.866667pt;}
.yc1{bottom:414.626667pt;}
.y3b{bottom:425.986667pt;}
.y62{bottom:427.906667pt;}
.yef{bottom:433.506667pt;}
.ya6{bottom:437.186667pt;}
.yc0{bottom:439.266667pt;}
.y1f{bottom:441.026667pt;}
.y5c{bottom:448.546667pt;}
.y3a{bottom:458.146667pt;}
.ya5{bottom:461.826667pt;}
.ybf{bottom:464.066667pt;}
.y1e{bottom:473.186667pt;}
.y61{bottom:473.826667pt;}
.yee{bottom:482.946667pt;}
.ya4{bottom:486.466667pt;}
.ybe{bottom:488.706667pt;}
.y39{bottom:490.466667pt;}
.y1d{bottom:505.346667pt;}
.yed{bottom:507.586667pt;}
.ybd{bottom:509.346667pt;}
.ya3{bottom:511.266667pt;}
.y5b{bottom:514.146667pt;}
.yba{bottom:520.213333pt;}
.y38{bottom:522.626667pt;}
.ya2{bottom:531.946630pt;}
.yec{bottom:532.226667pt;}
.y1c{bottom:537.693333pt;}
.y5a{bottom:538.973333pt;}
.ya1{bottom:541.213333pt;}
.ybb{bottom:545.533333pt;}
.yb3{bottom:554.333333pt;}
.y37{bottom:554.813333pt;}
.yeb{bottom:556.893333pt;}
.y59{bottom:563.613333pt;}
.y9d{bottom:566.346630pt;}
.y1b{bottom:569.853333pt;}
.y9c{bottom:575.613333pt;}
.yea{bottom:581.693333pt;}
.yb9{bottom:581.853333pt;}
.y36{bottom:586.973333pt;}
.y58{bottom:588.253333pt;}
.y1a{bottom:602.013333pt;}
.y9b{bottom:604.733333pt;}
.ye9{bottom:606.333333pt;}
.y35{bottom:611.613333pt;}
.y57{bottom:612.893333pt;}
.y9a{bottom:629.373333pt;}
.ye8{bottom:630.973333pt;}
.y19{bottom:634.173333pt;}
.y56{bottom:637.693333pt;}
.y34{bottom:643.933333pt;}
.y99{bottom:654.173333pt;}
.ye7{bottom:655.773333pt;}
.y55{bottom:662.333333pt;}
.y18{bottom:666.493333pt;}
.y33{bottom:676.093333pt;}
.y98{bottom:678.813333pt;}
.ye6{bottom:680.413333pt;}
.y52{bottom:682.946594pt;}
.y54{bottom:690.973333pt;}
.y17{bottom:698.653333pt;}
.yd0{bottom:701.853333pt;}
.y97{bottom:703.453333pt;}
.ye5{bottom:705.053333pt;}
.y32{bottom:708.253333pt;}
.y50{bottom:712.546667pt;}
.y4f{bottom:720.573333pt;}
.y95{bottom:724.080000pt;}
.ycf{bottom:726.493333pt;}
.ye4{bottom:729.693333pt;}
.y16{bottom:730.813333pt;}
.y31{bottom:740.413333pt;}
.y4c{bottom:742.146594pt;}
.y96{bottom:744.093333pt;}
.y4e{bottom:750.173333pt;}
.yce{bottom:751.133333pt;}
.ye3{bottom:754.493333pt;}
.y15{bottom:762.973333pt;}
.y30{bottom:772.733333pt;}
.y4b{bottom:775.973333pt;}
.ye2{bottom:779.173333pt;}
.y94{bottom:785.093333pt;}
.y14{bottom:795.333333pt;}
.y4a{bottom:800.613333pt;}
.ye1{bottom:803.813333pt;}
.y2f{bottom:804.933333pt;}
.y93{bottom:809.733333pt;}
.y49{bottom:825.253333pt;}
.y13{bottom:827.493333pt;}
.ye0{bottom:828.453333pt;}
.y92{bottom:834.373333pt;}
.y2e{bottom:837.093333pt;}
.y48{bottom:850.053333pt;}
.ydf{bottom:853.253333pt;}
.y8a{bottom:854.946594pt;}
.y12{bottom:859.653333pt;}
.y91{bottom:864.293333pt;}
.y2d{bottom:869.253333pt;}
.y47{bottom:874.693333pt;}
.yde{bottom:877.893333pt;}
.y11{bottom:891.813333pt;}
.y89{bottom:891.973333pt;}
.y46{bottom:899.333333pt;}
.y2c{bottom:901.573333pt;}
.ydd{bottom:902.533333pt;}
.y88{bottom:916.613333pt;}
.y10{bottom:923.973333pt;}
.ydc{bottom:927.333333pt;}
.y2b{bottom:933.733333pt;}
.y7e{bottom:937.213261pt;}
.yf{bottom:948.773333pt;}
.ydb{bottom:951.973333pt;}
.y87{bottom:957.253333pt;}
.y2a{bottom:965.893333pt;}
.ye{bottom:973.413333pt;}
.yd{bottom:998.053333pt;}
.y7{bottom:1018.880000pt;}
.y5{bottom:1032.480000pt;}
.y1{bottom:1047.840000pt;}
.h5{height:5.760000pt;}
.h7{height:24.480000pt;}
.h10{height:26.399773pt;}
.he{height:26.399846pt;}
.h20{height:26.399939pt;}
.h19{height:28.799930pt;}
.h16{height:29.599607pt;}
.h2d{height:29.599643pt;}
.h32{height:31.200358pt;}
.h1e{height:33.415116pt;}
.h30{height:34.342942pt;}
.h29{height:34.556585pt;}
.h2{height:36.800000pt;}
.h22{height:43.274768pt;}
.h33{height:47.025745pt;}
.h1c{height:47.208838pt;}
.h1a{height:47.232336pt;}
.h4{height:47.742188pt;}
.h12{height:47.812237pt;}
.h2f{height:48.519670pt;}
.h17{height:48.543821pt;}
.h27{height:48.821504pt;}
.h25{height:48.845805pt;}
.hc{height:52.503750pt;}
.hd{height:52.832812pt;}
.h24{height:53.599019pt;}
.h2b{height:53.599092pt;}
.h1f{height:57.762587pt;}
.h11{height:58.399002pt;}
.h6{height:59.340000pt;}
.h31{height:59.366461pt;}
.h2a{height:59.746154pt;}
.h8{height:62.812500pt;}
.h3{height:64.500000pt;}
.ha{height:73.490625pt;}
.h23{height:74.806341pt;}
.h21{height:74.843577pt;}
.hb{height:75.465000pt;}
.h35{height:76.964840pt;}
.h34{height:81.285873pt;}
.h1d{height:81.606918pt;}
.h1b{height:81.647538pt;}
.hf{height:82.206507pt;}
.h14{height:82.691580pt;}
.h13{height:82.732741pt;}
.h18{height:83.872870pt;}
.h2e{height:83.914618pt;}
.h28{height:84.409299pt;}
.h26{height:84.451314pt;}
.h9{height:85.785000pt;}
.h15{height:125.015994pt;}
.h2c{height:152.214896pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w12{width:34.399143pt;}
.w6{width:56.672000pt;}
.w3{width:60.992000pt;}
.w8{width:76.801594pt;}
.wb{width:93.599797pt;}
.wd{width:99.196917pt;}
.w9{width:120.000710pt;}
.w10{width:152.002673pt;}
.we{width:194.403809pt;}
.wa{width:197.595848pt;}
.w15{width:209.593563pt;}
.w7{width:218.598125pt;}
.w14{width:255.999898pt;}
.w11{width:261.600721pt;}
.w13{width:282.411490pt;}
.wf{width:295.191663pt;}
.wc{width:541.602505pt;}
.w2{width:676.293333pt;}
.w5{width:680.613333pt;}
.w4{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x20{left:4.156844pt;}
.x2d{left:5.674140pt;}
.x2{left:7.680000pt;}
.x2c{left:11.521200pt;}
.x22{left:12.473524pt;}
.x26{left:13.652187pt;}
.x3a{left:14.806129pt;}
.x7{left:17.600000pt;}
.x27{left:20.115852pt;}
.x24{left:25.979823pt;}
.x1{left:28.320000pt;}
.x28{left:32.127996pt;}
.x18{left:36.657535pt;}
.x43{left:47.713689pt;}
.x1a{left:48.773495pt;}
.x4{left:53.306667pt;}
.x1f{left:57.003007pt;}
.x36{left:64.232739pt;}
.x5{left:75.519988pt;}
.x30{left:86.110778pt;}
.x33{left:89.016096pt;}
.x2b{left:89.951428pt;}
.x34{left:95.368384pt;}
.x2f{left:96.942736pt;}
.x9{left:102.751988pt;}
.x3d{left:104.285602pt;}
.x1c{left:109.643321pt;}
.x15{left:113.311988pt;}
.x3e{left:115.309114pt;}
.x32{left:121.546766pt;}
.x3c{left:129.856087pt;}
.x39{left:132.079991pt;}
.x1e{left:139.756092pt;}
.xa{left:153.946655pt;}
.x3b{left:166.426655pt;}
.x23{left:169.146655pt;}
.x3f{left:170.187796pt;}
.x2a{left:182.813315pt;}
.x1d{left:195.546655pt;}
.xb{left:200.346655pt;}
.xe{left:210.106655pt;}
.xf{left:226.266655pt;}
.x37{left:227.546655pt;}
.xd{left:236.986655pt;}
.x11{left:252.226655pt;}
.x13{left:262.466655pt;}
.x2e{left:281.986655pt;}
.x44{left:285.186655pt;}
.x12{left:287.266655pt;}
.x10{left:290.626655pt;}
.x25{left:305.987686pt;}
.x31{left:307.746655pt;}
.x21{left:310.946655pt;}
.x14{left:326.146655pt;}
.x16{left:332.386655pt;}
.x17{left:344.386655pt;}
.x40{left:369.346655pt;}
.x38{left:374.946655pt;}
.xc{left:395.106655pt;}
.x8{left:396.866655pt;}
.x35{left:408.546655pt;}
.x19{left:439.280000pt;}
.x1b{left:516.093322pt;}
.x45{left:616.293322pt;}
.x29{left:655.013322pt;}
.x42{left:692.453322pt;}
.x46{left:699.653322pt;}
.x3{left:704.613333pt;}
.x6{left:708.933333pt;}
.x41{left:718.373322pt;}
}




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