
    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_924ead40fb54dc8ac4d6941f.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.133000;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_4c21ec023fb649e8029f0d0d.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.076000;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_23545c68e54de79401abeb2b.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.090332;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_fdddb1394756ae45789ab85c.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.172852;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_dfa5af9d04977a3dc8869c5d.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.758789;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_38f7793461cf4fe8f23f645b.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.076000;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_667e5728c42c0cbc79e81b48.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.005371;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_8a8bc94f34cedc2fb46f6761.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.739746;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_48f79e8840b9cbe76ba9157a.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.075000;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_8f60b93ba666d2df4a6dcaf5.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.812012;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_c26e39ccba2011d7306e133f.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.762207;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_6a2264136ae35b90f0ffe08a.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.133000;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_38eb2da76791d0ea281acb82.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.075000;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_78faebb23d0d35c4c0aee9a8.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.005371;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;}
.m2{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.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);}
.vb{vertical-align:-28.800000px;}
.v0{vertical-align:0.000000px;}
.v8{vertical-align:1.860000px;}
.v9{vertical-align:3.600000px;}
.v7{vertical-align:5.640000px;}
.v2{vertical-align:7.632000px;}
.va{vertical-align:28.800000px;}
.v1{vertical-align:49.536000px;}
.v5{vertical-align:54.600000px;}
.vc{vertical-align:57.720000px;}
.v4{vertical-align:60.780000px;}
.v3{vertical-align:69.000000px;}
.v6{vertical-align:115.380000px;}
.ls30{letter-spacing:-2.214000px;}
.ls2f{letter-spacing:-2.124000px;}
.ls25{letter-spacing:-0.792000px;}
.ls2d{letter-spacing:-0.774000px;}
.ls28{letter-spacing:-0.472200px;}
.ls32{letter-spacing:-0.288000px;}
.ls18{letter-spacing:-0.281400px;}
.ls11{letter-spacing:-0.252000px;}
.ls16{letter-spacing:-0.249000px;}
.ls15{letter-spacing:-0.241800px;}
.ls27{letter-spacing:-0.229200px;}
.ls4{letter-spacing:-0.216000px;}
.ls2{letter-spacing:-0.174600px;}
.ls24{letter-spacing:-0.158400px;}
.ls20{letter-spacing:-0.144000px;}
.lsa{letter-spacing:-0.108000px;}
.ls26{letter-spacing:-0.099600px;}
.ls1f{letter-spacing:-0.072000px;}
.ls12{letter-spacing:-0.035400px;}
.ls17{letter-spacing:-0.023760px;}
.ls2e{letter-spacing:-0.000435px;}
.ls1{letter-spacing:0.000000px;}
.lsd{letter-spacing:0.000003px;}
.ls1d{letter-spacing:0.011520px;}
.ls7{letter-spacing:0.033720px;}
.ls2b{letter-spacing:0.036000px;}
.ls3{letter-spacing:0.062400px;}
.ls10{letter-spacing:0.072000px;}
.ls23{letter-spacing:0.086400px;}
.lse{letter-spacing:0.141000px;}
.lsc{letter-spacing:0.144000px;}
.ls31{letter-spacing:0.201000px;}
.ls0{letter-spacing:0.216000px;}
.ls1a{letter-spacing:0.222600px;}
.ls22{letter-spacing:0.232416px;}
.ls21{letter-spacing:0.247800px;}
.ls9{letter-spacing:0.252000px;}
.ls1e{letter-spacing:0.254400px;}
.lsb{letter-spacing:0.288000px;}
.ls29{letter-spacing:0.324000px;}
.ls19{letter-spacing:0.357000px;}
.ls8{letter-spacing:0.360000px;}
.ls2c{letter-spacing:0.720000px;}
.ls2a{letter-spacing:10.042560px;}
.ls1b{letter-spacing:18.576000px;}
.ls1c{letter-spacing:19.296000px;}
.lsf{letter-spacing:28.620000px;}
.ls6{letter-spacing:85.830048px;}
.ls5{letter-spacing:85.896000px;}
.ls13{letter-spacing:91.501920px;}
.ls14{letter-spacing:101.844000px;}
.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;}
}
.ws68{word-spacing:-108.144000px;}
.ws5{word-spacing:-61.202472px;}
.ws5e{word-spacing:-61.168752px;}
.ws16{word-spacing:-30.816000px;}
.wse{word-spacing:-30.604752px;}
.wsa{word-spacing:-30.564000px;}
.ws71{word-spacing:-28.368000px;}
.ws63{word-spacing:-28.333728px;}
.ws70{word-spacing:-28.318440px;}
.wsf{word-spacing:-28.296000px;}
.ws6a{word-spacing:-28.117005px;}
.ws6c{word-spacing:-28.116000px;}
.ws67{word-spacing:-28.080000px;}
.ws6e{word-spacing:-28.008000px;}
.ws72{word-spacing:-27.792000px;}
.ws69{word-spacing:-27.343440px;}
.ws6d{word-spacing:-27.288000px;}
.ws35{word-spacing:-27.100080px;}
.ws36{word-spacing:-27.076320px;}
.ws6b{word-spacing:-25.956000px;}
.ws6f{word-spacing:-25.903440px;}
.ws37{word-spacing:-24.807720px;}
.ws2d{word-spacing:-23.880672px;}
.ws2c{word-spacing:-23.839920px;}
.ws47{word-spacing:-23.681520px;}
.ws1e{word-spacing:-22.108608px;}
.ws1b{word-spacing:-22.070880px;}
.ws31{word-spacing:-21.939840px;}
.ws32{word-spacing:-21.902400px;}
.ws34{word-spacing:-21.653400px;}
.ws3f{word-spacing:-20.416752px;}
.ws4c{word-spacing:-20.376000px;}
.ws4e{word-spacing:-20.187552px;}
.ws1{word-spacing:-18.964128px;}
.ws17{word-spacing:-18.901728px;}
.ws19{word-spacing:-18.864003px;}
.ws18{word-spacing:-18.864000px;}
.ws38{word-spacing:-17.354880px;}
.ws43{word-spacing:-16.638048px;}
.ws44{word-spacing:-16.600320px;}
.ws59{word-spacing:-16.596000px;}
.ws58{word-spacing:-16.560000px;}
.ws30{word-spacing:-16.473600px;}
.ws10{word-spacing:-3.204000px;}
.ws61{word-spacing:-3.120000px;}
.ws13{word-spacing:-2.952000px;}
.ws22{word-spacing:-2.520000px;}
.ws62{word-spacing:-2.376000px;}
.ws65{word-spacing:-2.340000px;}
.wsd{word-spacing:-2.272752px;}
.ws64{word-spacing:-2.256000px;}
.ws11{word-spacing:-1.980000px;}
.ws1f{word-spacing:-1.812480px;}
.ws5f{word-spacing:-1.800000px;}
.ws12{word-spacing:-1.548000px;}
.wsb{word-spacing:-1.404000px;}
.ws56{word-spacing:-1.376640px;}
.ws66{word-spacing:-1.296000px;}
.ws2e{word-spacing:-1.275120px;}
.ws60{word-spacing:-1.008000px;}
.ws7{word-spacing:-0.864000px;}
.ws23{word-spacing:-0.828000px;}
.ws57{word-spacing:-0.746352px;}
.ws45{word-spacing:-0.662400px;}
.ws6{word-spacing:-0.494928px;}
.ws14{word-spacing:-0.312000px;}
.ws2{word-spacing:-0.240000px;}
.ws4b{word-spacing:-0.216000px;}
.ws20{word-spacing:-0.152640px;}
.ws49{word-spacing:-0.072000px;}
.ws4{word-spacing:0.000000px;}
.ws2f{word-spacing:0.015120px;}
.ws8{word-spacing:0.037872px;}
.ws53{word-spacing:0.144000px;}
.ws0{word-spacing:0.309456px;}
.ws3{word-spacing:0.432000px;}
.ws46{word-spacing:0.593280px;}
.ws48{word-spacing:0.720000px;}
.ws21{word-spacing:0.756000px;}
.wsc{word-spacing:0.787536px;}
.ws15{word-spacing:1.020000px;}
.ws9{word-spacing:1.044000px;}
.ws1a{word-spacing:1.236000px;}
.ws50{word-spacing:128.760000px;}
.ws4d{word-spacing:136.844304px;}
.ws51{word-spacing:137.268000px;}
.ws4f{word-spacing:148.724304px;}
.ws3c{word-spacing:152.832288px;}
.ws52{word-spacing:157.284000px;}
.ws40{word-spacing:158.532000px;}
.ws3b{word-spacing:160.127760px;}
.ws55{word-spacing:210.840000px;}
.ws4a{word-spacing:213.312000px;}
.ws54{word-spacing:257.892000px;}
.ws3d{word-spacing:264.100992px;}
.ws3e{word-spacing:295.860000px;}
.ws41{word-spacing:311.532000px;}
.ws42{word-spacing:341.772000px;}
.ws5d{word-spacing:370.020000px;}
.ws3a{word-spacing:398.084400px;}
.ws5b{word-spacing:412.500000px;}
.ws5a{word-spacing:485.436000px;}
.ws25{word-spacing:528.451008px;}
.ws1d{word-spacing:530.760000px;}
.ws5c{word-spacing:536.484000px;}
.ws26{word-spacing:539.148000px;}
.ws27{word-spacing:598.308000px;}
.ws24{word-spacing:611.868000px;}
.ws39{word-spacing:676.965264px;}
.ws33{word-spacing:739.790880px;}
.ws2b{word-spacing:877.104000px;}
.ws2a{word-spacing:896.760000px;}
.ws29{word-spacing:908.826912px;}
.ws28{word-spacing:925.440000px;}
.ws1c{word-spacing:4562.316384px;}
._8{margin-left:-5.887872px;}
._39{margin-left:-3.917232px;}
._c{margin-left:-2.540160px;}
._0{margin-left:-1.537920px;}
._1{width:1.045392px;}
._9{width:2.206704px;}
._a{width:3.886512px;}
._36{width:9.649728px;}
._37{width:10.694832px;}
._3{width:13.386432px;}
._33{width:14.519904px;}
._b{width:15.539568px;}
._23{width:17.610480px;}
._25{width:21.306720px;}
._34{width:24.048000px;}
._38{width:25.117296px;}
._4{width:29.520528px;}
._35{width:32.292000px;}
._7{width:49.906608px;}
._6{width:62.669040px;}
._1f{width:109.164000px;}
._11{width:112.836000px;}
._28{width:126.831696px;}
._1e{width:158.868528px;}
._29{width:162.224160px;}
._18{width:164.460000px;}
._20{width:168.060000px;}
._17{width:172.596000px;}
._32{width:209.856000px;}
._19{width:225.660000px;}
._d{width:245.556432px;}
._27{width:246.804000px;}
._2a{width:271.824000px;}
._31{width:303.216000px;}
._1d{width:304.512000px;}
._2e{width:314.904000px;}
._2b{width:319.440000px;}
._2f{width:327.132000px;}
._1b{width:330.876000px;}
._e{width:336.767184px;}
._30{width:338.436000px;}
._26{width:341.436000px;}
._22{width:350.652000px;}
._1c{width:358.318608px;}
._21{width:361.884816px;}
._1a{width:366.361920px;}
._12{width:367.500000px;}
._10{width:424.200000px;}
._5{width:437.520000px;}
._15{width:443.940000px;}
._16{width:487.920000px;}
._14{width:491.292000px;}
._f{width:564.144000px;}
._2c{width:614.892000px;}
._13{width:624.672000px;}
._24{width:818.213568px;}
._2{width:856.493568px;}
._2d{width:976.848000px;}
.fcf{color:rgb(192,0,0);}
.fce{color:rgb(255,0,0);}
.fcd{color:rgb(74,161,76);}
.fc1{color:rgb(255,255,255);}
.fc3{color:rgb(127,127,127);}
.fc6{color:rgb(209,209,209);}
.fc5{color:rgb(33,95,154);}
.fc2{color:rgb(0,0,0);}
.fc4{color:rgb(116,116,116);}
.fc7{color:rgb(71,117,231);}
.fc8{color:rgb(78,166,220);}
.fc9{color:rgb(170,107,3);}
.fcb{color:rgb(51,51,51);}
.fca{color:rgb(20,43,119);}
.fc0{color:rgb(21,43,119);}
.fcc{color:rgb(0,0,255);}
.fsf{font-size:59.760000px;}
.fs10{font-size:59.904000px;}
.fsa{font-size:63.360000px;}
.fsd{font-size:63.504000px;}
.fsc{font-size:66.240000px;}
.fs5{font-size:66.384000px;}
.fs4{font-size:72.000000px;}
.fs1{font-size:72.144000px;}
.fs7{font-size:84.240000px;}
.fs8{font-size:84.384000px;}
.fsb{font-size:95.760000px;}
.fs2{font-size:108.000000px;}
.fs6{font-size:108.144000px;}
.fse{font-size:144.000000px;}
.fs9{font-size:167.760000px;}
.fs0{font-size:192.240000px;}
.fs11{font-size:216.000000px;}
.fs3{font-size:216.144000px;}
.y0{bottom:0.000000px;}
.y3{bottom:15.840000px;}
.y65{bottom:49.788000px;}
.y7{bottom:55.944000px;}
.y64{bottom:68.688000px;}
.y3b{bottom:71.172000px;}
.y81{bottom:73.296000px;}
.y1b{bottom:75.060000px;}
.y63{bottom:87.588000px;}
.y80{bottom:92.232000px;}
.y3a{bottom:96.372000px;}
.y8f{bottom:104.292000px;}
.y62{bottom:106.488000px;}
.y7f{bottom:111.132000px;}
.ya1{bottom:115.200000px;}
.y1a{bottom:118.260000px;}
.y5b{bottom:119.844000px;}
.y39{bottom:121.572000px;}
.y2f{bottom:123.840000px;}
.y61{bottom:125.424000px;}
.y7e{bottom:130.032000px;}
.y8c{bottom:132.084000px;}
.y5a{bottom:139.644000px;}
.y25{bottom:141.804000px;}
.y38{bottom:146.772000px;}
.ya0{bottom:147.600000px;}
.y2e{bottom:149.040000px;}
.y60{bottom:157.890000px;}
.y59{bottom:159.450000px;}
.y19{bottom:163.620000px;}
.y82{bottom:169.770000px;}
.y8b{bottom:171.690000px;}
.y37{bottom:172.005000px;}
.y2d{bottom:174.240000px;}
.y9f{bottom:180.030000px;}
.y5f{bottom:192.525000px;}
.y12{bottom:193.935000px;}
.y36{bottom:197.205000px;}
.y5{bottom:198.105000px;}
.y2c{bottom:199.440000px;}
.y7d{bottom:203.760000px;}
.y8a{bottom:204.045000px;}
.y9e{bottom:212.430000px;}
.y35{bottom:222.405000px;}
.y40{bottom:224.070000px;}
.y2b{bottom:224.640000px;}
.y18{bottom:226.290000px;}
.y11{bottom:226.335000px;}
.y5e{bottom:227.160000px;}
.y3f{bottom:227.625000px;}
.y4{bottom:230.505000px;}
.y98{bottom:231.150000px;}
.y7c{bottom:236.160000px;}
.y89{bottom:243.645000px;}
.y26{bottom:253.005000px;}
.y10{bottom:258.765000px;}
.y5d{bottom:259.560000px;}
.y3e{bottom:260.070000px;}
.y97{bottom:263.595000px;}
.y7b{bottom:268.560000px;}
.y5c{bottom:273.990000px;}
.y9d{bottom:277.230000px;}
.y17{bottom:282.450000px;}
.y58{bottom:286.125000px;}
.y88{bottom:290.310000px;}
.y96{bottom:295.995000px;}
.y7a{bottom:300.990000px;}
.y9c{bottom:309.630000px;}
.y34{bottom:311.505000px;}
.y16{bottom:314.850000px;}
.y57{bottom:314.925000px;}
.y2{bottom:319.575000px;}
.y79{bottom:319.890000px;}
.yf{bottom:323.565000px;}
.y33{bottom:336.750000px;}
.y2a{bottom:340.380000px;}
.y78{bottom:341.490000px;}
.y9b{bottom:342.075000px;}
.y56{bottom:343.725000px;}
.y43{bottom:344.805000px;}
.y15{bottom:347.250000px;}
.y95{bottom:360.795000px;}
.y32{bottom:361.950000px;}
.y29{bottom:365.580000px;}
.y24{bottom:366.270000px;}
.y42{bottom:370.005000px;}
.y55{bottom:372.570000px;}
.y9a{bottom:374.475000px;}
.y1{bottom:382.935000px;}
.y31{bottom:387.150000px;}
.ye{bottom:388.365000px;}
.y28{bottom:390.780000px;}
.y6f{bottom:402.300000px;}
.y6c{bottom:403.170000px;}
.y14{bottom:412.095000px;}
.y30{bottom:412.350000px;}
.y27{bottom:415.980000px;}
.yd{bottom:420.810000px;}
.y94{bottom:425.625000px;}
.y6e{bottom:427.500000px;}
.y68{bottom:428.610000px;}
.y6b{bottom:431.970000px;}
.y13{bottom:444.495000px;}
.y41{bottom:449.565000px;}
.y6d{bottom:452.700000px;}
.yc{bottom:453.210000px;}
.y93{bottom:458.025000px;}
.y6a{bottom:460.770000px;}
.y4f{bottom:481.890000px;}
.yb{bottom:485.610000px;}
.y4e{bottom:488.730000px;}
.y92{bottom:490.425000px;}
.y4d{bottom:492.660000px;}
.y99{bottom:492.915000px;}
.y87{bottom:496.410000px;}
.y69{bottom:508.650000px;}
.y77{bottom:515.055000px;}
.y4a{bottom:516.705000px;}
.ya{bottom:518.010000px;}
.y86{bottom:521.610000px;}
.y91{bottom:522.825000px;}
.y48{bottom:523.185000px;}
.y52{bottom:523.950000px;}
.y1f{bottom:535.170000px;}
.y67{bottom:540.510000px;}
.y49{bottom:541.950000px;}
.y76{bottom:542.055000px;}
.y21{bottom:544.170000px;}
.y85{bottom:546.810000px;}
.y47{bottom:548.565000px;}
.y51{bottom:549.360000px;}
.y1e{bottom:560.370000px;}
.y23{bottom:564.690000px;}
.y46{bottom:567.465000px;}
.y50{bottom:568.260000px;}
.y75{bottom:569.085000px;}
.y84{bottom:576.720000px;}
.y9{bottom:582.840000px;}
.y1d{bottom:585.570000px;}
.y72{bottom:585.975000px;}
.y90{bottom:587.670000px;}
.y22{bottom:589.890000px;}
.y74{bottom:596.085000px;}
.y83{bottom:596.520000px;}
.y20{bottom:603.255000px;}
.y71{bottom:611.175000px;}
.y1c{bottom:612.255000px;}
.y8{bottom:615.240000px;}
.y3d{bottom:618.450000px;}
.y73{bottom:623.085000px;}
.y8e{bottom:647.280000px;}
.y3c{bottom:650.850000px;}
.y70{bottom:654.300000px;}
.y66{bottom:658.800000px;}
.y4c{bottom:659.520000px;}
.y54{bottom:660.750000px;}
.y8d{bottom:676.080000px;}
.y4b{bottom:688.710000px;}
.y53{bottom:690.300000px;}
.y45{bottom:731.235000px;}
.y6{bottom:746.895000px;}
.y44{bottom:767.415000px;}
.h24{height:44.820000px;}
.h25{height:44.928000px;}
.h15{height:48.479062px;}
.h27{height:49.680000px;}
.h28{height:49.788000px;}
.h19{height:55.089844px;}
.h21{height:55.503360px;}
.h20{height:55.629504px;}
.h1b{height:58.026240px;}
.h23{height:60.765937px;}
.ha{height:63.072000px;}
.h2{height:63.198144px;}
.h1e{height:63.792000px;}
.h17{height:64.455117px;}
.h16{height:64.565297px;}
.h6{height:66.027445px;}
.h1f{height:67.032000px;}
.h26{height:67.166064px;}
.h18{height:68.165297px;}
.hb{height:73.794240px;}
.hf{height:73.920384px;}
.he{height:78.427440px;}
.h13{height:78.561504px;}
.h2b{height:82.634766px;}
.h2c{height:82.744945px;}
.h29{height:83.885760px;}
.h1a{height:89.152560px;}
.h7{height:94.608000px;}
.h8{height:94.734144px;}
.h1c{height:95.966064px;}
.h3{height:100.548000px;}
.h9{height:100.682064px;}
.hd{height:108.180000px;}
.h12{height:108.302064px;}
.h5{height:111.938344px;}
.hc{height:123.654240px;}
.h1d{height:124.886064px;}
.h22{height:126.144000px;}
.h14{height:156.184560px;}
.h1{height:178.975440px;}
.h2a{height:201.096000px;}
.h4{height:201.230064px;}
.h11{height:215.928000px;}
.h10{height:230.462064px;}
.h0{height:810.000000px;}
.w1{width:1439.999979px;}
.w0{width:1440.000000px;}
.x0{left:0.000000px;}
.x6{left:10.799979px;}
.x4c{left:12.887979px;}
.x5d{left:14.399979px;}
.x64{left:25.667979px;}
.x43{left:29.159979px;}
.xc{left:30.635979px;}
.x59{left:33.119979px;}
.x66{left:38.663979px;}
.x19{left:41.291979px;}
.x3e{left:44.639979px;}
.x68{left:51.011979px;}
.x8{left:53.063979px;}
.x3f{left:56.267979px;}
.x44{left:57.599979px;}
.x65{left:59.507979px;}
.x18{left:61.811979px;}
.x2{left:68.903979px;}
.xd{left:73.331979px;}
.x5a{left:81.719979px;}
.x26{left:84.707979px;}
.x9{left:86.903979px;}
.x41{left:93.959979px;}
.xa{left:107.063979px;}
.x29{left:116.279979px;}
.x3d{left:123.875979px;}
.x3c{left:128.195979px;}
.xb{left:140.903979px;}
.x45{left:200.729979px;}
.x2a{left:227.729979px;}
.x23{left:228.854979px;}
.x13{left:232.049979px;}
.x2b{left:256.529979px;}
.x14{left:261.389979px;}
.x21{left:263.954979px;}
.x12{left:269.669979px;}
.x2c{left:273.269979px;}
.x15{left:277.049979px;}
.x1{left:293.579979px;}
.x2e{left:298.514979px;}
.x1f{left:303.014979px;}
.x1d{left:304.094979px;}
.x20{left:307.694979px;}
.x4f{left:311.684979px;}
.x2d{left:316.334979px;}
.x1e{left:318.854979px;}
.x56{left:325.514979px;}
.x3{left:333.644979px;}
.x34{left:340.844979px;}
.x57{left:353.414979px;}
.x58{left:355.394979px;}
.x22{left:357.044979px;}
.x24{left:417.704979px;}
.x32{left:455.369979px;}
.x31{left:479.309979px;}
.x55{left:483.299979px;}
.x1a{left:506.669979px;}
.x51{left:509.069979px;}
.x1b{left:511.889979px;}
.x4e{left:533.009979px;}
.x4{left:534.209979px;}
.x7{left:537.734979px;}
.x33{left:569.054979px;}
.x67{left:571.469979px;}
.x5{left:577.589979px;}
.x11{left:598.214979px;}
.xf{left:607.574979px;}
.x10{left:615.674979px;}
.x27{left:645.869979px;}
.xe{left:648.974979px;}
.x1c{left:664.994979px;}
.x49{left:678.449979px;}
.x4a{left:683.309979px;}
.x48{left:688.214979px;}
.x40{left:691.199979px;}
.x39{left:707.789979px;}
.x38{left:736.634979px;}
.x3a{left:755.894979px;}
.x4b{left:793.409979px;}
.x5c{left:820.469979px;}
.x36{left:831.089979px;}
.x52{left:836.489979px;}
.x5b{left:887.144979px;}
.x47{left:907.124979px;}
.x37{left:910.619979px;}
.x54{left:977.369979px;}
.x53{left:982.949979px;}
.x25{left:989.819979px;}
.x17{left:1002.344979px;}
.x46{left:1025.609979px;}
.x16{left:1028.264979px;}
.x63{left:1051.844979px;}
.x61{left:1061.924979px;}
.x35{left:1065.269979px;}
.x60{left:1083.704979px;}
.x30{left:1088.024979px;}
.x62{left:1103.504979px;}
.x4d{left:1118.129979px;}
.x5e{left:1129.499979px;}
.x2f{left:1153.469979px;}
.x42{left:1158.869979px;}
.x50{left:1163.804979px;}
.x3b{left:1232.714979px;}
.x28{left:1236.809979px;}
.x5f{left:1287.539979px;}
@media print{
.vb{vertical-align:-25.600000pt;}
.v0{vertical-align:0.000000pt;}
.v8{vertical-align:1.653333pt;}
.v9{vertical-align:3.200000pt;}
.v7{vertical-align:5.013333pt;}
.v2{vertical-align:6.784000pt;}
.va{vertical-align:25.600000pt;}
.v1{vertical-align:44.032000pt;}
.v5{vertical-align:48.533333pt;}
.vc{vertical-align:51.306667pt;}
.v4{vertical-align:54.026667pt;}
.v3{vertical-align:61.333333pt;}
.v6{vertical-align:102.560000pt;}
.ls30{letter-spacing:-1.968000pt;}
.ls2f{letter-spacing:-1.888000pt;}
.ls25{letter-spacing:-0.704000pt;}
.ls2d{letter-spacing:-0.688000pt;}
.ls28{letter-spacing:-0.419733pt;}
.ls32{letter-spacing:-0.256000pt;}
.ls18{letter-spacing:-0.250133pt;}
.ls11{letter-spacing:-0.224000pt;}
.ls16{letter-spacing:-0.221333pt;}
.ls15{letter-spacing:-0.214933pt;}
.ls27{letter-spacing:-0.203733pt;}
.ls4{letter-spacing:-0.192000pt;}
.ls2{letter-spacing:-0.155200pt;}
.ls24{letter-spacing:-0.140800pt;}
.ls20{letter-spacing:-0.128000pt;}
.lsa{letter-spacing:-0.096000pt;}
.ls26{letter-spacing:-0.088533pt;}
.ls1f{letter-spacing:-0.064000pt;}
.ls12{letter-spacing:-0.031467pt;}
.ls17{letter-spacing:-0.021120pt;}
.ls2e{letter-spacing:-0.000387pt;}
.ls1{letter-spacing:0.000000pt;}
.lsd{letter-spacing:0.000003pt;}
.ls1d{letter-spacing:0.010240pt;}
.ls7{letter-spacing:0.029973pt;}
.ls2b{letter-spacing:0.032000pt;}
.ls3{letter-spacing:0.055467pt;}
.ls10{letter-spacing:0.064000pt;}
.ls23{letter-spacing:0.076800pt;}
.lse{letter-spacing:0.125333pt;}
.lsc{letter-spacing:0.128000pt;}
.ls31{letter-spacing:0.178667pt;}
.ls0{letter-spacing:0.192000pt;}
.ls1a{letter-spacing:0.197867pt;}
.ls22{letter-spacing:0.206592pt;}
.ls21{letter-spacing:0.220267pt;}
.ls9{letter-spacing:0.224000pt;}
.ls1e{letter-spacing:0.226133pt;}
.lsb{letter-spacing:0.256000pt;}
.ls29{letter-spacing:0.288000pt;}
.ls19{letter-spacing:0.317333pt;}
.ls8{letter-spacing:0.320000pt;}
.ls2c{letter-spacing:0.640000pt;}
.ls2a{letter-spacing:8.926720pt;}
.ls1b{letter-spacing:16.512000pt;}
.ls1c{letter-spacing:17.152000pt;}
.lsf{letter-spacing:25.440000pt;}
.ls6{letter-spacing:76.293376pt;}
.ls5{letter-spacing:76.352000pt;}
.ls13{letter-spacing:81.335040pt;}
.ls14{letter-spacing:90.528000pt;}
.ws68{word-spacing:-96.128000pt;}
.ws5{word-spacing:-54.402197pt;}
.ws5e{word-spacing:-54.372224pt;}
.ws16{word-spacing:-27.392000pt;}
.wse{word-spacing:-27.204224pt;}
.wsa{word-spacing:-27.168000pt;}
.ws71{word-spacing:-25.216000pt;}
.ws63{word-spacing:-25.185536pt;}
.ws70{word-spacing:-25.171947pt;}
.wsf{word-spacing:-25.152000pt;}
.ws6a{word-spacing:-24.992893pt;}
.ws6c{word-spacing:-24.992000pt;}
.ws67{word-spacing:-24.960000pt;}
.ws6e{word-spacing:-24.896000pt;}
.ws72{word-spacing:-24.704000pt;}
.ws69{word-spacing:-24.305280pt;}
.ws6d{word-spacing:-24.256000pt;}
.ws35{word-spacing:-24.088960pt;}
.ws36{word-spacing:-24.067840pt;}
.ws6b{word-spacing:-23.072000pt;}
.ws6f{word-spacing:-23.025280pt;}
.ws37{word-spacing:-22.051307pt;}
.ws2d{word-spacing:-21.227264pt;}
.ws2c{word-spacing:-21.191040pt;}
.ws47{word-spacing:-21.050240pt;}
.ws1e{word-spacing:-19.652096pt;}
.ws1b{word-spacing:-19.618560pt;}
.ws31{word-spacing:-19.502080pt;}
.ws32{word-spacing:-19.468800pt;}
.ws34{word-spacing:-19.247467pt;}
.ws3f{word-spacing:-18.148224pt;}
.ws4c{word-spacing:-18.112000pt;}
.ws4e{word-spacing:-17.944491pt;}
.ws1{word-spacing:-16.857003pt;}
.ws17{word-spacing:-16.801536pt;}
.ws19{word-spacing:-16.768003pt;}
.ws18{word-spacing:-16.768000pt;}
.ws38{word-spacing:-15.426560pt;}
.ws43{word-spacing:-14.789376pt;}
.ws44{word-spacing:-14.755840pt;}
.ws59{word-spacing:-14.752000pt;}
.ws58{word-spacing:-14.720000pt;}
.ws30{word-spacing:-14.643200pt;}
.ws10{word-spacing:-2.848000pt;}
.ws61{word-spacing:-2.773333pt;}
.ws13{word-spacing:-2.624000pt;}
.ws22{word-spacing:-2.240000pt;}
.ws62{word-spacing:-2.112000pt;}
.ws65{word-spacing:-2.080000pt;}
.wsd{word-spacing:-2.020224pt;}
.ws64{word-spacing:-2.005333pt;}
.ws11{word-spacing:-1.760000pt;}
.ws1f{word-spacing:-1.611093pt;}
.ws5f{word-spacing:-1.600000pt;}
.ws12{word-spacing:-1.376000pt;}
.wsb{word-spacing:-1.248000pt;}
.ws56{word-spacing:-1.223680pt;}
.ws66{word-spacing:-1.152000pt;}
.ws2e{word-spacing:-1.133440pt;}
.ws60{word-spacing:-0.896000pt;}
.ws7{word-spacing:-0.768000pt;}
.ws23{word-spacing:-0.736000pt;}
.ws57{word-spacing:-0.663424pt;}
.ws45{word-spacing:-0.588800pt;}
.ws6{word-spacing:-0.439936pt;}
.ws14{word-spacing:-0.277333pt;}
.ws2{word-spacing:-0.213333pt;}
.ws4b{word-spacing:-0.192000pt;}
.ws20{word-spacing:-0.135680pt;}
.ws49{word-spacing:-0.064000pt;}
.ws4{word-spacing:0.000000pt;}
.ws2f{word-spacing:0.013440pt;}
.ws8{word-spacing:0.033664pt;}
.ws53{word-spacing:0.128000pt;}
.ws0{word-spacing:0.275072pt;}
.ws3{word-spacing:0.384000pt;}
.ws46{word-spacing:0.527360pt;}
.ws48{word-spacing:0.640000pt;}
.ws21{word-spacing:0.672000pt;}
.wsc{word-spacing:0.700032pt;}
.ws15{word-spacing:0.906667pt;}
.ws9{word-spacing:0.928000pt;}
.ws1a{word-spacing:1.098667pt;}
.ws50{word-spacing:114.453333pt;}
.ws4d{word-spacing:121.639381pt;}
.ws51{word-spacing:122.016000pt;}
.ws4f{word-spacing:132.199381pt;}
.ws3c{word-spacing:135.850923pt;}
.ws52{word-spacing:139.808000pt;}
.ws40{word-spacing:140.917333pt;}
.ws3b{word-spacing:142.335787pt;}
.ws55{word-spacing:187.413333pt;}
.ws4a{word-spacing:189.610667pt;}
.ws54{word-spacing:229.237333pt;}
.ws3d{word-spacing:234.756437pt;}
.ws3e{word-spacing:262.986667pt;}
.ws41{word-spacing:276.917333pt;}
.ws42{word-spacing:303.797333pt;}
.ws5d{word-spacing:328.906667pt;}
.ws3a{word-spacing:353.852800pt;}
.ws5b{word-spacing:366.666667pt;}
.ws5a{word-spacing:431.498667pt;}
.ws25{word-spacing:469.734229pt;}
.ws1d{word-spacing:471.786667pt;}
.ws5c{word-spacing:476.874667pt;}
.ws26{word-spacing:479.242667pt;}
.ws27{word-spacing:531.829333pt;}
.ws24{word-spacing:543.882667pt;}
.ws39{word-spacing:601.746901pt;}
.ws33{word-spacing:657.591893pt;}
.ws2b{word-spacing:779.648000pt;}
.ws2a{word-spacing:797.120000pt;}
.ws29{word-spacing:807.846144pt;}
.ws28{word-spacing:822.613333pt;}
.ws1c{word-spacing:4055.392341pt;}
._8{margin-left:-5.233664pt;}
._39{margin-left:-3.481984pt;}
._c{margin-left:-2.257920pt;}
._0{margin-left:-1.367040pt;}
._1{width:0.929237pt;}
._9{width:1.961515pt;}
._a{width:3.454677pt;}
._36{width:8.577536pt;}
._37{width:9.506517pt;}
._3{width:11.899051pt;}
._33{width:12.906581pt;}
._b{width:13.812949pt;}
._23{width:15.653760pt;}
._25{width:18.939307pt;}
._34{width:21.376000pt;}
._38{width:22.326485pt;}
._4{width:26.240469pt;}
._35{width:28.704000pt;}
._7{width:44.361429pt;}
._6{width:55.705813pt;}
._1f{width:97.034667pt;}
._11{width:100.298667pt;}
._28{width:112.739285pt;}
._1e{width:141.216469pt;}
._29{width:144.199253pt;}
._18{width:146.186667pt;}
._20{width:149.386667pt;}
._17{width:153.418667pt;}
._32{width:186.538667pt;}
._19{width:200.586667pt;}
._d{width:218.272384pt;}
._27{width:219.381333pt;}
._2a{width:241.621333pt;}
._31{width:269.525333pt;}
._1d{width:270.677333pt;}
._2e{width:279.914667pt;}
._2b{width:283.946667pt;}
._2f{width:290.784000pt;}
._1b{width:294.112000pt;}
._e{width:299.348608pt;}
._30{width:300.832000pt;}
._26{width:303.498667pt;}
._22{width:311.690667pt;}
._1c{width:318.505429pt;}
._21{width:321.675392pt;}
._1a{width:325.655040pt;}
._12{width:326.666667pt;}
._10{width:377.066667pt;}
._5{width:388.906667pt;}
._15{width:394.613333pt;}
._16{width:433.706667pt;}
._14{width:436.704000pt;}
._f{width:501.461333pt;}
._2c{width:546.570667pt;}
._13{width:555.264000pt;}
._24{width:727.300949pt;}
._2{width:761.327616pt;}
._2d{width:868.309333pt;}
.fsf{font-size:53.120000pt;}
.fs10{font-size:53.248000pt;}
.fsa{font-size:56.320000pt;}
.fsd{font-size:56.448000pt;}
.fsc{font-size:58.880000pt;}
.fs5{font-size:59.008000pt;}
.fs4{font-size:64.000000pt;}
.fs1{font-size:64.128000pt;}
.fs7{font-size:74.880000pt;}
.fs8{font-size:75.008000pt;}
.fsb{font-size:85.120000pt;}
.fs2{font-size:96.000000pt;}
.fs6{font-size:96.128000pt;}
.fse{font-size:128.000000pt;}
.fs9{font-size:149.120000pt;}
.fs0{font-size:170.880000pt;}
.fs11{font-size:192.000000pt;}
.fs3{font-size:192.128000pt;}
.y0{bottom:0.000000pt;}
.y3{bottom:14.080000pt;}
.y65{bottom:44.256000pt;}
.y7{bottom:49.728000pt;}
.y64{bottom:61.056000pt;}
.y3b{bottom:63.264000pt;}
.y81{bottom:65.152000pt;}
.y1b{bottom:66.720000pt;}
.y63{bottom:77.856000pt;}
.y80{bottom:81.984000pt;}
.y3a{bottom:85.664000pt;}
.y8f{bottom:92.704000pt;}
.y62{bottom:94.656000pt;}
.y7f{bottom:98.784000pt;}
.ya1{bottom:102.400000pt;}
.y1a{bottom:105.120000pt;}
.y5b{bottom:106.528000pt;}
.y39{bottom:108.064000pt;}
.y2f{bottom:110.080000pt;}
.y61{bottom:111.488000pt;}
.y7e{bottom:115.584000pt;}
.y8c{bottom:117.408000pt;}
.y5a{bottom:124.128000pt;}
.y25{bottom:126.048000pt;}
.y38{bottom:130.464000pt;}
.ya0{bottom:131.200000pt;}
.y2e{bottom:132.480000pt;}
.y60{bottom:140.346667pt;}
.y59{bottom:141.733333pt;}
.y19{bottom:145.440000pt;}
.y82{bottom:150.906667pt;}
.y8b{bottom:152.613333pt;}
.y37{bottom:152.893333pt;}
.y2d{bottom:154.880000pt;}
.y9f{bottom:160.026667pt;}
.y5f{bottom:171.133333pt;}
.y12{bottom:172.386667pt;}
.y36{bottom:175.293333pt;}
.y5{bottom:176.093333pt;}
.y2c{bottom:177.280000pt;}
.y7d{bottom:181.120000pt;}
.y8a{bottom:181.373333pt;}
.y9e{bottom:188.826667pt;}
.y35{bottom:197.693333pt;}
.y40{bottom:199.173333pt;}
.y2b{bottom:199.680000pt;}
.y18{bottom:201.146667pt;}
.y11{bottom:201.186667pt;}
.y5e{bottom:201.920000pt;}
.y3f{bottom:202.333333pt;}
.y4{bottom:204.893333pt;}
.y98{bottom:205.466667pt;}
.y7c{bottom:209.920000pt;}
.y89{bottom:216.573333pt;}
.y26{bottom:224.893333pt;}
.y10{bottom:230.013333pt;}
.y5d{bottom:230.720000pt;}
.y3e{bottom:231.173333pt;}
.y97{bottom:234.306667pt;}
.y7b{bottom:238.720000pt;}
.y5c{bottom:243.546667pt;}
.y9d{bottom:246.426667pt;}
.y17{bottom:251.066667pt;}
.y58{bottom:254.333333pt;}
.y88{bottom:258.053333pt;}
.y96{bottom:263.106667pt;}
.y7a{bottom:267.546667pt;}
.y9c{bottom:275.226667pt;}
.y34{bottom:276.893333pt;}
.y16{bottom:279.866667pt;}
.y57{bottom:279.933333pt;}
.y2{bottom:284.066667pt;}
.y79{bottom:284.346667pt;}
.yf{bottom:287.613333pt;}
.y33{bottom:299.333333pt;}
.y2a{bottom:302.560000pt;}
.y78{bottom:303.546667pt;}
.y9b{bottom:304.066667pt;}
.y56{bottom:305.533333pt;}
.y43{bottom:306.493333pt;}
.y15{bottom:308.666667pt;}
.y95{bottom:320.706667pt;}
.y32{bottom:321.733333pt;}
.y29{bottom:324.960000pt;}
.y24{bottom:325.573333pt;}
.y42{bottom:328.893333pt;}
.y55{bottom:331.173333pt;}
.y9a{bottom:332.866667pt;}
.y1{bottom:340.386667pt;}
.y31{bottom:344.133333pt;}
.ye{bottom:345.213333pt;}
.y28{bottom:347.360000pt;}
.y6f{bottom:357.600000pt;}
.y6c{bottom:358.373333pt;}
.y14{bottom:366.306667pt;}
.y30{bottom:366.533333pt;}
.y27{bottom:369.760000pt;}
.yd{bottom:374.053333pt;}
.y94{bottom:378.333333pt;}
.y6e{bottom:380.000000pt;}
.y68{bottom:380.986667pt;}
.y6b{bottom:383.973333pt;}
.y13{bottom:395.106667pt;}
.y41{bottom:399.613333pt;}
.y6d{bottom:402.400000pt;}
.yc{bottom:402.853333pt;}
.y93{bottom:407.133333pt;}
.y6a{bottom:409.573333pt;}
.y4f{bottom:428.346667pt;}
.yb{bottom:431.653333pt;}
.y4e{bottom:434.426667pt;}
.y92{bottom:435.933333pt;}
.y4d{bottom:437.920000pt;}
.y99{bottom:438.146667pt;}
.y87{bottom:441.253333pt;}
.y69{bottom:452.133333pt;}
.y77{bottom:457.826667pt;}
.y4a{bottom:459.293333pt;}
.ya{bottom:460.453333pt;}
.y86{bottom:463.653333pt;}
.y91{bottom:464.733333pt;}
.y48{bottom:465.053333pt;}
.y52{bottom:465.733333pt;}
.y1f{bottom:475.706667pt;}
.y67{bottom:480.453333pt;}
.y49{bottom:481.733333pt;}
.y76{bottom:481.826667pt;}
.y21{bottom:483.706667pt;}
.y85{bottom:486.053333pt;}
.y47{bottom:487.613333pt;}
.y51{bottom:488.320000pt;}
.y1e{bottom:498.106667pt;}
.y23{bottom:501.946667pt;}
.y46{bottom:504.413333pt;}
.y50{bottom:505.120000pt;}
.y75{bottom:505.853333pt;}
.y84{bottom:512.640000pt;}
.y9{bottom:518.080000pt;}
.y1d{bottom:520.506667pt;}
.y72{bottom:520.866667pt;}
.y90{bottom:522.373333pt;}
.y22{bottom:524.346667pt;}
.y74{bottom:529.853333pt;}
.y83{bottom:530.240000pt;}
.y20{bottom:536.226667pt;}
.y71{bottom:543.266667pt;}
.y1c{bottom:544.226667pt;}
.y8{bottom:546.880000pt;}
.y3d{bottom:549.733333pt;}
.y73{bottom:553.853333pt;}
.y8e{bottom:575.360000pt;}
.y3c{bottom:578.533333pt;}
.y70{bottom:581.600000pt;}
.y66{bottom:585.600000pt;}
.y4c{bottom:586.240000pt;}
.y54{bottom:587.333333pt;}
.y8d{bottom:600.960000pt;}
.y4b{bottom:612.186667pt;}
.y53{bottom:613.600000pt;}
.y45{bottom:649.986667pt;}
.y6{bottom:663.906667pt;}
.y44{bottom:682.146667pt;}
.h24{height:39.840000pt;}
.h25{height:39.936000pt;}
.h15{height:43.092500pt;}
.h27{height:44.160000pt;}
.h28{height:44.256000pt;}
.h19{height:48.968750pt;}
.h21{height:49.336320pt;}
.h20{height:49.448448pt;}
.h1b{height:51.578880pt;}
.h23{height:54.014167pt;}
.ha{height:56.064000pt;}
.h2{height:56.176128pt;}
.h1e{height:56.704000pt;}
.h17{height:57.293437pt;}
.h16{height:57.391375pt;}
.h6{height:58.691063pt;}
.h1f{height:59.584000pt;}
.h26{height:59.703168pt;}
.h18{height:60.591375pt;}
.hb{height:65.594880pt;}
.hf{height:65.707008pt;}
.he{height:69.713280pt;}
.h13{height:69.832448pt;}
.h2b{height:73.453125pt;}
.h2c{height:73.551063pt;}
.h29{height:74.565120pt;}
.h1a{height:79.246720pt;}
.h7{height:84.096000pt;}
.h8{height:84.208128pt;}
.h1c{height:85.303168pt;}
.h3{height:89.376000pt;}
.h9{height:89.495168pt;}
.hd{height:96.160000pt;}
.h12{height:96.268501pt;}
.h5{height:99.500750pt;}
.hc{height:109.914880pt;}
.h1d{height:111.009835pt;}
.h22{height:112.128000pt;}
.h14{height:138.830720pt;}
.h1{height:159.089280pt;}
.h2a{height:178.752000pt;}
.h4{height:178.871168pt;}
.h11{height:191.936000pt;}
.h10{height:204.855168pt;}
.h0{height:720.000000pt;}
.w1{width:1279.999981pt;}
.w0{width:1280.000000pt;}
.x0{left:0.000000pt;}
.x6{left:9.599981pt;}
.x4c{left:11.455981pt;}
.x5d{left:12.799981pt;}
.x64{left:22.815981pt;}
.x43{left:25.919981pt;}
.xc{left:27.231981pt;}
.x59{left:29.439981pt;}
.x66{left:34.367981pt;}
.x19{left:36.703981pt;}
.x3e{left:39.679981pt;}
.x68{left:45.343981pt;}
.x8{left:47.167981pt;}
.x3f{left:50.015981pt;}
.x44{left:51.199981pt;}
.x65{left:52.895981pt;}
.x18{left:54.943981pt;}
.x2{left:61.247981pt;}
.xd{left:65.183981pt;}
.x5a{left:72.639981pt;}
.x26{left:75.295981pt;}
.x9{left:77.247981pt;}
.x41{left:83.519981pt;}
.xa{left:95.167981pt;}
.x29{left:103.359981pt;}
.x3d{left:110.111981pt;}
.x3c{left:113.951981pt;}
.xb{left:125.247981pt;}
.x45{left:178.426648pt;}
.x2a{left:202.426648pt;}
.x23{left:203.426648pt;}
.x13{left:206.266648pt;}
.x2b{left:228.026648pt;}
.x14{left:232.346648pt;}
.x21{left:234.626648pt;}
.x12{left:239.706648pt;}
.x2c{left:242.906648pt;}
.x15{left:246.266648pt;}
.x1{left:260.959981pt;}
.x2e{left:265.346648pt;}
.x1f{left:269.346648pt;}
.x1d{left:270.306648pt;}
.x20{left:273.506648pt;}
.x4f{left:277.053314pt;}
.x2d{left:281.186648pt;}
.x1e{left:283.426648pt;}
.x56{left:289.346648pt;}
.x3{left:296.573314pt;}
.x34{left:302.973314pt;}
.x57{left:314.146648pt;}
.x58{left:315.906648pt;}
.x22{left:317.373314pt;}
.x24{left:371.293314pt;}
.x32{left:404.773314pt;}
.x31{left:426.053314pt;}
.x55{left:429.599981pt;}
.x1a{left:450.373314pt;}
.x51{left:452.506648pt;}
.x1b{left:455.013314pt;}
.x4e{left:473.786648pt;}
.x4{left:474.853314pt;}
.x7{left:477.986648pt;}
.x33{left:505.826648pt;}
.x67{left:507.973314pt;}
.x5{left:513.413314pt;}
.x11{left:531.746648pt;}
.xf{left:540.066648pt;}
.x10{left:547.266648pt;}
.x27{left:574.106648pt;}
.xe{left:576.866648pt;}
.x1c{left:591.106648pt;}
.x49{left:603.066648pt;}
.x4a{left:607.386648pt;}
.x48{left:611.746648pt;}
.x40{left:614.399981pt;}
.x39{left:629.146648pt;}
.x38{left:654.786648pt;}
.x3a{left:671.906648pt;}
.x4b{left:705.253314pt;}
.x5c{left:729.306648pt;}
.x36{left:738.746648pt;}
.x52{left:743.546648pt;}
.x5b{left:788.573314pt;}
.x47{left:806.333314pt;}
.x37{left:809.439981pt;}
.x54{left:868.773314pt;}
.x53{left:873.733314pt;}
.x25{left:879.839981pt;}
.x17{left:890.973314pt;}
.x46{left:911.653314pt;}
.x16{left:914.013314pt;}
.x63{left:934.973314pt;}
.x61{left:943.933314pt;}
.x35{left:946.906648pt;}
.x60{left:963.293314pt;}
.x30{left:967.133314pt;}
.x62{left:980.893314pt;}
.x4d{left:993.893314pt;}
.x5e{left:1003.999981pt;}
.x2f{left:1025.306648pt;}
.x42{left:1030.106648pt;}
.x50{left:1034.493314pt;}
.x3b{left:1095.746648pt;}
.x28{left:1099.386648pt;}
.x5f{left:1144.479981pt;}
}




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