
    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_49cd94c8bc3c12faedd20bfb.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.091797;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_af74d0097639921a30f9bccc.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_f4cf817469b500fa39f4d783.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_036b6d6b582492ca5a9aa706.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.082031;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_d56377ee7819f60df0110a6a.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.854004;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_876cf633dd6426baccfd87b0.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.767578;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);}
.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:-85.680000px;}
.v2{vertical-align:-36.000000px;}
.va{vertical-align:-32.400000px;}
.v5{vertical-align:-29.520000px;}
.vd{vertical-align:-26.640000px;}
.v9{vertical-align:-23.040000px;}
.v0{vertical-align:0.000000px;}
.v6{vertical-align:29.520000px;}
.vc{vertical-align:32.400000px;}
.v3{vertical-align:36.000000px;}
.v1{vertical-align:43.200000px;}
.v4{vertical-align:49.080000px;}
.v7{vertical-align:57.600000px;}
.v8{vertical-align:115.200000px;}
.ls4d{letter-spacing:-3.774000px;}
.ls53{letter-spacing:-3.240000px;}
.ls45{letter-spacing:-2.880000px;}
.ls33{letter-spacing:-2.664000px;}
.ls30{letter-spacing:-1.566000px;}
.ls27{letter-spacing:-1.200000px;}
.ls49{letter-spacing:-0.852000px;}
.ls28{letter-spacing:-0.798000px;}
.ls58{letter-spacing:-0.792000px;}
.ls50{letter-spacing:-0.678000px;}
.ls39{letter-spacing:-0.487200px;}
.ls2d{letter-spacing:-0.477600px;}
.ls47{letter-spacing:-0.468000px;}
.ls51{letter-spacing:-0.441600px;}
.ls4c{letter-spacing:-0.366000px;}
.ls48{letter-spacing:-0.324000px;}
.ls44{letter-spacing:-0.323400px;}
.ls52{letter-spacing:-0.299400px;}
.ls59{letter-spacing:-0.288000px;}
.ls55{letter-spacing:-0.242400px;}
.ls56{letter-spacing:-0.238800px;}
.ls3a{letter-spacing:-0.231600px;}
.ls5a{letter-spacing:-0.216000px;}
.ls25{letter-spacing:-0.144000px;}
.ls32{letter-spacing:-0.132600px;}
.ls36{letter-spacing:-0.128400px;}
.ls2f{letter-spacing:-0.124800px;}
.ls43{letter-spacing:-0.078600px;}
.ls3c{letter-spacing:-0.073200px;}
.ls34{letter-spacing:-0.072000px;}
.ls35{letter-spacing:-0.036000px;}
.ls3d{letter-spacing:-0.027360px;}
.ls3b{letter-spacing:-0.022320px;}
.ls24{letter-spacing:-0.015840px;}
.ls4f{letter-spacing:-0.015120px;}
.ls29{letter-spacing:-0.011520px;}
.ls23{letter-spacing:0.000000px;}
.ls1f{letter-spacing:0.000720px;}
.ls0{letter-spacing:0.005040px;}
.lse{letter-spacing:0.013440px;}
.ls3{letter-spacing:0.022320px;}
.ls18{letter-spacing:0.042480px;}
.ls19{letter-spacing:0.071280px;}
.ls20{letter-spacing:0.072000px;}
.ls3f{letter-spacing:0.101400px;}
.ls46{letter-spacing:0.108000px;}
.ls2a{letter-spacing:0.189600px;}
.ls41{letter-spacing:0.200400px;}
.ls37{letter-spacing:0.219600px;}
.ls3e{letter-spacing:0.222000px;}
.ls38{letter-spacing:0.222600px;}
.ls4a{letter-spacing:0.232800px;}
.ls15{letter-spacing:0.252000px;}
.ls26{letter-spacing:0.278400px;}
.ls13{letter-spacing:0.288000px;}
.ls2c{letter-spacing:0.302400px;}
.ls10{letter-spacing:0.341280px;}
.ls4b{letter-spacing:0.354000px;}
.ls54{letter-spacing:0.396600px;}
.ls57{letter-spacing:0.576000px;}
.ls2b{letter-spacing:0.595200px;}
.ls2e{letter-spacing:0.708000px;}
.ls11{letter-spacing:0.720000px;}
.ls31{letter-spacing:0.876000px;}
.ls42{letter-spacing:0.960000px;}
.ls40{letter-spacing:0.996000px;}
.ls1e{letter-spacing:1.061280px;}
.ls4e{letter-spacing:1.176000px;}
.ls1a{letter-spacing:3.671280px;}
.ls1b{letter-spacing:4.391280px;}
.lsf{letter-spacing:11.412720px;}
.ls1d{letter-spacing:13.680720px;}
.ls21{letter-spacing:14.688000px;}
.ls22{letter-spacing:15.408000px;}
.ls6{letter-spacing:19.329120px;}
.ls4{letter-spacing:19.347840px;}
.ls17{letter-spacing:20.951280px;}
.ls16{letter-spacing:21.528000px;}
.ls14{letter-spacing:21.672000px;}
.ls12{letter-spacing:22.392000px;}
.ls2{letter-spacing:24.651360px;}
.ls1{letter-spacing:37.611360px;}
.ls1c{letter-spacing:42.551280px;}
.ls5{letter-spacing:223.942320px;}
.lsa{letter-spacing:264.701280px;}
.ls9{letter-spacing:269.021280px;}
.ls7{letter-spacing:273.341280px;}
.lsb{letter-spacing:301.421280px;}
.lsd{letter-spacing:328.312800px;}
.ls8{letter-spacing:341.801280px;}
.lsc{letter-spacing:347.752800px;}
.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;}
}
.ws3e{word-spacing:-27.743280px;}
.ws40{word-spacing:-27.707280px;}
.wse{word-spacing:-27.455280px;}
.wsb{word-spacing:-27.342480px;}
.wsc{word-spacing:-27.049680px;}
.ws3f{word-spacing:-26.947680px;}
.wsa{word-spacing:-26.936880px;}
.ws3c{word-spacing:-26.747280px;}
.ws9{word-spacing:-26.735760px;}
.ws41{word-spacing:-26.668680px;}
.wsf{word-spacing:-26.622480px;}
.wsd{word-spacing:-26.269680px;}
.ws7{word-spacing:-25.949280px;}
.ws5c{word-spacing:-25.584720px;}
.ws6{word-spacing:-25.547280px;}
.ws10{word-spacing:-25.181280px;}
.ws59{word-spacing:-24.762720px;}
.ws58{word-spacing:-24.641520px;}
.ws61{word-spacing:-24.631320px;}
.ws60{word-spacing:-24.628320px;}
.ws5d{word-spacing:-24.451200px;}
.ws55{word-spacing:-24.413760px;}
.ws5{word-spacing:-24.408720px;}
.ws5e{word-spacing:-24.393600px;}
.ws2a{word-spacing:-24.280320px;}
.ws56{word-spacing:-24.276120px;}
.ws17{word-spacing:-24.083280px;}
.ws5a{word-spacing:-24.042720px;}
.ws5f{word-spacing:-23.730720px;}
.ws57{word-spacing:-23.556720px;}
.ws6e{word-spacing:-21.924000px;}
.ws5b{word-spacing:-20.634720px;}
.ws11{word-spacing:-20.315280px;}
.ws70{word-spacing:-19.835880px;}
.ws37{word-spacing:-19.661280px;}
.ws2{word-spacing:-19.439280px;}
.ws0{word-spacing:-19.423440px;}
.ws32{word-spacing:-19.366080px;}
.ws71{word-spacing:-19.196880px;}
.ws6f{word-spacing:-19.115880px;}
.ws47{word-spacing:-19.044000px;}
.ws3d{word-spacing:-17.831520px;}
.ws4{word-spacing:-16.223760px;}
.ws6d{word-spacing:-16.199280px;}
.ws74{word-spacing:-15.192000px;}
.ws73{word-spacing:-14.688000px;}
.ws4f{word-spacing:-14.616000px;}
.ws72{word-spacing:-14.544000px;}
.ws76{word-spacing:-14.472000px;}
.ws78{word-spacing:-14.400000px;}
.ws77{word-spacing:-14.328000px;}
.ws75{word-spacing:-13.824000px;}
.ws42{word-spacing:-13.008240px;}
.ws64{word-spacing:-1.944000px;}
.ws2c{word-spacing:-1.326960px;}
.ws4e{word-spacing:-1.008000px;}
.ws52{word-spacing:-0.936000px;}
.ws66{word-spacing:-0.615600px;}
.ws2e{word-spacing:-0.606960px;}
.ws19{word-spacing:-0.599040px;}
.ws1{word-spacing:-0.576000px;}
.ws43{word-spacing:-0.495600px;}
.ws2d{word-spacing:-0.477360px;}
.ws18{word-spacing:-0.298080px;}
.ws51{word-spacing:-0.252000px;}
.ws8{word-spacing:-0.131760px;}
.ws1c{word-spacing:-0.108000px;}
.ws2f{word-spacing:-0.095760px;}
.ws7b{word-spacing:-0.072000px;}
.ws65{word-spacing:-0.036000px;}
.ws7d{word-spacing:0.000000px;}
.ws6b{word-spacing:0.023040px;}
.ws79{word-spacing:0.072000px;}
.ws3b{word-spacing:0.190440px;}
.ws4d{word-spacing:0.216000px;}
.ws15{word-spacing:0.270480px;}
.ws50{word-spacing:0.468000px;}
.ws6c{word-spacing:0.480960px;}
.ws4b{word-spacing:0.588000px;}
.ws68{word-spacing:0.604080px;}
.ws4c{word-spacing:0.612000px;}
.ws3{word-spacing:0.720000px;}
.ws16{word-spacing:0.812880px;}
.ws4a{word-spacing:1.008000px;}
.ws7c{word-spacing:1.224000px;}
.ws6a{word-spacing:1.295640px;}
.ws45{word-spacing:1.319760px;}
.ws53{word-spacing:1.332000px;}
.ws44{word-spacing:1.727640px;}
.ws69{word-spacing:1.843920px;}
.ws67{word-spacing:1.945440px;}
.ws54{word-spacing:6.696000px;}
.ws22{word-spacing:9.349200px;}
.ws24{word-spacing:10.023120px;}
.ws1f{word-spacing:10.134720px;}
.ws20{word-spacing:10.224360px;}
.ws27{word-spacing:10.265040px;}
.ws21{word-spacing:10.280400px;}
.ws1e{word-spacing:10.297440px;}
.ws25{word-spacing:10.322640px;}
.ws46{word-spacing:10.476000px;}
.ws48{word-spacing:10.512000px;}
.ws26{word-spacing:11.167920px;}
.ws23{word-spacing:11.185560px;}
.ws49{word-spacing:11.268000px;}
.ws28{word-spacing:12.360960px;}
.ws29{word-spacing:12.384360px;}
.ws2b{word-spacing:13.073040px;}
.ws7a{word-spacing:15.456000px;}
.ws62{word-spacing:54.072000px;}
.ws63{word-spacing:54.468000px;}
.ws12{word-spacing:61.160880px;}
.ws14{word-spacing:61.778160px;}
.ws13{word-spacing:62.064360px;}
.ws1b{word-spacing:76.042080px;}
.ws1a{word-spacing:80.362080px;}
.ws30{word-spacing:124.754880px;}
.ws3a{word-spacing:251.429520px;}
.ws33{word-spacing:262.805040px;}
.ws35{word-spacing:262.839600px;}
.ws39{word-spacing:268.147920px;}
.ws36{word-spacing:269.596560px;}
.ws38{word-spacing:270.630480px;}
.ws31{word-spacing:284.285040px;}
.ws34{word-spacing:324.459600px;}
.ws1d{word-spacing:2700.798960px;}
._6{margin-left:-10.944000px;}
._8{margin-left:-9.302160px;}
._3{margin-left:-7.308000px;}
._31{margin-left:-5.832000px;}
._4{margin-left:-4.788000px;}
._2{margin-left:-3.528000px;}
._0{margin-left:-2.268000px;}
._1{margin-left:-1.260000px;}
._5{width:1.440000px;}
._7{width:2.965440px;}
._17{width:4.908720px;}
._2d{width:6.582960px;}
._2c{width:7.704720px;}
._2b{width:9.502080px;}
._12{width:11.824320px;}
._13{width:13.777200px;}
._14{width:14.827440px;}
._c{width:16.045680px;}
._b{width:17.245920px;}
._28{width:19.482480px;}
._26{width:21.089280px;}
._27{width:22.132320px;}
._29{width:23.323680px;}
._1f{width:26.086800px;}
._f{width:27.821280px;}
._a{width:30.142800px;}
._9{width:31.155600px;}
._2f{width:32.872320px;}
._e{width:34.259760px;}
._d{width:35.452560px;}
._2a{width:42.377760px;}
._18{width:46.420560px;}
._16{width:47.866320px;}
._15{width:49.458720px;}
._1a{width:68.153760px;}
._19{width:69.251040px;}
._11{width:74.276880px;}
._10{width:75.442080px;}
._30{width:78.294960px;}
._1c{width:81.300960px;}
._1d{width:87.534000px;}
._1e{width:101.536800px;}
._1b{width:134.346960px;}
._2e{width:217.582560px;}
._21{width:289.150560px;}
._23{width:330.625440px;}
._20{width:343.708560px;}
._22{width:350.640000px;}
._25{width:634.687680px;}
._24{width:3224.363520px;}
.fc1{color:rgb(70,120,134);}
.fc2{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs8{font-size:64.080000px;}
.fsa{font-size:72.000000px;}
.fs3{font-size:79.920000px;}
.fs9{font-size:87.840000px;}
.fs2{font-size:95.760000px;}
.fs6{font-size:108.000000px;}
.fs4{font-size:120.240000px;}
.fs5{font-size:131.760000px;}
.fs1{font-size:144.000000px;}
.fs7{font-size:167.760000px;}
.fs0{font-size:252.000000px;}
.y0{bottom:0.000000px;}
.y2f{bottom:93.135000px;}
.y32{bottom:208.335000px;}
.y46{bottom:300.345000px;}
.y89{bottom:326.160000px;}
.y45{bottom:339.945000px;}
.y88{bottom:347.760000px;}
.y87{bottom:369.360000px;}
.y44{bottom:379.545000px;}
.y75{bottom:409.140000px;}
.y43{bottom:419.145000px;}
.y86{bottom:455.835000px;}
.y42{bottom:458.745000px;}
.y85{bottom:477.435000px;}
.y41{bottom:498.345000px;}
.y84{bottom:499.035000px;}
.y83{bottom:520.635000px;}
.y40{bottom:537.945000px;}
.y82{bottom:542.235000px;}
.y81{bottom:563.835000px;}
.y80{bottom:585.435000px;}
.y7f{bottom:607.035000px;}
.y76{bottom:621.255000px;}
.y74{bottom:642.060000px;}
.y59{bottom:732.495000px;}
.y2d{bottom:760.755000px;}
.y58{bottom:768.495000px;}
.y53{bottom:777.855000px;}
.y2c{bottom:796.755000px;}
.y57{bottom:804.495000px;}
.y52{bottom:813.855000px;}
.y2b{bottom:832.755000px;}
.y56{bottom:840.495000px;}
.y51{bottom:849.855000px;}
.y55{bottom:876.495000px;}
.y50{bottom:885.855000px;}
.y54{bottom:912.495000px;}
.y16{bottom:930.165000px;}
.y7e{bottom:943.740000px;}
.y15{bottom:962.565000px;}
.y78{bottom:976.605000px;}
.y14{bottom:1009.005000px;}
.y7d{bottom:1126.005000px;}
.y7c{bottom:1276.635000px;}
.y7b{bottom:1438.815000px;}
.y79{bottom:1463.190000px;}
.y7a{bottom:1549.590000px;}
.y3f{bottom:1663.590000px;}
.y5a{bottom:1785.240000px;}
.y4f{bottom:1880.430000px;}
.y64{bottom:1903.215000px;}
.y62{bottom:1903.350000px;}
.y4e{bottom:1912.830000px;}
.y63{bottom:1932.015000px;}
.y61{bottom:1932.150000px;}
.y26{bottom:1936.980000px;}
.y25{bottom:1969.380000px;}
.y73{bottom:2068.050000px;}
.y72{bottom:2096.850000px;}
.y71{bottom:2150.025000px;}
.y60{bottom:2165.505000px;}
.y5e{bottom:2170.875000px;}
.y5f{bottom:2194.305000px;}
.y5d{bottom:2199.675000px;}
.y70{bottom:2203.485000px;}
.y6f{bottom:2232.285000px;}
.y3e{bottom:2239.770000px;}
.y24{bottom:2245.215000px;}
.y3d{bottom:2269.725000px;}
.y23{bottom:2281.215000px;}
.y6e{bottom:2286.870000px;}
.y3c{bottom:2299.680000px;}
.y6d{bottom:2315.670000px;}
.y3b{bottom:2329.635000px;}
.y6c{bottom:2344.470000px;}
.y22{bottom:2356.950000px;}
.y3a{bottom:2359.590000px;}
.y31{bottom:2370.420000px;}
.y6b{bottom:2373.270000px;}
.y39{bottom:2389.575000px;}
.y21{bottom:2392.950000px;}
.y6a{bottom:2402.070000px;}
.y38{bottom:2419.530000px;}
.y69{bottom:2430.870000px;}
.y37{bottom:2449.470000px;}
.y4d{bottom:2456.175000px;}
.y20{bottom:2465.820000px;}
.y2e{bottom:2471.220000px;}
.y36{bottom:2479.425000px;}
.y68{bottom:2484.570000px;}
.y4c{bottom:2506.395000px;}
.y35{bottom:2509.380000px;}
.y67{bottom:2513.370000px;}
.y1e{bottom:2534.655000px;}
.y4b{bottom:2535.195000px;}
.y66{bottom:2542.170000px;}
.y33{bottom:2549.955000px;}
.y4a{bottom:2563.995000px;}
.y30{bottom:2564.355000px;}
.y1d{bottom:2570.655000px;}
.y34{bottom:2578.755000px;}
.y65{bottom:2592.645000px;}
.y49{bottom:2592.795000px;}
.y48{bottom:2621.595000px;}
.y5c{bottom:2636.430000px;}
.y47{bottom:2650.395000px;}
.y5b{bottom:2668.830000px;}
.y29{bottom:2694.390000px;}
.y1f{bottom:2733.990000px;}
.y77{bottom:2830.425000px;}
.y13{bottom:2934.825000px;}
.y28{bottom:2934.900000px;}
.y1c{bottom:2952.900000px;}
.y12{bottom:2974.425000px;}
.y1b{bottom:2981.700000px;}
.y2a{bottom:2995.995000px;}
.y1a{bottom:3010.500000px;}
.y11{bottom:3014.025000px;}
.y19{bottom:3039.300000px;}
.y10{bottom:3053.625000px;}
.y18{bottom:3068.100000px;}
.yf{bottom:3093.225000px;}
.y17{bottom:3096.930000px;}
.ye{bottom:3132.825000px;}
.yd{bottom:3172.425000px;}
.yc{bottom:3212.025000px;}
.yb{bottom:3251.625000px;}
.ya{bottom:3291.225000px;}
.y9{bottom:3330.825000px;}
.y8{bottom:3370.425000px;}
.y7{bottom:3410.025000px;}
.y27{bottom:3529.725000px;}
.y6{bottom:3608.715000px;}
.y5{bottom:3660.630000px;}
.y4{bottom:3705.630000px;}
.y3{bottom:3767.550000px;}
.y2{bottom:3849.015000px;}
.y1{bottom:3924.615000px;}
.h1a{height:62.402344px;}
.h5{height:69.266602px;}
.hd{height:82.995117px;}
.hc{height:83.135391px;}
.h15{height:84.338086px;}
.h14{height:84.431953px;}
.h16{height:84.458086px;}
.h19{height:93.339844px;}
.hb{height:93.603516px;}
.ha{height:93.761719px;}
.h18{height:94.802344px;}
.h7{height:104.211914px;}
.he{height:104.388047px;}
.h6{height:105.266602px;}
.h8{height:114.196289px;}
.h9{height:114.389297px;}
.h4{height:126.195117px;}
.h10{height:132.215391px;}
.hf{height:145.643203px;}
.h17{height:162.809297px;}
.h13{height:198.335391px;}
.h11{height:201.780000px;}
.h3{height:218.777344px;}
.h12{height:403.380000px;}
.h1{height:4251.750000px;}
.h2{height:4251.959634px;}
.h0{height:4251.960000px;}
.w6{width:57.960000px;}
.w5{width:136.260000px;}
.w3{width:140.940000px;}
.w4{width:165.060000px;}
.w1{width:2976.000000px;}
.w2{width:2976.299956px;}
.w0{width:2976.300000px;}
.x0{left:0.000000px;}
.x1a{left:9.795000px;}
.x1d{left:13.350000px;}
.x17{left:14.475000px;}
.x1{left:34.739956px;}
.x28{left:51.047956px;}
.x11{left:71.171956px;}
.x2{left:73.511956px;}
.x8{left:81.395956px;}
.x31{left:87.875956px;}
.xc{left:138.491956px;}
.xb{left:145.871956px;}
.xa{left:149.759956px;}
.x12{left:156.314956px;}
.x40{left:165.629956px;}
.xd{left:205.559956px;}
.xe{left:314.819956px;}
.x41{left:385.094956px;}
.x3e{left:718.124956px;}
.x39{left:765.329956px;}
.x36{left:776.414956px;}
.x38{left:779.369956px;}
.x14{left:788.114956px;}
.x37{left:892.874956px;}
.x2d{left:896.324956px;}
.x2c{left:899.744956px;}
.x2b{left:902.084956px;}
.x29{left:904.964956px;}
.x2a{left:918.824956px;}
.x2e{left:935.744956px;}
.x32{left:979.844956px;}
.x3{left:1061.099956px;}
.x2f{left:1171.619956px;}
.x3a{left:1187.249956px;}
.x33{left:1198.229956px;}
.x34{left:1200.059956px;}
.x3f{left:1203.194956px;}
.x3b{left:1220.909956px;}
.x35{left:1256.039956px;}
.xf{left:1308.989956px;}
.x6{left:1495.649956px;}
.x13{left:1563.554956px;}
.x3c{left:1610.069956px;}
.x3d{left:1780.454956px;}
.x15{left:1875.344956px;}
.x16{left:1929.600000px;}
.x30{left:1930.859956px;}
.x25{left:1973.054956px;}
.x24{left:1974.134956px;}
.x23{left:1975.394956px;}
.x27{left:1979.534956px;}
.x26{left:1982.414956px;}
.x5{left:2000.879956px;}
.x4{left:2006.639956px;}
.x10{left:2033.309956px;}
.x9{left:2047.064956px;}
.x18{left:2104.124956px;}
.x19{left:2160.900000px;}
.x1b{left:2215.694956px;}
.x1c{left:2325.780000px;}
.x1e{left:2376.929956px;}
.x1f{left:2481.374956px;}
.x42{left:2488.034956px;}
.x20{left:2502.974956px;}
.x7{left:2685.929956px;}
.x21{left:2728.949956px;}
.x44{left:2752.304956px;}
.x46{left:2790.389956px;}
.x45{left:2814.764956px;}
.x43{left:2835.209956px;}
.x22{left:2853.540000px;}
@media print{
.vb{vertical-align:-76.160000pt;}
.v2{vertical-align:-32.000000pt;}
.va{vertical-align:-28.800000pt;}
.v5{vertical-align:-26.240000pt;}
.vd{vertical-align:-23.680000pt;}
.v9{vertical-align:-20.480000pt;}
.v0{vertical-align:0.000000pt;}
.v6{vertical-align:26.240000pt;}
.vc{vertical-align:28.800000pt;}
.v3{vertical-align:32.000000pt;}
.v1{vertical-align:38.400000pt;}
.v4{vertical-align:43.626667pt;}
.v7{vertical-align:51.200000pt;}
.v8{vertical-align:102.400000pt;}
.ls4d{letter-spacing:-3.354667pt;}
.ls53{letter-spacing:-2.880000pt;}
.ls45{letter-spacing:-2.560000pt;}
.ls33{letter-spacing:-2.368000pt;}
.ls30{letter-spacing:-1.392000pt;}
.ls27{letter-spacing:-1.066667pt;}
.ls49{letter-spacing:-0.757333pt;}
.ls28{letter-spacing:-0.709333pt;}
.ls58{letter-spacing:-0.704000pt;}
.ls50{letter-spacing:-0.602667pt;}
.ls39{letter-spacing:-0.433067pt;}
.ls2d{letter-spacing:-0.424533pt;}
.ls47{letter-spacing:-0.416000pt;}
.ls51{letter-spacing:-0.392533pt;}
.ls4c{letter-spacing:-0.325333pt;}
.ls48{letter-spacing:-0.288000pt;}
.ls44{letter-spacing:-0.287467pt;}
.ls52{letter-spacing:-0.266133pt;}
.ls59{letter-spacing:-0.256000pt;}
.ls55{letter-spacing:-0.215467pt;}
.ls56{letter-spacing:-0.212267pt;}
.ls3a{letter-spacing:-0.205867pt;}
.ls5a{letter-spacing:-0.192000pt;}
.ls25{letter-spacing:-0.128000pt;}
.ls32{letter-spacing:-0.117867pt;}
.ls36{letter-spacing:-0.114133pt;}
.ls2f{letter-spacing:-0.110933pt;}
.ls43{letter-spacing:-0.069867pt;}
.ls3c{letter-spacing:-0.065067pt;}
.ls34{letter-spacing:-0.064000pt;}
.ls35{letter-spacing:-0.032000pt;}
.ls3d{letter-spacing:-0.024320pt;}
.ls3b{letter-spacing:-0.019840pt;}
.ls24{letter-spacing:-0.014080pt;}
.ls4f{letter-spacing:-0.013440pt;}
.ls29{letter-spacing:-0.010240pt;}
.ls23{letter-spacing:0.000000pt;}
.ls1f{letter-spacing:0.000640pt;}
.ls0{letter-spacing:0.004480pt;}
.lse{letter-spacing:0.011947pt;}
.ls3{letter-spacing:0.019840pt;}
.ls18{letter-spacing:0.037760pt;}
.ls19{letter-spacing:0.063360pt;}
.ls20{letter-spacing:0.064000pt;}
.ls3f{letter-spacing:0.090133pt;}
.ls46{letter-spacing:0.096000pt;}
.ls2a{letter-spacing:0.168533pt;}
.ls41{letter-spacing:0.178133pt;}
.ls37{letter-spacing:0.195200pt;}
.ls3e{letter-spacing:0.197333pt;}
.ls38{letter-spacing:0.197867pt;}
.ls4a{letter-spacing:0.206933pt;}
.ls15{letter-spacing:0.224000pt;}
.ls26{letter-spacing:0.247467pt;}
.ls13{letter-spacing:0.256000pt;}
.ls2c{letter-spacing:0.268800pt;}
.ls10{letter-spacing:0.303360pt;}
.ls4b{letter-spacing:0.314667pt;}
.ls54{letter-spacing:0.352533pt;}
.ls57{letter-spacing:0.512000pt;}
.ls2b{letter-spacing:0.529067pt;}
.ls2e{letter-spacing:0.629333pt;}
.ls11{letter-spacing:0.640000pt;}
.ls31{letter-spacing:0.778667pt;}
.ls42{letter-spacing:0.853333pt;}
.ls40{letter-spacing:0.885333pt;}
.ls1e{letter-spacing:0.943360pt;}
.ls4e{letter-spacing:1.045333pt;}
.ls1a{letter-spacing:3.263360pt;}
.ls1b{letter-spacing:3.903360pt;}
.lsf{letter-spacing:10.144640pt;}
.ls1d{letter-spacing:12.160640pt;}
.ls21{letter-spacing:13.056000pt;}
.ls22{letter-spacing:13.696000pt;}
.ls6{letter-spacing:17.181440pt;}
.ls4{letter-spacing:17.198080pt;}
.ls17{letter-spacing:18.623360pt;}
.ls16{letter-spacing:19.136000pt;}
.ls14{letter-spacing:19.264000pt;}
.ls12{letter-spacing:19.904000pt;}
.ls2{letter-spacing:21.912320pt;}
.ls1{letter-spacing:33.432320pt;}
.ls1c{letter-spacing:37.823360pt;}
.ls5{letter-spacing:199.059840pt;}
.lsa{letter-spacing:235.290027pt;}
.ls9{letter-spacing:239.130027pt;}
.ls7{letter-spacing:242.970027pt;}
.lsb{letter-spacing:267.930027pt;}
.lsd{letter-spacing:291.833600pt;}
.ls8{letter-spacing:303.823360pt;}
.lsc{letter-spacing:309.113600pt;}
.ws3e{word-spacing:-24.660693pt;}
.ws40{word-spacing:-24.628693pt;}
.wse{word-spacing:-24.404693pt;}
.wsb{word-spacing:-24.304427pt;}
.wsc{word-spacing:-24.044160pt;}
.ws3f{word-spacing:-23.953493pt;}
.wsa{word-spacing:-23.943893pt;}
.ws3c{word-spacing:-23.775360pt;}
.ws9{word-spacing:-23.765120pt;}
.ws41{word-spacing:-23.705493pt;}
.wsf{word-spacing:-23.664427pt;}
.wsd{word-spacing:-23.350827pt;}
.ws7{word-spacing:-23.066027pt;}
.ws5c{word-spacing:-22.741973pt;}
.ws6{word-spacing:-22.708693pt;}
.ws10{word-spacing:-22.383360pt;}
.ws59{word-spacing:-22.011307pt;}
.ws58{word-spacing:-21.903573pt;}
.ws61{word-spacing:-21.894507pt;}
.ws60{word-spacing:-21.891840pt;}
.ws5d{word-spacing:-21.734400pt;}
.ws55{word-spacing:-21.701120pt;}
.ws5{word-spacing:-21.696640pt;}
.ws5e{word-spacing:-21.683200pt;}
.ws2a{word-spacing:-21.582507pt;}
.ws56{word-spacing:-21.578773pt;}
.ws17{word-spacing:-21.407360pt;}
.ws5a{word-spacing:-21.371307pt;}
.ws5f{word-spacing:-21.093973pt;}
.ws57{word-spacing:-20.939307pt;}
.ws6e{word-spacing:-19.488000pt;}
.ws5b{word-spacing:-18.341973pt;}
.ws11{word-spacing:-18.058027pt;}
.ws70{word-spacing:-17.631893pt;}
.ws37{word-spacing:-17.476693pt;}
.ws2{word-spacing:-17.279360pt;}
.ws0{word-spacing:-17.265280pt;}
.ws32{word-spacing:-17.214293pt;}
.ws71{word-spacing:-17.063893pt;}
.ws6f{word-spacing:-16.991893pt;}
.ws47{word-spacing:-16.928000pt;}
.ws3d{word-spacing:-15.850240pt;}
.ws4{word-spacing:-14.421120pt;}
.ws6d{word-spacing:-14.399360pt;}
.ws74{word-spacing:-13.504000pt;}
.ws73{word-spacing:-13.056000pt;}
.ws4f{word-spacing:-12.992000pt;}
.ws72{word-spacing:-12.928000pt;}
.ws76{word-spacing:-12.864000pt;}
.ws78{word-spacing:-12.800000pt;}
.ws77{word-spacing:-12.736000pt;}
.ws75{word-spacing:-12.288000pt;}
.ws42{word-spacing:-11.562880pt;}
.ws64{word-spacing:-1.728000pt;}
.ws2c{word-spacing:-1.179520pt;}
.ws4e{word-spacing:-0.896000pt;}
.ws52{word-spacing:-0.832000pt;}
.ws66{word-spacing:-0.547200pt;}
.ws2e{word-spacing:-0.539520pt;}
.ws19{word-spacing:-0.532480pt;}
.ws1{word-spacing:-0.512000pt;}
.ws43{word-spacing:-0.440533pt;}
.ws2d{word-spacing:-0.424320pt;}
.ws18{word-spacing:-0.264960pt;}
.ws51{word-spacing:-0.224000pt;}
.ws8{word-spacing:-0.117120pt;}
.ws1c{word-spacing:-0.096000pt;}
.ws2f{word-spacing:-0.085120pt;}
.ws7b{word-spacing:-0.064000pt;}
.ws65{word-spacing:-0.032000pt;}
.ws7d{word-spacing:0.000000pt;}
.ws6b{word-spacing:0.020480pt;}
.ws79{word-spacing:0.064000pt;}
.ws3b{word-spacing:0.169280pt;}
.ws4d{word-spacing:0.192000pt;}
.ws15{word-spacing:0.240427pt;}
.ws50{word-spacing:0.416000pt;}
.ws6c{word-spacing:0.427520pt;}
.ws4b{word-spacing:0.522667pt;}
.ws68{word-spacing:0.536960pt;}
.ws4c{word-spacing:0.544000pt;}
.ws3{word-spacing:0.640000pt;}
.ws16{word-spacing:0.722560pt;}
.ws4a{word-spacing:0.896000pt;}
.ws7c{word-spacing:1.088000pt;}
.ws6a{word-spacing:1.151680pt;}
.ws45{word-spacing:1.173120pt;}
.ws53{word-spacing:1.184000pt;}
.ws44{word-spacing:1.535680pt;}
.ws69{word-spacing:1.639040pt;}
.ws67{word-spacing:1.729280pt;}
.ws54{word-spacing:5.952000pt;}
.ws22{word-spacing:8.310400pt;}
.ws24{word-spacing:8.909440pt;}
.ws1f{word-spacing:9.008640pt;}
.ws20{word-spacing:9.088320pt;}
.ws27{word-spacing:9.124480pt;}
.ws21{word-spacing:9.138133pt;}
.ws1e{word-spacing:9.153280pt;}
.ws25{word-spacing:9.175680pt;}
.ws46{word-spacing:9.312000pt;}
.ws48{word-spacing:9.344000pt;}
.ws26{word-spacing:9.927040pt;}
.ws23{word-spacing:9.942720pt;}
.ws49{word-spacing:10.016000pt;}
.ws28{word-spacing:10.987520pt;}
.ws29{word-spacing:11.008320pt;}
.ws2b{word-spacing:11.620480pt;}
.ws7a{word-spacing:13.738667pt;}
.ws62{word-spacing:48.064000pt;}
.ws63{word-spacing:48.416000pt;}
.ws12{word-spacing:54.365227pt;}
.ws14{word-spacing:54.913920pt;}
.ws13{word-spacing:55.168320pt;}
.ws1b{word-spacing:67.592960pt;}
.ws1a{word-spacing:71.432960pt;}
.ws30{word-spacing:110.893227pt;}
.ws3a{word-spacing:223.492907pt;}
.ws33{word-spacing:233.604480pt;}
.ws35{word-spacing:233.635200pt;}
.ws39{word-spacing:238.353707pt;}
.ws36{word-spacing:239.641387pt;}
.ws38{word-spacing:240.560427pt;}
.ws31{word-spacing:252.697813pt;}
.ws34{word-spacing:288.408533pt;}
.ws1d{word-spacing:2400.710187pt;}
._6{margin-left:-9.728000pt;}
._8{margin-left:-8.268587pt;}
._3{margin-left:-6.496000pt;}
._31{margin-left:-5.184000pt;}
._4{margin-left:-4.256000pt;}
._2{margin-left:-3.136000pt;}
._0{margin-left:-2.016000pt;}
._1{margin-left:-1.120000pt;}
._5{width:1.280000pt;}
._7{width:2.635947pt;}
._17{width:4.363307pt;}
._2d{width:5.851520pt;}
._2c{width:6.848640pt;}
._2b{width:8.446293pt;}
._12{width:10.510507pt;}
._13{width:12.246400pt;}
._14{width:13.179947pt;}
._c{width:14.262827pt;}
._b{width:15.329707pt;}
._28{width:17.317760pt;}
._26{width:18.746027pt;}
._27{width:19.673173pt;}
._29{width:20.732160pt;}
._1f{width:23.188267pt;}
._f{width:24.730027pt;}
._a{width:26.793600pt;}
._9{width:27.693867pt;}
._2f{width:29.219840pt;}
._e{width:30.453120pt;}
._d{width:31.513387pt;}
._2a{width:37.669120pt;}
._18{width:41.262720pt;}
._16{width:42.547840pt;}
._15{width:43.963307pt;}
._1a{width:60.581120pt;}
._19{width:61.556480pt;}
._11{width:66.023893pt;}
._10{width:67.059627pt;}
._30{width:69.595520pt;}
._1c{width:72.267520pt;}
._1d{width:77.808000pt;}
._1e{width:90.254933pt;}
._1b{width:119.419520pt;}
._2e{width:193.406720pt;}
._21{width:257.022720pt;}
._23{width:293.889280pt;}
._20{width:305.518720pt;}
._22{width:311.680000pt;}
._25{width:564.166827pt;}
._24{width:2866.100907pt;}
.fs8{font-size:56.960000pt;}
.fsa{font-size:64.000000pt;}
.fs3{font-size:71.040000pt;}
.fs9{font-size:78.080000pt;}
.fs2{font-size:85.120000pt;}
.fs6{font-size:96.000000pt;}
.fs4{font-size:106.880000pt;}
.fs5{font-size:117.120000pt;}
.fs1{font-size:128.000000pt;}
.fs7{font-size:149.120000pt;}
.fs0{font-size:224.000000pt;}
.y0{bottom:0.000000pt;}
.y2f{bottom:82.786667pt;}
.y32{bottom:185.186667pt;}
.y46{bottom:266.973333pt;}
.y89{bottom:289.920000pt;}
.y45{bottom:302.173333pt;}
.y88{bottom:309.120000pt;}
.y87{bottom:328.320000pt;}
.y44{bottom:337.373333pt;}
.y75{bottom:363.680000pt;}
.y43{bottom:372.573333pt;}
.y86{bottom:405.186667pt;}
.y42{bottom:407.773333pt;}
.y85{bottom:424.386667pt;}
.y41{bottom:442.973333pt;}
.y84{bottom:443.586667pt;}
.y83{bottom:462.786667pt;}
.y40{bottom:478.173333pt;}
.y82{bottom:481.986667pt;}
.y81{bottom:501.186667pt;}
.y80{bottom:520.386667pt;}
.y7f{bottom:539.586667pt;}
.y76{bottom:552.226667pt;}
.y74{bottom:570.720000pt;}
.y59{bottom:651.106667pt;}
.y2d{bottom:676.226667pt;}
.y58{bottom:683.106667pt;}
.y53{bottom:691.426667pt;}
.y2c{bottom:708.226667pt;}
.y57{bottom:715.106667pt;}
.y52{bottom:723.426667pt;}
.y2b{bottom:740.226667pt;}
.y56{bottom:747.106667pt;}
.y51{bottom:755.426667pt;}
.y55{bottom:779.106667pt;}
.y50{bottom:787.426667pt;}
.y54{bottom:811.106667pt;}
.y16{bottom:826.813333pt;}
.y7e{bottom:838.880000pt;}
.y15{bottom:855.613333pt;}
.y78{bottom:868.093333pt;}
.y14{bottom:896.893333pt;}
.y7d{bottom:1000.893333pt;}
.y7c{bottom:1134.786667pt;}
.y7b{bottom:1278.946667pt;}
.y79{bottom:1300.613333pt;}
.y7a{bottom:1377.413333pt;}
.y3f{bottom:1478.746667pt;}
.y5a{bottom:1586.880000pt;}
.y4f{bottom:1671.493333pt;}
.y64{bottom:1691.746667pt;}
.y62{bottom:1691.866667pt;}
.y4e{bottom:1700.293333pt;}
.y63{bottom:1717.346667pt;}
.y61{bottom:1717.466667pt;}
.y26{bottom:1721.760000pt;}
.y25{bottom:1750.560000pt;}
.y73{bottom:1838.266667pt;}
.y72{bottom:1863.866667pt;}
.y71{bottom:1911.133333pt;}
.y60{bottom:1924.893333pt;}
.y5e{bottom:1929.666667pt;}
.y5f{bottom:1950.493333pt;}
.y5d{bottom:1955.266667pt;}
.y70{bottom:1958.653333pt;}
.y6f{bottom:1984.253333pt;}
.y3e{bottom:1990.906667pt;}
.y24{bottom:1995.746667pt;}
.y3d{bottom:2017.533333pt;}
.y23{bottom:2027.746667pt;}
.y6e{bottom:2032.773333pt;}
.y3c{bottom:2044.160000pt;}
.y6d{bottom:2058.373333pt;}
.y3b{bottom:2070.786667pt;}
.y6c{bottom:2083.973333pt;}
.y22{bottom:2095.066667pt;}
.y3a{bottom:2097.413333pt;}
.y31{bottom:2107.040000pt;}
.y6b{bottom:2109.573333pt;}
.y39{bottom:2124.066667pt;}
.y21{bottom:2127.066667pt;}
.y6a{bottom:2135.173333pt;}
.y38{bottom:2150.693333pt;}
.y69{bottom:2160.773333pt;}
.y37{bottom:2177.306667pt;}
.y4d{bottom:2183.266667pt;}
.y20{bottom:2191.840000pt;}
.y2e{bottom:2196.640000pt;}
.y36{bottom:2203.933333pt;}
.y68{bottom:2208.506667pt;}
.y4c{bottom:2227.906667pt;}
.y35{bottom:2230.560000pt;}
.y67{bottom:2234.106667pt;}
.y1e{bottom:2253.026667pt;}
.y4b{bottom:2253.506667pt;}
.y66{bottom:2259.706667pt;}
.y33{bottom:2266.626667pt;}
.y4a{bottom:2279.106667pt;}
.y30{bottom:2279.426667pt;}
.y1d{bottom:2285.026667pt;}
.y34{bottom:2292.226667pt;}
.y65{bottom:2304.573333pt;}
.y49{bottom:2304.706667pt;}
.y48{bottom:2330.306667pt;}
.y5c{bottom:2343.493333pt;}
.y47{bottom:2355.906667pt;}
.y5b{bottom:2372.293333pt;}
.y29{bottom:2395.013333pt;}
.y1f{bottom:2430.213333pt;}
.y77{bottom:2515.933333pt;}
.y13{bottom:2608.733333pt;}
.y28{bottom:2608.800000pt;}
.y1c{bottom:2624.800000pt;}
.y12{bottom:2643.933333pt;}
.y1b{bottom:2650.400000pt;}
.y2a{bottom:2663.106667pt;}
.y1a{bottom:2676.000000pt;}
.y11{bottom:2679.133333pt;}
.y19{bottom:2701.600000pt;}
.y10{bottom:2714.333333pt;}
.y18{bottom:2727.200000pt;}
.yf{bottom:2749.533333pt;}
.y17{bottom:2752.826667pt;}
.ye{bottom:2784.733333pt;}
.yd{bottom:2819.933333pt;}
.yc{bottom:2855.133333pt;}
.yb{bottom:2890.333333pt;}
.ya{bottom:2925.533333pt;}
.y9{bottom:2960.733333pt;}
.y8{bottom:2995.933333pt;}
.y7{bottom:3031.133333pt;}
.y27{bottom:3137.533333pt;}
.y6{bottom:3207.746667pt;}
.y5{bottom:3253.893333pt;}
.y4{bottom:3293.893333pt;}
.y3{bottom:3348.933333pt;}
.y2{bottom:3421.346667pt;}
.y1{bottom:3488.546667pt;}
.h1a{height:55.468750pt;}
.h5{height:61.570312pt;}
.hd{height:73.773438pt;}
.hc{height:73.898125pt;}
.h15{height:74.967187pt;}
.h14{height:75.050625pt;}
.h16{height:75.073854pt;}
.h19{height:82.968750pt;}
.hb{height:83.203125pt;}
.ha{height:83.343750pt;}
.h18{height:84.268750pt;}
.h7{height:92.632812pt;}
.he{height:92.789375pt;}
.h6{height:93.570312pt;}
.h8{height:101.507812pt;}
.h9{height:101.679375pt;}
.h4{height:112.173438pt;}
.h10{height:117.524792pt;}
.hf{height:129.460625pt;}
.h17{height:144.719375pt;}
.h13{height:176.298125pt;}
.h11{height:179.360000pt;}
.h3{height:194.468750pt;}
.h12{height:358.560000pt;}
.h1{height:3779.333333pt;}
.h2{height:3779.519674pt;}
.h0{height:3779.520000pt;}
.w6{width:51.520000pt;}
.w5{width:121.120000pt;}
.w3{width:125.280000pt;}
.w4{width:146.720000pt;}
.w1{width:2645.333333pt;}
.w2{width:2645.599961pt;}
.w0{width:2645.600000pt;}
.x0{left:0.000000pt;}
.x1a{left:8.706667pt;}
.x1d{left:11.866667pt;}
.x17{left:12.866667pt;}
.x1{left:30.879961pt;}
.x28{left:45.375961pt;}
.x11{left:63.263961pt;}
.x2{left:65.343961pt;}
.x8{left:72.351961pt;}
.x31{left:78.111961pt;}
.xc{left:123.103961pt;}
.xb{left:129.663961pt;}
.xa{left:133.119961pt;}
.x12{left:138.946627pt;}
.x40{left:147.226627pt;}
.xd{left:182.719961pt;}
.xe{left:279.839961pt;}
.x41{left:342.306627pt;}
.x3e{left:638.333294pt;}
.x39{left:680.293294pt;}
.x36{left:690.146627pt;}
.x38{left:692.773294pt;}
.x14{left:700.546627pt;}
.x37{left:793.666627pt;}
.x2d{left:796.733294pt;}
.x2c{left:799.773294pt;}
.x2b{left:801.853294pt;}
.x29{left:804.413294pt;}
.x2a{left:816.733294pt;}
.x2e{left:831.773294pt;}
.x32{left:870.973294pt;}
.x3{left:943.199961pt;}
.x2f{left:1041.439961pt;}
.x3a{left:1055.333294pt;}
.x33{left:1065.093294pt;}
.x34{left:1066.719961pt;}
.x3f{left:1069.506627pt;}
.x3b{left:1085.253294pt;}
.x35{left:1116.479961pt;}
.xf{left:1163.546627pt;}
.x6{left:1329.466627pt;}
.x13{left:1389.826627pt;}
.x3c{left:1431.173294pt;}
.x3d{left:1582.626627pt;}
.x15{left:1666.973294pt;}
.x16{left:1715.200000pt;}
.x30{left:1716.319961pt;}
.x25{left:1753.826627pt;}
.x24{left:1754.786627pt;}
.x23{left:1755.906627pt;}
.x27{left:1759.586627pt;}
.x26{left:1762.146627pt;}
.x5{left:1778.559961pt;}
.x4{left:1783.679961pt;}
.x10{left:1807.386627pt;}
.x9{left:1819.613294pt;}
.x18{left:1870.333294pt;}
.x19{left:1920.800000pt;}
.x1b{left:1969.506627pt;}
.x1c{left:2067.360000pt;}
.x1e{left:2112.826627pt;}
.x1f{left:2205.666627pt;}
.x42{left:2211.586627pt;}
.x20{left:2224.866627pt;}
.x7{left:2387.493294pt;}
.x21{left:2425.733294pt;}
.x44{left:2446.493294pt;}
.x46{left:2480.346627pt;}
.x45{left:2502.013294pt;}
.x43{left:2520.186627pt;}
.x22{left:2536.480000pt;}
}




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