
    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_422ce5f5c4b173110710cb5a.woff')format("woff");}.ff1{font-family:ff1;line-height:0.850586;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_850b44d54117102b099746ea.woff')format("woff");}.ff2{font-family:ff2;line-height:0.859863;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_dd914dfcabaae52b2530c42e.woff')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_e0289d94b7a382e6c4f6aa34.woff')format("woff");}.ff4{font-family:ff4;line-height:1.909180;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_afefd30eb19dc0da6344e105.woff')format("woff");}.ff5{font-family:ff5;line-height:0.850639;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_cbcd5254cb1ea6dd2b7ff103.woff')format("woff");}.ff6{font-family:ff6;line-height:0.919434;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);}
.vd{vertical-align:-74.182200px;}
.vc{vertical-align:-63.360600px;}
.vb{vertical-align:-41.040000px;}
.v2{vertical-align:-29.520000px;}
.v9{vertical-align:-23.760600px;}
.v4{vertical-align:-22.319400px;}
.v11{vertical-align:-21.120000px;}
.va{vertical-align:-16.560000px;}
.vf{vertical-align:-14.383800px;}
.v12{vertical-align:-7.019400px;}
.v10{vertical-align:-1.442880px;}
.v0{vertical-align:0.000000px;}
.v6{vertical-align:22.321800px;}
.v3{vertical-align:29.520000px;}
.v8{vertical-align:36.000600px;}
.v7{vertical-align:43.348800px;}
.v1{vertical-align:44.623920px;}
.v5{vertical-align:51.838800px;}
.v15{vertical-align:60.841440px;}
.v14{vertical-align:70.460640px;}
.v13{vertical-align:72.023760px;}
.ve{vertical-align:93.614400px;}
.v16{vertical-align:148.496400px;}
.ls43{letter-spacing:-3.006000px;}
.ls33{letter-spacing:-2.545920px;}
.ls3a{letter-spacing:-1.563120px;}
.ls2d{letter-spacing:-1.347840px;}
.ls38{letter-spacing:-0.898560px;}
.ls31{letter-spacing:-0.480960px;}
.ls3f{letter-spacing:-0.475200px;}
.ls3b{letter-spacing:-0.360720px;}
.ls2b{letter-spacing:-0.337680px;}
.ls35{letter-spacing:-0.324000px;}
.ls2e{letter-spacing:-0.299520px;}
.ls32{letter-spacing:-0.288000px;}
.ls40{letter-spacing:-0.276480px;}
.ls30{letter-spacing:-0.240480px;}
.ls3c{letter-spacing:-0.216000px;}
.ls2c{letter-spacing:-0.149760px;}
.ls2f{letter-spacing:-0.144000px;}
.ls39{letter-spacing:-0.120240px;}
.ls36{letter-spacing:-0.108000px;}
.ls2a{letter-spacing:0.000000px;}
.ls1c{letter-spacing:0.072000px;}
.ls3d{letter-spacing:0.079200px;}
.ls3e{letter-spacing:0.108000px;}
.lsb{letter-spacing:0.120240px;}
.ls28{letter-spacing:0.138240px;}
.ls6{letter-spacing:0.144000px;}
.ls0{letter-spacing:0.149760px;}
.ls1d{letter-spacing:0.158400px;}
.ls5{letter-spacing:0.201600px;}
.ls25{letter-spacing:0.216000px;}
.ls1{letter-spacing:0.218160px;}
.ls1f{letter-spacing:0.237600px;}
.ls12{letter-spacing:0.240480px;}
.ls41{letter-spacing:0.276480px;}
.ls11{letter-spacing:0.288000px;}
.ls2{letter-spacing:0.299520px;}
.ls16{letter-spacing:0.316800px;}
.ls34{letter-spacing:0.324000px;}
.ls37{letter-spacing:0.336960px;}
.ls42{letter-spacing:0.360720px;}
.ls10{letter-spacing:0.703872px;}
.lsd{letter-spacing:0.748800px;}
.ls22{letter-spacing:0.756000px;}
.ls3{letter-spacing:0.898560px;}
.lsf{letter-spacing:1.048320px;}
.ls15{letter-spacing:3.390600px;}
.ls18{letter-spacing:3.391200px;}
.lsa{letter-spacing:4.521600px;}
.ls9{letter-spacing:9.561600px;}
.ls8{letter-spacing:10.281600px;}
.ls20{letter-spacing:16.848000px;}
.ls21{letter-spacing:17.496000px;}
.ls23{letter-spacing:17.604000px;}
.ls1b{letter-spacing:18.144000px;}
.ls27{letter-spacing:26.403840px;}
.lse{letter-spacing:29.053440px;}
.lsc{letter-spacing:29.802240px;}
.ls26{letter-spacing:30.240000px;}
.ls17{letter-spacing:31.248000px;}
.ls24{letter-spacing:32.400000px;}
.ls1e{letter-spacing:33.480000px;}
.ls1a{letter-spacing:36.511200px;}
.ls7{letter-spacing:37.948920px;}
.ls13{letter-spacing:37.951200px;}
.ls19{letter-spacing:55.756800px;}
.ls4{letter-spacing:94.320000px;}
.ls14{letter-spacing:132.443400px;}
.ls29{letter-spacing:540.839520px;}
.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;}
}
.wsa{word-spacing:-144.000000px;}
.ws24{word-spacing:-108.000000px;}
.wsb{word-spacing:-105.120000px;}
.wsc{word-spacing:-86.400000px;}
.ws29{word-spacing:-79.437600px;}
.ws27{word-spacing:-79.358400px;}
.ws1d{word-spacing:-79.200000px;}
.ws28{word-spacing:-78.724800px;}
.ws31{word-spacing:-75.600000px;}
.ws25{word-spacing:-69.876000px;}
.ws8{word-spacing:-55.584000px;}
.ws7{word-spacing:-55.296000px;}
.wse{word-spacing:-48.499200px;}
.ws1e{word-spacing:-46.371600px;}
.ws26{word-spacing:-41.904000px;}
.ws1{word-spacing:-29.203200px;}
.ws14{word-spacing:-29.053440px;}
.ws2{word-spacing:-28.903680px;}
.ws3{word-spacing:-28.753920px;}
.ws4{word-spacing:-28.604160px;}
.ws16{word-spacing:-28.005120px;}
.wsd{word-spacing:-27.792000px;}
.ws18{word-spacing:-27.504000px;}
.ws37{word-spacing:-26.818560px;}
.ws35{word-spacing:-26.680320px;}
.ws33{word-spacing:-26.403840px;}
.ws9{word-spacing:-26.357760px;}
.ws2a{word-spacing:-24.084000px;}
.ws2b{word-spacing:-23.976000px;}
.ws1c{word-spacing:-23.760000px;}
.ws2c{word-spacing:-23.652000px;}
.ws20{word-spacing:-23.544000px;}
.ws13{word-spacing:-23.446800px;}
.ws30{word-spacing:-23.436000px;}
.ws1b{word-spacing:-23.326560px;}
.ws5{word-spacing:-23.206320px;}
.ws32{word-spacing:-23.086080px;}
.ws3d{word-spacing:-22.965840px;}
.ws3a{word-spacing:-22.725360px;}
.ws1a{word-spacing:-21.643200px;}
.ws4b{word-spacing:-21.060000px;}
.ws10{word-spacing:-20.844000px;}
.ws22{word-spacing:-20.736000px;}
.ws39{word-spacing:-20.200320px;}
.ws19{word-spacing:-15.424560px;}
.ws6c{word-spacing:-7.056000px;}
.ws2f{word-spacing:-6.372000px;}
.ws2d{word-spacing:-6.156000px;}
.ws76{word-spacing:-5.241600px;}
.ws36{word-spacing:-2.737152px;}
.ws87{word-spacing:-2.626560px;}
.ws62{word-spacing:-2.525040px;}
.ws74{word-spacing:-2.190240px;}
.ws7b{word-spacing:-2.164320px;}
.ws78{word-spacing:-2.160000px;}
.ws86{word-spacing:-1.935360px;}
.ws8e{word-spacing:-1.923840px;}
.ws6f{word-spacing:-1.872000px;}
.ws77{word-spacing:-1.803600px;}
.ws83{word-spacing:-1.797120px;}
.ws89{word-spacing:-1.683360px;}
.ws85{word-spacing:-1.658880px;}
.ws7d{word-spacing:-1.563120px;}
.ws8c{word-spacing:-1.442880px;}
.ws6b{word-spacing:-1.440000px;}
.ws34{word-spacing:-1.423872px;}
.ws45{word-spacing:-1.418832px;}
.ws61{word-spacing:-1.296000px;}
.ws82{word-spacing:-1.244160px;}
.ws79{word-spacing:-1.152000px;}
.ws64{word-spacing:-1.082160px;}
.ws71{word-spacing:-0.972000px;}
.ws8b{word-spacing:-0.961920px;}
.wsf{word-spacing:-0.864000px;}
.ws88{word-spacing:-0.829440px;}
.ws69{word-spacing:-0.720000px;}
.ws5f{word-spacing:-0.576000px;}
.ws80{word-spacing:-0.480960px;}
.ws4f{word-spacing:-0.450000px;}
.ws6e{word-spacing:-0.432000px;}
.ws81{word-spacing:-0.414720px;}
.ws4e{word-spacing:-0.360720px;}
.ws5c{word-spacing:-0.299520px;}
.ws70{word-spacing:-0.240480px;}
.ws7e{word-spacing:-0.237600px;}
.ws7f{word-spacing:-0.216000px;}
.ws59{word-spacing:-0.149760px;}
.ws8f{word-spacing:-0.120240px;}
.ws1f{word-spacing:-0.108000px;}
.ws4d{word-spacing:0.000000px;}
.ws63{word-spacing:0.120240px;}
.ws6a{word-spacing:0.144000px;}
.ws5d{word-spacing:0.149760px;}
.ws6{word-spacing:0.192384px;}
.ws73{word-spacing:0.216000px;}
.ws7c{word-spacing:0.240480px;}
.ws46{word-spacing:0.264528px;}
.ws84{word-spacing:0.276480px;}
.ws0{word-spacing:0.289440px;}
.ws5e{word-spacing:0.299520px;}
.ws8a{word-spacing:0.360720px;}
.ws60{word-spacing:0.432000px;}
.ws53{word-spacing:0.449280px;}
.ws65{word-spacing:0.576000px;}
.ws7a{word-spacing:0.721440px;}
.ws52{word-spacing:0.748800px;}
.ws4c{word-spacing:0.828000px;}
.ws8d{word-spacing:0.841680px;}
.ws15{word-spacing:0.958464px;}
.ws72{word-spacing:1.080000px;}
.ws54{word-spacing:1.198080px;}
.ws5a{word-spacing:1.347840px;}
.ws56{word-spacing:1.497600px;}
.ws75{word-spacing:1.647360px;}
.ws66{word-spacing:1.728000px;}
.ws5b{word-spacing:1.797120px;}
.ws50{word-spacing:1.800000px;}
.ws51{word-spacing:1.946880px;}
.ws58{word-spacing:2.246400px;}
.ws12{word-spacing:2.291328px;}
.ws67{word-spacing:2.396160px;}
.ws57{word-spacing:2.695680px;}
.ws6d{word-spacing:2.995200px;}
.ws68{word-spacing:3.444480px;}
.ws11{word-spacing:3.549312px;}
.ws17{word-spacing:3.714048px;}
.ws55{word-spacing:3.744000px;}
.ws23{word-spacing:5.414400px;}
.ws3b{word-spacing:5.843664px;}
.ws48{word-spacing:29.422728px;}
.ws21{word-spacing:89.998200px;}
.ws38{word-spacing:108.660888px;}
.ws40{word-spacing:109.021608px;}
.ws47{word-spacing:210.985128px;}
.ws3e{word-spacing:214.749000px;}
.ws43{word-spacing:215.071200px;}
.ws3f{word-spacing:224.350200px;}
.ws44{word-spacing:224.672400px;}
.ws3c{word-spacing:285.089400px;}
.ws41{word-spacing:285.411600px;}
.ws42{word-spacing:496.290600px;}
.ws2e{word-spacing:1050.447600px;}
.ws4a{word-spacing:1336.081200px;}
.ws49{word-spacing:1374.991200px;}
._17{margin-left:-58.035000px;}
._13{margin-left:-19.889856px;}
._7{margin-left:-18.381744px;}
._c{margin-left:-14.832600px;}
._11{margin-left:-12.932640px;}
._9{margin-left:-11.909664px;}
._12{margin-left:-10.880064px;}
._5{margin-left:-9.354672px;}
._1c{margin-left:-8.176320px;}
._8{margin-left:-6.844032px;}
._a{margin-left:-5.589360px;}
._0{margin-left:-4.474800px;}
._1{margin-left:-3.049200px;}
._4{margin-left:-1.087056px;}
._3{width:1.128816px;}
._6{width:2.395296px;}
._b{width:3.637008px;}
._d{width:5.141544px;}
._10{width:6.543888px;}
._e{width:10.459128px;}
._18{width:12.211056px;}
._19{width:19.774656px;}
._f{width:26.628168px;}
._16{width:30.236400px;}
._2{width:79.200000px;}
._1a{width:80.367000px;}
._1b{width:233.150256px;}
._1e{width:266.946264px;}
._1d{width:329.591304px;}
._15{width:489.799800px;}
._14{width:572.608224px;}
.fc4{color:rgb(245,102,0);}
.fc2{color:rgb(110,4,1);}
.fc3{color:rgb(234,70,7);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fs2{font-size:48.240000px;}
.fsf{font-size:64.800000px;}
.fse{font-size:79.200000px;}
.fsd{font-size:79.920000px;}
.fsc{font-size:84.240000px;}
.fsa{font-size:86.400000px;}
.fs6{font-size:100.080000px;}
.fs9{font-size:105.120000px;}
.fsb{font-size:108.000000px;}
.fs3{font-size:120.240000px;}
.fs10{font-size:138.240000px;}
.fs7{font-size:144.000000px;}
.fs5{font-size:149.760000px;}
.fs8{font-size:288.000000px;}
.fs1{font-size:396.000000px;}
.fs4{font-size:450.000000px;}
.fs0{font-size:828.000000px;}
.y0{bottom:0.000000px;}
.yf4{bottom:116.289000px;}
.ye7{bottom:116.303700px;}
.ye0{bottom:116.305050px;}
.ycd{bottom:116.337300px;}
.yf0{bottom:116.348700px;}
.yc5{bottom:116.350950px;}
.ydc{bottom:116.365050px;}
.yd2{bottom:116.380050px;}
.yc1{bottom:116.397450px;}
.yc9{bottom:116.397600px;}
.yd8{bottom:116.424900px;}
.y3{bottom:121.852650px;}
.yeb{bottom:224.303700px;}
.yea{bottom:260.303700px;}
.y43{bottom:317.320920px;}
.ybe{bottom:336.278130px;}
.y82{bottom:345.209850px;}
.ybd{bottom:385.940850px;}
.y81{bottom:399.198330px;}
.y59{bottom:416.010150px;}
.ybc{bottom:435.638130px;}
.y80{bottom:453.186810px;}
.ybb{bottom:485.300850px;}
.y7f{bottom:507.175290px;}
.yba{bottom:534.998130px;}
.y7e{bottom:561.163770px;}
.yb9{bottom:584.660850px;}
.y7d{bottom:615.152250px;}
.yb8{bottom:634.358130px;}
.y7c{bottom:669.140730px;}
.y5b{bottom:677.178900px;}
.yb7{bottom:684.020850px;}
.y7b{bottom:723.129210px;}
.yb6{bottom:733.718130px;}
.y62{bottom:753.942300px;}
.y7a{bottom:777.117690px;}
.yb5{bottom:783.380850px;}
.y5e{bottom:793.042200px;}
.y61{bottom:800.523150px;}
.y79{bottom:831.106170px;}
.yb4{bottom:833.078130px;}
.y5d{bottom:843.105450px;}
.y60{bottom:847.104150px;}
.yb3{bottom:882.740850px;}
.y78{bottom:885.094650px;}
.y5c{bottom:892.218450px;}
.y5f{bottom:893.684700px;}
.y5a{bottom:894.818550px;}
.yb2{bottom:932.438130px;}
.y77{bottom:939.083130px;}
.yb1{bottom:982.100850px;}
.y76{bottom:993.071610px;}
.y58{bottom:1001.126850px;}
.yb0{bottom:1031.798130px;}
.y75{bottom:1047.060090px;}
.y57{bottom:1052.966850px;}
.yaf{bottom:1081.460850px;}
.y74{bottom:1101.048570px;}
.y56{bottom:1104.806850px;}
.yae{bottom:1131.158130px;}
.y73{bottom:1155.037050px;}
.y55{bottom:1156.646850px;}
.yad{bottom:1180.820850px;}
.y54{bottom:1209.038220px;}
.yac{bottom:1231.581000px;}
.y53{bottom:1263.026700px;}
.y72{bottom:1287.598890px;}
.y71{bottom:1332.601770px;}
.y35{bottom:1363.333140px;}
.y52{bottom:1370.486700px;}
.y70{bottom:1377.604650px;}
.y34{bottom:1417.321620px;}
.y51{bottom:1422.326700px;}
.y33{bottom:1471.310100px;}
.y50{bottom:1474.166700px;}
.y6c{bottom:1493.408340px;}
.y32{bottom:1525.298580px;}
.y4f{bottom:1526.546700px;}
.y6b{bottom:1538.411220px;}
.y31{bottom:1579.287060px;}
.y4e{bottom:1580.006850px;}
.y6a{bottom:1583.414100px;}
.y30{bottom:1633.275540px;}
.y4d{bottom:1634.366850px;}
.y6f{bottom:1669.212600px;}
.y2f{bottom:1687.264020px;}
.y4c{bottom:1689.086850px;}
.y6e{bottom:1712.412600px;}
.y2e{bottom:1741.252500px;}
.y4b{bottom:1742.546550px;}
.y6d{bottom:1756.152450px;}
.y2d{bottom:1795.240980px;}
.y4a{bottom:1796.906850px;}
.ye9{bottom:1817.460000px;}
.y68{bottom:1835.427600px;}
.yf3{bottom:1841.400000px;}
.y2c{bottom:1849.229460px;}
.y49{bottom:1851.086850px;}
.yef{bottom:1885.140000px;}
.y2b{bottom:1903.217940px;}
.y48{bottom:1903.466700px;}
.y69{bottom:1909.849050px;}
.ye6{bottom:1943.460000px;}
.y2a{bottom:1957.206420px;}
.yf2{bottom:1957.689000px;}
.y42{bottom:1963.496700px;}
.yee{bottom:1964.351820px;}
.yed{bottom:2000.363700px;}
.yf1{bottom:2001.488700px;}
.y29{bottom:2011.194900px;}
.ye4{bottom:2041.742130px;}
.yec{bottom:2041.763700px;}
.ye8{bottom:2059.763700px;}
.ye3{bottom:2060.138850px;}
.y28{bottom:2065.183380px;}
.ya3{bottom:2070.113400px;}
.ye5{bottom:2077.754010px;}
.ya4{bottom:2110.928700px;}
.y27{bottom:2119.171860px;}
.ye2{bottom:2120.363670px;}
.ya6{bottom:2135.801550px;}
.ya5{bottom:2145.328500px;}
.y26{bottom:2173.160340px;}
.ya7{bottom:2184.151650px;}
.y92{bottom:2206.167600px;}
.y65{bottom:2207.481000px;}
.yaa{bottom:2209.418400px;}
.ya8{bottom:2214.008400px;}
.y9e{bottom:2221.287750px;}
.y25{bottom:2227.148820px;}
.ya2{bottom:2238.308850px;}
.y91{bottom:2238.567600px;}
.ya9{bottom:2244.734400px;}
.y64{bottom:2259.321000px;}
.y24{bottom:2281.137300px;}
.y9f{bottom:2283.013800px;}
.yab{bottom:2295.053250px;}
.y63{bottom:2311.700850px;}
.y23{bottom:2335.125780px;}
.y94{bottom:2363.616300px;}
.y8f{bottom:2380.105050px;}
.y67{bottom:2388.601170px;}
.y22{bottom:2389.114260px;}
.y90{bottom:2390.365050px;}
.y93{bottom:2396.016300px;}
.y8b{bottom:2408.328720px;}
.y66{bottom:2424.613050px;}
.y21{bottom:2443.102740px;}
.y8a{bottom:2444.340600px;}
.ya1{bottom:2485.441800px;}
.y20{bottom:2497.091220px;}
.y8d{bottom:2527.069020px;}
.y9d{bottom:2541.362400px;}
.y1f{bottom:2551.091220px;}
.y97{bottom:2553.050550px;}
.y8c{bottom:2563.080900px;}
.y99{bottom:2569.430550px;}
.y9c{bottom:2573.762400px;}
.y96{bottom:2587.430550px;}
.y1e{bottom:2605.102740px;}
.ya0{bottom:2605.204800px;}
.y98{bottom:2627.755950px;}
.y9a{bottom:2639.343150px;}
.y89{bottom:2643.893700px;}
.y1d{bottom:2659.091220px;}
.y95{bottom:2669.096400px;}
.y9b{bottom:2672.700000px;}
.y1c{bottom:2713.102740px;}
.y8e{bottom:2725.099950px;}
.y1b{bottom:2767.091220px;}
.y47{bottom:2799.065640px;}
.y1a{bottom:2821.263870px;}
.ydf{bottom:2831.400000px;}
.y46{bottom:2853.054120px;}
.yf5{bottom:2865.021300px;}
.ydb{bottom:2875.140000px;}
.y19{bottom:2875.252350px;}
.y45{bottom:2907.042600px;}
.yd7{bottom:2918.880000px;}
.y18{bottom:2929.240830px;}
.ye1{bottom:2947.705050px;}
.yde{bottom:2949.460200px;}
.y4{bottom:2975.577600px;}
.yd1{bottom:2977.200000px;}
.y17{bottom:2983.229310px;}
.ydd{bottom:2991.505050px;}
.yda{bottom:2993.260050px;}
.yd9{bottom:3035.304900px;}
.yd6{bottom:3037.060050px;}
.y16{bottom:3037.217790px;}
.y88{bottom:3069.138300px;}
.yd4{bottom:3075.574110px;}
.y15{bottom:3091.206270px;}
.yd3{bottom:3093.580050px;}
.yd0{bottom:3093.955050px;}
.yd5{bottom:3111.585990px;}
.ycc{bottom:3129.118500px;}
.y14{bottom:3145.194750px;}
.ycf{bottom:3154.193640px;}
.yc8{bottom:3172.858500px;}
.y87{bottom:3194.407800px;}
.y13{bottom:3199.183230px;}
.yc4{bottom:3213.180000px;}
.yce{bottom:3245.455800px;}
.ycb{bottom:3247.211100px;}
.y12{bottom:3253.171710px;}
.y86{bottom:3254.169600px;}
.yc0{bottom:3261.958500px;}
.yca{bottom:3289.256100px;}
.yc7{bottom:3291.010950px;}
.y11{bottom:3307.160190px;}
.y84{bottom:3324.624570px;}
.yc6{bottom:3329.530950px;}
.yc3{bottom:3334.810950px;}
.y83{bottom:3349.799250px;}
.y10{bottom:3361.148670px;}
.yc2{bottom:3378.355950px;}
.ybf{bottom:3378.730950px;}
.yf{bottom:3415.137150px;}
.y5{bottom:3426.327300px;}
.ye{bottom:3469.125630px;}
.y41{bottom:3483.269550px;}
.y85{bottom:3511.569600px;}
.yd{bottom:3523.114110px;}
.y40{bottom:3535.109550px;}
.yc{bottom:3577.102590px;}
.y3a{bottom:3585.621780px;}
.y3f{bottom:3586.949700px;}
.yb{bottom:3631.091070px;}
.y39{bottom:3639.610260px;}
.y3e{bottom:3639.647700px;}
.ya{bottom:3685.079550px;}
.y38{bottom:3693.598740px;}
.y3d{bottom:3693.636180px;}
.y9{bottom:3739.068030px;}
.y37{bottom:3747.587220px;}
.y3c{bottom:3747.624660px;}
.y36{bottom:3801.575700px;}
.y3b{bottom:3801.613140px;}
.y8{bottom:3802.079550px;}
.y44{bottom:3913.998450px;}
.y7{bottom:4029.820350px;}
.y6{bottom:4164.820350px;}
.y2{bottom:4580.084850px;}
.y1{bottom:4722.302100px;}
.h4{height:33.494766px;}
.h10{height:56.722148px;}
.hf{height:72.720703px;}
.h1d{height:73.941183px;}
.h1f{height:73.941783px;}
.h20{height:73.942383px;}
.h1c{height:73.942983px;}
.h16{height:75.726562px;}
.h13{height:80.140430px;}
.h15{height:80.146777px;}
.h5{height:80.962383px;}
.h14{height:89.813920px;}
.h1a{height:93.082500px;}
.h12{height:95.984164px;}
.hc{height:96.960938px;}
.h19{height:98.226562px;}
.h7{height:99.815625px;}
.h8{height:100.839375px;}
.h9{height:112.011772px;}
.ha{height:112.656292px;}
.hb{height:112.702372px;}
.h17{height:115.333303px;}
.h11{height:124.311183px;}
.h18{height:133.945312px;}
.h21{height:150.601070px;}
.h1e{height:152.164190px;}
.he{height:178.593750px;}
.hd{height:193.921875px;}
.h23{height:229.458783px;}
.h1b{height:252.180000px;}
.h3{height:266.642578px;}
.h6{height:303.002930px;}
.h22{height:504.178500px;}
.h2{height:551.865234px;}
.h0{height:5055.480000px;}
.h1{height:5055.750000px;}
.w4{width:151.018500px;}
.w3{width:199.980000px;}
.w6{width:255.240000px;}
.w5{width:285.120000px;}
.w2{width:389.340000px;}
.w0{width:3575.880000px;}
.w1{width:3576.000000px;}
.x0{left:0.000000px;}
.x6{left:136.987500px;}
.x1{left:165.768900px;}
.x9{left:805.518600px;}
.x5{left:810.796050px;}
.x8{left:812.550000px;}
.x3{left:814.376250px;}
.x3e{left:826.128150px;}
.xa{left:828.378600px;}
.x3d{left:839.707500px;}
.x36{left:859.209150px;}
.xb{left:868.878750px;}
.x20{left:887.145840px;}
.x1f{left:897.396300px;}
.x1e{left:925.547400px;}
.x19{left:934.251900px;}
.x37{left:954.727050px;}
.x1b{left:960.626550px;}
.x22{left:1030.807260px;}
.x17{left:1045.675200px;}
.xd{left:1050.007800px;}
.x21{left:1064.294100px;}
.x1a{left:1075.801800px;}
.x38{left:1095.293850px;}
.x3c{left:1142.506350px;}
.x3b{left:1249.858350px;}
.x3a{left:1253.989950px;}
.x39{left:1293.965100px;}
.x10{left:1335.843000px;}
.x23{left:1337.526600px;}
.xe{left:1339.619700px;}
.x29{left:1347.778950px;}
.x2a{left:1358.782800px;}
.xc{left:1398.521700px;}
.x18{left:1483.972320px;}
.x1d{left:1497.334500px;}
.x2c{left:1499.904450px;}
.x2b{left:1506.022650px;}
.x24{left:1527.410700px;}
.x1c{left:1567.153500px;}
.x25{left:1591.850700px;}
.x2d{left:1606.102650px;}
.x26{left:1625.688900px;}
.x33{left:1682.777100px;}
.xf{left:1728.700500px;}
.x30{left:1767.154200px;}
.x35{left:1768.320600px;}
.x2{left:1778.653200px;}
.x31{left:1789.303200px;}
.x34{left:1807.247100px;}
.x2e{left:1819.516800px;}
.x2f{left:1843.096800px;}
.x27{left:1915.893300px;}
.x28{left:1932.444300px;}
.x32{left:1957.027050px;}
.x4{left:2143.599390px;}
.x11{left:2148.675000px;}
.x7{left:2166.472650px;}
.x46{left:2282.095410px;}
.x16{left:2330.612700px;}
.x4d{left:2350.213500px;}
.x15{left:2367.569220px;}
.x14{left:2372.773380px;}
.x47{left:2433.026670px;}
.x42{left:2505.420000px;}
.x48{left:2583.180000px;}
.x3f{left:2644.920000px;}
.x40{left:2663.838300px;}
.x43{left:2706.083700px;}
.x49{left:2734.942050px;}
.x4a{left:2885.040000px;}
.x44{left:2905.922580px;}
.x13{left:2954.890500px;}
.x41{left:3034.887750px;}
.x45{left:3163.897500px;}
.x4b{left:3169.980000px;}
.x4c{left:3239.168700px;}
.x12{left:3244.784250px;}
@media print{
.vd{vertical-align:-65.939733pt;}
.vc{vertical-align:-56.320533pt;}
.vb{vertical-align:-36.480000pt;}
.v2{vertical-align:-26.240000pt;}
.v9{vertical-align:-21.120533pt;}
.v4{vertical-align:-19.839467pt;}
.v11{vertical-align:-18.773333pt;}
.va{vertical-align:-14.720000pt;}
.vf{vertical-align:-12.785600pt;}
.v12{vertical-align:-6.239467pt;}
.v10{vertical-align:-1.282560pt;}
.v0{vertical-align:0.000000pt;}
.v6{vertical-align:19.841600pt;}
.v3{vertical-align:26.240000pt;}
.v8{vertical-align:32.000533pt;}
.v7{vertical-align:38.532267pt;}
.v1{vertical-align:39.665707pt;}
.v5{vertical-align:46.078933pt;}
.v15{vertical-align:54.081280pt;}
.v14{vertical-align:62.631680pt;}
.v13{vertical-align:64.021120pt;}
.ve{vertical-align:83.212800pt;}
.v16{vertical-align:131.996800pt;}
.ls43{letter-spacing:-2.672000pt;}
.ls33{letter-spacing:-2.263040pt;}
.ls3a{letter-spacing:-1.389440pt;}
.ls2d{letter-spacing:-1.198080pt;}
.ls38{letter-spacing:-0.798720pt;}
.ls31{letter-spacing:-0.427520pt;}
.ls3f{letter-spacing:-0.422400pt;}
.ls3b{letter-spacing:-0.320640pt;}
.ls2b{letter-spacing:-0.300160pt;}
.ls35{letter-spacing:-0.288000pt;}
.ls2e{letter-spacing:-0.266240pt;}
.ls32{letter-spacing:-0.256000pt;}
.ls40{letter-spacing:-0.245760pt;}
.ls30{letter-spacing:-0.213760pt;}
.ls3c{letter-spacing:-0.192000pt;}
.ls2c{letter-spacing:-0.133120pt;}
.ls2f{letter-spacing:-0.128000pt;}
.ls39{letter-spacing:-0.106880pt;}
.ls36{letter-spacing:-0.096000pt;}
.ls2a{letter-spacing:0.000000pt;}
.ls1c{letter-spacing:0.064000pt;}
.ls3d{letter-spacing:0.070400pt;}
.ls3e{letter-spacing:0.096000pt;}
.lsb{letter-spacing:0.106880pt;}
.ls28{letter-spacing:0.122880pt;}
.ls6{letter-spacing:0.128000pt;}
.ls0{letter-spacing:0.133120pt;}
.ls1d{letter-spacing:0.140800pt;}
.ls5{letter-spacing:0.179200pt;}
.ls25{letter-spacing:0.192000pt;}
.ls1{letter-spacing:0.193920pt;}
.ls1f{letter-spacing:0.211200pt;}
.ls12{letter-spacing:0.213760pt;}
.ls41{letter-spacing:0.245760pt;}
.ls11{letter-spacing:0.256000pt;}
.ls2{letter-spacing:0.266240pt;}
.ls16{letter-spacing:0.281600pt;}
.ls34{letter-spacing:0.288000pt;}
.ls37{letter-spacing:0.299520pt;}
.ls42{letter-spacing:0.320640pt;}
.ls10{letter-spacing:0.625664pt;}
.lsd{letter-spacing:0.665600pt;}
.ls22{letter-spacing:0.672000pt;}
.ls3{letter-spacing:0.798720pt;}
.lsf{letter-spacing:0.931840pt;}
.ls15{letter-spacing:3.013867pt;}
.ls18{letter-spacing:3.014400pt;}
.lsa{letter-spacing:4.019200pt;}
.ls9{letter-spacing:8.499200pt;}
.ls8{letter-spacing:9.139200pt;}
.ls20{letter-spacing:14.976000pt;}
.ls21{letter-spacing:15.552000pt;}
.ls23{letter-spacing:15.648000pt;}
.ls1b{letter-spacing:16.128000pt;}
.ls27{letter-spacing:23.470080pt;}
.lse{letter-spacing:25.825280pt;}
.lsc{letter-spacing:26.490880pt;}
.ls26{letter-spacing:26.880000pt;}
.ls17{letter-spacing:27.776000pt;}
.ls24{letter-spacing:28.800000pt;}
.ls1e{letter-spacing:29.760000pt;}
.ls1a{letter-spacing:32.454400pt;}
.ls7{letter-spacing:33.732373pt;}
.ls13{letter-spacing:33.734400pt;}
.ls19{letter-spacing:49.561600pt;}
.ls4{letter-spacing:83.840000pt;}
.ls14{letter-spacing:117.727467pt;}
.ls29{letter-spacing:480.746240pt;}
.wsa{word-spacing:-128.000000pt;}
.ws24{word-spacing:-96.000000pt;}
.wsb{word-spacing:-93.440000pt;}
.wsc{word-spacing:-76.800000pt;}
.ws29{word-spacing:-70.611200pt;}
.ws27{word-spacing:-70.540800pt;}
.ws1d{word-spacing:-70.400000pt;}
.ws28{word-spacing:-69.977600pt;}
.ws31{word-spacing:-67.200000pt;}
.ws25{word-spacing:-62.112000pt;}
.ws8{word-spacing:-49.408000pt;}
.ws7{word-spacing:-49.152000pt;}
.wse{word-spacing:-43.110400pt;}
.ws1e{word-spacing:-41.219200pt;}
.ws26{word-spacing:-37.248000pt;}
.ws1{word-spacing:-25.958400pt;}
.ws14{word-spacing:-25.825280pt;}
.ws2{word-spacing:-25.692160pt;}
.ws3{word-spacing:-25.559040pt;}
.ws4{word-spacing:-25.425920pt;}
.ws16{word-spacing:-24.893440pt;}
.wsd{word-spacing:-24.704000pt;}
.ws18{word-spacing:-24.448000pt;}
.ws37{word-spacing:-23.838720pt;}
.ws35{word-spacing:-23.715840pt;}
.ws33{word-spacing:-23.470080pt;}
.ws9{word-spacing:-23.429120pt;}
.ws2a{word-spacing:-21.408000pt;}
.ws2b{word-spacing:-21.312000pt;}
.ws1c{word-spacing:-21.120000pt;}
.ws2c{word-spacing:-21.024000pt;}
.ws20{word-spacing:-20.928000pt;}
.ws13{word-spacing:-20.841600pt;}
.ws30{word-spacing:-20.832000pt;}
.ws1b{word-spacing:-20.734720pt;}
.ws5{word-spacing:-20.627840pt;}
.ws32{word-spacing:-20.520960pt;}
.ws3d{word-spacing:-20.414080pt;}
.ws3a{word-spacing:-20.200320pt;}
.ws1a{word-spacing:-19.238400pt;}
.ws4b{word-spacing:-18.720000pt;}
.ws10{word-spacing:-18.528000pt;}
.ws22{word-spacing:-18.432000pt;}
.ws39{word-spacing:-17.955840pt;}
.ws19{word-spacing:-13.710720pt;}
.ws6c{word-spacing:-6.272000pt;}
.ws2f{word-spacing:-5.664000pt;}
.ws2d{word-spacing:-5.472000pt;}
.ws76{word-spacing:-4.659200pt;}
.ws36{word-spacing:-2.433024pt;}
.ws87{word-spacing:-2.334720pt;}
.ws62{word-spacing:-2.244480pt;}
.ws74{word-spacing:-1.946880pt;}
.ws7b{word-spacing:-1.923840pt;}
.ws78{word-spacing:-1.920000pt;}
.ws86{word-spacing:-1.720320pt;}
.ws8e{word-spacing:-1.710080pt;}
.ws6f{word-spacing:-1.664000pt;}
.ws77{word-spacing:-1.603200pt;}
.ws83{word-spacing:-1.597440pt;}
.ws89{word-spacing:-1.496320pt;}
.ws85{word-spacing:-1.474560pt;}
.ws7d{word-spacing:-1.389440pt;}
.ws8c{word-spacing:-1.282560pt;}
.ws6b{word-spacing:-1.280000pt;}
.ws34{word-spacing:-1.265664pt;}
.ws45{word-spacing:-1.261184pt;}
.ws61{word-spacing:-1.152000pt;}
.ws82{word-spacing:-1.105920pt;}
.ws79{word-spacing:-1.024000pt;}
.ws64{word-spacing:-0.961920pt;}
.ws71{word-spacing:-0.864000pt;}
.ws8b{word-spacing:-0.855040pt;}
.wsf{word-spacing:-0.768000pt;}
.ws88{word-spacing:-0.737280pt;}
.ws69{word-spacing:-0.640000pt;}
.ws5f{word-spacing:-0.512000pt;}
.ws80{word-spacing:-0.427520pt;}
.ws4f{word-spacing:-0.400000pt;}
.ws6e{word-spacing:-0.384000pt;}
.ws81{word-spacing:-0.368640pt;}
.ws4e{word-spacing:-0.320640pt;}
.ws5c{word-spacing:-0.266240pt;}
.ws70{word-spacing:-0.213760pt;}
.ws7e{word-spacing:-0.211200pt;}
.ws7f{word-spacing:-0.192000pt;}
.ws59{word-spacing:-0.133120pt;}
.ws8f{word-spacing:-0.106880pt;}
.ws1f{word-spacing:-0.096000pt;}
.ws4d{word-spacing:0.000000pt;}
.ws63{word-spacing:0.106880pt;}
.ws6a{word-spacing:0.128000pt;}
.ws5d{word-spacing:0.133120pt;}
.ws6{word-spacing:0.171008pt;}
.ws73{word-spacing:0.192000pt;}
.ws7c{word-spacing:0.213760pt;}
.ws46{word-spacing:0.235136pt;}
.ws84{word-spacing:0.245760pt;}
.ws0{word-spacing:0.257280pt;}
.ws5e{word-spacing:0.266240pt;}
.ws8a{word-spacing:0.320640pt;}
.ws60{word-spacing:0.384000pt;}
.ws53{word-spacing:0.399360pt;}
.ws65{word-spacing:0.512000pt;}
.ws7a{word-spacing:0.641280pt;}
.ws52{word-spacing:0.665600pt;}
.ws4c{word-spacing:0.736000pt;}
.ws8d{word-spacing:0.748160pt;}
.ws15{word-spacing:0.851968pt;}
.ws72{word-spacing:0.960000pt;}
.ws54{word-spacing:1.064960pt;}
.ws5a{word-spacing:1.198080pt;}
.ws56{word-spacing:1.331200pt;}
.ws75{word-spacing:1.464320pt;}
.ws66{word-spacing:1.536000pt;}
.ws5b{word-spacing:1.597440pt;}
.ws50{word-spacing:1.600000pt;}
.ws51{word-spacing:1.730560pt;}
.ws58{word-spacing:1.996800pt;}
.ws12{word-spacing:2.036736pt;}
.ws67{word-spacing:2.129920pt;}
.ws57{word-spacing:2.396160pt;}
.ws6d{word-spacing:2.662400pt;}
.ws68{word-spacing:3.061760pt;}
.ws11{word-spacing:3.154944pt;}
.ws17{word-spacing:3.301376pt;}
.ws55{word-spacing:3.328000pt;}
.ws23{word-spacing:4.812800pt;}
.ws3b{word-spacing:5.194368pt;}
.ws48{word-spacing:26.153536pt;}
.ws21{word-spacing:79.998400pt;}
.ws38{word-spacing:96.587456pt;}
.ws40{word-spacing:96.908096pt;}
.ws47{word-spacing:187.542336pt;}
.ws3e{word-spacing:190.888000pt;}
.ws43{word-spacing:191.174400pt;}
.ws3f{word-spacing:199.422400pt;}
.ws44{word-spacing:199.708800pt;}
.ws3c{word-spacing:253.412800pt;}
.ws41{word-spacing:253.699200pt;}
.ws42{word-spacing:441.147200pt;}
.ws2e{word-spacing:933.731200pt;}
.ws4a{word-spacing:1187.627733pt;}
.ws49{word-spacing:1222.214400pt;}
._17{margin-left:-51.586667pt;}
._13{margin-left:-17.679872pt;}
._7{margin-left:-16.339328pt;}
._c{margin-left:-13.184533pt;}
._11{margin-left:-11.495680pt;}
._9{margin-left:-10.586368pt;}
._12{margin-left:-9.671168pt;}
._5{margin-left:-8.315264pt;}
._1c{margin-left:-7.267840pt;}
._8{margin-left:-6.083584pt;}
._a{margin-left:-4.968320pt;}
._0{margin-left:-3.977600pt;}
._1{margin-left:-2.710400pt;}
._4{margin-left:-0.966272pt;}
._3{width:1.003392pt;}
._6{width:2.129152pt;}
._b{width:3.232896pt;}
._d{width:4.570261pt;}
._10{width:5.816789pt;}
._e{width:9.297003pt;}
._18{width:10.854272pt;}
._19{width:17.577472pt;}
._f{width:23.669483pt;}
._16{width:26.876800pt;}
._2{width:70.400000pt;}
._1a{width:71.437333pt;}
._1b{width:207.244672pt;}
._1e{width:237.285568pt;}
._1d{width:292.970048pt;}
._15{width:435.377600pt;}
._14{width:508.985088pt;}
.fs2{font-size:42.880000pt;}
.fsf{font-size:57.600000pt;}
.fse{font-size:70.400000pt;}
.fsd{font-size:71.040000pt;}
.fsc{font-size:74.880000pt;}
.fsa{font-size:76.800000pt;}
.fs6{font-size:88.960000pt;}
.fs9{font-size:93.440000pt;}
.fsb{font-size:96.000000pt;}
.fs3{font-size:106.880000pt;}
.fs10{font-size:122.880000pt;}
.fs7{font-size:128.000000pt;}
.fs5{font-size:133.120000pt;}
.fs8{font-size:256.000000pt;}
.fs1{font-size:352.000000pt;}
.fs4{font-size:400.000000pt;}
.fs0{font-size:736.000000pt;}
.y0{bottom:0.000000pt;}
.yf4{bottom:103.368000pt;}
.ye7{bottom:103.381067pt;}
.ye0{bottom:103.382267pt;}
.ycd{bottom:103.410933pt;}
.yf0{bottom:103.421067pt;}
.yc5{bottom:103.423067pt;}
.ydc{bottom:103.435600pt;}
.yd2{bottom:103.448933pt;}
.yc1{bottom:103.464400pt;}
.yc9{bottom:103.464533pt;}
.yd8{bottom:103.488800pt;}
.y3{bottom:108.313467pt;}
.yeb{bottom:199.381067pt;}
.yea{bottom:231.381067pt;}
.y43{bottom:282.063040pt;}
.ybe{bottom:298.913893pt;}
.y82{bottom:306.853200pt;}
.ybd{bottom:343.058533pt;}
.y81{bottom:354.842960pt;}
.y59{bottom:369.786800pt;}
.ybc{bottom:387.233893pt;}
.y80{bottom:402.832720pt;}
.ybb{bottom:431.378533pt;}
.y7f{bottom:450.822480pt;}
.yba{bottom:475.553893pt;}
.y7e{bottom:498.812240pt;}
.yb9{bottom:519.698533pt;}
.y7d{bottom:546.802000pt;}
.yb8{bottom:563.873893pt;}
.y7c{bottom:594.791760pt;}
.y5b{bottom:601.936800pt;}
.yb7{bottom:608.018533pt;}
.y7b{bottom:642.781520pt;}
.yb6{bottom:652.193893pt;}
.y62{bottom:670.170933pt;}
.y7a{bottom:690.771280pt;}
.yb5{bottom:696.338533pt;}
.y5e{bottom:704.926400pt;}
.y61{bottom:711.576133pt;}
.y79{bottom:738.761040pt;}
.yb4{bottom:740.513893pt;}
.y5d{bottom:749.427067pt;}
.y60{bottom:752.981467pt;}
.yb3{bottom:784.658533pt;}
.y78{bottom:786.750800pt;}
.y5c{bottom:793.083067pt;}
.y5f{bottom:794.386400pt;}
.y5a{bottom:795.394267pt;}
.yb2{bottom:828.833893pt;}
.y77{bottom:834.740560pt;}
.yb1{bottom:872.978533pt;}
.y76{bottom:882.730320pt;}
.y58{bottom:889.890533pt;}
.yb0{bottom:917.153893pt;}
.y75{bottom:930.720080pt;}
.y57{bottom:935.970533pt;}
.yaf{bottom:961.298533pt;}
.y74{bottom:978.709840pt;}
.y56{bottom:982.050533pt;}
.yae{bottom:1005.473893pt;}
.y73{bottom:1026.699600pt;}
.y55{bottom:1028.130533pt;}
.yad{bottom:1049.618533pt;}
.y54{bottom:1074.700640pt;}
.yac{bottom:1094.738667pt;}
.y53{bottom:1122.690400pt;}
.y72{bottom:1144.532347pt;}
.y71{bottom:1184.534907pt;}
.y35{bottom:1211.851680pt;}
.y52{bottom:1218.210400pt;}
.y70{bottom:1224.537467pt;}
.y34{bottom:1259.841440pt;}
.y51{bottom:1264.290400pt;}
.y33{bottom:1307.831200pt;}
.y50{bottom:1310.370400pt;}
.y6c{bottom:1327.474080pt;}
.y32{bottom:1355.820960pt;}
.y4f{bottom:1356.930400pt;}
.y6b{bottom:1367.476640pt;}
.y31{bottom:1403.810720pt;}
.y4e{bottom:1404.450533pt;}
.y6a{bottom:1407.479200pt;}
.y30{bottom:1451.800480pt;}
.y4d{bottom:1452.770533pt;}
.y6f{bottom:1483.744533pt;}
.y2f{bottom:1499.790240pt;}
.y4c{bottom:1501.410533pt;}
.y6e{bottom:1522.144533pt;}
.y2e{bottom:1547.780000pt;}
.y4b{bottom:1548.930267pt;}
.y6d{bottom:1561.024400pt;}
.y2d{bottom:1595.769760pt;}
.y4a{bottom:1597.250533pt;}
.ye9{bottom:1615.520000pt;}
.y68{bottom:1631.491200pt;}
.yf3{bottom:1636.800000pt;}
.y2c{bottom:1643.759520pt;}
.y49{bottom:1645.410533pt;}
.yef{bottom:1675.680000pt;}
.y2b{bottom:1691.749280pt;}
.y48{bottom:1691.970400pt;}
.y69{bottom:1697.643600pt;}
.ye6{bottom:1727.520000pt;}
.y2a{bottom:1739.739040pt;}
.yf2{bottom:1740.168000pt;}
.y42{bottom:1745.330400pt;}
.yee{bottom:1746.090507pt;}
.yed{bottom:1778.101067pt;}
.yf1{bottom:1779.101067pt;}
.y29{bottom:1787.728800pt;}
.ye4{bottom:1814.881893pt;}
.yec{bottom:1814.901067pt;}
.ye8{bottom:1830.901067pt;}
.ye3{bottom:1831.234533pt;}
.y28{bottom:1835.718560pt;}
.ya3{bottom:1840.100800pt;}
.ye5{bottom:1846.892453pt;}
.ya4{bottom:1876.381067pt;}
.y27{bottom:1883.708320pt;}
.ye2{bottom:1884.767707pt;}
.ya6{bottom:1898.490267pt;}
.ya5{bottom:1906.958667pt;}
.y26{bottom:1931.698080pt;}
.ya7{bottom:1941.468133pt;}
.y92{bottom:1961.037867pt;}
.y65{bottom:1962.205333pt;}
.yaa{bottom:1963.927467pt;}
.ya8{bottom:1968.007467pt;}
.y9e{bottom:1974.478000pt;}
.y25{bottom:1979.687840pt;}
.ya2{bottom:1989.607867pt;}
.y91{bottom:1989.837867pt;}
.ya9{bottom:1995.319467pt;}
.y64{bottom:2008.285333pt;}
.y24{bottom:2027.677600pt;}
.y9f{bottom:2029.345600pt;}
.yab{bottom:2040.047333pt;}
.y63{bottom:2054.845200pt;}
.y23{bottom:2075.667360pt;}
.y94{bottom:2100.992267pt;}
.y8f{bottom:2115.648933pt;}
.y67{bottom:2123.201040pt;}
.y22{bottom:2123.657120pt;}
.y90{bottom:2124.768933pt;}
.y93{bottom:2129.792267pt;}
.y8b{bottom:2140.736640pt;}
.y66{bottom:2155.211600pt;}
.y21{bottom:2171.646880pt;}
.y8a{bottom:2172.747200pt;}
.ya1{bottom:2209.281600pt;}
.y20{bottom:2219.636640pt;}
.y8d{bottom:2246.283573pt;}
.y9d{bottom:2258.988800pt;}
.y1f{bottom:2267.636640pt;}
.y97{bottom:2269.378267pt;}
.y8c{bottom:2278.294133pt;}
.y99{bottom:2283.938267pt;}
.y9c{bottom:2287.788800pt;}
.y96{bottom:2299.938267pt;}
.y1e{bottom:2315.646880pt;}
.ya0{bottom:2315.737600pt;}
.y98{bottom:2335.783067pt;}
.y9a{bottom:2346.082800pt;}
.y89{bottom:2350.127733pt;}
.y1d{bottom:2363.636640pt;}
.y95{bottom:2372.530133pt;}
.y9b{bottom:2375.733333pt;}
.y1c{bottom:2411.646880pt;}
.y8e{bottom:2422.311067pt;}
.y1b{bottom:2459.636640pt;}
.y47{bottom:2488.058347pt;}
.y1a{bottom:2507.790107pt;}
.ydf{bottom:2516.800000pt;}
.y46{bottom:2536.048107pt;}
.yf5{bottom:2546.685600pt;}
.ydb{bottom:2555.680000pt;}
.y19{bottom:2555.779867pt;}
.y45{bottom:2584.037867pt;}
.yd7{bottom:2594.560000pt;}
.y18{bottom:2603.769627pt;}
.ye1{bottom:2620.182267pt;}
.yde{bottom:2621.742400pt;}
.y4{bottom:2644.957867pt;}
.yd1{bottom:2646.400000pt;}
.y17{bottom:2651.759387pt;}
.ydd{bottom:2659.115600pt;}
.yda{bottom:2660.675600pt;}
.yd9{bottom:2698.048800pt;}
.yd6{bottom:2699.608933pt;}
.y16{bottom:2699.749147pt;}
.y88{bottom:2728.122933pt;}
.yd4{bottom:2733.843653pt;}
.y15{bottom:2747.738907pt;}
.yd3{bottom:2749.848933pt;}
.yd0{bottom:2750.182267pt;}
.yd5{bottom:2765.854213pt;}
.ycc{bottom:2781.438667pt;}
.y14{bottom:2795.728667pt;}
.ycf{bottom:2803.727680pt;}
.yc8{bottom:2820.318667pt;}
.y87{bottom:2839.473600pt;}
.y13{bottom:2843.718427pt;}
.yc4{bottom:2856.160000pt;}
.yce{bottom:2884.849600pt;}
.ycb{bottom:2886.409867pt;}
.y12{bottom:2891.708187pt;}
.y86{bottom:2892.595200pt;}
.yc0{bottom:2899.518667pt;}
.yca{bottom:2923.783200pt;}
.yc7{bottom:2925.343067pt;}
.y11{bottom:2939.697947pt;}
.y84{bottom:2955.221840pt;}
.yc6{bottom:2959.583067pt;}
.yc3{bottom:2964.276400pt;}
.y83{bottom:2977.599333pt;}
.y10{bottom:2987.687707pt;}
.yc2{bottom:3002.983067pt;}
.ybf{bottom:3003.316400pt;}
.yf{bottom:3035.677467pt;}
.y5{bottom:3045.624267pt;}
.ye{bottom:3083.667227pt;}
.y41{bottom:3096.239600pt;}
.y85{bottom:3121.395200pt;}
.yd{bottom:3131.656987pt;}
.y40{bottom:3142.319600pt;}
.yc{bottom:3179.646747pt;}
.y3a{bottom:3187.219360pt;}
.y3f{bottom:3188.399733pt;}
.yb{bottom:3227.636507pt;}
.y39{bottom:3235.209120pt;}
.y3e{bottom:3235.242400pt;}
.ya{bottom:3275.626267pt;}
.y38{bottom:3283.198880pt;}
.y3d{bottom:3283.232160pt;}
.y9{bottom:3323.616027pt;}
.y37{bottom:3331.188640pt;}
.y3c{bottom:3331.221920pt;}
.y36{bottom:3379.178400pt;}
.y3b{bottom:3379.211680pt;}
.y8{bottom:3379.626267pt;}
.y44{bottom:3479.109733pt;}
.y7{bottom:3582.062533pt;}
.y6{bottom:3702.062533pt;}
.y2{bottom:4071.186533pt;}
.y1{bottom:4197.601867pt;}
.h4{height:29.773125pt;}
.h10{height:50.419687pt;}
.hf{height:64.640625pt;}
.h1d{height:65.725496pt;}
.h1f{height:65.726029pt;}
.h20{height:65.726562pt;}
.h1c{height:65.727096pt;}
.h16{height:67.312500pt;}
.h13{height:71.235937pt;}
.h15{height:71.241579pt;}
.h5{height:71.966562pt;}
.h14{height:79.834596pt;}
.h1a{height:82.740000pt;}
.h12{height:85.319257pt;}
.hc{height:86.187500pt;}
.h19{height:87.312500pt;}
.h7{height:88.725000pt;}
.h8{height:89.635000pt;}
.h9{height:99.566019pt;}
.ha{height:100.138926pt;}
.hb{height:100.179886pt;}
.h17{height:102.518492pt;}
.h11{height:110.498829pt;}
.h18{height:119.062500pt;}
.h21{height:133.867617pt;}
.h1e{height:135.257058pt;}
.he{height:158.750000pt;}
.hd{height:172.375000pt;}
.h23{height:203.963363pt;}
.h1b{height:224.160000pt;}
.h3{height:237.015625pt;}
.h6{height:269.335938pt;}
.h22{height:448.158667pt;}
.h2{height:490.546875pt;}
.h0{height:4493.760000pt;}
.h1{height:4494.000000pt;}
.w4{width:134.238667pt;}
.w3{width:177.760000pt;}
.w6{width:226.880000pt;}
.w5{width:253.440000pt;}
.w2{width:346.080000pt;}
.w0{width:3178.560000pt;}
.w1{width:3178.666667pt;}
.x0{left:0.000000pt;}
.x6{left:121.766667pt;}
.x1{left:147.350133pt;}
.x9{left:716.016533pt;}
.x5{left:720.707600pt;}
.x8{left:722.266667pt;}
.x3{left:723.890000pt;}
.x3e{left:734.336133pt;}
.xa{left:736.336533pt;}
.x3d{left:746.406667pt;}
.x36{left:763.741467pt;}
.xb{left:772.336667pt;}
.x20{left:788.574080pt;}
.x1f{left:797.685600pt;}
.x1e{left:822.708800pt;}
.x19{left:830.446133pt;}
.x37{left:848.646267pt;}
.x1b{left:853.890267pt;}
.x22{left:916.273120pt;}
.x17{left:929.489067pt;}
.xd{left:933.340267pt;}
.x21{left:946.039200pt;}
.x1a{left:956.268267pt;}
.x38{left:973.594533pt;}
.x3c{left:1015.561200pt;}
.x3b{left:1110.985200pt;}
.x3a{left:1114.657733pt;}
.x39{left:1150.191200pt;}
.x10{left:1187.416000pt;}
.x23{left:1188.912533pt;}
.xe{left:1190.773067pt;}
.x29{left:1198.025733pt;}
.x2a{left:1207.806933pt;}
.xc{left:1243.130400pt;}
.x18{left:1319.086507pt;}
.x1d{left:1330.964000pt;}
.x2c{left:1333.248400pt;}
.x2b{left:1338.686800pt;}
.x24{left:1357.698400pt;}
.x1c{left:1393.025333pt;}
.x25{left:1414.978400pt;}
.x2d{left:1427.646800pt;}
.x26{left:1445.056800pt;}
.x33{left:1495.801867pt;}
.xf{left:1536.622667pt;}
.x30{left:1570.803733pt;}
.x35{left:1571.840533pt;}
.x2{left:1581.025067pt;}
.x31{left:1590.491733pt;}
.x34{left:1606.441867pt;}
.x2e{left:1617.348267pt;}
.x2f{left:1638.308267pt;}
.x27{left:1703.016267pt;}
.x28{left:1717.728267pt;}
.x32{left:1739.579600pt;}
.x4{left:1905.421680pt;}
.x11{left:1909.933333pt;}
.x7{left:1925.753467pt;}
.x46{left:2028.529253pt;}
.x16{left:2071.655733pt;}
.x4d{left:2089.078667pt;}
.x15{left:2104.505973pt;}
.x14{left:2109.131893pt;}
.x47{left:2162.690373pt;}
.x42{left:2227.040000pt;}
.x48{left:2296.160000pt;}
.x3f{left:2351.040000pt;}
.x40{left:2367.856267pt;}
.x43{left:2405.407733pt;}
.x49{left:2431.059600pt;}
.x4a{left:2564.480000pt;}
.x44{left:2583.042293pt;}
.x13{left:2626.569333pt;}
.x41{left:2697.678000pt;}
.x45{left:2812.353333pt;}
.x4b{left:2817.760000pt;}
.x4c{left:2879.261067pt;}
.x12{left:2884.252667pt;}
}




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